/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-course-free-trial {
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .c-course-free-trial {
    flex-direction: row;
    justify-content: space-between;
  }
}

.c-course-free-trial__content {
  width: 100%;
  max-width: 51rem;
  position: relative;
}

.c-course-free-trial__content .c-dynamic-content-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FEFEFE;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.c-course-free-trial__content .c-dynamic-content-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: inherit;
  opacity: 0.95;
  z-index: -1;
}

.c-course-free-trial__dynamic-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.c-course-free-trial__form-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.c-course-free-trial__form-container {
  max-width: 40rem;
}

.c-course-free-trial__form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1025px) {
  .c-course-free-trial__form-fields {
    gap: 2rem;
  }
}

.c-course-free-trial__form-field {
  position: relative;
}

.c-course-free-trial__form-field-label {
  font-size: 12px;
  line-height: 1.66;
  font-weight: normal;
  color: #204D51;
}
@media (min-width: 1025px) {
  .c-course-free-trial__form-field-label {
    font-size: 16px;
    line-height: 1.5;
    font-weight: normal;
  }
}

.c-course-free-trial__form-field--email input {
  font-size: 24px;
  line-height: 1.5;
  font-weight: normal;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(32, 77, 81, 0.4);
  border-radius: 0;
  padding: 0;
  width: 100%;
  color: #204D51;
  -webkit-animation-name: onautofillcancel;
          animation-name: onautofillcancel;
  margin: 10px 0 0;
}
.c-course-free-trial__form-field--email input::-moz-placeholder {
  color: rgba(32, 77, 81, 0.4);
}
.c-course-free-trial__form-field--email input:-ms-input-placeholder {
  color: rgba(32, 77, 81, 0.4);
}
.c-course-free-trial__form-field--email input::placeholder {
  color: rgba(32, 77, 81, 0.4);
}
.c-course-free-trial__form-field--email input:not(:-moz-placeholder-shown) {
  border-bottom-color: #204D51;
  outline: none;
}
.c-course-free-trial__form-field--email input:not(:-ms-input-placeholder) {
  border-bottom-color: #204D51;
  outline: none;
}
.c-course-free-trial__form-field--email input:focus, .c-course-free-trial__form-field--email input:not(:placeholder-shown) {
  border-bottom-color: #204D51;
  outline: none;
}
@media (min-width: 1025px) {
  .c-course-free-trial__form-field--email input {
    font-size: 32px;
    line-height: 1;
    font-weight: normal;
    padding-bottom: 0.625rem;
  }
}

.c-course-free-trial__form-error-message-container {
  display: flex;
}

.c-course-free-trial__form-error-message {
  display: inline-block;
  color: #9c1600;
  border: 1px solid #9c1600;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  margin: 1.25rem 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.c-course-free-trial__form-field--checkbox {
  padding-bottom: 0;
  padding-right: 0;
  width: 100%;
  position: relative;
  line-height: 1.5;
}
.c-course-free-trial__form-field--checkbox .f-field__checkbox {
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 0;
  border-bottom: none;
  font-size: 1rem;
  padding: 0.7rem;
}
.c-course-free-trial__form-field--checkbox .f-field__checkbox:checked + .f-field__label:before {
  background-color: #204D51;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath data-name='Rectangle 2731' fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='m9.418 18.178-4.756-4.755 1.179-1.178 3.577 3.577 3.836-3.837 5.575-5.575 1.178 1.178L9.418 18.177z' fill='%23FEFEFE'/%3E%3C/svg%3E");
}
.c-course-free-trial__form-field--checkbox .f-field__label {
  color: #204D51;
  font-size: 1rem;
  padding-left: 0;
  margin-left: 0;
  cursor: pointer;
}
.c-course-free-trial__form-field--checkbox .f-field__label span {
  padding-left: 2.5rem !important;
}
.c-course-free-trial__form-field--checkbox .f-field__label a {
  text-decoration: underline;
}
.c-course-free-trial__form-field--checkbox .f-field__label:before {
  left: 0;
  position: absolute;
  top: -0.25rem;
  border: 1px solid #4C7074;
  border-radius: 0.25rem;
  content: "";
  display: inline-block;
  height: 1.5rem;
  margin-right: 1rem;
  max-width: 1.5rem;
  transform: translateY(0.25rem);
  width: 100%;
  color: #204D51;
  font-size: 1rem;
}

.js-free-trial-form-success-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FEFEFE;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.js-free-trial-form-success-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: inherit;
  opacity: 0.95;
  z-index: -1;
}

.c-course-free-trial__decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 25;
}
.c-course-free-trial__decor .c-decor-arrow {
  position: absolute;
  left: 50%;
  top: 6rem;
  transform: translateX(-50%);
}

.c-course-free-trial__confirmation {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border-radius: 0.5rem;
  margin: 0;
  z-index: 20;
  position: relative;
}
@media (min-width: 1025px) {
  .c-course-free-trial__confirmation {
    padding: 3rem;
    gap: 2rem;
    border-radius: 1rem;
  }
}

.c-course-free-trial__confirmation-title {
  font-size: 2.5rem !important;
  line-height: 1.33;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .c-course-free-trial__confirmation-title {
    font-size: 3rem !important;
  }
}

.c-course-free-trial__confirmation-text {
  font-size: 1rem !important;
  text-align: center;
}
@media (min-width: 1025px) {
  .c-course-free-trial__confirmation-text {
    font-size: 1.5rem !important;
    line-height: 1.5;
  }
}

.ui-theme-color--primary-dark-green .js-free-trial-form-success-message,
.ui-theme-color--primary-dark-green .c-dynamic-content-loader {
  background-color: #204D51;
}

.ui-theme-color--dark-green .js-free-trial-form-success-message,
.ui-theme-color--dark-green .c-dynamic-content-loader {
  background-color: #204D51;
}

.ui-theme-color--light-green .js-free-trial-form-success-message,
.ui-theme-color--light-green .c-dynamic-content-loader {
  background-color: #B4F6D0;
}

.ui-theme-color--light-green-02 .js-free-trial-form-success-message,
.ui-theme-color--light-green-02 .c-dynamic-content-loader {
  background-color: #E8ECED;
}

.ui-theme-color--light-green-02-opacity-04 .js-free-trial-form-success-message,
.ui-theme-color--light-green-02-opacity-04 .c-dynamic-content-loader {
  background-color: rgba(180, 246, 208, 0.4);
}

.ui-theme-color--blue .js-free-trial-form-success-message,
.ui-theme-color--blue .c-dynamic-content-loader {
  background-color: #CAF5FF;
}

.ui-theme-color--yellow .js-free-trial-form-success-message,
.ui-theme-color--yellow .c-dynamic-content-loader {
  background-color: #f4f677;
}

.ui-theme-color--white .js-free-trial-form-success-message,
.ui-theme-color--white .c-dynamic-content-loader {
  background-color: #FEFEFE;
}

.ui-theme-color--violet .js-free-trial-form-success-message,
.ui-theme-color--violet .c-dynamic-content-loader {
  background-color: #C9C5FF;
}

.ui-theme-color--orange .js-free-trial-form-success-message,
.ui-theme-color--orange .c-dynamic-content-loader {
  background-color: #FFD7A6;
}

.ui-theme-color--peach .js-free-trial-form-success-message,
.ui-theme-color--peach .c-dynamic-content-loader {
  background-color: #FFE2D2;
}

.ui-theme-color--sky .js-free-trial-form-success-message,
.ui-theme-color--sky .c-dynamic-content-loader {
  background-color: #AECFFF;
}

.ui-theme-color--pink .js-free-trial-form-success-message,
.ui-theme-color--pink .c-dynamic-content-loader {
  background-color: #FFC9FF;
}

.ui-theme-color--gray .js-free-trial-form-success-message,
.ui-theme-color--gray .c-dynamic-content-loader {
  background-color: #F7F7F7;
}

.ui-theme-color--light-gray .js-free-trial-form-success-message,
.ui-theme-color--light-gray .c-dynamic-content-loader {
  background-color: #f2f2f2;
}

.ui-theme-color--light-gray-02 .js-free-trial-form-success-message,
.ui-theme-color--light-gray-02 .c-dynamic-content-loader {
  background-color: #F7F7F7;
}
