
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    overflow: auto;
}
.dropzone-cont *,
#edit-modal *{
    box-sizing: border-box;
}
.dropzone-cont{
    position: relative;
}
.img-dropzone{
    width: 100%;
    min-height: 250px;
    padding-top: 8px;
    border: 3px dashed #d19237;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.dz-message{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.img-dropzone.dz-drag-hover{
    background: #002fa212;
}
.drop-lbl{
    font-size: 22px;
    margin-bottom: 30px;
    font-family: 'Barlow';
    font-weight: 400;
    line-height: 1.4em;
}
.max-size-lbl{
    color: #d1d1d1;
    font-size: 13px;
}
.preview-cont{
    display: none;
}
#create-listing-form .acf-field:not([data-name="featured_photos"]) .preview-cont{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.preview-cont::after{
    display: block;
    content: '';
    clear: both;
}
.preview-template {
    width: 140px;
    height: 209px;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: default;
    justify-self: center;
    float: left;
    cursor: move;
}
.thumb-container{
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #ccc;
}
.thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dz-filename{
    font-weight: bold;
}
.dz-detail{
    min-height: 49px;
}
.dz-filesize{
    font-size: 13px;
    color: #959595;
    text-transform: lowercase;
    font-weight: 400;
    font-family: 'Barlow';
    padding: 0 5px;
}
.dz-filesize strong{
    font-weight: 400;
}
.dz-category span{
    vertical-align: bottom;
}
.dz-actions div{
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
    width: 29px;
    height: 29px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    cursor: pointer;
}
.dz-actions .edit-btn{
    margin-right: 10px;
    background-color: #ebebeb;
    cursor: pointer;
    border-color: #959595;
}
.dz-actions .delete{
    border-color: red;
    color: red;
}
.dz-progress{
    height: 18px;
    width: 74%;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    box-shadow: 1px 1px 3px 0px #979797;
}
.dz-progress span{
    height: 100%;
    position: absolute;
    background: #d19237;
}
.dz-actions .edit-btn,
.dz-error .dz-progress{
    display: none;
}
.dz-complete .dz-progress{
    display: none;
}
.dz-complete .edit-btn{
    display: inherit;
}
.dz-error .thumb-container{
    border: 1px solid #d50000;
}
.thumb-outer{
    position: relative;
}
.dz-error-message{
    position: relative;
    background: rgb(193,0,0);
    background: -moz-linear-gradient(180deg, rgba(193,0,0,1) 0%, rgba(193,0,0,1) 47%, rgba(121,0,0,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(193,0,0,1) 0%, rgba(193,0,0,1) 47%, rgba(121,0,0,1) 100%);
    background: linear-gradient(180deg, rgba(193,0,0,1) 0%, rgba(193,0,0,1) 47%, rgba(121,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c10000",endColorstr="#790000",GradientType=1);
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    top: 130px;
    font-size: 13px;
    font-family: 'Barlow';
    font-weight: 500;
    padding: 3px 10px
}
.dz-error .dz-error-message{
    visibility: visible;
}
.dz-error-message::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent rgb(193,0,0) transparent;
}
.dz-error .dz-filesize,
.dz-error .dz-filename,
.dz-error .dz-category,
.dz-error .dz-actions .edit-btn{
    display: none;
}

.dz-category{
    font-weight: 500;
    font-size: 13px;
    font-family: 'Barlow';
    padding: 0 3px;
    margin-bottom: 10px;
}
.edit-modal,
.remove-modal{
    padding-top: 50px;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9990; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    box-sizing: border-box;

}
.edit-modal .edit-modal-content{
    padding: 50px 70px;
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}
.remove-modal .remove-modal-content{
    padding: 50px 70px;
    width: 450px;
    margin: auto;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    position: absolute;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: max-content;
    text-align: center;
    box-sizing: border-box;

}
.remove-msg{
    font-size: 15px;
    font-family: 'Barlow';
    margin-bottom: 30px;
    font-weight: 500;
}
.remove-choices button{
    background-color: #d19237;
    border: 0;
    border-radius: 5px;
    font-size: 13px;
    padding: 6px 17px;
    text-transform: uppercase;
    margin: 0 10px;
    font-weight: 500;
    font-family: 'Barlow';
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.remove-choices .remove-yes{
    background-color: #d19237;
}
.remove-choices button:hover{
    background-color: #000;
    color: #fff;
}
.btn-edit-back,
.btn-next-back{
    background: #e1e1e1;
    border-radius: 5px;
    padding: 12px 5px;
    font-family: 'Barlow';
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    opacity: 1;
    cursor: pointer;
    float: right;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-next-back{
    color: #fff;
    background-color: #000;
    clear: both;
    margin-top: 52px;
    padding: 12px;
}
.FIE_topbar-save-wrapper,
.FIE_topbar-close-button{
    visibility: hidden;
}
.editor-tab,
.category-tab{
    display: none;
}

.edit-modal .active{
    display: block;
}
.edit-header{
    margin-bottom: 40px;
}
.edit-title-tab{
    font-size: 26px;
    font-family: 'Barlow';
    font-weight: 400;
}
.edit-prev-cont{
    float: left;
    width: 50%;
    height: 258px;
    margin-right: 30px;
    background: #d0d0d0;
}
.edit-prev-cont img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cat-right{
    font-family: 'Barlow';
    padding-top: 10px;
}
.edit-desc{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#file-desc{
    width: 320px;
    border-color: #959595;
    height: 38px;
}
.edit-cat{
    display: flex;
}
.cat-chk-cont{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 113px;
    margin-top: 7px;
    width: 85%;
}
.cat-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    width: 130px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cat-right label{
    width: 100px;
    font-family: 'Barlow';
    font-weight: 500;
}
.cat-chk{
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
.caret-left{
    margin-right: 15px;
}
.caret-right{
    margin-left: 15px;
}

.drop-uploader .acf-repeater{
    display: none;
}
.FIE_resize-tool-options input{
    height: 20px;
    min-height: 20px;
    border-radius: 0;
    padding: 0;
    border: 0!important;
    box-shadow: none!important;
    outline: 0!important;
}
.SfxModal-Wrapper{
    z-index: 9990!important;
}

.acf-field[data-name="featured_photos"] .dropzone-cont{
    min-width: 225px;
    width: max-content;
    display: table-cell;
}
.acf-field[data-name="featured_photos"] .drop-lbl{
    font-size: 17px;
}
.acf-field[data-name="featured_photos"] .max-size-lbl{
    font-size: 11px;
}
.acf-field[data-name="featured_photos"] .preview-cont{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}
.acf-field[data-name="featured_photos"] .preview-template{
    cursor: default;
}


.disabled .img-dropzone,
.post-type-listing-revision .img-dropzone{
    pointer-events: none;
    cursor: default;
}
.disabled .dz-actions,
.post-type-listing-revision .dz-actions{
    opacity: 0.3;
}

.rev-pending-lbl {
    color: red;
    font-weight: 400;
    font-style: italic;
}
.rev-pending-lbl a{
    color: red;
}
/* .bUafBu{
    transform: translateX(0) scale(1.06);
} */

.SfxRotationSlider-list {
    transform: scale(1.06);
}
.FIE_rotate-slider{
    margin-top: 20px;
}
.FIE_tools-bar{
    margin-top: 12px;
}

/* Media Queries */

@media only screen and (max-width: 1199px) {
    #create-listing-form .preview-cont{
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 992px) {
    .edit-prev-cont{
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .edit-prev-cont img{
        /* object-fit: cover; */
    }
}
@media only screen and (max-width: 767px) {
    .preview-cont[data-key="field_62d62b6c3ab3d"]{
        min-height: 250px
    }
    .preview-cont[data-key="field_60a4a37d72725"]{
        min-height: 500px
    }
    
    #create-listing-form .preview-cont{
        grid-template-columns: 1fr!important;
        max-height: 500px;
        overflow-y: auto;
    }
    .edit-modal-content{
        width: 90%;
        padding: 20px!important;
    }
    #edit-modal .moda-body{
        padding: 0;
    }
    .FIE_topbar-save-wrapper, 
    .FIE_topbar-close-button{
        display: none!important;
    }
    .FIE_main-container{
        flex-direction: column;
        justify-content: center;
        align-items: center!important;
    }
    .FIE_tabs{
        display: flex;
        justify-content: center;
        padding: 0!important;
    }
    .FIE_editor-content{
        width: 100%!important;
    }
    .FIE_root{
        min-width: auto!important;
    }
    #file-desc{
        width: 60%;
    }
    .edit-desc label,
    .edit-cat label{
        display: block;
    }

    .acf-field[data-name="featured_photos"] .dropzone-cont{
        width: 100%;
        display: block;
        min-width: auto;
    }
}

@media only screen and (max-width: 480px) {
    #file-desc{
        width: 100%;
        margin-top: 5px;
    }
    .edit-desc,
    .edit-cat{
        display: block;
    }
    .FIE_topbar{
        flex-direction: column;
        justify-content: center;
    }
    .FIE_tools-bar-wrapper{
        width: 100%!important;
    }
    .FIE_tools-bar{
        overflow-x: hidden!important;
        margin-bottom: 10px;
        display: block!important;
    }
    .FIE_crop-tool{
        min-width: 86px!important;
    }
}
@media only screen and (max-width: 375px) {
    
}
