html {
    background-image: url('/img/usarb_in_winter.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Times New Roman', Times, serif;
    min-height: 100vh;
}

/*
https://css-tricks.com/almanac/properties/b/box-shadow/
http://shpargalkablog.ru/2011/06/css-box-shadow.html
https://www.cssmatic.com/box-shadow
*/
body {
    min-height: 100vh;
}

.text-white {
    color: white;
    font-weight: 900;
}

.uk-button {
    /* border: 1px solid #50DC95; */
    /* opacity: 0.8; */
    background-color: #15426d;
    /* #63DD9F; */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
}

.uk-search-icon {
    color: #15426d !important;
}

.uk-button:hover {
    /* opacity: 1; */
    background-color: white;
    color: black;
}

.uk-button.active {
    /* opacity: 1; */
    background-color: white;
    color: black;
}

#searchZone {
    min-width: 150px;
    width: 100%;
    /* width: 300px; */
}

#searchZone,
#semesterSelector,
#daySelector,
#weekSelector2 {
    font-size: 16px;
    font-weight: bold;
}

#resultZone {
    height: 100px;
    max-height: 100px;
    font-size: 16px;
}

#resultZone ul {
    display: none;
}

.uk-background-gray {
    background-color: #b5b0b0;
}

.uk-background-white {
    background-color: white;
}

table {
    border-collapse: collapse;
    font-size: 16px;
}

table,
td,
th {
    border: 1px solid gray;
}

tbody tr:hover {
    cursor: pointer;
}

tbody tr:hover td {
    background-color: #40afb0;
    color: black;
}

#tableForLesssons {
    /* -webkit-box-shadow: 3px 0px 4px 5px rgba(94, 86, 94, 1);
    -moz-box-shadow: 3px 0px 4px 5px rgba(94, 86, 94, 1);
    box-shadow: 3px 0px 4px 5px rgba(94, 86, 94, 1); */
    -webkit-box-shadow: 3px 0px 9px 5px rgba(26, 25, 26, 1);
    -moz-box-shadow: 3px 0px 9px 5px rgba(26, 25, 26, 1);
    box-shadow: 3px 0px 9px 5px rgba(26, 25, 26, 1);
}

.col-space {
    height: 60px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: middle !important;
}

th.uk-background-green {
    color: white !important;
}

.uk-background-green {
    border: 1px solid white;
    /*gray;    #50DC95*/
    /* opacity: 0.8; */
    background-color: #15426d;
    color: white;
}

.uk-background-red {
    background-color: #f0506e;
}
.uk-background-violet {
    background-color: rgb(123, 70, 105);
}

#shorTable td[class*=uk-width],
#shorTable th[class*=uk-width] {
    box-sizing: border-box;
    width: 50px !important;
    max-width: 100%;
}

#shorTable {
    -webkit-box-shadow: 3px 0px 9px 5px rgba(26, 25, 26, 1);
    -moz-box-shadow: 3px 0px 9px 5px rgba(26, 25, 26, 1);
    box-shadow: 3px 0px 9px 5px rgba(26, 25, 26, 1);
}

#tableLegend p {
    margin-top: 0px;
    margin-left: 10px;
    font-size: 12px;
}

#tableLegend p {
    margin-top: 0px;
    margin-left: 10px;
    /* background-color: chocolate; */
}

@media screen and (max-width: 1086px) {

    .changer,
    .changer2,
    #studentMode {
        margin-top: 15px;
    }
}

@media screen and (max-width: 726px) {
    .changer2 {
        margin-top: 15px;
    }

    #studentMode {
        margin-top: 15px;
        height: 38px;
    }
}

.groupName:hover {
    cursor: pointer;
    color: white;
    background-color: #40afb0;
    font-weight: bold;
    /*antiquewhite;*/
}

#weekSelector2 {
    display: none;
}

.selectedGroup {
    background-color: #15426d;
    color: white;
}

.lessonsHide>div {
    display: none;
}

.timetableWeek {
    color: white !important;
}

.timetableWeek:hover {
    outline: 1px solid white;
}

.uk-text-black {
    color: black !important;
}

.clear:hover {
    cursor: pointer;
}

.shortDay {
    width: 120px !important;
}

/* Mozila Firefox */
@-moz-document url-prefix() {
    #shorTable thead tr {
        display: flex;
        flex-direction: row;
    }

    #shorTable tbody tr {
        display: flex;
        flex-direction: row;
    }

    .shortDay {
        /* flex-grow: 2; */
        max-width: 100%;
        width: 100% !important;
    }

    #shorTable td[class*=uk-width],
    #shorTable th[class*=uk-width] {
        box-sizing: border-box;
        width: 90% !important;
        max-width: 90%;
    }
}
.planTable{
    overflow-y: auto;
    height: 300px;
}
*{
    outline:0;
}
switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
#isStudentMode{
    position: relative;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.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;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #15426d;
    /*width: 70px;*/
}

input:focus + .slider {
    box-shadow: 0 0 1px #15426d;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.span-alert{
    background: #d8eafc;
    color: #1e87f0;
}

.span-success {
    background: #edfbf6;
    color: #15426d;
}
.uk-background-yellow{
    color: white;
    background-color: #40afb0;
    font-weight: bold;
}

@media (min-width:600px)  {
    /* desktop */

    #headerLogo, #headerText{
        visibility: hidden;
    }
    #tableForLesssons{
        margin-top: 150px !important;
        margin-left: 100px !important;
    }
}
@media (max-width:480px)  { /* smartphones, Android phones, landscape iPhone */

    .text-white{
        color: black;
    }
    #headerLogo, #headerText{
        visibility: visible;
    }

}