* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.not-scrollable {
  overflow-y: hidden;
}

.open-demo {
  font-size: 15px;
  font-weight: bold;
  font-family:"brandon-grotesque", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #0E6AAB;
  padding: 10px 40px;
  border-radius: 3px;
  text-decoration: none;
}

.open-demo:hover {
  background-color: #3daae4;
}

/* The Modal (background) */
.trialRegistration.modal {
  // display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content (image) */
.trial-modal {
  margin: 0px auto 0;
  display: block;
  border-radius: 3px;
  width: 100%;
  max-width: 800px;
  background-color: #fff;

}

.trial-modal {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.4s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0.9)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.9)} 
  to {transform:scale(1)}
}

/* The Close Button */
.trial-wrapper .close-trial-modal {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 50%;
  padding: 3px;
  width: 30px;
  height: 30px;
  text-align: center;
  margin: 0;
  z-index: 10;
  line-height: 22px;
}

.trial-wrapper .close-trial-modal:hover, .trial-wrapper .close-trial-modal:focus {
  color: #000;
  background-color: rgba(255, 255, 255, 1);
  text-decoration: none;
  cursor: pointer;
}

.trial-wrapper .back-trial {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 50%;
  padding: 3px;
  width: 27px;
  height: 27px;
  text-align: center;
  margin: 3px;
  z-index: 10;
  transform: rotate(180deg);
  line-height: 20px;
}

.trial-wrapper .back-trial:hover, .trial-wrapper .back-trial:focus {
  color: #000;
  background-color: rgba(255, 255, 255, 1);
  text-decoration: none;
  cursor: pointer;
}

.trial-wrapper {
  position: relative;
  padding: 30px;
  background: url("/wp-content/themes/tonido2/images/trial-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  box-sizing: border-box;
}

.trial-wrapper .title {
  font-family:"brandon-grotesque", sans-serif;
  color: #0068AD;
  font-size: 24px;
  line-height: 32px;
  margin: 35px 0 35px;
  padding-top: 0;
  text-align: center;
  font-weight: 500;
}

.online-title, .server-title {
  display: none;
}

.trial-wrapper .fc-logo {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  display: none;
}

@media screen and (min-width: 700px) {
  .trial-wrapper .form-wrapper {
    padding: 50px;
  }

  .trial-wrapper .title {
    font-size: 25px;
  }
}

@media screen and (max-width: 1000px) {
  .trial-wrapper {
    min-height: 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 1000px) {
  .trial-modal {
    margin: 70px auto 0;
  }

  .trial-wrapper {
    border-radius: 10px;
    background-size: 160%;
    padding: 60px 30px 30px;
  }

  .trial-wrapper .title {
    margin: 10px 0 35px;
    color: #fff;
  }

  .trial-wrapper .fc-logo {
    display: block;
  }
}

.trial-options {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
}

.trial-options p {
  color: #fff;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
}

.options-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.trial-option {
  grid-column: span 2 / span 2;
  background-color: #F5F6F8;
  border-radius: 6px;
}

.trial-option .opt-top {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 30px 80px;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  margin: -1px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.trial-option.online .opt-top {
  background-color: #0068AD;
}

.trial-option.server .opt-top {
  background-color: #063C5B;
}

.trial-option .opt-bottom {
  margin-top: -50px;
  position: relative;
  padding: 0px 30px 40px;
  text-align: center;
  z-index: 2;
}

.trial-option .opt-bottom svg {
  width: 100%;
  max-width: 90px;
}

.trial-option .opt-bottom h2 {
  font-family:"brandon-grotesque", sans-serif;
  text-transform: uppercase;
  font-size: 35px;
  margin-top: 30px;
  font-weight: bold;
}

.trial-option.online h2 {
  color: #0068AD;
}

.trial-option.server h2 {
  color: #063C5B;
}

.trial-option .opt-bottom h2 span {
  font-size: 16px;
  display: block;
  color: #333;
}

.trial-option.online:hover, .trial-option.server:hover {
  cursor: pointer;
  text-decoration: none;
}

.trial-option.online:hover .opt-top {
  background-color: #1F93E0;
}

.trial-option.online:hover .opt-bottom h2 {
  color: #1F93E0;
}

.trial-option.server:hover .opt-top {
  background-color: #0A5B89;
}

.trial-option.server:hover .opt-bottom h2 {
  color: #0A5B89;
}

/* Mobile testing 
@media screen and (min-width: 540px) and (max-width: 689px) {
  .trial-option {
    display: flex;
    align-items: stretch;
    position: relative;
  }

  .trial-option .opt-top {
    width: 100%;
    max-width: 50%;
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
    padding: 55px 75px 55px 20px;
  }

  .trial-option .opt-bottom {
    width: 100%;
    max-width: 50%;
    padding: 50px 20px 60px 50px;
  }

  .trial-option .opt-bottom img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-55%, -50%);
    max-width: 17%;
  }
}
*/

@media screen and (min-width: 690px) { 
  .trial-options p {
    max-width: 60%;
    font-size: 16px;
  }

  .trial-option {
    grid-column: span 1 / span 1;
  }

  .trial-option .opt-top {
    padding: 50px 50px 90px;
    font-size: 16px;
  }

  .trial-option.online .opt-top {
    padding: 50px 50px 100px;
  }

  .trial-option .opt-bottom {
    margin-top: -60px;
    padding: 0px 50px 60px;
  }

  .trial-option .opt-bottom svg {
    max-width: 120px;
  }
}

/*@media screen and (min-width: 1920px) {
  .trial-wrapper {
    padding: 60px;
  }

  .trial-options {
    padding: 60px 50px;
  }

  .options-grid {
    margin-top: 70px;
  }

  .trial-option .opt-top {
    padding: 50px 50px 150px;
  }

  .trial-option .opt-bottom {
    margin-top: -60px;
  }

  .trial-option .opt-bottom img {
    width: 100%;
    max-width: 150px;
  }
}*/

/* FORM */
.trial-form {
  border-radius: 11px;
  overflow: hidden;
  display: none;
}

.trial-form .inputs-wrapper {
  background-color: #fff;
  padding: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.trial-form .inputs-col {
  grid-column: span 2 / span 2;
}

.trial-form .inputs-wrapper label {
  color: #4e5d78;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0px;
}

.trial-form .hint-label {
  display: flex;
  justify-content: space-between;
}

.trial-form .hint-label span {
  font-size: 14px;
  color: #8392ab;
  display: flex;
  align-items: center;
}

.trial-form .hint-label img {
  margin-left: 5px;
  width: 17px;
  height: 17px;
}

.hint-label .tooltip-box {
  position: relative;
}

.hint-label .tooltip-box .tooltiptext {
  visibility: hidden;
  display: inline;
  width: 220px;
  background-color: #333;
  color: #fff;
  text-align: left;
  font-size: 12px;
  border-radius: 5px;
  padding: 10px 15px;
  margin-left: 10px;
  margin-top: 5px;
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 1;
  color: #fff;
}

.tooltip-box .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 50px;
  margin-left: -5px;
  border-width: 7px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}


.tooltip-box:hover {
  cursor: pointer;
}

.tooltip-box:hover .tooltiptext {
  visibility: visible;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.trial-form .inputs-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

.trial-form .inputs-wrapper input[type="text"], .trial-form .inputs-wrapper input[type="email"], .trial-form .inputs-wrapper input[type="number"], .trial-form .inputs-wrapper input[type="tel"] {
  border-radius: 4px;
  border: 1px solid #BBC4D3;
  margin-top: 10px;
  padding: 9px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  color: #212529;
  box-sizing:border-box;
}

.custom-select {
  position: relative;
}

.custom-select {
  border-radius: 4px;
  border: 1px solid #BBC4D3;
  margin-top: 10px;
  padding: 6px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  color: #8A97B0;
  box-sizing:border-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  background-image: url("data:image/svg+xml;utf8,<svg stroke='DarkGray' stroke-width='3' fill='none' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 9px;
  background-size: 16px;
}

.inputs-col .country-inputs .col-2 .custom-select {
  background-position-x: 93%;
}

.custom-select:hover {
  cursor: default;
}

.custom-select .select-options {
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #fff;
  border: 1px solid #BBC4D3;
  border-radius: 5px;
  z-index: 999;
  padding: 10px;
  display: none;
  min-width: 100%;
  box-sizing: border-box;
  max-height: 300px;
  overflow-y: scroll;
}

.section-8.custom-select .select-options {
  overflow-x: hidden;
}

.custom-select span.active {
  color: #212529;
}

.select-options ul {
  list-style: none;
  color: #8A97B0;
  padding: 0px;
  margin: 0px;
}

.select-options ul li {
  text-align: left;
  cursor: pointer;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  padding: 5px 10px;
  border-radius: 3px;
}

.select-options ul li:hover {
  cursor: pointer;
  background-color: #EFF2F7;
  color: #5A6C8D;
}

.select-options ul li.disabled-select-option {
  color: #CAD0DC;
}

.select-options ul li.disabled-select-option:hover {
  cursor: default;
  background-color: #fff;
  color: #CAD0DC;
  cursor: default;
}

.select-options hr {
  width: 150%;
  position: relative;
  left: -20px;
  margin: 10px 0;
  border-top: none;
  border-bottom: 1px solid #C3CBD9;
}

.trial-locations li:first-child, .trial-locations li:first-child:hover {
  background-color: #fff;
  color: #4E5D78;
  font-weight: 500;
  cursor: default;
}

.production-locations li:first-child, .production-locations li:first-child:hover {
  background-color: #fff;
  color: #A7B1C3;
  font-weight: 500;
  cursor: default;
}

.inputs-col .expand-industry {
  display: none;
}

.inputs-col .country-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.inputs-col .country-inputs .col-4 {
  grid-column: span 4 / span 4;
}


.inputs-col .country-inputs .col-2 {
  text-align: left;
  padding: 0px;
  grid-column: span 2 / span 2;
}

.disabled-input {
  position: relative;
}

.disabled-input .disabled-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.disabled-input .custom-select {
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  border: 1px solid #DCE2ED;
  background-image: url("data:image/svg+xml;utf8,<svg stroke='Gainsboro' stroke-width='3' fill='none' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/></svg>");
}

.disabled-input span.inactive {
  color: #DCE2ED;
}

.disabled-input .custom-select.pre-active {
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  border: 1px solid #C3CBD8;
  background-image: url("data:image/svg+xml;utf8,<svg stroke='DarkGray' stroke-width='3' fill='none' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/></svg>");
}

.disabled-input span.pre-active {
  color: #8A97B0;
}


.custom-select span.active {
  color: #212529;
}

.inputs-col .name-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inputs-col .name-inputs .col-1 {
  grid-column: span 1 / span 1;
}

::placeholder {
  color: #8A97B0;
}

.trial-form .inputs-wrapper .url-wrapper {
  display: flex;
  align-items: stretch;
}

.trial-form .inputs-wrapper .url-wrapper input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  width: 60%;
}

.trial-form .inputs-wrapper .url-wrapper .url-end {
  width: 40%;
  color: #4E5D78;
  font-size: 13px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #BBC4D3;
  margin-top: 10px;
  padding: 6.7px 12px;
  border: 1px solid #BBC4D3;
  box-sizing: unset;
}

@media screen and (min-width: 690px) {
  .trial-form .inputs-col {
    grid-column: span 1 / span 1;
  }
}

/* Submit Section */
.trial-form .submit-wrapper {
  background-color: #F2F3F6;
  padding: 40px;
}

.trial-form .submit-wrapper label {
  color: #4E5D78;
  font-size: 14px;
  font-weight: 500;
}

.trial-form .submit-wrapper label a {
  color: #0068AD;
  text-decoration: underline;
}

.trial-form .submit-wrapper label a:hover {
  color: #333;                                                                                                                                                 .
}

.trial-form .submit-wrapper .checkbox-wrapper {
  margin-bottom: 15px;
}

.trial-form .submit-wrapper .checkbox-group {
  display: flex;
  align-items: start;
}

.trial-form .submit-wrapper .checkbox-group input[type="checkbox"] {
  width: fit-content;
  border: 1px solid #C8C8C8;
  margin-right: 7px;
}

.trial-form .submit-wrapper .submit-btn-container {
  margin-top: 40px;
  text-align: center;
}

.trial-form .submit-wrapper .trial-submit {
  display: inline-block;
  background: #0068AD;
  border: none;
  font-weight: bold;
  padding: 10px 60px;
  font-family:"brandon-grotesque", sans-serif;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trial-form .submit-wrapper .trial-submit:hover {
  background: #003558;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

@media screen and (min-width: 694px) {
  .custom-select .select-options {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    z-index: 999;
    padding: 10px;
    display: none;
    min-width: 100%;
    box-sizing: border-box;
  }
}

/* TELEPHONE INPUT */
.iti.iti--allow-dropdown {
  display: block;
  margin-top: 10px;
}

.iti.iti--allow-dropdown input {
  padding: 8px 12px 8px 55px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #BBC4D3;
}

/* WARNING MODAL */
 /* The Modal (background) */
.Warningmodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999999999; /* Sit on top */
  padding-top: 35px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content (image) */
.Warningmodal .modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 650px;
  position: relative;
  top: 150px;
}

.Warningmodal .modal-content {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.4s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0.9)}
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.9)}
  to {transform:scale(1)}
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .Warningmodal .modal-content {
    margin-top: 25px;
    width: 90%;
  }
}

.warning-wrapper {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.25);
}

.warning-wrapper .warning-title {
  background: #0068AD;
  color: #fff;
  font-weight: 500;
  padding: 10px;
  text-align: center;
}

.warning-wrapper .warning-content {
  background: #fff;
  text-align: center;
  padding: 25px 45px 35px;
  line-height: 25px;
  font-weight: 500;
}

.warning-wrapper .warning-icon {
  display: block;
  margin: 0 auto 20px;
  width: 40px;
}

.warning-wrapper p {
  margin-bottom: 30px;
  line-height: 30px;
}

.warning-wrapper p span {
  background-color: #FFC700;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 3px;
  line-height: 40px;
}

@media screen and (max-width: 500px) {
  .warning-wrapper .line-desktop {
    display: none;
  }

  .warning-wrapper p span {
    display: block;
    padding: 5px;
    line-height: 25px;
    margin: 7px 5px;
  }
}

.warning-wrapper a {
  color: #0068AD;
  text-decoration: none;
}

.warning-wrapper a:hover {
  color: #000;
  text-decoration: underline;
}

.warning-wrapper .warning-button {
  background: #016aae;
  padding: 7px 70px;
  border-radius: 3px;
  font-family:"brandon-grotesque", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  width: fit-content;
  margin: 30px auto 0;
  color: #fff;
}

.warning-wrapper .warning-button:hover {
  cursor: pointer;
  background: #3daae4;
}

#LocationsModal .warning-wrapper {
  overflow: visible;
}

#LocationsModal .modal-content {
  max-width: 500px;
}

#LocationsModal .warning-content {
  padding: 50px 45px 35px;
  text-align: left;
  color: #4E5D78;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

#LocationsModal .warning-content p {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0;
}

#LocationsModal .close-locations-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #4E5D78;
}

.warning-input-wrapper {
  padding: 25px 45px 35px;
  background-color: #F2F3F6;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.warning-input-wrapper label {
  color: #4E5D78;
  font-weight: 500;
}

.warning-input-wrapper .custom-select.section-21 {
  background-color: #fff;
}

/* NEW WARNING MODAL STYLES
#warningModal {
  display: none; 
  position: fixed; 
  z-index: 99999999999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.8); 
}

#warningModal .modal-content {
  max-width: 550px;
  margin: 0px auto;
  position: relative;
  top: 10%;
    -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.4s;
}

#warningModal .close-warning-modal {
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #4E5D78;
  font-size: 30px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 50%;
  padding: 3px;
  width: 30px;
  height: 30px;
  text-align: center;
  margin: 0;
  z-index: 10;
}

#warningModal .close-warning-modal:hover, #warningModal .close-warning-modal:focus {
  color: #016aae;
  text-decoration: none;
  cursor: pointer;
}

.warning-wrapper {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.25);
}

.warning-wrapper .warning-content {
  background: #fff;
  padding: 60px 50px 40px;
  line-height: 22px;
  font-weight: 500;
  color: #4E5D78;
}

.warning-wrapper p {
  line-height: 30px;
  margin: 0;
}

.warning-wrapper a {
  color: #0068AD;
  text-decoration: none;
}

.warning-wrapper a:hover {
  color: #000;
  text-decoration: underline;
}

.warning-wrapper .ce-button-wrapper {
  padding: 40px 45px;
  background-color: #F2F3F6;
  text-align: center;
}

.warning-wrapper .warning-button {
  background: #016aae;
  padding: 7px 30px;
  border-radius: 4px;
  font-family:"brandon-grotesque", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.warning-wrapper .warning-button:hover {
  cursor: pointer;
  background: #3daae4;
  color: #fff;
  text-decoration: none;
} */

/* VERIFICATION CODE */
.verification-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 50px 80px;
}

.verification-wrapper h2 {
  color: #0068AD;
  font-family:"brandon-grotesque", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 0px;
}

.verification-wrapper h3 {
  color: #fff;
  font-family:"brandon-grotesque", sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 6px 0 0 0;
}

.code-container {
  margin: 75px auto 0;
  max-width: 500px;
  width: 100%;
}

.code-container .email-box {
  text-align: center;
  background-color: #0068AD;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  padding: 40px 25px 25px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}

.code-container .email-box img {
  width: 65px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
}

.code-container .code-box {
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 40px 40px;
}

.code-container .code-box .label-container {
  display: flex;
  justify-content: space-between;
  color: #4E5D78;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.code-container .code-box .label-container a {
  color: #0068AD;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.code-container .code-box .label-container a img {
  margin-right: 7px;
}

.code-container .code-box input[type="text"] {
  border-radius: 4px;
  border: 1px solid #BBC4D3;
  margin-top: 10px;
  padding: 8px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  color: #848484;
  box-sizing:border-box;
}

.code-container .code-box .button-container {
  margin-top: 30px;
  text-align: center;
}

.code-container .code-box .button-container .submit-btn, #submit-overlay .submit-btn  {
    appearance: none;
    background: #0068AD;
    border: none;
    font-weight: bold;
    padding: 8px 20px;
    font-family:"brandon-grotesque", sans-serif;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    width: 250px;
    margin: auto;
    cursor: pointer;
}

@media screen and (min-width: 1920px) {
  .verification-wrapper {
    padding: 100px 80px;
  }
}

/* ERROR MESSAGES */
.trial-form .inputs-wrapper input.error {
  border: 1px solid #D50000;
}

.error-msg {
  display: none;
  color: #D50000;
}

.trial-form .inputs-wrapper .custom-select.error {
  border: 1px solid #D50000;
}

.trial-form .inputs-wrapper .url-wrapper input.error {
  border: 1px solid #D50000;
  border-right: 0;
}
.trial-form .inputs-wrapper .url-wrapper .url-end.error {
  border: 1px solid #D50000;
  border-left: 0;
}

.trial-form .submit-wrapper .checkbox-group input[type="checkbox"].error {
  border: 1px solid #D50000;
}






#the_c_number {
  border-radius: 4px;
    border: 1px solid #BBC4D3;
    margin-top: 10px;
    padding: 9px 12px;
    width: 150px;
    max-width: 100%;
    font-size: 15px;
    color: #212529;
    box-sizing: border-box;
}

.captcha_wrapper {
    background: #E2E5EC;
    font-size: 12px;
    text-align: center;
    color: #8A97B0;
    padding: 5px 10px;
    line-height: 18px;
}

      #submit-overlay {
        display: none;
        position: absolute;
        margin: auto;
        text-align: center;
        font-size: 14px;
        color: #fff;
        background: #02141E;
        width: calc(100% - 60px);
        height: calc(100% - 160px);
        border-radius: 10px;
        z-index: 2;
        padding-top: 300px;          
      }

      .loader {
        width: 15px;
        margin: 0 auto 30px;
        aspect-ratio: 1;
        border-radius: 50%;
        animation: l5 1s infinite linear alternate;
      }
      @keyframes l5 {
          0%  {box-shadow: 20px 0 #fff, -20px 0 #fff2;background: #fff }
          33% {box-shadow: 20px 0 #fff, -20px 0 #fff2;background: #fff2}
          66% {box-shadow: 20px 0 #fff2,-20px 0 #fff; background: #fff2}
          100%{box-shadow: 20px 0 #fff2,-20px 0 #fff; background: #fff }
      }

