/* My account*/
.ab-account-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  transition: all 300ms;
  opacity: 0;
  visibility: hidden;
	border-radius: 10px;
}
.ab-wrap-account.active .ab-account-modal{
  opacity: 1;
  visibility: visible;
}
.ab-wrap-account.active .ab-account-mask{
  visibility: visible;
}
.woocommerce-account:not(.woocommerce-lost-password) .ab-wrap-account .ab-account-modal{
  opacity: 0;
  visibility: hidden;
}
.woocommerce-account:not(.woocommerce-lost-password) .ab-wrap-account .ab-account-mask{
  opacity: 0;
  visibility: hidden;
}
.ab-account-modal .woocommerce-form-login.login{
	width: 100%;
	padding: 0 30px;
	text-align: center;
}
.ab-account-modal .form-row-first{
	text-align: left;
}
.ab-account-modal .form-row-last{
	text-align: left;
}
.ab-account-modal .woocommerce-form-login.login input[name=password],
.ab-account-modal .woocommerce-form-login.login input[name=username]{
	width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.ab-account-modal .woocommerce-form-login.login .woocommerce-form-login__submit{
	margin: 0 auto;
	width: 90px;
	border: 1px solid #000;
	color: #000;
}
.ab-account-modal .woocommerce-form-login.login .woocommerce-form-login__submit:hover{
	background: #000;
	color: #fff !important;
}
.ab-account-modal .woocommerce-form input {
  margin-bottom: 0;
  border: none !important;
  background: #ebebeb !important;
  border-radius: 30px !important;
}
.ab-account-modal .woocommerce-form p label{
	margin-bottom: 10px;
}
.ab-account-modal .form-row{
	position: relative;
}
.ab-account-modal .form-row label.woocommerce-form-login__rememberme{
	  margin-bottom: 0;
    width: 48%;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 0;
    text-align: left;
}
.ab-account-modal .form-row button.woocommerce-form-login__submit{
	width: 48% !important;
    border: none !important;
    background: #000;
    color: #fff !important;
    height: 36px;
    line-height: 40px;
    border-radius: 30px;
    float: right;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    padding: 0;
}
.ab-account-modal .form-row button.woocommerce-form-login__submit:hover{
    opacity: 0.8;
}
.ab-account-modal .lost_password{
	clear: both;
	padding-top: 15px;
  text-decoration: underline;
}
.ab-account-modal .line{
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
	width: 100%;
}
.ab-account-modal .line:before{
	content: '';
	width: 100%;
	height: 1px;
	background: #ccc;
	display: block;
	margin-right: 5px;
}
.ab-account-modal .line:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #ccc;
	display: block;
	margin-left: 5px;
}
.ab-account-modal a.register{
	padding: 10px 30px;
	border: 2px solid #000;
	border-radius: 30px;
	color: #000;
	font-weight: 600;
}
.ab-account-modal a.register:hover{
	background: #000;
	color: #fff;
}
.ab-account-modal .woocommerce-form p label span{
	color: #000;
	opacity: 1;
}
.ab-account-modal button {
  width: 100%;
}

.ab-account-modal .form-row {
  margin-bottom: 15px;
  width: 100% !important;
}

.ab-account-modal .wrap-register-toggle-button {
  display: none;
}

.ab-account-modal .ab-notice {
  text-align: center;
  margin-bottom: 10px;
  font-size: 80%;
  color: #fc6702;
  transition: all 300ms;
  max-height: 100vh;
  overflow: hidden;
  width: 100%;
}

.ab-account-modal:after {
  content: '';
  width: 20px;
  height: 20px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: blink 800ms infinite ease-in-out;
  z-index: 3;
  border-radius: 50%;
  visibility: hidden;
  transition: all 300ms;
}

.ab-account-modal:before {
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
  position: absolute;
  display: block;
}

.ab-account-modal.ab-loading .ab-notice {
  max-height: 0;
}

.ab-account-modal.ab-loading:after {
  visibility: visible;
}

.ab-account-modal.ab-loading:before {
  visibility: visible;
  opacity: 0.4;
}

.heading-account-modal, .additional-login-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.heading-account-modal {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.heading-account-modal .lb-login {
  text-transform: uppercase;
  color: #000;
	font-size: 20px;
  font-weight: 600;
}

.ab-account-mask {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  height: 100%;
  z-index: 111;
  opacity: 0.5;
  visibility: hidden;
}

.ab-wrap-account {
  display: flex;
	align-items: center;
	height: 100px;
  position: relative;
}
.ab-wrap-account > a{
	color: #fff;
}
.ab-wrap-account > a:hover{
	color: #8c8c8c !important;
}

.ab-wrap-account .woocommerce-MyAccount-navigation {
  position: absolute;
  top: calc(100% + 20px);
	right: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 20px 30px;
  z-index: 999;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  transition: all 300ms;
}

.ab-wrap-account .woocommerce-MyAccount-navigation.left {
  left: 0;
}

.ab-wrap-account .woocommerce-MyAccount-navigation.right {
  right: 0;
}

.ab-wrap-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
}

.ab-wrap-account .woocommerce-MyAccount-navigation li {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  white-space: nowrap;
  line-height: 1.3;
  font-size: 14px;
}

.ab-wrap-account .woocommerce-MyAccount-navigation a {
  color: #000;
	background: none !important;
}

.ab-wrap-account:hover .woocommerce-MyAccount-navigation {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.ab-wrap-account:hover .ab-account-btn {
  color: #fff !important;
}

.ab-account-btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
	font-weight: 600;
	margin: 0 !important;
	color: #fff;
}
.ab-wrap-account:hover > a.ab-account-btn{
	color: #fff !important;
}
.ab-account-btn img {
  width: 20px;
	margin-right: 5px
}
.ab-account-btn i:before{
	display: none
}


input.ab-toggle-input {
  display: none;
}
.redq-quantity{
	display: block !important;
	position: relative;
}
.redq-quantity:before{
	content: '';
	width: calc(100% - 20px);
	height: 50px;
	position: absolute;
	bottom: 0;
	z-index: 2;
	display: block;
}
.redq-quantity input{
	border: 1px solid #ebebeb !important;
	padding-right: 0;
}
@media (min-width: 577px){
.ab-account-modal {
    max-width: 430px;
    height: auto;
}
}
.woocommerce-account .woocommerce {
  margin: 50px auto;
}

.woocommerce-account .woo-slg-social-container {
  margin: 30px 0;
}

.woocommerce-account .woo-slg-social-container legend {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.woocommerce-account .woo-slg-social-container legend:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-right: 10px;
}

.woocommerce-account .woo-slg-social-container legend:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-left: 10px;
}

.woocommerce-account .woo-slg-social-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce-account .woo-slg-social-wrap > * {
  width: 32%;
  margin: 0 0 10px 0;
}

.woocommerce-account #customer_login h2 {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.woocommerce-account #customer_login h2:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin-right: 10px;
}

.woocommerce-account #customer_login h2:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin-left: 10px;
}

.woocommerce-account #customer_login .woocommerce-form {
  border: 1px solid #ebebeb;
  margin-top: 20px;
}

.woocommerce-account #customer_login .woocommerce-form input {
  border: 1px solid #1da1f2;
}

.woocommerce-account #customer_login .woocommerce-form .form-row button[type=submit] {
  background: #1da1f2;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.woocommerce-account #customer_login .woocommerce-form .form-row button[type=submit]:hover {
  background: #0077b5;
}

.woocommerce-account .lost_reset_password {
  padding: 30px;
  max-width: 60%;
  margin: 0 auto;
  border: 2px solid #1da1f2;
  text-align: center;
  border-radius: 5px;
}

.woocommerce-account .lost_reset_password input {
  border: 1px solid #1da1f2;
}

.woocommerce-account .lost_reset_password .form-row.woocommerce-form-row {
  width: 100%;
}

.woocommerce-account .lost_reset_password .form-row.woocommerce-form-row button[type=submit] {
  background: #1da1f2;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.woocommerce-account .lost_reset_password .form-row.woocommerce-form-row button[type=submit]:hover {
  background: #0077b5;
}

.woocommerce-account div.woocommerce .woocommerce-MyAccount-navigation {
  width: 25%;
}

.woocommerce-account div.woocommerce .woocommerce-MyAccount-navigation ul {
  padding: 0 25px;
  border-right: 1px solid #ebebeb;
}

.woocommerce-account div.woocommerce .woocommerce-MyAccount-navigation ul li {
  padding: 8px 0;
}

.woocommerce-account div.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #fc6702;
}

.woocommerce-account div.woocommerce .woocommerce-MyAccount-content {
  width: 75%;
  padding: 0 25px;
}

/* Cart canvas*/
.elementor-menu-cart__product-name .variation {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  margin: 10px 0 20px 0;
}

.elementor-menu-cart__product-name .variation > * {
  width: 50%;
  margin: 0;
}

.elementor-menu-cart__product-name .variation > * p {
  margin: 0;
}

/* Cart page */
body.woocommerce-cart .woocommerce {
  background: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
}

body.woocommerce-cart .woocommerce .cart-collaterals .checkout-button {
  background: #000 !important;
  font-size: 14px !important;
  text-transform: uppercase;
}

body.woocommerce-cart .coupon {
  display: flex;
}

body.woocommerce-cart .coupon .input-text {
  width: auto !important;
}

body.woocommerce-cart .cross-sells h2,
body.woocommerce-cart .cart_totals h2 {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

body.woocommerce-cart .cross-sells {
  padding: 10px;
}

body.woocommerce-cart .quantity .qty {
  padding: 5px;
}

/* Checkout page */
body.woocommerce-checkout .woocommerce {
  background: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px;
}

body.woocommerce-checkout .woocommerce #place_order {
  background: #000 !important;
  color: #fff !important;
  font-size: 14px !important;
  text-transform: uppercase;
  font-weight: normal !important;
  padding: 15px 35px;
}

body.woocommerce-checkout .woocommerce #place_order:hover {
  background: #0077b5 !important;
}

body.woocommerce-checkout form #customer_details {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

body.woocommerce-checkout form h3 {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  float: none !important;
}

body.woocommerce-checkout form h3:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin-right: 10px;
}

body.woocommerce-checkout form h3:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin-left: 10px;
}

body.woocommerce-checkout .woocommerce-order p.woocommerce-notice {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  float: none !important;
  margin-bottom: 30px;
  color: #000;
  font-weight: bold;
}

body.woocommerce-checkout .woocommerce-order p.woocommerce-notice:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-right: 10px;
}

body.woocommerce-checkout .woocommerce-order p.woocommerce-notice:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-left: 10px;
}

body.woocommerce-checkout .woocommerce-order .woocommerce-order-overview {
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  body.woocommerce-checkout .woocommerce-order .woocommerce-order-overview li {
    width: 50%;
    margin: 0;
    padding: 10px 10px 10px 0;
    border: none;
  }
}

@media (max-width: 768px) {
  body.woocommerce-checkout .woocommerce-order .woocommerce-order-overview {
    justify-content: flex-start;
  }
}

body.woocommerce-checkout .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  float: none !important;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
}

body.woocommerce-checkout .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-right: 10px;
}

body.woocommerce-checkout .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-left: 10px;
}

body.woocommerce-checkout .woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  margin: 0;
}

body.woocommerce-checkout .woocommerce-bacs-bank-details .wc-bacs-bank-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  background: #ebebeb;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  body.woocommerce-checkout .woocommerce-bacs-bank-details .wc-bacs-bank-details li {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
  }
}

body.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  float: none !important;
  margin-bottom: 30px;
  margin-top: 50px;
  color: #000;
  font-weight: bold;
}

body.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-right: 10px;
}

body.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fc6702;
  margin-left: 10px;
}

body.woocommerce-checkout .woocommerce-order-details ul.wc-item-meta {
  padding: 0;
}

body.woocommerce-checkout .woocommerce-order-details ul.wc-item-meta li {
  padding: 5px 0;
}