﻿body {
    padding-top: 0px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}



#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 100;
    text-align: center;
    display: none;
}

#loading-image {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
}

.divOverlay {
    background-color: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    position: fixed;
    content: "";
    display: none;
}

    .divOverlay > .divOverlayPop {
        background-color: none;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -150px; /* -1 * image width / 2 */
        margin-top: -100px; /* -1 * image height / 2 */
        display: block;
    }

    .divOverlay .divOverlayMSG {
        width: 300px;
        height: 200px;
        opacity: unset;
        padding: 5px;
        background-color: white;
        border-radius: 20px;
    }

span {
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
}

input {
    border: 1px solid;
    border-color: #cccccc;
    padding: 0px;
    color: #002C52;
    background-color: #ffffff;
    font-size: 9pt;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

.txt {
    border: 1px solid;
    border-color: #cccccc;
    padding: 5px;
    color: #002C52;
    background-color: #ffffff;
    font-size: 9pt;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    width: 300px;
    height: 50px;
    font-size: medium;
    margin: 5px;
    border-radius: 10px;
}

/* Customize the label (the container) */
.Radios {
    color: black;
    display: block;
    position: relative;
    padding-left: 15px;
    margin-top: 5px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;
}

    /* Hide the browser's default radio button */
    .Radios input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ccc;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.Radios:hover input ~ .checkmark {
    background-color: gray;
}

/* When the radio button is checked, add a blue background */
.Radios input:checked ~ .checkmark {
    background-color: #024DDF;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    z-index: -1;
}

/* Show the indicator (dot/circle) when checked */
.Radios input:checked ~ .checkmark:after {
    display: block;
    z-index: -1;
}

/* Style the indicator (dot/circle) */
.Radios .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    z-index: -1;
}


