@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


.poppins-regular {
    font-family: "Poppins";
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  .poppins-extra-bold {
    font-family: "Poppins";
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

  .poppins-medium {
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  .poppins-bold {
    font-family: "Poppins";
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  .poppins-semi-bold {
    font-family: "Poppins";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }


:root {
    --main-color: #377CF6;
    --sub-color: #F7D247;
    --error-color: red;
    --border-color: #57B4BD;
    --blue-color: #5D8CC9;
}

body {
    margin: 0;
    font-family: 'OpenSans-Regular', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
}

.mainBody {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: auto;
    background-color: var(--main-color);
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}


.f-18{
    font-size: 18px;

}
.infoFooter {
    background-color: var(--sub-color);
    /*height: 20vh;*/
}

.pointer{
    cursor: pointer;
}

.subs-btn {
    background: linear-gradient(to right, #449897, #402B53);
    border-top: unset !important;
    border-left: unset !important;
    border-right: unset !important;
    border-radius: 10px !important;
    width: 100%;
    height: 60px !important;
    padding: 0;
}

.logo-size {
    width: 50%;
}

[dir="ltr"].languageBtn {
    border-top-right-radius: unset !important;
    border-bottom-right-radius: unset !important;
}

[dir="rtl"] .languageBtn {
    border-top-left-radius: unset !important;
    border-bottom-left-radius: unset !important;
}

.loader-background {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: transparent !important; 
  }
/* ===============================================CAROUSEL===================================================== */


.swiper-slide{
    width: 100% !important;
    padding-bottom: 30px !important; /* Adjust this value as needed */
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 0 !important;
    z-index: 10 !important; /* You can adjust this value as needed */
}

.carousel .slide {
    background: none !important;
}

.carousel .control-dots .dot.selected {
    background: #027BFF !important; 
    box-shadow: none !important;
  }

  .carousel .control-dots .dot{
    background: #D3D3D3 !important; 
    box-shadow: none !important;
  
  }

/* Increase z-index for pagination dots */
.carousel .control-dots {
    z-index: 10 !important; /* You can adjust this value as needed */
    
  }
  
  /* Reduce z-index for carousel images */
  .carousel .slide img {
    z-index: 1 !important; /* You can adjust this value as needed */
  }
  




/* ===============================================HEADER STYLING===================================================== */

#header {
    background-color: rgba(0, 0, 0, 0.4);
    height: 8vh;
    display: flex;
    align-items: center;
}

.navbar-text-color {
    color: black !important;
    font-size: 1rem;
}

#navbarSupportedContent {
    background-color: #ffffff;
    color: black;
    z-index: 1000;
    border: solid 2px #ebebeb;
    border-radius: 5px !important;
    position: absolute;
    top: 90%;
    right: 10%;
    width: 10em;
    /* padding: 1rem; */
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
}

[dir="rtl"] #navbarSupportedContent {
    width: 15em;
}

#navbarSupportedContent .nav-item a:hover {
    color: var(--main-color) !important;
}

#navbarSupportedContent .nav-item div:hover {
    color: var(--main-color) !important;
}

#navbarSupportedContent .nav-item {
    margin-left: 0.5em;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.nav-masthead .nav-link {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: 0.25rem solid transparent;
}

.main-nav {
    justify-content: flex-end;
    text-align: right;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    color: #EAC620 !important;
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #EAC620 !important;
    border-bottom-color: #fff;
    opacity: 1 !important;
}

.leftLogo {
    width: 85px;
}

.navbar.nav {
    /*position: absolute;*/
    right: 0;
    /*top: 1rem !important;*/
}

.navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.navbar-toggler-icon {
    width: 1.7em !important;
    height: 1.7em !important;
}

.navbar-dark .navbar-toggler {
    padding: 0 8px;
    border: unset !important;
}

.sign-in-btn {
    width: 8rem;
    height: 2.5rem;
    border-radius: 50px;
    background-color: #38C26D;
    color: white;
    border: 4px solid #E3B859;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 0px #A77E2C; 
    transition: all 0.3s ease; 
}

.sign-in-btn:hover {
    background-color: #2E9F5E !important;
    border: 4px solid #E3B859 !important;
    box-shadow: 0px 2px 0px #8A671F;
}

.sign-in-btn-hero{
    width: 350px;
    height: 60px;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 700;
    
    background-color: #38C26D;
    color: white;
    border: 8px solid #E3B859;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 0px #A77E2C; 
    transition: all 0.3s ease; 
}

.sign-in-btn-hero:hover {
    background-color: #2E9F5E !important;
    border: 8px solid #E3B859 !important;
    box-shadow: 0px 4px 0px #8A671F;
}

.sign-in-btn-footer{
    width: 100px;
    height: 30px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    
    background-color: #9500F6;
    color: white;
    border: 4px solid #E3B859;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 0px #A77E2C; 
    transition: all 0.3s ease; 
}
.sign-in-btn-footer:hover {
    background-color: #9400f6db !important;
    border: 4px solid #E3B859 !important;
    box-shadow: 0px 2px 0px #8A671F;
}

.submit-btn{
    background-color: #377CF6 !important;
    color: white !important;
}

.submit-btn:hover{
    background-color: #377df6e9 !important;
}



.header-text {
    font-size: 0.9rem;
}



/* ==============================================ABOUT STYLING=================================================== */


#about {
    position: relative;
    overflow: hidden;
    height: 90vh;
    display: flex;
    align-items: center;
    background-color: #F2F2F2;

  }
  
  .text-container {
    margin-bottom: 20px;
  }
  
  /* Left Side Animations (Hammer and Coins) */
  .icons-container {
    position: relative;
    width: 100%;
    height: 150px;
  }
  
  .icon-image {
    position: absolute;
    max-width: 100%;
    transition: transform 1s ease-in-out, opacity 1s;
    opacity: 0;
  }

  .coins-image {
    width: 100px;
    bottom: 0;
    left: 40%;
    transform: translateY(50px) scale(0);
  }
  
  .hammer-image {
    width: 200px;
    top: 50%;
    left: 15%;
    transform: translateY(-50px) scale(0);
  }
  

/* Right Side Animations (iPhones) */
.phones-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -50px; /* Move the container up */
  }
  
  .device-image {
    position: absolute;
    max-width: 100%; /* Reduce the size */
    transition: transform 1s ease-in-out, opacity 1s;
    opacity: 0;
  }
  
  .ios-image {
    z-index: 2;
    top: -150px; /* Adjust positioning */
    left: 10%; /* Adjust positioning */
    transform: translateY(-150px); /* Adjust initial transform */
  }
  
  .android-image {
    top: 10%; /* Adjust positioning */
    right: 15%; /* Adjust positioning */
    transform: translateY(150px); /* Adjust initial transform */
  }
  
  /* Triggered Animations */
  .animated-image.animate {
    transform: translateY(0) scale(1);
    opacity: 1;
  }


  @media (max-width: 768px) {
    .hammer-image {
      width: 150px;
    }
  
    .coins-image {
      width: 100px;
    }
  
    .icons-container {
      position: relative; /* Keep relative positioning for animations */
      width: 100%;
      height: 150px; /* Ensure enough height for animations */
      margin-top: 20px;
    }
  
    .icon-image {
      position: absolute; /* Keep absolute positioning for animations */
      max-width: 80%; /* Adjust size for mobile */
      transition: transform 1s ease-in-out, opacity 1s;
      opacity: 0;
    }
  
    .coins-image {
      bottom: 0;
      left: 40%;
      transform: translateY(50px) scale(0);
    }
  
    .hammer-image {
      top: 50%;
      left: 15%;
      transform: translateY(-50px) scale(0);
    }
  
    /* Triggered Animations */
    .animated-image.animate {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
  
  
  
/* ==============================================PLAY NOW STYLING=================================================== */

.play-btn {
    background-color: #377CF6;
    color: white;
}

.playNow-white-container {
    background-color: white;
    height: 8rem;
    width: 100%;
    position: absolute;
    top: 78%;
    left: 0;
}

.operator-card {
    /*height: 10rem;*/
    width: 9rem;
    /*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);*/
}

.h-90 {
    height: 90vh;
}

.playNow {
    height: 86vh;
}

@media only screen and (min-width: 767px) {
    .playNowHeight {
        height: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .playNowHeight {
        height: 100% !important;
    }
}

/* ==============================================Operators STYLING=================================================== */

.operators {
    background-color: white;
    /*height: 18vh;*/
    /*display: flex;*/
    /*align-items: center;*/
}

/* .operators .owl-carousel .owl-item:hover,
.playNow .owl-carousel .owl-item:hover {
    transition: transform 0.5s;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 9999;
} */

/* .operators .owl-carousel .owl-item:not(:hover) {
    filter: grayscale(100%) contrast(70%);
    opacity: 70%;
} */

/* ==============================================RESULTS STYLING=================================================== */

.results {
    background-color: #F2F2F2;
    /*height: 15rem;*/
}

.results-card {
    background-color: white;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding-block: 1.3rem !important;
}

.results-box{
    border-right: 1px solid rgba(112, 112, 112, 0.5);;
}

.results-item {
    /*text-align: center;*/
}

.results-title {
    color: var(--main-color);
    font-size: 2.25rem;
}

.results-title2 {
    color: #000000;
    font-size: 1.6rem;
}

.results-text {
    color: #707070;
    font-size: 1rem;
}

/* ==============================================Features STYLING=================================================== */




.f-14{
    font-size: 14px;

}
/* ================================================Download===================================================== */
.bg-green{
    background-color: #54AD48;
}
.download-btn{
    background-color: #FF365D !important;
    color: white;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s ease;
}
.download-btn:hover{
    background-color: #ff365ecc !important;
}
  .f-20{
      font-size: 20px;
  }
/* ================================================HOW TO PLAY===================================================== */

.howToPlay {
    background-color: var(--sub-color);
    height: 50rem;
}

/* ================================================SUBSCRIBE===================================================== */


.bg-blue {
    background-color: #5A58DC;
}



/* ================================================REFERENCES====================================================== */

.references {
    background-color: var(--main-color);
    height: 40rem;
}

.carousel-item-style {
    width: 200px;
}

.reference-box {
    background-color: white;
    color: black;
    margin: 0.5rem;
    padding: 1rem;
    /*padding-block: 1rem;*/
    border-radius: 10px;
}

.slick-slide {
    padding: 1rem;
}

/* .owl-carousel {
    position: relative;
} */

.reference-text {
    font-size: 1rem;
}

.reference-title {
    font-size: 0.8rem;
}


/* .owl-theme .owl-dots .owl-dot.active span {
    background: #1E2C37 !important;
    border: 5.5px solid #1E2C37 !important;
    color: #1E2C37 !important;
    margin: 5px 3px !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots span {
    margin: 5px 3px !important;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin: 5px 3px !important;
} */

/* ================================================CARD STYLING===================================================== */

.card-header {
    background-color: white;
    /*border-bottom: 1px solid #24272A*/
}

.card-title {
    min-height: 20px;
    font-size: 18px;
    color: var(--main-color) !important;
    opacity: 90%;
}

/* .card-body {
    position: relative;
    padding-top: 30px;
} */

.card {
    border: unset !important;
}

.f-25{
    font-size: 25px;

}

.questionContainer{
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #F7D247;
    position: relative;
    overflow: hidden;
    align-items: center;
}
.downloadText{
    text-align: left;
}

/* =================================================MEDIA WIDTH===================================================== */

@media (min-width: 479px) {


    .slider-image {
        width: 17.5rem;
        /*height: 11rem;*/
    }

    .operator-width {
        width: 90% !important;
    }

    .features-blue-text {
        font-size: 1.2rem;
    }

    .how-to-play-img {
        width: 60%;
    }

    .terms-footer {
        /*height: 50vh;*/
    }

    .smallFont {
        font-size: 0.7rem;
    }

    .faqStatic {
        background-color: #FFFFFF;
        /*height: 30rem;*/
    }

    .play-btn {
        width: 25rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .title-font {
        font-size: 2.125rem;
    }

    .text-font {
        font-size: 1.25rem;
    }

    .trusted-by-text {
        color: rgb(0, 0, 0, 0.45);
        font-size: 1.15rem;
    }

    .paragraph-font {
        font-size: 0.9rem;
    }

    .vertical-border {
        height: 80%;
        left: 50%;
        transform: translate(-50%, 0%);
        top: 10%;
    }

    .w-90 {
        width: 90% !important;
    }
}

@media (max-width: 1200px) {
    @media (min-width: 479px) {

        .featuresBox {
            width: 90% !important;
            height: 10rem !important;
        }

        /*.featuresBox:hover {*/
        /*    width: 90% !important;*/
        /*    height: 10rem !important;*/
        /*}*/

        .operators {
            height: unset !important;
        }

        .terms-footer {
            height: unset !important;
        }

        .references {
            height: unset;
        }

        .howToPlay {
            height: unset;
        }

       

        .how-to-play-img {
            width: 40%;
        }

       

        .results-title {
            font-size: 1.5rem !important;
            font-family: 'OpenSans-ExtraBold', serif;
        }

        .results-title2 {
            font-size: 1.3rem !important;
            font-family: 'OpenSans-ExtraBold', serif;
        }

        .results-text {
            font-size: 0.85rem !important;
        }
    }
}

@media (max-width: 479px) {
    .sign-in-btn-footer{
        width: 70px;
        height: 25px;
        font-size: 10px;
    }
    .questionContainer{
        height: 45vh;
    }
    .sign-in-btn-hero{
        width: 250px;
        margin: auto;
        font-size: 18px;
    }

    .f-18{
        font-size: 12px;
    }

    .f-25{
        font-size: 18px;
    }
    

    .playNow {
        height: 100%;
    }
    .mobile-title-font{
        font-size: 1.5rem;
    }
    .downloadText{
        text-align: center;
    }

    .slider-image {
        width: 10rem;
    }

    /* .owl-theme .owl-dots .owl-dot.active span {
        height: 4px !important;
        width: 4px !important;
    }

    .owl-theme .owl-dots .owl-dot span {
        height: 8px !important;
        width: 8px !important;
    } */

    .operator-width {
        width: 60% !important;
    }

    .operator-logo-container {
         padding: 0;
    }

    .terms-footer {
        height: unset !important;
    }

    .references {
        height: unset;
    }

    .howToPlay {
        height: unset;
    }

 

    .w-90 {
        width: 90% !important;
    }

    .results-title {
        font-size: 1.2rem !important;
        font-family: 'OpenSans-ExtraBold', serif;
    }

    .results-title2 {
        font-size: 0.9rem !important;
        font-family: 'OpenSans-ExtraBold', serif;
    }

    .results-text {
        font-size: 0.5rem !important;
    }

    .features-blue-text {
        font-size: 0.9rem;
    }

    .how-to-play-img {
        width: 60%;
    }

    .how-to-play-text {
        font-size: 0.85rem;
    }

    .footer-text {
        font-size: 0.65rem !important;
    }

    .operators {
        height: unset !important;
    }

    .reference-box {
        padding: 0.5rem;
    }

  

    .vertical-border {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 67%;
        height: 60%;
    }

    .text-font {
        font-size: 1.1rem;
    }

    .trusted-by-text {
        color: rgb(0, 0, 0, 0.45);
        font-size: 0.7rem;
    }

    .paragraph-font {
        font-size: 0.75rem;
    }

    .title-font {
        font-size: 1em;
    }

    .play-btn {
        width: 100%;
        height: 3rem;
        font-size: 1.5rem;
    }

    #header {
        height: 7vh;
    }

    .smallFont {
        font-size: 0.55rem;
    }

    .faqStatic {
        background-color: #FFFFFF;
        /*height: 40rem;*/
    }

    .infoFooter {
        background-color: var(--sub-color);
    }

}

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



    .howToPlayBox {
        background-color: white;
        color: var(--main-color) !important;
        width: 100%;
        height: 8vh;
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .howToPlayBoxSelected {
        background-color: var(--main-color);
        color: white;
        width: 100%;
        height: 8vh;
        border: 1px solid var(--main-color);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .featuresBox {
        background-color: white;
        color: var(--main-color) !important;
        width: 9rem;
        height: 6rem;
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*.featuresBox:hover {*/
    /*    background-color: var(--main-color);*/
    /*    color: white !important;*/
    /*    width: 9rem;*/
    /*    height: 6rem;*/
    /*    border: 1px solid var(--main-color);*/
    /*    border-radius: 10px;*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*}*/

    .full-width {
        width: 100%;
    }

}

@media only screen and (min-width: 992px) {

    .howToPlayBox {
        background-color: white;
        color: var(--main-color) !important;
        width: 95%;
        height: 11vh;
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .howToPlayBoxSelected {
        background-color: var(--main-color);
        color: white;
        width: 95%;
        height: 11vh;
        border: 1px solid var(--main-color);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .featuresBox {
        background-color: white;
        color: var(--main-color) !important;
        width: 90%;
        height: 10rem;
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /*.featuresBox:hover {*/
    /*    background-color: var(--main-color);*/
    /*    color: white !important;*/
    /*    width: 90%;*/
    /*    height: 10rem;*/
    /*    border: 1px solid var(--main-color);*/
    /*    border-radius: 10px;*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    text-align: center;*/
    /*}*/

    .infoContainer {
        width: 25rem;
    }

    .text-lg-start[data-lang="AR"] {
        text-align: right !important
    }

    .infoFooter {
        background-color: var(--sub-color);
        min-height: 25vh;
    }

}


/* =================================================FAQ STYLING===================================================== */

.faq-details {
    font-size: 0.8rem;
    color: black !important;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-body {
    padding-top: unset;
}

.accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

/* =================================================FOOTER STYLING=================================================== */

.terms-footer {
    background-color: #1E2C37;
}

.footer-icon-medium {
    height: 65%;
}

.footer-icon-small {
    height: 20%;
    opacity: 55%;
}

.footer-text {
    font-size: 0.8rem;
}

.footer-rights {
    font-size: 0.7rem;
    font-family: "helvetica-neue-light-italic", sans-serif;
    padding-block: 1rem;
}
.footerLine{
    border-top: 1px solid #AFBDD0;
}

.form-control {
    background-color: #13212D !important;
    border: 1px solid #344352 !important;
    border-radius: 5px;
    color: whitesmoke;
}

.form-control:focus {
    background-color:  #13212D !important;
    border: 1px solid #344352 !important;
    color: whitesmoke;
    outline: 0;
    /*box-shadow:0 0 0 .1rem rgba(13,110,253,.25);*/
    box-shadow: unset;
}

.form-control::placeholder {
    color: grey;
}

.input-group-text {
    background-color: #13212D;
    color: rgba(175, 189, 208, 0.5);
    border: unset;
}

.input-group {
    /*border: 0.5px solid #344352;*/
    border-radius: 5px;
    color: white;
}


/* ==============================================LANGUAGE STYLING=================================================== */

.languageBtn {
    padding: 3px 12px;
    color: #969696 !important;
    vertical-align: unset;
    /*font-family: 'Helvetica-Neue' !important;*/
}

.languageBtnActive {
    color: #FFFFFF !important;
    background: var(--main-color);
}

/* ================================================SHINE STYLING===================================================== */

.shine-container {
    z-index: 0;
    overflow: hidden;
    width: 100%;
}

@-webkit-keyframes animShine {
    0% {
        opacity: 0;
        left: 10%;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        left: 80%;
    }
}

.shine {
    background-color: rgba(255, 255, 255, 0.3);
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 40px;
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    filter: blur(5px);
    -webkit-filter: blur(5px);
    z-index: 0;


    animation: animShine 1300ms infinite !important;
    animation-duration: 1300ms !important;
    animation-timing-function: ease-in-out !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    animation-direction: normal !important;
    animation-fill-mode: forwards !important;
    animation-play-state: running !important;
    animation-name: animShine !important;
    -webkit-animation: animShine 1300ms infinite !important;
    -moz-animation: animShine 1300ms infinite !important;
}

/* ================================================MODAL STYLING===================================================== */

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
}

.share-modal-content {
    z-index: 99999;
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    transform: translate(-50%, -50%);
    background-color: #000000;
    border-radius: 10px;
    border: 0.5px solid white;
}


@media only screen and (max-width: 992px) {
    .share-modal-content {
        width: 90% !important;
        padding: 3% !important;
    }
}

@media only screen and (min-width: 992px) {

    .share-modal-content {
        width: 35% !important;
        padding: 2% !important;
    }
}

/* ================================================OTHER STYLING===================================================== */

.main-color {
    color: var(--main-color) !important;
}

.sub-color {
    color: var(--sub-color) !important;
}

.blur-effect {
    filter: blur(5px);
}

.clickable {
    cursor: pointer;
}

.no-underline {
    text-decoration: none; /* Remove the underline */
    cursor: pointer; /* Keep the pointer cursor */
}

[dir="rtl"] .text-start {
    text-align: right !important;
}

[dir="rtl"] .float-end {
    float: left !important;
}

.backdrop {
    background-color: var(--main-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /*filter: blur(5px);*/
    filter: brightness(0.2) contrast(1);
    z-index: 999;
    pointer-events: none; /* Change this line */
}

.error-msg-style {
    color: var(--error-color);
    font-weight: bold;
}

.font-bold {
    font-family: 'OpenSans-Bold', serif;
}

.font-semibold {
    font-family: 'OpenSans-Semibold', serif;
}

.font-extrabold {
    font-family: 'OpenSans-ExtraBold', serif;
}

.horizontal-line {
    width: 90%;
    height: 0.5px;
    background-color: lightgrey;
}

.vertical-line {
    position: relative;
    text-align: center;
    /*padding: 20px;*/
}

.vertical-line::before {
    content: "";
    position: absolute;
    left: 50%; /* Position it at the center horizontally */
    top: 0;
    width: 0.5px; /* Adjust the width as needed */
    height: 5rem; /* Set the height to 50% of the parent element */
    background-color: rgba(112, 112, 112, 0.5); /* #707070 with 50% opacity */
}

.vertical-border {
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-block: unset;
    border-right: unset;
    position: absolute;
}

a,
a:focus,
a:hover {
    color: #fff;
}

.fal {
    font-family: "fontawesome-light", sans-serif !important;
    font-weight: 300 !important;
}

.fa-fw {
    text-align: center;
    width: 1.25em
}


.navbar-collapse {
    /*transition: max-height 10s linear ; !important;. */
    transition: transform 0.1s !important;
    overflow: hidden !important;
}

.navbar-collapse.show {
    max-height: 500px !important;
}

:focus-visible {
    outline: unset !important;
}

textarea.form-control {
    min-height: 5.6rem;
}

.back-to-top-btn {
    background-color: #3c3c3f;
    border: 1px solid #3c3c3f;
    color: white;
    border-radius: 50%; /* Use 50% border-radius to create a circle */
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 50px; /* Set a fixed width for the circular button */
    height: 50px; /* Set a fixed height for the circular button */
    text-align: center;
    line-height: 50px; /* Center the text vertically within the circle */
    font-size: 18px;
    cursor: pointer;
    z-index: 99;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: unset !important;
}

ol, ul {
    padding-left: 1rem;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:hover, .btn:first-child:active, :not(.btn-check)+.btn:active{
    color: white !important;
    background-color: #fd2e57;
}

/*==============================================SLIDING CARDS======================================================*/
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.operator-card-container {
    display: inline-block;
}

.operator-card-link {
    padding: 0.3rem;
}

.operator-card {
    border-radius: 4px;
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.12);
    object-fit: cover;
    object-position: top;
    user-drag: none;
}

.iORMOL {
    min-width: unset !important;
}

.operators .operator-logo-container:not(:hover) {
    /* Styles for not hovered items go here */
    filter: grayscale(100%) contrast(70%);
    opacity: 70%;
}

.red{
    color: #FF365D !important;
}

/* ===============================================POPUP LIST OF CARRIER===================================================== */
.continent{
    color: white;
    border-bottom: solid 1px #364E60;
    font-weight: 500;
    font-size: 14px;
}

.country {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin-right: 10px; 
  }
  
  .country img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modal-header {
    border-bottom:none !important
  }
  .modal-color {
    background-color: #180F45;
  }

  .country-card{
    background-color: whitesmoke;
    border-radius: 10px;
  }
  .modal-content { 
    border-radius: 20px !important
  }

  .operatorCard {
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    overflow: hidden; 
    background-color: rgba(255, 255, 255, 0.1);
  }
/* ===============================================POPUP LIST OF CARRIER ENDS ===================================================== */