/* Layout for search container */

.search_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search__form {
  position: relative;
  margin: 0em;
  width: 100%;
}

.search__form-inner {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.off_menu .slicknav_menu ul.slicknav_nav {
  width: 320px;
  max-width: 100%;
  position: fixed;
  height: 100vh !important;
  left: 0;
  top: 0;
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);
  transition: 0.5s ease all;
  visibility: visible;
  opacity: 1;
  z-index: 1110;
  display: block !important;
  padding-top: 40px;
}

.off_menu .slicknav_menu ul.slicknav_nav.slicknav_hidden {
  left: -100%;
  opacity: 0;
  visibility: hidden;
  width: 0;
  z-index: -1;
}

.off_menu.right_side .slicknav_menu ul.slicknav_nav {
  right: 0;
  left: inherit;
}

.off_menu.right_side .slicknav_menu ul.slicknav_nav.slicknav_hidden {
  right: -100%;
  left: inherit;
}

.off_menu.right_side .off_menu_overlay {
  left: -100%;
}

.off_menu.right_side .off_menu_overlay.active {
  left: 0%;
}

.off_menu_overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 111;
  top: 0%;
  right: -100%;
  background: rgb(0 0 0 / 75%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease all;
}

.off_menu_overlay.active {
  right: 0%;
  opacity: 1;
  visibility: visible;
}

.off_menu_close.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.off_menu_close {
  position: fixed;
  top: 3px;
  left: -100%;
  z-index: 1111;
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease all;
}

.off_menu.right_side .off_menu_close {
  left: inherit;
  right: -100%;
}

.off_menu.right_side .off_menu_close.active {
  right: 0;
}

.search_input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #000;
}

.search_input::-moz-placeholder {
  opacity: 1;
  /* Mozilla Firefox 19+ */
  color: #000;
}

.search_input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}

.search_input::-webkit-search-cancel-button,
.search_input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.search_input::-ms-clear {
  display: none;
}

/************************/

/* Transitions 			*/

/************************/

svg.icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: currentColor;
}

/* Close button */

/* Search form with input and description */

@keyframes scaleUpDown {
  0% {
    opacity: 1;
    transform: scale3d(1, 0, 1);
  }
  50% {
    transform: scale3d(1, 1, 1);
    transform-origin: 50% 0;
    transition-timing-function: ease-out;
  }
  50.1% {
    transform-origin: 50% 100%;
    transition-timing-function: ease-out;
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 0, 1);
    transform-origin: 50% 100%;
    transition-timing-function: ease-out;
  }
}

/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 */

.slicknav_btn,
.slicknav_nav .slicknav_item {
  cursor: pointer;
}

.slicknav_menu,
.slicknav_menu * {
  box-sizing: border-box;
}

.slicknav_btn {
  position: relative;
  display: block;
  float: right;
  padding: 0.438em 0.625em;
  line-height: 1.125em;
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em;
}

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 0 0 0.438em;
}

.slicknav_menu .slicknav_icon:before {
  background: 0 0;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}

.slicknav_menu .slicknav_no-text {
  margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.slicknav_menu:after,
.slicknav_menu:before {
  content: " ";
  display: table;
}

.slicknav_menu:after {
  clear: both;
}

.slicknav_nav li,
.slicknav_nav ul {
  display: block;
}

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item a {
  display: inline;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  display: block;
}

.slicknav_nav .slicknav_parent-link a {
  display: inline;
}

.slicknav_menu {
  zoom: 1;
  font-size: 16px;
  background: #fff;
  padding: 5px;
}

.slicknav_nav,
.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
}

.slicknav_menu .slicknav_icon-bar {
  background-color: #fff;
}

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #222;
}

.slicknav_nav {
  clear: both;
  color: #fff;
  margin: 0;
  font-size: 0.875em;
}

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

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 5px 15px;
  margin: 0;
}

.slicknav_nav .slicknav_row:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #222;
  color: #fff;
}

.slicknav_nav a {
  text-decoration: none;
  color: #1d2733;
}

.slicknav_nav a:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #333;
  color: #4c7aba;
}

.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0;
}

.slicknav_brand {
  float: left;
  color: #333;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

.slicknav_nav li > a {
  border-bottom: 1px solid #e5e5e5;
}

.slicknav_nav li > a .slicknav_arrow {
  float: right;
  margin: 0;
}

.slicknav_nav li > a.slicknav_row:hover {
  background: none;
  border-radius: 0;
  color: #4c7aba;
}

.slicknav_nav li > a.slicknav_row a {
  color: inherit;
}

.slicknav_nav li > a.slicknav_row a:hover {
  background: none;
}

.slicknav_nav li > ul.dropdown-menu {
  position: relative;
  width: 100%;
  margin: 0;
  border: none;
  background: #efefef;
  border-radius: 0;
  float: none;
}

.slicknav_nav li > ul.dropdown-menu li > a,
.slicknav_nav li > ul.dropdown-menu li.active > a {
  background: none;
  border-color: #d0d0d0;
  padding-left: 30px;
  font-size: 14px;
  line-height: 34px;
  font-weight: 500;
}

.slicknav_nav li:last-child > a {
  border: none;
}

.slicknav_open span.slicknav_icon-bar:first-child {
  transform: rotate(45deg);
  margin: 0 0px 0 0px;
  display: block;
  left: 0px;
  top: 1px;
}

.slicknav_open span.slicknav_icon-bar:last-child {
  transform: rotate(-45deg);
  margin: 0;
  display: block;
  top: -0.5px;
  left: 0px;
}

.slicknav_open span.slicknav_icon-bar {
  display: none;
  position: relative;
}

span.slicknav_icon-bar {
  transition: 0.5s ease all;
}

/*--------------- # MiniCart Styles # ---------------*/
.cart-wrap {
  position: relative;
}
.cart-wrap a.open_cart {
  padding: 10px 10px;
  font-size: 18px; color: var(--dar-kgrey);
}.cart-wrap a.open_cart:hover {
  color: var(--main-color);
}
.cart-wrap .cart_body {
  top: 90%;
  right: 0;
  background-color: #fff;
  min-width: 440px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
}
.cart-wrap .cart_body:before {
  content: "";
  width: 14px;
  height: 14px;
  top: -7px;
  right: 32px;
  position: absolute;
  display: block;
  background-color: #fff;
  transform: rotate(45deg);
}
.classic_cart .cart_body .product_wrap {
  width: 100%;
  border-width: 0 0 1px;
  padding: 15px 20px;
  border-bottom: 1px solid #e3e3e3;
}
.classic_cart .cart_body .product_wrap a.remove_product {
  transform: translateY(-50%);
  right: 20px;
}
.classic_cart .cart_body .product_wrap a.remove_product i {
  font-size: 10px;
}
.classic_cart .cart_body .product_wrap .product a.product_thumbnail {
  margin-right: 12px;
}
.classic_cart .cart_body .product_wrap .product a.product_name {
  font-size: 13px;
}
.classic_cart .cart_body .product_wrap .product .product_quantity {
  line-height: 12px;
}
.classic_cart .cart_body .product_wrap .product .product_quantity span.product_price.amount {
  font-size: 11px;
}
.classic_cart .cart_body .product_wrap .product .product_quantity span.product_price.amount bdi {
  color: #888;
}
.classic_cart .cart_body .empty_cart_message {
  margin-top: 30px;
}
.classic_cart .cart_body .empty_cart_message i {
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--primary_color);
  text-align: center;
  border-radius: 50%;
  margin-bottom: 10px;
}
.classic_cart .cart_footer .cart_total.total {
  font-size: 14px;
  padding: 15px 20px;
}
.classic_cart .cart_footer .cart_total.total span.cart_price.amount {
  font-weight: 600;
}
.classic_cart .cart_footer .cart_buttons {
  padding: 15px 20px;
}
.classic_cart .cart_footer .cart_buttons a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.classic_cart .cart_footer .cart_buttons a.checkout {
  background-color: var(--primary_color);
  color: #fff;
}
.classic_cart .cart_footer .cart_buttons a.view_cart {
  position: relative;
  margin-top: 10px;
}
.classic_cart .cart_footer .cart_buttons a.view_cart:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background-color: var(--primary_color);
  transition: all 0.5s ease;
}
.classic_cart .cart_footer .cart_buttons a.view_cart:hover {
  color: inherit;
}
.classic_cart .cart_footer .cart_buttons a.view_cart:hover:before {
  width: 100%;
}
.modern_cart {
  position: relative;
  padding: 0;
}
.modern_cart a.open_cart {
  z-index: 2;
}
.modern_cart a.open_cart i {
  padding: 15px;
  font-size: 20px;
}
.modern_cart .cart_body {
  display: none;
  background-color: #fff;
  padding: 55px 25px 30px;
  width: 500px;
  overflow: hidden;
}
.modern_cart .cart_body button.close_cart {
  padding: 0;
  width: 45px;
  height: 45px;
  border: none;
  background-color: transparent;
  top: 5px;
  left: 10px;
}
.modern_cart .cart_body .cart_container .product_wrap.remove_transition {
  left: calc(100% + 40px);
}
.modern_cart .cart_body .cart_container .product_wrap {
  padding: 17px 0 8px;
  border-bottom: 1px solid #e2e2e2;
  transition: all 0.5s ease;
  left: 0;
}
.modern_cart .cart_body .cart_container .product_wrap .remove_product {
  top: 17px;
  height: 70px;
  text-align: center;
  width: 50px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.modern_cart .cart_body .cart_container .product_wrap .remove_product:hover {
  color: inherit;
}
.modern_cart .cart_body .cart_container .product_wrap .remove_product i {
  padding-top: 17px;
  line-height: 23px;
}
.modern_cart .cart_body .cart_container .product_wrap:hover .remove_product {
  visibility: visible;
  opacity: 1;
}
.modern_cart .cart_body .cart_container .product_wrap .product .product_thumbnail {
  margin-right: 15px;
}
.modern_cart .cart_body .cart_container .product_wrap .product .product_thumbnail img {
  object-fit: cover;
}
.modern_cart .cart_body .cart_container .product_wrap .product .product_name {
  font-size: 14px;
  font-weight: 700;
  padding-top: 17px;
}
.modern_cart .cart_body .cart_container .product_wrap .product .product_name:hover {
  color: inherit;
}
.modern_cart .cart_body .cart_container .product_wrap .product .product_quantity {
  padding-top: 17px;
  margin-left: auto;
  font-size: 14px;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_total {
  font-family: Poppins, sans-serif;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  font-size: 15px;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_total .cart_price {
  float: right;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_buttons,
.modern_cart .navbar .container-lg .cart_body .cart_container .cart_footer .cart_buttons,
.modern_cart .navbar .container-md .cart_body .cart_container .cart_footer .cart_buttons,
.modern_cart .navbar .container-sm .cart_body .cart_container .cart_footer .cart_buttons,
.modern_cart .navbar .container-xl .cart_body .cart_container .cart_footer .cart_buttons,
.modern_cart .navbar .container-xxl .cart_body .cart_container .cart_footer .cart_buttons {
  margin-top: 12px;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_buttons a {
  text-decoration: none;
  font-size: 15px;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_buttons a.checkout {
  padding: 12px 44px;
  background-color: #000;
  color: #fff;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_buttons a.view_cart {
  position: relative;
  color: #000;
}
.modern_cart .cart_body .cart_container .cart_footer .cart_buttons a.view_cart:after {
  content: "";
  height: 1px;
  top: 50%;
  transform: translateY(10px);
  right: 0;
  left: auto;
  position: absolute;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  display: block;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.modern_cart .cart_body .cart_container .cart_footer .cart_buttons a.view_cart:hover:after {
  width: 0;
  left: 0;
  right: auto;
}
.closes_cart .cart_button {
  padding: 10px 20px;
  color: #fff;
  background: #da5e3a;
  border: 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  border-radius: 0;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.2);
}
.closes_cart .cart_button:hover {
  box-shadow: none;
  text-decoration: none;
  background: #f76a43;
  color: #fff;
}
.closes_cart .cart_button:active {
  background: #f76a43;
}
.closes_cart .cart_button:active:focus {
  box-shadow: none;
}
.closes_cart .cart_button:hover {
  background-color: hsla(12, 77%, 82%, 0.568627451);
}
.products-wrapper {
  padding: 0;
  background-color: #fff;
}
.product-thumbnail {
  max-width: 100%;
}
.product-remove {
  margin-right: 20px;
}
.product-remove a {
  position: relative;
  width: auto;
  height: auto;
  font-size: 0;
}
.product-remove a:before {
  content: "Remove";
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 14px;
  color: #646464;
  background: #e2e2e2;
  padding: 12px 44px;
  transition: all 0.5s ease;
  font-family: Poppins, sans-serif;
}
.product-remove a:hover:before {
  background-color: #000;
  color: #fff;
}
.product-quantity {
  display: flex;
  align-items: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding: 8px 10px;
  background-color: #e3e3e3;
}
.product-quantity button {
  font: var(--fa-font-solid);
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  line-height: 24px;
  text-align: center;
  background-color: #fff;
}
.cart-actions:not([disabled]) .update-cart {
  background-color: #e2e2e2;
  color: #000;
  text-transform: uppercase;
  padding: 22px 44px;
  font-size: 18px;
}
.cart-actions:not([disabled]) .update-cart:hover {
  background-color: #000;
  color: #fff;
}
.cart-collaterals {
  background-color: #f8f9fa;
  padding: 40px 30px 60px;
}
.cart-collaterals .sidebar-title {
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e2e2;
}
.cart-collaterals label {
  width: 100%;
  margin-bottom: 10px;
}
.cart-collaterals .input-text {
  width: calc(70% - 2px);
  height: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cart-collaterals .input-text:focus {
  box-shadow: none;
}
.cart-collaterals .button[name="apply-coupon"] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 50px;
  width: 30%;
  background-color: #e2e2e2;
  color: #000;
  text-transform: uppercase;
  font-size: 15px;
}
.cart-collaterals .button[name="apply-coupon"]:hover {
  background-color: #000;
  color: #fff;
}
.cart-collaterals .cart-totals {
  margin-top: 20px;
}
.cart-collaterals .cart-totals .h2,
.cart-collaterals .cart-totals h2 {
  font-size: 16px;
}
.cart-collaterals .cart-totals td {
  text-align: center;
}
.cart-collaterals .cart-totals td .button {
  padding: 15px 30px;
  color: #fff;
  background: #da5e3a;
  border: none;
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  border-radius: 0;
  line-height: 20px;
  text-transform: uppercase;
}
.cart-collaterals .cart-totals td .button:hover {
  box-shadow: none;
  text-decoration: none;
  background: #f76a43;
  color: #fff;
}
.cart-collaterals .cart-totals td .button:active {
  background: #f76a43;
}
.cart-collaterals .cart-totals td .button:active:focus {
  box-shadow: none;
}
.cart-collaterals .cart-totals .shipping-calculator-button {
  display: inline-block;
  color: #646464;
  font-weight: 500;
}
.cart-collaterals .cart-totals .shipping-calculator-button:hover {
  color: #da5e3a;
}
.cart-collaterals .cart-totals .shipping-calculator-form {
  padding-top: 20px;
}
.cart-collaterals .cart-totals .select2-selection,
.cart-collaterals .cart-totals input {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #0a0a0a;
  width: 100%;
  background-color: #fff;
  height: 60px;
  border-radius: 0;
  border: 1px solid #e2e2e2;
}
.cart-collaterals .cart-totals .select2-selection:focus,
.cart-collaterals .cart-totals input:focus {
  box-shadow: none;
}
.cart-collaterals .cart-totals .select2-selection > span,
.cart-collaterals .cart-totals input > span {
  line-height: 40px;
  height: 100%;
}
.cart-collaterals .cart-totals .select2-selection::placeholder,
.cart-collaterals .cart-totals input::placeholder {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #0a0a0a;
}
.cart-collaterals .cart-totals .select2-selection > span:first-child {
  padding: 10px 20px 10px 12px;
}
.cart-collaterals .wc-proceed-to-checkout {
  padding: 0;
}
.cart-collaterals .wc-proceed-to-checkout a {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  background-color: #e2e2e2;
  color: #000;
}
.cart-collaterals .wc-proceed-to-checkout a:hover {
  background-color: #000;
  color: #fff;
}
p.return-to-shop a {
  background-color: #e2e2e2;
  color: #000;
  text-transform: uppercase;
}
p.return-to-shop a:hover {
  background-color: #000;
  color: #fff;
}
.woocommerce-cart .woocommerce .return-to-shop {
  text-align: center;
  padding-bottom: 150px;
}
.woocommerce-cart .woocommerce .return-to-shop a {
  background-color: #da5e3a;
  padding: 19px 50px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  opacity: 1;
}
.woocommerce-cart .woocommerce .return-to-shop a:hover {
  background-color: #f76a43;
}
.cart.dropdown .offcanvasCart_body {
  height: 100%;
}
.cart.dropdown .offcanvasCart_body .empty_cart_wrap {
  text-align: center;
}
.cart.dropdown .offcanvasCart_body .empty_cart_wrap .woocommerce-mini-cart__empty-message {
  color: #717171;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.cart.dropdown .offcanvasCart_body .empty_cart_wrap a {
  display: block;
  width: auto;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  color: #fff;
  background: #da5e3a;
  border: none;
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  border-radius: 0;
  line-height: 20px;
  text-transform: uppercase;
}
.cart.dropdown .offcanvasCart_body .empty_cart_wrap a:hover {
  box-shadow: none;
  text-decoration: none;
  background: #f76a43;
  color: #fff;
}
.cart.dropdown .offcanvasCart_body .empty_cart_wrap a:active {
  background: #f76a43;
}
.cart.dropdown .offcanvasCart_body .empty_cart_wrap a:active:focus {
  box-shadow: none;
}
.checkout_wrapper {
  background-color: #fff;
}
