/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #e3f2fd;
}
.container{
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.select-btn{
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-top:15px;
}
.select-btn .btn-text{
    font-size: 17px;
    font-weight: 400;
    color: #333;
}
.select-btn .arrow-dwn{
    display: flex;
    height: 21px;
    width: 21px;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    background: #6e93f7;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.select-btn.open .arrow-dwn{
    transform: rotate(-180deg);
}
.list-items{
    position: relative;
    margin-top: 15px;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.select-btn.open ~ .list-items{
    display: block;
}
.list-items .item{
    display: flex;
    align-items: center;
    list-style: none;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 15px;
    border-radius: 8px;
}
.list-items .item:hover{
    background-color: #e7edfe;
}
.item .item-text{
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.item .checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    margin-right: 12px;
    border: 1.5px solid #c0c0c0;
    transition: all 0.3s ease-in-out;
}
.item.checked .checkbox{
    background-color: #4070f4;
    border-color: #4070f4;
}
.checkbox .check-icon{
    color: #fff;
    font-size: 11px;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
}
.item.checked .check-icon{
    transform: scale(1);
}

#drop-region {
    max-width: 800px;
    width: 100%;
    max-height: 600px;
    height: 100%;
    /*border: 1px solid #000;*/
    background: #b5b5be;
    color: #6c6c75;
    margin: 0 auto;
    cursor:pointer;


}

#image-preview {
    max-width: 800px;
        width: 100%;
        max-height: 600px;
        height: 100%;
    /*border: 1px solid #000;*/
    background: #b5b5be;
    color: #6c6c75;
    margin: 0 auto;
    text-align: center;
    font-size: 3em;
    font-weight: bold;
}

#plus {
    background: #b5b5be;
    color: #6c6c75;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    margin: 30% auto;
}

.highlighted {
    background-color: grey;
}

.highlighted {
    background-color: grey;
}
#uploader {
    background-color: #04AA6D;
        color: #fff;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        float: right;
        font-weight:700;
        font-size:1em;
    
}
#uploader:hover {
    background-color: #83f4cb;
    color:#4d4b4b;

}
#uploader:disabled {
    background-color:#6c6c75;
    color:#fff;
    cursor:default;
}
#Image-Button-Container{
    margin: 15px auto;
}
#reslt {
    margin: 35px 0 auto;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 5%;
    font-weight: bold;
    font-size: 1em;

}
@media screen and (max-width: 600px) {

    #uploader {
        width: 100%;
        margin-top: 0;
    }
}
.meter {
    background: grey;
    height: 40px;
    width: 0;
}

.meter.done {
    background-color: green;
}
#total {
        
            color: #000;
            padding: 12px 20px;
            width:100%;
            border: none;
            cursor:default;
            float: right;
            text-align: right;;
            font-weight: 700;
            font-size: 1em;
}