@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');
:root {
    --muneer-popup-color: #FFFFFF;
    --muneer-popup-bg-color:#213E54;
    --muneer-popup-bg-color-light:#2A86AA;
    --muneer-popup-slider-color: #008958;

    --muneer-transition-duration: .8s;
}

.muneer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0004;
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity var(--muneer-transition-duration) ease-in-out;
    backdrop-filter: blur(20px);
}
.muneer-popup-overlay.open {
    display: block;
    opacity: 1;
}

.muneer-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2000;
    overflow: hidden;
    font-family: 'Cairo', Arial, sans-serif;
}
.muneer-popup a, .muneer-popup a * {
    color: var(--muneer-popup-bg-color);
    text-decoration: none !important;
}


.muneer-popup .muneer-popup-slider {
    width: 95%;
    max-width: 500px;
    height: 52px;
    background-color: var(--muneer-popup-slider-color);
    position: fixed;
    bottom: 22px;
    left: 0;
    border-radius: 0 50px 50px 0;
    transform: translateX(-80%);
    transition: all var(--muneer-transition-duration) ease-in-out;
    box-shadow: inset 0px 4px 10px 0px #00000055;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-inner {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
    padding: 4px;
    gap: 70px;
    overflow: hidden;
    transition: all var(--muneer-transition-duration) ease-in-out;
    direction: ltr !important;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn {
    width: 46px;
    height: 46px;
    background-color: var(--muneer-popup-color);
    border-radius: 50%;
    box-shadow: 0px 3px 5px #0003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--muneer-transition-duration) ease-in-out;
    position: relative;
    cursor: pointer;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    box-shadow: inset 2px 2px 12px 1px #00000019;
    z-index: 1;
    border-radius: 50%;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-slide {
    box-shadow:  -5px -1px 5px #0003, -30px 0px 20px 0px #01cc8bc4, 0px 3px 5px #0003;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-open {
    z-index: 1;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    transition: all var(--muneer-transition-duration) ease-in-out;
    border-radius: 50%;
    
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img img, 
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg {
    width: 100%;
    height: 100%;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-slide .muneer-popup-img {
    transform: scaleX(-1);
}

.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg g {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform var(--muneer-transition-duration) ease-in-out;
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g1 {
    transform: translate(36px,36px) rotate(180deg);
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g2 {
    transform: translate(0,36px) rotate(270deg);
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g3 {
    transform: translate(0,0) rotate(360deg);
}
.muneer-popup .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g4 {
    transform: translate(36px,0) rotate(450deg);
}


/* slide */
.muneer-popup.slide .muneer-popup-slider {
    height: 64px;
    transform: translateX(0);
    z-index: 1;
}
.muneer-popup.slide .muneer-popup-slider .muneer-popup-slider-inner {
    gap: 8px;
}
.muneer-popup.slide .muneer-popup-slider .muneer-popup-slider-btn {
    width: 58px;
    height: 58px;
}
.muneer-popup.slide .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img {
    width: 22px;
    height: 22px;
}
.muneer-popup.slide .muneer-popup-slider .muneer-popup-slider-slide .muneer-popup-img {
    transform: scaleX(1);
}





/* Open */
.muneer-popup.open .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g1 {
    transform: translate(36px,36px) rotate(0);
}
.muneer-popup.open .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g2 {
    transform: translate(0,36px) rotate(90deg);
}
.muneer-popup.open .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g3 {
    transform: translate(0,0) rotate(180deg);
}
.muneer-popup.open .muneer-popup-slider .muneer-popup-slider-btn .muneer-popup-img svg .g4 {
    transform: translate(36px,0) rotate(270deg);
}





.muneer-popup .muneer-popup-content {
    display: none;
    width: 82%;
    max-width: 450px;
    height: 80%;
    background-color: var(--muneer-popup-bg-color);
    border-radius: 20px;
    position: fixed;
    bottom: 70px;
    /* left: 8%; */
    left: 32px;
    transform: translateY(20%);
    transition: all var(--muneer-transition-duration) ease-in-out;
    overflow: hidden;
}
.muneer-popup .muneer-popup-content .muneer-popup-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 30px;
    left: 30px;
    cursor: pointer;
}
.muneer-popup .muneer-popup-content .muneer-popup-close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.muneer-popup .muneer-popup-content::before {
    content: '';
    position: absolute;
    top: 17%;
    right: -50px;
    width: 140px;
    height: 140px;
    background-color: var(--muneer-popup-bg-color-light);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}
.muneer-popup .muneer-popup-content::after {
    content: '';
    position: absolute;
    top: 62%;
    left: -40px;
    width: 191px;
    height: 206px;
    background-color: var(--muneer-popup-bg-color-light);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}



.muneer-popup.open .muneer-popup-content {
    display: block;
    animation: fadeInUp var(--muneer-transition-duration) ease-in-out forwards;
}
.muneer-popup.close .muneer-popup-content {
    display: none;
    animation: fadeOutDown var(--muneer-transition-duration) ease-in-out forwards;
}
.muneer-popup.close-fade .muneer-popup-content {
    display: block;
    animation: fadeOut var(--muneer-transition-duration) ease-in-out forwards;
}


.muneer-popup .muneer-popup-content .muneer-popup-img {
    width: 100%;
    margin-top: 70px;
    transition: all var(--muneer-transition-duration) ease-in-out;
    position: relative;
}

.muneer-popup .muneer-popup-content .muneer-popup-img img {
    width: 100%;
    height: auto;
}

.muneer-popup.open .muneer-popup-content .muneer-popup-img {
    margin-top: 42%;
}
.muneer-popup .muneer-popup-content .muneer-popup-img .muneer-popup-circle {
    position: absolute;
    bottom: -20px;
    right: 20px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
}
.muneer-popup.open .muneer-popup-content .muneer-popup-img .muneer-popup-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.muneer-popup.open .muneer-popup-content .muneer-popup-img .muneer-popup-circle::after {
    content: '';
    position: absolute;
    top: 33%;
    left: 52%;
    width: 15px;
    height: 15px;
    background-color: var(--muneer-popup-color);
    opacity: 0.5;
    z-index: 2;
    border-radius: 50%;
}
.muneer-popup.open .muneer-popup-content .muneer-popup-img .muneer-popup-circle::before {
    content: '';
    position: absolute;
    top: 33%;
    left: 52%;
    width: 15px;
    height: 15px;
    background-color: var(--muneer-popup-color);
    opacity: 0.5;
    z-index: 1;
    border-radius: 50%;
    animation: circlePulse 1.5s ease-in-out infinite;
}
.muneer-popup .muneer-popup-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muneer-popup-color);
    text-align: center;
    width: 250px;
    opacity: 0.7;
    position: absolute;
    bottom: 105px;
    right: 0;
}



.muneer-popup .muneer-popup-above {
    position: fixed;
    bottom: 22px;
    left: 0;
    z-index: 2003;
}
.muneer-popup .muneer-popup-above .muneer-popup-device {
    position: fixed;
    bottom: -47px;
    left: -1px;
    width: 57px;
    pointer-events: none;
    transition: all var(--muneer-transition-duration) ease-in-out;
}
.muneer-popup .muneer-popup-above .muneer-popup-device img {
    width: 100%;
    height: auto;
}
.muneer-popup.slide .muneer-popup-above .muneer-popup-device {
    bottom: -156px;
    left: 10px;
    width: 130px;
}
.muneer-popup.open .muneer-popup-above .muneer-popup-device {
    bottom: -170px;
    left: 5px;
    width: 250px;
}

.muneer-popup .muneer-popup-above .muneer-popup-device2 {
    width: 48px;
    position: fixed;
    bottom: -30px;
    left: -100px;
    transition: all var(--muneer-transition-duration) ease-in-out;
}
.muneer-popup .muneer-popup-above .muneer-popup-device2 img {
    width: 100%;
    height: auto;
}
.muneer-popup.open .muneer-popup-above .muneer-popup-device2 {
    bottom: 117px;
    left: 113px;
}
.muneer-popup .muneer-popup-above .muneer-popup-order-holder {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 82%;
    max-width: 450px;
}
.muneer-popup .muneer-popup-above .muneer-popup-order {
    position: absolute;
    bottom: -50px;
    right: calc(50% - 92px);
    transition: all var(--muneer-transition-duration) ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--muneer-popup-color);
    width: 184px;
    height: 38px;
    border-radius: 50px;
    padding: 10px 0;
    transition: all var(--muneer-transition-duration) ease-in-out;
    opacity: 0;
    font-size: 13px;
}
.muneer-popup .muneer-popup-above .muneer-popup-order img {
    width: 20px;
}
.muneer-popup.open .muneer-popup-above .muneer-popup-order {
    opacity: 1;
    bottom: 125px;
    right: 4px;
}

.muneer-popup .muneer-popup-above .muneer-popup-logo-holder {
    width: 95%;
    max-width: 500px;
    position: fixed;
    bottom: 0;
    left: 0;
}
.muneer-popup .muneer-popup-above .muneer-popup-logo {
    position: absolute;
    bottom: -30px;
    left: calc(50% - 30px);
    width: 60px;
    opacity: 0;
    transition: all var(--muneer-transition-duration) ease-in-out;
}
.muneer-popup .muneer-popup-above .muneer-popup-logo img {
    width: 100%;
    height: auto;
}
.muneer-popup.slide .muneer-popup-above .muneer-popup-logo {
    opacity: 1;
    bottom: 35px;
    left: calc(50% - 30px);
}
.muneer-popup.open .muneer-popup-above .muneer-popup-logo {
    opacity: 1;
    bottom: 72vh;
    width: 96px;
    left: calc(50% - 48px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        height: 20%;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        height: 80%;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    0% {
        display: block;
        opacity: 1;
        height: 80%;
        transform: translateY(0);
    }
    100% {
        display: none;
        opacity: 0;
        height: 20%;
        transform: translateY(10%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        display: none;
        opacity: 0;
        transform: translateY(0);
    }
}

@keyframes circlePulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}