﻿@font-face {
    font-family: 'times';
    src: url('../font/times.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: times !important;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: normal;
    -webkit-tap-highlight-color: transparent;
    font-variation-settings: normal;
    line-height: 1.5;
    tab-size: 4;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    color: #333;
    background-color: #f3ebe02b
}

.navbar-toggler {
    font-size: 1rem;
}

.navbar-brand{
    margin-right:0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: orange;
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    to {
        transform: rotate(1turn)
    }
}


.btn-main {
    background-color: #0f6cbd;
    border-color: #0f6cbd;
    color: white
}

.btn-default {
    border-color: #d1d1d1;
}

    .btn-default:hover {
        border-color: #c7c7c7;
        background-color: #f5f5f5;
        color: #161616;
    }

    .btn-default:active {
        border-color: #c7c7c7;
        background-color: #f5f5f5;
        color: #161616;
    }

.btn-main:hover {
    background-color: #115ea3;
    border-color: #115ea3;
    color: white
}

.btn-main:active {
    background-color: #115ea3;
    border-color: #115ea3;
    color: white
}

.btn-outline-main {
    color: #0f6cbd;
    border-color: #0f6cbd;
}

    .btn-outline-main:hover {
        background-color: #0f6cbd;
        border-color: #0f6cbd;
        color: white
    }

.btn-outline-main.active {
    background-color: #0f6cbd;
    border-color: #0f6cbd;
    color: white
}


@media (min-width: 768px) {
    
}

@media (min-width: 576px) {
    
}
