@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Sora:400");
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
html,
body {
    margin: 0px;
    height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}
a {
    text-decoration: none;
}


.header {
    display: flex;
    width: 100%;
    min-height: 100px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-top: 1.5px solid transparent;
    border-bottom: 1.5px solid transparent;
    border-top: 1.5px solid #A12213;
    border-bottom: 1.5px solid #A12213;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), radial-gradient(88.02% 180.59% at 98.54% 19.23%, #3C414B 50.86%, #2C313D 100%);
}

.header .LOGO {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    /*box-shadow: 0 0 33.8px #ffffff66;*/
}

.header .LOGO-reversed {
    width: 149px;
    height: 47.24px;
    object-fit: cover;
}

.header .sub-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.header .frame a{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 32px 16px;
    border-radius: 8px;
    /*box-shadow: 0 26px 37.2px #00000029;*/
    transition: all 0.7s;
}

.header .frame a:hover {
    box-shadow: 0 26px 37.2px #222121;
    transition: all 0.7s;
}

.header .img {
    width: 24px;
    height: 24px;
}

.header .text-wrapper {
    font-family: "Sora", Helvetica;
    font-weight: 400;
    color: #b0b3b9;
    font-size: 14px;
}

.header .frame a {
    align-self: center;
}

.header .messages-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    /*gap: 16px;*/
    height: 98px;
}

.header .message-notification {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header .messages-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.65px;
}

.header .envelope-icon {
    width: 25.41px;
    height: 16.99px;
}

.header .item-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.65px 7.06px;
    border-radius: 23.29px;
    border: 1.41px solid #e2311d;
}

.header .div {
    font-family: "RooneySans-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 13.3px;
}

.header .line {
    width: 1px;
    height: 44px;
    object-fit: cover;
}

.header .welcome-avatar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header .text-wrapper-2 {
    font-family: "Sora", Helvetica;
    font-weight: 400;
    color: #b0b3b9;
    font-size: 14px;
}

.header .ellipse {
    width: 52px;
    height: 52px;
    object-fit: cover;
}

.frame {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    position: relative;
    border-radius: 8px;
    border: 1px solid;
    border-color: transparent;
}

.frame .featured-seasonal {
    position: relative;
    width: 24px;
    height: 24px;
}

.frame .item-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 33px;
    border: 2px solid;
    border-color: #e2311d;
}

.header .messages-welcome ul.user-settings-sub-menu {
    position: absolute;
    top: 81px;
    display: flex;
    width: 264px;
    /* height: 292px; */
    padding: 0;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    border-radius: 0px 0px 4px 4px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), radial-gradient(88.02% 180.59% at 98.54% 19.23%, #3C414B 50.86%, #2C313D 100%);
    box-shadow: 0px 20px 32px 0px rgba(73, 82, 97, 0.50);
    z-index: -99999;
    height: 0;
    opacity: 0;
}

.header .messages-welcome .welcome-avatar:hover ul.user-settings-sub-menu{
    padding: 24px 24px 32px 24px;
    height: auto;
    opacity: 1;
    transform: translateY(0);
    z-index: 99999;
}

.header .user-settings-sub-menu li {
    padding-bottom: 5px;
}

.header .messages-welcome, .header .frame {
    cursor: pointer;
}
.header .messages-welcome .welcome-avatar:hover .text-wrapper-2, .header .frame:hover .text-wrapper {
    color: #ffffff;
    transition: all 0.3s;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header, .sub-navigation, .messages-welcome {
        flex-direction: column;
        align-items: center;
    }

    .header .sub-navigation, .header .messages-welcome {
        width: 100%;
        justify-content: space-around;
    }

    .header .frame, .header .frame, .header .message-notification, .header .welcome-avatar {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}