.content-wrapper{
	-webkit-animation: fadeIn 0.5s;
	-moz-animation: fadeIn 0.5s;
	animation: fadeIn 0.5s;
}
@keyframes fadeIn {
	0% {
	  opacity: 0.5;
	}
  
	100% {
	  opacity: 1;
	}
}
@-webkit-keyframes fadeIn{
	0% {
	  opacity: 0.5;
	}
  
	100% {
	  opacity: 1;
	}
}
@-moz-keyframes fadeIn{
	0% {
	  opacity: 0.5;
	}
  
	100% {
	  opacity: 1;
	}
}

.pointer {
	cursor: pointer;
}

.border-red,
.border-red:hover,
.border-red:focus,
.border-red:active{
	border-color:red;
}
.color-red{
	color:red;
}

input[type=checkbox].checkbox,
input[type=radio].checkbox {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=checkbox].checkbox + label.label ,
input[type=radio].checkbox + label.label {
	padding-left:26px;
	height:21px; 
	display:inline-block;
	line-height:21px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:21px;
	color:black;
	vertical-align:middle;
	cursor:pointer;

}

input[type=checkbox].checkbox:checked + label.label ,
input[type=radio].checkbox:checked + label.label {
	background-position: 0 -21px;
}
label.label {
	background-image:url('../images/radio.png');
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input[type=checkbox].checkbox-blue {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=checkbox].checkbox-blue + label.label-checkbox-blue {
	padding-left:25px;
	margin-top:2px;
	height:20px; 
	display:inline-block;
	line-height:20px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:14px;
	vertical-align:middle;
	cursor:pointer;

}

input[type=checkbox].checkbox-blue:checked + label.label-checkbox-blue  {
	background-position: 0 -20px;
}
label.label-checkbox-blue  {
	background-image:url(../images/checkbox_blue.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
			

input[type=radio].radio-blue {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=radio].radio-blue + label.label-radio-blue {
	padding-left:25px;
	height:20px; 
	display:inline-block;
	line-height:20px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:20px;
	vertical-align:middle;
	cursor:pointer;

}

input[type=radio].radio-blue:checked + label.label-radio-blue {
	background-position: 0 -20px;
}
label.label-radio-blue{
	background-image:url(../images/radio_blue.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


input[type=radio].radio-blue-minimal {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=radio].radio-blue-minimal + label.label-radio-blue-minimal {
	padding-left:20px;
	height:15px; 
	display:inline-block;
	line-height:15px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:14px;
	vertical-align:middle;
	cursor:pointer;

}

input[type=radio].radio-blue-minimal:checked + label.label-radio-blue-minimal {
	background-position: 0 -15px;
}
label.label-radio-blue-minimal {
	background-image:url(../images/radio_blue_minimal);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* The container */
.inputcheckbok {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .inputcheckbok input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .inputcheckbok :hover input ~ .checkmark {
	background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .inputcheckbok input:checked ~ .checkmark {
	background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .inputcheckbok input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .inputcheckbok .checkmark:after {
	left: 9px;
	top: 3px;
	width: 8px;
	height: 15px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }

.pic-box-350{
	width:350px;
	height:350px;
	overflow:hidden;
}
.pic-box-300{
	width:300px;
	height:300px;
	overflow:hidden;
}
.pic-box-250{
	width:250px;
	height:250px;
	overflow:hidden;
}
.pic-box-200{
	width:200px;
	height:200px;
	overflow:hidden;
}
.pic-box-150{
	width:150px;
	height:150px;
	overflow:hidden;
}
.pic-box-100{
	width:100px;
	height:100px;
	overflow:hidden;
}
.pic-box-50{
	width:50px;
	height:50px;
	overflow:hidden;
}
.pic-box-20{
	width:20px;
	height:20px;
	overflow:hidden;
}

.drop-area{
	width:100px; height:25px;
	border: 1px solid #999; text-align: center;
	padding:10px; cursor:pointer;
}

#thumbnail img{width:100px;height:100px;margin:5px;}
canvas{border:1px solid red;}   

.card{
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 3px;
	margin:5px;
	overflow: hidden;
	float:left;
}
.card_bt{
	font-size:14px;
	border: none;
	padding: 2px;
	color: white;
	text-align: center;
	background:red;
	
	cursor: pointer;
	width:100%;
	height:25px;
}


.m-0{
	margin:0px;
}
.m-1{
	margin:5px;
}
.m-2{
	margin:10px;
}
.m-3{
	margin:15px;
}
.m-4{
	margin:20px;
}

.mt-0{
	margin-top:0px;
}
.mt-1{
	margin-top:5px;
}
.mt-2{
	margin-top:10px;
}
.mt-3{
	margin-top:15px;
}
.mt-4{
	margin-top:20px;
}
.mt-5{
	margin-top:25px;
}

.p-0{
	padding:0px;
}
.p-1{
	padding:5px;
}
.p-2{
	padding:10px;
}
.p-3{
	padding:15px;
}
.p-4{
	padding:20px;
}
.p-5{
	padding:30px;
}

.pl-0{
	padding-left:0px;
}
.pl-1{
	padding-left:5px;
}
.pl-2{
	padding-left:10px;
}
.pl-3{
	padding-left:15px;
}
.pl-4{
	padding-left:20px;
}

.pr-0{
	padding-right:0px;
}
.pr-1{
	padding-right:5px;
}
.pr-2{
	padding-right:10px;
}
.pr-3{
	padding-right:15px;
}
.pr-4{
	padding-right:20px;
}

.mt-in-1{
	margin-top:-15px;
}
.pt-0{
	padding-top:0px;
}
.pt-1{
	padding-top:5px;
}
.pt-2{
	padding-top:10px;
}
.pt-3{
	padding-top:15px;
}
.pt-4{
	padding-top:20px;
}

.pb-0{
	padding-bottom:0px;
}
.pb-1{
	padding-bottom:5px;
}
.pb-2{
	padding-bottom:10px;
}
.pb-3{
	padding-bottom:15px;
}
.pb-4{
	padding-bottom:20px;
}

.d-flex {
	display: flex;
}
.justify-content-between {
	justify-content: space-between;
}
.flex-wrap{
	display: flex;  
	flex-wrap: wrap;
}
.w-100{
	width:100%;
}
.w-50{
	width:60%;
}
.w-50{
	width:50%;
}
.w-40{
	width:40%;
}
.w-30{
	width:30%;
}
.w-20{
	width:20%;
}
.w-10{
	width:10%;
}

.case{
	margin:7px;
	padding:7px;
	border:1px solid #ECF0F1;
	border-radius: 3px;
	box-shadow: 0px 1px 2px 0 rgba(0,0,0,0.1);
}
.num_list{
	width:38px;
	height:25px;
	font-size: 18px;
	text-align:center;
}
.nums_list{
	width:45px;
	height:25px;
	font-size: 18px;
	text-align:center;
}
.num_type{
	font-size: 18px;
	color:#F39C12;
}

.lotto-card{
	border-radius:5px;
	margin:15;
	margin-bottom:5px;
	overflow: hidden;
}
.lotto-head{
	display: inline-block;
	margin-top:0px;
	width:100%;
	height:50px;
	padding:1px 5px;
	text-align:right;
	color:#fff;
}
.lotto-head .loticon{
	position: absolute;
	top:15px;
	left:30px;
}
.lotimg{
	height: 20px;
	-webkit-box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.5);
	-moz-box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.5);
	box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.5);
}
.loticon{
	height: 40px;
	-webkit-box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.5);
	-moz-box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.5);
	box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.5);
}
.img-gray{
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}
.img-wait{
	opacity: 0.7;
}
.lotto-head p{
	color:#fff;
	padding:0px;
	margin:0px;
}

.lotto-main{
	width:100%;
	height:50px;
	padding:10px;
	border-top-style: none;
	border:1px solid #BDC3C7;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color:#A6ACAF;
	font-size:20px;
}
.lotto-main .text-lot{
	color:#2E4053;
}
.lotto1{
	background-color:#48C9B0;
}
.lotto2{
	background-color:#CB4335;
}
.lotto3{
	background-color:#ff3399;
}
.lotto4{
	background-color:#239B56;
}
.lotto5{
	background-color:#3498DB;
}
.lotto6{
	background-color:#F4D03F;
}
.lotto7{
	background-color:#154360;
}
.lotto8{
	background-color:#154360;
}
.lotto9{
	background-color:#138D75;
}
.lotto0{
	background-color:#909497;
}
.countdown{
	text-align: right;
}
.f-12{
	font-size: 12px;
}
.f-14{
	font-size: 14px;
}
.f-16{
	font-size: 14px;
}

.user_profile{
	color:#b8c7ce;
	font-size: 13px;
}
.highlight{
	color:#ffb84d;
}


.credit{
	width:100%;
	margin: auto;
	height:25px;
	font-size: 14px; 
	padding:2px;
	color:#fff;
	text-align: center;
	border-radius: 4px;
}
.bg1{
	background: #1ABC9C;
}
.bg2{
	background: #EC7063;
}
.credit_balance{
	font-size: 18px; 
	font-family: 'Orbitron', sans-serif;
	color:#fff;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}


.modal-dialog{
	z-index: 1000;
}
.modal-backdrop{
	z-index: 999;
}
.modal{
	z-index: 1000;
}
.modal-content {
	border-radius: 6px;
}


.table_limit td, .table_limit th {  
	border: 1px solid #ddd;
	text-align: left;
}
  
.table_limit{
	border-collapse: collapse;
	width: 100%;
}
  
.table_limit td {
	font-size: 12px;
	padding: 5px;
	color:#fff;
}
.table_limit th {
	font-size: 12px;
	padding: 10px;
	color:#F39C12;
}


.table_print{
	width:100%;
	border:1 solid #000;
}

.table_print{
	width:100%;
	border:1 solid #000;
}


.modal-fullscreen {
	width: 80% !important;
}

.tbill {
	border-collapse: collapse;
	width: 100%;
}

.tbill td, .tbill th {
	border: 1px solid #ddd;
	padding: 8px;
}

.tbill tr:nth-child(even){
	background-color: #f2f2f2;
}

.tbill tr:hover {background-color: #ddd;}

.tbill th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: center;
	background-color: #04AA6D;
	color: white;
}

.tlimit > tbody > tr > th,
.tlimit > tbody > tr > td{
	border: 1px solid #e2e6e9;
}
.tlimit{
	border: 1px solid #e2e6e9;
}


.results {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #999999;
	margin:4px 0px;
}
.tresults {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	border-style: hidden;
}
.tresults th, td {
	padding:4px;
	border: 1px solid #F2F3F4;
	font-size:14px;
}
.stat{
	text-align:right;
}
.bg-red{
	background-color:#EC7063;
	color:#fff;
}
.tight{
	color:#154360;
}
.results ul {
	list-style-type: none;
	padding: 10px;
	margin: 10px;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.results ul li {
	border: 1px solid #F5B041;
	margin-top: -1px;
	padding: 5px;
}
.results ul li:first-child {    
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	border-top-left-radius: 7px;
	background-color: #F2F3F4;
	color:#D68910;
	font-weight: bold;
}
.results ul li:last-child { 
	-moz-border-radius-bottomleft: 7px;
	-moz-border-radius-bottomright: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}

input.check {
	width: 20px;
	height: 20px;
}
input.check-mini{
	transform: scale(1.3);
}

.checkboxtext{
	padding: 5px;
}

.swal2-container {
	z-index: 2222;
	
}
.swal2-popup {
	font-size: 1.5rem;
	z-index: 2222;
}

.error_input{
	border-color: red;
}
.error_input:focus{
	border-color: red;
}


@-webkit-keyframes spinner-border {
	to {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  @keyframes spinner-border {
	to {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  .spinner-border {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: text-bottom;
	border: 0.25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: spinner-border .75s linear infinite;
	animation: spinner-border .75s linear infinite;
  }
  
  .spinner-border-sm {
	width: 1.8rem;
	height: 1.8rem;
	border-width: 0.2em;
  }
  
  @-webkit-keyframes spinner-grow {
	0% {
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	50% {
	  opacity: 1;
	  -webkit-transform: none;
	  transform: none;
	}
  }
  
  @keyframes spinner-grow {
	0% {
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	50% {
	  opacity: 1;
	  -webkit-transform: none;
	  transform: none;
	}
  }
  
  .spinner-grow {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: text-bottom;
	background-color: currentColor;
	border-radius: 50%;
	opacity: 0;
	-webkit-animation: spinner-grow .75s linear infinite;
	animation: spinner-grow .75s linear infinite;
  }
  
  .spinner-grow-sm {
	width: 1rem;
	height: 1rem;
  }
  

  .loading-full{
	width:100%; 
	padding-top:50%; 
	text-align:center;
	z-index:9999;
	position:fixed;
}
.loading{
	width:100%; 
	min-height:280px; 
	padding-top:25px; 
	text-align:center;
}
.loader,
.loader:before,
.loader:after {
  background: #999;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #999;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
