﻿/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modalLoading
{
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(255, 255, 255, 0.29) url('../../modal/spinner.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading
{
    overflow: hidden;
}

    /* Anytime the body has the loading class, our
modal element will be visible */
    body.loading .modalLoading
    {
        display: block;
    }

/* ----------------------------------------------------------------------------------------- */


body
{
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-weight: 400;

}

.main-text h1
{
    color: #707070 !important;
}

.main-text p
{
    color: #707070 !important;
}

.blue-btn
{
    background-color: #162D83;
    color: #FFF;
    border-radius: 40px;
    font-size: larger;
}

    .blue-btn:hover
    {
        background-color: #162D83;
        color: #FFF;
        border-radius: 40px;
        font-size: larger;
    }

.item-menu
{
    display: inline-block;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
}

a.item-menu :hover
{
    font-weight: 400;
    color: #000;
}

.item-selected
{
    border-radius: 40px;
    padding-right: 25px;
    padding-left: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #F35741;
    text-decoration: none;
    color: #ffffff !important;
}

.custom-btn-new a
{
    justify-content: center;
    display: flex;
    padding-top: 15px;
    border-radius: 28px;
    background-color: #F35741 !important;
    color: #ffffff;
    padding-bottom: 15px;
    width: 200px;
}

    .custom-btn-new a:hover
    {
        text-decoration: none;
        background-color: #cf3d29 !important;
        color: #ffffff;
    }

.btn-red
{
    justify-content: center;
    display: flex;
    padding-top: 15px;
    border-radius: 28px;
    background-color: #C43A23 !important;
    color: #FFF;
    padding-bottom: 15px;
    width: 200px;
    font-size: larger;
}
    .btn-red:hover
    {
        background-color: #C43A23;
        color: #FFF;
        border-radius: 40px;
        font-size: larger;
    }

.btn-red-lg
{
    justify-content: center;
    display: flex;
    padding-top: 15px;
    border-radius: 28px;
    background-color: #C43A23 !important;
    color: #FFF;
    padding-bottom: 15px;
    font-size: larger;
}

    .btn-red-lg:hover
    {
        background-color: #C43A23;
        color: #FFF;
        border-radius: 40px;
        font-size: larger;
    }

.card-back-blue
{
    background-color: #393f96 !important;
    color: #FFF;
}

.card-red-blue
{
    background-color: #C43A23 !important;
    color: #FFF;
}