
/* @import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins: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'); */


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins: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&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {

    --bg: #EDEDED;
    --bg-color: #ffffff;
    --shadow-color: #818181;
    --theme-color: #469BF6;
    --drop-down-hover: #f5f5fa;
}

/* * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

} */

/* body{
    overflow: hidden;
    overscroll-behavior: none;
} */



.editor__container{
    max-width: 1200px !important;
    font-family: "Source Sans 3", serif !important;

}

.crop__editor__container{
    display: flex;
    height: calc(100vh - 90px);
    width: 100%;
    margin-top: 20px;
    gap: 10px;
    user-select: none !important;
}


.crop__editor__container .crop__editor__options{
    width: 370px;
    /* background-color: rgb(255, 255, 255); */
    /* box-shadow: 0 0 2px var(--shadow-color); */
    border-radius: 3px;
    padding: 10px;
    /* background-color: red; */
    background-color: #fff;
    border: 1px solid #F1F0F1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;

}


.crop__editor__container .crop__editor__options::-webkit-scrollbar{
    width: 4px;
}

.crop__editor__container .crop__editor__options::-webkit-scrollbar-thumb{
    border-radius: 4px;
    background-color: #888;
}


.crop__editor__options .crop__option__btn{
    justify-content: space-between;
    align-items: center;
    display: flex;
    gap: 5px;
}

.crop__editor__options .crop__option__btn button{
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border: 0;
    background-color: #fff;
    outline: none;
    font-size: 13px;
    /* font-weight: bold; */
    transition: 0.4s;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.crop__editor__options .crop__option__btn button.active__option_tab{
    background-color: var(--drop-down-hover);
    color: var(--theme-color);
}


.crop__editor__options .crop__option__btn button:hover{
    background-color: var(--drop-down-hover);
    color: var(--theme-color);
}


.crop__editor__options .crop_editor_divider{
    height: 2px;
    background-color: #F1F0F1;
    width: 100%;
    margin-top: 10px;
}


.crop__setting__options{
    padding: 15px;
    margin-top: 15px;
    /* background-color: rgb(0, 0, 0); */
    /* max-height: 100%; */
    /* height: 500px; */
    /* overflow: scroll; */
    /* display: none; */
}


.height__width__container{
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    width: 100%;
}

.height__width__container .input__area{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.height__width__container .input__area label{
    /* font-weight: bold; */
    font-size: 14px;
}

.height__width__container .input__area input{
    padding: 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid #b3b3b3;
}

.height__width__container .input__area input:hover{
    border-color: var(--theme-color);
}


.crop__editor__options .aspect__ratio__section{
    margin-top: 20px;
    font-size: 14px;
}

.crop__editor__options .aspect__ratio__section span{
    font-size: 14px;
}

.aspect__ratio__section .aspect__ratio__selector{
    margin-top: 10px;
    padding: 8px 15px;
    width: 100%;
    border-radius: 3px;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    transition: 0.4s;
    position: relative;
    /* font-weight: bold; */
}

.aspect__ratio__selector img{
    transition: 0.4s;
}

.aspect__ratio__selector img.RotateArrow{
    transform: rotate(-180deg);
}

.aspect__ratio__section .aspect__ratio__selector:hover{
    border-color: var(--theme-color);
}


.aspect__ratio__section .aspect__ratio__selector .aspect__ratio_drop__down{
    height: 280px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 2px var(--shadow-color);
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 4px;
    padding: 10px;
    overflow-y: scroll;
    display: none;
    z-index: 99;

}

.aspect__ratio__section .aspect__ratio__selector .aspect__ratio_drop__down::-webkit-scrollbar{
    width: 6px;
}

.aspect__ratio__section .aspect__ratio__selector .aspect__ratio_drop__down::-webkit-scrollbar-thumb{
    background: #888;
    border-radius: 3px;

}


.aspect__ratio__selector .aspect__ratio_drop__down li{
    padding: 10px;
    border-radius: 4px;
    transition: 0.4s;
    position: relative;
    /* font-weight: bold; */
}

.aspect__ratio__selector .aspect__ratio_drop__down li.active__ratio{
    background-color: var(--drop-down-hover);
}

.aspect__ratio__selector .aspect__ratio_drop__down li.active__ratio::before{
    background-color: var(--theme-color);

}

.aspect__ratio__selector .aspect__ratio_drop__down li::before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    content: "";
    /* transition: 0.4s; */
}

.aspect__ratio__selector .aspect__ratio_drop__down li:hover{
    background-color: var(--drop-down-hover);
}

.aspect__ratio__selector .aspect__ratio_drop__down li:hover::before{
    background-color: var(--theme-color);
}


.crop__editor__options .crop__position__section{
    margin-top: 20px;
}


.crop__position__section .crop__position__area{
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.crop__position__section .input__area{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}


.crop__position__section .input__area label{
    font-size: 14px;
}

.crop__position__section .input__area input{
    padding: 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid #b3b3b3;
}

.crop__position__section .input__area input:hover{
    border-color: var(--theme-color);
}


.Crop__empty__container{
    /* position: sticky;
    bottom: 0;
    background-color: #fff;
    z-index: 99; */
    /* height: calc(100% - 50%); */
    /* height: 100%; */
    /* background-color: red; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
}


.Crop__empty__container .Crop__buttons button.DownloadCropImg{
    padding: 9px 10px;
    width: 100%;
    cursor: pointer;
    background-color: var(--theme-color);
    color: #fff;
    font-weight: bold;
    border: 0;
    font-size: 14px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.Crop__empty__container .Crop__buttons button.DownloadCropImg::before{
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: -300px;
    transform: rotate(-50deg);
    background-color: #dbe1e339;
    transition: 0.7s;
}


.Crop__empty__container .Crop__buttons button.DownloadCropImg:hover::before{
    left: 300px;

}

.Crop__empty__container .crop__btn__and__reset__btn{
display: flex;
justify-content: space-between;
margin-bottom: 6px;
gap: 10px;
}

.Crop__empty__container .crop__btn__and__reset__btn .CropImgBtn{
    padding: 8px;
    width: 100%;
    background-color: rgb(67, 155, 98);
    outline: none;
    /* border: 1px solid #888; */
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}

.Crop__empty__container .crop__btn__and__reset__btn button.CropImgBtn:hover{
    background-color: rgb(46, 143, 80);
}

.Crop__empty__container .crop__btn__and__reset__btn .ResetBtn{
    padding: 8px;
    width: 200px;
    background-color: transparent;
    outline: none;
    border: 1px solid #888;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-weight: bold; */
}

/* .Crop__empty__container .crop__btn__and__reset__btn .CropImgBtn:hover{
    background-color: var(--drop-down-hover);
} */


.Crop__empty__container .crop__btn__and__reset__btn .ResetBtn:hover{
    background-color: var(--drop-down-hover);
}



.Flip__and__rotate__images__tab{
    padding: 15px;
    margin-top: 15px;
    display: none;
}

.Flip__and__rotate__images__tab .flip__container{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}


.Flip__and__rotate__images__tab .flip__container .flip__button{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.Flip__and__rotate__images__tab .flip__container .flip__button button{
    height: 70px;
    cursor: pointer;
    border: 1px solid #b3b3b3;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.4s;
}

.Flip__and__rotate__images__tab .flip__container .flip__button button:hover{
    background-color: var(--drop-down-hover);
}

.rotate_heading{
    margin-top: 40px;
}



.crop__editor_Output {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    overflow-y: scroll;
}

.crop__editor_Output::-webkit-scrollbar{
    width: 4px;
}


.crop__editor_Output::-webkit-scrollbar-thumb{
    border-radius: 4px;
    background-color: #888;
}

.advertisement__area{
    height: 70px;
    width: 100%;
    border: 1px solid #F1F0F1;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    /* background-color: #000; */
}

.crop__editor_Output .crop__images__section{
    /* height: 700px; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* background-color: red; */
    padding: 10px;
}


.crop__editor_Output .crop__images__section .crop__section{
    width: fit-content;
    overflow: hidden;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crop__editor_Output .crop__images__section .crop__section img{
    max-width: 100%;

}
















.custom__ratio__container{
    display: none;
}

.custom__ratio__inputs{
    display: flex;
    align-items: center;
    gap: 10px;
}


.custom__ratio__inputs .input__area{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
    width: 100%;
}

.custom__ratio__inputs .input__area label{
    /* font-weight: bold; */
    font-size: 14px;
}

.custom__ratio__inputs .input__area input{
    padding: 10px;
    width: 100%;
    outline: none;
    border-radius: 3px;
    border: 1px solid #b3b3b3;
}

.custom__ratio__inputs .input__area input:hover{
    border-color: var(--theme-color);
}


.crop__view__mods__container{
    margin-top: 25px;
}

.crop__view__mods__container .view__modes__selector{
    margin-top: 10px;
    padding: 8px 15px;
    width: 100%;
    border-radius: 3px;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    transition: 0.4s;
    position: relative;
}

.crop__view__mods__container .view__modes__selector:hover{
    border-color: var(--theme-color);
}



.view__modes__selector .view__modes__drop__down{
    height: fit-content;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 2px var(--shadow-color);
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 4px;
    padding: 10px;
    /* overflow-y: scroll; */
    display: none;
    z-index: 99;
}

.view__modes__selector .view__modes__drop__down li{
    padding: 10px;
    border-radius: 4px;
    transition: 0.4s;
    position: relative;
}

.view__modes__selector .view__modes__drop__down li:hover{
    background-color: var(--drop-down-hover);
}




.view__modes__selector .view__modes__drop__down li.active__ratio{
    background-color: var(--drop-down-hover);
}

.view__modes__selector .view__modes__drop__down li.active__ratio::before{
    background-color: var(--theme-color);

}

.view__modes__selector .view__modes__drop__down li::before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    content: "";
    /* transition: 0.4s; */
}

.view__modes__selector .view__modes__drop__down li:hover{
    background-color: var(--drop-down-hover);
}

.view__modes__selector .view__modes__drop__down li:hover::before{
    background-color: var(--theme-color);
}

.view__modes__selector img{
    transition: 0.4s;
}

.view__modes__selector img.RotateArrow{
    transform: rotate(-180deg);
}




/* cropper js code  */

.cropper-point{
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important;
    background-color: #fff !important;
}


.cropper-bg{
    background-image: url("https://sb.kaleidousercontent.com/67418/1920x1100/15a1437b21/checkered-bg.png") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.cropper-view-box {
    outline: 3px solid #39f !important;
    border-radius: 10px;
}

/*
.cropper-point.point-e {
    right: -11px !important;
}


.cropper-point.point-n {
top: -11px !important;
}


.cropper-point.point-w {
left: -11px !important;

}

.cropper-point.point-s {
    bottom: -11px !important;
}

.cropper-point.point-ne {
    top: -10px !important;
    /* right: -3px !important; */
/* } */


/* .cropper-point.point-nw {
    left: -11px !important;
}

.cropper-point.point-sw {
    bottom: -11px !important;
} */


/* .cropper-point.point-se {
    bottom: -11px !important;
}  */


.bottom__sheet__container{
    display: none;
}

.bottom__sheet__flip__rotate{
    display: none;
}

.crop_mobile__bottom__navigation{
    display: none;
}


.tab__heading{
    font-size: 14px;
    color: #222;
}

.crop__view__mods__container .modes__grab__crop{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 5px;
}

.crop__view__mods__container .modes__grab__crop button{
    width: 100%;
    background-color: transparent;
    padding: 10px;
    border: 1px solid #F1F0F1;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.4s;
}

.crop__view__mods__container .modes__grab__crop button:hover{
    background-color: rgb(105, 173, 242);
    color: #fff;
}

.crop__view__mods__container .modes__grab__crop button.active__mode{
    background-color: rgb(105, 173, 242);
    color: #fff;
}


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

    .crop__editor__options{
        display: none !important;
    }

    .crop__editor_Output{
        justify-content: start;
    }


.crop__editor_Output .crop__images__section{
    align-items: start !important;
    margin-top: 20px;
}

#BottomAdsCrop{
    display: none;
}

.crop_mobile__bottom__navigation{
    padding: 10px;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    overflow: hidden;
    border: 1px solid #F1F0F1;
    display: block;
    z-index: 99;
}

.crop_mobile__bottom__navigation .crop_bottom__navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.crop_mobile__bottom__navigation .crop_bottom__navigation button{
    width: 100%;
    height: 100%;
    border: 0;
    background-color: transparent;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    user-select: none;
    /* font-weight: bold; */
}


.bottom__sheet__container{
    position: fixed;
    bottom: -200%;
    left: 0;
    height: 350px;
    width: 100%;
    border-radius: 15px 15px 0 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    /* padding: 12px; */
    z-index: 9999;
    /* display: none; */
    transition: bottom 0.2s ease-in-out;
    overflow-y: scroll;
    display: block;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.bottom__sheet__container.active__sheet{
    bottom: 0%;
}


.bottom__sheet__container .drag__grab_container{
    display: flex;
    justify-content: center;
}


.bottom__sheet__container .drag__grab_container .drag-handle{
    height: 5px;
    width: 50px;
    background-color: #CACBCB;
    border-radius: 15px;
}

/* body{
    overflow: hidden !important;
} */

.bottom__sheet__container .crop_sheet__heading__title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
}

.bottom__sheet__container .sticky__sheet__header{
    position: sticky;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 12px;
    z-index: 99;
}


.bottom__sheet__container .crop_sheet__heading__title button{
    background-color: rgb(230, 230, 230);
    height: 25px;
    width: 25px;
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom__sheet__container .crop_sheet__heading__title button img{
    width: 13px;
}





/* .crop__setting__container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
} */


.Crop__empty__container{
    padding: 10px;
    position: sticky;
    bottom: 0;
    background-color: #fff;
}



.bottom__sheet__flip__rotate{
    position: fixed;
    bottom: -200%;
    left: 0;
    height: 350px;
    width: 100%;
    border-radius: 15px 15px 0 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.2s ease-in-out;
    overflow-y: scroll;
    display: block;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.bottom__sheet__flip__rotate.active_flip_sheet{
    bottom: 0;
}


.bottom__sheet__flip__rotate .sticky__sheet__header{
    padding: 12px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 99;

}

.bottom__sheet__flip__rotate .drag__grab_container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom__sheet__flip__rotate .drag__grab_container .drag-handle{
    height: 5px;
    width: 50px;
    background-color: #CACBCB;
    border-radius: 15px;
}

.bottom__sheet__flip__rotate .crop_sheet__heading__title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 15px;
}

.bottom__sheet__flip__rotate .crop_sheet__heading__title button{
    background-color: rgb(230, 230, 230);
    height: 25px;
    width: 25px;
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.bottom__sheet__flip__rotate .crop_sheet__heading__title button img{
    width: 13px;
}

.rotate_heading{
    font-size: 15px;
}

/* #closeFlipSheet{
    position: absolute;
    top: 10px;
} */


.close__flip__sheet{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 2px;
}

.close__flip__sheet button{
    background-color: rgb(230, 230, 230);
    height: 25px;
    width: 25px;
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close__flip__sheet button img{
    width: 13px;
}

.Flip__and__rotate__images__tab .flip__container .flip__button span{
    font-size: 14px;
}


.aspect__ratio__section span{
    font-size: 14px;
}

}


