@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

header {
    background-color: #FFE86D;
    height: 100px;
}

header .centered-header {
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .left-header {
    float: left;
    height: 100%;
    display: flex;
    align-items: center;
}

header .center-header {
    height: 100%;
    display: none;
    align-items: center;
    float: left;
}

header .right-header {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}

header .right-header a {
    text-decoration: none;
    margin-left: 50px;
}

header .right-header button {
    background: transparent;
    border: none;
    margin-left: 50px;
    cursor: pointer;
}

header .logo {
    height: 80px;
}

header .logo-link {
    text-decoration: none;
    height: 80px;
}

header .header-icon {
    height: 45px;
    position: relative;
}

header .role-icon {
    position: absolute;
    height: 20px;
    right: -4px;
    bottom: -4px;
}

header .cart-quantity {
    background: #F34646;
    border-radius: 50%;
    color: #FFFFFF;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    position: absolute;
    padding-top: 2px;
    height: 18px;
    width: 20px;
    right: -4px;
    bottom: -4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    margin-top: 0;
}

header .function-text {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 27px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    background-color: #F34646;
    border-radius: 22px;
    height: 43px;
    width: 123px;
}

header .left-header .function-text {
    margin-left: 35px;
}

header .center-header .function-text {
    display: none;
}

header .menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 0;
    width: 400px;
    z-index: 1000;
    color: #000000;
    background: #FFFFFF;
    border-collapse: collapse;
}

header .show-menu {
    display: table;
}

header .menu th {
    height: 45px;
    border: #000000 solid 4px;
    text-align: left;
}

header .menu td {
    height: 33px;
    width: 100%;
    border: #000000 solid 4px;
}

header .menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 23px;
    font-weight: 400;
    text-decoration: none;
    color: #000000;
    margin-left: 18px;
    width: 100%;
    display: flex;
}

header .menu button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    margin-left: 18px;
    color: #F34646;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 23px;
    align-content: center;
    line-height: 50px;
}

header .menu button img {
    height: 32px;
    position: relative;
    margin-right: 10px;
}

@media screen and (max-width: 1340px) {
    header .centered-header {
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1080px) {
    header .logo-text {
        display: none;
    }
}

@media screen and (orientation: portrait) {
    header {
        height: 150px;
    }    

    header .menu td {
        height: 45px;
    }
}