.gomst-menu-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0;
    .gomst-menu-icons__title {
        font-size: 1rem;
        line-height: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
    }
    .gomst-menu-icons__item {
        display: flex;
        align-items: center;
        &:not(:last-child) {
            margin-right: 0.5rem;
        }
        a {
            text-decoration: none;
        }
        svg {
            fill: #000;
            width: 22px;
            height: 22px;
            padding: 0.15rem;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: 200ms all ease-in-out;
            @media (min-width: 992px) {
                margin: 0 0.2rem;
            }
            @media (max-width: 575px) {
                width: 20px;
                height: 20px;
                margin: 0 0.2rem;
            }
            &:hover {
                fill: #808080;
            }
        }
        .gomst-menu-icons__item-user {
            padding: 0.8rem 1rem;
            border-radius: 0.5rem;
            border: 2px solid #000;
            display: block;
            background: #000;
            text-align: center;
            color: #fff;
            font-size: 1rem;
            line-height: 1.2rem;
            font-weight: 500;
            transition: 0.3s;
            &:hover {
                background: #fff;
                color: #000;
            }
        }
        .dropdown {
            .dropdown-menu {
                min-width: 200px;
                background-color: #fff;
                box-shadow: 0 5px 28px -5px rgba(0, 0, 0, 0.5);
                border-radius: 0.6rem;
                border: none;
                padding: 1rem;
                top: 1.5rem !important;
            }
        }
        .gomst-menu-icons__item-account {
            display: flex;
            align-items: center;
        }
        .gomst-menu-icons__item-text {
            color: #000;
        }
        .dropdown-toggle::after {
            color: #000;
            @media (max-width: 757px) {
                margin-left: 0;
            }
        }
    }
    .gomst-menu-icons__button {
        background: transparent;
        color: #000;
        position: relative;
        border: none;
        padding: 0.5rem;
        &.active {
            svg {
                fill: #000;
            }
        }
    }
    .gomst-menu-icons__box {
        p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
    }
    .gomst-menu-icons__caption {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .gomst-menu-icons__menu-custom {
        ul {
            padding: 0;
            li {
                display: block;
                &:not(:last-child) {
                    margin-bottom: 1rem;
                }
                a {
                    font-size: 1rem;
                    line-height: 1.2rem;
                    display: block;
                    color: #000;
                    position: relative;
                    text-decoration: none;
                    transition: 200ms all ease-in-out;
                    &:hover {
                        font-weight: 800;
                    }
                }
            }
        }
    }
}