﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.rbl input[type="radio"] {
    margin-left: 5px;
    margin-right: 2px;
}

.full-height{
    height: 100vh;
}

a {
    cursor:pointer;
}

.alert-auto {
    display: inline-block;
}

.checkButton {
    position: relative;
}

    .checkButton label {
        display: block;
        padding-left: 20px;
        font-size: 1em;
        line-height: 20px;
        background-color: #fff;
        border: 1px solid #000;
        color: #000;
        cursor: pointer;
    }

    .checkButton input {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-appearance: none;
        opacity: 0;
    }

        .checkButton input:checked ~ label {
            background-color: #000;
            color: #fff;
        }

            .checkButton input:checked ~ label::after {
                content: "";
                position: absolute;
                top: 2px;
                left: 2px;
                display: block;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                background-color: #fff;
            }

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
    .img-responsive {
        width: 50vw;
    }
}

@media only screen and (max-width: 768px) {
    .img-responsive {
        width: 75vw;
    }
}

