@font-face {
    font-family: "MacPawFixel";
    src: url("../fonts/MacPawFixel.ttf") format("truetype");
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

html, body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    /*font-family: 'Ubuntu', sans-serif;*/
    color: #000;
    background: #fff;
}
* {
    box-sizing: border-box;
    -webkit-appearance: none !important;
    outline: none !important;
}
a {
    text-decoration: none;
    color: #000;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    -webkit-appearance: none;
    color: #303840;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 8px 10px;
    line-height: 24px !important;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    max-width: 100%;
    box-shadow: 0 0 0 -7px rgba(0,0,0,0);
}
input[type=radio] {
    display: none;
}
input[type=radio] + label {
    display: flex !important;
    align-items: center;
    position: relative;
    line-height: 1;
}
input[type=radio] + label:before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid #303840;
}
input[type=radio]:checked + label:after {
    content: '';
    display: flex;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #303840;
    position: absolute;
    left: 6px;
    top: calc(50% - 5px);
}
select {
    padding: 3px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-weight: 400;
    font-size: 100%;
    height: auto;
    cursor: pointer;
    appearance: none;
    line-height: 1.6;
    letter-spacing: 0.3px;
    background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==) no-repeat 98% 50%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    padding: 0 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
}
.btn__primary {
    background: #fad505;
    color: #000;
}
.btn__primary:hover {
    background: #fad505;
    color: #000;
}
.wrap {
    width: 1320px;
    margin: 0 auto;
    max-width: calc(100% - 30px);
}

.header {
    background: #fff;
    /*background: #fad505;*/
    padding: 5px 0;
    border-bottom: 5px solid #d8d200;
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.header__logo {
    display: flex;
    background: #fff;
    padding: 8px 10px;
}
.header__logo img {
    height: 43px;
}
.header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

}
.header__menu__item {
    padding: 5px 10px;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.header__menu__icon {
    display: flex;
    padding: 5px 10px;
    position: relative;
}
.header__menu__icon .cart {
    display: flex;
    position: relative;
}
.header__menu__icon .cart .cart-count {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    justify-content: center;
    text-align: center;
    position: absolute;
    color: #303840;
    background: #fad505;
    top: calc(50% - 20px);
    right: calc(50% - 20px);
}

.top {
    position: relative;
}
.top:before {
    content: '';
    display: block;
    border: calc(100vh - 26px) solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 0 solid transparent;
    border-right: 70vw solid #0c0c0c;
    position: absolute;
    right: 0;
    top: 0;
}
.top .wrap{
    position: relative;
    z-index: 2;
}
.main-screen {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
    align-items: center;
    justify-content: center;
}
.main-screen__logo img {
    height: 200px;
}
.main-screen__slogan {
    font-size: 42px;
    /* line-height: 2; */
    margin-top: 30px;
    margin-bottom: 0;
}

.section {
    padding: 80px 0;
}

.quality-input {
    display: flex;
    align-items: stretch;
}
.quality-input__minus,
.quality-input__plus {
    width: 40px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #ebebeb;
    opacity: 0.6;
    transition-duration: .3s;
    cursor: pointer;
}
.quality-input__minus:hover,
.quality-input__plus:hover {
    opacity: 1;
}
.quality-input__minus::before,
.quality-input__plus:before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: #666666;
}
.quality-input__plus::after {
    content: '';
    display: block;
    height: 16px;
    width: 2px;
    background: #666666;
    position: absolute;
    left: calc(50% - 1px);
    top: calc(50% - 8px);
}
.quality-input__value input {
    border: 1px solid #ebebeb;
    width: 60px;
    min-width: 60px;
    height: 50px;
    display: inline;
    margin: 0 3px;
    vertical-align: top;
    line-height: 40px;
    font-size: 16px;
    padding: 5px;
    border-radius: 0;
    text-align: center;
    -moz-appearance: textfield;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    width: 45%;
}
.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
}
.woocommerce .product-content {
    width: 55%;
    padding-left: 40px;
    margin-top: 0;
    float: right;
}
.woocommerce div.product div.summary {
    width: 100% !important;
}

.product-content .product_meta .posted_in a {
    color: #6b8499;
    font-size: 16px;
    line-height: 24px;
}
.product-content .product_title {
    font-size: 36px;
    line-height: 42px;
    margin: 10px 0 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #e5e5e5;
    color: #303840;
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 50px;
    vertical-align: top;
    margin-left: 20px;
    background: #fad505;
    color: #303840;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    transition-duration: 0.2s;
    letter-spacing: 1px;
    border-radius: 0;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #303840;
    color: #fff;
}
.woocommerce div.product .product-content p.price,
.woocommerce div.product .product-content span.price {
    color: #000000 !important;
    font-size: 36px !important;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}
.woocommerce div.product .product-content .woocommerce-variation-price {
    margin-bottom: 20px;
}
.woocommerce div.product .product-content .single_variation_wrap .price {
    margin-left: 140px;
}
.woocommerce .woocommerce-product-details__short-description {
    padding: 0 0 15px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}
.woocommerce .woocommerce-product-details__short-description p {
    margin: 0 !important;
}

.product-content__description {
    margin-top: 40px;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs {
    display: flex;
    justify-content: center;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs li {
    margin: 0 18px;
    padding: 0 0;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs li:after {
    display: none;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs li a {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    color: #303840;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs li.active {
    border-bottom: 3px solid #fad505;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs li.active a {
    color: #1671d9;
}
.woocommerce div.product .product-content__description .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid #e5e5e5;
}
.woocommerce div.product .product-content__description .woocommerce-Tabs-panel > h2 {
    display: none;
}
.woocommerce .product-content__description table {
    border-spacing: 0;
}
.woocommerce .product-content__description table.shop_attributes tr td {
    font-style: italic;
    padding: 0 10px;
    border-top: 0;
    margin: 0;
    line-height: 1.5;
}
.woocommerce .product-content__description table.shop_attributes tr th {
    min-width: 180px;
    font-weight: 700;
    padding: 8px;
    border-top: 0;
    margin: 0;
    line-height: 1.5;
}
.woocommerce .product-content__description table.shop_attributes tr:nth-child(even) td,
.woocommerce .product-content__description table.shop_attributes tr:nth-child(even) th {
    background: #f2f2f2;
}

.upsells.products {
    margin-top: 80px;
}
.upsells.products h2.upsells__title {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
    position: relative;
    font-size: 32px;
    color: #303840;
    line-height: 1.5;
}
.upsells.products h2.upsells__title:after {
    content: '';
    border-bottom: 2px solid #fad505;
    display: block;
    position: absolute;
    bottom: -1px;
    width: 150px;
}

.related.products {
    margin-top: 80px;
}
.related.products h2.related__title {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
    position: relative;
    font-size: 32px;
    color: #303840;
    line-height: 1.5;
}
.related.products h2.related__title:after {
    content: '';
    border-bottom: 2px solid #fad505;
    display: block;
    position: absolute;
    bottom: -1px;
    width: 150px;
}

.woocommerce-cart-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.woocommerce-cart-form {
    width: calc(100% - 400px);
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    width: 360px !important;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
    padding: 0;
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li a.prev, 
.woocommerce nav.woocommerce-pagination ul li span.prev,
.woocommerce nav.woocommerce-pagination ul li a.next, 
.woocommerce nav.woocommerce-pagination ul li span.next {
    display: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #f9eeb0 !important;
    color: #000 !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #fad505 !important;
    color: #000 !important;
}

.button.wc-forward,
.button.wc-backward {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 50px !important;
    vertical-align: top;
    border: 1px solid #303840 !important;
    background: #fff !important;
    color: #303840 !important;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    transition-duration: 0.2s;
    letter-spacing: 1px;
    border-radius: 0 !important;
}
.button.wc-forward:hover,
.button.wc-backward:hover {
    background: #303840 !important;
    color: #fff !important;
}
.return-to-shop {
    text-align: center;
}


.woocommerce .woocommerce-cart-content .checkout-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 50px;
    vertical-align: top;
    background: #fad505 !important;
    color: #303840 !important;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    transition-duration: 0.2s;
    letter-spacing: 1px;
    border-radius: 0;
    border: 0 !important;
}
.woocommerce .woocommerce-cart-content .checkout-button:hover {
    background: #303840 !important;
    color: #fff !important;
}
.woocommerce .cart__list .update_cart {
    visibility: hidden;
    opacity: 0;
}

.woocommerce .product-content table.shop_attributes  {
    border-spacing: 0;
    border-top:  1px solid #e5e5e5;
}
.woocommerce .product-content table.shop_attributes th {
    text-align: left;
    width: 140px;
}
.woocommerce .product-content table.variations th {
    text-align: left;
    width: 140px;
}
.woocommerce .product-content table.shop_attributes th,
.woocommerce .product-content table.shop_attributes td {
    border-bottom: 0;
}
.woocommerce .product-content table.shop_attributes tr:last-child th,
.woocommerce .product-content table.shop_attributes tr:last-child td {
    border-bottom: 1px solid #e5e5e5;
}
.woocommerce .product-content table.shop_attributes tr:nth-child(even) td,
.woocommerce .product-content table.shop_attributes tr:nth-child(even) th {
    background: transparent;
}

.product-description {
    clear: both;
}
.product-description__title {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
    position: relative;
    font-size: 32px;
    color: #303840;
    line-height: 1.5;
}
.product-description__title:after {
    content: '';
    border-bottom: 2px solid #fad505;
    display: block;
    position: absolute;
    bottom: -1px;
    width: 150px;
}

.cart-product {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
}

.cart-product__image {
    width: 200px;
    min-width: 200px;
    margin-right: 20px;
}
.cart-product__info {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}
.cart-product__info .product-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cart-product__info .product-price {
    font-size: 24px;
    font-weight: 400;
}
.cart-product__remove {
    width: 24px;
    min-width: 24px;
    display: flex;
    align-items: flex-start;
}
.woocommerce .cart-product__remove a.remove {
    color: #303840!important;
}
.woocommerce .cart-product__remove a.remove:hover {
    color: #353434!important;
    background: transparent;
}
.cart-product__count {
    padding-top: 20px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.woocommerce-checkout .checkout-page {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.woocommerce-checkout .checkout__form {
    width: calc(100% - 400px);
}
.woocommerce-checkout .checkout__place {
    width: 360px !important;
    min-width: 360px;
}
.woocommerce-checkout .checkout__place #payment {
    background: #f2f2f2;
    border-radius: 0;
}
.woocommerce-checkout .checkout__place #payment .wc_payment_methods li:not(:last-child){
    margin-bottom: 10px;
}
.woocommerce-checkout h3 {
    font-size: 21px;
    line-height: 1.4;
    margin: 15px 0 5px;
}
.woocommerce-checkout .wc-ukrposhta-up-fields h3 {
    display: none;
}
.woocommerce-checkout .wcus-checkout-fields h3 {
    display: none;
}
.woocommerce-checkout .checkout__form label {
    font-weight: 500;
    font-size: 14px;
}
.woocommerce-checkout .checkout__form .zen-ui-select__value {
    border: 1px solid #e5e5e5;
    border-radius: 0;
}
.woocommerce-checkout .checkout__form .select2-container .select2-selection--single {
    height: 42px;
    border: 1px solid #e5e5e5;
}
.woocommerce-checkout .checkout__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
}
.woocommerce-checkout .checkout__form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}


.woocommerce .checkout__place #payment #place_order {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    vertical-align: top;
    background: #fad505 !important;
    color: #303840 !important;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    transition-duration: 0.2s;
    letter-spacing: 1px;
    border-radius: 0;
}
.woocommerce .checkout__place #payment #place_order:hover {
    background: #303840 !important;
    color: #fff !important;
}

.select2-dropdown {
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}
.woocommerce .cart-collaterals table.shop_table,
.woocommerce .cart-collaterals table.shop_table,
.woocommerce .checkout__place table.shop_table {
    border-radius: 0;
}

.wc-block-grid .wp-block-button {
    display: none;
}

.wc-block-grid .wc-block-grid__product-price {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

.woocommerce ul.products li.product .price {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

.woocommerce-error, .woocommerce-info {
    border-top: 3px solid #d8d200 !important;
    text-align: center;
    font-size: 18px;
    font-style: italic;
    padding: 10px 30px !important;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    display: none !important;
}
.woocommerce-error::after, .woocommerce-info::after, .woocommerce-message::after {
    display: none !important;
}

.woocommerce-error {
    border-top-color: #b81c23 !important;
    text-align: left;
}
.woocommerce-message {
    border-top: 3px solid #d8d200 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 10px 30px !important;
}
.single-product .woocommerce-message .button.wc-forward {
    order: 2;
    padding: 0 15px !important;
    height: 40px;
}

.woocommerce ul.order_details {
    padding: 0 !important;
}
.woocommerce-thankyou-order-received {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}
.woocommerce-order > .woocommerce-order-details__title {
    display: none;
}
.woocommerce-order > .shop_table {
    display: none;
}

.page__header h1 {
    margin: 0;
    padding: 12px 0;
    line-height: 46px;
}
.page__body {
    padding: 30px 0;
    min-height: calc(100vh - 314px);
}

.about-us__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.about-us__description {
    white-space: pre-line;
}

.about-us__content {
    width: 60%;
}
.about-us__image {
    width: 30%;
}
.about-us__image img{
    width: 100%;
}
.about-us__title {
    margin: 0;
    padding: 0 0 24px;
    line-height: 46px;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: 80px -15px;
}
.categories-list__item {
    width: calc(100%/3 - 30px);
    margin: 15px;
    position: relative;
}
.categories-list__item__image {
    padding-top: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.categories-list__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transition-duration: 0.3s;
}
.categories-list__item__text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    background: rgb(41 37 37 / 58%);
    color: #fff;
    opacity: 0;
    transition-duration: 0.3s;
}

.categories-list__item:hover .categories-list__item__image img {
    transform: scale(1.2);
}
.categories-list__item:hover .categories-list__item__text {
    opacity: 1;
}

.slider {
    position: relative;
}
.slider__media {
    position: relative;
    padding-top: 43.2%;
}
.slider__media__item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition-duration: 0.5s;
}
.slider__media__item.active {
    z-index: 3;
    opacity: 1;
}
.slider__media__item.next {
    z-index: 2;
    opacity: 1;
    transition-duration: 0s;
}
.slider__media__item.hidden {
    display: none;
}

.slider__navigation {
    position: absolute;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    background: url(../images/arrow.svg) no-repeat center;
    background-size: 60%;
    z-index: 5;
    cursor: pointer;
}
.slider__navigation.prev {
    left: 20px;
    transform: rotate(180deg);
}
.slider__navigation.next {
    right: 20px;
}

.slider__media__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.slider__media__item .slider__media__item__link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.footer {
    background: #000;
    color: #fff;
}
.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.footer a{
    color: #fff;
    display: block;
}

.footer__logo {
    display: flex;
    margin-bottom: 15px;
}
.footer__logo img {
    height: 50px;
}
.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.footer__social__item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.footer__social__item svg {
    width: 100%;
}
.footer__block {
    max-width: 400px;
    line-height: 24px;
}
.footer__block__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    padding: 5px;
}

.product-meta-info {
    display: flex;
    align-items: flex-start;
    margin: -15px 0 20px;
}
.product-meta-info .stock {
    margin-left: auto;
    white-space: nowrap;
}

.product-type-variable .woocommerce-loop-product__link,
.product-type-simple .woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
}
.product-type-variable .woocommerce-loop-product__link .sku,
.product-type-simple .woocommerce-LoopProduct-link .sku {
    order: 2;
    font-size: 12px;
    margin: -5px 0 5px;
}
.product-type-variable .woocommerce-loop-product__link .price,
.product-type-simple .woocommerce-LoopProduct-link .price {
    order: 3;
}

.wpcf7-form {
    position: relative;
}
.wpcf7-spinner {
    left: 15px;
    position: absolute !important;
    visibility: visible;
    top: auto;
    bottom: 13px;
    margin: 0 !important;
}
.wpcf7-form input {
    width: 450px;
    max-width: 100%;
}
.wpcf7-form textarea {
    width: 450px;
    max-width: 100%;
    resize: vertical;
    min-height: 100px;
    height: 180px;
    max-height: 280px;
}

.wpcf7-form input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 0;
    background: #fad505;
    color: #303840;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    transition-duration: 0.2s;
    letter-spacing: 1px;
    border-radius: 0;
}
.wpcf7-form input[type="submit"]:hover {
    background: #303840;
    color: #fff;
}

@media screen and (max-width: 1000px){

    .footer__content {
        flex-wrap: wrap;
    }
    .footer__block {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
    .footer__block:first-child {
        width: 100%;
        min-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer__logo {
        justify-content: center;
    }
    .footer__social {
        justify-content: center;
        padding-right: 20px;
    }
    .wp-block-spacer {
        height: 60px !important;
    }
    .about-us__image {
        width: 40%;
    }
    .about-us__content {
        width: 55%;
    }
    .categories-list__item:hover .categories-list__item__image img {
        transform: scale(1);
    }
    .categories-list__item__text {
        position: relative;
        opacity: 1;
        width: 100%;
        background: #303840;
        height: max-content;
        font-size: 24px;
        line-height: 40px;
    }
    .woocommerce div.product div.images.woocommerce-product-gallery {
        float: left;
    }
    .woocommerce div.product form.cart .single_add_to_cart_button {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .product-content .product_title {
        font-size: 32px;
    }
    .woocommerce-cart-content {
        flex-wrap: wrap;
    }
    .woocommerce-cart-form {
        width: 100%;
    }
    .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
        width: 100% !important;
    }

    #shipping_method {
        clear: both;
        margin-top: 40px !important;
    }
    .woocommerce-shipping-destination {
        text-align: left;
    }

    .checkout-page {
        flex-wrap: wrap;
    }
    .woocommerce-checkout .checkout__form {
        width: 100%;
    }
    .woocommerce-checkout .checkout__place {
        width: 100% !important;
    }
}
@media screen and (max-width: 640px){
    .section {
        padding: 40px 0;
    }
    .footer__block {
        width: 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }
    .footer__block:last-child {
        margin-bottom: 0;
    }
    .header {
        position: relative;
        padding-bottom: 0;
    }
    .header__container {
        padding: 0 15px 0 0;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        height: initial;
    }
    .header__menu {
        justify-content: center;
        width: 100%;
    }
    .header__menu__icon {
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .cart-product__image {
        width: 100px;
        min-width: 100px;
        margin-right: 15px;
    }
    .cart-product__info .product-name {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .cart-product__info .product-price {
        font-size: 16px;
    }
    .product-subtotal {
        text-align: right;
        margin-right: -25px;
        font-size: 14px;
    }
    .woocommerce div.product div.images.woocommerce-product-gallery {
        width: 100%;
    }
    .woocommerce .product-content {
        width: 100%;
        padding: 20px 0 0;
    }

    .wc-block-grid__products {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .wc-block-grid__product {
        width: calc(50% - 10px) !important;
        margin: 0 !important;
        max-width: calc(50% - 10px) !important;
    }
    .wp-block-spacer {
        height: 30px !important;
    }
    .slider__navigation {
        width: 40px;
    }
    .slider__navigation.prev {
        left: 0;
    }
    .slider__navigation.next {
        right: 0;
    }
    .about-us__top {
        flex-wrap: wrap;
    }
    .about-us__content {
        width: 100%;
        order: 2;
    }
    .about-us__image {
        width: 100%;
        margin-bottom: 10px;
    }
    .categories-list {
        flex-wrap: wrap;
    }
    .categories-list__item {
        width: 100%;
    }
}
@media screen and (max-width: 385px){
    .header__container {
        padding: 0;
    }
    .header__menu__item {
        padding: 5px 7px;
        font-size: 13px;
        letter-spacing: .1px;
    }
}