html, body{
    height: 100%;
    margin: 0;
}

main{
    flex: 1;
}

footer {
    text-align: center;
}


.container{
    margin: 0 auto;
    max-width: 980px;
}

.wrapper{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-modal{
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.modal-cart{
    position: fixed;
    align-self: center;
    left: 25%;
    right: 25%;
    top: 15%;
    max-width: 680px;
    max-height: 400px;
    overflow-scrolling: auto;
    padding: 20px;
    border-radius: 5px;
    /*opacity: 0;*/
}

@media screen and (max-width: 776px) {
    .modal-cart{
        left: 10px;
        right: 10px;
    }
}


.sticky{
    position: sticky;
    top:0;
    z-index: 2;
}

.fixed{
    position: fixed;
    align-content: center;
}

.z-in3{
    z-index: 3;
}

.row{
    display: inline-flex;
}

.flex{
    display: flex;
}

.table-scroll {
     overflow-x: auto;
     -webkit-overflow-scrolling: touch; /* плавный скролл на мобилках */
 }

.table-scroll table {
    min-width: 600px; /* чтобы таблица не схлопывалась */
    border-collapse: collapse;
}

.align-center{
    margin: 0 auto;
    align-content: center;
    text-align: center;
}

.top20px{
    top: 20px;
}


.right{
    right: 0;
    margin: auto 0 0;
}

.right_80px{
    right: 80px;
    margin: auto 0 80px;
}

.left_110px{
    left: 110px;
}

.tr_rotate-45p{
    transform: rotate(-45deg);
}



/*width*/
.w100p{
    width: 100%;
}

.w80p{
    width: 80%;
}

.w25p{
    width: 25%;
}

.w48px{
    width: 48px;
}

.minW70px{
    min-width: 70px;
}

.minW150px{
    min-width: 150px;
}

.maxW990px{
    max-width: 990px;
}

.maxW48px{
    max-width: 48px;
}

/*height*/


.h50px{
    height: 50px;
}

.h100px{
    height: 100px;
}

.h400px{
    height: 400px;
}

.h600px{
    height: 600px;
}

.maxH600px{
    max-height: 600px;
}

/*margins*/
.marT20px{
   margin-top: 20px;
}

.marT10px{
   margin-top: 10px;
}

.marT20p{
   margin-top: 20%;
}

.marB0{
    margin-bottom: 0px;
}

.marR10px{
    margin-right: 10px;
}

.mar10px{
    margin: 10px;
}

.mar5px{
    margin: 5px;
}

.mar1px{
    margin: 1px;
}

/*paddings*/
.pad5px{
    padding: 5px;
}

.pad10px{
    padding: 10px;
}

.pad30px{
    padding: 30px;
}

.padTB5LR30px{
    padding: 5px 30px;
}


/*font size*/
.fs55px{
    font-size: 55px;
}

.fs30px{
    font-size: 30px;
}

.fs20px{
    font-size: 20px;
}

.fs16px{
    font-size: 16px;
}

.fs12px{
    font-size: 12px;
}

.fGreatVibes{
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.bold{
    font-weight: bold;
}

.br15px{
    border-radius: 15px;
}


/*buttons*/

/*background*/
.background-black{
    background-color: black;
}

/*color*/
.white-color{
    color: white;
}


.bread-crumbs{
    border-radius: 15px;
}

.bread-crumbs a{
    text-decoration: none;
    transition: color 0.2s ease;
}

.bread-crumbs a:hover{
    text-decoration: underline;
    color: black;
    transition: color 0.2s ease;
}




