html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {

    html {
        font-size: 16px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2f3e46;
    background: linear-gradient(135deg, #c7d1d8, #aebbc4);
    background-attachment: fixed;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1250px;
}

.table {
    margin-bottom: 0;
}

input,
select,
textarea {
    border-radius: 10px !important;
}

.card,
.table,
.form-control,
.btn {
    transition: 0.2s ease;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #dfe5ea;
}

::-webkit-scrollbar-thumb {
    background: #8ea1ad;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #6c7a86;
    }
