﻿
.btn-normal {
    margin-right: 1em;
    margin-top: 1em;
    border-color: #A8A8A8;
    background-color: #E8E8E8;
}

.btn-primary {
    color: #fff;
    background-color: #118091;
    border-color: #117E8F;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #107888;
        border-color: #107382;
    }

.btn-in-table {
    border-color: #A8A8A8;
    background-color: #E8E8E8;
    margin-top: .1em;
    border: 1px solid;
    padding: .1em;
}

.button-in-table:hover {
    background-color: #D0D0D0;
}

.btn-tiny {
    padding-left: .3em;
    padding-right: .3em;
}

.btn-grey {
    color: #333;
    background-color: #dcdcdc;
    border-color: #DBDBDB;
}


.btn-page-navigation {
    margin-right: 1em;
    margin-top: 1em;
    border-color: #A8A8A8;
    background-color: #E8E8E8;
}

    .btn-page-navigation:hover {
        background-color: #D0D0D0;
    }

    .btn-page-navigation:active {
        background-color: #B0B0B0;
        transform: scale($bg-size-end);
        outline: none;
    }

.input-label {
    margin-bottom: .1em;
}

.required-field-label {
    color: #C20A0A;
    margin-bottom: .1em;
}

/* Input styles
-------------------------------------------------- */
.inline-checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
    margin-bottom: 2px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 0.9em;
}

.checkmark {
    position: absolute;
    top: 1px;
    left: 1px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    padding-right: 5em;
}

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .checkmark:hover {
        cursor: pointer;
    }

input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    top: 3px;
    left: 1px;
    width: 17px;
    height: 17px;
    padding: 2px;
    margin-right: 0.5em;
    /* background-color only for content */
    background-clip: content-box;
    border: 1px solid #2d3192;
    background-color: white;
    border-radius: 50%;
    outline: none;
}

    input[type=radio]:checked {
        background-color: #2d3192;
    }

    input[type=radio]:hover {
        cursor: pointer;
    }

input[type=text] {
    margin-bottom: 0.8em;
    height: 2.2em;
    padding: 0.3em;
    margin: 0.5em;
    margin-bottom: 0.8em;
    border-radius: 0.2em;
    border: 0.1em solid #959494;
    outline: none;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
}
