﻿﻿ /*Loader*/
.loader-in-center {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(1px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.intro-loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #259F46;
    -webkit-mask: repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg), radial-gradient(farthest-side,#0000 calc(100% - 9px),#000 calc(100% - 8px));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: intro-loader 2s infinite;
}

.intro-loader-text {
    text-align: center;
    margin-top: 10px;
    color: #259F46;
    font-size: 20px;
    font-weight: 600;
    margin-left: 8px;
}

@keyframes intro-loader {
    to {
        transform: rotate(.5turn)
    }
}

.loader-bg {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-data-found {
    text-align: center;
    font-size: 24px;
    margin-block: 16px;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 20;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(59, 64, 60, .15);
    box-shadow: 0px 4px 4px 0px rgba(59, 64, 60, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}



.notifications-container {
    max-height: 100vh;
    max-width: 320px;
    pointer-events: none;
    position: fixed;
    width: 100%;
    z-index: 9999
}

    .notifications-container.notify-is-x-center {
        left: 50%;
        transform: translateX(-50%)
    }

    .notifications-container.notify-is-y-center {
        top: 50%;
        transform: translateY(-50%)
    }

    .notifications-container.notify-is-center {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }

    .notifications-container.notify-is-left {
        left: 0
    }

    .notifications-container.notify-is-right {
        right: 0
    }

    .notifications-container.notify-is-top {
        top: 0
    }

    .notifications-container.notify-is-bottom {
        bottom: 0
    }

    .notifications-container.notify-is-x-center.notify-is-top {
        top: var(--distance)
    }

    .notifications-container.notify-is-x-center.notify-is-bottom {
        bottom: var(--distance)
    }

    .notifications-container > * {
        pointer-events: auto
    }

.notify {
    --notify-error: rgb(235, 87, 87);
    --notify-error-progress: rgb(192, 69, 69);
    --notify-success: rgb(111, 207, 151);
    --notify-success-progress: rgb(84, 170, 120);
    --notify-warning: rgb(242, 201, 76);
    --notify-warning-progress: rgb(196, 166, 79);
    --notify-info: rgb(81, 205, 243);
    --notify-info-progress: rgb(84, 169, 196);
    --notify-gray: rgb(51, 51, 51);
    --notify-gray-2: rgb(77, 77, 77);
    --notify-gray-3: rgb(130, 130, 130);
    --notify-white: rgb(255, 255, 255);
    --notify-white-2: rgba(255, 255, 255, 0.8);
    --notify-padding: 0.75rem;
    --notify-icon-size: 32px;
    --notify-close-icon-size: 16px;
    align-items: center;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    padding: var(--notify-padding);
    position: relative;
    text-decoration: none;
    transition-timing-function: ease;
    width: 100%
}

.notify__icon {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: var(--notify-icon-size);
    justify-content: center;
    margin-right: 12px;
    width: var(--notify-icon-size);
    color: white;
}

.notify__close {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: var(--notify-close-icon-size);
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    user-select: none;
    width: var(--notify-close-icon-size)
}

    .notify__close * {
        pointer-events: none
    }

.notify__title {
    font-size: 1rem;
    font-weight: 600;
    padding-right: calc(var(--notify-padding) + var(--notify-close-icon-size))
}

.notify__text {
    font-size: 0.875rem;
    /*margin-top: 0.25rem*/
}

.notify--type-1 {
    background-color: #fff;
}

    .notify--type-1 .notify__close {
        color: var(--notify-gray-3);
        color: white;
    }

    .notify--type-1 .notify__title {
        color: var(--notify-gray);
        color: white;
    }

    .notify--type-1 .notify__text {
        color: var(--notify-gray-2);
        color: white;
    }

.notify--type-2 {
    color: var(--notify-gray)
}

.notify--type-3 {
    color: var(--notify-white)
}

    .notify--type-3 .notify__text {
        color: var(--notify-white-2)
    }

.notify--error.notify--type-1 {
    box-shadow: 0 2px 26px rgba(215,0,0,0.1);
    color: var(--notify-error);
    background: #ff6767;
    color: white;
}

.notify--error.notify--type-2, .notify--error.notify--type-3 {
    background-color: var(--notify-error)
}

.notify--warning.notify--type-1 {
    box-shadow: 0 2px 26px rgba(242,201,76,0.1);
    color: var(--notify-warning)
}

.notify--warning.notify--type-2, .notify--warning.notify--type-3 {
    background-color: var(--notify-warning)
}

.notify--success.notify--type-1 {
    box-shadow: 0 2px 26px rgba(82,215,0,0.1);
    color: var(--notify-success);
    background: #62b362;
}

.notify--success.notify--type-2, .notify--success.notify--type-3 {
    background-color: var(--notify-success)
}

.notify--info.notify--type-1 {
    box-shadow: 0 2px 26px rgba(84,175,202,0.1);
    color: var(--notify-info)
}

.notify--info.notify--type-2, .notify--info.notify--type-3 {
    background-color: var(--notify-info)
}

.notify--fade {
    opacity: 0;
    will-change: opacity;
}

.notify--fadeIn {
    opacity: 1
}

.notify--slide {
    opacity: 0;
    will-change: opacity, transform
}

.notify-is-center .notify--slide, .notify-is-y-center .notify--slide, .notify-is-x-center:not(.notify-is-bottom) .notify--slide {
    transform: translateY(-20px)
}

.notify-is-x-center.notify-is-bottom .notify--slide {
    transform: translateY(20px)
}

.notify-is-right .notify--slide {
    transform: translateX(calc(var(--distance) + 110%))
}

.notify-is-left .notify--slide {
    transform: translateX(calc((var(--distance) * -1) - 110%))
}

.notify-is-x-center:not(.notify-is-bottom) .notify--slideIn, .notify-is-center .notify--slideIn, .notify-is-y-center .notify--slideIn, .notify-is-x-center.notify-is-bottom .notify--slideIn {
    opacity: 1;
    transform: translateY(0)
}

.notify-is-right .notify--slideIn, .notify-is-left .notify--slideIn {
    opacity: 1;
    transform: translateX(0)
}

.notify-is-left .notify {
    left: var(--distance);
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.4);
    border: 1px solid #edb1b1;
    /*transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);*/
}

.notify-is-right .notify {
    right: var(--distance)
}

.notify-is-top .notify, .notify-is-center .notify, .notify-is-y-center .notify, .notify-is-x-center.notify-is-top .notify {
    margin-top: var(--gap)
}

.notify-is-bottom .notify, .notify-is-x-center:not(.notify-is-top) .notify {
    margin-bottom: var(--gap)
}

.notify.notify-autoclose {
    --progress-height: 5px;
    padding-bottom: calc(var(--notify-padding) + var(--progress-height))
}

    .notify.notify-autoclose::before {
        animation: progress calc(var(--timeout) * 1ms) linear forwards;
        bottom: 0;
        content: '';
        height: var(--progress-height);
        left: 0;
        position: absolute;
        transform: scale3d(1, 1, 1);
        transform-origin: left;
        width: 100%
    }

@keyframes progress {
    to {
        transform: scale3d(0, 1, 1)
    }
}

.notify.notify-autoclose.notify--error::before {
    background-color: var(--notify-error-progress)
}

.notify.notify-autoclose.notify--warning::before {
    background-color: var(--notify-warning-progress)
}

.notify.notify-autoclose.notify--success::before {
    background-color: var(--notify-success-progress);
    background: #e4e4e4 !important;
}

.notify.notify-autoclose.notify--info::before {
    background-color: var(--notify-info-progress)
}



/*.flickity-enabled {
    position: relative;
}

    .flickity-enabled:focus {
        outline: none;
    }

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100% ;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}



.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .flickity-enabled.is-draggable .flickity-viewport {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab;
    }

        .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
            cursor: -webkit-grabbing;
            cursor: grabbing;
        }



.flickity-button {
    position: absolute;
    background: none;
    border: none;
    color: var(--grey-1);
}

    .flickity-button:hover {
        cursor: pointer;
        color: vaR(--grey-0)
    }

    .flickity-button:focus {
        outline: none;
        box-shadow: 0 0 0 5px #19F;
    }

    .flickity-button:active {
        opacity: 0.6;
    }

    .flickity-button:disabled {
        opacity: 0.3;
        cursor: auto;
        prevent disabled button from capturing pointer up event. #716 pointer-events: none;
    }

.flickity-button-icon {
    fill: currentColor;
}



.flickity-prev-next-button {
    top: 50%;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--brand-1--shade-1) !important;
    background: var(--white) !important;
}

    .flickity-prev-next-button.previous {
        left: 0px;
    }

    .flickity-prev-next-button.next {
        right: 0px;
    }

    .flickity-prev-next-button:hover {
        background: var(--grey-1) !important;
    }


.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}


.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -20px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    display: none;
}

.flickity-rtl .flickity-page-dots {
    direction: rtl;
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 8px;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
    background: var(--brand-1--tint-2);
    display: none;
}

    .flickity-page-dots .dot:hover {
        opacity: 0.5;
    }

    .flickity-page-dots .dot.is-selected {
        opacity: 1;
        background: var(--brand-1);
    }

.main-carousel {
    height: 100%;
    width: 100%;
}

.carousel-cell {
    height: 100%;
    width: 100%;
}

    .carousel-cell > div {
        height: 100%;
        width: 100%;
    }

        .carousel-cell > div img {
            height: 97%;
            width: 100%;
        }





.carousel-style-1.carousel {
    height: 220px;
}

.carousel-cell--style-1 {
    opacity: 0.6;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    width: 100%;
    height: 100%;
    margin: 0 5px;
}

    .carousel-cell--style-1.is-selected {
        opacity: 1;
        height: 100%;
        margin-top: 0;
    }

@media (min-width: 991px) {
    .carousel-style-1.carousel {
        height: 450px;
    }

    .carousel-cell--style-1 {
        width: 50%;
        height: 70%;
        margin: 0 30px;
        margin-top: 60px;
    }
}




.carousel-style2.carousel {
    height: 160px;
}

.carousel-cell--style2 {
    opacity: 0.6 ;
    border-radius: 10px ;
    overflow: hidden ;
    -webkit-transition: opacity 0.3s linear ;
    transition: opacity 0.3s linear ;
    height: 100% ;
   
    margin: 0 5px ;
    width: 100% ;
}

    .carousel-cell--style2.is-selected {
        opacity: 1 ;
    }



@media (min-width: 769px) {
    .carousel-style2.carousel{
        height: 320px;
    }

    .carousel-cell--style2 {
        width: 70% ;
        margin: 0 20px ;
    }
}
*/


.virtualized-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-list {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    border-radius: 4px;
}

.dropdown-item {
    padding: 8px;
    cursor: pointer;
}

    .dropdown-item:hover {
        background-color: var(--grey-2);
    }


.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 25px;
        height: 25px;
        margin: 0px;
        border: 3px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: var(--brand-1) transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.iti__country-container {
    background: white !important;
    border-bottom: 1px solid var(--grey-3) !important;
}

#country-number {
    padding: 16px !important;
    border: none !important;
    border-bottom: 1px solid var(--grey-3) !important;
    border-radius: 0px !important;
    margin-left: 17px !important;
    left: 11px !important;
}

    #country-number:focus {
        outline: none !important;
    }
