html, body {
    height: 100%;
    --paddingNonIe: 0.31em;
}

body {
    /*    background-image: url(../images/bgimg.jpg);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 0;
    color: #282828;
    color: var(--color-text);
    line-height: 1.5;
    line-height: var(--type-line-height)
}

/*! To ensure footer is at the bottom of the page regarless of content size */
.content {
    flex: 1 0 auto;
}

.additional-text-html {
}

.card-body {
    border-radius: 0.5em;
    background: rgb(0 0 0 / 75%);
    border-radius: 0.5em;
    border: 1px solid #000000 !important;
    color: #ffffff;
}

    .card-body .text-danger {
        color: #ffb1b1 !important;
    }

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.info_text {
    font-size: 1rem;
    line-height: 1.5rem;
}

.form-control {
    font-size: 1rem;
}

h1, h2 {
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 1.2;
}

h3, h4, h5, h6 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
}

/*! sm */
@media (min-width: 576px) {
}

/*! md */
@media (min-width: 768px) {
    .info_text {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    .form-control {
        font-size: 1.125rem;
    }

    h1, h2 {
        font-weight: 500;
        font-size: 2.875rem;
        line-height: 1.2;
    }

    h3, h4, h5, h6 {
        font-weight: 500;
        font-size: 2rem;
        line-height: 1.5;
    }
}

/*! lg */
@media (min-width: 992px) {
    .info_text {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .form-control {
        font-size: 1.25rem;
    }

    h1, h2 {
        font-weight: 500;
    }

    h3, h4, h5, h6 {
        font-weight: 500;
    }
}

/*! xl */
@media (min-width: 1200px) {
    .info_text {
        font-size: 1.25rem;
        line-height: 1.7rem;
    }

    .form-control {
        font-size: 1.25rem;
    }

    h1, h2 {
        font-weight: 500;
    }

    h3, h4, h5, h6 {
        font-weight: 500;
    }
}

.btn-primary {
    color: white;
    background-color: #075da8;
    border-color: #075da8;
}

    .btn-primary:hover {
        color: white;
        background: #075da8;
        border-color: #075da8;
        opacity: .8;
    }

.btn-white {
    color: #282828;
    background-color: white;
    border-color: white;
}

    .btn-white:hover {
        color: #282828;
        background: white;
        border-color: white;
        opacity: .8;
    }

.btn-form-contol {
    color: #495057;
    background-color: white;
    border: 1px solid #ced4da;
}

.swal2-styled.swal2-confirm {
    background-color: #075da8;
    border-color: #075da8;
    color: #fff;
}

    .swal2-styled.swal2-confirm:hover {
        background-color: rgba(7, 93, 168, 0.75);
        border-color: #075da8;
        color: #fff;
    }

.form-check-input {
    zoom: 130%;
}

.trim-contents {
}

.charis-dropdown {
}

.datepicker-past {
}

.datepicker-coop-dod {
}

.clickable {
    cursor: pointer;
}

a {
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #ffffff;
    text-decoration: underline
}

.col-form-label.required::after {
    padding-left: 6px;
}

.footer {
    flex-shrink: 0;
    margin-top: 1.5rem !important;
    background-color: #282828;
    color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/*! else the footer will jumpup  on a non full size screen when sweetalert is fired */
.swal2-shown {
    display: flex;
    width: 100%;
}

#cookieWarnBox.loaded {
    opacity: 1;
    bottom: 0px;
    border-top: 3px solid #0ea9d0 !important;
    background-color: #0ea9d0;
    color: white;
}

.form-control::-webkit-input-placeholder {
    color: #28282840;
}

.form-control:-moz-placeholder {
    color: #28282840;
}

.form-control::-moz-placeholder {
    color: #28282840;
}

.form-control::placeholder {
    color: #28282840;
}

.form-control:-ms-input-placeholder {
    color: #28282840;
}

/* IE Hack, else the Yes & No text overlaps the radio buttons */
/* Internet Explorer does not handle the calc(var) function so will use the larger padding */
/* The calc(var) function returns the value to normal boostrap values */
.form-check-inline .form-check-input {
    margin-right: 1.1rem;
    margin-right: calc(var(--paddingNonIe));
}

.col-form-label.required::after {
    content: "*";
    color: red;
}
/*-- TOOLTIP --*/
.panel {
    font-size: 0.75em;
}

.panel-collapse {
    background-color: rgba(0, 0, 0, 0.24);
    padding-left: 10px;
    padding-right: 10px;
}

.panel-heading {
    border: 0px;
    background-color: rgba(0, 0, 0, 0.404);
    color: white;
    padding: 5px;
    font-size: 1.2em;
}

    .panel-heading:hover {
        cursor: pointer;
    }


.flex-display {
    display: flex !important;
}