﻿body {
}

/* Messages classes */
.success {
    color: #50c0a0;
}

.info {
    color: #00a0ff;
}

.warning {
    color: #ddbb75;
}

.danger {
    color: #bb5050;
}

.center-content {
    text-align: center;
    align-content: center;
}

.table-border {
    border-top: solid;
    border-color: lightgray;
    border-width: 1px;
}

.error {
    color: deeppink;
    /*border-color: deeppink;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;*/
    vertical-align: middle;
    text-align: left;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

/* 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: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    right: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(-26px);
    -ms-transform: translateX(-26px);
    transform: translateX(-26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pull-left {
    float: left !important
}

.pull-right {
    float: right !important
}

/*.table-div {
    width: 100%;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: auto;
}*/

.nav-button-pastel-1 {
    background-color: #8ac6d1 !important;
    color: #212529 !important;
    border-radius: 0.25rem;
}

.nav-button-pastel-1:hover {
    background-color: #76b2bd !important;
    color: #212529 !important;
}

.nav-button-pastel-2 {
    background-color: #9fdfcd !important;
    color: #212529 !important;
    border-radius: 0.25rem;
}

.nav-button-pastel-2:hover {
    background-color: #8fbfbd !important;
    color: #212529 !important;
}

.nav-button-pastel-3 {
    background-color: #f6cd90 !important;
    color: #212529 !important;
    border-radius: 0.25rem;
}

.nav-button-pastel-3:hover {
    background-color: #d6bd80 !important;
    color: #212529 !important;
}

.margin-right {
    margin-right: 1rem !important;
}

.margin-bottom {
    margin-bottom: 1rem !important;
}

.text-light-info {
    color: lightgray;
    font-weight: bold;
    font-size: 1.5rem;
}