.new-simple-navigation {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 35px;
}

.new-simple-navigation__gshow-shell {
    background: #1c4bed;
    min-height: 74px;
    width: 100%;
    display: flex;
}

.new-simple-navigation__gshow-shell button {
    background: transparent;
}

.new-simple-navigation__nav {
    margin: 0 auto;
    width: 1200px;
    max-width: 100%;
    height: 90px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.new-simple-navigation__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.new-simple-navigation__btn--user-wrapper {
    position: relative;
}

.new-simple-navigation__btn--user-wrapper,
.new-simple-navigation__btn--user-wrapper * {
    box-sizing: border-box;
}

.new-simple-navigation__btn {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #4D538C;
    border: 1px solid #4D538C;
    border-radius: 8px;
    cursor: pointer;
}

.new-simple-navigation__btn--icon {
    margin-right: 8px;
}

.new-simple-navigation__btn--arrow {
    margin-left: 8px;
}

.new-simple-navigation__btn--user-info {
    display: flex;
    align-items: center;
}

.new-simple-navigation__btn--user .new-simple-navigation__btn--icon {
    width: 24px;
    height: 24px;
}

.new-simple-navigation__btn--user-wrapper.active .new-simple-navigation__btn--user {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.new-simple-navigation__btn--user-wrapper.active .new-simple-navigation__btn--user-options {
    display: block;
}

.new-simple-navigation__btn--user-wrapper.active .new-simple-navigation__btn--arrow {
    transform: rotate(180deg);
}

.new-simple-navigation__btn--user-options {
    display: none;
    width: 100%;
    padding: 16px 0;
    background: #fff;
    border: 1px solid #4D538C;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
}

.new-simple-navigation__btn--user-options a {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    display: block;
    text-align: center;
    color: #4D538C;
}

.new-simple-navigation__btn--user-options a:not(:last-child) {
    margin-bottom: 16px;
}

.buttons-wrapper {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .new-simple-navigation__btn--user {
        min-width: 152px;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .new-simple-navigation__nav {
        height: 68px;
    }

    .new-simple-navigation__logo {
        width: 77px;
    }

    .new-simple-navigation__btn {
        font-size: 9px;
        line-height: 12px;
        font-weight: bold;
        flex-direction: column;
        align-items: center;
        border: none;
        padding: 0;
        height: auto;
        text-transform: uppercase;
    }

    .new-simple-navigation__btn--icon {
        margin-right: 0;
        margin-bottom: 3px;
    }

    .new-simple-navigation__btn--user-info {
        flex-direction: column;
    }

    .new-simple-navigation__btn--arrow {
        display: none;
    }

    .new-simple-navigation__btn--user-options {
        width: 152px;
        right: -24px;
        left: auto;
        padding: 16px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
        border: none;
        border-radius: 0;
        transform: translateY(16px);
    }

    .new-simple-navigation__btn--user-options a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        line-height: 17.07px;
    }

    .new-simple-navigation__btn--user-options a:not(:last-child)  {
        margin-bottom: 16px;
    }
}
