html {
  font-size: 14px;
}

@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%;
}

body {
  margin-bottom: 60px;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
/*    background-color: rgba(255, 255, 255, 0.9);*/
    z-index: 9999;
}

.loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loader-text {
    color: #333;
    font-size: 24px;
}

.loader-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #00A9A6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}


header {
    background-image: url('../svg/header.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 80px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: center;
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}