/* Spinner class */

.loading {
    z-index: 20;
    position: absolute;
    /*top: 0;
    left:0px;
    width: 100%;
    height: 100%;*/
    margin: auto;
    top: 30%;
    left: 50%;
   /* width: 40%;
    height: 200px;*/
    background-color: rgba(255,255,255,0);
}
.loading-content {
    position: relative;
    border: 2px solid #fde0e3; /* Light grey */
    border-top: 2px solid #00A0E3; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    /* top: 55%;*/
    left:47%;
    animation: spin 2s linear infinite;
}
.logo {
    width: 100%;
}
@media screen and  (max-width: 1200px) {
    .logo {
        width: 90%;
    }
}
@media screen and  (max-width: 800px) {
    .logo {
        width: 70%;
    }
}
@media screen and  (max-width: 500px) {
    .logo {
        width: 50%;
    }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-content-img>img {
    position: relative;
    /*top: 30%;*/
    left:43%;
}
#loading-content-txt {
    position: relative;
    /*top: 48%;*/
    left:30%;
}

.spinner {
    position: relative;
}
.spinner.spinner-track.spinner-primary:before {
    border: 2px solid #EDF9FE;
    border-top-color: #6c84e1;
}
.spinner.spinner-track:before {
    -webkit-animation: animation-spinner .5s linear infinite;
    animation: animation-spinner 2.5s linear infinite;
}
.spinner.spinner-primary:before {
    border: 2px solid #6c84e1;
    border-right: 2px solid transparent;
}
.spinner.spinner-lg:before {
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
}
.spinner:before {
    -webkit-animation: animation-spinner 2.5s linear infinite;
    animation: animation-spinner 2.5s linear infinite;
}
.spinner:before {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -.75rem;
}
.spinner:before {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    border: 2px solid #d1d3e0;
    border-right: 2px solid transparent;
}
.mr-15, .mx-15 {
    margin-right: 3.75rem!important;
}
.symbol-online {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 100%;
}
.channels-hide {
    display: none;
    transition: opacity 30000ms ease 6000s;
    opacity: 0;
    height: 0px;
    z-index: 1000;
}
.channels {
    display: block!important;
    height: auto;
}
.device {
    display: none;
}
.listdevices {
    cursor: pointer;
}
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    padding: 0.325rem 0.42rem!important;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0.17rem 0.2rem!important;
}
.fc-unthemed .fc-event .fc-time, .fc-unthemed .fc-event-dot .fc-time {
    color: #fff!important;
}
.fc-unthemed .fc-event .fc-title, .fc-unthemed .fc-event-dot .fc-title {
    color: #fff!important;
}
