
.sign-up-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.sign-up-body {
  width: 95%;
  max-width: 600px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.sign-up-body h3 {
  color: #111;
  font-size: 20px;
  margin-bottom: 20px;
}

.sign-up-underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  z-index: 1;
}

.sign-up-popup-close {
  position: absolute;
  top: -55px;
  right: -45px;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 50px;
  line-height: 50px;
  transform: rotate(45deg);
}

.form-group {
  border: 1px solid #ddd;
}

.sign-up-popup-open {
  border-radius: 0;
  color: #000;
  font-size: 15px;
  padding: 10px 15px;
  margin: 16px 12px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  background-color: #d3b93a;
  border: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.2s linear;
}

.sign-up-popup-open:hover {
  background-color: #b79c15;
}

button:active {
  outline: none;
  border: none;
}

.form-loader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 111;
}

.form-loader.show {
  display: flex;
}

.form-loader__inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: linear-gradient(0deg, rgba(255, 61, 0, 0.2) 33%, #ff3d00 100%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.form-loader__inner::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #263238;
}

.aff-form-cover {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 600px;
  padding: 30px;
  margin: -100px auto 0;
  background-color: #fff;
}

label {
  font-weight: 600;
  margin-bottom: 10px;
}
.panel-default,
.panel-default > .panel-heading {
  border-color: #e7ecf1;
  color: inherit;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e7ecf1;
}
.form-group {
  margin-bottom: 5px;
  margin-top: 15px;
}
.btn-pink {
  margin-top: 30px;
  background-color: #d3b93a;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 15px;
  text-align: center;
  width: 150px;
  border-radius: 0;
  color: #fff;
}

.contact-form .form-check {
  padding-left: 35px;
}

.checkbox-lable:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-lable input:checked ~ .checkmark {
  background-color: #d3b93a;
}

.checkbox-lable {
  font-size: 12px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-lable input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-lable .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.thankModal {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}
.thanks-modal-body {
  width: 600px;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  z-index: 5;
}
.thanks-modal-body h2 {
  font-size: 25px;
  line-height: 35px;
  padding: 10px 0;
}
.form-control {
  border-color: #e1e6eb;
  box-shadow: none;
  font-size: 14px;
  height: 40px;
  line-height: 20px;
  padding: 5px 15px;
  width: 100%;
}
.form-control:focus {
  border-color: #e1e1e1;
  outline: 0;
}
.form-control:focus,
.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control.kv-fileinput-caption {
  height: 39px;
}
.form-group.form-inline .checkbox,
.form-group.form-inline .radio {
  margin-right: 15px;
}
.input-group {
  width: 100%;
}
.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .aff-form-cover {
    margin: 0 auto;
  }
  .cookie-popup-body {
    flex-direction: column;
  }

  .cookie-popup-body p {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background-color: #e9e9e9;
  padding: 20px;
}

.cookie-popup-body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  background-color: #ebd937;
}

.cookie-popup-body p {
  color: #000;
  font-size: 16px;
  margin: 0 20px;
}

.cookie-popup-body p a {
  text-decoration: underline;
  color: #000;
}

.accept-cookies {
  border: none;
  padding: 10px 20px;
  transition: all 0.2s linear;
  background-color: #fff;
  min-width: 150px;
}

.accept-cookies:hover {
  background-color: #d5d5d5;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .aff-form-cover {
    margin: 0 auto;
  }
  .cookie-popup-body {
    flex-direction: column;
  }

  .cookie-popup-body p {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
  }
}
