/**** Popup css***/
.is-section.is_scaleup_popup {
    display: flex;
    flex-direction: row;
    width: 41.666667% !important;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
        0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),
        var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    transition-duration: 500ms;
    padding: 1.25rem;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    border-radius: 0.5rem;
    position: fixed !important;
    z-index: 99999 !important;
    min-height: 0 !important;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    overflow: unset !important;
}

.is-section.is_scaleup_popup.modal-bottom-right {
    bottom: 0px !important;
    left: auto;
    top: auto;
    right: 0 !important;
}

.is-section.is_scaleup_popup.modal-bottom-left {
    bottom: 0px !important;
    left: 0 !important;
    top: auto;
    right: auto !important;
}

.is-section.is_scaleup_popup.modal-top {
    top: 0;
    bottom: auto !important;
    right: 0;
    left: 0 !important;
    width: 100% !important;
}

.is-section.is_scaleup_popup.modal-bottom {
    top: auto;
    bottom: 0 !important;
    right: 0;
    left: 0 !important;
    width: 100% !important;
}

.is-section.is_scaleup_popup.modal-full {
    top: 0;
    bottom: 0 !important;
    left: 0 !important;
    right: 0;
    width: 100% !important;
    height: 100%;
}

.is-section.is_scaleup_popup.modal-center {
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) {
    .modal-only-mobile {
        display: none !important;
    }
}
/*Popup animation all here*/
/*Popup animation all here*/
/*Fade in animation*/
/*Fade in animation*/
@keyframes popupfade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.popup-fade {
    animation: popupfade 1s linear;
    opacity: 1;
}

/*Fade in from the top animation*/
/*Fade in from the top animation*/
@keyframes popupfadetop {
    0% {
        margin-top: -150px;
        opacity: 0;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}
.popup-fade-top {
    animation: popupfadetop 1s linear;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}

/*Fade in from the bottom animation*/
/*Fade in from the bottom animation*/
@keyframes popupfadebottom {
    0% {
        margin-top: 150px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
.popup-fade-bottom {
    animation: popupfadebottom 1s linear;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}

/*Fade in from the right animation*/
/*Fade in from the right animation*/
@keyframes popupfaderight {
    0% {
        margin-left: 150px;
        margin-right: auto;
        opacity: 0;
    }
    100% {
        margin: 0px;
        opacity: 1;
    }
}
.popup-fade-right {
    animation: popupfaderight 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

/*Fade in from the left animation*/
/*Fade in from the left animation*/
@keyframes popupfadeleft {
    0% {
        margin-left: -150px;
        opacity: 0;
    }
    100% {
        margin-left: 0px;
        opacity: 1;
    }
}
.popup-fade-left {
    animation: popupfadeleft 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

/*Fade in  & scale animation*/
/*Fade in  & scale animation*/
@keyframes popupfadescale {
    0% {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.popup-fade-scale {
    animation: popupfadescale 1s linear;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}
@keyframes popupfadescale-center {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.7);
        -moz-transform: translate(-50%, -50%) scale(0.7);
        -ms-transform: translate(-50%, -50%) scale(0.7);
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
.modal-center.popup-fade-scale {
    animation: popupfadescale-center 1s linear;
}

/*Super scaled animation*/
/*Super scaled animation*/
@keyframes popupsuperscale {
    0% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.popup-fade-superscale {
    animation: popupsuperscale 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@keyframes popupsuperscale-center {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(2);
        -moz-transform: translate(-50%, -50%) scale(2);
        -ms-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
.modal-center.popup-fade-superscale {
    animation: popupsuperscale-center 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

/*3D Flip Horizontal*/
/*3D Flip Horizontal*/
@keyframes popupfliphorizontal {
    0% {
        -webkit-transform: rotateY(-70deg);
        -moz-transform: rotateY(-70deg);
        -ms-transform: rotateY(-70deg);
        transform: rotateY(-70deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateY(0);
        -moz-transform: rotateY(0);
        -ms-transform: rotateY(0);
        transform: rotateY(0);
        opacity: 1;
    }
}
.popup-flip-horizontal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
    animation: popupfliphorizontal 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@keyframes popupfliphorizontal-center {
    0% {
        -webkit-transform: translate(-50%, -50%) rotateY(-70deg);
        -moz-transform: translate(-50%, -50%) rotateY(-70deg);
        -ms-transform: translate(-50%, -50%) rotateY(-70deg);
        transform: translate(-50%, -50%) rotateY(-70deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotateY(0);
        -moz-transform: translate(-50%, -50%) rotateY(0);
        -ms-transform: translate(-50%, -50%) rotateY(0);
        transform: translate(-50%, -50%) rotateY(0);
        opacity: 1;
    }
}
.modal-center.popup-flip-horizontal {
    animation: popupfliphorizontal-center 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

/*3D Flip vertical*/
/*3D Flip vertical*/
@keyframes popupflipvertical {
    0% {
        -webkit-transform: rotateX(-70deg);
        -moz-transform: rotateX(-70deg);
        -ms-transform: rotateX(-70deg);
        transform: rotateX(-70deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0);
        -moz-transform: rotateX(0);
        -ms-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}
.popup-flip-vertical {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
    animation: popupflipvertical 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@keyframes popupflipvertical-center {
    0% {
        -webkit-transform: translate(-50%, -50%) rotateX(-70deg);
        -moz-transform: translate(-50%, -50%) rotateX(-70deg);
        -ms-transform: translate(-50%, -50%) rotateX(-70deg);
        transform: translate(-50%, -50%) rotateX(-70deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotateX(0);
        -moz-transform: translate(-50%, -50%) rotateX(0);
        -ms-transform: translate(-50%, -50%) rotateX(0);
        transform: translate(-50%, -50%) rotateX(0);
        opacity: 1;
    }
}
.modal-center.popup-flip-vertical {
    animation: popupflipvertical-center 1s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
/* .popoup-body-background {
    overflow: hidden;
    height: 100%;
  } */
/* .popoup-body-background .popup-overlay {
    width: 160vw;
    position: fixed;
    margin-left: -80vw;
    left: 50%;
    height: 140vh;
    top: 0;
    z-index: 9999;
    margin-top: -20vh;
    display: block !important;
    opacity: 0.7;
  } */

.left-layoutpopup .scaleup-popup-content {
    width: 70%;
    display: block;
    flex-grow: unset !important;
    margin: 0 0 0 auto;
}
.left-layoutpopup .scaleup-content-layout {
    position: absolute;
    width: 30%;
    height: 100%;
    left: 0;
}

.right-layoutpopup .scaleup-popup-content {
    width: 70% !important;
    display: block;
    flex-grow: unset;
    margin: 0 auto 0 0;
}
.right-layoutpopup .scaleup-content-layout {
    position: absolute;
    width: 30%;
    height: 100%;
    right: 0;
}

.center-layoutpopup .scaleup-popup-content {
    width: 100% !important;
    display: block;
    flex-grow: unset;
    overflow: auto;
    max-height: 80vh;
}
.center-layoutpopup .scaleup-content-layout {
    display: none;
}

.top-layoutpopup {
    display: block !important;
    flex-direction: column-reverse;
}
.top-layoutpopup .scaleup-popup-content {
    width: 100% !important;
    height: 100%;
    display: block;
    flex-grow: unset;
    margin: 0;
}
.top-layoutpopup .scaleup-content-layout {
    position: relative;
    width: 100%;
    height: 150px;
}

.bottom-layoutpopup {
    display: flex !important;
    flex-direction: column-reverse !important;
}
.bottom-layoutpopup .scaleup-popup-content {
    width: 100% !important;
    height: 100%;
    display: block !important;
    flex-grow: unset !important;
    margin: 0;
}
.bottom-layoutpopup .scaleup-content-layout {
    position: relative;
    width: 100%;
    height: 150px;
}

.popup-close-xmark {
    position: absolute;
    top: 7px;
    width: auto !important;
    padding: 0;
    right: 7px;
    z-index: 9999;
}

.popup-close-xmark i {
    background: white;
    width: 24px;
    text-align: center;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 18px;
}
