
.upload__box {
    padding-top: 20px;
}
.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.upload__btn:not(.fileuploaded){
    min-height: 200px;
}
.upload__btn {
    width: 100%;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    min-width: 116px;
    padding: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ced4da;
    background-color: #fff;
    border-radius: 10px;
    line-height: 26px;
    font-size: 14px;
}
/* .upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all 0.3s ease;
} */
.upload__btn-box {
    position: relative;
    margin-bottom: 10px;
}
.upload__img-wrap {
    width: 100%;
    display: none;
    flex-wrap: wrap;
}
.upload__img-box {
    /*width: 10%;*/
    width: 11%;
    padding: 10px;
}
.upload__img-box div:only-child{
    border: 1px solid #69e1cb;
}
/* .upload__img-box div .upload__img-close{
    display: none;
} */
.upload__img-box div:hover .upload__img-close{
    display: block;
    background-color: #74e5d1;
}
.upload__btn.fileuploaded label{
    position: absolute;
    right: 2px;
    top: 2px;
    text-align: right;
    width: 35px !important;
    height: 35px;
    background: #74e5d1;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.upload__btn.fileuploaded label i{
    font-size: 20px;
    color: white;
}

/* .upload__img-close {
    width: 24px;
    min-height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
} */

.upload__img-close {
    width: 34px;
    min-height: 27px;
    border-radius: 0px 14px 0px 22px;
    position: absolute;
    top: 0px;
    right: 0px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
    transition: 0.2s;
}
/* .upload__img-close:hover{
    background-color: #74e5d1;
} */

/* .upload__img-close:hover:after {
    content: '\2715';
    font-size: 14px;
    color: #fff;
} */
.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
    border-radius: 15px;
}
.dragtext{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}
.dragtext i{
    color: #888;
}

.old-img{
    overflow: hidden;
}
.image-close-icon{
    width: 34px;
    min-height: 27px;
    border-radius: 0px 14px 0px 22px;
    position: absolute;
    top: 0px;
    right: 0px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
    transition: 0.2s;
    background-color: var(--theme);
}
.image-close-icon:after {
    content: '\2715';
    font-size: 14px;
    color: #fff;
}
.spiner{
    animation: spinner .75s linear infinite;
}
@keyframes spinner {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
  }

/* add booking room available */

.room-available{
    border: 1px solid #69e1cb;
    min-height: 150px; 
}
.room-available ul{
    list-style: none;
}
.room-available ul li{
    padding: 10px;
}
.room-available span{
    padding: 10px 20px;
}
@media (max-width: 992px){
    .upload__img-box {
        width: 16%;
        padding: 8px;
    }
    .upload__img-close {
        width: 28px;
        min-height: 25px;
        line-height: 25px;
    }
}
@media (max-width: 767px){
    .upload__img-box {
        width: 20%;
        padding: 6px;
    }
    .upload__img-close {
        width: 28px;
        min-height: 25px;
        line-height: 22px;
    }
}
@media (max-width: 576px){
    .upload__img-box {
        width: 33.33%;
        padding: 4px;
    }
    /* .upload__img-close {
        width: 25px;
        min-height: 25px;
        line-height: 25px;
    } */
}