/* Header */
.header {
    background-color: #eb1801;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo_and_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header__logo {
    height: 80px;
}

@media screen and (max-width: 450px) {
    .header__logo {
        height: 52px;
    }
}

.header__divider {
    border-right: 2px solid #fff;
    height: 48px;
}

@media screen and (max-width: 450px) {
    .header__divider {
        border-right: 1.5px solid #fff;
        height: 30px;
    }
}

.header__subscribe {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin-left: 20px;
}

.header__logo__image {
    height: 100%;
    margin: 0 20px;
    padding: 10px 0;
}

.header__my_account_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 32px;
    text-decoration: none;
}

@media screen and (max-width: 450px) {
    .header__my_account_container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        height: 40px;
        margin-right: 20px;
    }
}

.header__my_account_container__text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-right: 8px;
}

@media screen and (max-width: 450px) {
    .header__my_account_container__text {
        display: none;
    }
}

.header__my_account_container__text_mobile {
    display: none;
}

@media screen and (max-width: 450px) {
    .header__my_account_container__text_mobile {
        display: block;
        color: #fff;
        font-size: 10px;
        font-weight: 500;
        margin: 0;
    }
}

.header__my_account_container__icon {
    color: #fff;
    height: 24px;
    width: 24px;
}

@media screen and (max-width: 450px) {
    .header__my_account_container__icon {
        height: 18px;
        width: 18px;
    }
}