:root {
    --bs-body-font-family: 'Rubik', sans-serif !important;
    --open-sans: 'Open Sans', sans-serif;
    --rubik: 'Rubik', sans-serif;
    --white: #ffffff;
    --blue: #0888ef;
    --light-blue: #5bbcff;
    --dark-blue: #445486;
    --black: #1d1d1d;
    --red: #ec3939;
    --yellow: #ffab03;
    --gray: #9d9d9d;
    --light-gray: #efefef;
    --dark-gray: #646464;
    --blue-gray: #bcc4d3;
    --gold: #deb657;
}

.body {
    background-color: var(--blue) !important;
}

.material-symbols-rounded {
    font-variation-settings:
            'FILL' 1,
            'wght' 500,
            'GRAD' 0,
            'opsz' 48;
    font-size: 30px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none !important;
}

.footer{
    font-size: 15px;
}

@media (max-width: 576px){
    .footer{
        font-size: 11px;
    }
}


.underlined-header {
    font-size: 33px;
    color: var(--dark-gray);
    text-transform: uppercase;
    text-align: center!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
}

.underlined-midheader {
    font-size: 22px;
    color: var(--dark-gray);
    text-transform: uppercase;
    text-align: center!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
}

.underlined-header.small-margin{
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
}

.underlined-header::after {
    border-radius: .25rem!important;
    content: "";
    width: 2em;
    height: 2px;
    background: var(--gray);
    margin-top: 0.1em;
}


.icon {
    color: var(--blue);
    transition: color .1s;
}

.icon:hover{
    color: var(--red);
    transition: color .1s;
}

.material-icons-outlined {
    color: var(--blue);
    transition: color .1s;
}
.material-icons-outlined:hover{
    color: var(--red);
    transition: color .1s;
}

.icon-full{
    color: white;
    background: var(--blue);
    border-radius: 50%;
    padding: 5px;
    transition: background-color .1s;
}
.icon-full:hover{
    color: white;
    background: var(--red);
    transition: background-color .1s;
}

.divider {
    color: var(--black);
}

.my-link{
    text-decoration: none;
}

.disabled-link{
    cursor: default !important;
    pointer-events: none !important;
    text-decoration: none !important;
    color: var(--gray) !important;
}
.disabled-link .icon{
    color: var(--gray) !important;
}

.centered-elem {
    margin: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

