.cwu-modal {
  --scroll-width: 0.8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1201;
  display: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 500ms ease-in-out;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 125%;
  color: #58595B;
}
@media (max-width: 768px) {
  .cwu-modal {
    display: block;
    transform: translateX(100%);
    bottom: var(--bottom-nav-height);
  }
}
.cwu-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.4rem 4.4rem 0 #0000001A;
}
@media (max-width: 768px) {
  .cwu-modal__container {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.cwu-modal__wrapper {
  border-radius: 0.8rem;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cwu-modal__wrapper {
    border-radius: 0;
  }
}
.cwu-modal__body {
  overflow: auto;
  padding: 10rem 8rem;
  max-height: 80dvh;
  width: calc(93.6rem + var(--scroll-width));
}
@media (max-width: 768px) {
  .cwu-modal__body {
    position: relative;
    padding: 6.4rem 1.6rem 1.6rem;
    max-height: calc(100dvh - var(--bottom-nav-height));
    width: 100vw;
  }
}
.cwu-modal__body::-webkit-scrollbar {
  width: var(--scroll-width);
  height: var(--scroll-width);
  border-radius: 2rem;
}
.cwu-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(88, 89, 91, 0.2);
  border-radius: 2rem;
}
.cwu-modal__body::-webkit-scrollbar-track {
  background-color: rgba(88, 89, 91, 0.15);
  border-radius: 2rem;
}
.cwu-modal.show {
  display: block;
}
@media (max-width: 768px) {
  .cwu-modal.show {
    transform: translateX(0);
  }
}
.cwu-modal .close-button {
  position: absolute;
  top: -2.4rem;
  right: -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1.5rem 0 #00000040;
  border-radius: 50%;
  width: 4.8rem;
  height: 4.8rem;
  background: #E0115F;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .cwu-modal .close-button {
    right: 1.6rem;
    top: 1.6rem;
  }
}
@media (min-width: 769px) {
  .cwu-modal .close-button:hover {
    background: #470A68;
  }
}
.cwu-modal .close-button img {
  width: 1.8rem;
  height: auto;
  object-fit: contain;
}
.cwu-modal h2 {
  margin-bottom: 4rem;
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 125%;
  color: #470A68;
}
@media (max-width: 768px) {
  .cwu-modal h2 {
    margin-bottom: 2.4rem;
    font-size: 2.8rem;
    line-height: 125%;
  }
}
.cwu-modal .menu-form .inputs-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .inputs-container {
    margin-top: 1.6rem;
    gap: 1.6rem;
  }
}
.cwu-modal .menu-form .inputs-container .inputs-container-row {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .inputs-container .inputs-container-row {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.cwu-modal .menu-form .inputs-container .controls-container-col {
  flex-basis: 34%;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .inputs-container .controls-container-col:empty {
    display: none;
  }
}
.cwu-modal .menu-form .inputs-container label {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.714;
  color: #58595B;
}
.cwu-modal .menu-form .inputs-container label .error-message {
  margin-top: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.714;
  color: #FF3B3B;
}
.cwu-modal .menu-form .inputs-container label .error-message:empty {
  display: none;
}
.cwu-modal .menu-form .inputs-container input[type="text"],
.cwu-modal .menu-form .inputs-container input[type="email"] {
  border-radius: 4.8rem;
  border: 0.1rem solid #D6DDE7;
  padding: 1.1rem 2rem;
  width: 100%;
  outline: none;
  box-shadow: inset 0 0 0 0.1rem transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.714;
  background-color: #F4F6F9;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .inputs-container input[type="text"],
  .cwu-modal .menu-form .inputs-container input[type="email"] {
    padding: 0.7rem 2rem;
  }
}
.cwu-modal .menu-form .inputs-container input[type="text"]:focus,
.cwu-modal .menu-form .inputs-container input[type="email"]:focus {
  border-color: #C6A1CF;
  box-shadow: inset 0 0 0 0.1rem #C6A1CF;
}
.cwu-modal .menu-form .inputs-container input[type="text"]::placeholder,
.cwu-modal .menu-form .inputs-container input[type="email"]::placeholder {
  color: #AEBACC;
}
.cwu-modal .menu-form .form-agreement {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox {
  position: relative;
  padding-left: 2.8rem;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox .custom-checkbox {
  position: absolute;
  left: 0;
  top: 0.3rem;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.2rem;
  border: 0.1rem solid #D6DDE7;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox .custom-checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox .custom-checkbox__title {
  display: block;
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  color: #470A68;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox .custom-checkbox-caption {
  display: block;
  margin-top: 0.4rem;
  line-height: 1.5;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox .custom-checkbox img {
  flex-shrink: 0;
  display: block;
  height: 1rem;
  max-width: 0;
  object-fit: cover;
  object-position: left;
  transition: all 0.3s ease-in-out;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox input {
  display: none;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox input:checked + .custom-checkbox {
  background-color: #470A68;
  border-color: #470A68;
}
.cwu-modal .menu-form .form-agreement .controls-container-checkbox input:checked + .custom-checkbox img {
  max-width: 1.3rem;
}
.cwu-modal .menu-form .form-agreement a {
  text-decoration: underline;
}
.cwu-modal .menu-form .form-agreement .error-message {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #FF3B3B;
}
.cwu-modal .menu-form .form-agreement .error-message:empty {
  display: none;
}
.cwu-modal .menu-form .form-agreement--top {
  gap: 1.6rem;
  margin-top: 4rem;
  border-radius: 0.8rem;
  padding: 0.8rem;
  background-color: rgba(51, 51, 51, 0.07);
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .form-agreement--top {
    margin-top: 1.6rem;
  }
}
.cwu-modal .menu-form .form-agreement--center {
  margin-top: 4rem;
  gap: 0;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .form-agreement--center {
    margin-top: 1.6rem;
  }
}
.cwu-modal .menu-form .form-agreement--center .error-message {
  margin-top: 0.4rem;
}
.cwu-modal .menu-form .form-agreement--bottom {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form .form-agreement--bottom {
    margin-top: 1.6rem;
    font-size: 1.2rem;
  }
}
.cwu-modal .menu-form button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding: 1.2rem 4rem;
  border-radius: 5rem;
  background-color: #E0115F;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 125%;
  text-transform: capitalize;
  color: #FFFFFF;
  transition: all 350ms ease-in-out;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form button {
    margin-top: 1.6rem;
    width: 100%;
    font-size: 1.4rem;
  }
}
.cwu-modal .menu-form button img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  transition: margin-left 350ms ease-in-out;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form button img {
    width: 2.125rem;
    height: 2rem;
  }
}
.cwu-modal .menu-form button:hover {
  background-color: #470A68;
}
@media (max-width: 768px) {
  .cwu-modal .menu-form button:hover {
    background-color: #E0115F;
  }
}
.cwu-modal .text-content {
  line-height: 2.4rem;
}
@media (max-width: 768px) {
  .cwu-modal .text-content {
    color: #3C4242;
  }
}
/*# sourceMappingURL=connect-with-us.css.map */