/*
Theme Name: TheGoat Shop
Version: 1.2.6
Tested up to: 7.0
Requires at least: 6.3.0
Requires PHP: 7.4
Author: Onyxer Digital
Author URI: https://onyxerdigital.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thegoat



/***********************************************
* GOAT modals on Checkout
*/
.goat-login-modal__main-btns .join button {
  border: none;
  padding: 0;
  font-family: "SF PRO display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  background: linear-gradient(24deg, #01e8ff 13.41%, #0c7efb 81.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.goat-login-modal__sign_in {
  padding: 10px 30px 10px 10px;
  border-radius: 18px;
  border: 1px solid var(--Gradients-Linear, #3b393b);
  background: var(--Main-Black-01, #1e1e1e);
  display: flex;
  /* column-gap: 40px;
  max-width: 915px;
  width: 100%; */
  position: relative;
  display: none;
}
.goat-login-modal__sign_in.active {
  display: flex;
}
.goat-login-modal__sign_in-close {
  position: absolute;
  display: block;
  top: 17px;
  right: 17px;
  cursor: pointer;
}
.goat-login-modal__sign_in-img {
  max-width: 355px;
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
}
.goat-login-modal__sign_in-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goat-login-modal__sign_in-content {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 7px;
}
@media (min-width: 992px) {
  .goat-login-modal__sign_in-content {
    padding-left: 40px;
  }
}
.goat-login-modal__sign_in-title {
  color: #fff;
  text-align: center;
  font-family: "SF PRO display", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  font-variant: all-small-caps;
  margin-bottom: 32px;
}
.goat-login-modal__sign_in-form {
  width: 100%;
  /* margin-top: 28px; */
}

.goat-login-modal__sign_in-form .fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.goat-login-modal__sign_in-form .fields .email-row {
  grid-column-start: 1;
  grid-column-end: 3;
}

.goat-login-modal__sign_in .woocommerce-form-row {
  /* width: 100%; */
  /* margin-bottom: 24px; */
}
.goat-login-modal__sign_in .woocommerce-form-row input {
  width: 100%;
  color: #fff;
  font-family: "SF PRO display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border-radius: 12px;
  background: #454242;
  border: none;
  padding: 12px 14px;
  outline: none;
}
.goat-login-modal__sign_in .woocommerce-form-row.password {
  position: relative;
}
.goat-login-modal__sign_in .woocommerce-form-row.password input {
  padding-right: 35px;
}

.goat-login-modal__sign_in .form-row .button {
  margin-top: 20px;
  text-align: center;
  font-family: "SF PRO display", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  padding: 14px 25px;
  border-radius: 12px;
  border: 1px solid #aecc10;
  background: rgba(222, 255, 49, 0.45);
  backdrop-filter: blur(6px);
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.goat-login-modal__sign_in .form-row .button:hover {
  border-color: #deff31;
  background: rgba(222, 255, 49, 0.8);
}

/* .goat-login-modal__sign_in .form-row .button .span-text {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
} */
.goat-login-modal__sign_in .form-row svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.goat-login-modal__sign_in .form-row svg.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 992px) {
  .goat-login-modal__sign_in {
    padding: 24px 14px;
    max-width: 93vw;
  }
  .goat-login-modal__sign_in-img {
    display: none;
  }
  .goat-login-modal__sign_in-content {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .goat-login-modal__sign_in {
    padding: 15.5px 14px 14px 14px;
  }
  .goat-login-modal__sign_in-content {
    padding-top: 25px;
  }
  .goat-login-modal__sign_in-close {
    width: 27px;
    height: 27px;
    top: 5px;
    right: 12px;
  }
  .goat-login-modal__sign_in-form {
    width: 100%;
    margin-top: 0;
  }
}

.checkout__bottom {
  text-align: center;
  margin-top: 24px;
}

.checkout__bottom-text {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #3e3e3e;
}

.checkout__bottom p {
  color: #fff;
}

.checkout__bottom a {
  font-weight: 500;
  background: linear-gradient(24deg, #01e8ff 13.41%, #0c7efb 81.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.header__mobile-socials-item:last-child {
  width: auto !important;
}