html, body{
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

header{
    width: 100%;
    background-color: #131313;
}

.hover-trans{
    cursor: pointer;
    opacity: 1;
    transition: opacity .15s;
}

.hover-trans:hover{
    opacity: 0.7;
    transition: opacity .15s;
}

.mt5{
    margin-top: 5px;
}

.mt10{
    margin-top: 10px;
}

.mt15{
    margin-top: 15px;
}

.mt20{
    margin-top: 20px;
}

.mb5{
    margin-bottom: 5px;
}

.mb10{
    margin-bottom: 10px;
}

.mb15{
    margin-bottom: 15px;
}

.mb20{
    margin-bottom: 20px;
}

.mb30{
    margin-bottom: 30px;
}

.mb40{
    margin-bottom: 40px;
}

.mb50{
    margin-bottom: 50px;
}

.bg-grey{
    background-color: #131313;
}

.flex{
    display: flex;
}

.flex-center{
    display: flex;
    justify-content: center;
}

.flex-between{
    display: flex;
    justify-content: space-between;
}

.opacity-trans{
    opacity: 1;
    transition: opacity .15s;
    cursor: pointer;
}

.opacity-trans:hover{
    opacity: 0.6;
    transition: opacity .15s;
}

a, .link{
    color: #ececec;
    text-decoration: none;
    opacity: 1;
    transition: opacity .15s;
}

a:hover{
    color: #ececec;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity .15s;
}

.header-container{
    min-height: 100px;
}

.border-temp{
    border: 2px solid #c2c2c2;
}

.social-media-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.container-dropdown{
    position: absolute;
    margin-top: -16px;
    width: 50px;
    right: 0;
    /*height: 33px;*/
    background-color: #131313;
    overflow: hidden;
    cursor: pointer;
    z-index: 2000;
}

.container-dropdown__item{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 29px;
}

.container-dropdown a{
    display: none;
}

.container-dropdown.show-class a{
    display: flex;
}

.basket{
    position: absolute;
    margin-top: -15px;
    right: 0;
}

.basket-icon{
    position: relative;
}

.basket-icon span{
    position: absolute;
    display: inline-block;
    top: -8px;
    left: 26px;
    padding: 0 3px;
    text-align: center;
    color: #ececec;
    background-color: #aa1719;
}

.basket .basket-container{
    position: relative;
    display: none;
}

.basket.show-class .basket-container{
    display: block;
}

.basket-list{
    position: absolute;
    width: 350px;
    right: 0;
    top: 67px;
    padding: 15px 15px;
    box-sizing: border-box;
    background-color: #dad8d9;
    z-index: 2000;
}

.basket-product{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.basket-product:last-child{
    margin-bottom: 0;
}

.basket-product-img{
    display: block;
    width: 90px;
    position: relative;
}

.basket-product-img img{
    width: 90px;
    height: 90px;
}

.basket-product__delete{
    width: 24px;
    height: 16px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: -8px;
    left: -10px;
    color: #ececec;
    background-color: #aa1719;
    z-index: 1000;
}

.basket-product-description,  .basket-product-description:hover{
    display: flex;
    flex-direction: column;
    width: 210px;
    color: #131313;
}

.basket-product-title{
    line-height: 16px;
}

.basket-product-price{
    font-weight: bold;
    text-align: right;
}

.old-price{
    text-decoration: line-through;
    font-weight: 100;
}

.basket-summary{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    border-top: 1px solid #131313;
}

.basket-summary-price{
    width: 210px;
    padding: 2px 0;
    text-align: center;
    font-weight: bold;
}

.basket-summary-price.old-price{
    padding: 0;
    text-decoration: line-through;
    font-weight: 100;
}

.basket-summary-price.discount-price{
    padding: 0;
    font-weight: 100;
}

.basket-summary-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 34px;
    background-color: #aa1719;
    color: #ececec;
    font-weight: bold;
    margin-top: 4px;
}

nav{
    height: 43px;
    background-color: #dad8d9;
}

.navbar-expand-md .navbar-nav .nav-link{
    padding-left: 12px;
    padding-right: 12px;
    font-size: 18px;
    text-transform: uppercase;
    color: #131313;
}

.nav-link:hover{
    color: #131313;
}

.navbar-menu-btn{
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 42px;
    height: 33px;

    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navbar-menu-btn span{
    width: 100%;
    height: 7px;
    background-color: #ffffff;



    display: block;
    position: absolute;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navbar-menu-btn span:nth-child(1) {
    top: 0;
}

.navbar-menu-btn span:nth-child(2),.navbar-menu-btn span:nth-child(3) {
    top: 12px;
}

.navbar-menu-btn span:nth-child(4) {
    top: 24px;
}

.navbar-menu-btn.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navbar-menu-btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-menu-btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar-menu-btn.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.main-background{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 143px);background-color: #cccccc;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-background a{
    margin-top: 100px;
    padding: 12px 36px;
    border: 3px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.carousel-item{
    height: 400px;
}

.carousel-item:first-child{
    background-color: red;
}

.carousel-item:nth-child(1){
    background-color: green;
}

.carousel-item:nth-child(2){
    background-color: blue;
}

.carousel-item:nth-child(3){
    background-color: pink;
}

.carousel-item:nth-child(4){
    background-color: orange;
}

.header-title{
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
}

.owl-carousel .product{
    display: flex;
    flex-direction: column;
    cursor: pointer;
    float: left;
}

.owl-carousel .product .container-img img:last-child{
    display: none;
}

.owl-carousel .product:hover .container-img img:first-child{
    display: none;
}

.owl-carousel .product:hover .container-img img:last-child{
    display: block;
}

.container-information a{
    color: #212529;
}

.container-information a:hover{
    opacity: 1;
}

.container-img{
    background-color: #e3e1e2;
}

.container-information{
    margin-top: 5px;
}

.container-information h3{
    font-size: 16px;
    text-align: center;
}

.container-information a.price{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
}

.carousel-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn img{
    margin-bottom: 74px;
}

.main-category{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 380px;
    margin-bottom: 30px;

    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-category a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 100px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;

    border: 3px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 28px;
    line-height: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

.newsletter-form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: #a91718;
}

.newsletter-form h4{
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
}

.input-container{
    display: flex;
    justify-content: space-between;
    width: 410px;
    background-color: #ffffff;
    padding: 4px;
    box-sizing: border-box;
}

.input-container .input-text{
    width: 220px;
    padding-left: 10px;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    outline: 0;
}

.input-container .input-submit{
    width: 152px;
    height: 40px;
    background-color: #131313;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    border: none;
    outline: 0;
}

.footer{
    padding: 40px 0;
}

.footer h4{
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer ul{
    list-style: none;
    padding-left: 0;
}

.footer ul li{
    font-size: 14px;
    color: #ffffff;
}

.footer ul li a{
    text-transform: lowercase;
}

.footer-logotype{
    display: flex;
    justify-content: center;
}

.footer-social-media{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.footer-social-media .social-media-link{
    margin-right: 0;
}



a.back-link{
    display: flex;
    align-items: center;
    color: #131313;
    font-weight: bold;
    font-size: 12px;
    margin-top: 4px;
    margin-right: 15px;
}

a.back-link:hover{
    color: #131313;
}

.back-link i{
    margin-right: 5px;
    transform: rotateZ(-90deg);
}

.breadcrumb-container a,
.breadcrumb-container span,
.breadcrumb-container a:hover
{
    color: #131313;
    font-size: 12px;
}

.category-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 48px;
    text-transform: uppercase;
}

.count-products{
    margin-left: 10px;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: normal;
}


.sortable-list{
    display: flex;
    flex-direction: column;
    text-align: right;
    min-width: 215px;
    position: absolute;
    right: 35px;
    padding: 12px 16px;
    box-sizing: border-box;
    z-index: 1200;
    border: 2px solid transparent;
}

.sortable-list.show-class{
    background-color: rgba(256, 256, 256, 0.9);
    border: 2px solid #131313;
}

.sortable-list.show-class i{
    transform: rotateZ(-180deg);
}

.sortable-list span{
    font-weight: bold;
    margin-bottom: 6px;
    outline: 0;
    -webkit-user-select: none;
}

.sortable-list.show-class a{
    display: inline;
}

.sortable-list a{
    display: none;
    text-align: left;
    font-size: 14px;
    color: #131313;
}

.sortable-list a:hover{
    color: #131313;
}

.product-item{
    margin-bottom: 30px;
}

.product-image a.link-image{
    display: block;
    position: relative;
}

.product-image a.link-image:hover{
    opacity: 1;
}

.product-image a.link-image img{
    width: 100%;
    height: auto;
}

.product-image a.link-image img:nth-child(2){
    display: none;
}

.product-item:hover .product-image a.link-image img:first-child{
    display: none;
}

.product-item:hover .product-image a.link-image img:nth-child(2){
    display: block;
}

.product-image a.link-image .product-label{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 11px;
    font-weight: bold;
}

.product-image a.link-image .product-label.promotion{
    background-color: #cba675;
}

.product-image a.link-image .product-label.sold-out{
    background-color: #b1181a;
}

.product-image a.link-image .product-label.new-prod{
    background-color: #131313;
}

a.product-text{
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    color: #131313;
}

a.product-text:hover{
    color: #131313;
}

.product-text .title{
    width: 60%;
    font-size: 14px;
    line-height: 16px;
    margin-top: 3px;
}

.product-text .price{
    display: flex;
    flex-direction: column;
    width: 40%;
    text-align: right;
    font-weight: bold;
}


.product-text .price .old-amount{
    text-decoration: line-through;
    font-weight: normal;
    font-size: 13px;
}

h2.product-title{
    height: 80px;
    font-size: 36px;
    font-weight: bold;
    line-height: 32px;
}

.price-container.price-xl{
    height: 80px;
}

.price-container .price-text{
    text-transform: uppercase;
}

.price-container .price{
    font-weight: bold;
}

.price-container .old-amount{
    font-weight: normal;
    text-decoration: line-through;
}

.container-information .old-amount{
    font-weight: normal;
    text-decoration: line-through;
    font-size: 13px;
}

.price-container.price-xs{
    display: none;
}

.product-main-image{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.arrow-product{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 900;
}

.product-size{
    display: flex;
    flex-direction: column;
    font-size: 18px;
    margin-bottom: 30px;
}

.product-size .choose-size{
    font-weight: bold;
    text-transform: uppercase;
}

.product-size .choose-text{
    text-transform: uppercase;
}

.product-sizes{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product-sizes .product-one-size{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    height: 26px;
    margin-right: 15px;
    padding-left: 5px;
    padding-right: 5px;
    border: 2px solid #131313;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.product-sizes .product-one-size.choose{
    border: 2px solid #9d1719;
    background-color: #9d1719;
    color: #ffffff;
}

.product-one-size input{
    display: none;
}

.product-sizes .product-one-size.sold-out{
    border: 2px solid #dad8d9;
    background-color: #dad8d9;
    cursor: no-drop;
    opacity: 0.5;
}

.product-quantity{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.product-quantity .choose-size{
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.counter-product{
    display: flex;
    justify-content: space-between;
    width: 180px;
}

.counter-product .counter-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 26px;
    border: 2px solid #131313;
    background-color: #131313;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
}

.counter-product .counter{
    width: 50px;
    height: 26px;
    border: 2px solid #131313;
    outline: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.product-basket{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.product-add-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 254px;
    height: 60px;
    background-color: #9d1719;
    color: #ffffff;
    font-weight: bold;
    outline: 0;
    -webkit-user-select: none;
}

.product-basket-link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #131313;
}

.basket-information{
    display: block;
    height: 24px;
    text-align: center;
    color: #9d1719;
    font-weight: bold;
    margin-bottom: 0;
    visibility: hidden;
}

.basket-information.show{
    visibility: visible;
}


.basket-information span{
    display: none;
}

.similar-products{
    margin-top: 30px;
}

.similar-products__title{
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.similar-product{
    display: flex;
    margin-bottom: 15px;
}

.similar-product a.similar-product__images{
    display: block;
    width: 90px;
    margin-right: 8px;
}

.similar-product a.similar-product__images:hover{
    opacity: 1;
}

.similar-product a.similar-product__images img{
    width: 90px;
}

.similar-product a.similar-product__images img:nth-child(2){
    display: none;
}

.similar-product:hover a.similar-product__images img:first-child{
    display: none;
}

.similar-product:hover a.similar-product__images img:nth-child(2){
    display: block;
}

.similar-product__text{
    display: flex;
    flex-direction: column;
    color: #131313;
}

a.similar-product__text:hover{
    color: #131313;
}

.similar-product__text--title{
    line-height: 16px;
    font-size: 14px;
}

.similar-product__text--price{
    margin-top: 4px;
    font-weight: bold;
}

.similar-product__text--price .old-amount{
    font-weight: normal;
    text-decoration: line-through;
    font-size: 13px;
}

.tabs-container{
    display: flex;
    margin-bottom: 12px;
}

.tabs-container span{
    display: block;
    font-weight: bold;
    margin-right: 25px;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: border-bottom .15s;
    text-transform: uppercase;
}

.tabs-container span:hover{
    border-bottom: 2px solid #131313;
    transition: border-bottom .15s;
}

.tabs-container span i{
    margin-left: 3px;
}

.tabs-container span.show-class{
    color: #a91718;
    border-bottom: 2px solid #a91718;
}

.tabs-container span.show-class i{
    transform: rotateZ(-180deg);
}

.tabs-text .tabs-container-xs{
    display: none;
}

.tabs-text__container{
    margin-bottom: 15px;
}

.tabs-text__container .long-text{
    display: none;
}

.tabs-text__container.show-class .long-text{
    display: block;
}

.tabs-text__container.show-class .long-text a{
    color: #131313;
    font-weight: bold;
}


.tabs-text__container.show-class .long-text a:hover{
    color: #131313;
}

.tabs-text__container.show-class .size-photo-product{
    width: 100%;
    height: auto;
}

.basket-product-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a.main-basket-product-img{
    width: 160px;
    height: 160px;
    margin-right: 30px;
}

.main-basket-product-img img{
    width: 160px;
    height: 160px;
}

.main-basket-product-img img:nth-child(2){
    display: none;
}


.basket-one-product:hover .main-basket-product-img img:first-child{
    display: none;
}

.basket-one-product:hover .main-basket-product-img img:nth-child(2){
    display: block;
}

.basket-product-container__title a{
    color: #131313;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

.basket-product-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.basket-product-details .size {
    display: flex;
    align-items: center;
    width: 190px;
}

.basket-product-details .size .size-title{
    display: inline-block;
    text-transform: uppercase;
    margin-right: 15px;
}

.basket-product-details .size .size-choose{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e3e1e2;
    font-weight: bold;
    text-align: center;
    flex: 1 1 auto;
    padding: 6px;
    margin-right: 20px;
    width: 100%;
}

.basket-product-details .counter{
    display: flex;
    align-items: center;
    width: 280px;
}

.basket-product-details .counter .quantity{
    display: inline-block;
    margin-right: 15px;
    text-transform: uppercase;
}

.basket-product-details .counter .counter-container{
    display: flex;
    justify-content: space-between;
    width: 180px;
}

.basket-product-details .counter .counter-container .btn-counter{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 29px;
    background-color: #131313;
    color: #e3e1e2;
    font-size: 18px;
    font-weight: bold;
}

.basket-product-details .counter .counter-container input.counter-number{
    width: 50px;
    height: 28px;
    border: 1px solid #a91718;
    color: #131313;
    text-align: center;
    outline: 0;
}

.basket-product-details .price{
    display: flex;
    align-items: center;
    width: 190px;
    text-transform: uppercase;
}

.basket-product-details .price .price-title{
    display: inline-block;
    margin-right: 15px;
}

.basket-product-details .price .amount{
    font-weight: bold;
}


.basket-product-details .price .promotion-amount{
    display: flex;
    flex-direction: column;
}

.basket-product-details .price .promotion-amount .old-amount{
    /*font-size: 12px;*/
    font-weight: 100;
    text-decoration: line-through;
}

.basket-product-details .delete-product{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 28px;
    color: #ffffff;
    font-weight: bold;
    background-color: #a91718;
}

.title-xs{
    display: none;
}

.basket-one-product{
    margin-bottom: 15px;
}

.background-price{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
    padding-right: 30px;
    box-sizing: border-box;
    font-weight: bold;
    background-color: #e3e1e2;
}

.background-price .text{
    display: inline-block;
    margin-right: 10px;
}

.price-order-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-weight: bold;
    background-color: #a91718;
}

.contact-title{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact-text{
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.contact-text a{
    color: #131313;
    text-transform: none;
}

.contact-text a:hover{
    color: #131313;
}

.contact-text span{
    font-weight: bold;
}

.contact-text .title{
    display: inline-block;
    width: 80px;
}

.container-input{
    display: flex;
    flex-direction: column;
}

.container-input.one-link{
    align-items: flex-start;
    justify-content: center;
}

.container-input.one-link a{
    color: #000000;
}

.container-input.promo-info{
    justify-content: flex-end;
    padding-bottom: 8px;
}

.error-promo-info{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.container-input input,
.container-input select,
.container-input textarea{
    padding-left: 10px;
    border: 2px solid #a91718;
    outline: 0;
    resize: none;
}

.container-input input,
.container-input select{
    height: 40px;
    margin-bottom: 8px;
}

.container-input textarea{
    height: 200px;
}

.container-submit{
    display: flex;
    justify-content: flex-end;
}

.container-submit button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 60px;
    margin-top: 15px;
    margin-bottom: 30px;
    border: 2px solid #a91718;
    background-color: #a91718;
    color: #e3e1e2;
    font-weight: bold;
}

.error-msg{
    margin-left: 20px;
    color: #a91718;
    border-left: 1px solid #a91718;
}


.success-info{
    color: #008b07;
    font-size: 22px;
}

.error-info{
    color: #a91718;
    font-size: 22px;
}

.success-msg{
    padding-left: 20px;
    color: #131313;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 1px solid #a91718;
}

.title-order-form{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.two-inputs{
    display: flex;
    justify-content: space-between;
}

.two-inputs .container-input{
    width: 48%;
}

.container-input p.info{
    margin: 0;
    color: #a91718;
    font-size: 13px;
    line-height: normal;
    font-weight: bold;
    text-align: center;
}

.shipment-loader{
    display: none;
}

.shipment_possibilities{
    display: none;
}

.loader-gif-shipment img{
    width: 20px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    float: right;
}

.container-checkbox{
    font-weight: bold;
}

.container-checkbox .checkbox{
    margin-right: 5px;
}

.container-checkbox a,
.container-checkbox a:hover
{
    color: #131313;
}

.submit-order{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    margin-top: 15px;
    margin-bottom: 30px;
    border: 2px solid #a91718;
    background-color: #a91718;
    color: #ffffff;
    font-weight: bold;
}

.submit-login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    margin-top: 15px;
    margin-bottom: 5px;
    border: 2px solid #a91718;
    background-color: #a91718;
    color: #ffffff;
    font-weight: bold;
}
.submit-forgot-password{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-top: 32px;
    margin-bottom: 5px;
    border: 2px solid #a91718;
    background-color: #a91718;
    color: #ffffff;
    font-weight: bold;
}

.forget-password{
    color: #000000;
}

.forget-password:hover{
    color: #000000;
}

.order-product{
    margin-bottom: 30px;
}

.order-title{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    margin-top: 65px;
    color: #131313;
    font-size: 18px;
    font-weight: bold;
    background-color: #e3e1e2;
}

.order-product-title {
    text-align: center;
    line-height: 16px;
}

.order-product-title a{
    color: #131313;
    font-weight: bold;
    font-size: 16px;
}

.order-product-title a:hover{
    color: #131313;
}

.order-product-info{
    display: flex;
}

a.order-product-img img{
    width: 90px;
    height: 90px;
    margin-right: 15px;
}

a.order-product-img img:last-child{
    display: none;
}

.order-product:hover a.order-product-img img:last-child{
    display: block;
}


.order-product:hover a.order-product-img img:first-child{
    display: none;
}

.order-product-details{
    width: 100%;
}

.order-product-details .size{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.order-product-details .size .title{
    display: inline-block;
    width: 60px;
}

.order-product-details .size .value{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 25px;
    font-weight: bold;
    background-color: #e3e1e2;
}

.order-product-details .price{
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

.order-product-details .price .title{
    display: inline-block;
    width: 60px;
}

.order-product-details .price .form-request-prices{
    text-align: center;
    width: 160px;
}

.order-product-details .price .value{
    display: inline-block;
    width: 160px;
    text-align: center;
    font-weight: bold;
}

.order-product-details .price .value{
    width: 100%;
}


.order-product-details .price .value.form-request-old-prices{
    font-weight: 400;
    text-decoration: line-through;
}

.order-sum-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    margin-bottom: 15px;
    padding: 0 15px;
    background-color: #e3e1e2;
    font-weight: bold;
}

.form-request-sum-price{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.form-request-sum-price .old-price{
    font-weight: 400;
    text-decoration: line-through;
}

.form-request-sum-price .discount-info{
    font-weight: 400;
}

.order-shipment-price{
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 100%;
    background-color: #e3e1e2;
    margin-bottom: 15px;
}

.order-shipment-price .head-title{
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.order-shipment-price .order-shipment-type{
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
}

.sum_price_box{
    display: flex;
    flex-direction: column;
}

.order-shipment-price .order-shipment-type .value{
    font-weight: bold;
}

.order-shipment-price .order-shipment-type .value.old-price{
    text-decoration: line-through;
    font-weight: normal;
    font-size: 13px;
}

.two-value{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.order-all-price{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 15px;
    margin-bottom: 30px;
    background-color: #131313;
    color: #ffffff;
    font-weight: bold;
}

.payment-text{
    color: #a91718;
    line-height: normal;
}

.payment-text b{
    font-weight: bold;
}

.payment-order-title{
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 90px;
    background-color: #131313;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.payment-one-product{
    display: flex;
    flex: 1 1 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e1e2;
}

.payment-one-product:last-child{
    border-bottom: 1px solid transparent;
    margin-bottom: 30px;
}

.payment-one-product__title{
    display: flex;
    align-items: center;
    width: 400px;
    padding-left: 90px;
}

.payment-one-product__title a{
    color: #131313;
    font-weight: bold;
    line-height: normal;
}

.payment-one-product__title a:hover{
    color: #131313;
}

.payment-one-product__container{
    display: flex;
    justify-content: space-between;
    flex: 1 1 auto;
    padding-right: 15px;
}

.payment-one-product__container .size-quantity{
    display: flex;
    flex-direction: column;
}

.payment-one-product__container .size-quantity .size{
    display: flex;
    align-items: center;
}

.payment-one-product__container .size-quantity .size .title{
    display: inline-block;
    width: 75px;
    margin-right: 15px;
    text-transform: uppercase;
}

.payment-one-product__container .size-quantity .size .value{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    min-width: 60px;
    height: 28px;
    padding: 0 5px;
    background-color: #e3e1e2;
    font-weight: bold;
    text-transform: uppercase;
}

.payment-one-product__container .sum-price-container{
    display: flex;
}

.payment-one-product__container .sum-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 30px;
}

.payment-one-product__container .sum-price .title{
    display: flex;
    align-items: center;
    margin-right: 15px;
    text-transform: uppercase;
}

.payment-one-product__container .sum-price .value{
    font-weight: bold;
}

.payment-sum-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e3e1e2;
    padding-right: 15px;
}

.payment-sum-price .title{
    display: flex;
    align-items: center;
    width: 150px;
    height: 60px;
    padding-left: 30px;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}
.payment-sum-price.title .title.title-promo{
    justify-content: flex-end;
    width: 100%;
}


.payment-sum-price .container-prices span,
.payment-shipment .one-supplier .container-prices span
{
    display: inline-block;
    width: 90px;
    font-size: 12px;
    text-align: right;
}

.payment-sum-price .container-prices span:first-child,
.payment-shipment .one-supplier.choose .container-prices span:first-child
{
    width: 120px;
    font-weight: bold;
    font-size: 16px;
}




.payment-sum-price.title{
    background-color: transparent;
}

.payment-sum-price.title .title{
    width: 250px;
}

.payment-shipment{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #e3e1e2;
}

.payment-shipment.status-page{
    padding-left: 30px;
}

.payment-shipment .one-supplier{
    display: flex;
    justify-content: space-between;
}

.payment-shipment .one-supplier.choose{
    font-weight: bold;
}

.payment-shipment .one-supplier input{
    margin-right: 10px;
}

.payment-sum-price.commission{
    margin-bottom: 15px;
    background-color: #131313;
    color: #ffffff;
}

.payment-sum-price.all-price{
    background-color: #a91718;
    color: #ffffff;
}

.payment-type-title{
    margin-bottom: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.payment-type{
    display: flex;
    justify-content: center;
}

.payment-type .paypal{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.payment-type .or{
    display: none;
}

.payment-type .paypal .title{
    display: inline-block;
    margin-bottom: 4px;
    font-size: 12px;
}

.cancel-order{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    border: 1px solid #a91718;
    text-transform: uppercase;
    font-size: 13px;
}

.cancel-choose{
    display: none;
    width: 150px;
}

.cancel-choose h6{
    margin: 10px auto;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.cancel-choose .choose-btn{
    display: flex;
    justify-content: space-between;
}

.cancel-choose .choose-btn span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 28px;
    text-align: center;
}

.cancel-choose .yes{
    border: 1px solid #a91718;
    text-transform: uppercase;
}

.cancel-choose .no{
    border: 1px solid #a91718;
    background-color: #a91718;
    color: #ffffff;
    text-transform: uppercase;
}


#paypal{
    width: 150px;
    height: 25px;
    background-color: yellow;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance:textfield;
}

.long-text-status a{
    color: #131313;
    font-weight: bold;
}

.long-text-status a:hover{
    color: #131313;
}

a.thanks-order-btn{
    display: block;
    width: 200px;
    margin: 15px auto 30px auto;
    padding: 10px 0;
    text-align: center;
    background-color: #a91718;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

a.thanks-order-btn:hover{
    color: #ffffff;
}

.payment-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-container img{
    margin-left: 8px;
    cursor: pointer;
    transition: opacity .15s;
}

.payment-container img:hover{
    opacity: 0.6;
    transition: opacity .15s;
}

.paypal-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
}

.product-image{
    position: relative;
}

.other-product{
    display: none;
    position: absolute;
    padding: 2px;
    width: 100%;
    background-color: #ffffff;
    bottom: 0;
}

.other-product .box-title{
    font-size: 12px;
}

.other-product .box-products{
    display: flex;
    width: 100%;
}

.other-product .box-products a img{
    width: 40px;
    height: auto;
    margin-right: 4px;
}


.other-product .box-products a.other-products{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #9c9a9b;
    border: 1px solid #9c9a9b;
}

.thumbnails-container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 524px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */

}

.thumbnails-container::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.product-arrow-thumb{
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: rgba(218, 216, 217, 0.8);
    cursor: pointer;
}

.product-arrow-thumb.top{
    top: 0;
}

.product-arrow-thumb.bottom{
    bottom: 0;
}

.thumbnails-container .one-product-img{
    width: 100%;
    height: auto;
    cursor: pointer;
}

.thumbnail-container{
    position: relative;
}

.thumbnail-container img{
    width: 100%;
    height: auto;
}

.thumbnail-container .zoom-box{
    display: none;
    position: absolute;
    left: 102%;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: #ffffff;
}

.img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 100px;
    height: 100px;
}


.like-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #9c9a9b;
    font-size: 22px;
    border: 1px solid #9c9a9b;
    opacity: 1;
    transition: opacity .15s;
    cursor: pointer;
}

.like-btn.active{
    border: 2px solid #9c9a9b;
}

.like-btn:hover{
    opacity: 0.7;
    transition: opacity .15s;
}

.product-name{
    font-size: 26px;
    font-weight: 900;
}

.product-group-title{
    margin-bottom: 4px;
    font-weight: 900;
    font-size: 14px;
}

.group-products{
    display: flex;
    flex-wrap: wrap;
}

.one-group-product{
    margin-right: 5px;
}

.group-products .one-group-product:nth-child(n+5){
    display: none;
}

.group-products.active .one-group-product:nth-child(n+5){
    display: inline-block;
}

.other-products{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #9c9a9b;
    font-size: 22px;
    border: 1px solid #9c9a9b;
    cursor: pointer;
    opacity: 1;
    transition: opacity .15s;
}

.other-products:hover{
    opacity: 0.7;
    transition: opacity .15s;
}

.product-thumbnails-carousel .owl-dots{
    display: none;
}

.choose-size-container{
    position: relative;
    margin-top: 10px;
    border: 1px solid #9c9a9b;
    box-sizing: border-box;
    cursor: pointer;
}

.choose-size-container .sizes-list{
    display: none;
}

.choose-size-container.active .sizes-list{
    position: absolute;
    background-color: #ffffff;
    display: block;
}

.choose-size-container.active .size-head .fa-chevron-down{
    transform: rotateZ(-180deg);
}

.choose-size-container:hover,.choose-size-container.active {
    color: #000000;
    border: 1px solid #000000;
}

.size-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #8f8d8e;
}

.choose-size-container.border-active {
    border: 1px solid #000000;
}

.choose-size-container.border-active .size-head{
    color: #000000;
}

.sizes-list{
    width: calc(100% + 2px);
    padding: 0;
    margin: 0;
    margin-left: -1px;
    list-style: none;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    z-index: 1000;
}

.sizes-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 14px;
    box-sizing: border-box;
    border-bottom: 1px solid #9c9a9b;
}

.sizes-list li:first-child{
    border-top: 1px solid #000000;
}


.sizes-list li:last-child{
    border-bottom: unset;
}

.sizes-list li:hover{
    background-color: #f7f5f6;
}

.sizes-list li .one-size-title{
    font-weight: 900;
}

.sizes-list li .one-size-title.quantity-zero{
    opacity: 0.5;
}

.sizes-list li .last-size{
    font-size: 12px;
}

.sizes-list li .notify-me{
    font-size: 14px;
    color: #b1181a;
    text-align: right;
}

.sizes-list li .notify-me:hover{
    font-weight: 900;
}

.modal{
    z-index: 2500;
}

.my-modal .modal-content{
    border-radius: unset;
    border-color: #9c9a9b;
}

.error-modal{
    color: #b1181a;
}

.notify-btn{
    padding: 6px;
    color: #ffffff;
    background-color: #9d1719;
}

.edit-account-btn{
    padding: 6px;
    color: #ffffff;
    background-color: #9d1719;
    border: 1px solid #9d1719;
}

.notify-btn.success-btn{
    display: none;
    color: #9d1719;
    background-color: #ffffff;
    border: 1px solid #9d1719;
}

.notify-success-msg{
    display: none;
    margin-bottom: 0;
    color: #467300;
}

.quantity-container{
    display: flex;
    margin-top: 10px;
}

.quantity-container .counter{
    flex: 1 1 auto;
    height: 40px;
    border: 1px solid #000000;
    text-align: center;
}

.quantity-container .counter-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    font-size: 26px;
    border: 1px solid #000000;
    outline: none;
}

.add-basket-error{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    margin-top: 4px;
    text-align: center;
}

.add-basket-error .error{
    color: #ff0900;
}

.add-basket-error .success{
    color: #b1181a;
}

.add-to-basket-container{
    width: 100%;
    margin-top: 4px;
}

.add-to-basket-btn{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #9d1719;
}

.basket-link-container{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
}

.basket-link-btn{
    color: #000000;
    font-weight: 900;
}

.basket-link-btn:hover{
    color: #000000;
}

.checked{
    color: #000000;
    font-weight: 900;
}

.tabs-list .card{
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
}

.tabs-list .card-header{
    padding: 16px;
    border-top: 1px solid #000000;
    border-bottom: none;
    background-color: #ffffff;
    font-size: 14px;
}

.tabs-list .card-header .btn{
    padding: 0;
    outline: none;
    border: none;
}

.tabs-list .card-header .btn:active,
.tabs-list .card-header .btn:focus{
    outline: none;
    border: none;
    box-shadow: none;
}

.tabs-list .card-header .tab-btn.collapsed i{
    transform: rotateZ(-180deg);
}

.tabs-list .card-body{
    padding: 0 16px 20px 16px;
}

.sticky-container{
    display: flex;

    position: -webkit-sticky;
    position: sticky;
    top: -1px;
}

.old-amount-product{
    font-size: 16px;
    text-decoration: line-through;
}

.discount-message{
    min-height: 40px;
    margin-top: 4px;
    color: #b1181a;
}

.basket-box{
    width: 100%;
}

.loader-gif{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.loader-gif img{
    width: 50px;
    height: auto;
}

.promotions-prices .old-amount{
    text-decoration: line-through;
    font-weight: 400;
}

.discount-info{
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
}

.price_with_discount{
    display: flex;
    flex-direction: column;
}

.payment-one-product__container .sum-price .price_with_discount  .value.original_price{
    text-decoration: line-through;
    font-weight: 200;
    font-size: 13px;
}

.container-prices .price_with_discount{
    display: flex;
    flex-direction: column;
}

.container-prices .price_with_discount .original_price{
    width: auto;
    text-decoration: line-through;
    font-weight: 200;
    font-size: 13px;
}

.original_price{
    width: auto;
    text-decoration: line-through;
    font-weight: 200;
    font-size: 13px;
}

.sold-out-badge-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sold-out-badge-container .notify-me{
    color: #b1181a;
    font-size: 14px;
    cursor: pointer;
}

.sold-out-badge-container .notify-me:hover{
    font-weight: 900;
}

.sold-out-badge{
    padding: 5px;
    font-weight: bold;
    background-color: #b1181a;
    color: #ffffff;
}

.user-nav-bg{
    z-index: 4100;
    background-color: #dad8d9;
}

.user-nav{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0 -30px 0 0;
}

.user-nav li{
    padding: 0 15px;
}

.user-nav li a,
.user-nav li span{
    font-size: 13px;
    color: #000000;
}

.login-nav{
    position: relative;
}

.user-sub-nav{
    display: none;
    position: absolute;
    width: 100%;
    right: 0;
    margin: 0 15px 0 0;
    padding: 8px 0;
    background-color: #dad8d9;
    list-style: unset;
    z-index: 4100;
}

.open .user-sub-nav{
    display: block;
}

.open .hover-trans i{
    transform: rotateZ(-180deg);
}

.user-sub-nav li{
    text-align: right;
    padding: 0 15px;
}

.orders-table-content{
    display: flex;
    justify-content: center;
}

.orders-table-content table,
.orders-table-content table th,
.orders-table-content table td{
    border: 1px solid black;
    border-collapse: collapse;
}

.paginate-orders{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.paginate-style .page-item.active .page-link{
    background-color: #aa1719;
    border-color: #aa1719;
}

.register-or-buy-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 32px;
}

.register-or-buy-container .register-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 40px;
    margin-bottom: 10px;
    background-color: #aa1719;
    color: #ffffff;
    font-weight: 900;
}

.register-or-buy-container .buy-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 40px;
    margin-top: 10px;
    border: 1px solid #aa1719;
    color: #aa1719;
    font-weight: 900;
}

.one-edit-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #000000;
}

.one-edit-container:last-child{
    border-bottom: unset;
}

.one-edit-container .data{
    font-size: 18px;
}

.one-edit-container .edit-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 0 3px;
    height: 25px;
    background-color: #aa1719;
    font-size: 13px;
    color: #ffffff;
}

.search-container{
    width: 70%;
    display: flex;
    justify-content: center;
}

.search-container .input-search{
    width: 100%;
    height: 30px;
    outline: 0;
    border: none;
    padding-left: 5px;
}

.search-container .btn-search{
    width: 30px;
    height: 30px;
    border: none;
}

.nav-info-container{
    background-color: #3eab3e;
    padding: 8px 0;
}

.nav-info{
    text-align: center;
    color: #ffffff;
}

.modal{
    z-index: 5000;
}


@media only screen and (max-width: 1199px) {
    .main-background a{
        font-size: 36px;
    }

    .product-add-btn{
        width: 210px;
    }

    .basket-product-details .size,
    .basket-product-details .counter,
    .basket-product-details .price{
        flex-direction: column;
    }

    .basket-product-details .size .size-title,
    .basket-product-details .counter .quantity,
    .basket-product-details .price .price-title{
        margin-right: 0;
    }

    .basket-product-details .size{
        min-width: 100px;
        width: auto;
    }

    .basket-product-details .counter{
        width: 205px;
    }

    .payment-one-product__container .sum-price-container{
        flex-direction: column;
        justify-content: center;
    }

    .thumbnails-container{
        height: 433px;
    }



}





@media only screen and (max-width: 991px) {
    .navbar-expand-md .navbar-nav .nav-link{
        padding-left: 7px;
        padding-right: 7px;
        font-size: 16px;
    }

    .main-background a{
        font-size: 24px;
    }

    .main-category a {
        width: 270px;
        height: 100px;
        padding: 20px;
        font-size: 22px;
        line-height: 32px;
    }

    .footer-content:nth-child(3),
    .footer-content:nth-child(4){
        margin-top: 25px;
    }

    .category-title{
        font-size: 38px;
    }

    h2.product-title{
        height: auto;
    }

    .price-container.price-xl{
        display: none;
    }

    .price-container.price-xs{
        display: block;
        margin-bottom: 30px;
    }

    .product-basket,
    .basket-information{
        width: 290px;
    }

    .product-sizes .product-one-size,
    .counter-product .counter-btn,
    .counter-product .counter{
        min-width: 100px;
        height: 60px;
    }

    .counter-product .counter-btn{
        font-size: 22px;
    }

    .product-basket, .basket-information{
        width: 405px;
    }

    .counter-product,
    .product-add-btn{
        width: 330px;
    }

    .tabs-text__container{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 15px 0;
    }

    .tabs-container{
        display: none;
    }

    .tabs-text  .tabs-container-xs{
        display: block;
        font-weight: bold;
        margin-right: 25px;
        transition: border-bottom .15s;
        border-bottom: 2px solid transparent;
    }

    .tabs-text  .tabs-container-xs:hover{
        border-bottom: 2px solid #131313;
        transition: border-bottom .15s;
    }

    .tabs-text .show-class  .tabs-container-xs{
        margin-bottom: 15px;
        color: #a91718;
        border-bottom: 2px solid #a91718;
    }

    .tabs-text .tabs-container-xs span{
        text-transform: uppercase;
    }

    .tabs-text .show-class  .tabs-container-xs i{
        transform: rotateZ(-180deg);
    }

    .basket-product-details{
        flex-wrap: wrap;
    }

    .basket-product-details .size,
    .basket-product-details .counter,
    .basket-product-details .price{
        width: 50%;
    }

    .basket-product-details .delete-product,
    .basket-product-container .basket-product-container__title{
        display: none;
    }

    a.main-basket-product-img,
    .main-basket-product-img img{
        width: 220px;
        height: 220px;
    }

    .basket-product-details .price{
        margin-top: 30px;
    }

    .basket-product-container{
        width: 435px;
    }

    .basket-product-container__title-xs{
        margin-bottom: 0;
    }

    .basket-product-container__title-xs a{
        color: #131313;
        font-size: 28px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .basket-one-product{
        flex-wrap: wrap;
        padding-bottom: 30px;
    }

    .border-bottom-product{
        border-bottom: 1px solid #e3e1e2;
    }

    .basket-one-product .title-xs{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .basket-one-product .delete-product-xs{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 28px;
        color: #ffffff;
        font-size: 16px;
        font-weight: bold;
        background-color: #a91718;
    }

    .title-xs{
        display: block;
        margin-bottom: 10px;
    }

    .company-number-xs{
        margin-top: 15px;
    }

    .container-input textarea{
        margin-bottom: 10px;
    }

    .order-title{
        margin-top: 0;
    }

    .payment-one-product{
        flex-direction: column;
    }

    .payment-one-product__title{
        width: 100%;
        margin-bottom: 5px;
        padding-left: 15px;
    }

    .payment-one-product__container{
        padding-left: 15px;
        padding-right: 15px;
    }

    .payment-sum-price .title{
        padding-left: 15px;
    }

    .thumbnails-container{
        height: 510px;
    }

    .thumbnail-container .zoom-box{
        display: none;
    }



}






@media only screen and (max-width: 767px) {
    body {
        padding-top: 100px;
    }

    header {
        position: fixed;
        top: 24px;
        z-index: 4000;
    }

    .basket-list {
        top: 31px;
        right: -25px;
    }

    nav {
        height: calc(100vh - 100px);
    }

    .navbar {
        position: fixed;
        top: 100px;
        display: block;
        width: 450px;
        margin-left: -450px;
        transition: margin-left .15s;

        z-index: 4000;
    }

    .header-container {
        min-height: 120px;
    }

    .navbar.show-class{
        margin-left: 0;
        transition: margin-left .15s;
    }

    .logotype-container img{
        width: 160px;
    }

    .main-background {
        height: 500px;
    }


    .main-background a{
        font-size: 20px;
        padding: 10px 24px;
    }

    .bg-navbar-xs.show-bg{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 100px;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2300;
    }

    .category-title{
        margin-top: 20px;
        font-size: 32px;
    }

    .sortable-list{
        top: 5px;
        padding: 8px 16px;
    }

    h2.product-title{
        height: auto;
        padding-top: 25px;
        font-size: 26px;
    }

    .product-main-image{
        margin-bottom: 0;
    }

    .arrow-product{
        justify-content: space-between;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    .arrow-product img{
        margin-bottom: 24px;
    }

    a.main-basket-product-img,
    .main-basket-product-img img{
        width: 100%;
        height: auto;
    }

    a.main-basket-product-img{
        margin-right: 0;
    }

    .basket-one-product{
        margin-bottom: 30px;
    }

    .basket-one-product .delete-product-xs{
        width: 105px;
        height: 60px;
        font-size: 32px;
    }

    .basket-product-container__title-xs{
        width: 70%;
    }

    .basket-product-container__title-xs a{
        font-size: 24px;
    }

    .basket-product-container{
        width: 100%;
    }

    .main-basket-product-img{
        margin-bottom: 30px;
    }

    .basket-product-details .size{
        align-items: flex-start;
        width: 105px;
    }

    .basket-product-details .size .size-choose{
        width: auto;
        min-width: 105px;
        height: 60px;
        font-size: 23px;
    }

    .basket-product-details .counter{
        align-items: flex-start;
        width: 350px;
    }

    .basket-product-details .counter .counter-container{
        width: 100%;
    }

    .basket-product-details .counter .counter-container .btn-counter,
    .basket-product-details .counter .counter-container input.counter-number{
        width: 105px;
        height: 60px;
    }

    .basket-product-details .size .size-title,
    .basket-product-details .counter .quantity{
        margin-bottom: 12px;
    }

    .basket-product-details .price{
        flex-direction: row;
    }

    .basket-product-details .price .price-title{
        margin-right: 15px;
    }

    .background-price{
        justify-content: center;
        padding-right: 0;
    }

    .price-order-btn{
        margin-top: 15px;
    }

    .payment-sum-price .container-prices span,
    .payment-shipment .one-supplier .container-prices span{
        width: 80px;
    }

    .user-nav-bg{
        width: 100%;
        position: fixed;
        top: 0;
    }

    .search-container{
        width: 95%;
    }

    .nav-info-container{
        margin-top: 44px;
    }

}








@media only screen and (max-width: 575px) {
    body{
        padding-top: 122px;
    }

    .header-container{
        padding: 15px 0;
    }

    .logotype-container{
        margin-bottom: 14px;
    }

    .container-dropdown{
        right: unset;
    }

    .basket{
        position: unset;
        margin-top: 0;
    }

    .basket-container{
        position: absolute;
        display: block;
        right: -360px;
        transition: right .15s;
    }

    .basket.show-class .basket-container{
        right: 0;
        transition: right .15s;
    }

    .basket-list{
        top: 15px;
    }

    .justify-center-xs{
        display: flex;
        justify-content: center;
    }

    nav{
        height: calc(100vh - 122px);
    }

    .navbar{
        width: 360px;
        top: 122px;
        margin-left: -360px;
    }

    .main-background {
        height: 300px;
    }

    .input-container{
        width: 300px;
    }

    .input-container .input-text{
        width: 160px;
    }

    .input-container .input-submit{
        width: 120px;
        font-size: 16px;
    }

    .category-title{
        font-size: 22px;
    }

    .basket-product-details .size{
        width: auto;
    }


    .basket-product-details .size .size-choose,
    .basket-product-details .counter .counter-container .btn-counter,
    .basket-product-details .counter .counter-container input.counter-number,
    .basket-one-product .delete-product-xs{
        width: auto;
        min-width: 85px;
        height: 50px;
    }

    .basket-product-details .counter{
        width: 270px;
    }

    .basket-product-details .counter .counter-container input.counter-number{
        width: 85px;
    }

    .basket-product-details .price{
        flex-direction: column;
    }

    .payment-type{
        flex-direction: column;
        align-items: center;
    }

    .payment-type .paypal{
        margin-right: 0;
    }

    .payment-type .or{
        display: block;
        text-align: center;
        margin-top: 15px;
    }

    .payment-type img{
        width: 150px;
        height: auto;
        margin-top: 15px;
    }

    .cancel-order{
        margin-top: 30px;
    }

    .payment-sum-price{
        padding: 15px 15px 15px 0;
    }

    .payment-sum-price .container-prices{
        display: flex;
        flex-direction: column;
    }

    .payment-sum-price .container-prices span:first-child,
    .payment-shipment .one-supplier.choose .container-prices span:first-child,
    .payment-sum-price .container-prices span,
    .payment-shipment .one-supplier .container-prices span{
        width: auto;
    }

    .payment-shipment .one-supplier{
        margin-bottom: 15px;
    }

    .payment-shipment .one-supplier:last-child{
        margin-bottom: 0;
    }

    .payment-shipment .one-supplier .container-prices{
        display: flex;
        flex-direction: column;
    }


    .payment-container{
        flex-direction: column;
    }

    .user-nav-bg{
        padding: 0 15px;
    }

    .orders-table-content .order-date{
        display: none;
    }

    .logotype-container{
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .nav-info-container{
        margin-top: 87px;
    }

}


@media only screen and (max-width: 455px) {
    .navbar{
        width: 300px;
        margin-left: -300px;
    }

    .main-background{

    }

    .main-background a{
        font-size: 20px;
        padding: 8px 16px;
    }

    .input-container{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 0;
    }

    .input-container .input-text,
    .input-container .input-submit{
        width: 100%;
    }

    .input-container .input-text{
        height: 35px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
    }

    .product-basket, .basket-information{
        width: 100%;
    }

    .product-sizes{
        justify-content: center;
    }

    .counter-product, .product-add-btn{
        width: 215px;
    }

    .counter-product{
        width: 100%;
    }

    .counter-product,
    .counter-product .counter-btn{
        min-width: 90px;
    }

    .basket-product-details .size{
        min-width: 80px;
    }

    .basket-product-details .size .size-choose,
    .basket-product-details .counter .counter-container .btn-counter,
    .basket-product-details .counter .counter-container input.counter-number,
    .basket-one-product .delete-product-xs{
        min-width: 60px;
        height: 40px;
    }

    .basket-product-details .counter {
        width: 195px;
    }

    .basket-product-details .counter .counter-container input.counter-number {
        width: 60px;
    }

    .basket-product-details .price{
        align-items: flex-start;
    }

    .two-inputs{
        flex-direction: column;
    }

    .two-inputs .container-input{
        width: 100%;
    }

    .payment-one-product__container .size-quantity
    {
        width: 40%;
    }

    .payment-one-product__container .sum-price-container{
        width: 60%;
    }

    .payment-one-product__container .size-quantity .size{
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-one-product__container .sum-price{
        flex-direction: column;
        align-items: flex-start;
    }

    .orders-table-content{
        font-size: 12px;
    }

    .submit-forgot-password{
        margin-top: 10px;
    }


}




@media only screen and (max-width: 400px) {

    .order-product-details .size{
        flex-direction: column;
    }

    .order-product-details .size .value{
        width: 70%;
    }

    a.order-product-img img{
        margin-right: 0;
    }








}






























