.tt_loader_container {
  position: absolute;
  height: 200vw;
  width: 200vh;
  background: rgba(255, 255, 255, 0.6);
  z-index: 60000;
  left: 0;
  top: 0;
}


@keyframes spinning {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}
.spin {
  animation-name: spinning;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#tt_loader{
  position: absolute;
  z-index: 70000;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  display: none;
}
html {
  overflow-y:scroll;
}
#tt_main{
  font-family: 'Source Sans Pro',Helvetica,Arial,Lucida,sans-serif;
  margin-top: 20px;
}
#scheduler_table{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  overflow: auto;
}
.tt_scheduler_header:not(:first-child){
  border-bottom: 3px double rgba(0,0,0,0.2);
}
.tt_event_place{
  border: 1px solid rgba(0,0,0,0.2);
  height: 60px;
  width: 150px;
  display: flex;
  flex-wrap: nowrap;
}
.tt_camp_plan{
  position: relative;
  float: left;
  /*width:100%;
  display:flex;*/
}

.tt_camp_plan:hover{
  box-shadow: 0px 0px 2px 2px rgb(0 0 0 / 45%);
  cursor: pointer;
}

#tt_constant_program_category{
  padding:5px;
}
.draggable{
  cursor: move;
}
.onDrag{
  width: 50%;
  height: 50px;
  background-color:white;
  border: 5px solid white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 111;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(255, 255, 255, 0.6);
}

.modal_content {
  background-color: white;
  margin: auto;
  width: 50%;
  margin-top: 200px;
  padding: 30px;
  /*border: 1px solid #aaa;*/
  box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.45);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.tile_row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}
.tile{
  padding: 30px;
  background-color: #0c71c3;
  color: white;
  list-style: none;
  border-radius: 30px;
}
.tile a{
  color: white;
  padding:3px;
}
.tile a:hover{
  text-decoration: underline;
}
.tile h2{
  font-size: 30px !important;
  font-weight: bold;
  color: #FFFFFF !important;
  display: block;
}
.tile a h2{
  text-align: center;
}
.tile .tt_inactive_item{
  background-color: rgba(255,255,255,0.2);;
  border: none;
}
.tt_camp_plan_title{
  padding: 2px;
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
  line-height: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tt_camp_plan_time{
  font-size : 11px;
  line-height: 12px;
  padding:1px;
}
.form-row{
  display: inline-block;
  padding: 5px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  /*border-radius: 3px;*/
}
.form-row label{
  display: block;
	float: left;
	margin-top: -19px;
	background: #FFFFFF;
	padding: 2px 5px 2px 5px;
	color: #666;
	font-size: 14px;
	overflow: hidden;
}
.form-row input, 
.form-row textarea,
.form-row select {
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
    outline: none;
    border: none !important;
    height: 22px;
    line-height: 22px;
    font-size: 15px;
    padding: 0;
}
.form-row input[type=checkbox]{
  height: 15px;
}
.sidebar_new_link{
  text-align: center;
  display: block;
}
.tt_date_header{
  text-align: center;
  font-size: 12px;
}
.tt_weekday{
  font-weight: bold;
  text-align: center;
  padding: 0;
}
.tt_scheduler_hour{
  font-weight: bold;
  margin-top: -35px;
  /*border-top: 1px solid #CCC;*/
  padding-right: 5px;
}
.w100{
  width: 100%;
}
.w90{
  width: 90%;
}
.w80{
  width: 80%;
}
.w60{
  width: 60%;
}
.w50{
  width: 49%;
}
.w45{
  width: 45%;
}
.w40{
  width: 40%;
}
.w20{
  width: 20%;
}

.tooltip_container{
  position: absolute;
  min-width: 300px;
  min-height: 200px;
}
/************************/
