html {
	font-family: "Verdana", Helvetica;
	font-size: 20px;
	background-color: white;
}

.g-blue {
	background-color: #3498db;
}

.g-blue-t {
	background-color: #3498db;
	color: white !important;
}

a {
	color: #3498db;
}

.btn-g-blue {
	--bs-btn-color: #fff !important;
	--bs-btn-bg: #3498db !important;
	--bs-btn-border-color: #3498db !important;
	--bs-btn-hover-color: #fff !important;
	--bs-btn-hover-bg: #3498db !important;
	--bs-btn-hover-border-color: #2e85bf !important;
	--bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
	--bs-btn-active-color: #fff !important;
	--bs-btn-active-bg: #0676c2 !important;
	--bs-btn-active-border-color: #0676c2 !important;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
	--bs-btn-disabled-color: #fff !important;
	--bs-btn-disabled-bg: #4e83a6 !important;
	--bs-btn-disabled-border-color: #4e83a6 !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #3498db;
}

.form-select:focus {
	border-color: #3498db;
	box-shadow: 0 0 0 .25rem rgba(52, 152, 219, 0.25);
}

.form-control:focus {
	border-color: #3498db;
	box-shadow: 0 0 0 .25rem rgba(52, 152, 219, 0.25);
}

.alert-info {
	--bs-alert-color: white;
	--bs-alert-bg: #59abe1;
	--bs-alert-border-color: #3498db;
}

::selection {
	color: white;
	background: #3498db;
}

::-moz-selection {
	color: white;
	background: #3498db;
}

.bg-info {
	background-color: #6ec5ff !important;
}

.bg-primary {
	background-color: #3498db !important;
}

.bg-secondary {
	background-color: #4e83a6 !important;
}

.bg-success {
	background-color: #16bb4c !important;
}

.nav-brand {
	margin-right: 20px;
}

.nav-tabs {
    --bs-nav-tabs-border-width: 2px;
}

hr {
    color: var(--bs-border-color);
    opacity: 1;
    border-width: 2px;
}

@font-face {
	font-family: "PresarioText";
	src: url("font/presario_text-webfont.woff2") format("woff2"),
		url("font/presario_text-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

#settings-icon {
    font-size: 35px;
    cursor: pointer;
    color: #3498db;
    padding: 10px;
}

#settings-icon.clicked {
    animation: rotate 1s ease-in-out forwards;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

#save-settings-btn {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 100px;
}

.box-warning {
    border: 3px var(--bs-danger) solid;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}