/* default style */

@charset "utf-8";

html,body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    color: #000;
    height: 100%;
}

.my-area{
    /*height: calc(100% - 5px);*/
}

a {
    outline: 0;
    text-decoration: none;
    color: #051483;
    font-weight: 700;
}

a.back {
    outline: 0;
    text-decoration: none;
    color: #2e5bee;
    font-weight: 700;
}

i {
    outline: 0;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
}
a:hover {
    text-decoration: none;
    outline: 0;
    color: #051483;
}

p {
    margin-bottom: .5rem;
    line-height: 1.5rem;
}

:focus,
:active {
    outline: none !important;
}

h1 {
    margin: 0 0 20px 0;
    font-size: 29px;
    color: #051483;

    font-weight: 600;
}

strong {
    font-weight: bold;
}
.text-small{
    font-size: 0.8rem;
}
.content-area img {
    max-width: 100%;
    height: auto;
}

.alert-success{
    background-color: #cceee7!important;
}

footer {
    position: fixed;
    padding: 10px 10px 0px 10px;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #062d54;
    text-align: center;
    z-index: 1000;
}

footer .footer-copyright {
    line-height: 30px;
    height: auto;
    color: white;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: #062d54;
    position: relative;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #2e5bee;
    color: white;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
    float: right;
}

.topnav-centered div {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.spinner{
    position: fixed;
    z-index: 1031;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.75;
}
.modal-content {
    z-index: 1030;
    height: 100%;
    width: 100%;
}

#overlay
{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    background-color: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 600px) {
    .topnav a, .topnav-right {
        float: none;
        display: block;
    }

    .topnav-centered div {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}