#box{
	float: left;
    display: inline-block;
    width: 170px;
    height: 170px;
    margin: 10px;
    text-align: center;
    border: 1px solid #F1F1F1;
    border-radius: 5px;
    background: #fbfbfb;
    text-decoration: none;
    white-space: nowrap;
	box-shadow: 0px 1px 3px 0px grey;
}
#box:hover{
	border: 1px solid grey;
	box-shadow: 0px 0.5px 1px 0px grey;
}
.content-wrap{
	max-width:100%;
}
.content-wrap-inner{
	margin: 20px 20px;
}
#footer{
	padding-top: 20px;
  padding-bottom: 20px;
}
.entry-title{
	display:none;
}
.entry-content {
    padding-right: 10px;
    padding-left: 10px;
}
table, .themeform input[type="text"],.themeform input[type="button"], .themeform input[type="reset"], .themeform input[type="submit"],input[type="number"]{
	width:100%;
	margin-bottom: 15px;
}

select{
	width:100%;
	margin-bottom: 14px;
}
.entry > *:not(.alignfull) {
    max-width: 100%;
	margin-bottom: 15px;
}

#btn{
	width:100%;
	background:#0e5187;
	color:white;
	border: 2px solid #0e5187;
	padding: 1%;
}

#redbtn{
	width:100%;
	background:#ff0808;
	color:white;
	border: 2px solid #ff0808;
	padding: 1%;
}

#greenbtn{
	width:100%;
	background:#299c01;
	color:white;
	border: 2px solid #299c01;
	padding: 1%;
}

#display_modal {
    z-index: 100;
    position: fixed;
	height:80vh;
	overflow:scroll;
    background: whitesmoke;
    width: 78%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 20px 2px black;
    margin-left: 0%;
    margin-right: 0%;
}

.content-wrap-inner {
    overflow: scroll;
		height: 90vh;
}

/*Tabs*/
* {
  box-sizing: border-box;
}


.tabs {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  background: #efefef;
  box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3);
}

.sub_tabs {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  background: #efefef;
  box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3);
}

.input {
  position: absolute;
  opacity: 0;
}

.label {
	width: 100%;
	padding: 10px 15px;
    background: #e5e5e5;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    color: #7f7f7f;
    transition: background 0.1s, color 0.1s;
    margin: 0px;
    border-radius: 5px 5px 0px 0px;
    margin-right: 4px;
    border-left: 0.4px solid #7f7f7f6b;
}

.label:hover {
  background: #d8d8d8;
}

.label:active {
  background: #ccc;
}

.input:focus + .label {
  box-shadow: inset 0px 0px 0px 3px #2aa1c0;
  z-index: 1;
}

.input:checked + .label {
  background: #fff;
  color: #000;
  border-radius: 5px 5px 0px 0px;
}

@media (min-width: 600px) {
  .label {
    width: auto;
  }
}

.panel {
  display: none;
  padding: 20px 30px 30px;
  background: #fff;
  width:100%;
}

@media (min-width: 600px) {
  .panel {
    order: 99;
	width:100%;
  }
}

.input:checked + .label + .panel {
  display: block;
}

@media only screen and (max-width: 479px) {
	#box{
		width: 143px;
	}
	table { 
		width: 200px;
		margin-left:none;
	}
}

.timetable {
	display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.day {
   padding: 10px;
   border: 1px solid #ccc;
   min-height: 90px;
}

.item {	
	padding: 5px;
    margin: 5px 0;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    cursor: grab;
}

.item.dragging {
	opacity: 0.5;
}

.dayname {
	border: 0;
	width: 100px;
	height: 100px;
	padding-top: 25px;
}

.w3-red {
	color: #fff !important;
    background-color: #0a294d !important;
}

.w3-black{
	color: #fff !important;
    background-color: #cdcdcd !important;
}

.w3-bar {
    width: 100%;
    overflow: hidden;
	color: #fff !important;
    background-color: #cdcdcd !important;
}

.w3-center .w3-bar {
    display: inline-block;
    width: auto
}

.w3-bar .w3-bar-item {
    padding: 8px 16px;
    float: left;
    width: auto;
    border: none;
    display: block;
    outline: 0
}

.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click {
    position: static;
    float: left
}

.w3-bar .w3-button {
    white-space: normal;
}

.w3-bar-block .w3-bar-item {
    width: 100%;
    display: block;
    padding: 8px 16px;
    text-align: left;
    border: none;
    white-space: normal;
    float: none;
    outline: 0
}

.w3-bar-block.w3-center .w3-bar-item {
    text-align: center
}

.w3-block {
    display: block;
    width: 100%
}

#register{
	width:90%;
	padding:10px;
	border:0.5px solid;
	border-radius:3%;
	margin:auto;
	box-shadow:5px 3px 20px 2px;
}

//form

.form-group-full{
	width:100%;padding:10px;float: left;
}

.form-group-half{
	width:50%;padding:10px;float: left;
}

.form-group-one-third{
	width:33%;padding:10px;float: left;
}

.form-group-one-fourth{
	width:25%;
	padding:10px;float: left;
}

.form-group-three-fourth{
	width:75%;
	padding:10px;float: left;
}

#btnSubmit{
	display:none;
}

//Loading

.loader {
  width: 60px;
  z-index: 100;
  position: fixed;
  margin-left: 35%;
  display:none;
}

.loader-wheel {
  animation: spin 1s infinite linear;
  border: 2px solid rgba(30, 30, 30, 0.5);
  border-left: 4px solid #fff;
  border-radius: 50%;
  height: 50px;
  margin-bottom: 10px;
  width: 50px;
}

.loader-text {
  color: #000;
  font-family: arial, sans-serif;
}

.loader-text:after {
  content: 'Loading';
  animation: load 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    content: 'Loading';
  }
  33% {
    content: 'Loading.';
  }
  67% {
    content: 'Loading..';
  }
  100% {
    content: 'Loading...';
  }
}

/progress

fieldset{
	border: 0 none;
	border-radius: 3px;
	padding: 20px 30px;
	box-sizing: border-box;
	width: 97%;
	margin: 0 1%;
	position: absolute;
	height:70vh;
	overflow:scroll;
}
fieldset:not(:first-of-type){
	display: none;
}
input, textarea{
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: "Ubuntu", sans-serif !important;
	color: #2C3E50;
	font-size: 13px;
}
.action-button{
	width: 100px;
	background: #27AE60;
	font-weight: 400;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
.action-button:hover, .action-button:focus{
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
.fs-title{
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
	font-weight:500;
}
.fs-subtitle{
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: #D2D2D2;
    text-transform: capitalize;
    font-size: 16px;
    width: 20%;
    float: left;
    position: relative;
}
#progressbar li.active {
    color: #27AE60;
}
#progressbar li:before{
    content:"" ;/*counter(step)*/
    counter-increment: step;
    width: 50px;
    line-height: 50px;
    display: block;
    font-size: 18px;
    color:#fff ;
    background: transparent;
    border-radius: 100%;
    margin: 0 auto 5px auto;    
	border: 2px solid #ECECEC;
}
#progressbar li:nth-child(1):before{
	content:"\f129" ;
	font-family: "FontAwesome";	
}
#progressbar li:nth-child(2):before{
	content:"\f013" ;
	font-family: "FontAwesome";	
}
#progressbar li:nth-child(3):before{
	content:"\f00c" ;
	font-family: "FontAwesome";	
}
#progressbar li:nth-child(4):before{
	content:"\f0cb" ;
	font-family: "FontAwesome";	
}
#progressbar li:nth-child(5):before{
	content:"\f15b" ;
	font-family: "FontAwesome";	
}
#progressbar li:after {
    content: "";
    width: 73%;
    height: 2px;
    background: #ECECEC;
    position: absolute;
    left: -35%;
    top: 25px;
    z-index: -1;
}
#progressbar li:first-child:after {
	content: none;
}
#progressbar li.active:before {
    border: 2px solid #27AE60;
    color: #27AE60;
  /* content: "\f164";*/
}
#progressbar li.active:after {
	background: #27AE60;
	color: white;
}
.form_holder {
    text-align: center;
    margin: 30px 0 0;
}
.required {
    color: red;
    font-weight: bold;
}

.close:after {
    content: '';
    height: 25px;
    border-left: 2px solid darkred;;
    position: absolute;
    transform: rotate(45deg);
    left: 28px;
}

.close:before {
    content: '';
    height: 25px;
    border-left: 2px solid darkred;;
    position: absolute;
    transform: rotate(-45deg);
    left: 28px;
}

.checkmark {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
}
  
.checkmark::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background: green;
    transform: rotate(45deg);
    top: 8px;
    left: 2px;
}