﻿.inlineBanner {
    display: inline-block;    
}

.checkboxWidth{
    width:15px;
}

li {
    display: block;
    transition-duration: 0.5s;
}

    li:hover {
        cursor: pointer;
    }

ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
}

    ul li:hover > ul,
    ul li ul:hover {
        visibility: visible;
        opacity: 1;
        display: block;
        background-color: #e60000;
        z-index: 10;
    }

ul.dropdown li a {
    color: white;
}

ul li ul li {
    clear: both;
    width: 100%;
    padding: 5px;
}

.AddRemoveButtons {
    width: 50%;
    font-size: 20px;
    margin-bottom: 5px;
    border-color: #e60000;
    color: #ffffff;
    background-color: #e60000;
}

.TimeGridSize {
    max-height: 700px;
}


.AddRemoveTimeButtons {
    width: 45%;
    font-size: 20px;
    margin-bottom: 5px;
    border-color: #e60000;
    color: #ffffff;
    background-color: #e60000;
}

.k-button.RJCRed{
    border-color: #e60000;
    color: #ffffff;
    background-color: #e60000;
}

.validation-message {
    color: #e60000;
    white-space: normal;
}

.fullWidth{
    width: 100%;
}

.nintyEightWidth {
    width: 98%;
}

.centerSpinnerText {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size:18px;
}

.centerSpinner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 80px;
}

.spinnerStyles {
    border: 16px solid silver;
    border-top: 16px solid #e60000;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    margin-left: auto;
    margin-right: auto;
}