.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.24);
  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;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal-active {
  opacity: 1;
  visibility: visible;
}
.modal::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(22.5px);
          backdrop-filter: blur(22.5px);
}
.modal-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1053px;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 25px 45px 50px;
  overflow-y: auto;
  max-height: 90%;
}
.modal-wrap__top {
  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;
  margin-bottom: 41px;
}
.modal-wrap__title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 900;
}
.modal-wrap__close {
  cursor: pointer;
}
.modal-wrap__cart {
  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: 1px solid #E3E3E3;
  border-radius: 6px;
  padding: 30px 28px;
  margin-bottom: 10px;
}
.modal-wrap__cart--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-wrap__cart--meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-wrap__cart--image {
  max-width: 77px;
  margin-right: 28px;
}
.modal-wrap__cart--title {
  display: block;
  max-width: 261px;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
}
.modal-wrap__cart--title:hover {
  text-decoration: underline;
}
.modal-wrap__cart--price {
  margin: 0 65px;
  min-width: 100px;
  text-align: center;
}
.modal-wrap__cart--qty {
  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;
  border: 1px solid #E3E3E3;
  border-radius: 47px;
}
.modal-wrap__cart--qty-item {
  height: 45px;
  width: 45px;
  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;
  cursor: pointer;
}
.modal-wrap__cart--qty input {
  width: 55px;
  height: 40px;
  padding: 0;
  text-align: center;
  border: none;
  border-left: 1px solid #E3E3E3;
  border-right: 1px solid #E3E3E3;
}
.modal-wrap__total {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modal-wrap__total--left {
  width: 100%;
  max-width: 250px;
}
.modal-wrap__total--left-subtitle {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 6px;
  font-weight: 700;
}
.modal-wrap__total--left-price {
  font-size: 30px;
  line-height: 34px;
  font-weight: 900;
}
.modal-wrap__total--right {
  width: 100%;
  max-width: 277px;
}
.modal-wrap__total--right .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  border-radius: 6px;
}
.modal-wrap__total--right .btn svg {
  margin-left: 10px;
}
.modal-wrap__total--right .btn svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal-wrap__total--right .btn:hover svg * {
  fill: #558048;
}
.modal-wrap__total--right-close {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.modal-wrap__total--right-close span {
  position: relative;
}
.modal-wrap__total--right-close span::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #121212;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.modal-wrap__total--right-close span:hover::after {
  width: 100%;
}
.modal-wrap__total--right-close svg {
  margin-right: 10px;
}
.modal-wrap {
  padding-left: 0;
  padding-bottom: 0;
  max-width: 1134px;
  border-radius: 28px;
}
.modal-wrap__top {
  margin-bottom: 0;
}
.modal-wrap__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.modal-wrap__flex--image {
  width: 100%;
  max-width: 389px;
  margin-right: 24px;
}
.modal-wrap__flex--image img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-wrap__flex--content {
  width: 100%;
  max-width: 623px;
  text-align: center;
  margin-bottom: 113px;
}
.modal-wrap__flex--content-text {
  max-width: 574px;
  margin: 15px auto 40px;
  font-size: 15px;
  font-weight: 300;
}
.modal-wrap__flex--content form {
  max-width: 337px;
  margin: 0 auto;
}
.modal-wrap__flex--content form input {
  width: 100%;
  margin-bottom: 17px;
}
.modal-wrap__flex--content form .btn {
  width: 100%;
  padding: 13px;
  font-size: 16px;
}
.modal-wrap {
  max-width: 541px;
  padding: 7px 23px 62px;
}
.modal-wrap__close {
  margin-right: -15px;
}
.modal-wrap__top {
  margin-bottom: 0;
}
.modal-wrap__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal-wrap__tab .item {
  width: 50%;
  border-bottom: solid 4px rgba(170, 176, 183, 0.53);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  line-height: 38px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.modal-wrap__tab .active {
  border-color: #558048;
}
.modal-wrap__frm {
  display: none;
  max-width: 350px;
  margin: 0 auto;
}
.modal-wrap__frm--active {
  display: block;
}
.modal-wrap__frm--socials {
  margin-top: 30px;
}
.modal-wrap__frm--socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto 22px;
  background-color: #FFFFFF;
  border: 1px solid #3370A0;
  border-radius: 4px;
  padding: 10px 23px;
  font-weight: 600;
  color: #3370A0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal-wrap__frm--socials a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.modal-wrap__frm--or {
  margin-top: 30px;
  font-weight: 500;
  color: #304659;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}
.modal-wrap__frm input {
  width: 100%;
  margin: 0 auto 15px;
}
.modal-wrap__frm--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #304659;
}
.modal-wrap__frm--flex-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-wrap__frm--flex-check input {
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
}
.modal-wrap__frm--flex-check label {
  padding-left: 8px;
}
.modal-wrap__frm--flex-recovery {
  color: #304659;
  position: relative;
}
.modal-wrap__frm--flex-recovery::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #304659;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.modal-wrap__frm--flex-recovery:hover::after {
  width: 100%;
}
.modal-wrap__frm--flex-recovery::after {
  width: 100%;
}
.modal-wrap__frm--flex-recovery:hover::after {
  width: 0;
}
.modal-wrap__frm .btn {
  width: 100%;
  margin: 28px auto 0;
  padding: 11px;
  font-size: 18px;
}
.modal-wrap {
  background: url("../img/main/callback-bg.svg") no-repeat left bottom #fff;
}
.modal-wrap {
    padding-left: 15px;
  }
.modal-wrap__flex--image {
    display: none;
  }
.modal-wrap__flex--content {
    max-width: 100%;
  }
.modal-wrap {
    margin: 0 15px;
    padding: 25px 15px;
  }
.modal-wrap__cart--qty {
    margin: 0 20px;
  }
.modal-wrap__cart--price {
    margin: 0 20px;
  }
.modal-wrap__cart--meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 200px;
  }
.modal-wrap__cart--title {
    max-width: 100%;
  }
.modal-wrap__total {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
.modal-wrap__total--left {
    margin-bottom: 10px;
  }
.modal-wrap__cart {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
.modal-wrap__cart--meta {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    margin-bottom: 10px;
  }
.modal-wrap__cart--qty {
    margin: 0;
  }
.modal-wrap__cart--delete {
    position: absolute;
    right: 10px;
    top: 10px;
  }
.modal-wrap__cart--delete svg {
    max-width: 20px;
    max-height: 20px;
  }
.modal-wrap__cart {
    padding: 30px 15px;
  }
.modal-wrap__cart--image {
    margin-right: 10px;
  }
.modal-wrap__cart--right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
.modal-wrap__cart--price {
    margin: 0 0 10px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
.modal-wrap__frm--socials .item {
    font-size: 14px;
    padding: 10px;
  }
.modal-wrap__frm--socials .item svg {
    margin-right: 5px;
  }
.modal-wrap__frm--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
.modal-wrap__frm--flex-recovery {
    padding-top: 5px;
  }
.modal-wrap__close svg {
    max-width: 20px;
    max-height: 20px;
  }
.modal-wrap__title {
    font-size: 20px;
    line-height: 30px;
  }
.modal-wrap__cart--right-text {
    margin: 0 auto 10px;
    font-size: 14px;
    max-width: 150px;
}
.modal-wrap .modal-wrap__cart--right-text {
    display: none;
}
.modal-wrap {
    max-width: 600px;
}
.modal-wrap textarea {
    width: 100%;
    height: 300px;
}
.modal-wrap {
    max-width: 400px;
}
.modal-wrap__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.modal-wrap__cart--price {
    font-size: 18px;
    font-weight: 900;
}
.modal-wrap__total--left-price bdi {
    font-weight: 900;
}
.modal-wrap__cart--price .woocommerce-Price-currencySymbol,
.modal-wrap__total--left-price bdi .woocommerce-Price-currencySymbol {
    font-weight: 400;
    padding-left: 3px;
}
.modal-wrap .woocommerce-notices-wrapper {
    display: none;
}
.compare-wrap {
  margin-top: 30px;
}
.compare-wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; */
  margin: 50px 0 100px;
}
.compare-wrap__list--attr-item {
  padding: 15px;
  word-break: break-all;
}
.compare-wrap__list--attr-item:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.compare-wrap__list .left {
  width: 100%;
  max-width: 250px;
}
.compare-wrap__list .right {
  width: 80%;
}
.compare-wrap__list .right .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.compare-wrap__list .right .slick-slide {
  height: inherit !important;
}
.compare-wrap__list .right .slick-arrow {
  position: absolute;
  right: 0;
  bottom: -60px;
}
.compare-wrap__list .right .slick-prev {
  right: 60px;
}
.compare-wrap__list .right .slick-track {
  float: left;
}
.compare-wrap__list .right .item-attr {
  padding: 15px;
  word-break: break-all;
}
.compare-wrap__list .right .item-attr * {
  word-break: break-all;
}
.compare-wrap__list .right .item-attr__title {
  display: none;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.compare-wrap__list .right .item-attr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.compare-wrap__list .right .product {
  height: 100%;
}
.compare-wrap__list .right .product-btns .btn {
  width: 100%;
  border-radius: 6px;
}
.compare-wrap__list .right .product-btns .btn-white {
  display: none;
}
.compare-wrap__list .left {
    display: none;
  }
.compare-wrap__list .right {
    width: 100%;
  }
.compare-wrap__list .right .item-attr__title {
    display: block;
  }
.compare-wrap__list {
    margin-left: -15px;
    margin-right: -15px;
  }
.compare-wrap__list--attr-item{
	height: 68px;
}
.compare-wrap__list .product-btns{
	font-size: 0px
}
.compare-wrap__list .product-btns svg{
	display: none;
}
.compare-wrap__list--attr-item,
.compare-wrap__list .right .item-attr {
    min-height: 68px;
    display: flex;
    align-items: center;
}
.compare-wrap__list--attr{
    position: relative;
    top: 560px;
}
.compare-wrap__list .right .product{
    max-height: 560px;
    min-height: 560px;
}
.compare-wrap__list .right .slick-track{
    align-items: flex-start;
}
.compare-wrap__list .right .item-attr{
		flex-direction: column;
		align-items: flex-start;
	}
.compare-wrap__list .right .product {
        max-height: 620px;
        min-height: 620px;
    }
.compare-wrap__list .product-labels .item:nth-child(2){
		font-size: 8px;
		padding: 6px;
	}
.compare-wrap__list .product-labels .item{
		height: 20px;
		width: 20px;
		font-size: 8px;
	}
.compare-wrap__list .right .item-attr{
		flex-direction: column;
		align-items: flex-start;
	}
.compare-wrap__list--attr-item,
	.compare-wrap__list .right .item-attr *{
		font-size: 13px;
	}
.favorite-wrap {
    margin-top: 30px;
}
.favorite-wrap__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.favorite-wrap__list .product {
    width: 24%;
    margin-right: 1.3%;
    margin-bottom: 30px;
}
.favorite-wrap__list .product:nth-child(4n+4) {
    margin-right: 0;
}
.favorite-wrap__list .product:nth-child(1n+1) {
        width: 32%;
        margin-right: 1.3%;
        margin-bottom: 30px;
    }
.favorite-wrap__list .product:nth-child(3n+3) {
        margin-right: 0;
    }
.favorite-wrap__list {
        justify-content: space-between;
    }
.favorite-wrap__list .product:nth-child(1n+1) {
        width: 48%;
        margin-right: 0;
        margin-bottom: 30px;
    }
.favorite-wrap__list {
        flex-direction: column;
    }
.favorite-wrap__list .product:nth-child(1n+1) {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
    }
.cpmr svg,
.fvr svg {
    cursor: pointer;
}
.cpmr svg:nth-child(2),
.fvr svg:nth-child(2) {
    display: none;
}
.fvr svg {
    cursor: pointer;
}
.fvr svg:nth-child(2) {
    display: none;
}
.fvr-active svg {
    display: none;
}
.fvr-active svg:nth-child(2) {
    display: block !important;
}
.fvr-active svg *,
.cmpr-active svg * {
    fill: #ffa500 !important;
    stroke: #ffa500 !important;
}
.product-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.product-actions__compare {
  margin-right: 27px;
}
.product-actions, .single-wrap__meta--bonus .product-btns {
  display: none;
}
.my-notice {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1em;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1000000;
}
.my-notice.error {
    background-color: red;
    color: #fff;
    opacity: 1;
    visibility: visible;
}
.my-notice.sucsess {
    background-color: #00b60f;
    color: #fff;
    opacity: 1;
    visibility: visible;
}
.my-notice.warning {
    background-color: #dfb600;
    color: #fff;
    opacity: 1;
    visibility: visible;
}
#modalOneClick .modal-wrap {
    max-width: 400px;
}
#modalOneClick .modal-wrap__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#modalOneClick input {
    margin: 30px 0;
}
.btn {
  padding: 12px 16px;
  width: 49%;
  border-radius: 6px 0px 0px 6px;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn:nth-child(1) svg {
  margin-left: 10px;
}
.btn:nth-child(1) svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:nth-child(1):hover svg * {
  fill: #558048;
}
.btn:nth-child(2) {
  border-radius: 0 6px 6px 0;
}
.btn:nth-child(2) svg {
  margin-right: 10px;
}
.btn:nth-child(2) svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:nth-child(2):hover svg * {
  fill: #fff;
}
.btn,
#submit,
.woocommerce-Button {
  border: none;
  background: none;
  font-size: 18px;
  line-height: 27px;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  color: #000;
  padding: 20px 70px;
  background-color: #FFFFFF;
  border-radius: 98px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}
.btn:hover,
#submit:hover,
.woocommerce-Button:hover {
  background-color: #000;
  color: #fff;
}
.btn-primary,
#submit-primary,
.woocommerce-Button-primary {
  background-color: #558048;
  color: #fff;
  border: solid 1px #558048;
}
.btn-primary:hover,
#submit-primary:hover,
.woocommerce-Button-primary:hover {
  background-color: #fff;
  color: #558048;
}
.btn-white,
#submit-white,
.woocommerce-Button-white {
  border: solid 1px #558048;
  background-color: #fff;
  color: #558048;
}
.btn-white:hover,
#submit-white:hover,
.woocommerce-Button-white:hover {
  background-color: #558048;
  color: #fff;
}
.btn-second,
#submit-second,
.woocommerce-Button-second {
  background-color: #fff;
  color: #000;
  border: solid 1px #fff;
}
.btn-second:hover,
#submit-second:hover,
.woocommerce-Button-second:hover {
  background-color: inherit;
  color: #fff;
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  border-radius: 6px;
}
.btn svg {
  margin-left: 10px;
}
.btn svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover svg * {
  fill: #558048;
}
.btn {
  width: 100%;
  padding: 13px;
  font-size: 16px;
}
.btn {
  width: 100%;
  margin: 28px auto 0;
  padding: 11px;
  font-size: 18px;
}
.btn {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.btn {
  margin-top: 30px;
}
.btn {
  margin-top: 43px;
  display: block;
  max-width: 279px;
  padding: 16px;
  width: 100%;
}
.btn {
  color: #000000;
}
.btn:hover {
  border-color: #fff;
  color: #fff;
}
.btn {
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  line-height: 19px;
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 18px;
  font-weight: 600;
  border-radius: 8px;
}
.btn svg {
  margin-left: 12px;
}
.btn svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover svg * {
  fill: #558048;
}
.btn {
  padding: 13px;
  width: 100%;
  max-width: 308px;
  font-size: 16px;
  margin: 33px auto;
}
.btn {
  width: 100%;
  border-radius: 6px;
}
.btn-white {
  display: none;
}
.btn {
    -webkit-transform: none;
            transform: none;
  }
.btn {
    margin: 30px auto 0;
  }
.btn {
    display: block;
    margin: 20px auto 0;
  }
.btn {
    padding: 14px;
    width: 100%;
    max-width: 300px;
    display: block;
  }
.btn {
    font-size: 14px;
  }
.btn {
    margin: 20px auto;
    display: block;
}
.btn {
        display: block;
        margin: 20px auto 0;
    }
.btn-primary{
	margin:0 auto;
}
.btn-primary,
#submit-primary,
.woocommerce-Button-primary {
  background-color: #558048;
  color: #fff;
  border: solid 1px #558048;
}
.btn-primary:hover,
#submit-primary:hover,
.woocommerce-Button-primary:hover {
  background-color: #fff;
  color: #558048;
}
.btn-primary{
	margin:0 auto;
}
