:root {
    --primary-color: #000000;
    --primary-color-20: rgba(0, 0, 0, 0.2);
    --secondary-color: #0B60B0;
    --secondary-color-20: rgba(11, 96, 176, 0.2);
    --item-color: #40A2D8;
    /*rgb(64, 162, 216)*/
    --tertiary-color: #F0EDCF;
    /*rgb(240, 237, 207)*/
}

body {
    background-color: var(--primary-color);
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 20px;
    scroll-padding-top: 70px;
}

nav {
    background-color: var(--primary-color);
}

/* small screen */
@media screen and (max-width: 991px) {
    nav.active {
        box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.1), 0 6px 20px 0 rgba(255, 255, 255, 0.1);
    }
}

.title {
    font-family: "Pacifico", cursive;
    font-weight: 600;
    font-style: normal;
    font-size: 5.5em;
    color: var(--secondary-color);
}

.theme-font {
    font-family: "Pacifico", cursive;
}

.theme {
    background-color: inherit !important;
    color: inherit !important;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #ffffff;
    border-radius: 0;
}

table {
    color: inherit !important;
}

thead {
    font-weight: bold !important;
}


td.center {
    align-items: center;
    text-align: center;
}

td.right {
    align-items: end;
    text-align: end;
}

td.middle {
    vertical-align: middle;
}

td.nowrap {
    white-space: nowrap;
}

.info {
    font-size: 0.8em;
    padding: 2px 3px;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

button,
.button {
    padding: 8px 15px;
    background-color: var(--item-color);
    border: 2px solid var(--item-color);
    color: var(--primary-color);
    border-radius: 10px;
}

button.small,
.button-small {
    padding: 2px 5px;
    background-color: var(--item-color);
    border: 2px solid var(--item-color);
    color: var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
}

button:hover,
.button:hover,
.button-small:hover {
    background-color: var(--primary-color);
    color: var(--item-color);
}

.nav-link.active {
    border-bottom: 2px solid var(--secondary-color);
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

/*:::::::::::::::::::::: scroll ::::::::::::::::::::::*/
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: inherit;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}