body {
    display: block;
    margin: 0 auto;
    font-family: "Arial",sans-serif;
    box-sizing: border-box;
}
header {
    width: 100%;
    background-color: rgb(255, 221, 158);
    font-size: 11px;
}
a {
    color: inherit;
    text-decoration: none;
}
.header__up-container {
    height: 45px;
    margin: 0 auto;
    max-width: 1170px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
header ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline-start: 0px;
    margin-block-start: 0;
    margin-block-end: 0;
}
header li a {
    margin: 5px 10px;
    display: flex;
    flex-direction: row;
    align-items: center
}
header li a:hover {
    transform: scale(1.2);
    color: rgb(168, 0, 0);
    transition-duration: 0.5s;
}
.header__icons {
    width: 32px;
    margin-right: 5px;
    display: block;
}
.header__icons-geo {
    width: 24px;
    height: 24px;
    margin: 5px 0;
}
.header-city {
    background-color: rgb(255, 196, 87);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 2px 1px black;
}
.header-city-select {
    height: 100%;
    margin: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-city-select:hover {
    text-decoration: underline;
    transition-duration: 0.8s;
}
.header-city-select::after {
    content: " ";
    position: relative;
    top: 4px;
    right: -5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #171717;
}
.header__button {
    width: 160px;
    height: 32px;
    border: 0;
    background-color: rgb(255, 196, 87);
    border: 2px solid rgb(206, 0, 0);
    box-shadow: 0 0 2px 1px black;
    font-size: 11px;
}
.header__button:hover {
    background-color: rgb(192, 6, 0);
    transition-duration: 0.8s;
}
.header__wrapper {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}
.header__left-side {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.header__phone {
    width: 300px;
    padding: 40px;
    padding-left: 30px;
    background-image: url('/img/telephone.png');
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 0 48%;
    font-size: 13px;
}
.header__phone-number {
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(204, 0, 0)
}
.header__phone-date {
    font-size: 11px;
    display: inline-block;
    color: grey
}
.header__phone-contacts {
    font-size: 11px;
    display: block;
    color: grey
}
#bars {
    display: none;
}
.header__left-side a {
    display: flex;
    align-items:center
}
.header__left-side img {
    width: 200px;
    margin-right: 20px;
}

.header__menu-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.header__menu-section-list {
    margin: 0 20px;
}
#cart {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: rgb(206, 0, 0);
}
#cart img {
    margin-right: 10px;
}
#phone {
    display: none;
}
.header__menu-section-list img {
    width: 26px;
    height: 26px;
}
.mobile-header__catalog {
    display: none;
}
.header__catalog {
    width: 100%;
    margin: 0 auto;
    max-width: 1170px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding:5px
}
.header__catalog-list {
    margin-bottom: 15px;
    width: 175px;
    height: 55px;
    background-color:#ffcb1e;
    display: flex;
    align-items:center;
    box-shadow: 0 0 3px 1px black;
    transform: skew(-40deg);
	-webkit-transform: skew(-40deg);
	   -moz-transform: skew(-40deg);
	     -o-transform: skew(-40deg);
}
.header__catalog-list1 {
    margin-bottom: 15px;
    width: 175px;
    height: 55px;
    background-color: rgb(179, 21, 0);
    display: flex;
    align-items:center;
    box-shadow: 0 0 3px 1px black;
    transform: skew(-40deg);
	-webkit-transform: skew(-40deg);
	   -moz-transform: skew(-40deg);
	     -o-transform: skew(-40deg);
}
.header__catalog-list:hover {
    color:rgb(172, 0, 0);
    background-color: transparent;
    box-shadow: 0 0 50px rgb(131, 0, 0) inset;
    outline: medium none;
    transition: all 100ms linear 0s;
}

.header__catalog-list1:hover {
    color:rgb(172, 0, 0);
    background-color: transparent;
    box-shadow: 0 0 50px rgb(131, 0, 0) inset;
    outline: medium none;
    transition: all 100ms linear 0s;
}
.header__catalog-img img {
    width: 28px;
    height: 28px;
    transform: skew(40deg);
}
.header__catalog a {
    position: relative;
    z-index: 2;
}
.header__catalog a span {
    position: absolute;
    top:30%;
    left: 40%;
    color: rgb(0, 0, 0);
    font-size: 13px;
    font-weight: 600;
    z-index: 1
}
.header__catalog-img {
    width: 45px;
    height: 40px;
    top: 0;
    padding: 3px;
    background-color: white;
    margin-right: 6px;
    margin-left: 10px;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 2px 0 black;
}
.header__catalog-search {
    width: 70px;
    height: 55px;
    background-color: #c00000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px 1px black;
    margin-bottom: 15px;
    transform: skew(-40deg);
	-webkit-transform: skew(-40deg);
	   -moz-transform: skew(-40deg);
	     -o-transform: skew(-40deg);
}
.header__catalog-search-container {
    background-color: white;
    padding: 3px;
    width: 70%;
    text-align: center;
}
.header__catalog-search-container:hover {
    background-color:#ffb01e;
    transition-duration: 0.3s;
}
.header__catalog-search img {
    width: 32px;
    height: 32px;
    transform: skew(40deg);
}
.link-line {
    max-width: 1170px;
    margin: 0 auto;
    color: grey;
    display: flex;
    align-items: flex-end;
    padding: 20px 0;
    padding-left: 10px;
}
.link-line span {
    display: block;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 5px;
}
h1 {
    font-size: 23px;
    font-weight: 600;
    margin-top: 0;
}
.container__select {
    background-color:#e4a700;
    padding: 10px;
}
.select-form {
    height: 60px;
    display: flex;
    justify-content: start;
    padding-left: 20px;
    margin-bottom: 0px;
}
.select-form-variant {
    width: 190px;
    height: 45px;
    margin-right: 5px;
    padding: 6px;
    padding-left: 15px;
    display: flex;
    align-items: end;
    font-size: 14px;
}
.select-wheels {
    background-color: white;
    border: 4px solid rgb(145, 0, 0);
    border-bottom: 2px solid white;
}

.form-select-container {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 30px;
    background-image: url('/img/background-image.jpg');
    background-size: 400px 400px;
    background-repeat: no-repeat;
    background-position: 95% 20px;
    border: 3px solid rgb(145, 0, 0);
}
select:focus {
    outline: 0;
}
.form-select-row {
    padding: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.form-select-label {
    float: left;
    width: 200px;
    font-weight: 500;
    font-size: 14px;
    margin-right: 10px;
}
.select-container {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}
.select-container label {
    font-size: 11px;
    color: rgb(175, 0, 0);
    margin-bottom: 7px;
}
.select-container select {
    width: 90px;
    height: 25px;
    border-radius: 0;
    margin-right: 10px;
    border: solid 1px #910000;
}
.form-select-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.form-select-controls span {
    margin: 0 10px;
    margin-top: 18px;
}
#R  {
    margin-right: -7px;
}

#wheels-variant {
    position: absolute;
    left: -99999px;
}
.checkbox-btns [type="checkbox"] {
    position: absolute;
    left: -99999px;
}
input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border-radius: 1px;
    background-color: #fff;
    border: solid 1px #ff9100;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
}
.checkbox-btns__item {
    border-radius: 2px 0 0 2px;
    border: solid 1px #af0000;
    color:#b40000;
    padding: 6px 9px;
    cursor: pointer;
    margin-left: -6px;
    margin-bottom: 0;
}
.checkbox-btns__item:first-of-type {
    margin-left: 0px;
}
#wheels-label {
    display: block;
    margin: 0;
    width: 34px;
    height: 18px;
    border-radius: 100px;
    background-color: #c1c1c1;
    position: relative;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
#wheels-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    right: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.15);
    box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.15);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
#form-sales {
    width: 250px;
    height: 30px;
    font-size: 15px;
    border: solid 1px #b40000;
}
#form-sales option {
    border: 1px solid black;
}
#product-sales {
    width: 250px;
    height: 30px;
    font-size: 15px;
    border: solid 1px #b40000;
}

#select-button {
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    background-color: #c40000;
    font-weight: 700;
    line-height: 1.75;
    padding: 9px 15px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    height: 44px;
    display: inline-block;
    vertical-align: middle;
    min-width: 235px;
    width: 420px;
    margin-left: 30px;
    margin-top: 20px;
    cursor: pointer;
}

.products {
    margin: 0 auto;
    padding: 30px 0;
}
.sorting span {
    margin-right: 10px;
    font-size: 18px;
    font-weight: 500;
}
.sorting .blue {
    color: rgb(179, 6, 0)
}
.sorting .grey {
    color: grey;
}

.products-container {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 auto;
    flex-wrap: wrap;
}
.products-list {
    width: 300px;
    height: 470px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(255, 153, 0);
    padding: 10px 20px;
    margin: 15px 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
}
.img-block {
    width: 100%;
    height: 240px;
    text-align: center;
}
.product-img-header {
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
}
.product-gift {
    height: 32px;
    width: 32px;
}

.product-logo {
    height: 50px;
    width: 150px;
}
.product-weather {
    height: 32px;
    width: 32px;
}
.product-product {
    height: 160px;
    width: auto;
}
.products-text {
    width: 100%;
    height: 190px;
    display: flex;
    flex-direction: column;
}
.products-text span {
    margin: 10px 0;
}
.product-title {
    font-size: 14px;
}
.product-stars {
    display: flex;
    align-items:center
}
.product-stars img {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}
.product-stars span {
    color: grey;
    font-size: 13px;
    margin: 0 0;
    margin-left: 10px;
}
.product-art {
    font-size: 12px;
    color: grey;
    margin-top: 0;
}
.product-have {
    font-size: 14px;
    color: rgb(212, 0, 0)
}
.product-have a {
    text-decoration: underline;
}
.price {
    font-size: 24px;
    font-weight: 600;
    color:rgb(226, 0, 0);
    letter-spacing: 2px;
}
.price-symbol {
    margin-left: 5px;
    color: black
}
.product-button {
    width: 80%;
    color: white;
    padding: 6px 15px;
    border: 0;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0)),linear-gradient(#ffa600, #c27e00);
    box-shadow: 0 0 2px black;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    line-height: 1.43;
    margin: 10px auto 20px auto;
}

.text-container {
    margin: 0 auto;
    max-width: 1170px;
    padding: 10px 20px;
}
.seo-text {
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid black;
    background-color: #f8f7e8;
    font-size: 14px;
}
h3{
    font-size: 24px;
}
h1,h2 {
    color: rgb(230, 138, 0);
    text-shadow: 1px 0 1px black;
}
b {
    color: rgb(190, 22, 0);
}
.text-container p {
    font-size: 15px;
    font-weight: 500;
    margin: 20px 0;
    line-height: 20px;
}
.text-container ul {
    font-size: 15px;
    margin: 20px 0;
}
.text-container li {
    margin-top: 10px;
}
    
.wheels-footer {
    max-width: 1170px;
    margin: 0 auto;
    padding: 5px;
}
.wheels-footer {
    display: flex;
    flex-direction: column;
}
.wheels-ul {
    display: flex;
    flex-direction: column;
}
.wheels-ul-header {
    font-size: 20px;
    font-weight: 600;
    color:#ff9100
}
.wheels-ul-lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wheels-ul-lists ul {
    width: 20%;
    list-style-type: none;
    color: rgb(57, 126, 255);
    font-size: 14px;
    padding-inline-start: 0px;
    margin: 20px auto;
}
.wheels-ul-lists li {
    margin-bottom: 6px;
}

footer {
    border-top: 4px solid rgb(156, 0, 0);
    background-color: rgb(255, 255, 255);
}
.footer-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.footer-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-ul {
    margin: 15px 10px;
    display: flex;
    flex-direction: column;
}
.footer-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color:#d30000;
}
.footer-phone {
    font-weight: 600;
    word-wrap: nowrap;
    margin-bottom: 20px;
}
.footer-ul span {
    font-size: 12px;
    color: rgb(0, 73, 231);
    margin-bottom: 10px;
}
.footer-logo img {
    width: 180px;
    height: auto;
    margin-left: 20px;
}
.footer-social {
    width: 100%;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
}
.footer-column {
    max-width: 350px;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
}
.footer-column p {
    margin: 5px 0;
    color:rgb(116, 116, 116);
}
#header-info {
    color: black
}
.footer-payments {
    max-height: 30px;
    max-width: 240px;
    margin-right: 10px;
    float: left;
}
#visa {
    max-height: 24px;
    max-width: 80px;
}
#sber {
    width: 24px;
    height: 24px;
}
.social-links {
    display: flex;
    flex-direction: row;
}
.footer-social-links {
    height: 32px;
    width: 32px;
    margin-right: 10px;
}
.modal-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 270%;
    background-color: rgba(0, 0, 0, 0.623);
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-container {
    position: relative;
    top: 3%;
    width: 800px;
    height: 1200px;
    background-color: white;
    box-shadow: 0 0 4px black;
    padding: 30px;
    margin: 0 auto;
}
.modal-header-list {
    width: 100%;
    border-bottom: 1px solid grey;
}
.modal-header {
    display: inline-block;
    padding: 10px;
    margin-bottom: -2px;
}
.modal-header:first-of-type {
    border-bottom: 3px solid rgb(209, 0, 0);
}
.modal-choise {
    padding: 10px;
}
.modal-city-header {
    font-size: 17px;
    margin: 20px 0 30px 0;
}
.modal-ul {
    margin-left: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modal-ul span {
    display: block;
    width: 30%;
    height: 48px;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 5px;
}
.modal-ul span:hover  {
    background-color:rgb(223, 223, 223);
    transition-duration: 0.5s;
}
.modal-span {
    cursor: pointer
}

@media screen and (max-width: 480px) {
    header  {
        display:none;
    }
    .header__catalog {
        display: none;
    }
    .header__left-side .header__phone {
        display: none;
    }
    .header__wrapper {
        background-color:white;
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
        height: 70px;
        border-bottom: 2px solid grey;
    }
    .header__menu-section {
        margin-top: 10px;
        margin-left: -15px;
    }
    .header__menu-section-list {
        display: none;
        margin-left: 5px;
    }
    .header__left-side img {
        margin-top: 20px;
        height: 48px;
        width: 80%;
        max-width: 200px;
    }
    #cart {
        display: block;
    }
    #phone {
        display: block;
    }
    #bars {
        display: block;
        margin-left: 10px;
        margin-top: 10px;
        width: 48px;
        height: 64px;
    }
    .header__menu-section-list span {
        display: none;
    }
    .mobile-header__catalog {
        width: 100%;
        margin-top: 100px;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: space-between;
    }
    .mobile-header__catalog-list {
        width: 130px;
        height: 50px;
        display: flex;
        align-items:center;
        justify-content: center;
        color: rgb(0, 0, 0);
        font-size: 20px;
        background-color: rgb(235, 172, 0)
    }
    .mobile-header__catalog-list1 {
        width: 130px;
        height: 50px;
        display: flex;
        align-items:center;
        justify-content: center;
        color: white;
        font-size: 20px;
        background-color: rgb(218, 0, 0)
    }
    .link-line {
        display: none;
    }
    h1 {
        font-size: 32px;
        margin-top: 10px;
    }
    .container__select {
        padding: 0;
    }
    .select-form-variant {
        width: 100%;
        margin: 0;
        margin-left: -20px;
        font-size: 24px;
        border-bottom: 3px solid rgb(226, 0, 0);
    }
    .select-form-variant:last-of-type {
        display: none;
    }
    .form-select-row {
        flex-direction: column;
        padding: 0;
        margin-top: 20px;
    }
    .form-select-label {
        font-size: 23px;
    }
    .form-select-container {
        background-position: 270px 255px;
        background-size: 200px 200px;
    }
    .form-select-controls  {
        width: 100%;
        flex-direction: column;
    }
    .select-container {
        width: 100%;
    }
    .select-container label {
        margin-top: 10px;
        font-size: 22px;
    }
    .select-container select {
        width: 90%;
        height: 40px;
    }
    .form-select-controls span {
        display: none;
    }
    #wheels {
        flex-direction: row;
    }
    #wheels-label {
        transform: scale(1.5);
    }
    .checkbox-btns {
        width: 100%;
    }
    .checkbox-btns {
        margin-top: 20px;
    }
    .checkbox-btns__item {
        padding: 5px 10px;
        font-size: 20px;
    }
    #form-sales {
        width: 99%;
        height: 50px;
        font-size: 22px;
        margin-top: 20px;
    }
    #product-sales {
        width: 99%;
        height: 50px;
        font-size: 22px;
        margin-top: 20px;
    }
    #select-button {
        width: 90%;
        height: 70px;
        font-size: 30px;
        margin: 30px 0 0 20px;
    }
    .products-list {
        width: 90%;
        height: 640px;
    }
    .product-img-header {
        margin-top: 0;
    }
    .product-logo {
        height: 40px;
    }
    .product-product {
        height: 200px;
    }
    .products-text {
        margin-top: 40px;
    }
    .product-title {
        font-size: 24px;
    }
    .product-stars img {
        width: 32px;
        height: 32px;
    }
    .product-stars span {
        font-size: 22px;
    }
    .product-art {
        font-size: 18px;
    }
    .product-have {
        font-size: 24px;
    }
    .price {
        position: absolute;
        bottom: 80px;
        left: 35%;
        font-size: 30px;
    }
    .products-text {
        position: relative;
        height: 60%;
    }
    .products-text span {
        margin: 0 auto;
    }
    .product-button {
        position: absolute;
        bottom:0;
        width: 90%;
        font-size: 26px;
    }
    .seo-text p {
        font-size: 20px;
    }
    h3 {
        font-size: 36px;
    }
    .text-container p {
        font-size: 24px;
        line-height: 30px
    }
    .text-container ul {
        font-size: 24px;
    }
    .wheels-ul-header {
        text-align: center;
        font-size: 22px;
    }
    .wheels-ul-lists ul {
        width: 40%;
        font-size: 18px;
    }

    .footer-container {
        padding: 20px 0;
    }
    .footer-block {
        flex-direction: column;
    }
    .footer-header {
        width: 350px;
        font-size: 32px;
    }
    .footer-ul {
        flex-direction: column;
    }
    .footer-phone {
        font-size:36px;
        font-weight: 500
    }
    .footer-ul span {
        font-size: 16px;
    }
    .mobile-delete {
        display: none;
    }
    .footer-social {
        margin: 0;
        flex-direction: column;
    }
    .footer-logo img {
        width: 80%;
        height: auto;
    }
    #header-info {
        font-size: 20px;
    }
    .footer-column p  {
        font-size: 16px;
    }
    .footer-payments {
        max-height: 64px;
    }
    #masterproduct {
        width: auto;
        height: 64px;
    }
    #visa {
        max-height: none;
        max-width: none;
        height: 48px;
        width: 120px;
    }
    #paykeeper {
        width: auto;
        height: 48px;
        margin-right: 0;
    }

}