/*================================================
    DIGIWERSE PREMIUM NAVBAR
=================================================*/

:root {
    --dw-nav-bg: #003940;
    --dw-nav-bg-dark: #002d33;
    --dw-nav-primary: #16c7d0;
    --dw-nav-primary-light: #6ce8ec;
    --dw-nav-white: #ffffff;
    --dw-nav-text: #edfdfd;
    --dw-nav-dark-text: #173f44;
    --dw-nav-muted: #6c8589;
    --dw-nav-green: #29dd83;
    --dw-nav-shadow: 0 18px 45px rgba(0, 54, 61, 0.14);
}

.dw-header,
.dw-header *,
.dw-header *::before,
.dw-header *::after {
    box-sizing: border-box;
}

body.dw-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/*================================================
    HEADER WRAPPER
=================================================*/
.navbar-area {
    position: fixed;
    z-index: 99990 !important;
    width: 100%;
    padding: 28px 0 0;
    /* overflow: visible; */
    background: transparent;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar-area .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/*================================================
    DESKTOP NAVBAR
=================================================*/

.main-navbar {
    display: block;
}

.main-responsive-nav {
    display: none;
}

.main-navbar .navbar {
    position: relative;

    width: 100%;
    min-height: 82px;
    margin: 0;
    padding: 10px 18px 10px 34px;

    display: flex;
    align-items: center;
    flex-wrap: nowrap;

    border: 0;
    border-radius: 46px;

    background:
        radial-gradient(
            circle at 88% 0%,
            rgba(26, 211, 219, 0.12),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            var(--dw-nav-bg),
            var(--dw-nav-bg-dark)
        );

    box-shadow: var(--dw-nav-shadow);

    transition:
        min-height 0.35s ease,
        padding 0.35s ease,
        border-radius 0.35s ease;
}

.main-navbar .navbar::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 11%;

    width: 48%;
    height: 1px;

    opacity: 0.36;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.65),
            transparent
        );

    pointer-events: none;
}

/*================================================
    DESKTOP LOGO
=================================================*/

.main-navbar .navbar-brand {
    width: auto;
    min-width: 215px;
    margin: 0 38px 0 0;
    padding: 0;

    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;

    line-height: 1;
}

.main-navbar .navbar-brand img {
    display: block;

    width: 210px;
    max-width: 100%;
    max-height: 52px;

    object-fit: contain;
}

/*================================================
    DESKTOP MENU
=================================================*/

.dw-desktop-menu {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
}

.main-navbar .navbar-nav {
    margin: 0 auto;
    padding: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;

    list-style: none;
}

.main-navbar .nav-item {
    position: relative;

    margin: 0;
    padding: 0;
}

.main-navbar .nav-link {
    position: relative;

    min-height: 52px;
    padding: 17px 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 0;
    border-radius: 29px;

    color: rgba(255, 255, 255, 0.91);
    background: transparent;

    font-family: inherit;
    font-size: 15px;
    font-weight: 550;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.main-navbar button.nav-link {
    appearance: none;
    -webkit-appearance: none;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: var(--dw-nav-primary);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link:focus::after,
.main-navbar .nav-link.active::after {
    width: 25px;
}

.main-navbar .nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--dw-nav-primary-light);

    font-size: 18px;
    line-height: 1;

    transition: transform 0.3s ease;
}

/*================================================
    DESKTOP DROPDOWN
=================================================*/

.main-navbar .dw-dropdown:hover .dw-dropdown-trigger i,
.main-navbar .dw-dropdown:focus-within .dw-dropdown-trigger i {
    transform: rotate(180deg);
}

.main-navbar .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 99999;

    width: 235px;
    min-width: 235px;
    margin: 0;
    padding: 10px;

    display: block;

    visibility: hidden;
    opacity: 0;

    border: 1px solid rgba(13, 171, 182, 0.13);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.985);

    box-shadow:
        0 22px 55px rgba(0, 48, 54, 0.19),
        0 5px 15px rgba(0, 48, 54, 0.06);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    list-style: none;

    transform: translate(-50%, 14px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.main-navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;

    width: 100%;
    height: 16px;
}

.main-navbar .dropdown-menu::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;

    width: 12px;
    height: 12px;

    border-top: 1px solid rgba(13, 171, 182, 0.13);
    border-left: 1px solid rgba(13, 171, 182, 0.13);

    background: #ffffff;

    transform:
        translateX(-50%)
        rotate(45deg);
}

.main-navbar .dw-dropdown:hover > .dropdown-menu,
.main-navbar .dw-dropdown:focus-within > .dropdown-menu {
    visibility: visible;
    opacity: 1;

    transform: translate(-50%, 0);
}

.main-navbar .dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-navbar .dropdown-menu a {
    position: relative;

    width: 100%;
    min-height: 43px;
    padding: 11px 14px;

    display: flex;
    align-items: center;

    border-radius: 10px;

    color: #24494e;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        padding-left 0.25s ease;
}

.main-navbar .dropdown-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 13px;

    width: 5px;
    height: 5px;

    visibility: hidden;
    opacity: 0;

    border-radius: 50%;
    background: var(--dw-nav-primary);

    transform: translateY(-50%);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.main-navbar .dropdown-menu a:hover,
.main-navbar .dropdown-menu a:focus,
.main-navbar .dropdown-menu a.active {
    padding-left: 27px;

    color: #008f99;
    background: #eafcfd;
}

.main-navbar .dropdown-menu a:hover::before,
.main-navbar .dropdown-menu a:focus::before,
.main-navbar .dropdown-menu a.active::before {
    visibility: visible;
    opacity: 1;
}

/*================================================
    DESKTOP LOGIN BUTTON
=================================================*/

.dw-desktop-account {
    margin-right: 20px;
    flex: 0 0 auto;
}

.dw-account-btn {
    position: relative;
    z-index: 1;

    min-width: 158px;
    min-height: 50px;
    padding: 13px 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    overflow: hidden;

    border: 1.5px solid var(--dw-nav-primary);
    border-radius: 29px;

    color: #ffffff;
    background: transparent;

    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.dw-account-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    border-radius: inherit;

    background:
        linear-gradient(
            100deg,
            #009ca7,
            #20d1d8
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.dw-account-btn:hover {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(18, 201, 210, 0.22);
}

.dw-account-btn:hover::before {
    transform: scaleX(1);
}

.dw-account-btn i {
    color: var(--dw-nav-primary-light);

    font-size: 17px;
}

.dw-account-btn:hover i {
    color: #ffffff;
}

/*================================================
    STICKY HEADER
=================================================*/

.navbar-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    padding: 9px 0;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 10px 35px rgba(0, 51, 58, 0.12);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    animation: dwNavbarDown 0.4s ease;
}

.navbar-area.is-sticky .main-navbar .navbar {
    min-height: 72px;
    padding-top: 7px;
    padding-bottom: 7px;
}

@keyframes dwNavbarDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*================================================
    MOBILE ELEMENTS HIDDEN ON DESKTOP
=================================================*/

.dw-mobile-navbar,
.dw-menu-overlay,
.dw-mobile-drawer {
    display: none;
}

/*================================================
    LAPTOP
=================================================*/

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .navbar-area .container {
        max-width: 1140px;
    }

    .main-navbar .navbar {
        padding-left: 26px;
        padding-right: 15px;
    }

    .main-navbar .navbar-brand {
        min-width: 182px;
        margin-right: 20px;
    }

    .main-navbar .navbar-brand img {
        width: 182px;
    }

    .main-navbar .nav-link {
        padding-left: 11px;
        padding-right: 11px;

        font-size: 14px;
    }

    .dw-desktop-account {
        margin-left: 10px;
    }

    .dw-account-btn {
        min-width: 143px;
        padding-left: 14px;
        padding-right: 14px;

        font-size: 12px;
    }
}

/*================================================
    TABLET + MOBILE
=================================================*/

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

    .navbar-area {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        z-index: 99990;

        padding: 10px 0;

        background: rgba(255, 255, 255, 0.96);

        box-shadow:
            0 8px 28px rgba(0, 49, 56, 0.08);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .navbar-area .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-navbar {
        display: none !important;
    }

    .dw-mobile-navbar {
        display: block !important;
    }

    /*================================================
        MOBILE TOP BAR
    =================================================*/

    .dw-mobile-bar {
        position: relative;

        width: 100%;
        min-height: 66px;
        padding: 9px 11px 9px 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        overflow: hidden;

        border: 1px solid rgba(43, 208, 216, 0.10);
        border-radius: 21px;

        background:
            radial-gradient(
                circle at 88% 2%,
                rgba(27, 213, 220, 0.14),
                transparent 31%
            ),
            linear-gradient(
                135deg,
                var(--dw-nav-bg),
                var(--dw-nav-bg-dark)
            );

        box-shadow:
            0 14px 35px rgba(0, 47, 54, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .dw-mobile-bar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 10%;

        width: 55%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.45),
                transparent
            );
    }

    .dw-mobile-logo {
        position: relative;
        z-index: 2;

        display: inline-flex;
        align-items: center;
    }

    .dw-mobile-logo img {
        display: block;

        width: 172px;
        max-width: 100%;
        max-height: 44px;

        object-fit: contain;
    }

    /*================================================
        MOBILE TOGGLE
    =================================================*/

    .dw-menu-toggle {
        position: relative;
        z-index: 4;

        width: 46px;
        height: 46px;
        padding: 0;

        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex: 0 0 auto;

        border: 1px solid rgba(41, 215, 223, 0.62);
        border-radius: 14px;

        color: #ffffff;

        background:
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.09),
                rgba(255, 255, 255, 0.035)
            );

        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.09);

        cursor: pointer;

        transition:
            background 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease;
    }

    .dw-menu-toggle:hover {
        border-color: var(--dw-nav-primary);

        background:
            rgba(25, 203, 211, 0.15);
    }

    .dw-menu-toggle:active {
        transform: scale(0.94);
    }

    .dw-menu-toggle span {
        display: block;

        width: 22px;
        height: 2px;

        border-radius: 20px;

        background: #ffffff;

        transform-origin: center;

        transition:
            transform 0.35s ease,
            opacity 0.25s ease,
            width 0.3s ease;
    }

    .dw-menu-toggle.is-active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .dw-menu-toggle.is-active span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .dw-menu-toggle.is-active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    /*================================================
        OVERLAY
    =================================================*/

    .dw-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 99991;

        display: block;

        visibility: hidden;
        opacity: 0;

        background: rgba(0, 27, 32, 0.56);

        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);

        cursor: pointer;

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
    }

    .dw-menu-overlay.is-open {
        visibility: visible;
        opacity: 1;
    }

    /*================================================
        RIGHT DRAWER
    =================================================*/

    .dw-mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 99992;

        width: min(390px, 89vw);
        height: 100vh;
        height: 100dvh;

        display: flex;
        flex-direction: column;

        visibility: hidden;

        background:
            radial-gradient(
                circle at 95% 2%,
                rgba(29, 204, 212, 0.13),
                transparent 24%
            ),
            #ffffff;

        box-shadow:
            -25px 0 70px rgba(0, 29, 34, 0.28);

        transform: translateX(105%);

        transition:
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.45s ease;
    }

    .dw-mobile-drawer.is-open {
        visibility: visible;

        transform: translateX(0);
    }

    /*================================================
        DRAWER HEADER
    =================================================*/

    .dw-drawer-header {
        min-height: 88px;
        padding: 18px 17px 16px 22px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;

        border-bottom:
            1px solid rgba(31, 205, 213, 0.20);

        background:
            linear-gradient(
                135deg,
                var(--dw-nav-bg),
                var(--dw-nav-bg-dark)
            );
    }

    .dw-drawer-logo {
        display: inline-flex;
        align-items: center;
    }

    .dw-drawer-logo img {
        display: block;

        width: 175px;
        max-height: 45px;

        object-fit: contain;
    }

    .dw-drawer-close {
        position: relative;

        width: 43px;
        height: 43px;
        padding: 0;

        border: 1px solid rgba(46, 211, 219, 0.45);
        border-radius: 13px;

        background:
            rgba(255, 255, 255, 0.07);

        cursor: pointer;

        transition:
            background 0.3s ease,
            transform 0.3s ease;
    }

    .dw-drawer-close:hover {
        background:
            rgba(29, 204, 212, 0.17);

        transform: rotate(5deg);
    }

    .dw-drawer-close span {
        position: absolute;
        top: 50%;
        left: 50%;

        width: 20px;
        height: 2px;

        border-radius: 10px;

        background: #ffffff;
    }

    .dw-drawer-close span:first-child {
        transform:
            translate(-50%, -50%)
            rotate(45deg);
    }

    .dw-drawer-close span:last-child {
        transform:
            translate(-50%, -50%)
            rotate(-45deg);
    }

    /*================================================
        DRAWER BODY
    =================================================*/

    .dw-drawer-body {
        flex: 1 1 auto;
        min-height: 0;
        padding: 17px 14px 20px;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
    }

    .dw-mobile-menu-list,
    .dw-mobile-submenu {
        margin: 0;
        padding: 0;

        list-style: none;
    }

    .dw-mobile-menu-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /*================================================
        MOBILE LINKS
    =================================================*/

    .dw-mobile-menu-link {
        position: relative;

        width: 100%;
        min-height: 56px;
        padding: 9px 13px;

        display: flex;
        align-items: center;
        gap: 12px;

        border: 1px solid transparent;
        border-radius: 15px;

        color: var(--dw-nav-dark-text);
        background: transparent;

        font-family: inherit;
        font-size: 15px;
        font-weight: 650;
        line-height: 1.4;
        text-align: left;
        text-decoration: none;

        cursor: pointer;

        transition:
            color 0.25s ease,
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease;
    }

    button.dw-mobile-menu-link {
        appearance: none;
        -webkit-appearance: none;
    }

    .dw-mobile-menu-link:hover,
    .dw-mobile-menu-link.active {
        color: #007e88;

        border-color:
            rgba(14, 174, 184, 0.11);

        background:
            linear-gradient(
                100deg,
                #eafcfd,
                #f5ffff
            );

        transform: translateX(3px);
    }

    .dw-mobile-link-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .dw-menu-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 auto;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border-radius: 11px;

        color: #008f99;
        background: #e8fafb;

        font-size: 19px;

        transition:
            color 0.25s ease,
            background 0.25s ease;
    }

    .dw-mobile-menu-link:hover .dw-menu-icon,
    .dw-mobile-menu-link.active .dw-menu-icon {
        color: #ffffff;

        background:
            linear-gradient(
                135deg,
                #079da7,
                #26d3d6
            );
    }

    /*================================================
        MOBILE SUBMENU
    =================================================*/

    .dw-mobile-dropdown-trigger {
        justify-content: space-between;
    }

    .dw-mobile-arrow {
        width: 34px;
        height: 34px;
        flex: 0 0 auto;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border-radius: 10px;

        color: #008993;
        background: #edfafa;

        font-size: 21px;

        transition:
            color 0.3s ease,
            background 0.3s ease,
            transform 0.35s ease;
    }

    .dw-mobile-dropdown-trigger.is-open
    .dw-mobile-arrow {
        color: #ffffff;
        background: #099fa9;

        transform: rotate(180deg);
    }

    .dw-mobile-submenu {
        max-height: 0;
        margin: 0 5px;
        padding: 0 7px;

        overflow: hidden;

        visibility: hidden;
        opacity: 0;

        border-radius: 14px;

        background: #f4fafb;

        transition:
            max-height 0.45s ease,
            padding 0.35s ease,
            visibility 0.35s ease,
            opacity 0.35s ease;
    }

    .dw-mobile-submenu.is-open {
        margin-top: 6px;
        padding-top: 7px;
        padding-bottom: 7px;

        visibility: visible;
        opacity: 1;
    }

    .dw-mobile-submenu li + li {
        border-top: 1px solid #e7f0f1;
    }

    .dw-mobile-submenu a {
        min-height: 44px;
        padding: 10px;

        display: flex;
        align-items: center;
        gap: 10px;

        border-radius: 9px;

        color: #506b6f;

        font-size: 13px;
        font-weight: 550;
        line-height: 1.4;
        text-decoration: none;

        transition:
            color 0.25s ease,
            background 0.25s ease,
            padding-left 0.25s ease;
    }

    .dw-mobile-submenu a:hover,
    .dw-mobile-submenu a.active {
        padding-left: 15px;

        color: #008d97;
        background: #ffffff;
    }

    .dw-submenu-dot {
        width: 6px;
        height: 6px;
        flex: 0 0 auto;

        border-radius: 50%;

        background: var(--dw-nav-primary);

        box-shadow:
            0 0 0 4px rgba(23, 201, 209, 0.10);
    }

    /*================================================
        MOBILE ACCOUNT BUTTON
    =================================================*/

    .dw-mobile-account {
        margin-top: 20px;
        padding-top: 17px;

        border-top: 1px solid #e8f0f1;
    }

    .dw-mobile-account-btn {
        min-height: 56px;
        padding: 13px 15px;

        display: flex;
        align-items: center;
        gap: 10px;

        overflow: hidden;

        border-radius: 15px;

        color: #ffffff;

        background:
            linear-gradient(
                100deg,
                #008d97,
                #19cbd2
            );

        box-shadow:
            0 13px 28px rgba(0, 159, 169, 0.22);

        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .dw-mobile-account-btn:hover {
        color: #ffffff;

        transform: translateY(-3px);

        box-shadow:
            0 17px 34px rgba(0, 159, 169, 0.30);
    }

    .dw-account-icon {
        width: 34px;
        height: 34px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border-radius: 10px;

        background:
            rgba(255, 255, 255, 0.15);

        font-size: 18px;
    }

    .dw-account-arrow {
        margin-left: auto;

        font-size: 18px;
    }

    /*================================================
        DRAWER FOOTER
    =================================================*/

    .dw-drawer-footer {
        min-height: 60px;
        padding: 14px 20px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        flex: 0 0 auto;

        border-top: 1px solid #e7eff0;

        color: var(--dw-nav-muted);
        background: #f7fbfb;

        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.2px;
    }

    .dw-status-dot {
        width: 8px;
        height: 8px;

        border-radius: 50%;

        background: var(--dw-nav-green);

        box-shadow:
            0 0 0 5px rgba(36, 217, 120, 0.11);
    }
}

/*================================================
    SMALL MOBILE
=================================================*/

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

    .navbar-area {
        padding: 8px 0;
    }

    .navbar-area .container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .dw-mobile-bar {
        min-height: 61px;
        padding: 8px 9px 8px 16px;

        border-radius: 18px;
    }

    .dw-mobile-logo img {
        width: 148px;
        max-height: 39px;
    }

    .dw-menu-toggle {
        width: 43px;
        height: 43px;

        border-radius: 12px;
    }

    .dw-mobile-drawer {
        width: min(365px, 92vw);
    }

    .dw-drawer-header {
        min-height: 78px;
        padding: 15px 14px 14px 18px;
    }

    .dw-drawer-logo img {
        width: 155px;
    }

    .dw-drawer-close {
        width: 40px;
        height: 40px;
    }

    .dw-drawer-body {
        padding-left: 11px;
        padding-right: 11px;
    }

    .dw-mobile-menu-link {
        min-height: 52px;
        padding: 8px 10px;

        font-size: 14px;
    }

    .dw-menu-icon {
        width: 36px;
        height: 36px;

        font-size: 18px;
    }
}

/*================================================
    VERY SMALL MOBILE
=================================================*/

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

    .dw-mobile-logo img {
        width: 135px;
    }

    .dw-mobile-drawer {
        width: 94vw;
    }

    .dw-drawer-logo img {
        width: 145px;
    }
}