/* ==========================================================================
   1. IMPORTS & GLOBAL RESET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    position: relative;
    font-size: 16px;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: 0 !important;
    font-family: "Roboto", sans-serif;
    background: #fff;
    color: #000;
}


/* ==========================================================================
   2. GLOBAL ELEMENTS
   ========================================================================== */

p {
    font-family: "Roboto", sans-serif;
    margin-bottom: 8px;
    line-height: 1.32;
}

ul,
ul li {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #00113f;
    text-decoration: none !important;
    display: inline-block;
}

form a {
    color: #00113f;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1,
.fHeading .fModuleTitle h3 {
    font-family: "Roboto", sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
}

header h1 {
    font-size: 1.5rem;
}

.fHeading .fModuleTitle {
    text-align: left;
    margin-bottom: 20px;
}

.fHeading .fModuleTitle h3 {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    color: #000836;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.fHeading .fModuleTitle h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 2px;
    background: #000836;
}

.fModuleTitle h3 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid #000;
}


/* ==========================================================================
   4. GENERAL LAYOUT
   ========================================================================== */

.fModule {
    margin: 1rem 0;
    padding: 1rem 0;
}

header .fModule,
footer .fModule {
    margin: 0;
}

.region-header.row {
    align-items: center;
}

header {
    position: relative;
}

footer {
    padding: 1rem 0;
    background: #1a1c20;
    color: #000;
    border-top: 1px solid #def1ff;
    display: none;
}

footer p,
footer h3,
footer a {
    color: #fff !important;
}

footer .fHeading .fModuleTitle h3 {
    font-size: 1.75rem;
}

footer .fHeading .fModuleTitle h3::after {
    background: #fff;
}

footer p {
    font-weight: normal;
    margin-bottom: 8px;
}

footer img {
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}

footer nav ul {
    display: block;
    text-align: left;
}


/* ==========================================================================
   5. NAVIGATION - GENERAL
   ========================================================================== */

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-align: right;
}

nav ul li a {
    color: #fff;
    padding: 5px;
    transition: color 0.3s ease;
}

.main-menu a {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: capitalize;
    color: #333333;
    position: relative;
}

.main-menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, #1ebbf0 30%, #39dfaa 100%);
    transition: width 0.6s ease;
}

.main-menu a:hover {
    color: #333333;
}

.main-menu a:hover::before {
    width: 100%;
}

.main-menu .fMenu li {
    position: relative;
}

.main-menu .fMenu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #24c0d6;
    padding: 0;
    text-align: left;
    display: none;
    z-index: 99999;
}

.main-menu .fMenu > li:hover > ul {
    display: block;
}

.main-menu .fMenu ul li {
    margin: 0;
}

.main-menu .fMenu ul li a {
    display: block;
    padding: 0.5rem;
}


/* ==========================================================================
   6. FORM ELEMENTS
   ========================================================================== */

.fForm label {
    display: block;
    width: 100%;
    margin: 0.625rem 0 0;
    font-weight: normal;
    color: #000;
}

.fForm input[type="text"],
.fForm input[type="email"],
.fForm input[type="password"],
.fForm input[type="number"],
.fForm input[type="tel"],
.fForm textarea,
.fForm select,
.fForm .date {
    width: 100%;
    max-width: 100%;
    height: 42px;
    padding: 0 0.9375rem;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.fForm textarea {
    height: auto;
    min-height: 120px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}

.fForm input[type="text"]:hover,
.fForm input[type="email"]:hover,
.fForm input[type="password"]:hover,
.fForm input[type="number"]:hover,
.fForm input[type="tel"]:hover,
.fForm textarea:hover,
.fForm select:hover,
.fForm input[type="text"]:focus,
.fForm input[type="email"]:focus,
.fForm input[type="password"]:focus,
.fForm input[type="number"]:focus,
.fForm input[type="tel"]:focus,
.fForm textarea:focus,
.fForm select:focus {
    border-color: #92def5;
    outline: none;
}


/* ==========================================================================
   7. FORM BUTTONS
   ========================================================================== */

.fForm .buttons {
    clear: both;
    padding-left: 0;
}

.fForm .buttons input,
a.fButton,
a.fButton2,
.fForm input[type="submit"] {
    display: inline-block;
    margin: 0.75rem 0.625rem 0 0;
    padding: 0.875rem 0.8125rem;
    min-width: 200px;
    min-height: 42px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    background: #C80D3B;
    border: 2px solid #C80D3B;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fForm .buttons input:hover,
a.fButton:hover,
.fbutton-btn a:hover,
.fForm input[type="submit"]:hover {
    background: transparent;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}


/* ==========================================================================
   8. ICON SET
   ========================================================================== */

.iconset .fMenu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.iconset .fMenu > li {
    flex: 1 1 280px;
    list-style: none;
    padding: 1rem !important;
    background: #f5f5f5;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    position: relative;
    text-align: left;
    transition: transform 0.5s ease;
}

.iconset .fMenu > li:hover {
    transform: translateY(-5px);
}

.iconset .fMenu > li > a {
    font-weight: bold;
    color: #000;
    display: block;
}

.iconset img {
    max-width: 64px;
    margin-bottom: 0.5rem;
}

.iconset .fMenu ul {
    margin: 1rem 0 0 1.375rem !important;
    display: block;
}

.iconset .fMenu ul li {
    margin-bottom: 0.25rem !important;
    list-style: square inside;
    text-align: left;
}

.iconset .fMenu ul a {
    font-weight: 500;
    color: #000;
}


/* ==========================================================================
   9. FORM STRUCTURE
   ========================================================================== */

form.fForm .form-item {
    padding-top: 0;
    padding-bottom: 1rem;
}

form.fForm label {
    width: 100%;
    text-align: left;
    display: block;
    padding-top: 0;
    font-weight: bold;
}

form.fForm fieldset legend,
.path-user-login- form label {
    padding: 0.5rem 0;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.fForm .hint,
.fForm .error {
    margin-left: 0 !important;
}

.fForm .user-register-group {
    padding: 0;
    border-top: none;
    margin-top: 20px;
}

.fForm .user-register-group legend {
    display: none;
}

.fForm .user-register-group label {
    display: flex;
    align-items: center;
}

.fForm .user-register-group .f-table td {
    padding: 0;
}

.fForm fieldset {
    margin: 0;
    padding: 0;
}


/* ==========================================================================
   10. PAGE TITLE
   ========================================================================== */

.fPageTitle {
    background: #ee2d46;
    text-align: center;
}

.fPageTitle h1 {
    color: #fff;
    padding: 1.5rem;
    margin: 0;
}


/* ==========================================================================
   11. HIDE / UTILITY
   ========================================================================== */

.no-title .fPageTitle,
.no-header header,
.no-footer footer,
#nav-up {
    display: none !important;
}


/* ==========================================================================
   12. CUSTOM BACKGROUNDS / BANNERS
   ========================================================================== */

.bg-grey {
    background: #dbdbdb;
}

.banner-wrapper {
    position: relative;
}

.fBanner .fGalleryText {
    position: absolute;
    top: 40%;
    left: 9%;
    transform: translateY(-50%);
    width: 33%;
}

.fBanner .fGalleryText div .fButton {
    background: #fff;
    color: #000;
}

.fBanner .fGalleryText h3 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 0;
}

.fBanner .fGalleryText p {
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
}


/* ==========================================================================
   13. TABLES
   ========================================================================== */

.fModule table {
    width: 100%;
    max-width: 100%;
}

.fModule table th,
.fModule table td {
    border: 1px solid #000836;
    padding: 0.5rem;
    vertical-align: middle;
}

.fModule table th {
    background: #16d6ee;
    color: #000;
}

#fModule-53313 table {
    margin-bottom: 10px;
}

.f-table-invoice {
    margin-top: 20px;
}

.f-table th,
.f-table tr.thead td {
    background: #ee2d46;
}


/* ==========================================================================
   14. CUSTOM LIST
   ========================================================================== */

.fCustomList li {
    padding-left: 40px !important;
    margin-bottom: 10px !important;
    position: relative;
}

.fCustomList li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("https://img.icons8.com/material-rounded/24/arrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    animation: mymove 1s infinite;
}

@keyframes mymove {
    from {
        left: 0;
    }

    to {
        left: 10px;
    }
}


/* ==========================================================================
   15. DISCOUNT CODE
   ========================================================================== */

.discount-code .form-item {
    display: flex;
    align-items: stretch;
    gap: 5px;
    flex-wrap: wrap;
}

.discount-code .form-item > * {
    flex: 0 0 auto;
}

.discount-code .form-item label {
    width: 100%;
}

.discount-code .form-item input[type="text"] {
    width: calc(80% - 3px);
}

.discount-code .form-item input[type="submit"] {
    width: calc(20% - 2px);
    margin: 0;
}


/* ==========================================================================
   16. MESSAGES
   ========================================================================== */

#f-messages .item {
    padding: 0.7em 1em;
    background-color: #88d4e8;
    color: #000;
    margin-bottom: 0.1em;
    font-size: 110%;
    position: fixed;
    z-index: 999999;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
}

.icon-status-orange {
    display: none;
}


/* ==========================================================================
   17. PAY BUTTON
   ========================================================================== */

.fForm .buttons,
.fForm .buttons .f-button {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.checks {
    height: max-content !important;
}

.intl-tel-input {
    width: 100%;
}

.listing-container {
    margin: 30px 0;
}


/* ==========================================================================
   18. TOP HEADER
   ========================================================================== */

.top-head {
    background-image: url("https://storage.unitedwebnetwork.com/files/1395/cd6c6f75754ed8d05f588198ddbda2b4.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px 0;
}

#fModule-61905,
#fModule-61909,
#fModule-61908 {
    padding: 10px !important;
}

.fLogoLeft img,
.fLogoRight img {
    max-height: 142px;
}

.fLogoCenter img {
    max-height: 172px;
}


/* ==========================================================================
   19. GENERAL FORM ALIGNMENT
   ========================================================================== */

.form-heading-legend {
    display: block;
    width: 100%;
    background-color: #e8edff;
    color: #182b8a;
    font-weight: 600;
    padding: 10px 15px;
    margin: 0 0 10px 0;
    border-radius: 4px;
    text-align: left;
}

.container .form-item,
.container .form-heading,
.container label {
    text-align: left !important;
    margin-left: 0 !important;
}

#form-item-field_id_34038 {
    overflow: visible;
}

#user-form-2990.row,
.user-form-response-view.row {
    margin-left: -9px;
    margin-right: -9px;
}

#user-form-2990 .form-item > *:last-child,
#user-form-2990 .f-field > *:last-child,
.user-form-response-view .form-item > *:last-child,
.user-form-response-view .f-field > *:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   20. RESPONSE BACK BUTTON
   ========================================================================== */

.responsePage .f-button-back {
    display: none;
    min-width: 200px;
    min-height: 42px;
    margin: 0.75rem 0.625rem 0 0;
    padding: 0.875rem 0.8125rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    background: #740303;
    border: 2px solid #740303;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.responsePage .f-button-back:hover {
    background: transparent;
    color: #740303;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}


/* ==========================================================================
   21. FCBM HEADER
   ========================================================================== */

.navbar-header {
    width: 100% !important;
    background: #fff !important;
    position: relative !important;
    z-index: 999999 !important;
}

.navbar-header > .wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px 40px !important;
}

.navbar-header .region-header {
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;
    justify-content: space-between !important;

    margin: 0 !important;
    padding: 0 !important;

    position: relative !important;
}


/* ==========================================================================
   22. HEADER LOGO
   ========================================================================== */

.navbar-header .region-header > .fLogo {
    display: flex !important;
    flex: 0 0 auto !important;

    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    align-items: center !important;
    justify-content: flex-start !important;
}

.navbar-header .region-header > .fLogo[class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}

.navbar-header .fLogo img {
    display: block !important;

    width: auto !important;
    height: 60px !important;

    max-width: calc(100vw - 120px) !important;
    max-height: 60px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================================
   23. HEADER MENU CONTAINER
   ========================================================================== */

.navbar-header .region-header > .main-menu {
    display: flex !important;

    flex: 0 0 auto !important;

    width: auto !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: 0 !important;

    padding: 0 !important;

    align-items: center !important;
    justify-content: flex-end !important;

    position: relative !important;
    z-index: 1000000 !important;
}

.navbar-header .region-header > .main-menu[class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}

.navbar-header .main-menu .fModuleContent {
    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================================
   24. HEADER NAV
   ========================================================================== */

.navbar-header .main-menu nav {
    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    position: relative;
}


/* ==========================================================================
   25. DESKTOP MENU
   ========================================================================== */

.navbar-header .main-menu .fMenu {
    display: flex !important;

    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;
    justify-content: flex-end !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    gap: 0 !important;
}

.navbar-header .main-menu .fMenu > li {
    display: flex !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}

.navbar-header .main-menu .fMenu > li > a {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;

    margin: 0 !important;
    padding: 10px 18px !important;

    white-space: nowrap !important;

    color: #333 !important;
}


/* ==========================================================================
   26. MOBILE HEADER
   ========================================================================== */

@media (max-width: 991px) {

    /* ----------------------------------------------------------------------
       HEADER
       ---------------------------------------------------------------------- */

    .navbar-header {
        position: relative !important;
        overflow: visible !important;
    }

    .navbar-header > .wrap {
        padding: 10px 20px !important;
        overflow: visible !important;
    }

    .navbar-header .region-header {
        min-height: 80px !important;
        overflow: visible !important;
    }


    /* ----------------------------------------------------------------------
       LOGO
       ---------------------------------------------------------------------- */

    .navbar-header .fLogo img {
        width: auto !important;
        height: 60px !important;
        max-height: 60px !important;
        max-width: calc(100vw - 110px) !important;
    }


    /* ----------------------------------------------------------------------
       MENU CONTAINER
       ---------------------------------------------------------------------- */

    .navbar-header .region-header > .main-menu {
        display: flex !important;

        position: relative !important;

        width: auto !important;
        max-width: none !important;

        flex: 0 0 auto !important;

        margin-left: auto !important;
        padding: 0 !important;

        overflow: visible !important;
    }

    .navbar-header .main-menu .fModuleContent {
        overflow: visible !important;
    }


    /* ----------------------------------------------------------------------
       BURGER CONTAINER
       ---------------------------------------------------------------------- */

    .navbar-header .navbar-toggle-container {
        display: block !important;

        width: 44px !important;
        height: 44px !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
        z-index: 1000002 !important;
    }


    /* ----------------------------------------------------------------------
       BURGER BUTTON
       ---------------------------------------------------------------------- */

    .navbar-header .navbar-toggle {
        display: flex !important;

        width: 44px !important;
        height: 44px !important;

        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 7px !important;

        background: #fff !important;

        border: 1px solid #333 !important;
        border-radius: 5px !important;

        cursor: pointer !important;

        position: relative !important;
        z-index: 1000003 !important;
    }

    .navbar-header .navbar-toggle .icon-bar {
        display: block !important;

        width: 24px !important;
        height: 2px !important;

        margin: 3px 0 !important;

        background: #333 !important;

        border-radius: 2px !important;
    }


    /* ======================================================================
       MOBILE NAVIGATION

       IMPORTANT:
       We do NOT use only "nav.mobile-menu-open".
       Different FCBM versions/scripts can put the open class on
       nav, main-menu, or use "show"/"open"/"active".
       ====================================================================== */

    .navbar-header .main-menu nav {
        display: none !important;

        position: absolute !important;

        top: calc(100% + 10px) !important;
        right: 0 !important;
        left: auto !important;

        width: 280px !important;
        max-width: calc(100vw - 30px) !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #fff !important;

        border: 1px solid #ddd !important;
        border-radius: 8px !important;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18) !important;

        z-index: 1000001 !important;

        overflow: visible !important;
    }


    /* ----------------------------------------------------------------------
       OPEN STATE - NAV HAS CLASS
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav.mobile-menu-open,
    .navbar-header .main-menu nav.show,
    .navbar-header .main-menu nav.open,
    .navbar-header .main-menu nav.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }


    /* ----------------------------------------------------------------------
       OPEN STATE - MAIN MENU HAS CLASS
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu.mobile-menu-open nav,
    .navbar-header .main-menu.show nav,
    .navbar-header .main-menu.open nav,
    .navbar-header .main-menu.active nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }


    /* ----------------------------------------------------------------------
       OPEN STATE - TOGGLE CONTAINER HAS CLASS
       ---------------------------------------------------------------------- */

    .navbar-header .navbar-toggle-container.mobile-menu-open ~ nav,
    .navbar-header .navbar-toggle-container.show ~ nav,
    .navbar-header .navbar-toggle-container.open ~ nav,
    .navbar-header .navbar-toggle-container.active ~ nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE MENU LIST

       Notice that we don't depend on the open class here.
       Once nav itself is visible, the fMenu is ALWAYS formatted correctly.
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav .fMenu {
        display: flex !important;

        flex-direction: column !important;
        flex-wrap: nowrap !important;

        align-items: stretch !important;
        justify-content: flex-start !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 8px 0 !important;

        gap: 0 !important;

        text-align: left !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE MENU ITEMS
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav .fMenu > li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE MENU LINKS
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav .fMenu > li > a {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;

        padding: 14px 20px !important;

        color: #333 !important;
        background: #fff !important;

        text-align: left !important;

        font-family: "Roboto", sans-serif !important;
        font-size: 15px !important;
        font-weight: 700 !important;

        line-height: 1.4 !important;

        border-bottom: 1px solid #eee !important;

        white-space: normal !important;

        position: relative !important;
    }


    /* ----------------------------------------------------------------------
       REMOVE DESKTOP HOVER LINE
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav .fMenu > li > a::before {
        display: none !important;
        content: none !important;
    }


    /* ----------------------------------------------------------------------
       LAST ITEM
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav .fMenu > li:last-child > a {
        border-bottom: none !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE SUBMENU
       ---------------------------------------------------------------------- */

    .navbar-header .main-menu nav .fMenu > li > ul {
        position: static !important;

        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #f5f5f5 !important;

        border: 0 !important;

        box-shadow: none !important;

        z-index: auto !important;
    }

    .navbar-header .main-menu nav .fMenu > li > ul > li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-header .main-menu nav .fMenu > li > ul > li > a {
        display: block !important;

        width: 100% !important;

        padding: 12px 30px !important;

        color: #333 !important;
        background: #f5f5f5 !important;

        font-family: "Roboto", sans-serif !important;
        font-size: 14px !important;

        line-height: 1.4 !important;

        border-bottom: 1px solid #e5e5e5 !important;

        white-space: normal !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE LISTING
       ---------------------------------------------------------------------- */

    .listing-container span {
        display: block !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE DISCOUNT
       ---------------------------------------------------------------------- */

    .discount-code .form-item input[type="text"],
    .discount-code .form-item input[type="submit"] {
        width: 100% !important;
    }


    /* ----------------------------------------------------------------------
       MOBILE BANNER
       ---------------------------------------------------------------------- */

    .fBanner .fGalleryText {
        width: 92%;
        top: 35%;
    }

    .fBanner .fGalleryText h3 {
        font-size: 19px;
    }

    .banner-wrapper .fTimer {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        padding: 1rem !important;
    }

    .fTimer .row {
        gap: 11px !important;
        justify-content: space-between;
        display: flex;
        margin: 0;
    }


    /* ----------------------------------------------------------------------
       MOBILE TOP HEADER
       ---------------------------------------------------------------------- */

    .top-head {
        background-position: center;
    }

    #fModule-61905,
    #fModule-61909 {
        text-align: center;
    }

    #fModule-61905 img {
        max-height: 100px;
    }

    #fModule-61909 img,
    #fModule-61908 img {
        max-height: 130px;
    }


    /* ----------------------------------------------------------------------
       MOBILE BODY
       ---------------------------------------------------------------------- */

    body {
        padding-bottom: 0 !important;
    }

    .body {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ==========================================================================
   27. DESKTOP HEADER
   ========================================================================== */

@media (min-width: 992px) {

    .navbar-header {
        overflow: visible !important;
    }

    .navbar-header .navbar-toggle-container {
        display: none !important;
    }

    .navbar-header .main-menu nav {
        display: block !important;

        position: static !important;

        width: auto !important;

        background: transparent !important;

        border: none !important;

        box-shadow: none !important;

        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar-header .main-menu nav .fMenu {
        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;
        justify-content: flex-end !important;
    }

    .navbar-header .main-menu nav .fMenu > li {
        display: flex !important;
        width: auto !important;
    }

    .navbar-header .main-menu nav .fMenu > li > a {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: auto !important;

        padding: 10px 18px !important;

        color: #333 !important;

        white-space: nowrap !important;
    }
}


/* ==========================================================================
   28. SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .navbar-header > .wrap {
        padding: 8px 15px !important;
    }

    .navbar-header .region-header {
        min-height: 70px !important;
    }

    .navbar-header .fLogo img {
        height: 50px !important;
        max-height: 50px !important;
        max-width: calc(100vw - 90px) !important;
    }

    .navbar-header .navbar-toggle-container {
        width: 42px !important;
        height: 42px !important;
    }

    .navbar-header .navbar-toggle {
        width: 42px !important;
        height: 42px !important;
    }

    .navbar-header .main-menu nav {
        width: 270px !important;
        max-width: calc(100vw - 30px) !important;
    }

    .fBanner .fGalleryText {
        width: 92%;
    }

    .fBanner .fGalleryText h3 {
        font-size: 19px;
    }

    footer {
        position: relative;
    }

    .top-head {
        background-position: center;
    }

    #fModule-61905 img {
        max-height: 100px;
    }

    #fModule-61909 img,
    #fModule-61908 img {
        max-height: 130px;
    }
}


/* ==========================================================================
   29. VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 360px) {

    .navbar-header > .wrap {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .navbar-header .fLogo img {
        height: 45px !important;
        max-height: 45px !important;
        max-width: calc(100vw - 80px) !important;
    }

    .navbar-header .navbar-toggle,
    .navbar-header .navbar-toggle-container {
        width: 40px !important;
        height: 40px !important;
    }

    .navbar-header .main-menu nav {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        right: -5px !important;
    }
}