.rd-navbar {
    position: relative;
    z-index: 14;
    color: #0a0a0b;
}

.rd-navbar li {
    list-style: none;
}

.navbar-button {
    position: relative;
    display: block;
    border: none;
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 1;
    opacity: 1;
    visibility: visible;
    background: none;
    color: inherit;
    transition: 0.25s ease-in-out;
}

.navbar-button::before,
.navbar-button::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.25s, color 0s;
}

.navbar-button::before {
    transform: translate(-50%, -50%) rotate(0) scale(1);
    opacity: 1;
}

.navbar-button::after {
    content: "\f24c";
    transform: translate(-50%, -50%) rotate(90deg) scale(0);
    font-family: "Material Design Icons";
    opacity: 0;
}

.navbar-button .navbar-button-svg {
    height: auto;
    max-width: 100%;
    stroke: #0a0a0b;
    transform-origin: center center;
    transition: all 0.2s ease-in-out;
}

.navbar-button .navbar-button-badge {
    position: absolute;
    top: -0.0625rem;
    right: -0.4375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.0625rem;
    height: 1.0625rem;
    overflow: hidden;
    font-size: 0.8125rem;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    background-color: #ed930d;
    border-radius: 50%;
}

.navbar-button:hover {
    color: #1c77ff;
}

.navbar-button:hover .navbar-button-svg {
    stroke: #1c77ff;
}

.navbar-button.navbar-info-active::before,
.navbar-button.navbar-info-active .navbar-button-svg,
.navbar-button.navbar-search-active::before,
.navbar-button.navbar-search-active .navbar-button-svg,
.navbar-button.navbar-cart-active::before,
.navbar-button.navbar-cart-active .navbar-button-svg,
.navbar-button.navbar-login-active::before,
.navbar-button.navbar-login-active .navbar-button-svg,
.navbar-button.active::before,
.navbar-button.active .navbar-button-svg {
    transform: translate(-50%, -50%) rotate(-90deg) scale(0);
    opacity: 0;
}

.navbar-button.navbar-info-active::after,
.navbar-button.navbar-search-active::after,
.navbar-button.navbar-cart-active::after,
.navbar-button.navbar-login-active::after,
.navbar-button.active::after {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 1;
}

.navbar-button-round {
    font-size: 1.125rem;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    border: 1px solid;
}

.navbar-logo-link {
    display: block;
}

.navbar-logo-default,
.navbar-logo-inverse {
    margin: 0;
}

.navbar-logo-inverse {
    display: none;
}

.navbar-navigation-megamenu-post .post-body {
    margin-top: -0.5rem;
}

.navbar-navigation-megamenu-post .tag {
    padding: 0.125rem 0.25rem;
}

.navbar-navigation-megamenu-post .post-title {
    line-height: 1.37;
}

.navbar-navigation-megamenu-post * + .post-title {
    margin-top: 0.375rem;
}

.navbar-navigation-megamenu-post * + .post-meta {
    margin-top: 0.625rem;
}

.rd-navbar-fixed {
    height: 85px;
}

.rd-navbar-fixed .navbar-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 85px;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

.rd-navbar-fixed .navbar-subpanel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
    margin: 0;
    padding: 0 calc(5% + 50px) 0 5%;
    background-color: #fff;
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.rd-navbar-fixed .navbar-subpanel-item {
    padding: 0 5px;
}

.rd-navbar-fixed .navbar-subpanel-item .navbar-select-wrap {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.rd-navbar-fixed .navbar-logo {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.rd-navbar-fixed .navbar-navigation-banner {
    padding: 14px 0;
}

.rd-navbar-fixed .navbar-switch {
    position: fixed;
    top: 0;
    left: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 50px;
    line-height: 1;
    border: none;
    background: none;
    color: #525252;
    transition: 0.2s ease-in-out;
}

.rd-navbar-fixed .navbar-switch:hover,
.rd-navbar-fixed .navbar-switch.active {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-action-button {
    margin: 0;
}

.rd-navbar-fixed .navbar-info {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    transform: translateY(20%) scale(0.8);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px 20px 15px 10px;
    background: #fff;
    box-shadow: 0 14px 14px rgba(82, 82, 82, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s;
}

.rd-navbar-fixed .navbar-info > * {
    margin-left: 10px;
    margin-top: 10px;
}

@media (min-width: 480px) {
    .rd-navbar-fixed .navbar-info {
        width: auto;
        max-width: 100%;
    }
}

.rd-navbar-fixed.navbar-info-active .navbar-info {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rd-navbar-fixed .navbar-info-icon {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-info-link {
    color: #0a0a0b;
    font-weight: 400;
    font-size: 1.0625rem;
}

.rd-navbar-fixed .navbar-info-link:hover {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-button::before {
    pointer-events: none;
}

.rd-navbar-fixed .subpanel-switch {
    position: fixed;
    top: 0;
    right: 5%;
    z-index: 14;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    font-size: 30px;
    line-height: 1;
    border: none;
    background: none;
    color: #525252;
    transition: 0.2s ease-in-out;
}

.rd-navbar-fixed.navbar-login-active .subpanel-switch {
    transition: 0s;
    z-index: 0;
}

.rd-navbar-fixed .navbar-search {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    transform: scaleX(0.8);
    z-index: 2;
    display: flex;
    align-items: center;
    height: 60px;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    transition: 0.25s;
}

.rd-navbar-fixed .navbar-search-container {
    flex: 1 1 870px;
    max-width: 870px;
    margin: 0 auto;
    padding: 0 15px;
}

.rd-navbar-fixed .navbar-search-form {
    display: flex;
    align-items: center;
    margin: 0 -10px;
}

.rd-navbar-fixed .navbar-search-input {
    flex-grow: 1;
    font-size: 1.25rem;
    color: #0a0a0b;
    margin: 0;
    padding: 0 10px;
    border: none;
    background: none;
}

.rd-navbar-fixed .navbar-search-input::placeholder {
    color: #0a0a0b;
}

.rd-navbar-fixed .navbar-search-close,
.rd-navbar-fixed .navbar-search-btn {
    color: inherit;
    padding: 0 10px;
}

.rd-navbar-fixed .navbar-search-close:hover,
.rd-navbar-fixed .navbar-search-btn:hover {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-search-results {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: center top;
    display: flex;
    justify-content: center;
    padding: 25px 0;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    transition: 0.15s;
}

.rd-navbar-fixed .navbar-search-results.rd-search-show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fixed .navbar-search-results.rd-search-loading .search-results {
    opacity: 0.5;
    pointer-events: none;
}

.rd-navbar-fixed .navbar-search-results .search-results {
    flex: 1 1 870px;
    max-width: 870px;
    padding: 0 15px;
}

.rd-navbar-fixed .navbar-search-results .search-list {
    list-style-type: none;
}

.rd-navbar-fixed .navbar-search-results .search-list-item {
    padding: 25px 0;
    margin: 0;
    border-bottom: 1px solid #dbdbdb;
}

.rd-navbar-fixed .navbar-search-results .search-list-item:first-child {
    border-top: 1px solid #dbdbdb;
}

.rd-navbar-fixed .navbar-search-results * + p {
    margin-top: 2px;
}

.rd-navbar-fixed .navbar-search-results * + .search-list,
.rd-navbar-fixed .navbar-search-results * + .search-list-item-all {
    margin-top: 25px;
}

.rd-navbar-fixed.navbar-search-active .navbar-search {
    transform: scaleX(1);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fixed .navbar-cart {
    position: fixed;
    top: 50px;
    bottom: 0;
    right: 0;
    transform: translateX(110%);
    width: 470px;
    max-width: 100%;
    padding: 20px;
    background: #fff;
    transition: 0.2s;
    overflow-y: scroll;
}

.rd-navbar-fixed.navbar-cart-active .navbar-cart {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fixed .navbar-cart-item {
    display: flex;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #dbdbdb;
}

.rd-navbar-fixed .navbar-cart-item-body {
    padding: 0 10px;
    flex-grow: 1;
}

.rd-navbar-fixed .navbar-cart-item-heading,
.rd-navbar-fixed .navbar-cart-item-price {
    font-size: 1.0625rem;
    font-weight: 400;
}

.rd-navbar-fixed .navbar-cart-item-heading:hover {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-cart-item-parameter {
    font-size: 0.8125rem;
    font-weight: 300;
}

.rd-navbar-fixed .navbar-cart-item-qty {
    display: inline-block;
    width: 3.25rem;
    height: 1.875rem;
    padding: 0.3125rem 0.9375rem 0.3125rem 0.625rem;
    font-size: 0.8125rem;
    text-align: center;
}

.rd-navbar-fixed .navbar-cart-spinner .ui-spinner-button {
    right: 0;
    width: 0.9375rem;
    height: 0.9375rem;
}

.rd-navbar-fixed .navbar-cart-spinner .ui-spinner-up {
    top: 0;
}

.rd-navbar-fixed .navbar-cart-spinner .ui-spinner-down {
    bottom: 0;
}

.rd-navbar-fixed .navbar-cart-remove {
    color: inherit;
}

.rd-navbar-fixed .navbar-cart-remove:hover {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
}

.rd-navbar-fixed .navbar-cart-line-value {
    font-weight: 300;
    color: #525252;
}

.rd-navbar-fixed .navbar-cart-total {
    font-size: 2.25rem;
    font-weight: 400;
}

.rd-navbar-fixed .navbar-cart-group {
    display: flex;
    align-items: center;
    margin-bottom: -1.25rem;
    margin-left: -1.25rem;
}

.rd-navbar-fixed .navbar-cart-group:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.rd-navbar-fixed .navbar-cart-group > * {
    margin-top: 0;
    margin-bottom: 1.25rem;
    margin-left: 1.25rem;
}

.rd-navbar-fixed .navbar-cart-group > * {
    flex-grow: 1;
}

.rd-navbar-fixed * + .navbar-cart-item,
.rd-navbar-fixed * + .navbar-cart-line {
    margin-top: 1.625rem;
}

.rd-navbar-fixed * + .navbar-cart-buttons {
    margin-top: 10px;
}

.rd-navbar-fixed .navbar-cart-line + .navbar-cart-line {
    margin-top: 0.125rem;
}

.rd-navbar-fixed .navbar-login {
    position: fixed;
    top: 60px;
    bottom: 0;
    right: 0;
    z-index: 16;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transform: translateX(110%);
    width: 470px;
    max-width: 100%;
    padding: 20px;
    background: #fff;
    transition: 0.2s;
    overflow-y: scroll;
}

.rd-navbar-fixed.navbar-login-active .navbar-login {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fixed .navbar-login-heading {
    font-size: 1.875rem;
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-login-text {
    font-size: 1rem;
    line-height: 1.68;
}

.rd-navbar-fixed * + .navbar-login-item {
    margin-top: 1.875rem;
}

.rd-navbar-fixed * + .navbar-login-text {
    margin-top: 0.4375rem;
}

.rd-navbar-fixed * + .navbar-login-form {
    margin-top: 1.4375rem;
}

.rd-navbar-fixed .navbar-navigation {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: -310px;
    width: 300px;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.2;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
}

.rd-navbar-fixed .navbar-navigation-root-item,
.rd-navbar-fixed .navbar-navigation-megamenu,
.rd-navbar-fixed .navbar-navigation-dropdown {
    transition: 0.4s;
}

.rd-navbar-fixed .navbar-navigation-megamenu,
.rd-navbar-fixed .navbar-navigation-dropdown {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: -310px;
    width: 300px;
    z-index: 2;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
}

.rd-navbar-fixed .navbar-navigation,
.rd-navbar-fixed .navbar-navigation-megamenu,
.rd-navbar-fixed .navbar-navigation-dropdown {
    padding: 16px 0 30px;
    background: #e3eef4;
}

.rd-navbar-fixed .navbar-navigation.overlaid,
.rd-navbar-fixed .navbar-navigation-megamenu.overlaid,
.rd-navbar-fixed .navbar-navigation-dropdown.overlaid {
    background: #818181;
}

.rd-navbar-fixed .navbar-navigation-root-link,
.rd-navbar-fixed .navbar-navigation-megamenu-link,
.rd-navbar-fixed .navbar-navigation-dropdown-link {
    position: relative;
    transform: translateZ(0);
    display: block;
    padding: 8px 35px 8px 25px;
    border-radius: 4px;
    overflow: hidden;
    color: #525252;
    transition: 0.2s;
}

.rd-navbar-fixed .navbar-navigation-root-link + .rd-navbar-submenu-toggle,
.rd-navbar-fixed .navbar-navigation-megamenu-link + .rd-navbar-submenu-toggle,
.rd-navbar-fixed .navbar-navigation-dropdown-link + .rd-navbar-submenu-toggle {
    display: flex;
}

.rd-navbar-fixed .navbar-navigation-root-link:hover,
.rd-navbar-fixed .navbar-navigation-megamenu-link:hover,
.rd-navbar-fixed .navbar-navigation-dropdown-link:hover {
    color: #1c77ff;
}

.rd-navbar-fixed
    .navbar-navigation-megamenu-item.active
    > .navbar-navigation-root-link,
.rd-navbar-fixed
    .navbar-navigation-megamenu-item.active
    > .navbar-navigation-megamenu-link,
.rd-navbar-fixed
    .navbar-navigation-megamenu-item.active
    > .navbar-navigation-dropdown-link,
.rd-navbar-fixed
    .navbar-navigation-dropdown-item.active
    > .navbar-navigation-root-link,
.rd-navbar-fixed
    .navbar-navigation-dropdown-item.active
    > .navbar-navigation-megamenu-link,
.rd-navbar-fixed
    .navbar-navigation-dropdown-item.active
    > .navbar-navigation-dropdown-link,
.rd-navbar-fixed
    .navbar-navigation-root-item.active
    > .navbar-navigation-root-link,
.rd-navbar-fixed
    .navbar-navigation-root-item.active
    > .navbar-navigation-megamenu-link,
.rd-navbar-fixed
    .navbar-navigation-root-item.active
    > .navbar-navigation-dropdown-link {
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-navigation-back-btn {
    display: block;
    padding: 14px 15px;
    font-size: 1.3077rem;
    font-weight: 500;
    color: #1c77ff;
}

.rd-navbar-fixed .navbar-navigation-back-btn::before {
    content: "\f237";
    font-family: "Material Design Icons";
    margin-right: 10px;
    vertical-align: bottom;
}

.rd-navbar-fixed .navbar-navigation-back-btn:hover {
    cursor: pointer;
}

.rd-navbar-fixed * + .navbar-navigation-megamenu-row {
    margin-top: 0.9375rem;
}

.rd-navbar-fixed .navbar-navigation-megamenu-blog {
    padding: 0 15px;
}

.rd-navbar-fixed * + .navbar-navigation-megamenu-post {
    margin-top: 20px;
}

.rd-navbar-fixed .navbar-navigation-megamenu-heading {
    padding: 19px 15px 8px;
    margin: 0;
    font-weight: 500;
    font-size: 1.1538rem;
    text-transform: uppercase;
    color: #0a0a0b;
}

.rd-navbar-fixed .navbar-navigation-item-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
    position: absolute;
    top: 0;
    right: 9px;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    display: none;
    color: inherit;
    transition: 0.2s;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle::before {
    content: "\f236";
    font-family: "Material Design Icons";
}

.rd-navbar-fixed .rd-navbar-submenu-toggle:hover::before {
    color: #1c77ff;
}

.rd-navbar-fixed .rd-navbar-submenu {
    position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu.focus > .navbar-navigation-megamenu,
.rd-navbar-fixed .rd-navbar-submenu.focus > .navbar-navigation-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened > .navbar-navigation-megamenu,
.rd-navbar-fixed .rd-navbar-submenu.opened > .navbar-navigation-dropdown {
    left: 0;
    pointer-events: auto;
}

.rd-navbar-fixed .rd-navbar-submenu.focus > .navbar-navigation-root-link,
.rd-navbar-fixed .rd-navbar-submenu.focus > .navbar-navigation-dropdown-link,
.rd-navbar-fixed .rd-navbar-submenu.focus > .navbar-navigation-megamenu-link,
.rd-navbar-fixed .rd-navbar-submenu.opened > .navbar-navigation-root-link,
.rd-navbar-fixed .rd-navbar-submenu.opened > .navbar-navigation-dropdown-link,
.rd-navbar-fixed .rd-navbar-submenu.opened > .navbar-navigation-megamenu-link {
    color: #fff;
}

.rd-navbar-fixed
    .rd-navbar-submenu.focus
    > .navbar-navigation-root-link::before,
.rd-navbar-fixed
    .rd-navbar-submenu.focus
    > .navbar-navigation-dropdown-link::before,
.rd-navbar-fixed
    .rd-navbar-submenu.focus
    > .navbar-navigation-megamenu-link::before,
.rd-navbar-fixed
    .rd-navbar-submenu.opened
    > .navbar-navigation-root-link::before,
.rd-navbar-fixed
    .rd-navbar-submenu.opened
    > .navbar-navigation-dropdown-link::before,
.rd-navbar-fixed
    .rd-navbar-submenu.opened
    > .navbar-navigation-megamenu-link::before {
    padding: 100%;
    transition: padding 0.25s ease-in;
}

.rd-navbar-fixed.active .navbar-navigation {
    left: 0;
}

.rd-navbar-fixed.navbar-subpanel-active .navbar-subpanel {
    opacity: 1;
    visibility: visible;
}

.rd-navbar-fixed.navbar-subpanel-active .navbar-panel {
    opacity: 0;
    visibility: hidden;
}

.rd-navbar-fixed.rd-navbar-extended .navbar-inner-navigation {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: -310px;
    width: 300px;
    padding: 25px 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
}

.rd-navbar-fixed.rd-navbar-extended
    .navbar-inner-navigation
    .navbar-cell
    + .navbar-cell {
    margin-top: 20px;
}

.rd-navbar-fixed.rd-navbar-extended .navbar-navigation {
    position: static;
    width: 100%;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.rd-navbar-fixed.rd-navbar-extended .navbar-inner-navigation-cell {
    padding: 0 20px;
}

.rd-navbar-fixed.rd-navbar-extended .navbar-inner-subpanel {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
    padding: 0 calc(5% + 50px) 0 5%;
    background-color: #fff;
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
}

.rd-navbar-fixed.rd-navbar-extended .navbar-subpanel {
    position: relative;
    z-index: 14;
    top: auto;
    right: auto;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.rd-navbar-fixed.rd-navbar-extended.active .navbar-inner-navigation {
    left: 0;
}

.rd-navbar-fullwidth {
    height: 80px;
    font-weight: 500;
    font-size: 0.8125rem;
    background-color: #fff;
    box-shadow: none;
    transition: height 0.2s, box-shadow 0.2s;
}

.rd-navbar-fullwidth .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}

.rd-navbar-fullwidth .navbar-cell {
    display: flex;
    align-items: stretch;
    padding: 0 17px;
}

.rd-navbar-fullwidth .navbar-spacer {
    display: block;
    flex-grow: 1;
}

.rd-navbar-fullwidth .navbar-switch {
    display: none;
}

.rd-navbar-fullwidth .navbar-panel {
    align-self: center;
}

.rd-navbar-fullwidth .navbar-subpanel {
    display: flex;
    align-items: center;
    align-self: center;
    margin: 0 -10px;
}

.rd-navbar-fullwidth .navbar-subpanel-item {
    padding: 0 10px;
}

.rd-navbar-fullwidth .navbar-subpanel-item .navbar-select-wrap {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.rd-navbar-fullwidth .navbar-button {
    display: block;
    font-size: 27px;
    width: 27px;
    height: 27px;
}

.rd-navbar-fullwidth .navbar-button-round {
    font-size: 1.125rem;
    width: 2.375rem;
    height: 2.375rem;
}

.rd-navbar-fullwidth .navbar-action-button {
    margin: 0;
}

.rd-navbar-fullwidth .subpanel-switch {
    display: none;
}

.rd-navbar-fullwidth .navbar-lang {
    position: relative;
    height: 1.375rem;
    width: 3.5625rem;
}

.rd-navbar-fullwidth .navbar-lang-active .navbar-lang-container::before {
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.rd-navbar-fullwidth .navbar-lang-active .navbar-lang-body {
    opacity: 1;
    position: static;
    transition: all 0.2s ease-in-out;
}

.rd-navbar-fullwidth .navbar-lang-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    text-transform: uppercase;
}

.rd-navbar-fullwidth .navbar-lang-container::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    content: "";
    background: #0a0a0b;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.rd-navbar-fullwidth .navbar-lang-icon {
    margin-right: 0.3125rem;
    font-size: 1.375rem;
    line-height: 1;
}

.rd-navbar-fullwidth .navbar-lang-inner {
    position: relative;
}

.rd-navbar-fullwidth .navbar-lang-head .navbar-lang-item {
    white-space: nowrap;
}

.rd-navbar-fullwidth .navbar-lang-head .navbar-lang-item::after {
    display: inline-block;
    margin-left: 0.1875rem;
    content: "";
    border-width: 6px 3px 2px 3px;
    border-color: #0a0a0b transparent transparent transparent;
    border-style: solid;
}

.rd-navbar-fullwidth .navbar-lang-body {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
}

.rd-navbar-fullwidth .navbar-lang-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.rd-navbar-fullwidth .navbar-lang-item:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-info > * + * {
    margin-left: 30px;
}

.rd-navbar-fullwidth .navbar-info-button {
    display: none;
}

.rd-navbar-fullwidth .navbar-info-icon {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-info-link {
    color: #0a0a0b;
    font-weight: 400;
    font-size: 1.0625rem;
}

.rd-navbar-fullwidth .navbar-info-link:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-search {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleX(0.8);
    z-index: 1;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    transition: 0.25s;
}

.rd-navbar-fullwidth .navbar-search-container {
    flex: 1 1 870px;
    max-width: 870px;
    margin: 0 auto;
    padding: 0 15px;
}

.rd-navbar-fullwidth .navbar-search-close {
    position: absolute;
    top: 50%;
    right: 38px;
    font-size: 1.875rem;
    transform: translateY(-50%);
}

.rd-navbar-fullwidth .navbar-search-form {
    display: flex;
    align-items: center;
}

.rd-navbar-fullwidth .navbar-search-input {
    flex-grow: 1;
    font-size: 1.875rem;
    color: #0a0a0b;
    margin: 0;
    border: none;
    background: none;
}

.rd-navbar-fullwidth .navbar-search-input::placeholder {
    color: #0a0a0b;
}

.rd-navbar-fullwidth .navbar-search-close,
.rd-navbar-fullwidth .navbar-search-btn {
    color: inherit;
}

.rd-navbar-fullwidth .navbar-search-close:hover,
.rd-navbar-fullwidth .navbar-search-btn:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-search-btn {
    margin-left: 1.25rem;
    font-size: 1.75rem;
}

.rd-navbar-fullwidth .navbar-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: center top;
    display: flex;
    justify-content: center;
    padding: 60px 0 70px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
    background: #fff;
    transition: 0.15s;
}

.rd-navbar-fullwidth .navbar-search-results.rd-search-show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fullwidth .navbar-search-results.rd-search-loading .search-results {
    opacity: 0.5;
    pointer-events: none;
}

.rd-navbar-fullwidth .navbar-search-results .search-results {
    flex: 1 1 870px;
    max-width: 870px;
    padding: 0 15px;
}

.rd-navbar-fullwidth .navbar-search-results .search-list {
    list-style-type: none;
}

.rd-navbar-fullwidth .navbar-search-results .search-list-item {
    padding: 25px 0;
    margin: 0;
    border-bottom: 1px solid #dbdbdb;
}

.rd-navbar-fullwidth .navbar-search-results .search-list-item:first-child {
    border-top: 1px solid #dbdbdb;
}

.rd-navbar-fullwidth .navbar-search-results * + p {
    margin-top: 2px;
}

.rd-navbar-fullwidth .navbar-search-results * + .search-list,
.rd-navbar-fullwidth .navbar-search-results * + .search-list-item-all {
    margin-top: 25px;
}

.rd-navbar-fullwidth.navbar-search-active .navbar-search {
    transform: scaleX(1);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fullwidth .navbar-cart {
    position: fixed;
    top: 80px;
    bottom: 0;
    right: 0;
    transform: translateX(110%);
    width: 470px;
    max-width: 100%;
    padding: 22px 40px;
    background: #fff;
    overflow-y: auto;
    box-shadow: 0 28px 28px rgba(82, 82, 82, 0.1);
    transition: 0.2s;
}

.rd-navbar-fullwidth.navbar-cart-active .navbar-cart {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck {
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .navbar-cart {
    top: 50px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .navbar-action-button {
    padding-top: 1px;
    padding-bottom: 1px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .navbar-non-stuck {
    display: none;
}

.rd-navbar-fullwidth .navbar-cart-item {
    display: flex;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #dbdbdb;
}

.rd-navbar-fullwidth .navbar-cart-item-body {
    padding: 0 20px;
    flex-grow: 1;
}

.rd-navbar-fullwidth .navbar-cart-item-heading,
.rd-navbar-fullwidth .navbar-cart-item-price {
    font-size: 1.0625rem;
    font-weight: 400;
}

.rd-navbar-fullwidth .navbar-cart-item-heading:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-cart-item-parameter {
    font-size: 0.8125rem;
    font-weight: 300;
}

.rd-navbar-fullwidth .navbar-cart-item-qty {
    display: inline-block;
    width: 3rem;
    height: 1.875rem;
    padding: 0.3125rem 0.9375rem 0.3125rem 0.625rem;
    font-size: 0.8125rem;
    text-align: center;
}

.rd-navbar-fullwidth .navbar-cart-spinner .ui-spinner-button {
    right: 0;
    width: 0.9375rem;
    height: 0.9375rem;
}

.rd-navbar-fullwidth .navbar-cart-spinner .ui-spinner-up {
    top: 0;
}

.rd-navbar-fullwidth .navbar-cart-spinner .ui-spinner-down {
    bottom: 0;
}

.rd-navbar-fullwidth .navbar-cart-remove {
    color: inherit;
}

.rd-navbar-fullwidth .navbar-cart-remove:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
}

.rd-navbar-fullwidth .navbar-cart-line-value {
    font-weight: 300;
    color: #525252;
}

.rd-navbar-fullwidth .navbar-cart-total {
    font-size: 2.25rem;
    font-weight: 400;
}

.rd-navbar-fullwidth .navbar-cart-group {
    display: flex;
    align-items: center;
    margin-bottom: -1.25rem;
    margin-left: -1.25rem;
}

.rd-navbar-fullwidth .navbar-cart-group:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.rd-navbar-fullwidth .navbar-cart-group > * {
    margin-top: 0;
    margin-bottom: 1.25rem;
    margin-left: 1.25rem;
}

.rd-navbar-fullwidth .navbar-cart-group > * {
    flex-grow: 1;
}

.rd-navbar-fullwidth * + .navbar-cart-item,
.rd-navbar-fullwidth * + .navbar-cart-line {
    margin-top: 1.625rem;
}

.rd-navbar-fullwidth * + .navbar-cart-buttons {
    margin-top: 10px;
}

.rd-navbar-fullwidth .navbar-cart-line + .navbar-cart-line {
    margin-top: 0.125rem;
}

.rd-navbar-fullwidth .navbar-login {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 14;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transform: translateX(110%);
    width: 352px;
    max-width: 100%;
    padding: 52px 25px 61px;
    color: #525252;
    background: #fff;
    overflow-y: auto;
    box-shadow: 0 28px 28px rgba(82, 82, 82, 0.1);
    transition: 0.2s;
}

.rd-navbar-fullwidth.navbar-login-active .navbar-login {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.rd-navbar-fullwidth .navbar-login-heading {
    font-size: 1.875rem;
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-login-text {
    font-size: 1rem;
    line-height: 1.68;
}

.rd-navbar-fullwidth * + .navbar-login-item {
    margin-top: 1.875rem;
}

.rd-navbar-fullwidth * + .navbar-login-text {
    margin-top: 0.4375rem;
}

.rd-navbar-fullwidth * + .navbar-login-form {
    margin-top: 1.4375rem;
}

.rd-navbar-fullwidth .navbar-navigation {
    display: flex;
    padding: 0;
    margin: 0 -1.0625rem;
}

.rd-navbar-fullwidth .navbar-navigation-root-item {
    display: flex;
    align-items: center;
    padding: 0 1.0625rem;
}

.rd-navbar-fullwidth
    .navbar-navigation-root-item.focus
    > .navbar-navigation-root-link,
.rd-navbar-fullwidth
    .navbar-navigation-root-item.active
    > .navbar-navigation-root-link {
    color: #1c77ff;
}

.rd-navbar-fullwidth
    .navbar-navigation-root-item.focus
    > .navbar-navigation-root-link::before,
.rd-navbar-fullwidth
    .navbar-navigation-root-item.active
    > .navbar-navigation-root-link::before {
    opacity: 1;
    width: 1.75rem;
}

.rd-navbar-fullwidth .navbar-navigation-root-link {
    position: relative;
    display: block;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #0a0a0b;
    text-transform: uppercase;
}

.rd-navbar-fullwidth .navbar-navigation-root-link::before {
    content: "";
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    width: 4px;
    opacity: 0;
    height: 3px;
    pointer-events: none;
    transition: 0.2s ease-in-out;
    transform: translateX(-50%);
    background: #1c77ff;
}

.rd-navbar-fullwidth .navbar-navigation-root-link:hover {
    color: #0a0a0b;
}

.rd-navbar-fullwidth .navbar-navigation-root-link:hover::before {
    opacity: 1;
    width: 1.75rem;
}

.rd-navbar-fullwidth .navbar-navigation-dropdown {
    position: absolute;
    left: -20px;
    top: 100%;
    transform: translate(0, 10%) scale(0.8);
    z-index: 1;
    padding: 24px 20px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: -3px 12px 20px rgba(0, 0, 0, 0.25);
    border-radius: 0.375rem;
    transition: 0.2s;
}

.rd-navbar-fullwidth
    .navbar-navigation-dropdown-item
    + .navbar-navigation-dropdown-item {
    margin-top: 0.8125rem;
}

.rd-navbar-fullwidth .navbar-navigation-dropdown-link {
    position: relative;
    text-transform: uppercase;
    color: #525252;
    transition: 0.2s;
}

.rd-navbar-fullwidth
    .navbar-navigation-dropdown-link
    + .rd-navbar-submenu-toggle {
    display: block;
}

.rd-navbar-fullwidth .navbar-navigation-dropdown-link:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth
    .navbar-navigation-dropdown-link:hover
    + .rd-navbar-submenu-toggle {
    transition: 0.2s 0.1s;
    color: #1c77ff;
}

.rd-navbar-fullwidth
    .navbar-navigation-dropdown-item.active
    > .navbar-navigation-dropdown-link {
    color: #1c77ff;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(-10%) scale(0.8);
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-container {
    max-width: 1050px;
    width: 100%;
    padding: 3.625rem 3.25rem 4.25rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 5px 6px 18px rgba(10, 10, 11, 0.12);
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-blog {
    display: flex;
    margin: 0 -20px;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-post {
    flex: 1 0 25%;
    padding: 0 20px;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-post .post-body {
    margin-top: -0.25rem;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-row {
    display: flex;
    margin: 0 -20px;
}

.rd-navbar-fullwidth
    .navbar-navigation-megamenu-blog
    + .navbar-navigation-megamenu-row {
    margin-top: 2.9375rem;
    padding-top: 2.9375rem;
    border-top: 1px solid #dbdbdb;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-column {
    flex: 1 0 25%;
    padding: 0 20px;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-column-small {
    flex: 1 0 6%;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-column-inner {
    display: flex;
}

.rd-navbar-fullwidth * + .navbar-navigation-megamenu-column-inner {
    margin-top: 1.6875rem;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-block {
    flex: 1 0 50%;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-heading {
    font-weight: 700;
    font-family: "Spartan", sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a0a0b;
}

.rd-navbar-fullwidth * + .navbar-navigation-megamenu-item {
    margin-top: 0.8125rem;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-link {
    text-transform: uppercase;
    color: #525252;
    transition: 0.2s;
}

.rd-navbar-fullwidth .navbar-navigation-megamenu-link:hover {
    color: #1c77ff;
}

.rd-navbar-fullwidth
    .navbar-navigation-megamenu-item.active
    > .navbar-navigation-megamenu-link {
    color: #1c77ff;
}

.rd-navbar-fullwidth
    .navbar-navigation-megamenu-heading
    + .navbar-navigation-megamenu-row,
.rd-navbar-fullwidth
    .navbar-navigation-megamenu-heading
    + .navbar-navigation-megamenu-item {
    margin-top: 19px;
}

.rd-navbar-fullwidth .navbar-navigation-item-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.rd-navbar-fullwidth .rd-navbar--has-dropdown {
    position: relative;
    padding-right: 1.0625rem;
}

.rd-navbar-fullwidth .rd-navbar--has-dropdown .rd-navbar-submenu-toggle {
    transform: rotate(90deg);
}

.rd-navbar-fullwidth .rd-navbar-submenu-toggle {
    position: absolute;
    top: 5px;
    right: 6px;
    display: none;
    font-size: 0.5em;
    color: #525252;
    transition: 0.2s;
}

.rd-navbar-fullwidth .rd-navbar-submenu-toggle::before {
    content: "\f623";
    font-family: "Material Design Icons";
}

.rd-navbar-fullwidth .rd-navbar-megamenu .rd-navbar-dropdown {
    transform: translate(10%, 0) scale(0.8);
    left: 100%;
    top: -24px;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar-dropdown {
    transform: translate(10%, 0) scale(0.8);
    left: calc(100% + 10px);
    top: -24px;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar-open-left {
    transform: translate(-10%, 0) scale(0.8);
    left: auto;
    right: calc(100% + 10px);
}

.rd-navbar-fullwidth .rd-navbar-submenu.focus > .navbar-navigation-dropdown,
.rd-navbar-fullwidth .rd-navbar-submenu.opened > .navbar-navigation-dropdown {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    visibility: visible;
}

.rd-navbar-fullwidth .rd-navbar-submenu.focus > .navbar-navigation-megamenu,
.rd-navbar-fullwidth .rd-navbar-submenu.opened > .navbar-navigation-megamenu {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.rd-navbar-fullwidth
    .rd-navbar-submenu.focus
    > .navbar-navigation-dropdown-link,
.rd-navbar-fullwidth
    .rd-navbar-submenu.focus
    > .navbar-navigation-megamenu-link,
.rd-navbar-fullwidth
    .rd-navbar-submenu.opened
    > .navbar-navigation-dropdown-link,
.rd-navbar-fullwidth
    .rd-navbar-submenu.opened
    > .navbar-navigation-megamenu-link {
    color: #1c77ff;
}

.rd-navbar-fullwidth .rd-navbar-submenu.focus > .rd-navbar-submenu-toggle,
.rd-navbar-fullwidth .rd-navbar-submenu.opened > .rd-navbar-submenu-toggle {
    color: #1c77ff;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    box-shadow: 0 0 28px rgba(82, 82, 82, 0.1);
}

.rd-navbar-fullwidth .navbar-navigation-back {
    display: none;
}

.rd-navbar-fullwidth.rd-navbar-extended {
    height: 183px;
}

.rd-navbar-fullwidth.rd-navbar-extended .navbar-container {
    display: block;
}

.rd-navbar-fullwidth.rd-navbar-extended .navbar-inner {
    width: 100%;
    padding: 1.25rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    transition: all 0.2s ease-in-out;
}

.rd-navbar-fullwidth.rd-navbar-extended .navbar-inner-navigation {
    height: 80px;
    padding: 0;
    align-items: center;
}

.rd-navbar-fullwidth.rd-navbar-extended .navbar-inner + .navbar-inner {
    border-top: 1px solid #dbdbdb;
}

.rd-navbar-fullwidth.rd-navbar-extended .navbar-sidebar {
    align-self: stretch;
}

.rd-navbar-fullwidth.rd-navbar-extended.rd-navbar--is-stuck {
    height: auto;
}

.rd-navbar-fullwidth.rd-navbar-extended.rd-navbar--is-stuck
    .navbar-inner
    + .navbar-inner {
    border-top-color: transparent;
}

.rd-navbar-fullwidth.rd-navbar-extended.rd-navbar--is-stuck
    .navbar-inner-subpanel {
    display: none;
}

.rd-navbar-fullwidth.rd-navbar-extended.rd-navbar--is-stuck
    .navbar-inner-navigation {
    height: 50px;
}

[data-x-mode="true"]
    .rd-navbar-fullwidth
    .navbar-navigation-root-item
    > .rd-navbar-submenu-toggle {
    position: static;
    display: block;
    margin-left: 6px;
    line-height: 1;
}

[data-x-mode="true"]
    .rd-navbar-fullwidth
    .navbar-navigation-root-item
    > .rd-navbar-submenu-toggle::before {
    content: "\e924";
}

[data-x-mode="true"]
    .rd-navbar-fullwidth
    .navbar-navigation-root-item
    > .rd-navbar-submenu-toggle:hover {
    cursor: pointer;
}

[data-x-mode="true"]
    .rd-navbar-fullwidth
    .navbar-navigation-root-item.opened
    > .rd-navbar-submenu-toggle {
    color: #1c77ff;
}

.navbar-light.rd-navbar-fullwidth {
    background-color: transparent;
}

.navbar-light.rd-navbar-fullwidth.rd-navbar--is-stuck {
    background-color: #343538;
}

.navbar-light.rd-navbar-fullwidth .logo-image-default {
    display: none;
}

.navbar-light.rd-navbar-fullwidth .logo-image-inverse {
    display: inline;
}

.navbar-light.rd-navbar-fullwidth
    .navbar-navigation-root-item.focus
    > .navbar-navigation-root-link,
.navbar-light.rd-navbar-fullwidth
    .navbar-navigation-root-item.active
    > .navbar-navigation-root-link {
    color: #fff;
}

.navbar-light.rd-navbar-fullwidth .navbar-navigation-root-link {
    color: #fff;
}

.navbar-light.rd-navbar-fullwidth .navbar-navigation-root-link::before {
    background: #fff;
}

.navbar-light.rd-navbar-fullwidth .navbar-navigation-root-link:hover {
    color: #fff;
}

.navbar-light.rd-navbar-fullwidth .navbar-button:not(.navbar-login-switch) {
    color: #fff;
}

.navbar-light.rd-navbar-fullwidth
    .navbar-button:not(.navbar-login-switch)
    .navbar-button-svg {
    stroke: #fff;
}

.navbar-light.rd-navbar-fullwidth
    .navbar-button:not(.navbar-login-switch):hover {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-light.rd-navbar-fullwidth
    .navbar-button:not(.navbar-login-switch):hover
    .navbar-button-svg {
    stroke: rgba(255, 255, 255, 0.5);
}

.navbar-light.rd-navbar-fullwidth.rd-navbar-extended
    .navbar-inner
    + .navbar-inner {
    border-color: rgba(255, 255, 255, 0.3);
}

.summer-nav.navbar-light.rd-navbar-fullwidth
    .navbar-navigation-root-item.focus
    > .navbar-navigation-root-link,
.navbar-light.rd-navbar-fullwidth
    .navbar-navigation-root-item.active
    > .navbar-navigation-root-link,
.summer-nav .navbar-navigation-root-item .navbar-navigation-root-link,
.summer-nav.navbar-light.rd-navbar-fullwidth
    .select2-container--lang
    .select2-selection--single
    .select2-selection__rendered,
.summer-nav.navbar-light.rd-navbar-fullwidth .select2-container--lang::before,
.summer-nav.navbar-light.rd-navbar-fullwidth .icon-link.icon-400 {
    color: black;
}
.summer-nav.rd-navbar--is-stuck
    .navbar-navigation-root-item
    .navbar-navigation-root-link,
.summer-nav.rd-navbar--is-stuck.navbar-light.rd-navbar-fullwidth
    .icon-link.icon-400 {
    color: white;
}

.summer-nav.navbar-light.rd-navbar-fullwidth.rd-navbar-extended
    .navbar-inner
    + .navbar-inner {
    border-color: black;
}
.summer-nav.navbar-light.rd-navbar-fullwidth
    .select2-container--lang
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: black transparent transparent transparent;
}

.summer-nav.navbar-light.rd-navbar-fullwidth
    .navbar-navigation-root-link:hover {
    color: #1c77ff;
}
.summer-nav.rd-navbar,
.summer-nav.navbar-light.rd-navbar-fullwidth.rd-navbar--is-stuck
    .select2-container--lang::before,
.summer-nav.navbar-light.rd-navbar-fullwidth.rd-navbar--is-stuck
    .select2-container--lang
    .select2-selection--single
    .select2-selection__rendered,
.summer-nav.navbar-light.rd-navbar-fullwidth.rd-navbar--is-stuck
    .select2-container--lang
    .select2-selection--single
    .select2-selection__arrow
    b {
    color: white;
}
.summer-nav.navbar-light.rd-navbar-fullwidth.rd-navbar--is-stuck
    .select2-container--lang
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: white transparent transparent transparent;
}
@media (min-width: 1600px) {
    .rd-navbar-fullwidth {
        height: 131px;
    }
    .rd-navbar-fullwidth .navbar-navigation {
        margin: 0 -1.5rem;
    }
    .rd-navbar-fullwidth .navbar-navigation-root-item {
        padding: 0 1.5rem;
    }
    .rd-navbar-fullwidth.rd-navbar--is-stuck {
        height: 50px;
    }
    .rd-navbar-fullwidth.rd-navbar-extended {
        height: 193px;
    }
    .rd-navbar-fullwidth.rd-navbar-extended .navbar-inner {
        padding: 1.1875rem 0rem;
    }
    .rd-navbar-fullwidth.rd-navbar-extended .navbar-inner-navigation {
        padding: 0;
    }
}
