@charset "UTF-8";
/***** Variables *****/
/*** COLORS ***/
/***  SPACER ***/
/***** Functions *****/
/***** Basic *****/
/**** INPUTS ****/
.form-group {
  position: relative;
}

.form-control {
  color: #000000;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #01A0C6;
  background: #fff;
  padding: 15px 15px;
  font-family: "Barlow", sans-serif;
  height: unset;
  outline: none;
  outline-style: none;
  box-shadow: none;
  transition: all 300ms;
  -webkit-appearance: none;
  margin-bottom: 15px;
}
.form-control:focus {
  border-color: #888;
  background: #FFF;
  box-shadow: none;
  outline: none;
  outline-style: none;
}
.form-control.error {
  border-color: #D8000C;
}
.form-control[disabled] {
  background: #555;
}
.form-control::placeholder {
  color: #555;
}

textarea.form-control {
  min-height: 120px;
  border-radius: 10px;
}

input[readonly] {
  background-color: #F5F5F5 !important;
  cursor: text !important;
}

/***** INPUT GROUP *****/
.input-group .form-control {
  height: 45px;
  border-radius: 0;
  line-height: 45px;
  padding: 12px 15px;
  border: none;
}
.input-group .form-control:hover, .input-group .form-control:focus, .input-group .form-control:active {
  border-color: #01A0C6;
}
.input-group .btn {
  background: #01A0C6;
  color: #666666;
  padding: 0 15px;
  min-width: 0;
  height: 45px;
  border: none;
}
.input-group .btn:hover, .input-group .btn:focus, .input-group .btn:active {
  background: #017793;
  color: #666666;
}

/***** ERROR *****/
label.error {
  color: #D8000C;
  font-weight: 400;
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 12px;
  background: transparent;
}

label:not(.sr-only) + select + label.error,
label:not(.sr-only) + input + label.error,
label:not(.sr-only) + textarea + label.error {
  top: 38px;
}

/***** CHECKBOX *****/
.checkbox input {
  visibility: hidden;
  position: absolute;
  width: 10px;
}
.checkbox input + label {
  padding-bottom: 10px;
  font-size: 18px;
  font-family: "Barlow", sans-serif;
}
.checkbox input + label:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "a";
  width: 25px;
  height: 25px;
  border: 1px solid #888;
  background: #fff;
  border-radius: 10px;
  color: transparent;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
}
.checkbox input:checked + label:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #01A0C6;
}
.checkbox input.error + label:before {
  border-color: #D8000C;
}

.checkbox + .error {
  position: absolute;
  margin: 0 0 0 45px;
  right: 55px;
  top: auto;
  left: auto;
  background-color: transparent;
  padding: 0;
}

.radio label {
  position: relative;
}
.radio input[type=radio] {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.radio input + label {
  padding-bottom: 10px;
  font-size: 18px;
  font-family: "Barlow", sans-serif;
}
.radio input + label:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "a";
  width: 25px;
  height: 25px;
  border: 1px solid #888;
  background: #fff;
  border-radius: 100%;
  color: transparent;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
}
.radio input:checked + label:after {
  content: "a";
  color: transparent;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  background: #01A0C6;
}

/**** SELECT ****/
.select-wrapper {
  position: relative;
}
.select-wrapper:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  content: "";
  position: absolute;
  right: 15px;
  top: 10px;
  pointer-events: none;
}

select.form-control {
  height: auto !important;
  font-weight: 400;
  padding-right: 40px;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select.form-control::-ms-expand {
  display: none;
}
select.form-control option {
  color: #000000;
}
select.form-control option:first-child {
  color: #000000;
}
select.form-control option:first-child.with-value {
  color: #000000;
}
select.form-control.value {
  color: #000000;
}

.fancy {
  display: block;
  position: relative;
}
.fancy:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.75, 0, 0.125, 1);
  z-index: 1;
}
.fancy:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "+";
  color: #FFF;
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin: -50px 0 0 -50px;
  opacity: 0;
  z-index: 2;
  font-size: 60px;
  width: 100px;
  height: 100px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  transition: all 300ms cubic-bezier(0.75, 0, 0.125, 1);
  transform: scale(0.5);
}
.fancy:hover:after, .fancy:hover:before, .fancy:focus:after, .fancy:focus:before, .fancy:active:after, .fancy:active:before {
  opacity: 1;
}
.fancy:hover:after, .fancy:focus:after, .fancy:active:after {
  transform: scale(1);
}

.half-left .fancy:before,
.half-right .fancy:before {
  background: rgba(0, 0, 0, 0.2);
}
.half-left .fancy:after,
.half-right .fancy:after {
  display: none;
}

body.override-bootstrap .btn {
  font-weight: normal;
  padding: 10px 20px 10px 20px;
  color: #01A0C6;
  border: 3px solid #01A0C6;
  font-family: "Barlow", sans-serif;
  border-radius: 0px;
  font-size: 12px;
  background: transparent;
  transition: all 300ms;
  position: relative;
  letter-spacing: 1px;
  text-align: center;
  outline: none;
  outline-style: none;
  box-shadow: none;
  max-width: 100%;
  white-space: normal;
  text-transform: uppercase;
}
body.override-bootstrap .btn:hover, body.override-bootstrap .btn:focus, body.override-bootstrap .btn:active {
  text-decoration: none !important;
  border: 3px solid #017793;
  background: transparent;
  color: #017793;
  outline: none;
  outline-style: none;
  box-shadow: none;
}
body.override-bootstrap .btn.btn-sm {
  min-width: 0;
  font-size: 8px;
  padding: 10px 20px-5 10px 20px-5;
  font-weight: 500;
  border-width: 2px;
}
body.override-bootstrap .btn:not(.only-icon) i {
  margin-left: 5px;
}
@media (max-width: 767px) {
  body.override-bootstrap .btn:not(.only-icon) span.hidden-xs + i {
    margin: 0;
  }
}
body.override-bootstrap .btn.btn-primary {
  border-color: 3px solid #01A0C6;
  background: transparent;
  color: #01A0C6;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
}
body.override-bootstrap .btn.btn-primary:hover, body.override-bootstrap .btn.btn-primary:focus, body.override-bootstrap .btn.btn-primary:active {
  color: #017793;
  background: transparent;
  border-color: 3px solid #017793;
}
body.override-bootstrap .btn.btn-secondary {
  border-color: #FF1101;
  background: #FF1101;
  color: #01A0C6;
  font-family: "Barlow", sans-serif;
}
body.override-bootstrap .btn.btn-secondary:hover, body.override-bootstrap .btn.btn-secondary:focus, body.override-bootstrap .btn.btn-secondary:active {
  border-color: #01A0C6;
  background: #01A0C6;
  color: #FF1101;
}
body.override-bootstrap .btn.btn-prod {
  color: #000000;
  border-bottom: 3px dotted #000000;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
}
body.override-bootstrap .btn.full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
body.override-bootstrap .btn.btn-pdf:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  padding-right: 10px;
}
body.override-bootstrap .btn.btn-email:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  padding-right: 10px;
}
body.override-bootstrap .btn[disabled], body.override-bootstrap .btn[disabled]:hover {
  color: #000;
  background: #555;
  border-color: #555;
}

/***** Page *****/
body.override-bootstrap footer .top-footer a, body.override-bootstrap footer .top-footer a:visited {
  color: #FFF;
}
body.override-bootstrap footer .top-footer a:hover, body.override-bootstrap footer .top-footer a:visited:hover {
  color: #FF1101;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  body.override-bootstrap footer .top-footer .m-center {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
body.override-bootstrap footer .bottom-footer a, body.override-bootstrap footer .bottom-footer a:visited {
  color: #000000;
}
body.override-bootstrap footer .bottom-footer a:hover, body.override-bootstrap footer .bottom-footer a:visited:hover {
  color: #FF1101;
  text-decoration: none !important;
}