﻿.footer {
    background-color: #1a1a1a;
    width: 100%;
    bottom: 0;
    position: fixed;
    font-size: 0.5em;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}



@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: RobotoThin;
    src: url(../fonts/Roboto-Thin.ttf);
}

.field-validation-error {
    color: red;
}

body {
    font-family: "Roboto", sans-serif;
}

.MainImage {
    display: none;
}

@media (min-width: 576px) {
    .footer {
        font-size: 0.5em;
    }
}

@media (min-width: 768px) {
    .footer {
        font-size: 0.75em;
    }
}

@media (min-width: 992px) {
    /* For tablets: */
    .MainImage {
        display: block;
        width: 25%;
    }

    .footer {
        font-size: 1em;
    }
}

@media (min-width: 1200px) {
    /* For desktop: */
    .MainImage {
        display: block;
        width: 100%;
    }

    .footer {
        font-size: 1em;
    }
}


.card {
    color:black;
}

/* Bootstrap override */
.bg-primary {
    background-color: #255f2a !important;
}

.HomeBackground {
    /* The image used */
    background-image: url("../images/Home.jpg?v=1.0.0.jpg");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.MainContenctContainer {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    color:white;
}

.hidden {
    display: none;
}


tr.hide-table-padding td {
    padding: 0;
}

.expand-button {
    position: relative;
}

.accordion-toggle .expand-button:after {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translate(0, -50%);
    content: '-';
    height:100%;
}

.accordion-toggle.collapsed .expand-button:after {
    content: '+';
}