﻿body {
    padding-top: 50px;
    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;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.rowselected {
    background-color: lightskyblue !important;
    color: #333 !important;
}

.pointer {
    cursor: pointer;
}

.left-label {
    text-align: left !important;
}

.input-error {
    border: 1px solid #f00 !important;
    /*outline: red groove thin;*/
}

.right-label {
    text-align: right;
    padding-right: 0;
    padding-left: 0;
    margin-top: 8px;
}

.full-width {
    max-width: 100% !important;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2196F3; /* #ccc;*/
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: lightblue; /*white;*/
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color:fuchsia;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

label.disabled {
    color: grey;
}

/* Rounded sliders */
.slider.round {
    border-radius: 22px;
}

.slider.round:before {
    border-radius: 50%;
}

.nopadding {
    padding-left: 0;
    padding-right: 0;
}

.tdslogo {
    max-height: 40px;
}
.tdslogo:hover {
    max-height: 60px;
}

.expandeditem {
    font-weight: bold;
}