* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


#content ,
.content {
    margin-top: var(--header-height);
}

/* -------------Banner-------------*/

#portal-banner:hover {
    text-decoration: none;
}

.banner-background {
    background-color: #F1F0F5;
}

.banner-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.banner-container > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.banner-text-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* margin-top: 5px; */
}

.banner-text-wrapper img {
    height: 22px;
    margin-right: 11px;
}

.banner-text {
    font-family: "Roboto";
    font-size: 14px;
    font-weight: bold;
    /* margin-top: 1px; */
    margin-bottom: 0px;
    padding-top: 1px;
    background: #F2581D;
    background: linear-gradient(to right, #F2581D 0%, #2B104A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.banner-features {
    color: var(--menu-text-color);
    font-size: 10px;
    /* font-weight: 500; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.banner-feature {
    display: flex;
    /* margin-left: 8px; */
}

.banner-feature p {
    margin-bottom: 0px;
}

.banner-feature-icon {
    height: 12px;
    margin-top: 1px;
    margin-right: 3px;
    color: #D63E1C;
}

@media (min-width: 360px) {
    .banner-text {
        font-size: 16px;
        padding-top: 2px;
    }
    .banner-text-wrapper img {
        height: 28px;
        margin-right: 13px;
    }
    .banner-features {
        font-size: 11px;
    }
    .banner-feature-icon {
        height: 13px;
        margin-right: 4px;
    }
}

@media (min-width: 400px) {
    .banner-text {
        font-size: 18px;
        /* padding-top: 8px; */
    }
    .banner-text-wrapper img {
        height: 30px;
        margin-right: 15px;
    }
    .banner-features {
        font-size: 13px;
    }
    .banner-feature-icon {
        height: 15px;
    }
}

@media (min-width: 768px) {
    .banner-container {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .banner-container > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .banner-text {
        font-size: 16px;
        /* padding-top: 10px; */
    }
    .banner-text-wrapper img {
        height: 28px;
    }
    .banner-features {
        font-size: 15px;
    }
    .banner-feature-icon {
        margin-top: 3px;
        height: 15px;
        margin-right: 5px;
    }
}

/* -------------HEADER & MENU-------------*/



#header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 11;
    box-shadow: rgba(0, 0, 0, 0.29) 0px 3px 4.65px;
    /*overflow:auto;*/
}

#header-body {
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
}

#header-body-shop {
    display: flex;
    flex-direction: column;
}
#header-overflow-top {
    position: fixed;
    left: 0;
    right: 0;
    top: -100px;
    height: 100px;
    background: #ffffff;
}

#header-content {
    display: flex;
    width: 100%;
    height: var(--header-height);
}

#header-content > div {
    display: flex;
}
#header-content > div:nth-child(2) {
    width: 50%;
}

#header-content > div:nth-child(1),
#header-content > div:nth-child(3) {
    width: 25%;
}

#header-logo > img {
    height: 40px;
    margin: 5px 0px;
}

.header-icon {
    background-color: transparent;
    border: none;
    margin: 10px 0px;
    cursor: pointer;
    padding-left: 0px;
    padding-right: 0px;

}

.header-icon i {
    height: calc(var(--header-height) - 20px);
    font-size: calc(var(--header-height) - 20px);
    color: #fff;
}

#menu-container, .menu-container {
    position: fixed;
    top: var(--header-height);
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    z-index: 99;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#menu-container:not(.visible),
.menu-container:not(.visible) {
    visibility: hidden;
    opacity: 0;
}
#menu {
    background-color: var(--menu-background);
    color: var(--menu-text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 90vw;
    max-width: 600px;
    position: fixed;
    top: var(--header-height);
    right: -100vw;
    bottom: 0px;
    overflow-y: scroll;
    z-index: 100;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#menu.open {
    right: 0;
}

#menu-content, #menu-footer {
    padding: 15px;
}

#menu-footer .menu-section:last-child {
    margin-bottom: 0px;
}

#menu-footer a:not(.btn) {
    color: var(--menu-text-color);
}

.menu-section {
    margin-bottom: 25px;
}

.menu-section:last-child {
    margin-bottom: 0px;
}

.menu-section h5 {
    margin-bottom: 5px;
    font-size: 12px;
}

.menu-section-header {
    font-size: 16px;
}

.menu-item {
    display: flex;
    background-color: var(--menu-item-background);
    border-radius: 5px;
    margin-top: 10px;
    color: var(--menu-text-color);
}

.menu-item:not(.btn-group) {
    box-shadow: rgb(30 10 50 / 20%) 0px 0px 3.84px;
}

.menu-item:hover {
    text-decoration: none;
    color: var(--menu-text-color);
}

.menu-item-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    /* width: 25px; */
}

.menu-item-icon i {
    width: 15px;
    color: #333;
    font-size: 14px;
}

.menu-item-content {
    flex-direction: row;
    padding: 10px;
    flex-grow: 1;
}

.menu-item-chevron {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
    width: 30px;
    font-size: 22px;
    cursor: pointer;
}

.menu-item-chevron img {
    width: 15px;
}