html.sdino-menu-open {
    overflow: hidden;
}

.sdino-head {
    background:
        linear-gradient(135deg, rgba(2, 46, 40, .98) 0%, rgba(0, 94, 77, .96) 52%, rgba(2, 37, 48, .98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 28px rgba(6, 24, 21, .18);
}

.sdino-head__inner {
    width: 100%;
    max-width: 1580px;
    min-width: 0;
    min-height: 76px;
    padding: 0 28px;
    gap: 26px;
    box-sizing: border-box;
}

.topnav .search-container.sdino-head__search,
.topnav .sdino-head__search form {
    min-width: 0;
}

.sdino-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    height: auto;
    padding: 0;
    background: none;
    line-height: 1;
    color: #f4fff8;
    letter-spacing: 0;
}

.sdino-brand:hover {
    color: #ffffff;
}

.sdino-brand__mark {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 14px;
    background:
        rgba(255, 255, 255, .08)
        url("../img/logo/dino2.svg") no-repeat center;
    background-size: 40px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.sdino-brand__name {
    font-family: 'SofiaSansSemiBold', 'SofiaSansMedium', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.topnav.sdino-head__inner {
    flex-wrap: nowrap;
}

.topnav .search-container.sdino-head__search {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    width: auto;
    gap: 12px;
}

.topnav .sdino-head__search form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.topnav .sdino-head__search input[type=text] {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0 52px 0 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    color: #14241f;
    font-size: 16px;
    line-height: 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    outline: none;
}

.topnav .sdino-head__search input[type=text]:focus {
    border-color: #f2b84a;
    box-shadow: 0 0 0 3px rgba(242, 184, 74, .24), 0 12px 24px rgba(0, 0, 0, .13);
}

.topnav .sdino-head__search input[type=text]::placeholder {
    color: #66736e;
}

.topnav .sdino-head__search form .sdino-search-submit {
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    width: 36px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: #f4fbf6;
    box-shadow: none;
}

.topnav .sdino-head__search form .sdino-search-submit:hover {
    background: #f0b949;
}

.topnav .sdino-head__search form .sdino-search-submit .search {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 23px;
}

.topnav .sdino-head__search .sdino-menu-btn,
.sdino-head .sdino-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: none;
    width: 42px;
    min-width: 42px;
    height: 40px;
    flex: 0 0 auto;
    gap: 0;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
    cursor: pointer;
    font-size: 0;
}

.topnav .sdino-head__search .sdino-menu-btn:hover,
.sdino-head .sdino-menu-btn:hover {
    background: #f0b949;
}

.sdino-menu-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
}

.sdino-menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    border-top: 3px solid #10251f;
    border-radius: 3px;
    box-shadow:
        0 7px 0 #10251f,
        0 14px 0 #10251f;
}

.sdino-menu-icon::after {
    content: none;
}

.sdino-menu-label {
    display: none;
    color: #10251f;
    font-family: 'SofiaSansSemiBold', 'SofiaSansMedium', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.sdino-global-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.sdino-global-menu.is-open {
    display: block;
}

.sdino-global-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 18, .58);
}

.sdino-global-menu__panel {
    position: absolute;
    top: 92px;
    right: 28px;
    width: min(650px, calc(100vw - 32px));
    max-height: calc(100vh - 116px);
    overflow: auto;
    padding: 18px;
    border: 1px solid #dce8e2;
    border-radius: 8px;
    background: #fbfdfb;
    box-shadow: 0 28px 70px rgba(2, 21, 18, .28);
}

.sdino-global-menu__head {
    position: static;
}

.sdino-global-menu__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid #c7d9d0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.sdino-global-menu__close::before,
.sdino-global-menu__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    margin: -1px 0 0 -8px;
    background: #16302a;
    border-radius: 2px;
}

.sdino-global-menu__close::before {
    transform: rotate(45deg);
}

.sdino-global-menu__close::after {
    transform: rotate(-45deg);
}

.sdino-global-menu__grid {
    display: grid;
    gap: 10px;
}

.sdino-global-menu__section {
    border: 1px solid #d8e6df;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.sdino-global-menu__section.is-current {
    border-color: #25916b;
    box-shadow: 0 0 0 3px rgba(37, 145, 107, .11);
}

.sdino-global-menu__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: #10241f;
    background: #ffffff;
    text-decoration: none;
    transition: background 140ms ease, color 140ms ease;
}

.sdino-global-menu__row + .sdino-global-menu__row {
    border-top: 1px solid #e3ede8;
}

.sdino-global-menu__row:hover {
    color: #10241f;
    background: #f3faf6;
}

.sdino-global-menu__row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, #e2f3ea 0%, #f1faf4 100%);
    color: #16805e;
    box-shadow: inset 0 0 0 1px rgba(22, 128, 94, .12);
}

.sdino-global-menu__row-icon svg {
    display: block;
}

.sdino-global-menu__row-text {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.005em;
}

.sdino-global-menu__section--music .sdino-global-menu__row-icon {
    background: linear-gradient(135deg, #fff1d6 0%, #fff9ec 100%);
    color: #b87813;
    box-shadow: inset 0 0 0 1px rgba(184, 120, 19, .14);
}

.sdino-global-menu__section--music .sdino-global-menu__row:hover {
    background: #fff7e6;
}

@media (max-width: 720px) {
    .sdino-head__inner {
        min-height: 78px;
        padding: 0 12px;
        gap: 10px;
    }

    .sdino-brand {
        min-width: 0;
        gap: 8px;
    }

    .sdino-brand__mark {
        width: 42px;
        height: 42px;
        background-size: 34px;
    }

    .sdino-brand__name {
        max-width: 104px;
        overflow: hidden;
        font-size: 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .topnav .search-container.sdino-head__search {
        gap: 8px;
    }

    .topnav .sdino-head__search input[type=text] {
        height: 38px;
        padding-left: 12px;
        padding-right: 44px;
        font-size: 15px;
        line-height: 38px;
    }

    .topnav .sdino-head__search form .sdino-search-submit {
        width: 32px;
        height: 30px;
    }

    .topnav .sdino-head__search .sdino-menu-btn,
    .sdino-head .sdino-menu-btn {
        height: 38px;
    }

    .sdino-global-menu__panel {
        top: 86px;
        right: 10px;
        left: 10px;
        width: auto;
        max-height: calc(100vh - 98px);
        padding: 14px;
    }

    .sdino-global-menu__row {
        padding: 14px 16px;
        gap: 12px;
    }

    .sdino-global-menu__row-text {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .topnav.sdino-head__inner {
        gap: 8px;
    }

    .sdino-brand__name {
        display: none;
    }

    .topnav .search-container.sdino-head__search {
        min-width: 0;
    }
}
