:root {
    --fitblue: #253D66;
    --fityellow: #FCBA00;
    --bs-gray: #858585;
    --bs-font-sans-serif: Trebuchet, Trebuchet MS, Tahoma, Arial, sans-serif;
    --base-width: 30px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding: 0px;
}

@media (max-width: 1199px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
        padding: 0;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
        padding: 0;
    }
}

.overflow-container {
    position: relative;
    overflow-x: clip;
    width: 100%;
}

.main-container {
    /* space to the header */
    margin-top: 60px !important;
}

.ml-30 {
    margin-left: 30px;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.row {
    margin: 0;
}

.row > * {
    max-width: 100%;
    padding-right: calc(var(--base-width) / 2);
    padding-left: calc(var(--base-width) / 2);
}

.pad-sides {
    padding-right: calc(var(--base-width) / 2);
    padding-left: calc(var(--base-width) / 2);
}

a {
    color: var(--fitblue);
    text-decoration: auto;
    font-size: 14px;
    line-height: 18px;
    word-wrap: break-word;
    hyphens: auto;
}

a:hover {
    color: var(--fityellow);
    text-decoration: underline;
}

h1 {
    color: #000000;
    font-size: 36px;
    line-height: 43px;
    font-weight: bold;
    hyphens: auto;
}

h2 {
    color: #000000;
    font-size: 24px;
    line-height: 29px;
    font-weight: bold;
    hyphens: auto;
}

h3 {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    word-wrap: break-word;
    font-weight: bold;
    hyphens: auto;
}

h4 {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    word-wrap: break-word;
    hyphens: auto;
}

p, .text-size-default, ul, ol, li, th, td, .fit-table div {
    color: var(--bs-gray);
    font-size: 14px;
    line-height: 18px;
    word-wrap: break-word;
    hyphens: auto;
}

.text-size-smaller {
    font-size: 12px;
}

.text-align-middle {
    vertical-align: middle;
}

.fascination-number {
    color: #000000;
    font-size: 72px;
    line-height: 86px;
}

.fascination-fact {
    color: #000000;
    font-size: 18px;
    line-height: 22px;
}

.bs-gray {
    color: var(--bs-gray);
}

/* Sliders */

.slider {
    position: relative;
}

.slider-element {
    position: absolute;
    top: 0;
    left: 0;
}

/* Custom checkbox */

/* Customize the label (the container) */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #f4f4f4;

    border: 1px solid #b5b5b5;
    padding: 3px;
}

  /* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: white;
}
  
.custom-checkbox input:checked ~ .checkmark {
    background-color: #f4f4f4;
}

.custom-checkbox input:checked:hover ~ .checkmark {
    background-color: white;
}
  
  
  /* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
  /* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
  
  /* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 4px;
    top: -1px;
    width: 7px;
    height: 12px;
    border: solid black;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-checkbox input:disabled ~ .checkmark {
    cursor: default;
    opacity: 0.5;
}

.custom-checkbox input:disabled:hover ~ .checkmark {
    background-color: #f4f4f4;
}

.custom-checkbox .checkmark-big {
    height: 26px;
    width: 26px;
}

.custom-checkbox .checkmark-big:after {
    left: 8px;
    top: -1px;
    width: 8px;
    height: 22px;
}

.blue-form-select {
    background-color: var(--fitblue) !important;
    color: white !important;
    background-image: url("../assets/img/select_arrows.png");
    background-size: 12px 12px;
    background-position: 98.5%;
    background-repeat: no-repeat;
    border-radius: 0;
    font-size: 14px;
}

.blue-form-select option:checked {
    background-color: var(--fityellow);
}

input.form-control, textarea.form-control, select.form-select {
    border-radius: 0;
    font-size: 14px;
    /*font-style: italic;*/
    background-color: white;
    color: black;
}
input.form-control:placeholder-shown, textarea.form-control:placeholder-shown {
    background-color: #F4F4F4;
    color: #B5B5B5;
    border: 1px solid #B5B5B5;
}

input.form-control:hover, textarea.form-control:hover {
    background-color: white;
    border: 1px solid black;
    color: black;
}

select.multiple-select::-webkit-scrollbar {
    width: 10px;
}

/* Track */
select.multiple-select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
select.multiple-select::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
select.multiple-select::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.send-button {
    display: inline;
    background-color: var(--fitblue);
    color: white;
    text-align: center;
    border-radius: 0;
    height: 30px;
    line-height: 14px;
    font-size: 14px;
}

.send-button:hover {
    background-color: var(--fityellow);
    border: 1px solid var(--fitblue);
}

.btn-cookie {
    min-width: 150px;
    max-width: 250px;
}

.btn-secondary-fit {
    display: inline;
    background-color: var(--bs-gray);
    border: 1px solid var(--bs-gray);
    color: white;
    text-align: center;
    border-radius: 0;
    /*height: 30px;
    line-height: 14px;*/
    font-size: 14px;
}

.btn-secondary-fit:hover {
    background-color: var(--fityellow);
}

/* form buttons */
.btn-fit-blue-primary {
    background-color: #253d66;
    border: 1px solid #253d66;
    border-radius: 0;
    /* max-width: 250px; */
    color: white;
    font-size: 14px;
}

.btn-fit-blue-primary:hover {
    background-color: var(--fityellow);
}

/* breadcrumb */

.breadcrumb-item {
    color: #858585;
    text-decoration: inherit;
    font-size: 14px;
    line-height: 18px;
    word-wrap: break-word;
}

.breadcrumb-item.active {
    color: #858585;
    /* text-decoration: underline; */
}

.breadcrumb-item a:link, .breadcrumb-item a:visited {
    color: #858585;
    text-decoration: inherit;
}
.breadcrumb-item a:hover {
    color: #000000;
    text-decoration: inherit;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "|");
    color: #858585;
}

/* hash */

/* offsetting an html anchor to adjust for fixed header */
/*
:target {
    display: block;
    position: relative;
}
*/
/* validation */

.invalid-feedback {
    color: var(--fityellow) !important;
}
  
.invalid-tooltip {
    background-color: var(--fityellow) !important;
}

.was-validated .form-control:invalid, .was-validated .form-control.is-invalid, .was-validated .form-select:invalid {
    border-color: var(--fityellow);
    /* in svg value is the color */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23FCBA00'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FCBA00' stroke='none'/%3e%3c/svg%3e") !important;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.was-validated .form-control:valid {
    border-color: var(--fitblue);
    /* in svg value is the color */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23253D66' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

/*image Captcha*/

.form-captcha {
    margin-bottom: 15px;
}

.form-captcha #captchaImage {
    padding: 0 !important;
    margin: 0 0 0 0;
    max-height: 100px;
    max-width: 300px !important;
}
.form-captcha #captchaRefresh {
    padding: 0 !important;
    margin: 0 0 15px 0;
    max-width: 300px;
    color: var(--fitblue);
}
.form-captcha #captchaInput {
    margin: 0 0 0 0;
    max-width: 300px;
}

.form-captcha #captchaRefresh:hover{
    cursor: pointer;
    color: var(--fityellow);
}

/*deactivate pointer events*/

.passThrough {
    pointer-events: none;
}