@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300400700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.post-edit-link {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FFBF33;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffcf66;
}

-webkit-scrollbar {
  width: 2px;
  background: #FFBF33;
}

.hide {
  display: none !important;
}

.container {
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1240px) {
  .container {
    width: 1210px;
  }
}
header.header#header {
  background: url("../img/header.jpg");
  box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
}
header.header#header .top_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
header.header#header .top_line .burger {
  display: none;
}
header.header#header .top_line .top_menu a {
  color: #fff;
  margin-right: 15px;
  letter-spacing: 0.5px;
  font-size: 16px;
  text-decoration: none;
}
header.header#header .top_line .contact_info {
  position: relative;
}
header.header#header .top_line .contact_info .click {
  color: #FFBF33;
  font-size: 18px;
  position: relative;
  padding-right: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
header.header#header .top_line .contact_info .click::after {
  position: absolute;
  right: 0;
  top: 4px;
  content: "";
  border: solid #FFBF33;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: 0.3s;
}
header.header#header .top_line .contact_info .click:hover::after {
  top: 8px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
header.header#header .top_line .contact_info:hover .hover {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
header.header#header .top_line .contact_info .hover {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  right: -15px;
  padding: 0 10px;
  background: #eee;
  border-radius: 5px;
  border: 1px solid #FFBF33;
  text-align: center;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: 0.3s;
}
header.header#header .top_line .contact_info .hover a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  transition: 0.3s;
}
header.header#header .top_line .contact_info .hover a:hover {
  color: #FFBF33;
}
header.header#header .top_line .contact_info .hover .callback {
  display: flex;
}
header.header#header .top_line .contact_info .hover .callback .btn-modal {
  margin-left: 5px;
  color: #0000FF;
  cursor: pointer;
  text-decoration: underline;
}
header.header#header .top_line .contact_info .hover .contact_link {
  color: #267dc8;
}
header.header#header .top_line .contact_info .hover .hr {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 5px;
  margin: 5px 0;
}
header.header#header .top_line .contact_info .hover .mess_link_wrap {
  display: flex;
  justify-content: space-evenly;
}
header.header#header .top_line .contact_info .hover .mess_link_wrap .mess_link img {
  max-width: 32px;
}
header.header#header .bottom_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0 30px;
}
header.header#header .bottom_line .logo {
  max-width: 250px;
}
header.header#header .bottom_line .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header.header#header .bottom_line .search {
  position: relative;
  width: 50%;
}
header.header#header .bottom_line .search input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 18px;
}
header.header#header .bottom_line .search .icon {
  position: absolute;
  background: #FFBF33;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.3s;
}
header.header#header .bottom_line .search .icon:hover {
  background: #ffcf66;
}
header.header#header .bottom_line .search .icon:hover img {
  width: 32px;
  height: 32px;
}
header.header#header .bottom_line .search .icon img {
  width: 30px;
  height: 30px;
  transition: 0.3s;
}
header.header#header .bottom_line .cart {
  display: flex;
  flex-flow: column;
  align-items: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
header.header#header .bottom_line .cart:hover {
  color: #FFBF33;
}
header.header#header .bottom_line .cart img {
  max-width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}

.main_menu {
  margin-top: -20px;
  margin-bottom: 30px;
  z-index: 1;
}
.main_menu nav {
  padding: 0;
}
.main_menu nav ul {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: space-between;
  border: 1px solid;
  border-radius: 5px;
}
.main_menu nav ul li a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #000;
  border-right: 1px solid #a5a5a5;
  transition: 0.3s;
}
.main_menu nav ul li a:hover {
  background: #FFBF33;
}
.main_menu nav ul li:first-child a {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.main_menu nav ul li:last-child a {
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

main .select_auto_wrap {
  padding: 40px 0;
  background: url("../img/bg_filter.png") no-repeat;
  background-size: cover;
  background-blend-mode: unset;
  margin-bottom: 40px;
}
main .select_auto_wrap .select_auto h2 {
  font-size: 24px;
  text-align: center;
  color: #FFBF33;
  padding: 20px 0 10px;
  background: rgba(0, 0, 0, 0.6980392157);
}
main .select_auto_wrap .select_auto .select_auto_links {
  display: flex;
  flex-flow: row wrap;
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
}
main .select_auto_wrap .select_auto .select_auto_links a {
  width: 13%;
  border: 1px solid #fff;
  padding: 4px;
  margin: 4px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
main .select_auto_wrap .select_auto .select_auto_links a:hover {
  background: #fff;
  color: #000;
}
main .popular_cat_wrap {
  margin-bottom: 30px;
}
main .popular_cat_wrap h2 {
  margin-bottom: 15px;
}
main .popular_cat_wrap .popular_cat_links {
  display: flex;
  flex-flow: row wrap;
}
main .popular_cat_wrap .popular_cat_links .cat {
  display: block;
  width: calc(12.5% - 10px);
  background: #dddddd;
  color: #000;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  margin: 5px 0;
  margin-right: 10px;
  position: relative;
}
main .popular_cat_wrap .popular_cat_links .cat::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 190, 51, 0.4549019608);
  left: 50%;
  top: 50%;
  transition: 0.3s;
  border-radius: 50%;
}
main .popular_cat_wrap .popular_cat_links .cat:hover::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
main .popular_cat_wrap .popular_cat_links .cat span {
  display: block;
  z-index: 2;
  font-weight: bold;
}
main .popular_cat_wrap .popular_cat_links .cat img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
  background: #fff;
}
main .popular_product_wrap {
  margin-bottom: 30px;
}
main .popular_product_wrap h2 {
  margin-bottom: 15px;
}
main .popular_product_wrap .popular_product_slider .slick-prev:before, main .popular_product_wrap .popular_product_slider .slick-next:before {
  color: #FFBF33;
}
main .popular_product_wrap .popular_product_slider .product {
  display: flex;
  flex-flow: column;
  align-items: center;
  border: 1px solid #cecece;
  padding: 10px;
  margin: 10px 15px 10px 0;
  transition: 0.3s;
}
main .popular_product_wrap .popular_product_slider .product:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
  border-color: #000;
}
main .popular_product_wrap .popular_product_slider .product img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
main .popular_product_wrap .popular_product_slider .product .title {
  width: 100%;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  margin-bottom: 10px;
}
main .popular_product_wrap .popular_product_slider .product .price {
  font-size: 24px;
  margin-bottom: 10px;
}
main .popular_product_wrap .popular_product_slider .product .link {
  background: #FFC030;
  color: #000;
  border: 1px solid #FFC030;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}
main .popular_product_wrap .popular_product_slider .product .link:hover {
  background: #fff;
  color: #FFC030;
  border-color: #000;
}
main .more_info {
  max-height: 400px;
  overflow: auto;
}

footer.footer#footer {
  box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
  margin-top: 40px;
  background: #000;
  padding: 30px 0;
  clear: both;
}
footer.footer#footer .top_line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
footer.footer#footer .top_line .mini_menu, footer.footer#footer .top_line .contacts {
  display: flex;
  flex-flow: column;
}
footer.footer#footer .top_line .mini_menu span, footer.footer#footer .top_line .contacts span {
  color: #FFBF33;
  font-size: 24px;
  margin-bottom: 20px;
}
footer.footer#footer .top_line .mini_menu a, footer.footer#footer .top_line .contacts a {
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s;
}
footer.footer#footer .top_line .mini_menu a:hover, footer.footer#footer .top_line .contacts a:hover {
  color: #FFBF33;
}
footer.footer#footer .bottom_line {
  display: flex;
  justify-content: center;
}
footer.footer#footer .bottom_line .copyright {
  color: #fff;
  font-size: 20px;
}

.entry-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.single-main .entry-footer {
  display: none;
}
.single-main .price {
  margin-bottom: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.single-main .woocommerce-Price-amount {
  font-size: 42px;
  color: #FFBF33;
  font-weight: bold;
}
.single-main .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  margin-left: 5px;
}
.single-main .btn_oneclick_wrap {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.single-main .btn_oneclick_wrap input {
  height: 50px;
  width: 70%;
  border: 1px solid #FFBF33;
  outline: none;
  padding: 0 10px;
  font-size: 20px;
  text-align: center;
}
.single-main .btn_oneclick_wrap .btn_oneclick {
  height: 50px;
  width: 30%;
  border: 1px solid #FFBF33;
  background: #FFBF33;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.single-main .btn_oneclick_wrap .btn_oneclick:hover {
  background: #000;
  color: #FFBF33;
  border-color: #000;
}
.single-main form.cart {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.single-main form.cart input {
  height: 50px;
  width: 50px;
  outline: none;
  border: 1px solid #FFBF33;
  font-size: 24px;
}
.single-main form.cart input::-webkit-outer-spin-button, .single-main form.cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-main form.cart .quantity {
  display: flex;
  width: calc(30% - 5px);
}
.single-main form.cart .quantity .plus, .single-main form.cart .quantity .minus {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border: 1px solid #FFBF33;
  background: #FFBF33;
  cursor: pointer;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.single-main form.cart .quantity .plus:hover, .single-main form.cart .quantity .minus:hover {
  background: #000;
  color: #FFBF33;
  border-color: #000;
}
.single-main form.cart .quantity .minus {
  border-right: none;
}
.single-main form.cart .quantity .plus {
  border-left: none;
}
.single-main form.cart .single_add_to_cart_button {
  width: calc(70% - 5px);
  height: 50px;
  border-radius: 0;
  background: #FFBF33;
  color: #000;
  transition: 0.3s;
  outline: none;
  padding: 0;
}
.single-main form.cart .single_add_to_cart_button:hover {
  background: #000;
  color: #FFBF33;
}
.single-main .product_meta {
  font-size: 24px;
}
.single-main .product_meta a {
  color: #FFBF33;
  font-size: 20px;
  text-decoration: none;
}
.single-main .comment-respond {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 30px auto;
}
.single-main .comment-respond h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.single-main .comment-respond form p {
  margin-bottom: 10px;
}
.single-main .comment-respond form p label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.single-main .comment-respond form p input, .single-main .comment-respond form p textarea {
  outline: none;
  border: 1px solid #FFBF33;
  font-size: 18px;
  width: 100%;
  padding: 8px;
}
.single-main .comment-respond form .comment-form-cookies-consent, .single-main .comment-respond form .comment-form-url {
  display: none;
}
.single-main .comment-respond form .form-submit {
  text-align: center;
}
.single-main .comment-respond form input.submit#submit {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto !important;
  background: #FFBF33 !important;
  border: 1px solid #FFBF33 !important;
  outline: none !important;
  border-radius: 0 !important;
  color: #000 !important;
  padding: 12px 24px !important;
  font-size: 20px !important;
  transition: 0.3s;
}
.single-main .comment-respond form input.submit#submit:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #FFBF33 !important;
}

.with_sidebar .page_wrap {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse wrap;
}
.with_sidebar .page_wrap aside {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  overflow: hidden;
  width: calc(25% - 10px);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border: 1px solid #cacaca;
  padding: 15px;
}
.with_sidebar .page_wrap aside h2 {
  margin-bottom: 10px;
}
.with_sidebar .page_wrap aside .wc-block-product-categories-list {
  list-style: none;
}
.with_sidebar .page_wrap aside .wc-block-product-categories-list a {
  color: #FFBF33;
  text-decoration: none;
}
.with_sidebar .page_wrap article {
  width: calc(75% - 10px);
}
.with_sidebar .page_wrap article .woocommerce-result-count {
  margin-top: 15px;
}
.with_sidebar .page_wrap article .woocommerce-ordering select {
  padding: 8px 14px;
  border: 1px solid #FFBF33;
  outline: none;
  font-size: 16px;
  height: 40px;
}

.woocommerce-Tabs-panel h2 {
  margin-bottom: 15px !important;
}

.products li.product {
  transition: 0.3s;
  border: 1px solid #eee;
  padding: 10px !important;
  margin: 10px 0;
  margin-right: 10px;
}
.products li.product .woocommerce-loop-product__title {
  color: #000;
}
.products li.product .price {
  text-align: center;
}
.products li.product .price .woocommerce-Price-amount {
  font-size: 24px;
  color: #FFBF33;
}
.products li.product .price .woocommerce-Price-currencySymbol {
  margin-left: 5px;
}
.products li.product .ajax_add_to_cart, .products li.product .product_type_simple {
  width: 100%;
  background: #FFBF33;
  color: #000;
  border: 1px solid #FFBF33;
  outline: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.products li.product .ajax_add_to_cart.added, .products li.product .product_type_simple.added {
  font-size: 14px;
}
.products li.product .ajax_add_to_cart:hover, .products li.product .product_type_simple:hover {
  background: #000;
  border-color: #000;
  color: #FFBF33;
}

.woocommerce-message {
  border-top-color: #FFBF33 !important;
}

.woocommerce-message::before {
  color: #FFBF33 !important;
}

.woocommerce-cart aside {
  display: none !important;
}
.woocommerce-cart article {
  width: 100% !important;
}
.woocommerce-cart article .woocommerce-shipping-totals.shipping {
  display: none;
}
.woocommerce-cart article .cart_totals h2, .woocommerce-cart article .cart_totals .cart-subtotal {
  display: none !important;
}
.woocommerce-cart article .checkout-button {
  width: 100%;
  background: #FFBF33 !important;
  color: #000 !important;
  border: 1px solid #FFBF33 !important;
  outline: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.woocommerce-cart article .checkout-button:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #FFBF33 !important;
}
.woocommerce-cart article .product-name a {
  text-decoration: none;
  color: #000;
}
.woocommerce-cart article .woocommerce-Price-currencySymbol {
  margin-left: 5px !important;
}
.woocommerce-cart article input {
  height: 50px;
  width: 50px !important;
  outline: none;
  border: 1px solid #FFBF33;
  font-size: 18px;
}
.woocommerce-cart article input::-webkit-outer-spin-button, .woocommerce-cart article input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-cart article .quantity {
  display: flex;
}
.woocommerce-cart article .quantity .plus, .woocommerce-cart article .quantity .minus {
  height: 50px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border: 1px solid #FFBF33;
  background: #FFBF33;
  cursor: pointer;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.woocommerce-cart article .quantity .plus:hover, .woocommerce-cart article .quantity .minus:hover {
  background: #000;
  color: #FFBF33;
  border-color: #000;
}
.woocommerce-cart article .quantity .minus {
  border-right: none;
}
.woocommerce-cart article .quantity .plus {
  border-left: none;
}

.woocommerce-checkout aside {
  display: none !important;
}
.woocommerce-checkout article {
  width: 100% !important;
}
.woocommerce-checkout article #place_order {
  width: 100%;
  background: #FFBF33 !important;
  color: #000 !important;
  border: 1px solid #FFBF33 !important;
  outline: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  padding: 12px;
}
.woocommerce-checkout article #place_order:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #FFBF33 !important;
}
.woocommerce-checkout article #customer_details {
  width: calc(50% - 10px);
  display: flex;
  flex-flow: column;
  float: left;
}
.woocommerce-checkout article #customer_details .col-1, .woocommerce-checkout article #customer_details .col-2 {
  width: 100% !important;
}
.woocommerce-checkout article #customer_details .col-1 input, .woocommerce-checkout article #customer_details .col-1 textarea, .woocommerce-checkout article #customer_details .col-1 .select2-container--default .select2-selection--single, .woocommerce-checkout article #customer_details .col-2 input, .woocommerce-checkout article #customer_details .col-2 textarea, .woocommerce-checkout article #customer_details .col-2 .select2-container--default .select2-selection--single {
  outline: none;
  border: 1px solid #FFBF33;
  border-radius: 0;
  padding: 8px 12px;
}
.woocommerce-checkout article #customer_details .col-1 .select2-container--default .select2-selection--single, .woocommerce-checkout article #customer_details .col-2 .select2-container--default .select2-selection--single {
  height: unset;
}
.woocommerce-checkout article #customer_details .col-1 .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce-checkout article #customer_details .col-2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 11px;
}
.woocommerce-checkout article #order_review_heading {
  width: calc(50% - 10px);
  float: right;
  margin-bottom: 20px;
}
.woocommerce-checkout article #order_review {
  width: calc(50% - 10px);
  float: right;
}
.woocommerce-checkout article #order_review .woocommerce-privacy-policy-text {
  display: none;
}

.navigation.post-navigation {
  display: none !important;
}

.modal_bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.662745098);
  z-index: 998;
}

.modal {
  display: none;
}
.modal .modal_body {
  position: fixed;
  overflow: auto;
  padding: 25px;
  display: flex;
  flex-flow: column;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 999;
}
.modal .modal_body .close {
  position: absolute;
  right: 10px;
  top: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.modal .modal_body .close::after {
  content: "×";
  display: block;
  font-size: 36px;
}
.modal .modal_body .title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}
.modal .modal_body input {
  height: 40px;
  padding: 0 10px;
  font-size: 20px;
  outline: none;
  border: 1px solid #FFBF33;
  text-align: center;
  margin-bottom: 15px;
}
.modal .modal_body .btn_modal_submit {
  width: 100%;
  background: #FFBF33 !important;
  color: #000 !important;
  border: 1px solid #FFBF33 !important;
  outline: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  padding: 12px;
  outline: none;
  font-weight: bold;
  font-size: 18px;
}
.modal .modal_body .btn_modal_submit:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #FFBF33 !important;
  cursor: pointer;
}

.yellow {
  color: #FFBF33 !important;
}

.modal#success_modal .modal_body {
  display: flex;
  flex-flow: row;
}
.modal#success_modal .modal_body img {
  margin-right: 10px;
}
.modal#success_modal .modal_body .content {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.mobile_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile_menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 20px;
    overflow: hidden;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
  }
  .mobile_menu.open {
    opacity: 1;
    z-index: 999;
    visibility: visible;
  }
  .mobile_menu.open .links a {
    transform: translateX(0) !important;
  }
  .mobile_menu .close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 50px;
    cursor: pointer;
  }
  .mobile_menu .close::after {
    content: "×";
    display: block;
    font-size: 48px;
    color: #FFBF33;
  }
  .mobile_menu .links {
    width: 100%;
    display: flex;
    flex-flow: column;
    margin: auto;
  }
  .mobile_menu .links a {
    color: #FFBF33;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .mobile_menu .links a:nth-child(odd) {
    transition: 0.3s;
    transform: translateX(-1000px);
  }
  .mobile_menu .links a:nth-child(even) {
    transition: 0.9s;
    transform: translateX(1000px);
  }
  header.header#header {
    margin-bottom: 15px;
    background-position: center;
  }
  header.header#header .top_line {
    padding: 5px 0;
  }
  header.header#header .top_line .contact_info .hover {
    left: 0;
    right: unset;
  }
  header.header#header .top_line .top_menu {
    position: fixed;
    left: -1000px;
  }
  header.header#header .top_line .burger {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
  }
  header.header#header .top_line .burger span, header.header#header .top_line .burger span::before, header.header#header .top_line .burger span::after {
    content: "";
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  header.header#header .top_line .burger span {
    top: 18px;
    left: 5px;
  }
  header.header#header .top_line .burger span::before {
    top: 8px;
  }
  header.header#header .top_line .burger span::after {
    bottom: 8px;
  }
  header.header#header .top_line .burger.open span {
    width: 0;
  }
  header.header#header .top_line .burger.open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  header.header#header .top_line .burger.open span::after {
    top: 0;
    transform: rotate(135deg);
  }
  header.header#header .bottom_line {
    padding: 0;
    padding-bottom: 10px;
  }
  header.header#header .bottom_line .logo img {
    max-width: 125px;
    margin: 0;
  }
  header.header#header .bottom_line .search {
    display: none;
  }
  header.header#header .bottom_line .cart {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 0;
  }
  header.header#header .bottom_line .cart img {
    margin: 0;
  }
  .main_menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
  }
  footer.footer#footer .top_line {
    flex-flow: column;
  }
  footer.footer#footer .top_line .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  footer.footer#footer .top_line .logo img {
    max-width: 125px;
  }
  main .select_auto_wrap {
    margin-bottom: 20px;
    padding: 0;
    background-position: center;
  }
  main .select_auto_wrap .select_auto h2 {
    padding: 10px 0;
  }
  main .select_auto_wrap .select_auto .select_auto_links {
    padding: 10px;
  }
  main .select_auto_wrap .select_auto .select_auto_links a {
    width: calc(50% - 10px);
    font-size: 14px;
  }
  main .popular_cat_wrap {
    margin-bottom: 20px;
  }
  main .popular_cat_wrap h2 {
    font-size: 20px;
    margin: 0;
  }
  main .popular_cat_wrap .popular_cat_links {
    width: 100%;
  }
  main .popular_cat_wrap .popular_cat_links .cat {
    width: calc(50% - 5px);
    margin: 5px 0;
    margin-right: 10px;
    justify-content: space-between;
  }
  main .popular_cat_wrap .popular_cat_links .cat:nth-child(even) {
    margin-right: 0;
  }
  main .popular_product_wrap .popular_product_slider .slick-next {
    right: 0 !important;
  }
  main .popular_product_wrap .popular_product_slider .slick-prev {
    left: 0 !important;
  }
  main .popular_product_wrap .popular_product_slider .product {
    margin: 0 25px;
  }
  .single-main .btn_oneclick_wrap input {
    font-size: 17px;
    width: 50%;
  }
  .single-main .btn_oneclick_wrap .btn_oneclick {
    width: 50%;
  }
  .single-main form.cart {
    flex-flow: column;
    align-items: center;
  }
  .single-main form.cart .quantity {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 10px auto !important;
  }
  .single-main form.cart .single_add_to_cart_button {
    width: 100%;
  }
  .single-main .products li.product {
    margin: 5px 0 !important;
  }
  .single-main #comment-respond {
    width: 100%;
  }
  .single-main #comment-respond h3 {
    font-size: 28px;
  }
  .with_sidebar .page_wrap {
    flex-flow: column;
  }
  .with_sidebar .page_wrap aside, .with_sidebar .page_wrap article {
    width: 100% !important;
  }
  .with_sidebar .page_wrap article .products li.product {
    margin: 5px 0;
  }
  .with_sidebar .page_wrap article .products li.product .woocommerce-loop-product__title {
    font-size: 15px;
  }
  .with_sidebar .page_wrap article .products li.product .ajax_add_to_cart, .with_sidebar .page_wrap article .products li.product .product_type_simple {
    font-size: 14px;
  }
  .woocommerce-cart .product-quantity {
    display: flex !important;
    justify-content: space-between;
  }
  .woocommerce-checkout article #customer_details, .woocommerce-checkout article #order_review_heading, .woocommerce-checkout article #order_review {
    width: 100% !important;
  }
  .woocommerce-checkout article #order_review_heading {
    margin: 30px 0 20px;
  }
  .modal .modal_body {
    width: 90%;
  }
  .modal#success_modal .modal_body {
    flex-flow: column;
    align-items: center;
    width: 90%;
  }
  .modal#success_modal .modal_body img {
    max-width: 128px;
    margin: 0;
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=style.css.map */