/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

@font-face {
  font-family: Roboto-Light;
  src: url(../font/roboto/Roboto-Light.ttf);
}

@font-face {
  font-family: LifeCraft;
  src: url(../font/LifeCraft_Font.ttf);
}

#pick_clb {
	height: 20px;
	margin: 0;
}

.button_list_mem {
	height: 50px;
	width: 50px;
	background-color: #fff;
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-size: 44px 38px;
	background-image: url(../img/icon/tennis_booking.png);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
}

body {
	font-family: Roboto-Light;
  color: #333;
  font-weight: 300;
  background: #e5e5e5;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

/*.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}
*/
/*
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}
*/

.tabset > input:checked + label {
  border-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: -1px;
  color: #0069d9;
}

.tab-panel {
	padding-top: 20px;
	border-top: 1px solid #fff;
	border-collapse: collapse;
	margin-bottom: 50px;
}

/*
 Demo purposes only
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

.tabset {
  max-width: 65em;
}

.date_admin {
	width: 150px !important;
}

#transTitle:after {
	content: 'Giao Dịch';
}

#paymentTitle:after {
	content: 'Thanh Toán';
}

#memberTitle:after {
	content: 'Thành Viên';
}

#dbTitle:after {
	content: 'Dashboard';
}

#creditTitle:after {
	content: 'Credit';
}
	
	

.create_mask {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 2;
	display: none;
}

.create_form {
	position: absolute;
	width: 310px;
	height: 400px;
	top: calc(50% - 375px / 2);
	left: calc(50% - 310px / 2);
	background-color: #f6f6f6;
	border-radius: 10px;
	padding: 15px;
	overflow: auto;
}

.create_form input, .create_form select {
	width: 80%;
	margin-left: 10%;
}

.input_caption {
	width: 80%;
	margin: 10%;
	margin-bottom: 5px;
	margin-top: 10px;
	font-size: 13px;
	color: #0b0b0b;
}

.new_cat_close_btn {
	background-image: url(../img/icon/cancel_black100.png);
	background-size: cover;
	cursor: pointer;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 5px;
	right: 5px;
}

.create_cat_btn {
	background-color: #28a745;
	color: #f6f6f6;
	border: none;
	width: calc(278px * 0.8);
	height: 48px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 5px;
	margin-top: 5px;
	margin-left: 10%;
	cursor: pointer;
}


.create_cat_btn:disabled {
	background-color: #ccc;
}

.new_btn {
   position: relative;
   top: 5px;
}

#create_trans_mask .create_form {
	height: 450px;
	top: calc(50% - 225px);
}

#create_trans_mask .create_form {
	height: 450px;
	top: calc(50% - 225px);
}

@media screen and (max-width: 950px) {
	#create_trans_mask .create_form, #create_pay_mask .create_form, #create_cre_mask .create_form {
		height: 100%;
		top: 0;
	}
}
	
	@media screen and (max-width: 720px) {
		#transTitle:after {
			content: 'GD';
		}
		
		#paymentTitle:after {
			content: 'TT';
		}
		
		#memberTitle:after {
			content: 'TV';
		}
		
		#dbTitle:after {
			content: 'DB';
		}
		
		#creditTitle:after {
			content: 'CR';
		}
	}

@media screen and (max-width: 455px) {
	#create_trans_mask .create_form {
		height: 490px;
		top: calc(50% - 490px / 2 - 50px);
	}
	
	#create_pay_mask .create_form {
		height: 450px !important;
		top: calc(50% - 225px / 2 - 170px) !important;
	}
	
	#create_cre_mask .create_form {
		height: 400px !important;
		top: calc(50% - 200px / 2 - 170px) !important;
	}
}