* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--black-color);
}

button {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

body {
    font-family: var(--font-family);
}

/* Header Start */

header {
    z-index: 100;
    height: 80px;
    position: relative;
}

header .header-fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    max-width: 1410px;
}

header .header-wrapper {
    display: flex;
    padding: 18px 15px;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}
header .mobile-menu {
    display: none;
}
header .logo {
    height: 100%;
}
header .logo img {
    width: auto;
    height: 100%;
}

header nav ul {
    list-style-type: none;
    display: flex;
    gap: 10px;
}

header nav li a {
    padding: 10px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

header .right-part {
    display: flex;
    gap: 30px;
    align-items: center;
}

header .basket {
    height: 20px;
    display: flex;
}

header .basket svg {
    height: 20px;
    width: 20px;
}

header .basket .count {
    color: var(--white-color);
    background-color: var(--green-light-color);
    width: 23px;
    height: 15px;
    border-radius: 8px;
    transform: translate(-3px, -10px);
    font-size: 10px;
    margin-left: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .phone {
    font-size: 12px;
    font-weight: bold;
}
.mobile-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .2s ease-in-out;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 991px) {
    header .phone {
        display: none;
    }
    header .mobile-menu {
        display: flex;
        height: 100%;
        align-items: center;
        gap: 2px;
    }
    header .circle {
        width: 4px;
        height: 4px;
        background-color: black;
        border-radius: 50%;
        transition: all .2s ease-in-out;
    }
    header .mobile-menu.active .circle {
        background-color: #bfcbb7;
    }
    header,
    header .header-wrapper {
        height: 66px;
    }
    header .top-menu {
        position: fixed;
        top: 66px;
        left: 0;
        padding: 0 20px;
        height: 100vh;
        background-color: white;
        z-index: -1;
        width: 300px;
        border-top: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: all .2s ease-in-out;
    }
    header .top-menu.active {
        transform: translateX(0);
    }
    header .top-menu ul {
        flex-direction: column;
        padding-top: 20px;
    }
    header nav li a {
        line-height: 24px;
        padding: 0 0.5rem 0;
        text-transform: none;
        font-size: 15px;
        font-weight: 500;
    }
}

/* Header End */

/* Footer Start */

footer .footer-wrapper {
    background-color: var(--dark-gray-color);
    color: var(--text-gray-color);
    width: 100%;
    height: fit-content;
}

footer .footer-up {
    padding: 40px 15px;
    display: flex;
}

footer .footer-down {
    padding: 15px;
}

footer .footer-col-3 {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

footer .footer-up img,
footer .footer-up svg {
    width: 170px;
    margin-bottom: 20px;
}

footer .footer-up path {
    fill: var(--white-color);
}

footer .footer-contacts {
    display: flex;
    flex-direction: column;
}

footer .contact-line {
    color: var(--text-gray-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

footer nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

footer nav li a:hover {
    color: var(--white-color);
}

footer nav li a {
    padding: 10px 10px 10px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    color: var(--text-gray-color);
    transition: all .2s ease-in-out;
}

footer .nav-title::after {
    content: "";
    background-color: var(--white-color);
    height: 1px;
    width: 40px;
    margin-bottom: 20px;
}

footer .nav-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    color: var(--white-color);
}

footer .footer-down {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #363636;
}

footer .icon-link:hover {
    background-color: var(--red-hover-color);
}

footer .icon-link {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray-color);
    border-radius: 50%;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

footer .icon-links {
    display: flex;
    gap: 12px;
}

footer .icon-link svg {
    max-width: 14px;
    max-height: 14px;
}

footer .icon-link svg path {
    fill: var(--white-color);
}

footer .rights {
    color: var(--text-gray-color);
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Footer End */

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1.2s;
}

@keyframes fadeInUp {

    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Basket Start */

#basket {
    visibility: hidden;
    opacity: 0;
    z-index: 110;
    width: 560px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    transition: all .2s ease-in-out;
    background-color: #FFFFFF;
    transform: translateX(100%);
}

#basket.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0px);
}

#basket .null {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #232323;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    z-index: 20;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#basket .null.active {

    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

#basket .null-basket {
    width: 80px;
    height: 80px;

    fill: #868686;
}

#basket .null-text {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

#basket .null a {
    border: 2px solid #FFFFFF;
    height: 42px;
    padding: 10px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 188px;
    margin: 0 auto;
    pointer-events: auto;
    gap: 15px;
}

#basket .null a span {
    line-height: 16px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    color: #FFFFFF;
    text-wrap: nowrap;
}

#basket .null .arrow {
    width: 15px;
    height: 15px;
    fill: white;
}

#basket .basket-wrapper {
    height: 100%;
    position: relative;
}

#basket .popup-title::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--black-color);
}

#basket .popup-title {
    width: fit-content;
    padding: 60px 40px 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    line-height: 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

#basket .popup-body {
    padding: 15px 40px 45px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 120px);
}

#basket .basket-product-list {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

#basket .basket-product {
    display: flex;
    gap: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}

#basket .basket-product img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

#basket .basket-product .remove-product {
    position: absolute;
    top: 15px;
    right: 0;
    cursor: pointer;
}

#basket .basket-product .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 25px;
}

#basket .basket-product .product-title {
    line-height: 18px;
    font-weight: 400;
}

#basket .popup-footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

#basket .result {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid black;
    font-size: 20px;
    font-weight: 500;
}

#basket .buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

#basket .basket-btn {
    display: flex;
    width: 100%;
    height: 55px;
    text-transform: uppercase;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    font-weight: bold;
    color: white;
}

#basket .basket-btn.black {
    background-color: #0c0c0c;
}

#basket .basket-btn.gray {
    background-color: #a0a0a0;
}

#basket .close-basket {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 9px;
    font-weight: 500;
    line-height: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
}

@media screen and (max-width: 582px) {
    #basket {
        width: 100%;
    }
}

/* Basket End */

#overlay {
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 101;
    transition: all .2s ease-in-out;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Checkout Start */
.woocommerce-checkout {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.checkout-cart-group {
    margin: 75px 0;
    display: flex;
    justify-content: center;
}

.checkout-cart-group > a {
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 500;
    color: #868686;
    transition: color .2s ease-in-out;
}

.checkout-cart-group > a:hover,
.checkout-cart-group > a.active {
    color: black;
}

#order_comments_field .optional {
    display: none;
}

.checkout-cart-group a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: black;
    transition: width .2s ease-in-out;
}

.checkout-cart-group a.active::after,
.checkout-cart-group a:hover::after {
    width: 100%;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout .woocommerce-error {
    border-top: none;
    border-left: 3px solid #b81c23;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100%;
}

#customer_details {
    width: 65%;
    margin-right: 35px;
}

.woocommerce-checkout {
    margin-bottom: 20px;
}

#order_review {
    height: fit-content;
    width: calc(35% - 35px);
    padding: 25px 40px 40px 40px;
    box-sizing: border-box;
    border: 1px solid black;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table tfoot th,
.woocommerce-checkout .order-total th {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 0;
}

.woocommerce-checkout .order-total td {
    text-align: right;
}

.woocommerce-checkout #payment div.form-row {
    padding: 0;
}

#customer_details .form-row {
    position: relative;
    margin-bottom: 30px;
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields > h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
}

#customer_details .select2-selection.select2-selection--single {
    outline: none;
    height: 100%;
    display: flex;
    align-items: center;
    border: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #ddd;
    color: black;
    outline: none;
}

.select2-dropdown.select2-dropdown--below .select2-results__option {
    padding: 9px 12px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.select2-dropdown.select2-dropdown--below .select2-search__field:focus {
    border: 1px solid #aaa;
}

.select2-dropdown.select2-dropdown--below .select2-search__field {
    outline: none;
    height: 50px;
    vertical-align: middle;
    font-size: 14px;
    padding: 4px;
    border: 1px solid #aaa;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-dropdown.select2-dropdown--below {
    margin-top: -32px;
    border: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

#customer_details .select2-container,
#customer_details textarea,
#customer_details input {
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid #e4e4e4;
    font-size: 15px;
    padding: 0 20px;
    transition: border .4s linear;
}

#customer_details textarea {
    height: 250px;
    padding: 20px;
}

#customer_details textarea:focus,
#customer_details input:focus {
    border: 1px solid black;
    color: black;
}

#customer_details textarea.error,
#customer_details input.error {
    border: 1px solid #a00;
}

#customer_details textarea.success,
#customer_details input.success {
    border: 1px solid #6dc22e;
}

#order_comments::placeholder,
#customer_details label {
    color: #868686;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    padding: 0 10px;
    line-height: 20px;
    transition: all .25s linear;
    font-size: 15px;
    z-index: 10;
    font-family: "TT Norms", sans-serif;
}

#order_comments::placeholder {

    top: 20px;
    transform: translateY(0);
}

#customer_details label.active {
    top: 0;
    color: black;
}

.woocommerce-shipping-methods li {
    margin-bottom: 15px;
    line-height: 1.5em;
    font-weight: 400;
}

.wc_payment_methods.payment_methods.methods {
    display: none;
}

#place_order {
    background-color: black;
    width: 100%;
    height: 50px;
    margin-top: 30px;
}

#payment {
    background-color: white;
}

.form-row.place-order {
    background-color: white;
}

.woocommerce table.shop_table {
    border: none;
}

.woocommerce ul#shipping_method {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

.woocommerce table.shop_table tfoot td {
    padding-right: 0;
    font-weight: 500;
}

.woocommerce ul#shipping_method input:not(:checked) ~ label {
    color: #aaaaaa;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
    line-height: 20px;
}

.woocommerce form .form-row span {
    line-height: 20px;
    font-size: 15px;
    color: #868686;
}

.woocommerce form .form-row a {
    color: #ff4545;
}

.woocommerce form .form-row a:hover {
    text-decoration: underline;
}

.woocommerce table.shop_table td {
    font-size: 15px;
}

.woocommerce table.shop_table td img {
    max-width: 50px;
}

@media screen and (max-width: 1200px) {
    #customer_details {
        width: 55%;
        margin-right: 25px;
    }
    #order_review {
        width: calc(45% - 25px);
        padding: 15px 20px 20px 20px;
    }
}

@media screen and (max-width: 991px) {

    #customer_details {
        width: 100%;
        margin-right: 0;
    }
    #order_review {
        width: 100%;
    }
}
/* Checkout End */

/* Cart Start */

.checkout-cart .woocommerce {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.woocommerce-cart-form {
    width: 65%;
}

.woocommerce .cart-collaterals {
    width: calc(35% - 40px);
}

.woocommerce .cart-collaterals .cart_totals {
    padding-left: 30px;
    width: 100%;
}

.woocommerce table.woocommerce-cart-form__contents {
    border-style: solid;
    border-width: 1px;
    border-color: #e6e6e6;
    margin-bottom: 0;
}

.woocommerce table.shop_table tfoot th, .woocommerce-checkout .order-total th {
    font-family: "Montserrat", Sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
    line-height: 30px;
    border-color: #e6e6e6;
    border-style: solid;
    border-width: 0 0 0 1px;
    min-width: 32px;
    vertical-align: middle;
    padding: 9px 12px;
}
.woocommerce table.shop_table tfoot th {
    border-width: 1px 0 0 0;
}

.woocommerce .woocommerce-cart-form a.remove {
    color: #aaaaaa !important;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: "TT NORMS", Sans-serif;
    line-height: 35px;
    background: #e9e9e9;
    padding: 15px;
    text-transform: uppercase;
}

.cart-subtotal *,
.cart-subtotal,
.woocommerce-shipping-destination,
.woocommerce-shipping-calculator {
    display: none !important;
}

.order-total td {
    text-align: right;
}

.woocommerce .cart_totals .shop_table {
    border: none;
    background-color: #f8f8f8;
    padding: 30px 30px 0 30px;
    margin: 0;
}

.wc-proceed-to-checkout {
    background-color: #f8f8f8;
    padding: 30px;
}

.wc-proceed-to-checkout a.button.alt {
    background-color: black;
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}
.wc-proceed-to-checkout a.button.alt:hover {
    background-color: #bfcbb7;
}

.checkout-cart .woocommerce .cart_totals table.shop_table_responsive * {
    border: none;
}
.woocommerce table.shop_table th.product-name,
.woocommerce table.shop_table th.product-remove {
    border-width: 0 0 0 0;
}
.woocommerce .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > button.button:hover,
.woocommerce .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > a:hover {
    background-color: #bfcbb7;
    border-color: #bfcbb7;
    color: white;
}
.woocommerce .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > a {
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
    background-color: white;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    margin-left: 10px;
    transition: all .2s ease-in-out;
}
.woocommerce .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > button.button {
    background-color: black;
    text-transform: uppercase;
    color: white;
    font-size: 12px;
    line-height: 22px;

    border: 1px solid black;
    padding: 10px 20px;

    transition: all .2s ease-in-out;
}
.woocommerce .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > button.button[disabled] {
    color: #ffffff;
    background: #8a8a8a;
    border: 1px solid #8a8a8a;
}
.woocommerce .quantity .quantity-group-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 10px;
}
.woocommerce .quantity {
    border: 2px solid #e6e6e6;
    width: 110px !important;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.woocommerce .quantity .qty {
    text-align: center;
    border: none;
    z-index: 5;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.woocommerce-notices-wrapper {
    width: 100%;
}
@media screen and (max-width: 1200px){
    .woocommerce-cart-form {
        width: 55%;
    }

    .woocommerce .cart-collaterals {
        width: calc(45% - 30px);
    }
}
@media screen and (max-width: 991px){

    .woocommerce-cart-form {
        width: 100%;
    }

    .woocommerce .cart-collaterals {
        width: 100%;
    }
    .checkout-cart .woocommerce {
        flex-direction: column;
        gap: 10px;
    }
    .woocommerce .cart-collaterals .cart_totals {
        padding-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .woocommerce table.shop_table_responsive .product-quantity {
        display: flex;
        justify-content: space-between;
    }
    .woocommerce table.shop_table td.actions {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .woocommerce table.shop_table td.actions > * {
        margin: 0;
    }
    .woocommerce .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > a {
        margin-left: 0;
        text-align: center;
    }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td {
        background-color: transparent;
    }
    .woocommerce .cart_totals .shop_table {
        padding: 15px 15px 0 15px;
    }
    .woocommerce .quantity {
        border: none;
    }
    .woocommerce table.shop_table td {
        border: none;
    }
    .woocommerce-cart-form__cart-item.cart_item {
        border: 1px solid rgba(0,0,0,.1);
    }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background-color: rgba(0,0,0,.025);
    }
    .checkout-cart-group > a {
        font-size: 18px;
    }
    .checkout-cart-group {
        margin: 30px 0;
    }
}
/* Cart End */