@charset "UTF-8";


.overlay.active {
  opacity: 1;
  pointer-events: inherit;
}

a.modal-btn {
  display: inline-block;
  padding: 20px 40px;
  background: rgb(179, 128, 34);
  color: white;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  border-radius: 35px;
  transition: 0.15s ease-in-out;
}
a.modal-btn:hover {
  background: rgb(224, 160, 40);
  color: #fff;
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.5);
}

.modal {
  width: calc(100% - 40px);
  max-width: 800px;
  height: calc(100vh - 115px);
  max-height: 600px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  background: white;
  transition: 0.15s ease-in-out;
  z-index: 500;
}
.modal.active {
  opacity: 1;
  pointer-events: inherit;
}
.modal .close {
  widtH: 45px;
  height: 45px;
  position: absolute;
  margin-top: 60px;
  margin-left: 30px;
  color: #000;

  z-index: 1000;
  opacity: 1;
  transform: translate(-100%, -100%);
  cursor: pointer;
  transition: 0.15s ease-in-out;
}
@media (max-width: 940px) {
  .modal .close {
    left: 0;
    transform: translate(0%, -100%);
  }
}
.modal .close span {
  display: block;
  widtH: 45px;
  height: 5px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 0px 5px 1px black;
  
}
.modal .close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.modal .wrapper:after {
  content: "";
  font-family: FontAwesome;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  font-size: 450px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.15s ease-in-out;
  background: rgba(255, 32, 110, 0.35);
  color: rgba(0, 0, 0, 0.35);
}
@media (max-width: 640px) {
  .modal .wrapper:after {
    width: 0%;
  }
}

@media (max-width: 640px) {
  .modal .wrapper:before {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .modal .wrapper.switch:after {
    width: 100%;
  }
  .modal .wrapper.switch:before {
    width: 0%;
  }
}
.modal .wrapper.switch .content {
  transform: translate(100%, 0);
}
@media (max-width: 640px) {
  .modal .wrapper.switch .content {
    width: 100%;
    transform: translate(0%, 0);
  }
}
.modal .wrapper.switch .content .inner {
  transform: translate(-50%, 0);
}
.modal .wrapper .content {
  width: 100%;
  height: 100%;
  background: white;
  position: relative;
  overflow: hidden;
  transition: 0.2s cubic-bezier(0.42, 0, 0.02, 1.21);
  z-index: 100;
}
@media (max-width: 640px) {
  .modal .wrapper .content {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
  }
}
.modal .wrapper .content .inner {
  width: 200%;
  height: 100%;
  position: absolute;
  transition: 0.35s cubic-bezier(0.42, 0, 0.02, 1.21);
  top: 0;
  left: 0;
  display: flex;
}
.modal .wrapper .content .inner .side {
  width: 50%;
  height: 100%;
  overflow: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal .wrapper .content .inner .side form .field {
  margin: 10px 0;
}
.modal .wrapper .content .inner .side form .field label {
  font-size: 20px;
}
.modal .wrapper .content .inner .side form .field input[type='submit'] {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  padding: 15px 35px;
  border-radius: 35px;
  border: none;
  background: rgb(179, 128, 34);
  color: white;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}
.modal .wrapper .content .inner .side form .field input[type='submit']:hover {
  background: white;
  color: #fff;
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.5);
}
.modal .wrapper .content .inner .side form .field input[type='text']{
  font-family: "Raleway", sans-serif;
  padding: 0px 0;
  width: 100%;
  font-size: 28px;
  color: #000;
  outline: 0;
  border: none;
  background: none;
  border-bottom: 2px solid #ccc;
  transition: 0.15s ease-in-out;
}
.modal .wrapper .content .inner .side form .field input[type='tel']:focus{
  border-bottom: 2px solid rgb(179, 128, 34);
  box-shadow: 0px 7px 25px 1px rgba(0, 0, 0, 0.15);
}
.modal .wrapper .content .inner .side form .field input[type='tel'], .modal .wrapper .content .inner .side form .field input[type='let'], .modal .wrapper .content .inner .side form .field input[type='email'] {
  font-family: "Raleway", sans-serif;
  padding: 0px 0;
  width: 100%;
  font-size: 28px;
  outline: 0;
  border: none;
  background: none;
  border-bottom: 2px solid #ccc;
  transition: 0.15s ease-in-out;
}
.modal .wrapper .content .inner .side form .field input[type='tel']:focus, .modal .wrapper .content .inner .side form .field input[type='tel']:focus, .modal .wrapper .content .inner .side form .field input[type='email']:focus {
  border-bottom: 2px solid rgb(179, 128, 34);
  box-shadow: 0px 7px 25px 1px rgba(0, 0, 0, 0.15);
}
.modal .wrapper .content .inner .side form .field textarea{
  font-family: "Raleway", sans-serif;
  padding: 0px 0;
  width: 100%;
  font-size: 28px;
  outline: 0;
  border: none;
  background: none;
  border-bottom: 2px solid #ccc;
  transition: 0.15s ease-in-out;
}
.modal .wrapper .content .inner .side form .field textarea:focus{
  border-bottom: 2px solid rgb(179, 128, 34);
  box-shadow: 0px 7px 25px 1px rgba(0, 0, 0, 0.15);
}
.modal .options {
  display: flex;
}
.modal .options a {
  widtH: 100%;
  padding: 20px;
  font-size: 25px;
  text-align: center;
  color: black;
  text-decoration: none;
  transition: 0.15s ease-in-out;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}
.modal .options a:hover {
  color: #FF206E;
}
.modal .options a.active {
  box-shadow: 2px 2px 25px 1px rgba(0, 0, 0, 0.35);
  z-index: 100;
  background: rgb(179, 128, 34);
  color: white;
}
