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

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

.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: #002B4E;
}

.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: #F9D251;
    text-decoration: none;
    opacity: 1;
    transition: opacity .15s;
}

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

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

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

.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: #00487a;
    background-color: #F9D251;
    border-radius: 7px;

}

.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: #00487a;
    color: #F9D251;
    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: #00487a;
    background-color: #F9D251;
    z-index: 1000;
    border-radius: 8px;
}

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

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

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

.basket-summary{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

.basket-summary-price{
    width: 210px;
    padding: 5px 0;
    text-align: center;
    font-weight: bold;
    border-top: 1px solid #002B4E;
}

.basket-summary-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 34px;
    background-color: #F9D251;
    color: #002B4E;
    font-weight: bold;
    border-radius: 17px;
}

.basket-summary-btn:hover{
    color: #002B4E;
}

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

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

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

.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: #F9D251;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-background a{
    margin-top: 100px;
    padding: 12px 36px;
    border: 3px solid #F9D251;
    background-color: rgba(0, 43, 78, 0.8);
    color: #F9D251;
    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;
    color: #002B4E;
}

.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: block;
    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 #F9D251;
    background-color: rgba(0, 43, 78, 0.8);
    color: #F9D251;
    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: #F9D251;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

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

.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;
    color: #002B4E;
}

.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{
    display: block;
    position: relative;
}

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

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

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

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

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

.product-image a .product-label{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    height: 34px;
    position: absolute;
    top: 10px;
    font-weight: bold;
}

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

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

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

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;
    color: #002B4E;
}

.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;
}

.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;
    border-radius: 13px;
}

.product-sizes .product-one-size.choose{
    border: 2px solid #00487a;
    background-color: #00487a;
    color: #F9D251;
}

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

.product-sizes .product-one-size.sold-out{
    border: 2px solid #00487a;
    background-color: #00487a;
    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;
    border-radius: 13px;
}

.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;
    border-radius: 13px;
}

.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: #00487a;
    color: #F9D251;
    font-weight: bold;
    outline: 0;
    -webkit-user-select: none;
    border-radius: 30px;
}

.product-basket-link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #00487a;
    border-radius: 30px;
}

.basket-information{
    display: block;
    height: 24px;
    text-align: center;
    color: #00487a;
    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: #00487a;
    border-bottom: 2px solid #00487a;
}

.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;
    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;
    width: 50px;
    height: 28px;
    background-color: #F9D251;
    font-weight: bold;
    color: #002B4E;
    border-radius: 14px;
}

.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: #002B4E;
    color: #F9D251;
    font-size: 18px;
    font-weight: bold;
    border-radius: 14.5px;
}

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

.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 .delete-product{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 28px;
    color: #002B4E;
    font-weight: bold;
    background-color: #F9D251;
    border-radius: 14px;
}

.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: #F9D251;
    color: #002B4E;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.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: #00487a;
    border-radius: 30px;
}

.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 input,
.container-input select,
.container-input textarea{
    padding-left: 10px;
    border: 2px solid #002B4E;
    outline: 0;
    resize: none;
}

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

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

.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 #00487a;
    background-color: #00487a;
    color: #F9D251;
    font-weight: bold;
}

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

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

.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: #00487a;
    font-size: 13px;
    line-height: normal;
    font-weight: bold;
}

.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 #00487a;
    background-color: #00487a;
    color: #F9D251;
    font-weight: bold;
    border-radius: 30px;
}

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

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

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

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

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

.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: #F9D251;
    color: #002B4E;
    border-radius: 12.5px;
}

.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 .value{
    display: inline-block;
    width: 160px;
    text-align: center;
    font-weight: bold;
}

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

.order-shipment-price{
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 100%;
    background-color: #F9D251;
    color: #002B4E;
    margin-bottom: 15px;
    border-radius: 30px;
}

.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;
}

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

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

.payment-text{
    color: #00487a;
    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: #002B4E;
    color: #F9D251;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
}

.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: #F9D251;
    color: #002B4E;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 14px;
}

.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: #F9D251;
    padding-right: 15px;
    border-radius: 30px;
}

.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: #F9D251;
    border-radius: 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: #002B4E;
    color: #F9D251;
}

.payment-sum-price.all-price{
    background-color: #00487a;
    color: #F9D251;
}

.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 #F9D251;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 25px;
}

.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;
    border-radius: 14px;
}

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

.cancel-choose .no{
    border: 1px solid #F9D251;
    background-color: #F9D251;
    color: #002B4E;
    text-transform: uppercase;
}


/* todo wywalic !!!!!!! */
#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;
}

.header-logo{
    width: 110px;
    height: auto;
}

.header-logo-footer{
    width: 250px;
    height: auto;
}





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

    .product-image a .product-label{
        width: 125px;
        height: 32px;
        top: 47px;
        right: -40px;
    }

    .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;
    }




}





@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: #00487a;
        border-bottom: 2px solid #00487a;
    }

    .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 #F9D251;
    }

    .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: #002B4E;
        font-size: 16px;
        font-weight: bold;
        background-color: #F9D251;
    }

    .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;
    }





}






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

    header{
        position: fixed;
        top: 0;
        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;
    }

    .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;
    }



}








@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;
    }


}


@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;
    }




}




@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;
    }








}






























