body, html{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  background: linear-gradient(270deg, #00ecaf, #00a77b, #9e4ff9, #2aff57);
  background-size: 800% 800%;
  -webkit-animation: CoreBG 90s ease infinite;
  -moz-animation: CoreBG 90s ease infinite;
  animation: CoreBG 90s ease infinite;
}

/*Nav color override*/
.navbar-light .navbar-nav .active > .nav-link,
 .navbar-light .navbar-nav .nav-link.active,
  .navbar-light .navbar-nav .nav-link.show,
   .navbar-light .navbar-nav .show > .nav-link {
    color: #6E012A!important;
}

input{
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

nav{
  background-color: white;
  padding: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

nav img{
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 4px;
  margin-left: 5%;
}

.nav a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-main{
  background-color: white;
  width: 85%;
  margin: 0 auto;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.text-content{
  color: rgb(120, 120, 120);
}

.navbar-header{
  display: inline-block;
}


.clickable{
  cursor: pointer;
}

.ssmall{
  color: rgb(142, 142, 142);
  font-size: 0.5em;
}

.inl{
  display: inline-block;
  white-space: nowrap;
}

.oneliner{
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  margin: 0px;
}

.table{
  table-layout: fixed;
}

.table:not(#changelog) td, .table:not(#changelog) th{
  text-align: center;
}

.table td p{
  margin: 0px;
}

/*
#
# Global Dialog/Form CSS
#
*/
.create-panel{
  margin-top: 32px;

}

.panel-body{
  display: none;
}

.create-form{
  margin-left: 15%;
  margin-right: 15%;
}

.panel-title{
  color: rgb(74, 74, 74);
  font-family: 'roboto-thin'
}

.dropic{
  display: inline-block;
  font-size: 0.8em;
  color: rgb(131, 131, 131);
}

.controls > span{
  cursor: pointer;
}

.controls{
  margin: 0px;
}


.msgbox p{
  border-radius: 0px 0px 4px 4px;
  margin-top: -4px;
}


.input-container{
  width: 256px;
  display: inline-block;
  margin: 16px;
  vertical-align: top;
}

.pt_in_date, .pt_in_time{
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
}

#loading_icon{
    margin: 0 auto;
    display: block;
}

/*

  Modals

 */

 /* The Modal (background) */
.modal {
   display: none; /* Hidden by default */
   position: fixed; /* Stay in place */
   z-index: 1; /* Sit on top */
   left: 0;
   top: 0;
   width: 100%; /* Full width */
   height: 100%; /* Full height */
   overflow: auto; /* Enable scroll if needed */
   background-color: rgb(0,0,0); /* Fallback color */
   background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
   position: relative;
   background-color: #fefefe;
   margin: 15% auto; /* 15% from the top and centered */
   padding: 20px;
   border: 1px solid #888;
   width: 40%; /* Could be more or less, depending on screen size */
}

.modal-body{
  display: none;
}

/* The Close Button */
.cclose {
   color: #aaa;
   font-size: 28px;
   font-weight: bold;
   display: block;
   position: absolute;
   right: 16px;
   top: 8px;
}

#modal-data{
  padding-top: 32px;
  padding-right: 32px;
}

/* Dialog Content/Box */
.dialog-content {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 20%; /* Could be more or less, depending on screen size */
}

.modal-body{
 display: none;
}


.cclose:hover,
.cclose:focus {
   color: black;
   text-decoration: none;
   cursor: pointer;
}


/*

  Controls

*/

#controls{
    table-layout: fixed;
}
#controls tr td{
  text-align: center;
}

#dial-cancel{
    float: right;
}


/* Medium and Smaller devices (large desktops, 1200px and up) */
@media (max-width: 1000px) {
    .large-modal-content{
        width: 90%;
    }
    .pt_in_date, .pt_in_time{
        width: 100%;
    }

}
