/* -------- added-to-cart -------- */
.added-to-cart {
    display: none;
    text-align: center;
    padding: 10px 0;
    background: #dff0d8;
    width: 100%;
    height: auto;
    z-index: 20000;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.checkout {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
}

.added-to-cart p {
    color: #555;
    font-weight: 500;
}

.added-to-cart span {
    color: #3c763d;
    font-weight: 500;
}

.added-to-cart a {
    color: #000;
}

.licart {
    display: none
}

.your-cart {
    text-align: center;
    margin: 15px 0;
}

.your-cart h3 {
    font-size: 22px;
}

.your-cart p {
    margin: 15px 0 25px;
}

.your-cart button::after {
    content: "\f178";
    font-family: "icomoon";
    font-size: 20px;
    margin: -2px 0 0 12px;
    vertical-align: middle;
    display: inline-block;
}

.cart-product {
    position: relative;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 0 1px #000;
}

.cart-product-img-desc {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.cart-product-img img {
    max-width: 100px;
    width: 100%;
}

.cart-product-desc {
    margin: 10px 0 0 15px;
    max-width: 230px;
    width: 100%;
}

.cart-product-desc p {
    margin: 6px 0 0 0;
}

.cart-product-desc a {
    color: #000;
}

.cart-product-desc a:hover {
    color: #777;
}

.material-icons {
    font-size: 20px;
    color: #000;
    position: absolute;
    top: 0;
    right: 0;
}

.material-icons:hover {
    color: #777;
}

.cart-footer {
    padding: 10px;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 15px 0;
    color: #777;
    font-size: 16px;
}

.cart-shipping {
    color: #777;
    font-style: italic;
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 14px;
}

.cart-links {
    text-align: center;
}

.cart-links a.active {
    background: #350608;
    color: #fff;
}

.cart-links a.active:hover {
    background: #997748;;
}

.cart-form-block {
    display: flex;
    /*padding: 40px 0 0 0;*/
}

.cart-form {
    width: 50%;
    padding: 0 40px 0 0;
}

.cart-form-inner {
    max-width: 600px;
    width: 100%;
}

.success_payment {
    text-align: center
}

.cart-form-inner h3 {
    color: #b2b2b2;
    font-size: 30px;
}

.cart-form-inner ul {
    display: flex;
    margin: 20px 0;
    color: #333;
    font-size: 13px;
}

.cart-form-inner ul li a {
    color: #b2b2b2;
}

.cart-form-inner ul li a.active {
    color: #ffbb00;
}

.cart-form-inner ul li {
    font-size: 17px;
    color: #b2b2b2;
    margin: 0 15px 0 0;
}

.cart-form-inner ul li a {
    transition: all .2s ease-in-out;
}

.cart-form-inner ul li a:hover {
    color: #ffbb00;
}

.cart-form-inner ul li span.icon-chevron-right::before {
    font-size: 10px;
    margin: 0 7px 0 5px;
    color: #777;
}

.form-basket-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

form.form-basket input {
    width: 100%;
    padding: 15px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin: 15px 0 0 0;
}

form.form-basket label {
    color: #b2b2b2;
    cursor: pointer;
}

.form-basket-item h2 {
    color: #b2b2b2;
    font-size: 20px;
    margin: 10px 0;
    font-weight: 400;
}

.form-basket-item p {
    color: #b2b2b2;
}

.form-basket-item p a {
    color: #ffbb00;
}

.form-basket-item p a:hover {
    text-decoration: underline;
}

form.form-basket .title-material {
    margin: 30px 0 10px;
    position: relative;
}

form.form-basket .title-material:hover {
    color: #333;
}

form.form-basket .first-last-name input {
    width: 100%;
}

form.form-basket input:focus,
.form-basket-item select:focus {
    border-color: #1990c6;
    box-shadow: 0 0 0 1px #1990c6;
}

.form-basket-item .sort-select select {
    padding: 15px 10px;
    margin: 15px 10px 0 0;
    border-radius: 5px;
}

.form-basket-item .sort-select::after {
    top: 40px;
    right: 30px;
}

form.form-basket .checkbox-material #exclusive-offers {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: auto;
    cursor: pointer;
}

form.form-basket .checkbox-material label {
    padding: 2px 0 0 30px;
}

.return-to-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.return-to-cart button {
    background: #ffc933;
    color: #000;
    border-radius: 3px;
    transition: all .3s;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.return-to-cart button:hover {
    color: #fff;
    z-index: 0;
}

.return-to-cart button::before {
    content: '';
    background: #797979;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -120%;
    transform: skewX(-45deg);
    transition: all .5s;
}

.return-to-cart button:hover::before {
    left: -20%;
    width: 140%;
    z-index: -1;
}

.radiobutton .form__radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 0 0 30px;
    margin: 10px 0 0;
}

.radiobutton .form__radio input {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: auto;
    cursor: pointer;
}

.return-to-cart a,
.refund-policy a {
    color: #ffbb00;
    flex: 1 0 auto;
    margin: 0 20px 0 0;
}

.return-to-cart a:hover,
.refund-policy a:hover {
    text-decoration: underline;
}

.return-to-cart a::before {
    content: "\f105";
    font-family: "icomoon";
    transform: rotate(180deg);
    display: inline-block;
    margin: 0 5px 0 0;
}

.refund-policy {
    border-top: 1px solid #ddd;
    margin: 30px 0 15px 0;
    padding: 20px 0 10px 0;
}

.refund-policy a {
    font-size: 13px;
}

.cart-form-desc {
    width: 50%;
    /*border-left: 1px solid #ddd;*/
}

.product-thumbnail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin: 0 0 25px;
    padding: 10px 25px;
    background: #e8f3f6;
}

/*
.bord-bottom {
    border-bottom: 1px solid #ddd;
    padding: 10px 25px;
    background: #e8f3f6;
}
*/

.product-thumbnail-item {
    display: flex;
    position: relative;
    align-items: center;
}

.product-thumbnail-img img {
    max-width: 70px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 0 15px 0 0;
}

.product-thumbnail-img span {
    display: block;
    position: absolute;
    top: -5px;
    left: -15px;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(114, 114, 114, 0.9);
}

.product-thumbnail-item p {
    font-weight: 600;
    font-size: 15px;
}

.product-thumbnail-item p.color-gray {
    color: #777;
}

.product-thumbnail-item p.price-big {
    font-size: 20px;
}

/* -------- basket__page -------- */
section.basket__page {
    padding: 50px 15px 0;
}

.basket__page-title h3 {
    text-align: center;
    font-size: 30px;
    margin: 30px 0 30px;
}

.basket__table-title ul {
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 17px 0;
}

.basket__table-title ul li,
.basket__table-item ul li {
    font-size: 17px;
    font-weight: 700;
    padding: 0 30px;
    max-width: 190px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.basket__table-title ul li:first-child,
.basket__table-item ul li:first-child {
    max-width: 400px;
    width: 100%;
    align-items: start;
}

.basket__table-item {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.basket__table-item ul {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.basket__table-item ul li {
    justify-content: center;
}

.basket__table-product-desc {
    display: flex;
    align-items: center;
}

.basket-product-img {
    margin: 0 25px 0 0;
}

.basket-product-img img {
    border: 1px solid #ddd;
    max-width: 100px;
}

.basket-product-img img:hover {
    transform: scale(1);
}

.basket-product-desc a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.basket-product-desc a:hover {
    color: #777;
}

.basket-product-desc span {
    display: block;
    margin: 5px 0 0;
    font-size: 14px;
}

.basket__table-item li a span.icon-trash-o {
    color: #666;
    font-size: 25px;
    transition: all .2s ease-in-out;
}

.basket__table-item li a span.icon-trash-o:hover {
    color: #000;
}

.basket__note {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
    border-bottom: 1px solid #ddd;
}

.basket__note-form form a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: all .2s ease-in-out;
    margin: 0 0 15px;
}

.basket__note-form form a:hover {
    color: #777;
}

.basket__note-form form textarea {
    padding: 10px 18px;
    border: 1px solid #ddd;
    max-width: 320px;
    width: 100%;
    min-height: 75px;
}

.subtotal__amount {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
}

.subtotal__amount-inner {
    background: #f8f8f8;
    padding: 40px 48px;
}

.subtotal__amount-item {
    background: #fff;
    padding: 20px 0;
    min-width: 450px;
    width: 100%;
    display: block;
    text-align: center;
}

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

.subtotal__amount-title span {
    font-size: 20px;
    padding: 10px 20px;
    font-weight: 600;
}

.subtotal__amount-desc {
    border-top: 1px solid #ddd;
    font-size: 16px;
    font-style: italic;
    padding: 15px 0 30px;
}

.basket__table-item ul li.basket-pencil {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.basket__table-item ul li.basket-pencil::before {
    content: "\f040";
    font-family: "icomoon";
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.basket__table-item ul li.basket-pencil.close-menu::before {
    content: "\f00d";
}

.basket__table-item ul li.basket-pencil:hover::before {
    color: #000;
}

.basket-pencil-click {
    display: none;
}

.basket-pencil-click-inner {
    display: flex;
    justify-content: right;
    margin: 10px 20px 0 0;
}

.basket-pencil-click-inner .quantity__counter {
    margin: 0 20px 0 0;
}

/* -------- collection__page -------- */
section.collection__page {
    margin: 80px 0;
    padding: 0 15px;
}

.collection__page-title h3 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.collection__page-inner {
    display: flex;
    flex-wrap: wrap;
}

.collection__page-item {
    position: relative;
    width: 32%;
    max-width: 32%;
    margin: 0 2% 2% 0;
}

.collection__page-item:nth-child(3n+3) {
    margin-right: 0;
}

.collection__page-item > a {
    border: 2px solid #eee;
}

.collection__page-item-img img {
    max-width: 515px;
    width: 100%;
}

.collection__page-item-img img:hover {
    transform: scale(1);
}

.collection__page-item-desc {
    position: absolute;
    bottom: 20px;
    background: rgba(53, 6, 8, 0.4);
    text-align: center;
    left: 20px;
    right: 20px;
    padding: 35px 5px;
    transition: all 0.6s;
}

.collection__page-item-desc::before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 1px solid transparent;

}

.collection__page-item:hover .collection__page-item-desc {
    background: #000;
}

.collection__page-item:hover .collection__page-item-desc::before {
    border-color: rgba(255, 255, 255, 0.4);
}

.collection__page-item-desc h4 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.collection__page-item-desc span {
    color: #fff;
}

/* -------- collection__shoes-------- */
.collection__shoes-title {
    text-align: center;
    margin: 0 0 20px;
}

.collection__shoes-title h3 {
    font-size: 25px;
    text-transform: uppercase;
    margin: 10px 0 20px;
    color: #555;
}

ul.cat_tabs {
    margin: 20px 0 0 0;
}

.collection__shoes-title ul li {
    color: #525360;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    height: 36px;
    line-height: 37px;
    text-transform: uppercase;
    padding: 0 18px;
    cursor: pointer;
    margin: 0 5px;
    transition: all .3s ease-in-out;
}

.collection__shoes-title ul li:hover,
.collection__shoes-title ul li.active {
    background: #525360;
    color: #fff;
}

.collection__shoes-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.collection__shoes-item {
    width: 15%;
    margin: 0 5px;
    position: relative;
}

.collection__shoes-item a {
    overflow: hidden;
}

.collection__shoes-item a img {
    max-width: 100%;
    height: auto;
}

.collection__shoes-item a:hover img {
    transform: scale(1.15);
    transition: all .61s;
}

.collection__shoes-item a h4 {
    position: absolute;
    top: 0;
    font-size: 14px;
    padding: 6px 0 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    background: rgba(0, 0, 0, .3);
    box-shadow: 0 3px 1pc rgba(0, 0, 0, .1);
}

#div_search {
    width: 50%;
    margin: 0 auto;
}

/* -------- shopping__cart -------- */
.shopping__cart-content {
    background: #333 url("../images/bg-pattern.png");
    margin: 44px 0 0;
}

.shopping__cart {
    padding: 0 0 20px;
}

.shopping__cart h1.heading {
    margin: 15px 0 20px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.cart__message {
    display: flex;
    border: 1px solid #dfebb5;
    background: #f7fde1;
    padding: 8px;
    align-items: center;
    margin: 0 0 20px;
    display: none;
}

.shopping__cart h2.heading {
    color: #b2b2b2;
    font-size: 30px;
}

.cart__message-img {
    width: 40px;
    text-align: center;
    margin: 0 10px 0 0px;
}

.cart__message-info p {
    color: #95bc01;
    font-weight: bold;
    margin: 3px 0;
}

.shopping__cart-inner {
    border: 1px dashed #4F4F4F;
    margin: 30px 0;
}

.shopping__cart-item {
    display: flex;
    border-bottom: 1px dashed #4F4F4F;
}

.block_result .shopping__cart-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.shopping__cart-item:last-child {
    border-bottom: none;
}

.shopping__cart-item h4 {
    color: #f4a500;
    font-weight: 400;
    letter-spacing: 1px;
}

.shopping__cart-item a {
    font-size: 14px;
    color: #000;
    font-weight: normal;
    transition: all .3s ease;
}

.shopping__cart-item span {
    color: #000;
    cursor: pointer;
}

.shopping__cart-item span:hover {
    color: lightcoral;
}

.shopping__cart-item span.icon-trash-o {
    font-size: 22px;
    color: lightcoral;
}

.shopping__cart-item a span {
    font-size: 16px;
}

.shopping__cart-item a span.icon-trash-o {
    font-size: 24px;
}

.shopping__cart-item a:hover {
    color: lightcoral;
}

.shopping__cart-mobile-calc {
    display: flex;
    max-width: 360px;
    width: 100%;
}

.shopping__cart-mobile-info {
    display: flex;
    width: 100%;
    /*gap: 3px;*/
}

.shopping__cart-img {
    max-width: 100px;
    width: 100%;
    border-right: 1px dashed #4F4F4F;
    text-align: center;
    padding: 8px;
}

.shopping__cart-img img {
    max-width: 60px;
    vertical-align: middle;
}

.shopping__cart-img:hover a img {
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, .11);
    transition: all .3s ease;
}

.shopping__cart-title {
    max-width: 1000px;
    width: 100%;
    border-right: 1px dashed #4F4F4F;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    padding: 8px 5px;
    flex: 1 1 auto;
}

.shopping__cart-title p {
    font-weight: bold;
    margin: 5px 0 0 10px;
    color: #b2b2b2;
}

.shopping__cart-title span {
    margin: 0 0 0 10px;
    display: block;
    font-weight: normal;
}

.shopping__cart-edit {
    max-width: 130px;
    width: 100%;
    border-right: 1px solid #e5e5e5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.shopping__cart-price {
    max-width: 110px;
    width: 100%;
    border-right: 1px dashed #4F4F4F;
    text-align: center;
    color: #b2b2b2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.shopping__cart-price span,
.shopping__cart-subtotal span {
    font-size: 16px;
}

.shopping__cart-qty {
    width: 100%;
    border-right: 1px dashed #4F4F4F;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.cart-calculator {
    max-width: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px dashed #4F4F4F;
    padding: 0 15px;
}

.shopping__cart-qty .list-size-chart {
    margin: 0;
}

.shopping__cart-qty .list-size-chart .proportions-item {
    margin: 0 6px 0 0;
}

.shopping__cart-qty input {
    width: 40px;
    padding: 9px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    color: #555;
}

.shopping__cart-qty input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(21, 21, 21, .3);
}

.shopping__cart-metr input {
    width: 100%;
    padding: 5px;
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.shopping__cart-ed-izm {
    width: 60%;
}

.shopping__cart-up {
    width: 60%;
}

.shopping__cart-qty p.counter__up {
    color: #f4a500;
}

.shopping__cart-subtotal {
    max-width: 130px;
    width: 100%;
    border-right: 1px dashed #4F4F4F;
    text-align: center;
    color: #b2b2b2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex: 0 0 auto;
}

.shopping__cart-remove {
    max-width: 70px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.shopping__cart-btn {
    padding: 0 10px 10px;
    width: 100%;
    display: flex;
}

button.cart-btn,
.shopping__cart-item a.cart-btn {
    /*background: #ffc933;*/
    background: #3a3d45;
    color: #fff;
    border-radius: 3px;
    transition: all .3s;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 10px 0 0 0;
    width: 100%;
}

button.cart-btn.duale-qr__pay {
    background: #ffd800;
    color: #000;
    margin: 15px 0;
}

button.cart-btn::before,
.shopping__cart-item a.cart-btn::before {
    content: '';
    /*background: #797979;*/
    background: yellowgreen;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -120%;
    transform: skewX(-45deg);
    transition: all .5s;
}

button.cart-btn:hover,
.shopping__cart-item a.cart-btn:hover {
    color: #fff;
    z-index: 0;
}

button.cart-btn:hover::before,
.shopping__cart-item a.cart-btn:hover::before {
    left: -20%;
    width: 140%;
    z-index: -1;
}

button.cart-btn-design {
    background: yellowgreen;
    color: #000;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
}

button.cart-btn-design::before {
    background: green;;
    color: #fff;
}

.shopping__cart-item a.cart-btn {
    text-align: center;
    margin: 10px 10px 0 0;
}

.shopping__cart-btn button + button {
    margin: 10px 0 0 10px;
}

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

.form__comment {
    width: 100%;
    margin: 0 30px 0 0;
}

.form__comment textarea {
    width: 100%;
    padding: 12px;
    outline: none;
}

.cart__discount {
    display: flex;
}

.cart__related-products {
    max-width: 445px;
    width: 100%;
    margin: 0 20px 0 0;
}

.cart__related-products h3 {
    border-bottom: 2px solid #3a3a3a;
    font-size: 17px;
    line-height: 24px;
    color: #b2b2b2;
    text-transform: uppercase;
    padding: 0 0 8px;
    font-weight: normal;
}

.cart__related-products-item {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.cart__related-products-item:last-child {
    border-bottom: none;
    padding: 20px 0 0;
}

.cart__related-products-img img {
    max-width: 90px;
    border: 1px solid #e5e5e5;
}

.cart__related-products-img:hover a img {
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, .11);
    transition: all .3s ease;
}

.cart__related-products-desc {
    margin: 0 0 0 10px;
}

.cart__related-products-desc h4 a {
    font-size: 14px;
    color: #b2b2b2;
    display: inline;
    transition: all .3s ease;
}

.cart__related-products-desc h4 a:hover {
    color: #fff;
}

.cart__related-products-desc span {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    display: block;
    margin: 5px 0 10px;
}

.cart__related-products-desc button {
    margin: 0 0 5px;
}

.cart__related-products-desc a {
    color: #b2b2b2;
    transition: all .3s ease;
    margin: 3px 0 0;
    display: table;
}

.cart__related-products-desc a:hover {
    color: #fff;
}

.discount__code {
    max-width: 360px;
    width: 100%;
    margin: 0 20px 0 0;
}

form.discount-coupon {
    max-width: 290px;
    width: 100%;
}

form.discount-coupon h3 {
    border-bottom: 2px solid #3a3a3a;
    font-size: 17px;
    line-height: 24px;
    color: #b2b2b2;
    text-transform: uppercase;
    padding: 0 0 8px;
    font-weight: normal;
}

form.discount-coupon h4 {
    text-transform: uppercase;
    font-weight: normal;
    margin: 15px 0;
    color: #b2b2b2;
}

form.discount-coupon input {
    border: 1px solid #e5e5e5;
    padding: 8px;
    font-size: 14px;
    color: #555;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    width: 100%;
    margin: 0 0 20px;
}

form.discount-coupon input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(21, 21, 21, .3);
}

form.shipping {
    margin: 25px 0 0;
}

form.shipping h3 {
    border-bottom: 2px solid #b2b2b2;
    font-size: 17px;
    line-height: 24px;
    color: #b2b2b2;
    text-transform: uppercase;
    padding: 0 0 8px;
    font-weight: normal;
}

form.shipping h4 {
    text-transform: uppercase;
    font-weight: normal;
    margin: 15px 0;
    color: #b2b2b2;
}

.shipping-item {
    margin: 0 0 15px;
}

.shipping-item p {
    color: #b2b2b2;
    font-weight: bold;
    margin: 0 0 5px;
}

.shipping-item p span {
    color: #fff;
    margin: 0 0 0 5px;
}

.shipping-item select,
.shipping-item input {
    border: 1px solid #e5e5e5;
    padding: 8px;
    font-size: 14px;
    color: #555;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    width: 100%;
}

.shipping-item select:focus,
.shipping-item input:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(21, 21, 21, .3);
}

form.shipping button {
    margin: 15px 0 0;
}

.cart__totals {
    background: #3a3a3a;
    max-width: 485px;
    width: 100%;
    height: max-content;
    text-align: center;
}

.cart__totals-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #606060;
    color: #fff;
    padding: 10px;
}

.cart__totals-item p {
    font-size: 14px;
    text-transform: uppercase;
}

.cart__totals-item span {
    display: block;
    font-size: 18px;
}

.cart__totals-item.cart__totals-item-mobile {
    display: none;
}

.cart__totals button {
    margin: 0;
}

.cart__totals a {
    display: block;
    text-decoration: underline;
    color: #a6a6a6;
}

.cart__totals a:hover {
    text-decoration: none;
}

.quantity__counter {
    display: flex;
    align-items: center;
    margin: 0;
}

.counter-tovara {
    text-align: center;
    width: auto;
    display: flex;
}

.counter-tovara span {
    user-select: none;
    cursor: pointer;
    display: inline-block;
    /*background: #ffc933;*/
    background: #3a3d45;
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    transition: all .2s ease;
    font-weight: 500;
}

.counter-tovara span.counter__link_prev {
    margin: 0;
}

.counter-tovara span.counter__link_next {
    margin: 0;
}

.counter-tovara span:hover {
    color: #fff;
    background: yellowgreen;
}

.counter-tovara input {
    width: 90px;
    border: none;
    color: #000;
    font-weight: 500;
    text-align: center;
    font-size: 15px;
    padding: 0;
    margin: 0;
    background: #ddd;
}

.counter-tovara-ed-izm {
    text-align: center;
    width: 100%;
}

.counter-tovara-ed-izm span {
    user-select: none;
    cursor: pointer;
    display: inline-block;
    /*background: #ffc933;*/
    background: #3a3d45;
    padding: 0 10px;
    margin: 0 3px;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    transition: all .2s ease;
}

.counter-tovara-ed-izm span:hover {
    color: #fff;
    background: yellowgreen;
}

.counter-tovara-ed-izm span.active {
    background: lightgreen;
}

.cart-alert-warning {
    display: none;
    position: absolute;
    width: 300px;
    height: auto;
    background: #fff;
    padding: 10px 15px;
    top: -100px;
    left: -60px;
    font-size: 14px;
    box-shadow: 10px 10px 30px;
}
