@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {

    --main-font: 'Poppins', sans-serif;

    --yellow: #fac450;
    --gray: #777777;
    --shade: #fbfbfc;
    --pink: #EF005A;
    --red: #ed262d;
    --white: #fff;
    --light-gray: #eceffb;
    --form-gray: #d7d7d7;
    --black: #333333;
    --black1: #000;
    --th-gray: #f5f6fd;
    --green: #51cb57;
    --light-pink: #fef2f7;
}

body {
    font-family: var(--main-font) !important;
    background-position: center;
    margin: 0;
    overflow-x: hidden;
}

.error {
    color: var(--red);
    font-size: 0.8em;
    background-image: #ffebee;
}

.error-input {
    outline: var(--red) 1px solid;
}

.watch-trailer {
    background-color: var(--black1);
    text-transform: uppercase;
    color: var(--white);
    position: relative;
}

.watch-trailer:hover {
    background-color: var(--black1);
    color: var(--white);
}

.watch-trailer .icon {
    position: absolute;
    top: 50%;
    left: -7%;
    transform: translateY(-50%);
}

.divider-name {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    column-gap: 1vw;
}

.divider-name::before,
.divider-name::after {
    content: '';
    height: 1px;
    background-color: var(--gray);
    display: block;
}


.pages {
    margin-top: 15vh;
}

.bg-light-pink {
    background-color: var(--light-pink);
}

.fs-13 {
    font-size: 13px;
}

a {
    text-decoration: none;
}

.mandotory {
    color: var(--red);
}

/* colors */
.yellow {
    color: var(--yellow);
}

.red {
    color: var(--red);
}

.pink-bold {
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px !important;
}

.bg-gray-light {
    background-color: var(--light-gray);
}

.gray {
    color: var(--gray);
}

/* navbar */

.navbar {
    width: 100vw;
}

.navbar .nav-item a {
    color: var(--gray);
}

.navbar .nav-item a.active {
    color: var(--pink);
}

.navbar .nav-item a {
    font-size: 14px;
}

.navbar .navbar-brand {
    font-size: 22px;
    font-weight: 600;
}

.navbar .cart-dropdown-menu {
    width: 25vw;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 2px solid var(--pink);
    margin-top: 3vh;
}

.navbar .cart-dropdown-menu .view {
    background-color: transparent;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--pink);
    font-size: 12px;
    transition: 0.5s;
}

.nav-link::after {
    content: none
}

/* Disable pointer events for non-clickable links */
.nav-link.non-clickable {
    pointer-events: none;
    /* Prevent interaction */
    color: #6c757d;
    /* Optional: Style it as disabled (Bootstrap's muted color) */
    cursor: default;
    /* Change cursor to indicate non-interactivity */
}




.dropdown-toggle::after {
    content: none;
}

/* bannner */
.name-div h5 {
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}


/* plans */
section {
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.btn-pink-outline {
    background-color: transparent;
    color: var(--pink);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid var(--pink);
    font-size: 14px;
    width: 120px;
    transition: 0.5s;
}

.btn-pink {
    background-color: var(--pink);
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid var(--pink);
    font-size: 14px;
    width: 120px;
    transition: 0.5s;
}

.view-more {
    background-color: transparent;
    color: var(--pink);
    border-radius: 35px;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid var(--light-gray);
    font-size: 14px;
    transition: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.view-more:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.btn-pink-outline:hover {
    transform: scale(0.95);
    background-color: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}

.btn-pink:hover {
    background-color: var(--pink);
    color: var(--white);
    transform: scale(0.95);
}

/* digital-tv-ad */
#digital-tv-ad .card {
    height: 50vh;
    border-radius: 30px;
    background-position: center top;
    background-size: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
}

#digital-ad .card {
    height: 50vh;
    border-radius: 30px;
    background-position: center top;
    background-size: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
}

/* faq */
.accordion-button:focus {
    box-shadow: none;
}

footer {
    margin-top: 10vh;
    background-color: var(--black);
}

footer ul li {
    margin-top: 2vh;
}

footer ul li i {
    color: var(--form-gray);
}

.notification {
    position: fixed;
    background-color: var(--white);
    top: 10vh;
    right: 4vh;
    border-radius: 10px;
    border-bottom: 2px solid var(--pink);
    width: 30%;
    z-index: 100;
}



/* Hide the default checkbox */
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}



/* Custom checkbox design with 16px size */
.custom-checkbox {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    /* Background before check */
    border: 2px solid var(--pink);
    /* Border before check */
    border-radius: 3px;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Checkmark (hidden by default) */
.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 3px;
    /* Shift 1px to the right (was 2px before) */
    top: 0px;
    /* Moved 2px up */
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* When the checkbox is checked */
input[type="checkbox"]:checked+.custom-checkbox {
    background-color: var(--pink);
    /* Background after check */
}

/* Show the checkmark when checked */
input[type="checkbox"]:checked+.custom-checkbox::after {
    opacity: 1;
}



/* Custom checkbox design with 16px size */
.custom-checkbox-green {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    /* Background before check */
    border: 2px solid var(--white);
    /* Border before check */
    border-radius: 50%;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Checkmark (hidden by default) */
.custom-checkbox-green::after {
    content: "";
    position: absolute;
    left: 3px;
    /* Shift 1px to the right (was 2px before) */
    top: 0px;
    /* Moved 2px up */
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* When the checkbox is checked */
input[type="checkbox"]:checked+.custom-checkbox-green {
    background-color: var(--green);
    /* Background after check */
    border: 2px solid var(--green);
    /* Border after check */
}

/* Show the checkmark when checked */
input[type="checkbox"]:checked+.custom-checkbox-green::after {
    opacity: 1;
}




/* Disable word wrap for a specific cell */
.nowrap {
    white-space: nowrap;
}

a.disabled {
    pointer-events: none;
    cursor: not-allowed;
    color: gray;
    text-decoration: none;
}


@media(max-width:900px) {

    #digital-tv-ad .card {
        height: 40vh;
    }

    section h3 {
        font-size: 18px;
    }

    .navbar .cart-dropdown-menu {
        width: 80vw;
        left: 80% !important;
        transform: translateX(0%) !important;
        border: 2px solid var(--pink);
        margin-top: 3vh;
    }
}

/* spot input validator styles */
.bg-red>input {
    background-color: #ff000038 !important;
}

.bg-green>input {
    background-color: #00ff0038 !important;
}



.select2-selection>ul>li {
    background: none !important;
    background-color: transparent !important;
}

.select2-selection>ul>li>button {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
}