body {
    font-family: Poppins;
    font-size: 16px; /* Размер шрифта по умолчанию в браузере 16px */
    color: #484848;
}

body._lock {
    overflow: hidden;
}

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.main {
    flex: 1 1 auto;
}

[class*="__container"] {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

/* PC */
@media (max-width: 1310px) {
    [class*="__container"] {
        max-width: 970px;
    }
}

/* TABLET */
@media (max-width: 991.98px) {
    [class*="__container"] {
        max-width: 750px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    [class*="__container"] {
        max-width: none;
    }
}

/* SMALL MOBILE */
@media (max-width: 479.98px) {
}

/* -------------------- */
/* -------------------- */

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.header__container {
    display: flex;
    min-height: 196px;
    align-items: center;
}

.header__logo {
    color: #484848;
    font-family: Volkhov;
    font-size: 52px;
    line-height: 100%;
    text-transform: uppercase;
    z-index: 5;
}

/* -------------------- */

.header__menu {
    flex: 1 1 auto;
}

.menu__icon {
    display: none;
}

.menu {
    display: flex;
    justify-content: flex-end;
}

.jc-center {
    justify-content: center;
}

.menu__list {
    display: flex;
    gap: 55px;
    align-items: center;
}

.menu__item {
}

.menu__link {
    line-height: normal;
    color: #484848;
}

.menu__link:hover {
    text-decoration: underline;
}

.header__button {
}

/* -------------------- */

.button {
    display: inline-block;
    font-family: Poppins;
    font-size: 16px;
    line-height: 100%;
    color: #FFF;
    border-radius: 10px;
    background-color: #000;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease 0s; /* делает кнопку более плавной */
}

.button_header {
    padding: 20px 45px;
}

/* -------------------- */

@media (max-width: 1310px) {
    .menu__list {
        gap: 35px;
    }
}

@media (max-width: 991.98px) {
    .header__container {
        min-height: 80px;
    }
    .header__logo {
        font-size: 35px;
    }
    .menu__list {
        gap: 30px;
    }
    .menu__link {
        font-size: 13px;
    }
    .button_header {
        font-size: 13px;
        padding: 15px 35px;
    }

}

@media (max-width: 767.98px) {
    .menu__body {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        padding: 120px 15px 30px 15px;
        transition: left 0.3s ease 0s;
        overflow: auto;
    }
    .menu__body._active {
        left: 0;
    }
    .menu__list {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }
    .menu__link {
        font-size: 24px;
    }
    .button_header {
        font-size: 18px;
    }
    .menu__icon {
        z-index: 5;
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
        margin: 0px 0px 0px 10px;
    }
    .menu__icon span,
    .menu__icon::before,
    .menu__icon::after {
        left: 0;
        position: absolute;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: #484848;;
    }
    .menu__icon::before,
    .menu__icon::after {
        content: "";
    }
    .menu__icon::before {
        top: 0;
    }
    .menu__icon::after {
        bottom: 0;
    }
    .menu__icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }
    .menu__icon._active span{
        transform: scale(0) translate(0px, -50%);
    }
    .menu__icon._active::before {
        top: 50%;
        transform: rotate(-45deg) translate(0px, -50%);
    }
    .menu__icon._active::after {
        bottom: 50%;
        transform: rotate(45deg) translate(0px, 50%);
    }
}

@media (max-width: 479.98px) {
    .header__logo {
        font-size: 30px;
    }
}

/* -------------------- */
/* -------------------- */

.main-page {
    background-color: #FFF;
}

.main-page__container {
    padding-top: 220px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.main-page__decor {
}

.decor-main-page {
    display: flex;
    width: 100%;
}

.decor-main-page__item {
    width: 30.5%;
}

.item-decor__bkg-gray {
    background-color: #E0E0E0;
    border-radius: 10px;
}

.item-decor__center {
    display: flex;
    flex: 0 1 39.875%;
    flex-direction: column;
    text-align: center;
    padding: 0 30px;
    justify-content: space-between;
}

.item-decor__center img{
    max-width: 100%;
}

.item-decor__block-text {
    padding: 36px 0;
}

.item-decor__button {
    flex: 0 0 207px;
    margin-top: 19px;
}

.button_decor {
    padding: 20px 60px;
}

.item-decor__photo {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.item-decor__photo img{
    max-width: 100%;
}

.decor-main-page__item h2 {
    font-family: Poppins;
    font-size: 91px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -3.64px;
}

.decor-main-page__item h3 {
    color: #FFF;
    -webkit-text-stroke: 0.4mm #484848;
    font-family: Poppins;
    font-size: 187px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 187px */
    letter-spacing: -10.285px;
}

.decor-main-page__item h4 {
    color: #484848;
    font-family: Poppins;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-page__brands {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    gap: 78px;
}

.brands-main-page__item {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.brands-main-page__item img{
    max-width: 100%;
}

@media (max-width: 1310px) {
    .main-page__container {
        padding-top: 180px;
        padding-bottom: 60px;
    }
    .decor-main-page__item h2 {
        font-size: 73px;
    }
    .decor-main-page__item h3 {
        font-size: 140px;
    }
    .decor-main-page__item h4 {
        font-size: 15px;
    }
    .button_decor {
        padding: 20px 45px;
    }
}

@media (max-width: 991.98px) {
    .main-page__container {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .decor-main-page__item h2 {
        font-size: 54px;
    }
    .decor-main-page__item h3 {
        font-size: 105px;
    }
    .decor-main-page__item h4 {
        font-size: 12px;
    }
    .button_decor {
        font-size: 14px;
    }
    .main-page__brands {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .header__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .main-page__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .main-page__decor > .item-decor__bkg-gray {
        display: none;
    }
    .main-page__decor {
        justify-content: center;
    }
    .item-decor__center {
        flex: 1 1 100%;
        padding: 0;
    }
    .decor-main-page__item h2 {
        font-size: 98px;
    }
    .decor-main-page__item h3 {
        font-size: 160px;
    }
    .decor-main-page__item h4 {
        font-size: 17px;
    }
    .main-page__brands {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 479.98px) {
    .main-page__container {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .decor-main-page__item h2 {
        font-size: 60px;
    }
    .decor-main-page__item h3 {
        font-size: 115px;
    }
    .decor-main-page__item h4 {
        font-size: 12px;
    }
    .main-page__brands {
        margin-top: 40px;
    }
}

/* ============================================= */
/* ============================================= */

.products {
    background-color: #FFF;
}

.products__container {
    padding-top: 220px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
}

.products__title {
}

/* ++++++++++++++++++++++++++++++++++++ */

.title-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.title-page h1 {
    color: #000;
    font-family: Volkhov;
    font-size: 42px;
    line-height: 32px;
    text-transform: capitalize;
}

.title-page__page-path {
    margin-top: 22px;
    display: flex;
    gap: 17px;
}

.title-page__page-path h2 {
    color: #000;
    font-family: Jost;
    font-size: 15px;
    line-height: 22.5px;
}

/* ++++++++++++++++++++++++++++++++++++ */

.products__content {
    display: flex;
}

.content-products__filter {
    display: flex;
    flex-direction: column;
    flex: 0 1 21.27%;
}

.content-products__filter h2 {
    color: #000;
    font-family: Volkhov;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 33px;
}

.content-products__filter h3 {
    color: #000;
    font-family: Volkhov;
    font-size: 18px;
    line-height: 28px;
}

.content-products__filter span {
    color: #8A8A8A;
    font-family: Jost;
    font-size: 16px;
    line-height: 24px; /* 150% */
}

/* ++++++++++++++++++++++++++++++++++++ */

.block-filter {
}

.block-filter__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.block-filter__items-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 18px;
    gap: 10px;
}

.block-filter__items-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* ++++++++++++++++++++++++++++++++++++ */

.size-item {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 16.39px 10px 16.61px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #8A8A8A;
}

/* ============================================= */

.content-products__goods {
    flex: 0 1 78.73%;
    padding-left: 43px;
}

.goods-content {
}

/* -------------------- */

.goods-content__items {
    display: flex;
    flex-wrap: wrap;
    row-gap: 43px;
    column-gap: 29px;
}

.goods-content__items h2 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #000;
    font-family: Volkhov;
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.goods-content__items span {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    line-height: 24px; /* 150% */
}

.item-goods__image img {
    max-width: 100%;
}

.item-goods__add {
    display: inline-block;
    color: #000;
    font-family: Volkhov;
    line-height: 24px;
    border: 1px solid #8A8A8A;
    border-radius: 5px;
    padding: 0 5px;
}

/* -------------------- */

.goods-content__pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-items {
    display: flex;
    align-items: center;
}

.pagination-item {
    display: inline-flex;
    padding: 13px 19px;
    border-radius: 50%;
    color: #484848;
    transition: all 0.3s ease;
}

.pagination-number.active {
    background: #F3F3F3;
}

@media (max-width: 1310px) {
    .goods-content__items {
        column-gap: 93px;
    }
    .goods-content__pagination {
        margin-top: 60px;
    }
}

@media (max-width: 991.98px) {
    .products__container {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .products__title {
        margin-bottom: 65px;
    }
    .goods-content__items {
        justify-content: center;
    }
    .goods-content__pagination {
        margin-top: 40px;
    }
}

@media (max-width: 479.98px) {
    .products__title {
        margin-bottom: 50px;
    }
    .title-page h1 {
        font-size: 36px;
    }
    .title-page__page-path h2 {
        font-size: 13px;
    }
    .content-products__filter h2 {
        font-size: 25px;
    }
    .content-products__goods {
        padding-left: 15px;
    }
    .pagination-item {
    padding: 8px 14px;
    }
}

/* ============================================= */
/* ============================================= */

.shopping-cart {
    background-color: #FFF;
}

.shopping-cart__container {
    padding-top: 220px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}

.shopping-cart__content {
    display: flex;
    flex-direction: column;
}

.shopping-cart__content-titles {
    display: flex;
    padding-bottom: 35px;
    border-bottom: 1px rgba(0, 0, 0, 0.39) solid;
    color: #000;
    font-size: 22px;
    font-family: Volkhov;
    line-height: 32px;
}

.titles-content__item-first {
    flex: 0 1 60%;
}

.titles-content__item {
    flex: 0 1 15%;
    display: flex;
    justify-content: center;
}

.titles-content__item-last {
    flex: 0 1 10%;
    display: flex;
    justify-content: flex-end;
}

.shopping-cart__content-items {
    display: flex;
}

.shopping-cart__content-item {
}

.item-shopping-cart__first {
    flex: 0 1 60%;
}

.item-shopping-cart {
    flex: 0 1 15%;
}

.item-shopping-cart-last {
    flex: 0 1 10%;
}

.item-shopping-cart__value {
    display: flex;
    height: 100%;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 35px;
    border-bottom: 1px rgba(0, 0, 0, 0.39) solid;
}

.item-shopping-cart__value img {
    max-width: 40%;
}

.cart-value {
    color: #000;
    font-family: Volkhov;
    font-size: 22px;
    justify-content: center;
}

.cart-value-last {
    justify-content: flex-end;
}

.cart-value__block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-left: 20px;
}

.cart-value__title {
    max-width: 176px;
    color: #000;
    font-size: 22px;
    font-family: Volkhov;
    text-transform: capitalize;
}

.cart-value__remove {
    color: #8A8A8A;
    font-size: 22px;
    font-family: Poppins;
    text-decoration: underline;
    text-transform: capitalize;
    line-height: 42px;
}

.cart-value__remove:hover {
    color: #3a3a3a;
}

/* -------------------- */

.shopping-cart__checkout {
    display: flex;
    justify-content: flex-end;
}

.checkout-shopping-cart {
}

.checkout-shopping-cart__wrapper {
    width: 50%;
}

.checkout-shopping-cart__subtotal {
    display: flex;
    justify-content: space-between;
    color: #000;
    font-size: 22px;
    font-family: Volkhov;
    margin-top: 60px;
    margin-bottom: 30px;
}

.checkout-shopping-cart__button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
    background: #000;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    color: #FFF;
}

@media (max-width: 991.98px) {
    .shopping-cart__container {
        padding-top: 120px;
    }
    .shopping-cart__title h1 {
        font-size: 36px;
    }
    .shopping-cart__content-titles {
        padding-bottom: 25px;
        font-size: 18px;
    }
    .cart-value__title {
        font-size: 18px;
    }
    .cart-value__remove {
        font-size: 18px;
    }
    .cart-value {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .shopping-cart__container {
        padding-bottom: 60px;
    }
    .shopping-cart__content-titles {
        padding-bottom: 20px;
        font-size: 16px;
    }
    .cart-value__title {
        font-size: 16px;
    }
    .cart-value__remove {
        font-size: 16px;
    }
    .cart-value {
        font-size: 16px;
    }
    .cart-value__block {
        margin-left: 10px;
    }
    .checkout-shopping-cart__button {
        height: 55px;
    }
}

@media (max-width: 479.98px) {
    .shopping-cart__container {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .shopping-cart__content-titles {
        padding-bottom: 10px;
        font-size: 12px;
    }
    .item-shopping-cart__value{
    padding-top: 15px;
    padding-bottom: 15px;
    }
    .cart-value__title {
        font-size: 14px;
    }
    .cart-value__block {
        gap: 0;
    }
    .cart-value__remove {
        font-size: 12px;
    }
    .cart-value {
        font-size: 12px;
    }
    .shopping-cart__checkout {
        justify-content: center;
    }
    .checkout-shopping-cart__subtotal {
        margin-top: 30px;
        font-size: 17px;
    }
}

/* ============================================= */
/* ============================================= */

.checkout {
}

.checkout__container {
    padding-top: 220px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
}

.checkout__title {
    padding-bottom: 45px;
    border-bottom: 1px rgba(0, 0, 0, 0.39) solid;
    margin-bottom: 0;
}

.checkout__content {
    display: flex;
}

.checkout__content-contact {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-right: 30px;
}

.contact-checkout {
}

.contact-checkout__title {
    margin-top: 60px;
    margin-bottom: 60px;
    font-family: Volkhov;
    font-size: 46px;
}

.contact-checkout__form-body {
}

.contact-checkout__fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fields-contact {
}

.fields-contact__field {
}

.form__label {
}

.form__input-checkout {
    width: 100%;
    color: #8A8A8A;
    font-size: 16px;
    font-family: Poppins;
    letter-spacing: 1.1px;
    border: 1px solid #8A8A8A;
    border-radius: 5px;
    padding: 20px;
}

.fields-contact__button {
    height: 60px;
    border-radius: 10px;
    background: #000;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
}

.checkout__content-basket {
    display: flex;
    flex-direction: column;
    background: #F5F5F5;
    width: 50%;
    padding-left: 30px;
}

.basket-content {
}

.basket-content__product-item {
    display: flex;
    margin-top: 60px;
}

.product-basket {
}

.product-basket__image-title {
    display: flex;
    width: 70%;
    align-items: center;
}

.product-basket__image {
    position: relative;
    max-width: 168px;
}

.image-count-decor {
    position: absolute;
    top: -8px;
    right: -3px;
    color: #FFF;
    font-family: Volkhov;
    font-size: 17px;
    z-index: 5;
}

.image-count-decor::after {
    position: absolute;
    content: "";
    background: #FF0606;
    width: 24px;
    height: 24px;
    bottom: -3px;
    left: -8.5px;
    border-radius: 16px;
    z-index: -1;
}

.product-basket__image img{
    max-width: 100%;
}

.product-basket__title {
    color: #000;
    font-family: Volkhov;
    font-size: 18px;
    margin-left: 20px;
}

.product-basket__price {
    display: flex;
    width: 30%;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
}

.basket-content__total {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 50px;
    border-top: 1px rgba(0, 0, 0, 0.39) solid;
}

.total-basket {
}

.total-basket__word {
    color: #000;
    font-family: Volkhov;
    font-size: 18px;
}

.total-basket__number {
    padding-right: 10px;
    color: #000;
    font-family: Volkhov;
    font-size: 18px;
}

@media (max-width: 1310px) {
    .contact-checkout__title {
        font-size: 42px;
    }
    .form__input-checkout {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .checkout__content-contact {
        padding-right: 20px;
    }
    .checkout__content-basket {
        padding-left: 20px;
    }
    .contact-checkout__title {
        font-size: 40px;
    }
    .form__input-checkout {
        font-size: 12px;
    }
    .product-basket__title {
        font-size: 16px;
    }
    .image-count-decor {
        font-size: 14px;
    }
    .image-count-decor::after {
        bottom: -5px;
        left: -8.5px;
    }
    .fields-contact__button {
        height: 55px;
    }
}

@media (max-width: 767.98px) {
    .checkout__container {
        padding-bottom: 30px;
    }
    .checkout__content {
        flex-direction: column;
    }
    .checkout__content-contact {
        width: 100%;
    }
    .checkout__content-basket {
        width: 100%;
    }
    .checkout__content-contact {
        padding-right: 0;
    }
    .checkout__content-basket {
        padding-left: 0;
    }
    .basket-content__total {
        padding-bottom: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 479.98px) {
    .checkout__container {
        padding-top: 120px;
    }
    .checkout__title {
        margin-bottom: 45px;
    }
    .contact-checkout__title {
        margin-top: 0;
        display: flex;
        justify-content: center;
    }
}

/* ============================================= */
/* ============================================= */

.login {
    background-color: #FFF;
}

.login__container {
    padding-top: 220px;
    padding-bottom: 82px;
}

.login-wrapper {
    display: flex;
    width: 100%;
    background: white;
    border-radius: 30px;;
    overflow: hidden;
    border: 1px #DBDBDB solid;
}

.login-image {
    width: 47%;
}

.login-image img{
    max-width: 600px;
    max-height: 900px;
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 53%;
    padding-left: 50px;
    padding-right: 50px;
}

/* --------- */
.login-content__errors {
    font-size: 18px;
    font-family: Volkhov;
    padding-bottom: 80px;
    color: #FF4646;
}

.alert-success {
    color: #9BFF6C;
}
/* --------- */

.login-content__sign-in-with {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.login-content__sign-in-item {
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-family: Poppins;
    letter-spacing: 1.28px;
    border-radius: 8px;
    border: 1px #DBDBDB solid;
}

.login-content__sign-in-item a {
    color: #000;
}

.login-content__title {
    align-self: center;
    color: #838383;
    font-size: 20px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 2.40px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.form__button {
    width: 80%;
    height: 50px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 600;
    letter-spacing: 1.28px;
    transition: background-color 0.3s ease 0s;
}

.form__button:hover {
    background: #7c7c7c;
    cursor: pointer;
}

.login-content__buttons {
    width: 100%;
    align-self: center;
    display: flex;
    flex-direction: column;
}

.button-register {
    background: #FFF;
    color: #5B86E5;
    border-radius: 8px; border: 1px #5B86E5 solid;
    margin-top: 20px;
    box-shadow: none;
}

.button-register:hover {
    background: #5B86E5;
    color: #FFF;
}

.login-content__forget-password {
    align-self: flex-end;
    margin-bottom: 50px;
}

.login-content__forget-password-text {
    color: #5B86E5;
    font-size: 13px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.28px;
}

/* ------------------- */

.login-form {
    width: 100%;
}

.login-form__body {
    display: flex;
    flex-direction: column;
}

.form__item {
    width: 100%;
}

.form__item:not(:last-child) {
    margin-bottom: 40px;
}

.form__input {
    width: 100%;
    color: #9D9D9D;
    font-size: 12px;
    font-family: Poppins;
    line-height: 40px;
    letter-spacing: 1.28px;
    border-bottom: 1px #9D9D9D solid;
}

.form__input:focus {
    outline: none;
}

/* ------------------- */

.register-form {
}

.register-form__body {
    display: flex;
    flex-direction: column;
}

.register-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 20px;
    margin-bottom: 40px;
}

.register-form__item {
    flex: 1 1 250px
}

.login-content__already-have-account {
    align-self: center;
    margin-top  : 30px;
}

.login-content__already-have-account-link {
    color: #5B86E5;
}

@media (max-width: 1310px) {
    .login-form {
        width: 80%;
    }
    .login-image {
        display: none;
    }
    .login-content {
        width: 100%;
        padding-left: 70px;
        padding-right: 70px;
    }
    .login-content__errors {
        width: 80%;
        font-size: 25px;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .login-content__sign-in-with {
        justify-content: space-around;
    }
    .login-content__title {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    .register-form-wrapper {
        column-gap: 100px;
        row-gap: 35px;
        margin-bottom: 50px;
    }
    .login-content__already-have-account {
        margin-top  : 30px;
        margin-bottom: 50px;
    }
    .login-content__buttons {
        width: 80%;
    }
}

@media (max-width: 991.98px) {
    .login-content__errors {
        width: 100%;
        font-size: 22px;
    }
    .login-form {
        width: 100%;
    }
    .login__container {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .login-content__sign-in-with {
        justify-content: space-between;
    }
    .register-form-wrapper {
        column-gap: 30px;
    }
    .login-content__buttons {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .login__container {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    .login-content {
        padding-left: 25px;
        padding-right: 25px;
    }
    .login-content__errors {
        padding-top: 55px;
        padding-bottom: 55px;
        font-size: 18px;
    }
    .register-form-wrapper {
        column-gap: 30px;
    }
    .login-content__sign-in-with {
        justify-content: space-around;
    }
    .login-content__sign-in-item {
        padding: 10px 6px;
        font-size: 12px;
    }
}

@media (max-width: 479.98px) {
    .login__container {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .login-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .login-content__errors {
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 16px;
    }
    .login-content__title {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .login-content__sign-in-with {
        flex-direction: column;
        gap: 20px;
    }
    .register-form-wrapper{
        margin-bottom: 40px;
    }
    .login-content__already-have-account {
        margin-top  : 30px;
        margin-bottom: 30px;
        font-size: 15px;
    }
    .login-content__forget-password {
        margin-bottom: 30px;
    }
    .login-content__forget-password-text {
    font-size: 12px;
    }
}

/* ============================================= */
/* ============================================= */

.email-verification {
}

.email-verification__container {
    padding-top: 300px;
}

.email-verification__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-verification-title {
    font-size: 30px;
    margin-bottom: 20px;
}

.email-verification-link {
    font-size: 20px;
}

@media (max-width: 991.98px) {
    .email-verification__container {
        padding-top: 200px;
    }
}

@media (max-width: 767.98px) {
    .email-verification__container {
        padding-top: 180px;
    }
}

@media (max-width: 479.98px) {
    .email-verification__container {
        padding-top: 160px;
    }
    .email-verification-title {
        font-size: 22px;
    }
}

/* ============================================= */
/* ============================================= */

.profile {
    background-color: #FFF;
}

.profile__container {
    padding-top: 220px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
}

.profile__title {
    color: black;
    font-size: 22px;
    font-family: Volkhov;
    text-transform: capitalize;
    line-height: 32px;
}

.profile__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile__image {
    margin-bottom: 50px;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.profile-form {
    max-width: 660px;
}

.profile-form__body {
}

.profile-form__wrapper {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.profile-form__item {
}

.profile-form__label {
    font-size: 18px;
    line-height: normal;
    color: #484848;
}

.profile-form__button {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: black;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 1.28px;
    transition: background-color 0.3s ease 0s;
}

@media (max-width: 991.98px) {
    .profile__container {
        padding-top: 160px;
    }
}

@media (max-width: 767.98px) {
    .profile__container {
        padding-top: 140px;
    }
}

@media (max-width: 479.98px) {
    .profile__container {
        padding-top: 120px;
    }
}

/* ============================================= */
/* ============================================= */

.orders__container {
    padding-top: 220px;
}

.orders__title {
}

.orders__table-container {
}

.orders__table {
    width: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 50px;
}

.orders__total {
    font-size: 30px;
    margin-top: 30px;
    float: right;
}

table, td, th {
    border-bottom: 1px solid #8A8A8A;
    border-collapse: collapse;
}

td > a {
    color: #000;
}

@media (max-width: 1310px) {
    .orders__total {
        font-size: 26px;
    }
}

@media (max-width: 991.98px) {
    .orders__container {
        padding-top: 160px;
    }
    .orders__total {
        font-size: 23px;
    }
}

@media (max-width: 767.98px) {
    .orders__container {
        padding-top: 140px;
    }
    .orders__table {
        font-size: 16px;
    }
    .orders__total {
        font-size: 20px;
    }
}

@media (max-width: 479.98px) {
    .orders__title {
        margin-bottom: 60px;
    }
    .orders__table {
        font-size: 12px;
    }
    .orders__total {
        font-size: 18px;
    }
}
