html {
  font-size: 16px;
}

.header {
    box-shadow: 0 0 4px rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    padding: .5rem 0;
    width: 100%;
}

.header .projobs-logo {
    width: 100px;
}

.k-form-field:has(.required-notification) {
    margin-bottom: 2rem;
}

.required-notification {
    font-size: .9rem;
    font-style: italic;
}

.privacystatement-url {
    color: #00c8ff;
    font-weight: 600;
    text-decoration: none;
}

.k-form-field:has(:where(input[type="hidden"]:first-child)) {
    margin: 0 !important;
}

.k-button-solid-primary,
.k-checkbox:checked,
.k-radio:checked {
    background-color: #00c8ff !important;
    border-color: #00c8ff !important;
}

.form-button-wrapper {
    display: flex;
    gap: 2rem;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg); /* Firefox 16+*/
    }

    100% {
        -moz-transform: rotate(360deg); /* Firefox 16+*/
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

.loading {
    background: rgba(255,255,255, 0.5);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.loading__animation {
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #00C8FF;
    display: block;
    height: 100px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: relative;
    top: 50%;
    transform: translate3d(0, 0, 0);
    width: 100px;
    z-index: 1006;
}

.loading__animation:before {
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #ffea00;
    bottom: 5px;
    content: "";
    left: 5px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.loading__animation:after {
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #0a1b56;
    bottom: 15px;
    content: "";
    left: 15px;
    position: absolute;
    right: 15px;
    top: 15px;
}

textarea {
    min-height: 50px !important;
}

.field-validation-error {
    color: #dc3545;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}