body {
    background-color: #234275;
    color: whitesmoke;
}

html {
    scrollbar-gutter: stable;
}

.btn-submit {
    background-color: #769fe5;
    color: whitesmoke;
}

.btn-submit-reverse {
    background-color: whitesmoke;
    color: #234275;
}

.btn-submit:hover{
    background-color: whitesmoke;
    color: #234275;
}

.btn-submit-reverse:hover {
    background-color: #769fe5;
    color: whitesmoke;
}

.btn-dropdown {
    background-color: whitesmoke;
    color: #234275;
    text-align: left;
}
.btn-dropdown:hover{
    background-color: whitesmoke;
    color: #234275;
}

.help {
    color:#c0d0e9;
    font-size:smaller; 
}

/* flash messages */
p.flash.error {
    color:#F37199;
    font-size: medium;
    font-weight: bold;
}

p.flash.success {
    color:#73AF6F;
    font-size: medium;
    font-weight: bold;
}

p.flash.info {
    color:#8CE4FF;
    font-size: medium;
    font-weight: bold;
}

.spinner {
    border: 4px solid #f3f3f3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-left-color: #769fe5;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

input[readonly], select[readonly], textarea[readonly] {
  color: #666;
  border: 1px solid #ccc;
  cursor: not-allowed;
}

.navbar-custom-link{
    color: #769fe5;
}

.navbar-custom-link:hover, .navbar-custom-link:active{
    color: whitesmoke;
}

.navbar-custom-dropdown{
    color: #769fe5;
}

.navbar-custom-dropdown:hover{
    color: #234275;
}

.navbar-toggler{
    border-color: #769fe5;
    color: #769fe5;
}

.navbar-toggler:hover{
    border-color: whitesmoke;
    color: whitesmoke;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23769fe5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='whitesmoke' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.capital-letter{
    text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.change-background{
    background-color:#8FABD4;
    color:#EEEEEE;
}
