@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'ZELDA';
    src: url('../font/zelda/ZELDA.woff') format('woff2'), url('../font/zelda/ZELDA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZELDA';
    src: url('../font/zelda/ZELDA.woff2') format('woff2'), url('../font/zelda/ZELDA.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open-Sans/OpenSans-Extrabold.woff2') format('woff2'), url('../font/Open-Sans/OpenSans-Extrabold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../font/Open-Sans/OpenSans-CondensedLight.woff2') format('woff2'), url('../font/Open-Sans/OpenSans-CondensedLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open-Sans/OpenSans-Bold.woff2') format('woff2'), url('../font/Open-Sans/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open-Sans/OpenSans.woff2') format('woff2'), url('../font/Open-Sans/OpenSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open-Sans/OpenSans-Light.woff2') format('woff2'), url('../font/Open-Sans/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open-Sans/OpenSans-Semibold.woff2') format('woff2'), url('../font/Open-Sans/OpenSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

body {
    overflow-x: hidden;
    font-family: 'Open Sans';
    background: #000000;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-item.active a {
    color: #ff0000;
    /* Set your desired active state color */
    font-weight: bold;
}

/* Header start */
.header-wrapper {
    position: relative;
    z-index: 10;
}

header .logo-wrapper {
    display: block;
    width: 100%;
}

header .logo-wrapper img {
    display: block;
    margin: 0 auto;
    width: 125px;
    height: auto;
}

.menu-link {
    display: block;
    text-align: center;
    width: 100%;
    padding: 7px 10px;
    line-height: 1;
    color: #ffffff;
    transition: all 0.4s;
}

.menu-link:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
}

.upper-header .cart-wrapper {
    position: fixed;
    top: 16px;
    z-index: 11;
    cursor: pointer;
}

.upper-header .user-wrapper {
    position: fixed;
    top: 16px;
    right: 17px;
    z-index: 11;
}

.cart-wrapper .cart-icon {
    background: url('../images/cart-icon.svg') center no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
}

.user-wrapper .user-icon {
    background: url('../images/user.svg') center no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
}

.icon-wrapper a span {
    opacity: 0.6;
    transition: all 0.4s;
}

.icon-wrapper a span:hover {
    opacity: 1;
}

.icon-wrapper a .facebook {
    background: url('../images/facebook.svg') center no-repeat;
    display: block;
    width: 18px;
    height: 18px;
}

.icon-wrapper a .twiter {
    background: url('../images/twitter.svg') center no-repeat;
    display: block;
    width: 18px;
    height: 18px;
}

.icon-wrapper a .google {
    background: url('../images/google.svg') center no-repeat;
    display: block;
    width: 18px;
    height: 18px;
}

.copyright-wrapper span {
    font-size: 10px;
    display: block;
    text-align: center;
    color: #ffffff;
    line-height: 27px;
}

.app-version {
    font-size: 8px !important;
    opacity: 0.7;
    margin-top: 2px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bottom-footer .icon-wrapper {
    display: flex;
    justify-content: center;
    gap: 0 8px;
    margin: 10px 0;
}

/* Header end */

.home-back-overlay {
    margin: 0px;
    padding: 0px;
    position: fixed !important;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100% !important;
    background: url('../images/background-image-overlay-full.png');
    opacity: 0.35;
    z-index: -1;
}

.home-back-img {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: -2;
    object-fit: cover;
}

.home-back-img {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 0.4s ease-in-out;
}

.esim-provider-wrapper::before {
    content: '';
    background: url("../images/bg1.jpg") center no-repeat;
    background-size: cover;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -3;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}

.esim-provider-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.two-esim-wrapper::before {
    content: '';
    background: url("../images/bg2.jpg") center no-repeat;
    background-size: cover;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -3;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}

.two-esim-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.protal-wrapper::before {
    content: '';
    background: url("../images/bg3.jpeg") center no-repeat;
    background-size: cover;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -3;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}

.protal-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.autocomplete-list {
    position: absolute;
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    pointer-events: auto;
}

/* Show autocomplete-list only when it has list items */
.autocomplete-list:not(:empty) {
    display: block;
}

/* Hide autocomplete list when register tab is not active */
#register-content:not(.active) .autocomplete-list {
    display: none !important;
    visibility: hidden !important;
}

.autocomplete-list li {
    padding: 10px;
    cursor: pointer;
    color: white;
    /* Set text color to white */
    list-style: none;
    /* Remove default list item bullet */
    pointer-events: auto;
}

.contact-wrapper::before {
    content: '';
    background: url("../images/bg4.jpg") center no-repeat;
    background-size: cover;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -3;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}

.contact-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.faq-wrapper::before {
    content: '';
    background: url("../images/bg3.jpeg") center no-repeat;
    background-size: cover;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -3;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}

.faq-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.esim-provider-wrapper,
.two-esim-wrapper,
.protal-wrapper,
.faq-wrapper,
.contact-wrapper {
    height: 100vh;
    color: #ffffff;
    position: relative;
}

.list-wrapper {
    color: #ffffff;
    position: relative;
}

.esim-provider-wrapper .content-wrapper,
.protal-wrapper .content-wrapper,
.contact-wrapper .content-wrapper {
    display: flex;
    flex-direction: column;
}

.find-more-btn {
    padding: 13px 30px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 0.4s;
    letter-spacing: -1px;
}

.find-more-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.esim-provider-wrapper .info {
    font-weight: 500;
}

.two-esim-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-esim-wrapper .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.two-esim-wrapper a {
    width: 150px;
    text-align: center;
    padding: 10px 26px;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.4s;
    line-height: 1.2;
}



.two-esim-wrapper .sixtel-btn:hover {
    background-color: #ff0000;
    color: #fff;
}

.portal-tab-wrapper {
    display: flex;
    width: 100%;
    border: none;
}

.portal-tab-wrapper>li {
    width: 50%;
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.portal-tab-wrapper>li>span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2px;
    color: #fff !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.4s;
    padding: 8px 16px;
}

.portal-tab-wrapper>li:hover>span {
    color: #ff8700 !important;
}

.portal-tab-wrapper>li.active>span {
    color: #ff8700 !important;
    border-bottom: 3px solid #ff8700 !important;
}

.portal-tab-wrapper>li.active {
    color: #ff8700;
    border-color: #ff8700;
}

.login-icon::before {
    content: '';
    background: url('../images/login.svg') center no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    transition: all 0.4s;
}

.portal-tab-wrapper>li:hover>span .login-icon::before,
.portal-tab-wrapper>li.active>span .login-icon::before {
    background: url('../images/login-orange.svg') center no-repeat;
}

.register-icon::before {
    content: '';
    background: url('../images/register.svg') center no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    transition: all 0.4s;
}

.portal-tab-wrapper>li:hover>span .register-icon::before,
.portal-tab-wrapper>li.active>span .register-icon::before {
    background: url('../images/register-orange.svg') center no-repeat;
}

.portal-tab-content-wrapper {
    width: 100%;
    padding: 15px;
    min-height: 255px;
    height: auto;
}

.login-content-wrapper,
.register-content-wrapper {
    display: flex;
}

.portal-tab-content-wrapper .login-content-wrapper.active,
.portal-tab-content-wrapper .register-content-wrapper.active {
    display: flex;
}

.custom-tab-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all;
}

.custom-tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.login-form-wrapper,
.register-form-wrapper {
    padding: 0 15px;
}

.login-img,
.register-img {
    max-width: 180px;
    height: 180px;
    margin-left: auto;
}

.login-img-wrapper .login-img .login {
    background: url('../images/portal-login-side-img.png') center no-repeat;
    display: block;
    width: 100%;
    height: 100%;
}

.register-img-wrapper .register-img .register {
    background: url('../images/portal-register-side-img.png') center no-repeat;
    display: block;
    width: 100%;
    height: 100%;
}

.input-field input,
.input-field textarea {
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    transition: all 0.4s;
    width: 100%;
    padding: 6px 12px;
    line-height: 1.5;
    border: 1px solid #ffffff;
    font-weight: 600;
}

.input-field {
    margin-bottom: 16px;
    position: relative;
}

.input-field label {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

/* Contact form labels - positioned to the left on larger screens */
.contact-info-wrapper .input-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-wrapper .input-field label {
    min-width: 140px;
    margin-bottom: 0;
    text-align: right;
    flex-shrink: 0;
}

.contact-info-wrapper .input-field input,
.contact-info-wrapper .input-field textarea {
    flex: 1;
}

.input-field input:focus,
.input-field textarea:focus {
    background: #ffffff;
    color: #000;
    outline: none;
}

.input-field input:focus::placeholder,
.input-field textarea:focus::placeholder {
    color: #000;
}

.input-field input::placeholder,
.input-field textarea::placeholder {
    color: #ffffff;
    transition: all 0.4s;
}

.country-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px 0;
}

.country-address span:last-child {
    margin-top: 16px;
}

.submit-field {
    display: flex;
    justify-content: end;
}

.submit-field .submit {
    height: 43px;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    background-color: transparent;
    padding: 10px 26px;
    border: 1px solid #ffffff;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.submit-field .submit:hover {
    background: #ffffff;
    color: #000;
}

.contact-info-wrapper {
    width: 100%;
}

.menu-link.active {
    background: rgba(0, 0, 0, 0.15);
}

.esim-provider-wrapper .title h1,
.protal-wrapper .title h2,
.faq-wrapper .title h2,
.contact-wrapper .title h2 {
    font-weight: 500;
}

/* FAQ Section Styles */
.faq-wrapper .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.faq-wrapper .title {
    margin-bottom: 30px;
}

.faq-content {
    max-width: 800px;
    width: 100%;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 3px solid #ff8700;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff8700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/*product datalist page*/
.main-container {
    position: relative;
}

.main-container::after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
}

@keyframes background {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.all-sim-shop::after {
    background: #ff0000;
    animation: background 0.8s;
}



.travel-sim-main-wrapper::after {
    background: url('../images/bg7.jpg') no-repeat 50%;
    background-size: cover;
    animation: background 0.8s;
}

.main-container::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: url('../images/background-image-overlay-full.png');
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.35;
    transition: 1s all;
}

.fa-sim-wrapper {
    margin: auto;
}

.shop-name-title {
    display: flex;
    justify-content: center;
    padding: 25px 10px;
}

.shop-name-title .shop-link::before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.all-sim-shop .shop-name-title .shop-link::before {
    background: url('../images/bg-city-btn.jpg');
}



.shop-name-title .shop-link.travel-sim-main-wrapper::before {
    background: url('../images/bg7.jpg') no-repeat center;
    background-size: cover;
}

.shop-name-title .shop-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.shop-name-title .shop-link:hover {
    transform: translateY(-5px);
}

.shop-name-title .shop-link span {
    font-family: 'poppins', sans-serif;
    font-size: 9px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.all-sim-shop .shop-name-title .shop-link span {
    color: #000000;
}



.esim-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    justify-content: center;
}

.esim-items-wrapper>div {
    padding: 0 15px;
    width: 330px;
    margin: auto;
}

.esim-item-wrapper {
    perspective: 600px;
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
}

.esim-item-wrapper.active .esmi-img-wrapper {
    opacity: 0;
    visibility: hidden;
}

.esmi-img-wrapper {
    position: relative;
    height: 150px;
    margin: -30px 15px 0 15px;
    transition: all 1s ease-out 0s;
    opacity: 1;
    visibility: visible;
}

.item-9 .esmi-img-wrapper {
    height: 180px;
}

.esmi-img-wrapper .esim-face {
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.esmi-img-wrapper .esim-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}



.item-7 .esim-img {
    background: url("../images/20-gigabyte.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.item-8 .esim-img {
    background: url("../images/50-gigabyte.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.item-9 .esim-img {
    background: url("../images/unlimited.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.item-10 .esim-img {
    background: url("../images/1-gigabyte.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.item-11 .esim-img {
    background: url("../images/2-gigabyte.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.item-12 .esim-img {
    background: url("../images/6-gigabyte.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.item-13 .esim-img {
    background: url("../images/24-gigabyte.jpg");
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.esmi-img-wrapper .com-name {
    font-family: 'ZELDA';
    font-weight: 600;
    position: absolute;
    z-index: 3;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.esmi-img-wrapper .com-link {
    font-weight: 600;
    position: absolute;
    z-index: 3;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.esmi-img-wrapper .esim-face.front .com-name {
    align-items: center;
    color: white;
}

.esmi-img-wrapper .esim-face.back .com-link {
    align-items: end;
    color: black;
    padding-bottom: 10px;
}

.esim-price-wrapper {
    font-size: 30px;
    color: rgb(255, 135, 0);
    font-weight: 600;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
}

.all-sim-shop .esim-price-wrapper {
    color: #ff8700;
}



.all-sim-shop .esim-price-wrapper .euro-icon {
    background: url("../images/euro-orange.svg") no-repeat;
    display: block;
    width: 11px;
    height: 16px;
    background-size: contain;
}



.esim-description-wrapper {
    padding: 15px 30px 0 30px;
}

.description-item span:first-child {
    font-size: 14px;
}

.description-item .right-icon {
    background: url("../images/right.svg");
    display: block;
    width: 16px;
    height: 16px;
}

.description-item .wrong-icon {
    background: url("../images/wrong.svg");
    display: block;
    width: 16px;
    height: 16px;
}

.description-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
    line-height: 1.5em;
    padding: 2px 0;
}

.add-cart-btn {
    display: flex;
    justify-content: center;
}

.add-cart-btn .btn {
    position: relative;
    display: inline-block;
    padding: 8px 10px;
    border: 1px;
    background: red;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    box-shadow: 0px 1px 4px -2px #333;
    text-shadow: 0px -1px #333;
    margin-top: 24px;
    cursor: pointer;
}

.add-cart-btn .btn:hover {
    background: linear-gradient(#073, #0fa);
}

.add-cart-btn .btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}

.add-cart-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.romain-info-btn span {
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
}



.all-sim-shop .romain-info-btn span {
    background: url("../images/romain-orange.svg");
}

.romain-info-btn {
    position: absolute;
    right: 7px;
    bottom: 0px;
}

.esim-front-view {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    z-index: 1;
    width: 100%;
    transition: all 1s ease-out 0s;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.esim-back-view {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    z-index: 1;
    height: 100%;
    width: 100%;
    transition: all 1s ease-out 0s;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.esim-front-view {
    transform: rotateY(0deg);
}

.esim-back-view {
    transform: rotateY(-180deg);
}

.active .esim-front-view {
    transform: rotateY(180deg);
}

.active .esim-back-view {
    transform: rotateY(0deg);
}

.esim-back-view {
    position: absolute;
    top: 0;
    background: #ffffff;
}

.romai-info {
    padding: 15px 30px 5px 30px;
}

.romai-info p {
    margin: 12px 0;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    color: #000000de;
}

/*travel-esim page*/
.list-option-btn .btn {
    background: url("../images/toggle-off.svg") center no-repeat;
    background-size: contain;
    display: block;
    width: 25px;
    height: 25px;
    transition: all 0.4s;
    margin: 16px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 111;
    cursor: pointer;
}

.list-option-btn.active .btn {
    background: url("../images/toggle-on.svg") center no-repeat;
    background-size: contain;
}

.list-option-wrappers.active .list-wrapper {
    display: none;
}

.list-option-wrappers .option-wrapper {
    display: none;
}

.list-option-wrappers.active .option-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 8.5%;
    height: 100vh;
    position: relative;
}

.nav-tabs {
    border: none;
}

.list-tabs {
    display: flex;
}

.list-tabs .list-tab {
    width: calc(100% / 5);
}

.country-list-items.active {
    display: block;
}

.country-list-items {
    display: none;
}

.list-tabs .list-tab .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2px;
    color: #fff !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.25) !important;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 10px 0;
}

.list-tabs .list-tab .nav-link span {
    transition: all 0.4s;
    transform: translateY(0);
}

.list-tabs .list-tab:hover .nav-link {
    color: #ff8700 !important;
}

.list-tabs .list-tab:hover .nav-link span {
    transform: translateY(-2px);
}

.list-tabs .list-tab.active .nav-link {
    color: #ff8700 !important;
    border-bottom: 3px solid #ff8700 !important;
}

.list-tabs .list-tab:hover .nav-link .login-icon::before,
.list-tabs .list-tab.active .nav-link .login-icon::before {
    background: url('../images/login-orange.svg') center no-repeat;
}

.country-list-wrappers .country-list-items {
    padding: 15px;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    padding: 0 8px;
}

.country-list .country-item {
    display: flex;
    gap: 0 15px;
    align-items: center;
    min-height: 27px;
    font-family: poppins;
    font-size: 15px;
    position: relative;
}

.country-toltip {
    position: absolute;
    top: -29px;
    left: 0;
    right: 0;
    width: fit-content;
    padding: 5px;
    color: black;
    font-size: 15px;
    background: white;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.country-data .country-toltip {
    margin: auto;
}

.country-toltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    display: block;
    width: 10px;
    height: 10px;
    background-color: white;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.country-list .country-item:hover .country-toltip,
.country-data:hover .country-toltip {
    opacity: 1;
    visibility: visible;
}

.country-list .country-img {
    background-size: contain;
    display: block;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.country-img img {
    width: 24px;
}

.list-content-wrappers {
    height: 100%;
}

.flag {
    display: none;
}

.country-code {
    color: #ff8700;
    margin-right: 2px;
}

.country-drop-down-wrapper .country-name {
    margin-left: 20px;
    width: 100%;
}

@keyframes Country {
    0% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.country-search {
    font-size: 14px;
    padding: 12px 10px 12px 30px;
    border: 0.5px solid gray;
    border-radius: 25px;
    height: 35px;
    width: 100%;
    text-align: left;
    background: #37383a;
    color: #ff8700;
    transition: 0.2s all;
}

.country-search-wrapper.active .country-search {
    padding: 12px 10px;
}

.country-search:focus {
    outline: none;
}

.country-search-wrapper {
    padding: 25px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-btn:before {
    content: '';
    display: block;
    background: url("../images/search.svg");
    width: 16px;
    height: 16px;
    margin: auto;
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
}

.country-search-wrapper.active .search-icon-btn:before {
    opacity: 0;
    visibility: hidden;
}

.search-icon-btn,
.search-clear-btn {
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
}

.search-icon-btn {
    left: 9px;
}

.search-clear-btn {
    right: 9px;
}

.search-clear-btn:after {
    content: '';
    display: block;
    background: url("../images/clear-search.svg");
    width: 15px;
    height: 15px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    cursor: pointer;
}

.country-search-wrapper.active .search-clear-btn:after {
    opacity: 1;
    visibility: visible;
}

.selction:focus-visible {
    outline: none;
}

.country-roming {
    position: sticky;
    top: 0;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0;
    background: #37383a;
    height: 50px;
    line-height: 50px;
    margin-top: 0;
    font-size: 20px;
    font-family: poppins;
    border-radius: 25px;
    z-index: 1;
    margin-bottom: 15px;
}

::-webkit-scrollbar {
    width: 0;
}

.country-continue-btn {
    position: absolute;
    z-index: 111;
}

.country-continue-btn .btn {
    background-color: #007bff;
    height: 55px;
    padding: 0 100px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    color: #ffffff;
    border-radius: 25px;
}

.country-drop-down .country-drop-icon::after {
    content: '';
    display: block;
    background: url("../images/triangle.svg");
    width: 15px;
    height: 13px;
    transform: rotateX(180deg);
    transition: 0.4s all;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.country-drop-down-wrapper {
    margin: 0 auto;
    z-index: 112;
    width: 100%;
}

.country-drop-down {
    position: relative;
    background-color: #37383a;
    color: white;
    margin: 0 auto;
    padding: 0 15px 0 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 55px;
    border-radius: 20px;
    text-align: left;
    transition: all 1s;
    display: flex !important;
    align-items: center;
    max-width: 450px;
    opacity: 1;
}

.country-drop-down.active {
    opacity: 0.5;
}

.country-data-wrapper {
    width: 90%;
    margin: 0 auto;
    background: rgb(33, 37, 41);
    height: 70vh;
    border-radius: 20px;
    transform: translateY(20px);
    transition: 0.4s all;
    opacity: 0;
    visibility: hidden;
}

.country-data-wrapper.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.country-data-list-items {
    margin: 0 auto;
    color: #ffffff;
    border-radius: 25px;
    position: relative;
    height: calc(100% - 85px);
    overflow: auto;
}

.country-drop-down-wrapper .country-list {
    padding: 0 8px 0 8px;
    border-radius: 25px;
    background: #37383a;
}

.country-list .country-data {
    display: flex;
    align-items: center;
    border-radius: 25px;
    transition: 0.2s all;
    background-color: transparent;
    cursor: pointer;
    width: 100%;
    position: relative;
}

.country-list .country-data:hover,
.country-list .country-data.active:hover {
    background-color: #212529;
}

.country-data:hover img,
.country-data:hover .country-code-defult,
.country-data:hover .country-name-defult {
    opacity: 0.7;
}

.country-list .country-data.active {
    background-color: #ff8700;
}

.country-code-defult {
    display: inline-block;
    margin-left: 10px;
    font-size: 15px;
    color: gray;
    min-width: 20px;
}

.country-drop-down-wrapper .country-name-defult {
    margin-left: 16px;
    font-family: poppins;
}

.country-drop-icon {
    display: block;
    width: 15px;
    height: 13px;
    padding-right: 10px;
    transform: rotate(0deg);
}

.country-drop-down.active .country-drop-icon {
    transform: rotate(180deg);
}

.back-to-top {
    position: fixed;
    bottom: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all;
}

.back-to-top.show {
    opacity: 0.5;
    visibility: visible;
    transition: 0.4s all;
}

.back-to-top:hover {
    opacity: 1;
}

.back-to-top:hover span {
    transform: translateY(-5px);
}

.back-to-top span {
    display: block;
    background: url("../images/back-to-top.svg");
    width: 30px;
    height: 30px;
    background-size: contain;
    transform: translateY(0);
    transition: 0.4s all;
}

.country-list.hidden {
    display: none;
}

@media (max-width: 991px) {
    .esim-items-wrapper {
        gap: 75px 0px;
    }

    .login-img-wrapper,
    .register-img-wrapper {
        display: none;
    }

    .login-content-wrapper>div,
    .register-content-wrapper>div {
        width: 100%;
    }

    .input-field input {
        height: 34px;
    }

    .country-address {
        width: 100%;
        margin-bottom: 16px;
        margin-top: 45px;
    }

    .submit-field .submit {
        font-size: 13px;
    }

    .contact-info-wrapper .input-field {
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 5px;
    }

    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .input-field textarea {
        min-height: 125px;
    }
}

@media (max-width: 767px) {
    .fa-sim-wrapper {
        max-width: 540px;
    }

    .main-header .bottom-footer {
        display: none;
    }

    footer {
        display: block;
    }

    footer .bottom-footer {
        background: rgba(0, 0, 0, 0.29);
        padding: 15px 5px;
    }

    .bottom-footer .icon-wrapper {
        margin: 14px 0;
    }

    header .logo .logo-wrapper {
        padding: 15px 0 20px 0;
        background: rgba(0, 0, 0, 0.1);
    }

    .mobile-toggle-menu {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.4s;
        cursor: pointer;
    }

    .mobile-toggle-menu:hover {
        background: rgba(0, 0, 0, 0.4);
    }

    .nav-bar-wrapper.show-menu .mobile-toggle-menu {
        background: rgba(0, 0, 0, 0.4);
    }

    .mobile-toggle-menu::before {
        content: '';
        display: block;
        width: 100%;
        height: 50px;
        position: absolute;
        background: rgba(0, 0, 0, 0.29);
        z-index: 1;
    }

    .mobile-toggle-menu .toggle-icon {
        background: url("../images/menu.svg") center no-repeat;
        background-size: contain;
        display: block;
        width: 30px;
        height: 30px;
        z-index: 0;
        transition: all 0.4s;
    }

    .mobile-toggle-menu:hover .toggle-icon {
        z-index: 2;
    }

    .main-header {
        background: rgba(0, 0, 0, 0.29);
    }

    .menu-items {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-bar-wrapper.show-menu .menu-items {
        max-height: 500px;
    }

    .menu-link {
        padding: 13px 10px;
        background: rgba(0, 0, 0, 0.1);
        font-size: 15px;
    }

    .esim-provider-wrapper .title h1 {
        font-size: 36px;
        margin: 0;
        line-height: 36px;
        text-align: center;
    }

    .protal-wrapper .title h2,
    .contact-wrapper .title h2,
    .list-option-wrappers .title h2 {
        font-size: 36px;
        margin: 16px 0;
        line-height: 36px;
    }

    .list-option-wrappers .title h2 {
        text-align: center;
    }

    .esim-provider-wrapper .info {
        font-size: 18px;
    }

    .find-more-btn {
        font-size: 16px;
    }

    .esim-provider-wrapper .content-wrapper {
        gap: 22px;
    }

    .esim-provider-wrapper .content-wrapper,
    .protal-wrapper .content-wrapper,
    .contact-wrapper .content-wrapper,
    .travel-sim-main-wrapper .content-wrapper {
        align-items: center;
        padding: 0 15px;
    }

    .esim-provider-wrapper,
    .two-esim-wrapper,
    .protal-wrapper,
    .contact-wrapper {
        padding: 50px 0 95px 0;
    }

    .esim-provider-wrapper::after,
    .two-esim-wrapper::after,
    .protal-wrapper::after,
    .contact-wrapper::after {
        content: '';
        display: block;
        width: 336px;
        max-width: 35%;
        height: 2px;
        background: #ffffff;
        margin: auto;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
    }

    .footer-logo .logo {
        background: url("../images/logo-multi.svg") center no-repeat;
        background-size: contain;
        display: block;
        width: 14px;
        height: 20px;
    }

    .logo-wrapper .mobile-logo {
        background: url("../images/sixtel-1.svg") center no-repeat;
        display: block;
        height: 27px;
        width: 125px;
        background-size: contain;
        margin: 0 auto;
    }

    .logo-wrapper .dekstop-logo {
        display: none;
    }

    .back-to-top {
        right: 5px;
    }

    .country-address {
        align-items: center;
    }

    .country-list-wrappers .country-list-items {
        height: calc(100vh - 340px);
        overflow: auto;
    }

    .mini-cart-button {
        top: -4px;
        right: -3px;
        width: 12px;
        height: 12px;
        font-size: 9px;
    }

    .cart-wrapper .cart-icon,
    .user-wrapper .user-icon {
        width: 20px;
        height: 20px;
    }

    .upper-header .cart-wrapper {
        right: 44px;
    }
}

@media (max-width: 575px) {
    .country-list {
        flex-direction: column;
    }

    .country-drop-down-wrapper {
        max-width: 90%;
    }

    .country-data img {
        width: 30px;
        height: 20px;
    }

    .country-list .country-data {
        min-height: 45px;
        padding: 0 10px;
    }

    .country-search-wrapper {
        padding: 15px 0;
    }

    .country-data-wrapper {
        padding: 0 15px;
    }

    #travelesim-page footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .country-continue-btn {
        top: 110px;
    }

    .list-wrapper .country-list>li {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .country-drop-down-wrapper {
        max-width: 450px;
    }

    .country-data img {
        width: 50px;
        height: 40px;
    }

    .country-list .country-data {
        min-height: 66px;
        padding: 0 15px 0 22px;
    }

    .country-search-wrapper {
        padding: 25px 0;
    }

    .country-data-wrapper {
        padding: 0 24px;
    }

    .country-continue-btn {
        bottom: 25px;
    }

    .list-wrapper .country-list {
        gap: 16px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .list-wrapper .country-list>li {
        width: calc((100% - 16px) / 2);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-wrapper {
        left: 3%;
        width: 13%;
        max-width: 150px;
        min-width: 150px;
    }

    .menu-link {
        font-size: 16px;
    }

    .list-option-wrappers .title h2 {
        font-size: 45px;
        text-align: end;
        margin: 22px 0;
    }

    .list-option-wrappers .content-wrapper {
        width: 100%;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    header .logo {
        padding: 28px 0 20px 0;
    }
}

@media (min-width: 768px) {
    .header-wrapper {
        position: fixed;
        top: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.29) 0%, rgba(0, 0, 0, 0) 78%, rgba(0, 0, 0, 0) 100%);
    }

    .main-container {
        margin: 0 6.5% 0 24.5%;
    }

    .main-header {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-bottom: 35px;
    }

    .nav-bar-wrapper {
        flex-grow: 1;
    }

    .fa-sim-wrapper {
        max-width: 1140px;
    }

    .main-header .bottom-footer {
        display: block;
    }

    footer {
        display: none;
    }

    .bottom-footer .icon-wrapper {
        margin: 10px 0;
    }

    .menu-items {
        margin: 12px 0;
    }

    .home-main-wrapper {
        margin: 0 6.5% 0 24.5%;
    }

    .esim-provider-wrapper .content-wrapper,
    .protal-wrapper .content-wrapper,
    .contact-wrapper .content-wrapper {
        align-items: end;
        width: 100%;
        padding: 0 15px;
        position: absolute;
        bottom: 16%;
        right: 0;
        margin: 25px 0;
    }

    .esim-provider-wrapper .content-wrapper,
    .protal-wrapper .content-wrapper {
        max-width: 75%;
    }

    .contact-wrapper .content-wrapper {
        max-width: 90%;
    }

    .esim-provider-wrapper .title h1,
    .protal-wrapper .title h2,
    .contact-wrapper .title h2 {
        font-size: 55px;
        text-align: end;
    }

    .protal-wrapper .title h2,
    .contact-wrapper .title h2 {
        margin: 30px 0;
    }

    .esim-provider-wrapper .info {
        font-size: 25px;
    }

    .find-more-btn {
        font-size: 19px;
    }

    .esim-provider-wrapper .content-wrapper {
        gap: 25px;
    }

    .footer-logo-wrapper .footer-logo {
        background: url("../images/sixtel-1.svg") center no-repeat;
        background-size: contain;
        display: block;
        width: 50px;
        height: 11px;
        padding: 0;
    }

    .footer-logo-wrapper a {
        display: flex;
        justify-content: center;
    }

    .logo-wrapper .mobile-logo {
        display: none;
    }

    .logo-wrapper .dekstop-logo {
        width: 100%;
        height: 180px;
        display: block;
    }

    #index-page .logo-wrapper .dekstop-logo {
        background: url("../images/logo-multi.svg") center no-repeat;
        background-size: contain;
    }

    #faesim-page .logo-wrapper .dekstop-logo {
        background: url("../images/logo-white-yellow.svg") center no-repeat;
        background-size: contain;
    }



    #travel-page .logo-wrapper .dekstop-logo {
        background: url("../images/logo-orange.svg") center no-repeat;
        background-size: contain;
    }

    #shop-page .logo-wrapper .dekstop-logo {
        background: url("../images/logo-white-red.svg") center no-repeat;
        background-size: contain;
    }

    .back-to-top {
        left: 5px;
    }

    .country-address {
        align-items: end;
    }

    .mini-cart-button {
        top: -7px;
        right: -6px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .cart-wrapper .cart-icon,
    .user-wrapper .user-icon {
        width: 30px;
        height: 30px;
    }

    .upper-header .cart-wrapper {
        right: 56px;
    }
}

@media (min-width: 992px) {
    .header-wrapper {
        left: 6.5%;
        width: 13%;
        max-width: 205px;
        min-width: 190px;
    }

    header .logo {
        padding: 42px 0 30px 0;
    }

    .menu-link {
        font-size: 19px;
    }

    .esim-items-wrapper {
        gap: 53px 0px;
    }

    .login-content-wrapper>div,
    .register-content-wrapper>div {
        width: 50%;
    }

    .input-field input {
        height: 54px;
    }

    .contact-info-wrapper {
        display: flex;
        gap: 40px;
        max-width: 1400px;
        width: 100%;
    }

    .country-address {
        width: 30%;
        min-width: 200px;
    }

    .input-field-wrapper {
        width: 70%;
        flex: 1;
    }

    .contact-info-wrapper .input-wrapper {
        display: flex;
        gap: 0 30px;
        width: 70%;
        justify-content: end;
        flex: 1;
    }

    .contact-info-wrapper .message-wrapper {
        width: 30%;
        min-width: 300px;
    }

    .contact-info-wrapper .message-wrapper .input-field {
        height: 100%;
        padding-bottom: 16px;
    }

    .contact-info-wrapper .message-wrapper .input-field textarea {
        height: 100%;
    }

    .contact-info-wrapper .input-field {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .contact-info-wrapper .input-field label {
        min-width: 140px;
        text-align: right;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .contact-info-wrapper .input-field input,
    .contact-info-wrapper .input-field textarea {
        flex: 1;
        min-width: 250px;
    }

    .contact-info-wrapper .input-field input {
        min-width: 300px;
    }

    .contact-info-wrapper .input-field textarea {
        min-width: 350px;
    }

    .list-option-wrappers .title h2 {
        font-size: 55px;
        text-align: end;
        margin: 28px 0;
    }

    .country-list-wrappers {
        min-height: 495px;
    }

    .list-option-wrappers .content-wrapper {
        width: 100%;
        padding: 0 15px;
        position: relative;
        bottom: -200px;
        right: 0;
        margin: 0;
        min-height: 60%;
        height: 100%;
    }



}

@media (min-width: 992px) and (max-width: 1199px) {
    .list-wrapper .country-list>li {
        width: calc((100% - 32px) / 3);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .list-wrapper .country-list>li {
        width: calc((100% - 48px) / 4);
    }
}

@media (min-width: 1400px) {
    .list-wrapper .country-list>li {
        width: calc((100% - 64px) / 5);
    }
}

@media (min-width: 1440px) {
    .esim-items-wrapper {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

    .esim-items-wrapper>div {
        grid-column: span 2;
    }

    .esim-items-wrapper>div:nth-child(1),
    .esim-items-wrapper>div:nth-child(2),
    .esim-items-wrapper>div:nth-child(3) {
        grid-column: span 2;
    }

    .esim-items-wrapper>div:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .esim-items-wrapper>div:nth-child(5) {
        grid-column: 4 / span 2;
    }

    .esim-items-wrapper>div:nth-child(6) {
        grid-column: 2 / span 2;
    }

    .esim-items-wrapper>div:nth-child(7) {
        grid-column: 4 / span 2;
    }
}

.curency-icon {
    font-size: 22px;
    line-height: 30px;
}

.esim-price-wrapper>span {
    display: flex;
    align-items: center;
}

.mini-cart-container {
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 999;
}

.mini-cart-button {
    background-color: #FFBF00;
    color: #000;
    cursor: pointer;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
}

.mini-cart-button:hover {
    background-color: #ffe000;
}

/* CSS for desktop view */
.country-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CSS for mobile view */
/* CSS for mobile view */
@media only screen and (max-width: 767px) {
    .country-name {
        display: block;
        /* Ensure the country name is displayed in a new line */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* item-10 vertical flip */
.esmi-img-wrapper {
    perspective: 1200px;
}

.esim-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.esim-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    background-color: #fff;
}

.esim-face .esim-img {
    position: absolute;
    inset: 0;
}

.esim-face.back {
    transform: rotateX(180deg);
}

.esmi-img-wrapper.active-img .esim-flip {
    transform: rotateX(180deg);
}

.esim-img.qr-code-img {
    background: url("../images/qr-code.png");
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: 10px auto;
}

/* ============================================
   Modal Styles for Login/Registration Popup
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ff8700;
}

.modal-body {
    padding: 20px;
}

.modal-tabs {
    margin-bottom: 20px;
}

.modal-content-wrapper {
    min-height: 300px;
    height: auto;
}

.modal-content-wrapper .login-content-wrapper,
.modal-content-wrapper .register-content-wrapper {
    flex-direction: column;
}

.modal-content-wrapper .login-img-wrapper,
.modal-content-wrapper .register-img-wrapper {
    display: none;
}

.modal-content-wrapper .login-form-wrapper,
.modal-content-wrapper .register-form-wrapper {
    width: 100%;
    padding: 0;
    position: relative;
}

.modal-autocomplete {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10001;
    width: 100%;
    margin-top: 2px;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none;
}
.modal-autocomplete:empty {
    display: none;
}
/* Show modal-autocomplete only when it has list items */
.modal-autocomplete:not(:empty) {
    display: block;
}

.modal-content-wrapper .input-field {
    position: relative;
}

.modal-autocomplete li {
    padding: 10px;
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-autocomplete li:hover {
    background-color: rgba(255, 135, 0, 0.2);
    color: #ff8700;
}

/* Mobile Responsive */
@media only screen and (max-width: 767px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 15px;
    }
}

/* User Data Table Styles */
.user-data-table-wrapper {
    width: 100%;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

/* Ensure logout button is always clickable */
#logoutBtn {
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.submit-field {
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.user-data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-data-table thead {
    background-color: rgba(255, 135, 0, 0.2);
}

.user-data-table th {
    padding: 12px 15px;
    text-align: left;
    color: #ff8700;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid rgba(255, 135, 0, 0.3);
}

.user-data-table td {
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-data-table tbody tr:last-child td {
    border-bottom: none;
}

.user-data-table tbody tr:hover {
    background-color: rgba(255, 135, 0, 0.1);
}

.user-data-table tbody tr td:first-child {
    font-weight: 600;
    color: #ff8700;
    width: 40%;
}

.user-data-table tbody tr td:last-child {
    color: #fff;
}

/* Mobile Responsive for Table */
@media only screen and (max-width: 767px) {
    .user-data-table {
        font-size: 12px;
    }

    .user-data-table th,
    .user-data-table td {
        padding: 8px 10px;
    }
}

/* Bundle History Table Styles */
.bundle-history-wrapper {
    width: 100%;
    margin: 30px 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bundle-history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.bundle-history-title-section {
    flex: 1;
}

.bundle-history-title {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.bundle-history-subtitle {
    color: #000;
    font-size: 13px;
    margin: 0;
}

.bundle-history-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-list-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    text-decoration: none;
    padding: 7px 11px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 13px;
}

.price-list-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.download-icon {
    font-size: 16px;
    position: relative;
    top: -1px;
}

.bundle-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    pointer-events: none;
}

.bundle-search-input {
    padding: 10.5px 11px 10.5px 32px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #333;
    font-size: 13px;
    width: 180px;
    transition: all 0.3s;
}

.bundle-search-input:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.4);
    background: #fff;
}

.bundle-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.bundle-table-container {
    border-radius: 8px;
    background-color: #f5f5f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

/* Ensure scrollbar is always visible when content overflows */
.bundle-table-container::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.bundle-table-container::-webkit-scrollbar-track {
    background: #e8e8e0;
    border-radius: 4px;
}

.bundle-table-container::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

.bundle-table-container::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.bundle-history-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 13px;
    background-color: #fff;
}

.bundle-history-table thead {
    background-color: #e8e8e0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.bundle-history-table th {
    padding: 12px 10px;
    text-align: left;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 2px solid #ccc;
    white-space: nowrap;
}

.bundle-history-table th .sort-icon {
    margin-left: 5px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 11px;
}

.bundle-history-table td {
    padding: 10px;
    color: #000;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bundle-history-table tbody tr {
    background-color: #fff;
}

.bundle-history-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.bundle-history-table tbody tr:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.bundle-history-table tbody tr:last-child td {
    border-bottom: none;
}

.bundle-history-table .no-icon {
    color: rgba(0, 0, 0, 0.4);
    font-weight: bold;
}
/* Mobile Responsive for Bundle History */
@media only screen and (max-width: 767px) {
    .bundle-history-header {
        flex-direction: column;
    }

    .bundle-history-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .bundle-search-input {
        width: 100%;
    }

    .bundle-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bundle-table-container::-webkit-scrollbar {
        height: 6px;
    }

    .bundle-history-table {
        font-size: 11px;
        min-width: 700px;
    }

    .bundle-history-table th,
    .bundle-history-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
}