.noSelect {
  -ms-user-select: none !important;
  -moz-user-select: none !important;
  -khtml-user-select: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}
.overlay {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay, color;
  /* normal / overlay / soft-light / hard-light / darken / multiply / color-burn / lighten / screen / color-dodge / difference / exclusion / hue / saturation / color / luminosity */
}
.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
  font-size: 0px;
  color: transparent;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
.style-link {
  color: #1e4f6b;
}
.style-link:hover {
  color: #ec9544;
}
.black-text,
.text-black {
  color: #000000 !important;
}
.icon-download {
  position: relative;
  margin-left: 40px;
}
.icon-download:hover {
  color: #ec9544;
  text-decoration: underline;
}
.icon-download:hover::before {
  background-color: #ec9544;
}
.icon-download::before {
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: -40px;
  width: 25px;
  height: 25px;
  background: #1e4f6b url(https://static.dnk24.com/_local/dnk24/svg/icons/download_white.svg) no-repeat center center;
  background-size: 27px 27px;
  transition: all 0.15s linear 0s;
}
/* ~~~~~~~~~~~~~~~ fonts ~~~~~~~~~~~~~~~ */
/* ~~~ ~~~ FLEX PREFIXES FIXED ~~~ ~~~ */
.flexColumn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
}
.flexInline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flexRow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  -ms-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flexRowWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-wrap: wrap;
}
/*
@supports (display: flex) or (display: -webkit-box) {
	// code for supporting browsers
}
*/
/* Bootstrap v.5.0 Forms EZ-Web edition */
/* ~~~ ~~~ ~~~ FORMS ~~~ ~~~ ~~~ */
form.relatives {
  position: relative;
}
form.relatives .progress {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.25s linear 0s;
  z-index: 5;
}
form.relatives .progress::after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  margin: -30px 0px 0px -30px;
  background: transparent url('https://static.dnk24.com/_local/dnk24/svg/ajax_loader.svg') no-repeat center center;
  background-size: 45px 45px;
  transition: all 0.25s linear 0s;
}
form.relatives .progress[data-visible="hide"] {
  visibility: hidden;
  opacity: 0;
  width: 30%;
  height: 30%;
  left: 50%;
  top: 50%;
  margin: -15% 0px 0px -15%;
}
form.relatives .progress[data-visible="hide"]::after {
  opacity: 1;
}
form.relatives .progress[data-visible="show"] {
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
form.relatives .progress[data-visible="show"]::after {
  opacity: 1;
}
form.relatives .success {
  display: block;
  width: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.25s linear 0s;
  z-index: 5;
}
form.relatives .success div {
  padding: 0px;
  box-sizing: border-box;
  border: solid 1px #7D7D7D;
  border-radius: 4px;
  background: #FFFFFF;
  position: relative;
  visibility: hidden;
}
form.relatives .success div p {
  margin: 0px;
  text-align: center;
}
form.relatives .success div p + p {
  margin-top: 10px;
}
form.relatives .success div span.close {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 300;
  position: absolute;
  top: 0px;
  right: 10px;
  color: #7D7D7D;
  cursor: pointer;
  transition: all 0.15s linear 0s;
}
form.relatives .success div span.close:hover {
  color: #000000;
}
form.relatives .success[data-visible="hide"] {
  visibility: hidden;
  opacity: 0;
  width: 30%;
  height: 30%;
  left: 50%;
  top: 50%;
  margin: -15% 0px 0px -15%;
}
form.relatives .success[data-visible="show"] {
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
form.relatives .success[data-visible="show"] div {
  padding: 30px;
  margin-top: 20%;
  visibility: visible;
}
form {
  transition: all 0.25s linear 0s;
}
form[data-visible="show"] {
  visibility: visible;
  opacity: 1;
  height: auto !important;
}
form[data-visible="hide"] {
  visibility: hidden;
  opacity: 0;
  height: 0px !important;
}
form .row {
  text-align: left;
}
form .row + .row {
  margin-top: 15px;
}
form input[type="hidden"] + .row {
  margin-top: 15px;
}
form button[type="submit"],
form input[type="submit"],
form .btn {
  font-size: 1em;
}
form button[type="submit"] span,
form input[type="submit"] span,
form .btn span {
  font-size: 1em;
}
form div.submit {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
}
form label sup {
  display: inline-block !important;
  color: transparent;
  width: 10px;
  height: 3px;
  vertical-align: middle;
  background: transparent;
  position: relative;
}
form label sup::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 3px;
  top: -10px;
  background: transparent url('https://static.dnk24.com/_local/dnk24/svg/icons/asterisk.svg') no-repeat center center;
  background-size: 10px 10px;
}
input,
input:focus {
  outline: none;
}
textarea,
textarea:focus {
  outline: none;
}
label {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0px;
  text-align: right;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border: solid 1px #7D7D7D;
  height: 46px;
  line-height: 46px;
  background: #FFFFFF;
  padding: 0px 20px;
  font-size: 1em;
  width: 100%;
  color: #000000;
  transition: all 0.25s linear 0s;
  border-radius: 23px;
  clear: both;
}
input[type="text"] + span.wrong,
input[type="email"] + span.wrong,
input[type="password"] + span.wrong,
input[type="tel"] + span.wrong {
  display: block;
  clear: both;
  margin-top: 5px;
  color: #E4110E;
  font-size: 0.8em;
  width: 100%;
  height: 1em;
  line-height: 1em;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
  color: #000000;
}
input[type="text"].wrong,
input[type="email"].wrong,
input[type="password"].wrong,
input[type="tel"].wrong,
input[type="text"].wrong:focus,
input[type="email"].wrong:focus,
input[type="password"].wrong:focus,
input[type="tel"].wrong:focus {
  border-color: #E4110E;
}
div.checkbox {
  display: flex;
  flex-direction: column;
}
div.checkbox input[type="checkbox"] {
  order: 2;
  visibility: hidden;
  margin: -13px 0px 0px 0px;
  padding: 0px;
}
div.checkbox input[type="checkbox"] ~ label.checkbox {
  order: 1;
  text-align: left;
  min-height: 26px;
  height: auto !important;
  font-size: 0.9em;
  line-height: 1em;
  padding-top: 5px;
  padding-left: 31px;
  display: inline-block;
}
div.checkbox input[type="checkbox"] ~ label.checkbox sup::after {
  top: -7px;
}
div.checkbox input[type="checkbox"] ~ label.checkbox a {
  color: #000000;
  text-decoration: underline;
  display: inline;
  clear: none;
  float: none;
}
div.checkbox input[type="checkbox"] ~ label.checkbox a:hover {
  color: #E4110E;
}
div.checkbox input[type="checkbox"] ~ label.checkbox::before {
  content: '';
  display: block;
  float: left;
  margin-left: -31px;
  margin-top: -5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: solid 2px #838383;
  border-radius: 1px;
  background: #FFFFFF url('https://static.dnk24.com/_local/dnk24/svg/icons/checkbox.svg') no-repeat center center;
  background-size: 0px 0px;
  transition: all 0.25s linear 0s;
}
div.checkbox input[type="checkbox"]:checked ~ label.checkbox::before {
  background-size: 12px 12px;
}
div.checkbox input[type="checkbox"] + span.wrong {
  order: 3;
  display: block;
  clear: both;
  margin-top: 5px;
  color: #ec9544;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  height: 12px;
  line-height: 12px;
}
div.checkbox input[type="checkbox"].valid ~ label.checkbox::before {
  border-color: #878787 !important;
}
div.checkbox input[type="checkbox"].wrong ~ label.checkbox::before {
  border-color: #ec9544 !important;
}
textarea {
  border: solid 1px #7D7D7D;
  border-radius: 23px;
  height: 145px;
  line-height: 1em;
  background: #FFFFFF;
  padding: 13px 20px;
  text-align: justify;
  font-size: 1em;
  width: 100%;
  resize: none;
  clear: both;
  color: #000000;
  transition: all 0.25s linear 0s;
}
textarea + span.wrong {
  display: block;
  clear: both;
  margin-top: 5px;
  color: #E4110E;
  font-size: 0.8em;
  width: 100%;
  height: 1em;
  line-height: 1em;
}
textarea.valid {
  border-color: rgba(89, 68, 29, 0.5);
}
textarea:focus {
  color: #000000;
  border-color: #59441d;
}
textarea.wrong,
textarea.wrong:focus {
  border-color: #E4110E;
}
button[type="submit"],
input[type="submit"] {
  transition: all 0.25s linear 0s;
  cursor: pointer;
  outline: none !important;
}
button[type="submit"][disabled="disabled"],
input[type="submit"][disabled="disabled"] {
  filter: greyscal(0.5);
  opacity: 0.8;
  cursor: default;
}
.btn {
  display: inline-block;
  padding: 0px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  /*(0.52, 1.64, 0.37, 0.66)*/
  -webkit-transition: all 0.35s cubic-bezier(0.5, 2, 0.5, 0.25) 0s;
  -o-transition: all 0.35s 0.5s cubic-bezier(0.5, 2, 0.5, 0.25) 0s;
  transition: all 0.35s cubic-bezier(0.5, 2, 0.5, 0.25) 0s;
  transition-timing-function: cubic-bezier(0.5, 2, 0.5, 0.25) !important;
}
.btn[disabled="disabled"] {
  filter: greyscal(0.5);
  opacity: 0.8;
  cursor: default;
}
.btn::before {
  content: '';
  display: block;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -130%;
  z-index: 2;
  background: rgba(205, 163, 93, 0.45);
  background-blend-mode: overlay;
  /*(0.52, 1.64, 0.37, 0.66)*/
  -webkit-transition: all 0.35s cubic-bezier(0.5, 2, 0.5, 0.25) 0s;
  -o-transition: all 0.35s 0.5s cubic-bezier(0.5, 2, 0.5, 0.25) 0s;
  transition: all 0.35s cubic-bezier(0.5, 2, 0.5, 0.25) 0s;
  transition-timing-function: cubic-bezier(0.5, 2, 0.5, 0.25) !important;
}
.btn:not([disabled="disabled"]):hover::before {
  width: 120%;
  left: -10%;
}
.btn.upper {
  text-transform: uppercase;
}
.btn.upper > s,
.btn.upper > span {
  text-transform: uppercase;
}
.btn > s,
.btn > span {
  text-decoration: none;
  font-style: normal;
  display: block;
  width: 100%;
  height: 40px;
  line-height: 38px;
  text-align: center;
  z-index: 5;
  left: 0px;
  top: 0px;
  position: relative;
  color: #FFFFFF;
  padding: 0px 30px;
  white-space: nowrap;
}
@media (max-width: 320px) {
  .btn > s,
  .btn > span {
    padding: 0px 20px !important;
  }
}
@media (max-width: 1024px) {
  .btn > s,
  .btn > span {
    padding: 0px 20px !important;
  }
}
.btn[disabled="disabled"] + div.disabled {
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(228, 17, 14, 0.5);
  display: block;
  width: 100%;
  height: 100%;
}
.btn.btn-blue-hover-yellow {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-hover-yellow > s,
.btn.btn-blue-hover-yellow > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-hover-yellow::before {
  background: #ffcc00;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #ffcc00;
}
.btn.btn-blue-hover-yellow:hover s,
.btn.btn-blue-hover-yellow:hover span {
  color: #000000;
}
.btn.btn-blue-orange {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-orange > s,
.btn.btn-blue-orange > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-orange::before {
  background: #ec9544;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #ec9544;
}
.btn.btn-blue-orange:hover s,
.btn.btn-blue-orange:hover span {
  color: #000000;
}
.btn.btn-blue2-orange {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #66CCFF;
  border: none;
}
.btn.btn-blue2-orange > s,
.btn.btn-blue2-orange > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue2-orange::before {
  background: #ec9544;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #ec9544;
}
.btn.btn-blue2-orange:hover s,
.btn.btn-blue2-orange:hover span {
  color: #000000;
}
.btn.btn-blue-white {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-white > s,
.btn.btn-blue-white > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-white::before {
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #FFFFFF;
}
.btn.btn-blue-white:hover s,
.btn.btn-blue-white:hover span {
  color: #1e4f6b;
}
.btn.btn-blue-yellow {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #ffcc00;
  border: none;
}
.btn.btn-blue-yellow > s,
.btn.btn-blue-yellow > span {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-yellow::before {
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #FFFFFF;
}
.btn.btn-blue-yellow:hover s,
.btn.btn-blue-yellow:hover span {
  color: #ffcc00;
}
.btn.btn-blue-cyan {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-cyan > s,
.btn.btn-blue-cyan > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-cyan::before {
  background: #77ACCE;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #77ACCE;
}
.btn.btn-blue-cyan:hover s,
.btn.btn-blue-cyan:hover span {
  color: #FFFFFF;
}
.btn.btn-blue-orange {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-orange > s,
.btn.btn-blue-orange > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-orange::before {
  background: #ec9544;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #ec9544;
}
.btn.btn-blue-orange:hover s,
.btn.btn-blue-orange:hover span {
  color: #000000;
}
.btn.btn-blue-white {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: solid 1px #1e4f6b;
  box-sizing: border-box;
}
.btn.btn-blue-white > s,
.btn.btn-blue-white > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-white::before {
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #FFFFFF;
}
.btn.btn-blue-white:hover s,
.btn.btn-blue-white:hover span {
  color: #1e4f6b;
}
.btn.btn-blue-cyan {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-cyan > s,
.btn.btn-blue-cyan > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-cyan::before {
  background: #77ACCE;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #77ACCE;
}
.btn.btn-blue-cyan:hover s,
.btn.btn-blue-cyan:hover span {
  color: #FFFFFF;
}
.btn.btn-orange-white {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #ec9544;
  border: solid 1px #ec9544;
  box-sizing: border-box;
}
.btn.btn-orange-white > s,
.btn.btn-orange-white > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-orange-white::before {
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #FFFFFF;
}
.btn.btn-orange-white:hover s,
.btn.btn-orange-white:hover span {
  color: #ec9544;
}
.btn.btn-orange-cyan {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #ec9544;
  border: none;
}
.btn.btn-orange-cyan > s,
.btn.btn-orange-cyan > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-orange-cyan::before {
  background: #77ACCE;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #77ACCE;
}
.btn.btn-orange-cyan:hover s,
.btn.btn-orange-cyan:hover span {
  color: #FFFFFF;
}
.btn.btn-orange-blue {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #ec9544;
  border: none;
}
.btn.btn-orange-blue > s,
.btn.btn-orange-blue > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-orange-blue::before {
  background: #1e4f6b;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #1e4f6b;
}
.btn.btn-orange-blue:hover s,
.btn.btn-orange-blue:hover span {
  color: #FFFFFF;
}
.btn.btn-white-orange {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #FFFFFF;
  border: solid 1px #ec9544;
  box-sizing: border-box;
}
.btn.btn-white-orange > s,
.btn.btn-white-orange > span {
  color: #ec9544;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-white-orange::before {
  background: #ec9544;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #ec9544;
}
.btn.btn-white-orange:hover s,
.btn.btn-white-orange:hover span {
  color: #FFFFFF;
}
.btn.btn-white-cyan {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #FFFFFF;
  border: solid 1px #77ACCE;
  box-sizing: border-box;
}
.btn.btn-white-cyan > s,
.btn.btn-white-cyan > span {
  color: #77ACCE;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-white-cyan::before {
  background: #77ACCE;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #77ACCE;
}
.btn.btn-white-cyan:hover s,
.btn.btn-white-cyan:hover span {
  color: #FFFFFF;
}
.btn.btn-white-blue {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #FFFFFF;
  border: solid 1px #1e4f6b;
  box-sizing: border-box;
}
.btn.btn-white-blue > s,
.btn.btn-white-blue > span {
  color: #1e4f6b;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-white-blue::before {
  background: #1e4f6b;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #1e4f6b;
}
.btn.btn-white-blue:hover s,
.btn.btn-white-blue:hover span {
  color: #FFFFFF;
}
.btn.btn-blue-orange2 {
  border-radius: 21px;
  height: 42px;
  line-height: 42px;
  padding: 0px;
  background: #1e4f6b;
  border: none;
}
.btn.btn-blue-orange2 > s,
.btn.btn-blue-orange2 > span {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
.btn.btn-blue-orange2::before {
  background: #ffa000;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 10px #ffa000;
}
.btn.btn-blue-orange2:hover s,
.btn.btn-blue-orange2:hover span {
  color: #000000 !important;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
label,
select,
select option {
  font-family: Montserrat !important;
  font-weight: 400;
}
select {
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  padding: 0px 5px 0px 15px;
  max-width: 100%;
}
select option {
  font-size: 13px;
  font-weight: 300;
  color: #666666;
  padding: 0px 10px;
}
select option[selected="selected"] {
  color: #000000;
}
form.relatives .col {
  position: relative;
}
form.relatives .col input[type="text"],
form.relatives .col input[type="tel"],
form.relatives .col input[type="email"],
form.relatives .col textarea {
  border-color: rgba(119, 172, 206, 0.3);
  box-shadow: 0 10px 10px -5px rgba(119, 172, 206, 0.45);
  padding-left: 28px !important;
  padding-right: 28px !important;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  transition: all 0.15s linear 0s;
}
input[type="text"] ~ label,
input[type="tel"] ~ label,
input[type="email"] ~ label,
textarea ~ label,
input[type="text"][data-value="empty"] ~ label,
input[type="tel"][data-value="empty"] ~ label,
input[type="email"][data-value="empty"] ~ label,
textarea[data-value="empty"] ~ label {
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 0.15s linear 0s;
  opacity: 1;
  visibility: visible;
  padding: 0px 44px;
  text-align: left;
  color: #7D7D7D;
}
input[type="text"]:focus ~ label,
input[type="tel"]:focus ~ label,
input[type="email"]:focus ~ label,
textarea:focus ~ label,
input[type="text"][data-value="filled"] ~ label,
input[type="tel"][data-value="filled"] ~ label,
input[type="email"][data-value="filled"] ~ label,
textarea[data-value="filled"] ~ label {
  opacity: 0;
  visibility: hidden;
}
input[type="text"].wrong,
input[type="tel"].wrong,
input[type="email"].wrong,
textarea.wrong {
  background: rgba(236, 149, 68, 0.4);
  border-color: #ec9544;
}
input[type="text"].wrong ~ span.wrong,
input[type="tel"].wrong ~ span.wrong,
input[type="email"].wrong ~ span.wrong,
textarea.wrong ~ span.wrong {
  width: 100%;
  margin-top: 5px;
  display: block;
  clear: both;
  color: #ec9544;
  font-size: 12px;
  font-weight: 400;
}
/* ~~~ ~~~ ~~~ ADAPTIVITY ~~~ ~~~ ~~~ */
/*# sourceMappingURL=bootstrap5forms.css.map */