/* Extracted from event/header.php.
   Linked from that same file so the cascade order is unchanged. */

/* Giving a background-color to the nav container. */
    nav {
        margin: -10px;
        background: #fff;
        /* padding: 12px 14px; */
        /* background: linear-gradient(90deg, rgba(106,68,75,1) 13%, rgba(126,30,47,1) 82%); */
        /* box-shadow: 0px 0px 8px 0px #333; */
    }

    #logo {
        display: block;
        padding: 0 30px;
        float: left;
        font-size: 20px;
        line-height: 50px;
    }

    /* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

    nav:after {
        content: "";
        display: table;
        clear: both;
    }

    /* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
    nav .menu {
        float: center;
    }

    nav ul {
        padding: 0;
        margin-left: 20px;
        ;
        list-style: none;
        position: relative;
    }

    /* Positioning the navigation items inline */
    nav ul li {
        margin-top: 4px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: -11px;
        display: inline-block;
        float: left;
        /* background: linear-gradient(90deg, rgba(106,68,75,1) 13%, rgba(126,30,47,1) 82%); */
    }

    /* Styling the links */
    nav a {
        display: block;
        padding: 14px 17px;
        color: #7e1e2f;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
    }

    nav a:hover {
        color: #E5CB9F;
        text-decoration: none;
        font-weight: 600;
    }

    ul.dd {
        background: #fff;
        border-top: 2px solid #9f4051;
        padding: 8px 35px;
        z-index: 1000;
    }

    ul.dd li a {
        display: block;
        padding: 8px 0px;
        font-weight: 500;
        color: #000;
        font-size: 17px;
        text-decoration: none;
    }

    ul.dd li:hover {
        /* background: linear-gradient(90deg, rgba(106,68,75,1) 13%, rgba(126,30,47,1) 82%); */

        /* border-left: 2px solid #A64B2A; */
    }

    ul.dd li:hover a {
        font-weight: 600;
        color: #7e1e2f !important;
    }

    .dropdown-menu {

        background: #fff;
        width: 280px;
        /* height: 70px; */
        padding: 10px 0;
    }

    .dropdown-menu a {
        color: brown;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 9px;
        margin: 4px !important;
    }

    .dropdown-menu a:hover {
        background: brown;
        padding: 6px 7px;
        color: #fff;
        text-decoration: none;
    }


    /* Hide Dropdowns by Default
 * and giving it a position of absolute */
    nav ul ul {
        display: none;
        position: absolute;
        /* has to be the same number as the "line-height" of "nav a" */
        top: 50px;
    }

    /* Display Dropdowns on Hover */
    nav ul li:hover>ul {
        display: inherit;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        width: 210px;
        float: none;
        display: list-item;
        position: relative;
    }

    /* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
    nav ul ul ul li {
        position: relative;
        top: -60px;
        /* has to be the same number as the "width" of "nav ul ul li" */
        left: 170px;
    }


    /* Change ' +' in order to change the Dropdown symbol */
    /* li > a:after { content:  ' '; }
li > a:only-child:after { content: ''; } */

    /* Media query */
    @media all and (max-width : 768px) {

        #logo {
            display: block;
            padding: 0;
            width: 100%;
            text-align: center;
            float: none;
        }

        nav {
            margin: 0;
        }

        /* Hide the navigation menu by default */
        /* Also hide the  */
        .toggle+a,
        .menu {
            display: none;
        }

        /* Stylinf the toggle lable */
        /* .toggle {
    display: block;
    background-color: #254441;
    padding:14px 20px;	
    color:#FFF;
    font-size:17px;
    text-decoration:none;
    border:none;
} */

        .toggle:hover {
            background-color: #000000;
        }

        /* Display Dropdown when clicked on Parent Lable */
        [id^=drop]:checked+ul {
            display: block;
        }

        /* Change menu item's width to 100% */
        nav ul li {
            display: block;
            width: 100%;
        }

        nav ul ul .toggle,
        nav ul ul a {
            padding: 0 40px;
        }

        nav ul ul ul a {
            padding: 0 80px;
        }

        /* nav a:hover,
 nav ul ul ul a {
    background-color: #000000;
} */

        nav ul li ul li .toggle,
        nav ul ul a,
        nav ul ul ul a {
            padding: 14px 20px;
            color: #FFF;
            font-size: 17px;
        }


        nav ul li ul li .toggle,
        nav ul ul a {
            background-color: #212121;
        }

        /* Hide Dropdowns by Default */
        nav ul ul {
            float: none;
            position: static;
            color: #ffffff;
            /* has to be the same number as the "line-height" of "nav a" */
        }

        /* Hide menus on hover */
        nav ul ul li:hover>ul,
        nav ul li:hover>ul {
            display: none;
        }

        /* Fisrt Tier Dropdown */
        nav ul ul li {
            display: block;
            width: 100%;
        }

        nav ul ul ul li {
            position: static;
            /* has to be the same number as the "width" of "nav ul ul li" */

        }

    }

    @media all and (max-width : 330px) {

        nav ul li {
            display: block;
            width: 94%;
        }

    }

    @media screen and (min-width: 780px) {
        a.icon {
            display: none;
        }
    }

    @media screen and (max-width: 780px) {
        .ev-btn {
            margin: 10px;
        }

        .ev-btn a {
            display: block;
            margin-bottom: 8px;
        }


    }

    .btn {
        background: linear-gradient(90deg, rgba(106, 68, 75, 1) 13%, rgba(126, 30, 47, 1) 82%);
        margin-top: 11px;
        margin-right: 18px;
        font-weight: 600;
        padding: 6px 5px;
        box-shadow: 0px 0px 8px 0px #ccc;
        /* float:right; */
    }

    .btn a {
        color: #fff;
        font-size: 14px;
        padding: 0px;

    }

    .btn:hover {
        background: #FFB562;

    }

    .btn:hover a {
        color: #fff;
        text-decoration: none;
    }

    .at-btn {
        background: linear-gradient(90deg, rgba(41, 137, 202, 1) 35%, rgba(18, 86, 160, 1) 94%);
        margin-top: 11px;
        margin-right: 18px;
        font-weight: 600;
        padding: 6px 5px;
        box-shadow: 0px 0px 8px 0px #ccc;
        border: none;
        border-radius: 8px;

    }

    .at-btn a {
        color: #fff;
        font-size: 14px;
        padding: 0px;

    }

    .at-btn:hover {
        background: #FFB562;

    }

    .at-btn:hover a {
        color: #fff;
        text-decoration: none;
    }

    /* banner */
    .tit {
        font-size: 26px;
        font-weight: 600;
    }

    /* .tit1{
    background: #E7AB79;
    padding: 8px 8px;

} */

    .modal-body {
        padding: 10px;
    }

    form .form-group input {
        border: 1px solid #333;
    }

    form .form-group select {
        border: 1px solid #333;
    }

    form .form-group textarea {
        border: 1px solid #333;
    }

    .form .form-group label {
        color: #2E4C6D;
    }

    .VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
        z-index: 9724790009779 !important;
        top: 0;
        left: unset;
        right: -5px;
        display: none !important;
        border-radius: 50%;
        border: 2px solid gold;
    }

    .VIpgJd-ZVi9od-aZ2wEe-OiiCO {
        width: 80px;
        height: 80px;
    }

    /*hide google translate link | logo | banner-frame */
    .goog-logo-link,
    .gskiptranslate,
    .goog-te-gadget span,
    .goog-te-banner-frame,
    #goog-gt-tt,
    .goog-te-balloon-frame,
    div#goog-gt- {
        display: none !important;
    }

    .goog-te-gadget {
        color: transparent !important;
        font-size: 0px;
    }

    .goog-text-highlight {
        background: none !important;
        box-shadow: none !important;
    }

    /*google translate Dropdown */

    #google_translate_element select {
        background: #f6edfd;
        color: #383ffa;
        border: none;
        border-radius: 3px;
        padding: 6px 8px;
        width: 186px;
    }

    .foo {
        background: linear-gradient(90deg, rgba(106, 68, 75, 1) 13%, rgba(126, 30, 47, 1) 82%);
    }

    .phn {
        color: #fff;
        text-align: left !important;
        padding: 0px 0;
        margin: 0 0 3px;
    }

    .fphn {
        color: #fff;
        font-size: 16px;
        margin-right: 2px
    }

    .emi {
        color: #fff;
        font-size: 16px;
        margin-right: 5px
    }

    .trans {
        margin-left: 0px;
        margin-bottom: 5px;
    }

    .tre {
        float: right;
    }

    .lg {
        width: 170px;
        height: 35px;
    }

    .menu {
        float: center;
    }

    .bgg {
        /* Relative to this file (event/css/partials/), not to the page. */
        background: url(../../images/rs-bg.webp);
        background-size: cover;
    }

    .mul {
        font-size: 20px;
        color: #fff !important;
        margin-top: -9px;
        margin-bottom: 27px;
        text-align: center;
        font-weight: 600;
        text-transform: capitalize;
    }

    .fly {
        font-size: 20px;
        color: #000957;
    }

    .cls {
        color: white;
        background: red;
    }

    .sub {
        padding: 6px 2px;
    }

    #logo {
        display: block;
        padding: 14px 30px;
        float: left;
        font-size: 20px;
        line-height: 50px;
    }

    .main-banner {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
        margin-top: 5px;
    }

    .coupon-card {
        text-align: center;
    }

    .coupon-card h3 {
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;

    }

    .coupon-card p {
        font-size: 15px;

    }

    .coupon-row {
        display: flex;
        align-items: center;
        margin: 0px auto;
        width: fit-content;

    }

    .bl-bg {
        /* Relative to this file (event/css/partials/), not to the page. */
        background: url(../../bl-fri-bg.webp);
        padding: 13px;
        border-radius: 20px;
        padding-bottom: 6px;
        border: 1px dashed #333333;
        position: relative;
        top: 2px;
    }

    .tit {
        position: relative;
        top: 20px;
        color: #fff;
        text-shadow: 2px 2px #333;
        text-align: center;
        font-size: 19px;
        padding: 0px 16px;
        line-height: 1.4;
    }

    .tit1 {
        top: 4px;
        color: #fff;
        position: relative;
        text-align: center !important;
        font-size: 18px;
        color: #E7AB79;
        font-weight: 600;
        float: center;

    }

    .ev-btn {
        margin-top: 33px;
    }

    nav {
        margin: 0px !important;
    }

    .coupon-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .validity-container {
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .validity-badge {
        font-size: 15px;
        font-weight: 600;
        margin: auto;
        letter-spacing: 0.5px;
        color: #4b6cb7;
        background: rgba(75, 108, 183, 0.05);
        padding: 4px 12px;
        border-radius: 20px;
        display: inline-block;
        animation: float 3s ease-in-out infinite;
        background: linear-gradient(90deg, #4b6cb7, #182848, #4b6cb7);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s linear infinite, float 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        to {
            background-position: 200% center;
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }

    /* Container layout initialization */
    .rl-lnk-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 22px !important;
        margin-bottom: 5px !important;
        clear: both !important;
    }

    .rl-lnk-container {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: left !important;
        max-width: 90%;
    }

    /* Structural Icon Box formatting */
    .rl-lnk-icon-box {
        width: 32px !important;
        height: 32px !important;
        background-color: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 10px !important;
        flex-shrink: 0 !important;
    }

    .rl-lnk-icon-box svg {
        width: 15px !important;
        height: 15px !important;
        fill: #ffffff !important;
        display: block !important;
    }

    .rl-lnk-text-box {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    /* OVERRIDE: Neutralizing global '.ev-btn a' styling rules */
    .ev-btn a.rl-pure-link {
        background: transparent !important;
        /* Strips out the theme button gradient */
        padding: 0 !important;
        /* Strips the heavy inner button padding */
        box-shadow: none !important;
        /* Removes the shadow drop */
        border-radius: 0 !important;
        /* Removes the corner rounding edges */
        margin: 0 !important;
        display: inline-block !important;
        color: #ffffff !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        line-height: 1.2 !important;
    }

    /* Clean text-link hover reactions */
    .ev-btn a.rl-pure-link:hover {
        background: transparent !important;
        color: #e5a93b !important;
        /* Gold text transition indicator */
        text-decoration: underline !important;
        /* Classic text link feedback hint */
    }

    .rl-lnk-arrow {
        margin-left: 4px !important;
        color: #e5a93b !important;
        font-weight: bold !important;
        display: inline-block !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .rl-pure-link:hover .rl-lnk-arrow {
        transform: translateX(4px) !important;
    }

    /* Description Typography setting */
    .rl-lnk-desc {
        color: #cccccc !important;
        font-size: 13px !important;
        margin: 3px 0 0 0 !important;
        font-weight: 400 !important;
        line-height: 1.3 !important;
    }

    /* Mobile Alignment Integrity Checks */
    @media screen and (max-width: 768px) {
        .rl-lnk-container {
            flex-direction: row !important;
            justify-content: center !important;
        }
    }

    /* Banner positioning context. */
    .main-banner {
        position: relative;
    }

    /* Let the banner grow on tablets / phones. */
    @media screen and (max-width: 992px) {
        .main-banner {
            height: auto;
            padding-bottom: 22px;
        }
    }
