@-webkit-keyframes add-to-cart-loading-animation {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes add-to-cart-loading-animation {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*
Color
*/

/*
Shapes
*/

.flex-center-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.arrow-up {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.1);
}

.arrow-down {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

.item-count {
  background: #2b4b80;
  color: #fff;
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  border-radius: 50%;
  line-height: 2.1;
  margin-left: 10px;
}

.visualcomposerstarter .products .button.add_to_cart_button, .visualcomposerstarter .products .button.product_type_grouped, .visualcomposerstarter .products .button.product_type_simple {
  padding: 17px 0;
  text-align: center;
  border-radius: 0;
}

.visualcomposerstarter .products .button.product_type_external {
  padding: 17px;
  text-align: center;
  border-radius: 0;
}

.visualcomposerstarter .products .product .button.add_to_cart_button {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 22px 32px;
  background: -moz-linear-gradient(231deg, #C09454 0%, #412E23 100%) 0% 0% no-repeat padding-box !important;
  background: -webkit-linear-gradient(231deg, #C09454 0%, #412E23 100%) 0% 0% no-repeat padding-box !important;
  background: transparent linear-gradient(231deg, #C09454 0%, #412E23 100%) 0% 0% no-repeat padding-box !important;
  color: #F6EA98 !important;
  border: 1px solid #C09454;
}

.visualcomposerstarter .products .product .button.add_to_cart_button:hover {
  background: rgb(65,46,35) !important;
    background: -moz-linear-gradient(45deg, rgba(65,46,35,1) 0%, rgba(65,46,35,1) 100%) !important;
    background: -webkit-linear-gradient(
45deg
, rgba(65,46,35,1) 0%,rgba(65,46,35,1) 100%) !important;
    background: linear-gradient(
45deg
, rgba(65,46,35,1) 0%,rgba(65,46,35,1) 100%) !important;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart {
  /*border-spacing: 0px 10px;*/
}

.visualcomposerstarter .products .added_to_cart {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 17px;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  color: #fff;
  background: #51c15c;
  -webkit-transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.visualcomposerstarter .products .added_to_cart:hover {
  background: #3ba445;
}

.visualcomposerstarter .products .add_to_cart_button.button.loading {
  opacity: 0.7;
  color: transparent;
  cursor: not-allowed;
}

.visualcomposerstarter .products .add_to_cart_button.button.loading::after {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: transparent url(../images/spinner-light.svg) 50% 50% no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: add-to-cart-loading-animation 1.08s linear infinite;
  animation: add-to-cart-loading-animation 1.08s linear infinite;
}

.visualcomposerstarter .woocommerce button.button,
.visualcomposerstarter .woocommerce a.button,
.visualcomposerstarter .woocommerce .woocommerce-MyAccount-content a.edit,
.visualcomposerstarter .woocommerce .button.checkout-button,
.visualcomposerstarter .woocommerce #place_order,
.visualcomposerstarter .woocommerce .woocommerce-mini-cart__buttons.buttons a,
.visualcomposerstarter .woocommerce .button.wc-backward,
.visualcomposerstarter .woocommerce .vct-thank-you-footer a,
.visualcomposerstarter .woocommerce .track_order .button,
.visualcomposerstarter .woocommerce .woocommerce-EditAccountForm .button,
.visualcomposerstarter .woocommerce .woocommerce-orders-table__cell .button {
  border-radius: 0;
  text-transform: uppercase;
  background: rgb(253,252,167) !important;
  background: -moz-linear-gradient(45deg, rgba(253,252,167,1) 0%, rgba(214,182,107,1) 100%) !important;
  background: -webkit-linear-gradient(45deg, rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%) !important;
  background: linear-gradient(45deg, rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%) !important;
  color: var(--color-black) !important;
  font-size: 16px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 700 !important;
  letter-spacing: 1px;
}
.visualcomposerstarter .woocommerce button.button:hover {
	background: red;
}
.visualcomposerstarter .woocommerce td.woocommerce-orders-table__cell-order-actions a.button {
  background-image: none !important;
  color: #D6B66B !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  text-decoration: underline;
}
.visualcomposerstarter .woocommerce td.woocommerce-orders-table__cell-order-actions a.button:hover,
.visualcomposerstarter .woocommerce td.woocommerce-orders-table__cell-order-actions a.button:focus {
  color: var(--color-white) !important;
}

/*.visualcomposerstarter .woocommerce button.button:hover, .visualcomposerstarter .woocommerce a.button:hover, .visualcomposerstarter .woocommerce .woocommerce-MyAccount-content a.edit:hover, .visualcomposerstarter .woocommerce .button.checkout-button:hover, .visualcomposerstarter .woocommerce #place_order:hover, .visualcomposerstarter .woocommerce .woocommerce-mini-cart__buttons.buttons a:hover, .visualcomposerstarter .woocommerce .button.wc-backward:hover, .visualcomposerstarter .woocommerce .vct-thank-you-footer a:hover, .visualcomposerstarter .woocommerce .track_order .button:hover, .visualcomposerstarter .woocommerce .woocommerce-EditAccountForm .button:hover, .visualcomposerstarter .woocommerce .woocommerce-orders-table__cell .button:hover {*/
/*  transition: 0s;*/
/*  background: transparent linear-gradient(180deg, #f7d800 0%, #ff8401 100%) !important;*/
/*  color: black !important;*/
/*}*/
tbody tr.woocommerce-orders-table__row.woocommerce-orders-table__row--status-processing.order td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a:hover {
  color: #fab600 !important;
  text-decoration: underline !important;
  background: transparent !important;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td a {
  padding: 0;
  background: transparent;
  color: white;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
	letter-spacing: 0px;
}

.visualcomposerstarter .woocommerce .button.woocommerce-button--next, .visualcomposerstarter .woocommerce .button.woocommerce-button--previous, .visualcomposerstarter .woocommerce .woocommerce-MyAccount-content a.edit {
  padding: 8px 30px;
  font-weight: 600;
  font-size: 12px;
}

.visualcomposerstarter .woocommerce .woocommerce-MyAccount-downloads-file.button.alt {
  padding: 15px 20px;
  color: #fff;
}

.visualcomposerstarter .woocommerce .woocommerce-orders-table__cell .button {
  padding: 13px 20px;
}

.visualcomposerstarter .woocommerce .vct-thank-you-footer a, .visualcomposerstarter .woocommerce .track_order .button {
  padding: 23px 60px;
}

.visualcomposerstarter .woocommerce .track_order .button {
  margin: 20px 0 0;
}
.woocommerce-form-login label {
    color: #000;
}
.visualcomposerstarter .woocommerce #place_order {
  text-transform: none;
  font-size: 16px;
  padding: 17px 0;
  width: 200px;
	letter-spacing: 0px;
	transition: 0s;
}

.visualcomposerstarter .woocommerce .button[name="update_cart"], .visualcomposerstarter .woocommerce .button[name="apply_coupon"], .visualcomposerstarter .woocommerce .vct-checkout-button {
  border: 2px solid;
  border-radius: 0;
  padding: 15px 68px;
  text-transform: uppercase;
  float: right;
  font-size: 12px;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.visualcomposerstarter .woocommerce .button[name="update_cart"]:disabled[disabled], .visualcomposerstarter .woocommerce .button[name="apply_coupon"]:disabled[disabled], .visualcomposerstarter .woocommerce .vct-checkout-button:disabled[disabled], .visualcomposerstarter .woocommerce .button[name="update_cart"]:disabled, .visualcomposerstarter .woocommerce .button[name="apply_coupon"]:disabled, .visualcomposerstarter .woocommerce .vct-checkout-button:disabled {
  padding: 15px 68px;
}

.visualcomposerstarter .woocommerce .button[name="update_cart"]:hover, .visualcomposerstarter .woocommerce .button[name="apply_coupon"]:hover, .visualcomposerstarter .woocommerce .vct-checkout-button:hover {
  opacity: 0.8;
}

.visualcomposerstarter .woocommerce .vct-checkout-button {
  padding: 13px 68px;
}

.visualcomposerstarter #review_form #respond .form-submit .submit {
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  padding: 23px 50px;
  color: #fff;
}

.visualcomposerstarter .vct-promo.vct-visible .vct-show-promo-form::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.visualcomposerstarter .vct-show-promo-form {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: 0;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  background: var(--secondary-body-background);
  border-radius: 5px;
}

.visualcomposerstarter .vct-show-promo-form::after {
  content: "";
  position: relative;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

.visualcomposerstarter .vct-promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 0 0;
}

.visualcomposerstarter .widget.woocommerce .woocommerce-mini-cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visualcomposerstarter .widget.woocommerce a.button {
  width: 50%;
  color: #fff;
  padding: 20px 12px;
  font-size: 13px;
  text-align: center;
}

.visualcomposerstarter .widget.woocommerce a.button:last-child {
  margin-right: 0;
}

.visualcomposerstarter.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li span, .visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  margin: 0 6px;
}

.visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #547cbf;
  color: #fff;
}

.visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li .next, .visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li .prev {
  width: 60px;
  border-radius: 30px;
}

.visualcomposerstarter.woocommerce nav.woocommerce-pagination ul li a {
  background: #eee;
  color: #8c8c8c;
}

.visualcomposerstarter .vct-input-qty {
  position: relative;
  display: inline-block;
  /* For Firefox */
  /* Webkit browsers like Safari and Chrome */
}

.visualcomposerstarter .vct-input-qty .vct-input-qty-control {
  content: "";
  position: absolute;
  right: 17px;
  cursor: pointer;
}

.visualcomposerstarter .vct-input-qty .vct-input-qty-control-add {
  top: 22px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.1);
}

.visualcomposerstarter .vct-input-qty .vct-input-qty-control-remove {
  top: 33px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

.visualcomposerstarter .vct-input-qty input[type="number"] {
  -moz-appearance: textfield;
}

.visualcomposerstarter .vct-input-qty input[type="number"]::-webkit-inner-spin-button, .visualcomposerstarter .vct-input-qty input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.visualcomposerstarter .quantity .qty {
  line-height: 37px;
  height: 54px;
  width: 130px;
  text-align: center;
  letter-spacing: 3px;
  padding: 15px 22px;
  background: rgba(88, 77, 62, 0.3);
  border: 1px solid #584D3E;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--color-white);
}

.visualcomposerstarter div.product form.cart div.quantity {
  margin: 8px 20px 0 0;
}

.visualcomposerstarter div.product form.cart table div.quantity {
  margin: 0;
}

.visualcomposerstarter .vct-variable-container, .visualcomposerstarter .vct-orderby-container, .visualcomposerstarter .vct-promo-code-container {
  position: relative;
  display: inline-block;
}

.visualcomposerstarter .vct-variable-container::before, .visualcomposerstarter .vct-orderby-container::before, .visualcomposerstarter .vct-promo-code-container::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 35px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

.visualcomposerstarter .vct-orderby-container::before {
  right: 20px;
}

.visualcomposerstarter form.cart .variations select, .visualcomposerstarter .woocommerce-ordering .orderby, .visualcomposerstarter .widget.woocommerce .dropdown_product_cat {
  width: 340px;
  height: 50px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  margin-bottom: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 20px;
}

.visualcomposerstarter .widget.woocommerce .dropdown_product_cat {
  width: 100%;
  -webkit-appearance: menulist;
}

.visualcomposerstarter .vct-promo-content input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-bottom: 10px;
  height: 40px;
  padding: 10px;
}

.visualcomposerstarter .woocommerce form .form-row input,
.visualcomposerstarter .woocommerce form .form-row textarea {
  padding: 15px 22px;
  width: 100%;
  background: rgba(88, 77, 62, 0.3);
  border: 1px solid #584D3E;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--color-white);
}
.visualcomposerstarter .woocommerce form .woocommerce-SavedPaymentMethods-saveNew #wc-st_gateway-new-payment-method {
  margin-right: 5px;
}

.visualcomposerstarter .woocommerce form .form-row input::-webkit-input-placeholder,
.visualcomposerstarter .woocommerce form .form-row textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #77756D;
}
.visualcomposerstarter .woocommerce form .form-row input::-moz-placeholder,
.visualcomposerstarter .woocommerce form .form-row textarea::-moz-placeholder { /* Firefox 19+ */
  color: #77756D;
}
.visualcomposerstarter .woocommerce form .form-row input:-ms-input-placeholder,
.visualcomposerstarter .woocommerce form .form-row textarea:-ms-input-placeholder { /* IE 10+ */
  color: #77756D;
}
.visualcomposerstarter .woocommerce form .form-row input:-moz-placeholder,
.visualcomposerstarter .woocommerce form .form-row textarea:-moz-placeholder { /* Firefox 18- */
  color: #77756D;
}

.visualcomposerstarter .woocommerce form .form-row textarea {
  resize: none;
}

.visualcomposerstarter .select2 {
  border: 2px solid black;
  border-radius: 0px;
  font-size: 14px;
}

.visualcomposerstarter .select2-container--default .select2-selection--single {
  border: none;
  height: 37px;
  margin-bottom: 0;
}

.visualcomposerstarter .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  padding-left: 12px;
  padding-right: 38px;
  font-weight: 300;
}

.visualcomposerstarter .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px;
  width: 38px;
}

.visualcomposerstarter .woocommerce form .form-row.woocommerce-validated .select2-container, .visualcomposerstarter .woocommerce form .form-row.woocommerce-validated input.input-text, .visualcomposerstarter .woocommerce form .form-row.woocommerce-validated select, .visualcomposerstarter .select2-dropdown, .visualcomposerstarter.woocommerce #reviews #comment {
  border: 2px solid #3e4963;
}

.visualcomposerstarter .woocommerce form .form-row label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
.visualcomposerstarter .woocommerce form .woocommerce-SavedPaymentMethods-saveNew label {
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: capitalize;
  font-weight: 400;
}
.visualcomposerstarter .vct-cart-items-count {
  width: 23px;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  border-radius: 50%;
  line-height: normal;
  margin-left: 10px;
}

.visualcomposerstarter .vct-promo {
  margin: 0 0 30px;
}

.visualcomposerstarter .navbar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visualcomposerstarter .navbar-header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.visualcomposerstarter .vct-cart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.visualcomposerstarter .vct-cart-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.visualcomposerstarter .vct-cart-wrapper a img {
  height: 34px;
}

.visualcomposerstarter .vct-cart-wrapper a:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.visualcomposerstarter.woocommerce-cart .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  margin: 0 0 20px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .return-to-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  margin: 0;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .vcv-cart-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  padding-right: 40px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding: 0;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart {
  border: solid #584D3E 1px;
  font-weight: 300;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart thead {
  background-color: #584D3E;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart tbody {
  font-family: 'Source Sans Pro', sans-serif;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .coupon {
  display: none;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .cart_item:first-child td {
  padding-top: 0;
}

/* td.product-remove:before {
  content: "";
  width: 40px;
  height: 40px;
  background: transparent linear-gradient( 180deg, #202737 0%, #20273700 100%);
  position: absolute;
  border: solid 1px #3E4963;
  right: 10px;
  bottom: 95px;
  transform: translate(-5px, -99px);
  border-radius: 50%;
} */

td.product-remove::after {
  content: "";
  width: 44px;
  height: 44px;
  background-color: #d6b66b10;
  position: absolute;
  left: 63px;
  transform: translate(-5px, -31px);
  z-index: 1;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr:last-child td {
  border-bottom: none;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart td {
  border: none;
  border-bottom: 0;
  padding: 0px 0;
  text-align: center;
  border-bottom: solid #584D3E 1px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart img {
  width: 89px;
  height: 89px;
  object-fit: cover;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove {
  position: relative;
  width: 18px;
  height: 18px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 60%;
  z-index: 10;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  margin: 0 auto;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove img {
  height: auto;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove:before, .visualcomposerstarter .woocommerce.widget .cart_list li a.remove:before, .visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove:after, .visualcomposerstarter .woocommerce.widget .cart_list li a.remove:after {
  background-color: #fff !important;
}

tr.woocommerce-cart-form__cart-item.cart_item {
  background-color: #00000050;
}

tr.woocommerce-cart-form__cart-item.cart_item td, tr.woocommerce-cart-form__cart-item.cart_item td a, .visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr.woocommerce-cart-form__cart-item.cart_item .product-name a {
  color: white;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove::before, .visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove::before {
  display: none;
  width: 100%;
  height: 2px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove::after {
  display: none;
  width: 2px;
  height: 100%;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove:hover {
  background: transparent;
  opacity: 1;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-remove {
  width: 128px;
}

.woocommerce td.product-name dl.variation dt {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.woocommerce td.product-name dl.variation p {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 14px;
  text-transform: uppercase;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-name {
  width: 100%;
  text-align: left;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-name a {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.67px;
  display: block;
  margin-bottom: 10px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-price {
  width: 180px;
  text-align: left;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-price span {
  font-size: 16px;
  letter-spacing: -0.56px;
  line-height: 25px;
  font-weight: 500;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-subtotal {
  width: 180px;
  text-align: left;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-subtotal span {
  font-size: 16px;
  letter-spacing: -0.56px;
  line-height: 25px;
  font-weight: 500;
  color: #D6B66B;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-thumbnail {
  width: 170px;
  text-align: left;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-name a {
  text-decoration: none;
  border: none;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .quantity .qty {
  width: 90px;
  height: 50px;
  padding: 10px 30px 10px 20px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .vct-input-qty-control-add {
  top: 18px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .vct-input-qty-control-remove {
  top: 28px;
}

.visualcomposerstarter div.woocommerce-error, .visualcomposerstarter.woocommerce div.woocommerce-error, .visualcomposerstarter div.woocommerce-info, .visualcomposerstarter.woocommerce div.woocommerce-info, .visualcomposerstarter div.woocommerce-message, .visualcomposerstarter.woocommerce div.woocommerce-message {
  display: block;
  width: 100%;
  padding: 20px 30px;
  border: none;
  border-radius: 0;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
}

.visualcomposerstarter div.woocommerce-error::before, .visualcomposerstarter.woocommerce div.woocommerce-error::before, .visualcomposerstarter div.woocommerce-info::before, .visualcomposerstarter.woocommerce div.woocommerce-info::before, .visualcomposerstarter div.woocommerce-message::before, .visualcomposerstarter.woocommerce div.woocommerce-message::before {
  display: none;
}

.visualcomposerstarter div.woocommerce-error a.button, .visualcomposerstarter.woocommerce div.woocommerce-error a.button, .visualcomposerstarter div.woocommerce-info a.button, .visualcomposerstarter.woocommerce div.woocommerce-info a.button, .visualcomposerstarter div.woocommerce-message a.button, .visualcomposerstarter.woocommerce div.woocommerce-message a.button, .visualcomposerstarter div.woocommerce-error .button, .visualcomposerstarter.woocommerce div.woocommerce-error .button, .visualcomposerstarter div.woocommerce-info .button, .visualcomposerstarter.woocommerce div.woocommerce-info .button, .visualcomposerstarter div.woocommerce-message .button, .visualcomposerstarter.woocommerce div.woocommerce-message .button, .visualcomposerstarter div.woocommerce-error .restore-item, .visualcomposerstarter.woocommerce div.woocommerce-error .restore-item, .visualcomposerstarter div.woocommerce-info .restore-item, .visualcomposerstarter.woocommerce div.woocommerce-info .restore-item, .visualcomposerstarter div.woocommerce-message .restore-item, .visualcomposerstarter.woocommerce div.woocommerce-message .restore-item, .visualcomposerstarter div.woocommerce-error .showcoupon, .visualcomposerstarter.woocommerce div.woocommerce-error .showcoupon, .visualcomposerstarter div.woocommerce-info .showcoupon, .visualcomposerstarter.woocommerce div.woocommerce-info .showcoupon, .visualcomposerstarter div.woocommerce-message .showcoupon, .visualcomposerstarter.woocommerce div.woocommerce-message .showcoupon {
  float: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  border: none;
  padding: 1px 1px 1px 3px;
  font-weight: 600;
  line-height: normal;
  color: var(--secondary-color);
  background: transparent;
  font-size: 14px;
}

.visualcomposerstarter div.woocommerce-error a.button, .visualcomposerstarter.woocommerce div.woocommerce-error a.button, .visualcomposerstarter div.woocommerce-info a.button, .visualcomposerstarter.woocommerce div.woocommerce-info a.button, .visualcomposerstarter div.woocommerce-message a.button, .visualcomposerstarter.woocommerce div.woocommerce-message a.button, .visualcomposerstarter div.woocommerce-error .button, .visualcomposerstarter.woocommerce div.woocommerce-error .button, .visualcomposerstarter div.woocommerce-info .button, .visualcomposerstarter.woocommerce div.woocommerce-info .button, .visualcomposerstarter div.woocommerce-message .button, .visualcomposerstarter.woocommerce div.woocommerce-message .button, .visualcomposerstarter div.woocommerce-error .restore-item, .visualcomposerstarter.woocommerce div.woocommerce-error .restore-item, .visualcomposerstarter div.woocommerce-info .restore-item, .visualcomposerstarter.woocommerce div.woocommerce-info .restore-item, .visualcomposerstarter div.woocommerce-message .restore-item, .visualcomposerstarter.woocommerce div.woocommerce-message .restore-item {
  width: auto;
}

.visualcomposerstarter .woocommerce-error, .visualcomposerstarter.woocommerce .woocommerce-error {
  background: rgb(47 41 39 / 60%);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-empty {
  color: white;
}

.woocommerce-info, .woocommerce-info::before {
  color: var(--secondary-accent-color);
  border-top-color: var(--secondary-accent-color);
}

.woocommerce-notices-wrapper {
  width: 100%;
}

.woocommerce-notices-wrapper ..product-type-lottery:before {
  background: transparent;
}

.woocommerce-error::before {
  display: none;
}

.visualcomposerstarter .woocommerce-error li, .visualcomposerstarter.woocommerce .woocommerce-error li {
  font-size: 12px;
  color: white;
  font-weight: 600;
}

.visualcomposerstarter .woocommerce-error {
  padding: 10px 20px;
}

.visualcomposerstarter .woocommerce-error li::before, .visualcomposerstarter.woocommerce .woocommerce-error li::before, .visualcomposerstarter .woocommerce-error li::after, .visualcomposerstarter.woocommerce .woocommerce-error li::after {
  display: none;
}

.visualcomposerstarter .woocommerce-error li strong, .visualcomposerstarter.woocommerce .woocommerce-error li strong {
  margin-right: 5px;
}

.visualcomposerstarter .woocommerce-error .vct-close-woocommerce-msg-container, .visualcomposerstarter.woocommerce .woocommerce-error .vct-close-woocommerce-msg-container {
  position: absolute;
  right: 23px;
}

.visualcomposerstarter .woocommerce-info, .visualcomposerstarter.woocommerce .woocommerce-info {
  background: rgba(35, 32, 29, 0.4);
  border-radius: 0;
}

.visualcomposerstarter .woocommerce-info .showlogin, .visualcomposerstarter.woocommerce .woocommerce-info .showlogin {
  color: #fff;
  margin-left: 5px;
}

.visualcomposerstarter .woocommerce>.woocommerce-info, .visualcomposerstarter.woocommerce .woocommerce>.woocommerce-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.visualcomposerstarter .woocommerce-message, .visualcomposerstarter.woocommerce .woocommerce-message {
  background: transparent linear-gradient(180deg, #202737 0%, #20273700 100%);
  border-radius: 0px !important;
  border: solid 1px #3e4963 !important;
  font-weight: 600;
}

.visualcomposerstarter .vct-close-woocommerce-msg-container, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg-container {
  margin-left: auto !important;
}

.visualcomposerstarter .vct-close-woocommerce-msg, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: auto;
  position: relative;
}

.visualcomposerstarter .vct-close-woocommerce-msg::before, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg::before, .visualcomposerstarter .vct-close-woocommerce-msg::after, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.visualcomposerstarter .vct-close-woocommerce-msg::before, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg::before {
  width: 100%;
  height: 2px;
}

.visualcomposerstarter .vct-close-woocommerce-msg::after, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg::after {
  width: 2px;
  height: 100%;
}

.visualcomposerstarter .vct-close-woocommerce-msg::before, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg::before, .visualcomposerstarter .vct-close-woocommerce-msg::after, .visualcomposerstarter.woocommerce .vct-close-woocommerce-msg::after {
  background: #fff;
}

.visualcomposerstarter .woocommerce-store-notice.demo_store, .visualcomposerstarter.woocommerce .woocommerce-store-notice.demo_store {
  font-family: var(--font-family);
  font-style: italic;
  background: #2b4b80;
}

ul.woocommerce-PaymentMethods.payment_methods.methods, #add_payment_method #payment div.form-row {
background: #584D3E4D;
    border: solid 1px #584D3E;
}

.visualcomposerstarter .woocommerce-NoticeGroup, .visualcomposerstarter.woocommerce .woocommerce-NoticeGroup {
  width: 100%;
}

.visualcomposerstarter.woocommerce .woocommerce-result-count {
  margin: 12px 0 0;
}

.visualcomposerstarter.woocommerce ul.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.visualcomposerstarter.woocommerce ul.products li.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.visualcomposerstarter.woocommerce ul.products li.product .onsale {
  top: 2%;
  left: 4%;
  right: auto;
  width: 2%;
  margin: 0;
}

.visualcomposerstarter.woocommerce ul.products li.product .onsale svg {
  width: 100%;
  height: auto;
}

.visualcomposerstarter.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 22px;
  font-weight: 600 !important;
  color: white;
}

.visualcomposerstarter.woocommerce ul.products li.product .price {
  font-size: 16px;
}

.visualcomposerstarter.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.visualcomposerstarter.woocommerce ul.products li.product .price del {
  text-decoration: line-through;
  opacity: 1;
}

.woocommerce div.product p.price del {
  color: white;
  font-size: 18px;
  opacity: 1;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin-bottom: 0px;
  display: flex;
  border-bottom: 3px solid black;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: none;
  padding-left: 0px;
  padding-right: 0px;
  flex: 1;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 19px;
  padding: 20px 20px;
  background: #f5fafc;
  font-weight: 600;
  color: #000;
  width: 100%;
  text-align: center;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: black;
  color: white;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.visualcomposerstarter.woocommerce div.product .entry-categories a {
  text-transform: uppercase;
}

.visualcomposerstarter.woocommerce div.product .entry-categories a:hover {
  text-decoration: none;
}

.visualcomposerstarter.woocommerce div.product .product_title {
  margin-bottom: 0px;
  font-size: 70px;
  font-family: var(--font-family);
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-white);
}

.visualcomposerstarter.woocommerce div.product p.price, .visualcomposerstarter.woocommerce div.product span.price {
  font-size: 30px;
}

.visualcomposerstarter.single-product.woocommerce div.product .price-with-progress p.price, .visualcomposerstarter.single-product.woocommerce div.product .price-with-progress span.price {
  font-size: 40px;
  letter-spacing: 0.8px;
  line-height: normal;
  width: 35%;
  float: left;
  display: flex;
  margin-top: 0px;
  font-weight: 700;
  color: #f7d800;
  flex-direction: column-reverse;
}

.visualcomposerstarter.single-product.woocommerce div.product .price-with-progress p.price>span bdi {
  position: relative;
}

.visualcomposerstarter.single-product.woocommerce div.product .price-with-progress p.price>span bdi:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #fddf00;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.woocommerce.single-product div.product .price-with-progress p.price del {
  display: flex;
  align-items: center;
}

.woocommerce.single-product div.product .price-with-progress p.price del:before {
  content: "";
  height: 40px;
  width: 44px;
  display: inline-block;
  background: url(/wp-content/themes/hwd-competitions/images/sale.svg) 0% 0% / contain no-repeat;
  background-repeat: no-repeat;
}

.visualcomposerstarter.woocommerce div.product p.price ins, .visualcomposerstarter.woocommerce div.product p.price, .visualcomposerstarter.woocommerce div.product span.price, .visualcomposerstarter.woocommerce div.product span.price ins {
  text-decoration: none;
}

.visualcomposerstarter.woocommerce div.product form.cart .variations td.label {
  display: none;
}

.woocommerce-product-details__short-description a {
  color: var(--secondary-color);
}

.visualcomposerstarter.woocommerce div.product div.images .flex-control-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 12px;
}

.visualcomposerstarter.woocommerce div.product div.images .flex-control-thumbs li {
  width: auto;
  float: none;
  margin: 0 12px 12px 0;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-tabs .panel {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  background: #f5fafc;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #434343;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
.contactGitHeading {
    font-family: 'Source Sans Pro';
    font-weight: 400 !important;
}
img.alignnone.size-full.wp-image-1253498 {
    width: 21px;
    height: auto;
}
.contactSubHeading {
    color: #97938E;
}
body.page-id-1252704 div#wpcf7-f1252707-p1252704-o1 {
    margin: 0 -40px;
}
.woocommerce form .form-row.woocommerce-invalid label {
    color: #F2EED1;
    font-size: 15px !important;
    letter-spacing: 0.75px;
    line-height: 19px;
    margin-bottom: 15px;
}
.visualcomposerstarter.woocommerce div.product .woocommerce-variation-price {
  margin-bottom: 20px;
}

.visualcomposerstarter.woocommerce div.product .woocommerce-Reviews-title {
  margin-bottom: 40px;
  font-size: 30px;
}

.visualcomposerstarter.woocommerce .star-rating::before {
  content: "\53\53\53\53\53";
  color: rgba(0, 0, 0, 0.15);
}

.visualcomposerstarter.woocommerce .star-rating span::before {
  color: #fac917;
}

.visualcomposerstarter.woocommerce .visualcomposerstarter .woocommerce-Price-amount {
  font-size: 30px;
  font-weight: 600;
}

.visualcomposerstarter.woocommerce span.onsale {
  top: 20px;
  left: 20px;
  background: none;
}

button.single_add_to_cart_button {
  text-align: center;
  background: rgb(253,252,167);
  background: -moz-linear-gradient(45deg,  rgba(253,252,167,1) 0%, rgba(214,182,107,1) 100%);
  background: -webkit-linear-gradient(45deg,  rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%);
  background: linear-gradient(45deg,  rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfca7', endColorstr='#d6b66b',GradientType=1 );
  color: var(--color-black) !important;
  text-decoration: none;
  font-size: 16px;
  border-radius: 0%;
  padding: 10px 35px;
}

.moreCompbtn {
  border: transparent;
  text-transform: uppercase;
  font-weight: bold;
}

.visualcomposerstarter.woocommerce button.button, .visualcomposerstarter.woocommerce button.button.alt.disabled {
  text-align: center;
  background: rgb(253,252,167);
  background: -moz-linear-gradient(45deg,  rgba(253,252,167,1) 0%, rgba(214,182,107,1) 100%);
  background: -webkit-linear-gradient(45deg,  rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%);
  background: linear-gradient(45deg,  rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfca7', endColorstr='#d6b66b',GradientType=1 );
  color: var(--color-black) !important;
  text-decoration: none;
  font-size: 16px;
  border-radius: 0%;
  padding: 10px 35px;
  width: 60%;
  margin-top: 12px;
}

.visualcomposerstarter.woocommerce button.button:hover {
  background: transparent;
  color: var(--primary-button-background);
}

.visualcomposerstarter.woocommerce .entry-summary .product_meta {
  margin-bottom: 30px;
}

.visualcomposerstarter.woocommerce table.shop_attributes {
  border: none;
}

.visualcomposerstarter.woocommerce table.shop_attributes th, .visualcomposerstarter.woocommerce table.shop_attributes td {
  border: none;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px;
}

.visualcomposerstarter.woocommerce p.stars a {
  border: none;
}

.visualcomposerstarter.woocommerce p.stars a::before, .visualcomposerstarter.woocommerce p.stars a:hover~a::before {
  content: "\e020";
  color: rgba(0, 0, 0, 0.15);
}

.visualcomposerstarter.woocommerce p.stars:hover a::before, .visualcomposerstarter.woocommerce p.stars.selected a.active::before, .visualcomposerstarter.woocommerce p.stars.selected a:not(.active)::before {
  color: #fac917;
}

.visualcomposerstarter.woocommerce p.stars.selected a.active~a::before {
  content: "\e020";
  color: rgba(0, 0, 0, 0.15);
}

.visualcomposerstarter.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}

.visualcomposerstarter.woocommerce #reviews #comments ol.commentlist li .comment-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 87%;
  flex: 0 0 87%;
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #e4e1e3;
}

.visualcomposerstarter.woocommerce #reviews #comments ol.commentlist .comment_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.visualcomposerstarter.woocommerce #reviews #comments ol.commentlist li img.avatar {
  float: none;
  position: relative;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  height: 8%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8%;
  flex: 0 0 8%;
}

.visualcomposerstarter.woocommerce .comment-reply-title {
  display: inline-block;
  font-size: 30px;
  margin: 10px 0;
}

.visualcomposerstarter.woocommerce .related.products {
  clear: both;
}

.visualcomposerstarter.woocommerce .related.products span.price {
  font-size: 16px;
}

.visualcomposerstarter.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
}

.visualcomposerstarter .woocommerce form.checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.visualcomposerstarter .woocommerce form.checkout .vct-main-form-content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  padding-right: 50px;
}

.visualcomposerstarter .woocommerce form.checkout .vct-main-form-content h3 {
  margin-top: 20px;
}

.visualcomposerstarter .woocommerce form.checkout .vct-side-summary {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.visualcomposerstarter .woocommerce form.checkout #payment.woocommerce-checkout-payment {
  background: transparent;
  background: var(--secondary-color);
  border-radius: 0;
  margin-top: 15px;
}

.visualcomposerstarter .woocommerce form.checkout .woocommerce-billing-fields h3:first-child {
  margin-top: 0;
  color: white !important;
  font-weight: 600;
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(88, 77, 62, 0.3);
  padding-bottom: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.visualcomposerstarter .woocommerce form.checkout .woocommerce-billing-fields__field-wrapper {}

.visualcomposerstarter .woocommerce form.checkout .form-row {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-bottom: 15px;
}

.visualcomposerstarter .woocommerce form.checkout .form-row-small {
  -ms-flex-preferred-size: 47%;
  flex-basis: 47%;
}

.visualcomposerstarter .woocommerce form.checkout .wc_payment_methods {
  padding: 1em 0;
}

.visualcomposerstarter .woocommerce form.checkout .payment_methods label {
  cursor: pointer;
  display: block;
}

.visualcomposerstarter .woocommerce form.checkout #payment ul.payment_methods {
  padding: 1em 0;
  border-bottom: 0px;
}

.visualcomposerstarter .woocommerce form.checkout .payment_methods .wc_payment_method>label {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary-accent-color);
  padding-left: 35px;
  position: relative;
}

.visualcomposerstarter .woocommerce form.checkout .payment_methods .wc_payment_method>label:before {
  content: "";
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 5px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.visualcomposerstarter .woocommerce form.checkout .payment_methods .wc_payment_method>input:checked+label:before {
background: #c09454fa;
    border: solid 1px #c09454fa;
    box-shadow: inset 0px 0px 0px 3px #1b1711;
}

.form-row.place-order a {
  color: var(--secondary-accent-color);
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  color: #fff;
}

#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea,
.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea {
  background: rgba(88, 77, 62, 0.3);
  border: 1px solid #584D3E !important;
  color: var(--color-white);
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  background-size: 40px !important;
}
#add_payment_method #payment div.payment_box input.input-text::-webkit-input-placeholder,
#add_payment_method #payment div.payment_box textarea::-webkit-input-placeholder,
.woocommerce-cart #payment div.payment_box input.input-text::-webkit-input-placeholder,
.woocommerce-cart #payment div.payment_box textarea::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box input.input-text::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #77756D;
}
#add_payment_method #payment div.payment_box input.input-text::-moz-placeholder,
#add_payment_method #payment div.payment_box textarea::-moz-placeholder,
.woocommerce-cart #payment div.payment_box input.input-text::-moz-placeholder,
.woocommerce-cart #payment div.payment_box textarea::-moz-placeholder,
.woocommerce-checkout #payment div.payment_box input.input-text::-moz-placeholder,
.woocommerce-checkout #payment div.payment_box textarea::-moz-placeholder { /* Firefox 19+ */
  color: #77756D;
}
#add_payment_method #payment div.payment_box input.input-text:-ms-input-placeholder,
#add_payment_method #payment div.payment_box textarea:-ms-input-placeholder,
.woocommerce-cart #payment div.payment_box input.input-text:-ms-input-placeholder,
.woocommerce-cart #payment div.payment_box textarea:-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box input.input-text:-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box textarea:-ms-input-placeholder { /* IE 10+ */
  color: #77756D;
}
#add_payment_method #payment div.payment_box input.input-text:-moz-placeholder,
#add_payment_method #payment div.payment_box textarea:-moz-placeholder,
.woocommerce-cart #payment div.payment_box input.input-text:-moz-placeholder,
.woocommerce-cart #payment div.payment_box textarea:-moz-placeholder,
.woocommerce-checkout #payment div.payment_box input.input-text:-moz-placeholder,
.woocommerce-checkout #payment div.payment_box textarea:-moz-placeholder { /* Firefox 18- */
  color: #77756D;
}

.woocommerce-privacy-policy-text, span.woocommerce-terms-and-conditions-checkbox-text {
font-size: 14px;
    font-weight: 300;
    color: #97938e;
    line-height: 28px;
    font-family: 'Source Sans Pro';
	text-transform: none; 
}

span.woocommerce-terms-and-conditions-checkbox-text {
  text-align: left;
}

p.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated label {
  color: #828484;
}

.visualcomposerstarter .woocommerce form.checkout #payment #place_order {
  display: block;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
  padding: 20px 0px;
}

.visualcomposerstarter .woocommerce form.checkout #payment ul.payment_methods li {
  padding: 0;
  border: 0px;
  margin-bottom: 0;
  border-radius: 0px;
}

.visualcomposerstarter .woocommerce form.checkout #payment ul.payment_methods li.woocommerce-notice {
  border: none;
  padding: 23px;
  border-radius: 5px;
}

.visualcomposerstarter .woocommerce form.checkout #payment ul.payment_methods li .input-radio {
  display: none;
}

.visualcomposerstarter .woocommerce form.checkout #payment div.payment_box {
  background-color: transparent;
}

.visualcomposerstarter .woocommerce form.checkout #payment div.payment_box::before {
  display: none;
}

.visualcomposerstarter .woocommerce form.checkout #payment .payment_method_paypal .about_paypal {
  display: inline-block;
  margin-left: 20px;
  float: none;
  line-height: 1;
}

.visualcomposerstarter .woocommerce form.checkout #payment div.form-row {
  padding: 1em 0;
}

.visualcomposerstarter .woocommerce form.checkout label.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.visualcomposerstarter .woocommerce form.checkout label.checkbox .input-checkbox {
  width: auto;
  position: relative;
}

.visualcomposerstarter .woocommerce form.checkout #payment #place_order {
  float: none;
}

.visualcomposerstarter .woocommerce.widget ins {
  text-decoration: none;
}

.visualcomposerstarter .woocommerce.widget span.product-title, .visualcomposerstarter .woocommerce.widget li a {
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

td.woocommerce-table__product-name.product-name a {
  color: white;
  border-bottom: transparent;
}
td.woocommerce-table__product-name.product-name a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
.woocommerce-page #payment #place_order:hover {
  background: linear-gradient(
45deg
, rgba(214,182,107,1) 0%,rgba(214,182,107,1) 100%) !important;
}

.visualcomposerstarter .woocommerce.widget span.product-title:hover, .visualcomposerstarter .woocommerce.widget li a:hover {
  opacity: 0.7;
}

.visualcomposerstarter .woocommerce.widget .product-categories {
  padding: 0;
}

.visualcomposerstarter .woocommerce.widget .cat-item {
  margin-bottom: 10px;
  list-style: none;
  padding-left: 35px;
  position: relative;
}

.visualcomposerstarter .woocommerce.widget .cat-item::before {
  content: "\2022";
  font-size: 1.5em;
  position: absolute;
  left: 20px;
  top: -4px;
  line-height: 1.3;
  color: #557cbf;
}

.visualcomposerstarter .woocommerce.widget .cat-item span {
  color: rgba(0, 0, 0, 0.5);
}

.visualcomposerstarter .woocommerce.widget .cat-item.cat-parent {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.visualcomposerstarter .woocommerce.widget .cat-item.cat-parent a {
  display: inline-block;
  margin-bottom: 10px;
}

.visualcomposerstarter .woocommerce.widget .cat-item.cat-parent .children {
  padding: 0;
}

.visualcomposerstarter .woocommerce.widget .cat-item.cat-parent .children .cat-item a {
  margin-bottom: 0;
}

.visualcomposerstarter .woocommerce.widget .cart_list li a.remove {
  position: absolute;
  width: 18px;
  height: 18px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 15px;
  opacity: 0.8;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.visualcomposerstarter .woocommerce.widget .cart_list li a.remove::before, .visualcomposerstarter .woocommerce.widget .cart_list li a.remove::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.visualcomposerstarter .woocommerce.widget .cart_list li a.remove::before {
  width: 100%;
  height: 2px;
}

.visualcomposerstarter .woocommerce.widget .cart_list li a.remove::after {
  width: 2px;
  height: 100%;
}

.visualcomposerstarter .woocommerce.widget .cart_list li a.remove:hover {
  background: transparent;
  opacity: 1;
}

.visualcomposerstarter .woocommerce.widget.widget_shopping_cart .total {
  border-top: 1px solid #ebe9eb;
  padding: 15px 0;
  margin: 15px 0 0;
}

.visualcomposerstarter .woocommerce.widget .woocommerce-product-search {
  position: relative;
}

.visualcomposerstarter .woocommerce.widget .woocommerce-product-search::after {
  content: "\70";
  font-family: "Visual Composer Starter Font";
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
}

.visualcomposerstarter .woocommerce.widget .woocommerce-product-search button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  opacity: 0;
  z-index: 2;
}

.visualcomposerstarter .woocommerce.widget .search-field {
  max-width: 270px;
  width: 100%;
  height: 40px;
  padding: 0 40px 0 15px;
  border: 1px solid #d4d4d4;
  outline: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
}

.visualcomposerstarter .woocommerce.widget .tag-cloud-link {
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 9px 13px;
  line-height: 1;
  font-size: 14px;
  font-style: italic;
  color: #777;
  background-color: #eee;
  border-radius: 20px;
}

.visualcomposerstarter .woocommerce.widget .tag-cloud-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #557cbf;
}

.visualcomposerstarter .woocommerce.widget .wc-layered-nav-rating {
  margin: 0 0 10px;
}

.visualcomposerstarter .woocommerce.widget .wc-layered-nav-rating a {
  color: #8c8c8c;
}

.visualcomposerstarter .woocommerce.widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: rgba(0, 0, 0, 0.1);
}

.visualcomposerstarter .woocommerce.widget.widget_price_filter .ui-slider .ui-slider-handle {
  top: 0;
  height: 0.5em;
}

.visualcomposerstarter .woocommerce.widget.widget_price_filter .price_slider_amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.visualcomposerstarter .woocommerce.widget.widget_price_filter .button {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
}

.visualcomposerstarter .woocommerce.widget.widget_price_filter .price_label {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  width: 100%;
  text-align: left;
  margin: 0 0 14px;
  font-size: 13px;
}

.visualcomposerstarter .vct-thank-you-title, .visualcomposerstarter .vct-thank-you-subtitle, .visualcomposerstarter .vct-thank-you-subtitle+p {
  text-align: center;
}

.visualcomposerstarter .woocommerce-order .woocommerce-order-details, .visualcomposerstarter .woocommerce-order .woocommerce-customer-details {
  width: 70%;
  margin: 0 auto 2em;
}

.visualcomposerstarter .woocommerce-order .woocommerce-order-details {
  padding: 0 0 20px;
  width: 100%;
  border-bottom: 1px solid #bbb;
}

.visualcomposerstarter .woocommerce-order .woocommerce-customer-details {
  width: 100%;
}

.visualcomposerstarter .woocommerce-order .woocommerce-order-details__title, .visualcomposerstarter .woocommerce-order .woocommerce-column__title {
  margin: 30px 0;
}

.visualcomposerstarter .vct-order-detail, .visualcomposerstarter .vct-billing-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px;
  padding: 0;
}

.visualcomposerstarter .vct-order-detail::before, .visualcomposerstarter .vct-billing-detail::before {
  display: none;
}

.visualcomposerstarter .vct-order-detail span, .visualcomposerstarter .vct-billing-detail span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.visualcomposerstarter .vct-order-detail span:nth-child(2), .visualcomposerstarter .vct-billing-detail span:nth-child(2) {
  font-weight: 600;
}

.visualcomposerstarter .vct-order-detail span a, .visualcomposerstarter .vct-billing-detail span a {
  color: inherit;
  border-color: inherit;
}

.visualcomposerstarter .vct-thank-you-footer {
  text-align: center;
  margin: 100px 0 50px;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content p a {
  border-bottom-color: transparent;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content p a:hover {
  border-bottom-color: #557cbf;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders {
  border: none;
  border-collapse: collapse;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads td a, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td a {
  border: none;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads th, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders th, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads td, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 13px;
  text-align: center;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads tbody tr:last-child th, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tbody tr:last-child th, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-table--order-downloads tbody tr:last-child td, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tbody tr:last-child td {
  border-bottom: none;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content li a {
  color: #000;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  background: rgb(253,252,167) !important;
  background: -moz-linear-gradient(45deg, rgba(253,252,167,1) 0%, rgba(214,182,107,1) 100%) !important;
  background: -webkit-linear-gradient(45deg, rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%) !important;
  background: linear-gradient(45deg, rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfca7', endColorstr='#d6b66b',GradientType=1 ) !important;
  padding: 18px 15px;
  text-transform: uppercase;
  text-align: center;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content li a:hover,
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content li a:focus {
  text-align: center;
  border: 1px solid var(--secondary-color);
  background: transparent !important;
  color: var(--color-white) !important;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content li a:hover {
  opacity: 0.7;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li a {
  margin: 0 3px;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  padding: 13px 35px;
  display: block;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  position: relative;
  border: solid 1px transparent;
  background-color: #7F481C;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li:first-child a {
  margin-left: 0;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background-color: #00000025;
  color: var(--primary-color);
  border: 1px solid #584D3E40;
  border-bottom: transparent;
  padding: 13px 38px;
  font-weight: 700;
  text-transform: uppercase;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li {
  position: relative;
  text-transform: uppercase;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:after {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -4px;
  height: 1px;
  background-color: #120e09;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #d6b66b;
    margin-bottom: 40px;
    font-family: 'Source Sans Pro';
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width: 767px) {
	body.page-id-1252704 div#wpcf7-f1252707-p1252704-o1 {
    margin: unset;
}
	form.woocommerce-form input, .wpcf7-form input, .wpcf7-form textarea {
    width: 100%;
}
	form.woocommerce-cart-form {
    padding-bottom: 0px;
}
	a.checkout-button.button.alt.wc-forward {
    margin-right: 5px;
}
	.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    border: 1px solid #584D3E;
    border-bottom: 1px solid #584D3E;
}
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    padding: 15px 47px;
  }
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding-top: 0;
}

.woocommerce-MyAccount-navigation>ul li.woocommerce-MyAccount-navigation-link--woo-wallet a::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: rgb(253,252,167) !important;
  background: -moz-linear-gradient(45deg, rgba(253,252,167,1) 0%, rgba(214,182,107,1) 100%) !important;
  background: -webkit-linear-gradient(45deg, rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%) !important;
  background: linear-gradient(45deg, rgba(253,252,167,1) 0%,rgba(214,182,107,1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfca7', endColorstr='#d6b66b',GradientType=1 ) !important;
  color: var(--color-black) !important;
}

.woocommerce-MyAccount-navigation>ul li.woocommerce-MyAccount-navigation-link--woo-wallet a::before {
  display: none;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li::before {
  content: "";
}

.visualcomposerstarter.woocommerce-account .woocommerce-Addresses address {
  line-height: 2;
}

.visualcomposerstarter .vct-side-summary, .visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  padding: 22px 22px 50px;
  border-radius: 0px !important;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  font-family: 'Source Sans Pro', sans-serif !important;
}

.visualcomposerstarter .vct-side-summary h3, .visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 25px;
  letter-spacing: 2.5px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-accent-color);
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 24px;
  color: #7F481C;
  border-bottom: 1px solid #292218;
  padding: 0 0 12px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals th {
  font-size: 15px;
  font-weight: 400;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h4,
.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals p {
  font-size: 14px;
  color: #97938E;
  font-family: 'Source Sans Pro', sans-serif !important;
}

.visualcomposerstarter .woocommerce table.shop_table {
  font-size: 15px;
  border: none;
  border-radius: 0;
  border-top: 0;
}
.woocommerce-checkout .woocommerce table.shop_table,
.woocommerce-checkout .woocommerce .payment_methods,
.woocommerce-checkout .woocommerce .place-order {
  padding: 22px 25px !important;
}
.woocommerce-checkout .woocommerce table.shop_table th,
.woocommerce-checkout .woocommerce table.shop_table tfoot td{
  border-bottom: 1px solid rgba(88, 77, 62, 0.3) !important;
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
}
.woocommerce-checkout .woocommerce table.shop_table tr td{
  line-height: 36px !important;
}
.woocommerce-checkout .woocommerce table.shop_table tr td dd,
.woocommerce-checkout .woocommerce table.shop_table tr td dt{
  line-height: 28px !important;
}
.woocommerce-checkout .woocommerce table.shop_table tr td .woocommerce-Price-amount.amount {
  color: var(--secondary-color);
  font-family: 'Source Sans Pro', sans-serif;
}

/* .visualcomposerstarter .woocommerce table.shop_table tfoot {
  background-color: #00000030 !important;
} */
.visualcomposerstarter .woocommerce table.shop_table td, .visualcomposerstarter .woocommerce table.shop_table th {
  width: 50%;
  border: none;
  font-weight: 600;
  padding: 20px 0px !important;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table td, .visualcomposerstarter .woocommerce table.shop_table th {
  padding: 20px !important;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table th {
  padding: 22px 0px !important;
}

.visualcomposerstarter .woocommerce table.shop_table th {
  padding-left: 0;
}

.visualcomposerstarter .woocommerce table.shop_table td {
  text-align: left;
  padding-right: 0;
  font-size: 18px;
}
.visualcomposerstarter .woocommerce table.shop_table td .product-quantity,
.visualcomposerstarter .woocommerce table.shop_table td .wc-item-meta p {
  color: var(--secondary-color);
  font-weight: 400;
}
.visualcomposerstarter .woocommerce table.shop_table td .wc-item-meta {
  font-size: 14px;
}

.woocommerce-customer-details--email {
  margin-bottom: 0;
  padding-left: 1.5em;
}

.visualcomposerstarter .woocommerce table.shop_table th:last-child, .visualcomposerstarter .woocommerce table.shop_table td:last-child {
  text-align: right;
}

.visualcomposerstarter .woocommerce table.shop_table .cart-subtotal th, .visualcomposerstarter .woocommerce table.shop_table .tax-rate th, .visualcomposerstarter .woocommerce table.shop_table .order-total th {
  color: white;
  font-size: 16px;
}

.visualcomposerstarter .woocommerce table.shop_table .cart-subtotal td, .visualcomposerstarter .woocommerce table.shop_table .tax-rate td, .visualcomposerstarter .woocommerce table.shop_table .order-total td, .visualcomposerstarter .woocommerce table.shop_table .fee td, .visualcomposerstarter .woocommerce table.shop_table td.product-total {
  color: var(--secondary-color);
}

.visualcomposerstarter .woocommerce table.shop_table .cart-subtotal td, .visualcomposerstarter .woocommerce table.shop_table .tax-rate td, .visualcomposerstarter .woocommerce table.shop_table .fee td, .visualcomposerstarter .woocommerce table.shop_table td.product-total {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.53;
  line-height: 24px;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table .cart-subtotal td {
  color: var(--color-white);
}

.visualcomposerstarter .woocommerce table.shop_table .order-total td .amount {
  font-size: 30px;
  letter-spacing: -1.07px;
  line-height: 37px;
  font-weight: 400;
}

.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table .order-total td .amount {
  font-size: 20px;
  font-weight: 800;
  color: #D6B66B;
}

.visualcomposerstarter .woocommerce table.shop_table .cart-subtotal th, .visualcomposerstarter .woocommerce table.shop_table .cart-subtotal td {
  padding-bottom: 10px;

}

.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table .cart-subtotal td {
  padding-bottom: 10px !important;
}

.visualcomposerstarter .woocommerce table.shop_table .tax-rate th, .visualcomposerstarter .woocommerce table.shop_table .tax-rate td {
  padding-top: 10px;
}

.visualcomposerstarter .woocommerce table.shop_table .order-total td, .visualcomposerstarter .woocommerce table.shop_table .order-total th {
  border: none;
  border-bottom: 1px solid rgba(88, 77, 62, 0.3) !important;;
}

.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .cart-subtotal td .inc-tax, .visualcomposerstarter .woocommerce table.shop_table td.product-total .inc-tax, .visualcomposerstarter .woocommerce table.shop_table .cart-subtotal td .inc-tax {
  display: block;
  font-size: 10px;
  color: #ffffff;
  opacity: 0.4;
}

.visualcomposerstarter .woocommerce .button.checkout-button {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  background: transparent linear-gradient(180deg, #f7d800 0%, #ff8401 100%) 0% 0% no-repeat padding-box;
}
a.checkout-button.button.alt.wc-forward {
    font-family: 'Merriweather';
    letter-spacing: 1.71px;
    line-height: 18px;
}
a.checkout-button.button.alt.wc-forward:hover {
    background: #402e23 !important;
    color: #d6b66b !important;
}
.visualcomposerstarter.woocommerce-cart .woocommerce .button.checkout-button {
  font-size: 14px;
  background: rgb(253, 252, 167) !important;
  background: -moz-linear-gradient(45deg, rgba(253, 252, 167, 1) 0%, rgba(214, 182, 107, 1) 100%) !important;
  background: -webkit-linear-gradient(45deg, rgba(253, 252, 167, 1) 0%, rgba(214, 182, 107, 1) 100%) !important;
  background: linear-gradient(45deg, rgba(253, 252, 167, 1) 0%, rgba(214, 182, 107, 1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfca7', endColorstr='#d6b66b', GradientType=1) !important;
  display: unset;
  float: right;
  margin-top: 50px;
 padding: 18px 34px;
}

.woocommerce span.onsale {
  min-height: unset;
  min-width: unset;
  padding: unset;
  font-weight: 800;
  position: absolute;
  text-align: center;
  line-height: normal;
  top: -54px;
  left: -15px;
  margin: 0;
  border-radius: 100%;
  background-color: #ffa700;
  color: #fff;
  font-size: 22px;
  z-index: 9;
  height: 108px;
  width: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.single-product.woocommerce div.product p.price, .single-product.woocommerce div.product span.price {
  color: var(--secondary-color);
  font-size: 30px;
	font-weight: 600;
	letter-spacing: 2.5px;
}

.woocommerce-product-details__short-description {
  color: #ffffff;
  font-size: 14px;
  line-height: 25px;
  max-width: 100%;
  font-family: var(--font-family);;
  text-align: left;
  display: inline-block;
}

.woocommerce-product-details__short-description .mt-2 {
  opacity: 75%;
  line-height: 18px;
}

.woocommerce-product-details__short-description>h4 {
  margin-top: 20px;
  margin-bottom: 0px;
}

.woocommerce-product-details__short-description ul {
  padding-left: 20px;
}

.woocommerce-product-details__short-description li {
  padding: 10px 0px;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent;
}

.visualcomposerstarter:not(.menu-sandwich) .vct-cart-wrapper a {
  height: 55px;
}

div#customer_details {
  width: 60%;
  display: inline-block;
  padding-right: 30px;
}

.order-section {
  width: 40%;
  display: inline-block;
}

div#order_review, .visualcomposerstarter .woocommerce form.checkout #payment.woocommerce-checkout-payment {
  padding: 0;
  color: white;
  background: rgba(35, 32, 28, 0.4);
  border-radius: 0px !important;
  border: none;
}
div#order_review #order_review_heading,
.visualcomposerstarter .woocommerce form.checkout #payment.woocommerce-checkout-payment #order_review_heading,
.visualcomposerstarter .woocommerce form.checkout #payment.woocommerce-checkout-payment .heading-l {
  background-color: #584D3E;
  font-size: 15px;
  padding: 22px 35px;
  margin-bottom: 0;
	letter-spacing: 0.75px;
}

.visualcomposerstarter .woocommerce form.checkout #payment.woocommerce-checkout-payment {
  margin-bottom: 30px;
}

.visualcomposerstarter .woocommerce table.woocommerce-checkout-review-order-table th {
  color: #fff;
}

.visualcomposerstarter .woocommerce table.woocommerce-checkout-review-order-table td.product-name {
  color: #fff;
  font-size: 25px;
  letter-spacing: -0.67px;
  line-height: 30px;
  font-weight: 600;
}

.my-account-content .container {
  padding-left: 0px;
  padding-right: 0px;
}

.my-account-content .container .woocommerce {
  display: inline;
}

.woocommerce-MyAccount-navigation>h3 {
  font-size: 60px;
  color: #ffffff;
  letter-spacing: 3.6px;
  line-height: normal;
  text-align: center;
  font-weight: 600;
  margin-bottom: 70px;
  border-bottom: 2px solid #3e4963;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: none;
}


.woocommerce-account .woocommerce-MyAccount-navigation>ul {
  list-style: none;
  display: block;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation>ul>li {
    display: inline-block;
  }
  li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout {
    float: right;
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
  padding: 0;
  float: none;
  border-bottom: 1px solid #241e16;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
  padding: 35px;
  border-radius: 0;
  background-color: #00000025;
  border: 1px solid #584D3E40;
  border-top: transparent;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders {
  border: 1px solid #ffffff10;
  margin-bottom: 0;
}
.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders thead tr th:first-child {
  border-radius: 0 0 0 0;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders thead tr th:last-child {
  border-radius: 0 0 0 0;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders th {
  background: #584D3E;
  text-align: left;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 20px 30px !important;
  border-bottom: solid 1px #ffffff10;
}

.visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td {
  text-align: left;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 20px 30px !important;
  border-bottom: 1px solid #ffffff10;
  font-family: 'Source Sans Pro', sans-serif;
}

tr.woocommerce-orders-table__row.order {
  background: #100C07;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
  display: inline-block;
  width: 30px !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: right;
  margin-right: 1em;
}

.entry-content ul a {
  border-bottom: 0;
}

.woocommerce-checkout #payment, .woocommerce-checkout #payment div.payment_box {
  background: var(--secondary-color);
  color: white;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment a {
  color: var(--secondary-accent-color);
}

.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input {
  width: 30px;
  display: inline-block;
  position: relative;
}

h2.woocommerce-column__title {
  font-size: 24px;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: white;
  border-top: 1px solid #ffffff20;
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.woocommerce .woocommerce-customer-details address {
  border: 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

@media only screen and (max-width: 768px) {
	.woocommerce form .form-row.woocommerce-invalid label {
    color: #F2EED1;
    font-size: 15px !important;
    letter-spacing: 0.75px;
    line-height: 19px;
    margin-bottom: 15px;
}
	.woocommerce-checkout .woocommerce table.shop_table tr td .woocommerce-Price-amount.amount {
    color: #C09454;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}
	.woocommerce-checkout-review-order th.product-name,
	.woocommerce-checkout-review-order th.product-total {
    color: #F2EED1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px;
    line-height: 22px;
}
	.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table td, .visualcomposerstarter .woocommerce table.shop_table th {
    padding: 20px !important;
}
	.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-subtotal span {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 28px;
    font-weight: 700;
}
	.visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-price span {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 28px;
}
	body.page-id-58 td.product-price:before,
	body.page-id-58 td.product-subtotal:before {
    font-family: 'Source Sans Pro' !important;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 21px;
}
	a.btn.btn-secondary.btn-xl {
    letter-spacing: 3px;
    font-size: 16px;
    text-align: center;
}
	.single-product.woocommerce div.product p.price, .single-product.woocommerce div.product span.price {
    color: var(--secondary-color);
    font-size: 20px;
	margin-top: 15px;
}
  .visualcomposerstarter:not(.menu-sandwich) .vct-cart-wrapper a {
    height: 55px;
  }
  .visualcomposerstarter.woocommerce div.product .product_title {
    text-align: center;
  }
  .woocommerce-page table.cart .product-thumbnail {
    display: block;
  }
  div#customer_details {
    padding-right: 0px;
  }
  .order-section {
    margin-top: 20px;
  }
  .order-section, div#customer_details {
    width: 100%;
  }
  .my-account-content .container .woocommerce {
    background: var(--secondary-body-background);
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: calc(100% - 30px);
    margin: 15px;
    border-radius: 10px;
    margin-bottom: 0;
    padding: 35px 0;
  }
  .woocommerce-MyAccount-navigation>h3 {
    font-size: 46px;
    line-height: 52px;
    text-align: center;
    margin-bottom: 20px;
  }
  .woocommerce-MyAccount-navigation>h3:after {
    top: 12.5%;
    right: 38px;
    /* transform: translate(-19px, -22px); */
  }
  .woocommerce-account .woocommerce-MyAccount-navigation>ul {
    display: block;
  }
  .woocommerce-account .woocommerce-MyAccount-content, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td {
    width: 100%;
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td a {
    color: var(--primary-accent-color);
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td:first-child:before, .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td:first-child a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
	  text-transform: capitalize;
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tr {
    padding: 8px 0px 15px 0px;
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td {
    padding: 12px 20px;
    border-bottom: none !important;
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders td:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-orders tr:last-child td:last-child {
    border-bottom: none !important;
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li a {
    padding: 14px 46px;
    margin: 15px 0;
    text-align: center;
    font-weight: 700;
  }
}

@media only screen and (max-width: 600px) {
  .lty-frontend-table tr td {
    border-bottom: 0px;
  }
  .visualcomposerstarter .woocommerce table.woocommerce-checkout-review-order-table td.product-name {
    font-size: 16px;
    letter-spacing: -0.67px;
    line-height: 22px;
  }
  .woocommerce td.product-name dl.variation {
    margin-top: 5px;
  }
  .woocommerce td.product-name dl.variation dt {
 font-size: 10px;
    letter-spacing: 1px;
    font-family: 'Merriweather';
    text-transform: uppercase;
	line-height: 17px;
  }
	.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    padding-top: 0px !important;
		padding-right: 5px;
    padding-left: 5px;
}
	.visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 20px;
		letter-spacing: 1px;
}
  .woocommerce td.product-name dl.variation p {
    font-size: 20px;
    letter-spacing: 1px;
  }
  p.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated label {
    font-size: 12px;
  }
  .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title);
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 400;
	  font-family: 'Merriweather';
	  text-transform: uppercase;
  }
  table.lty-frontend-table.shop_table.shop_table_responsive.lty-ticket-logs-table tbody td[data-title="Ticket"] {
    font-size: 18px;
    font-weight: 700;
  }
  table.lty-frontend-table.shop_table.shop_table_responsive.lty-ticket-logs-table tbody td[data-title="Ticket"]:before {
    font-weight: 700;
  }
  table.lty-frontend-table.shop_table.shop_table_responsive.lty-ticket-logs-table tbody tr {
    padding: 10px 0px;
	  border-bottom: solid 1px rgba(255, 255, 255, 0.05);
  }
  .lty-frontend-table tbody tr:nth-child(2n-1) {
    background: unset;
  }
  .lty-frontend-table tbody tr:nth-child(2n) {
    background: #100C0720;
  }
	.lty-frontend-table tbody td a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
  table.lty-frontend-table.shop_table.shop_table_responsive.lty-ticket-logs-table tbody td {
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 25px;
  }
  .panel {
    border-radius: 0;
  }
  table.lty-frontend-table.shop_table.shop_table_responsive.lty-ticket-logs-table tbody td:before {
    font-weight: 700;
  }
  .visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 0px;
  }
  .visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs {
    flex-direction: column;
  }
  .visualcomposerstarter.woocommerce div.product .woocommerce-tabs ul.tabs li {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 8px;
  }
  .visualcomposerstarter.woocommerce div.product .woocommerce-tabs .panel {
    border-top: 3px solid black;
    font-size: 15px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 0;
  }
  .woocommerce div.product div.summary {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .visualcomposerstarter.woocommerce div.product .product_title {
    text-align: left;
    font-size: 46px;
    letter-spacing: 0.56px;
    line-height: 42px;

  }
  .visualcomposerstarter.single-product.woocommerce div.product .price-with-progress p.price, .visualcomposerstarter.single-product.woocommerce div.product .price-with-progress span.price {
    text-align: left;
    margin-top: 25px;
    width: 100%;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .woocommerce.single-product div.product .price-with-progress p.price del:after {
    content: "/";
  }
  .woocommerce-product-details__short-description {
    text-align: left;
	      margin-top: 30px;
  }
  .visualcomposerstarter.woocommerce-account .woocommerce-MyAccount-navigation li a {
    padding: 14px 46px;
    margin: 15px 0;
  }
  .single-product .buy-tickets-btn {
    margin-top: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
  .single-product .buy-tickets-btn a {
    display: block;
  }
  .btn-primary:not(.menu-item), #main-menu>ul>li.btn-primary>a {
    width: 100%;
  }
  .single-product .competition-timer {
    order: 6;
    text-align: left;
  }
  .single-product .lty-lottery-progress-bar {
    width: 100%;
    text-align: left;
	  color: black;
    font-weight: 700;
    font-size: 16px;
  }
  .progress-bar--top span {
    margin-right: 25px;
  }
  .woo-wallet-my-wallet-container .woo-wallet-sidebar {
    width: 100% !important;
  }
  .woo-wallet-my-wallet-container .woo-wallet-content {
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
	.visualcomposerstarter.woocommerce-cart .woocommerce table.shop_table .order-total td .amount {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0px;
    color: #D6B66B;
}
  table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details th.product-name,table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td.product-name {
    width: calc(100% - 100px);
    font-size: 14px;
  }
  table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details th.product-total, table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td.product-total {
    width: 100px;
  }
  .visualcomposerstarter.woocommerce ul.products li.product, .visualcomposerstarter.woocommerce .woocommerce-page ul.products li.product {
    width: 31%;
    margin-right: 2%;
  }
  .visualcomposerstarter.woocommerce .woocommerce-result-count, .visualcomposerstarter.woocommerce .woocommerce-ordering {
    float: none;
    margin: 1em 0;
  }
  .visualcomposerstarter .woocommerce {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .visualcomposerstarter .woocommerce .vcv-cart-container {
    padding: 0;
  }
  .visualcomposerstarter .woocommerce .woocommerce-order-details, .visualcomposerstarter .woocommerce .woocommerce-customer-details {
    width: 100%;
  }
  .visualcomposerstarter .woocommerce .vcv-cart-container, .visualcomposerstarter .woocommerce .cart-collaterals {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .visualcomposerstarter .woocommerce .track_order .form-row {
    float: none;
    width: 100%;
    margin: 0 0 10px;
  }
  .visualcomposerstarter .woocommerce .track_order .form-row .button {
    margin: 15px 0 0;
    width: 100%;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr.cart_item td, .visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr td {
    width: 100%;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart td {
    padding: 15px 15px;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart .cart_item td {
        padding-top: 0px !important;
  }
.visualcomposerstarter.woocommerce-cart .woocommerce table.cart a.remove img {
    height: auto;
    position: relative;
    top: 12px;
	left: -6px;
}
	.visualcomposerstarter.woocommerce-cart .woocommerce table.cart {
    border: solid transparent 1px;
}
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-remove {
    width: auto;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart .button[name="update_cart"] {
    float: none;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce .cart_totals table.shop_table tr td {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart img {
    width: 100%;
    height: 210px;
  }
	tr.woocommerce-cart-form__cart-item.cart_item {
    border-bottom: solid 1px #c0945445;
}
	tr.cart-subtotal td:before,
	tr.order-total td:before {
    font-family: 'Source Sans Pro' !important;
    font-weight: 400;
    font-size: 15px;
}
	tr.cart-subtotal {
/*     border-top: solid 1px #c0945445; */
}
  tr.woocommerce-cart-form__cart-item.cart_item {
    margin-bottom: 60px;
  }
	.visualcomposerstarter.woocommerce-cart .woocommerce table.cart td {
    border-bottom: solid transparent 1px;
}
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart .product-name a {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro';
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr td.product-remove {
position: absolute;
    width: 44px;
    height: 44px;
    right: 15px;
    background: #D6B66B;
  }
  td.product-remove::after {
    display: none;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr td.product-remove a:before, .visualcomposerstarter.woocommerce-cart .woocommerce table.cart tr td.product-remove a:after {
    background: #fff;
  }
}

@media only screen and (max-width: 992px) {
  .visualcomposerstarter .woocommerce table.cart .product-name {
    width: auto;
  }
  .visualcomposerstarter .woocommerce .checkout .vct-main-form-content {
    padding: 0;
  }
  .visualcomposerstarter .woocommerce .checkout .vct-main-form-content, .visualcomposerstarter .woocommerce .checkout .vct-side-summary {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
  .visualcomposerstarter .woocommerce form.checkout .vct-main-form-content, .visualcomposerstarter .woocommerce form.checkout .vct-side-summary, .visualcomposerstarter .woocommerce form.checkout #payment.woocommerce-checkout-payment {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce .vcv-cart-container, .visualcomposerstarter.woocommerce-cart .woocommerce .cart-collaterals {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .visualcomposerstarter.woocommerce-cart .woocommerce .vcv-cart-container {
    padding: 0;
  }
  .visualcomposerstarter .widget .woocommerce-product-search {
    display: inline-block;
  }
  .visualcomposerstarter .products .product .button.add_to_cart_button {
    width: 100%;
    font-size: 16px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 15%;
  }
  .visualcomposerstarter.woocommerce button.button, .visualcomposerstarter.woocommerce button.button.alt.disabled {
    width: 100%;
    padding: 23px 35px;
  }
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 100%;
  overflow: visible;
}
.woocommerce-EditAccountForm.edit-account {
  position: relative;
  padding-right: 50%;
}
.woocommerce-EditAccountForm.edit-account em {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 20px 0;
  display: block;
  font-style: normal;
}
.woocommerce-EditAccountForm.edit-account fieldset {
  position: absolute !important;
  top: -8px;
  right: 0 !important;
  width: 47%;
}
@media (max-width: 992px) {
  .woocommerce-EditAccountForm.edit-account {
    padding-right: 0;
  }
  .woocommerce-EditAccountForm.edit-account fieldset {
    position: static !important;
    top: 0;
    width: 100%;
    margin-top: 40px !important;
    padding: 30px 0 20px 0 !important;
  }
  .woocommerce-EditAccountForm.edit-account fieldset legend {
    position: static !important;
    top: 20px;
  }
}

