:root{
    --account-img-size: 5.5vw;
    --product-img-size: 10.4vw;
}
.account-info{
    display: flex;
    align-items: center;
    margin-top: 4.2vw;
    margin-bottom: 2.8vw;
}
.account-info .img{
    min-width: var(--account-img-size);
    max-width: var(--account-img-size);
    height: var(--account-img-size);
    object-fit: cover;
    border-radius: 100%;
    margin-right: 1.7vw;
}
.account-info p{
    margin: 0;
}
.account-info h3{
    font-size: 1.5vw;
    margin: 0;
    font-family: "Prompt-regular"; 
    font-weight: 400;
}
.products-tabs{
	display: flex;
	position: relative;
}
.products-tab{
    padding: 1vw 3.2vw;
	z-index: 7;
    font-size: 1.3vw;
	cursor: pointer;
	transition: .3s;
    font-weight: 800;
}
.products-tab span{
    font-family: "Prompt-light"; 
    font-weight: 800;
}
.products-tabs-line{
    width: 100%;
    position: relative;
    background: #D6D7DB;
    height: 2px;
    margin-bottom: 1.5vw;
}
.products-tabs-line span{
    background: var(--main-color);
    height: 100%;
    display: block;
    transition: .4s;
}
.product-list{
    display: none;
}
.product-list.active{
    display: block;
}
.product-list-item{
    display: flex;
    justify-content: space-between;
    padding: 2.7vw 0;
}
.product-list-item .left-part{
    display: flex;
    align-items: flex-start;
}
.product-list-item .right-part{
    display: flex;
    align-items: flex-start;
}
.product-list-item .num{
    font-size: 1.2vw;
    color: var(--main-color);
    margin-right: 2.6vw;
}
.product-list-item .img{
    min-width: var(--product-img-size);
    max-width: var(--product-img-size);
    height: var(--product-img-size);
    object-fit: cover;
}
.product-list-item .info{
    margin-left: 4.4vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.product-list-item .info .main-text{
    margin: 0;
    font-weight: 800;
}
.product-list-item .info .charactiristiks p{
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.2vw;
}
.product-list-item .info .delete,
.product-list-item .show-changes,
.status,
.product-list-item .date{
    font-size: 1.2vw;
    position: relative;
    text-decoration: none;
    color: var(--main-color);
    width: max-content;
    cursor: pointer;
}
.product-list-item .info .delete:before,
.product-list-item .show-changes:before{
    top: 90%;
    width: 100%;
    left: 0%;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    content: '';
    transition: .3s;
}
.product-list-item .info .delete:hover:before,
.product-list-item .show-changes:hover:before{
    transform: scaleX(0);
}
.product-list-item .show-changes{
    margin-left: 5vw;
    margin-top: .5vw;
}
.status{
    text-transform: capitalize;
    margin-top: .5vw;
    margin-right: 1.5vw;
    min-width: 11vw
}
.product-list-item .date{
    color: #000;
    margin-top: .5vw;
    margin-right: 6vw;
}
.product-list-item .price{
    font-size: 1.3vw;
    font-family: "Arvo-regular"; 
    margin: 0;
    margin-right: 7vw;
    margin-top: .7vw;
}
.product-list-item .quantity{
    margin-top: 0;
}

.product-list-item .total-price{
    margin-right: 0!important;
    margin-left: 3.5vw;
    min-width: 6vw;
    text-align: right;
}

.product-list-item .total-price span{
    color: rgba(0, 0, 0, 0.5);
    font-family: "Prompt-light"; 
}
.order-history .product-list-item{
    display: none;
}
.order-history .product-list-item:nth-child(1),
.order-history .product-list-item:nth-child(2),
.order-history .product-list-item:nth-child(3),
.order-history .product-list-item:nth-child(4){
    display: flex;
}
.order-history.show .product-list-item{
    display: flex;
}
.pay-section{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #D6D7DB;
    padding-top: 3.5vw;
}
.pay-section .notices {
    max-width: 50%;
}
.pay-section .notices .notice{
    margin: 0;
    margin-bottom: .3vw;
}
.pay-section .notices .notice p{
    font-size: 1vw;
    margin-left: .5vw;
}
.pay-section .to-pay{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.pay-section .to-pay h3{
    font-family: "Arvo-regular"; 
    font-size: 1.7vw;
    font-weight: 400;
    margin: 0;
    margin-bottom: 3vw;
}
.pay-section .to-pay h3 span{
    margin-left: 5.3vw;
}
.show-more{
    display: flex;
    align-items: center;
    font-size: 1.2vw;
    text-align: center;
    color: #FC2065;
    text-decoration: none;
    margin-left: 50%;
    transform: translateX(-50%);
    font-family: "Prompt-regular";
    transition: .3s;
    width: max-content;
    margin-top: 5vw;
    cursor: pointer;
}
.show-more .show{
    display: flex;
}
.show-more .hide{
    display: none;
}
.show-more.active .show{
    display: none;
}
.show-more.active .hide{
    display: flex;
}
.show-more:hover{
    padding-left: 1vw;
}
.show-more img{
    width: 1.4vw;
    margin-left: .6vw;
}
@media (min-width: 1920px) {
    :root{
        --account-img-size: 106px;
        --product-img-size: 200px;
    }
    .account-info{
        margin-top: 80px;
        margin-bottom: 54px;
    }
    .account-info .img{
        margin-right: 32px;
    }
    .account-info h3{
        font-size: 29px;
    }
    .products-tab{
        padding: 19px 61px;
        font-size: 25px;
    }
    .products-tabs-line{
        margin-bottom: 29px;
    }
    .product-list-item{
        padding: 52px 0;
    }
    .product-list-item .num{
        font-size: 23px;
        margin-right: 50px;
    }
    .product-list-item .info{
        margin-left: 85px;
    }
    .product-list-item .info .charactiristiks p{
        font-size: 23px;
    }
    .product-list-item .info .delete,
    .product-list-item .show-changes,
    .status,
    .product-list-item .date{
        font-size: 23px;
    }
    .product-list-item .show-changes{
        margin-left: 96px;
        margin-top: 10px;
    }
    .status{
        margin-top: 10px;
        margin-right: 29px;
        min-width: 211px
    }
    .product-list-item .date{
        margin-top: 10px;
        margin-right: 115px;
    }
    .product-list-item .price{
        font-size: 25px;
        margin-right: 135px;
        margin-top: 14px;
    }
    .product-list-item .total-price{
        margin-left: 67px;
        min-width: 115px;
    }
    .pay-section{
        padding-top: 67px;
    }
    .pay-section .notices .notice{
        margin-bottom: 6px;
    }
    .pay-section .notices .notice p{
        font-size: 19px;
        margin-left: 10px;
    }
    .pay-section .to-pay h3{
        font-size: 33px;
        margin-bottom: 58px;
    }
    .pay-section .to-pay h3 span{
        margin-left: 101px;
    }
    .show-more{
        font-size: 23px;
        margin-top: 96px;
    }
    .show-more:hover{
        padding-left: 19px;
    }
    .show-more img{
        width: 27px;
        margin-left: 12px;
    }
}
@media (max-width: 1200px){
    :root{
        --account-img-size: 7vw;
        --product-img-size: 13vw;
    }
    .account-info h3{
        font-size: 1.8vw;
    }
    .product-list-item .num,
    .product-list-item .info .charactiristiks p,
    .product-list-item .info .delete,
    .product-list-item .show-changes, .status, 
    .product-list-item .date,
    .product-list-item .info .main-text,
    .products-tab,
    .show-more{
        font-size: 1.5vw;
    }
    .show-more img{
        width: 1.6vw;
        margin-left: .8vw;
    }
    .product-list-item .info{
        margin-left: 3vw;
    }
    .product-list-item .price{
        font-size: 1.8vw;
    }
    .product-list-item .price,
    .status,
    .product-list-item .date{
        margin-top: .9vw;
    }
}
@media (max-width: 800px){
    :root{
        --account-img-size: 9vw;
        --product-img-size: 17vw;
    }
    .account-info h3{
        font-size: 2.3vw;
    }
    .product-list-item .num,
    .product-list-item .info .charactiristiks p,
    .product-list-item .info .delete,
    .product-list-item .show-changes, .status, 
    .product-list-item .date,
    .product-list-item .info .main-text,
    .products-tab,
    .show-more{
        font-size: 2vw;
    }
    .show-more img{
        width: 2vw;
        margin-left: 1vw;
    }
    .product-list-item .info{
        margin-left: 2vw;
    }
    .product-list-item .num{
        margin-right: 1.5vw;
    }
    .product-list-item .price{
        font-size: 2.2vw;
        margin-right: 4vw;
    }
    .product-list-item .show-changes{
        margin-left: 3vw;
    }
    .product-list-item .total-price{
        min-width: 8vw;
    }
    .product-list-item .price,
    .status,
    .product-list-item .date{
        margin-top: .9vw;
    }
}
@media (max-width: 500px){
    :root{
        --account-img-size: 18vw;
        --product-img-size: 35vw;
    }
    .account-info .img{
        margin-right: 4vw;
    }
    .account-info h3{
        font-size: 4.5vw;
        margin-bottom: 1vw;
    }
    .account-info{
        margin-top: 8vw;
        margin-bottom: 6vw;
    }
    .product-list-item{
        flex-direction: column;
        padding: 7vw 0;
    }
    .product-list-item .right-part{
        justify-content: space-between;
        margin-top: 8vw;
        align-items: center;
    }
    .product-list-item .quantity{
        margin-bottom: 0;
    }
    .product-list-item .num,
    .product-list-item .info .charactiristiks p,
    .product-list-item .info .delete,
    .product-list-item .show-changes, .status, 
    .product-list-item .date,
    .product-list-item .info .main-text,
    .show-more{
        font-size: 4vw;
    }
    .products-tab{
        font-size: 3vw;
        width: 33.33%;
        padding: 3vw 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .products-tab span{
        margin-left: .8vw;
    }
    .product-list-item .num{
        margin-right: 3.5vw;
    }
    .product-list-item .info{
        margin-left: 5vw;
    }
    .product-list-item .price{
        font-size: 4.5vw;
        margin-top: 2vw;
    }
    .pay-section{
        flex-direction: column;
        padding-top: 6vw;
    }
    .pay-section .notices{
        max-width: unset;
    }
    .pay-section .notices .notice{
        margin-bottom: 3vw;
    }
    .pay-section .notices .notice p{
        font-size: 3.5vw;
    }
    .pay-section .to-pay{
        align-items: flex-start;
        margin-top: 8vw;
    }
    .pay-section .to-pay h3{
        font-size: 4.5vw;
        margin-bottom: 7vw;
    }
    .pay-section .to-pay .main-btn{
        width: 100%;
    }
    .show-more img{
        width: 4vw;
        margin-left: 1.8vw;
    }
}