.jv-spinner {
	width:36px;
	height:36px;
	border:4px solid #ccc;
	border-top:4px solid #f30;
	border-radius:50%;
	animation:jv-spin 0.8s linear infinite;
	margin:16px auto
}
@keyframes jv-spin {
	0% {
	transform:rotate(0deg)
}
100% {
	transform:rotate(360deg)
}
}
.btn-danger {
	background-color:#dc3545;
	color:#fff;
	border:1px solid #dc3545;
	padding:8px 16px;
	border-radius:3px;
	cursor:pointer;
	transition:background-color 0.2s ease-in-out,border-color 0.2s
}
.btn-danger:hover {
	background-color:#c82333;
	border-color:#bd2130
}
.btn-primary {
	background-color:#0073aa;
	color:#fff;
	border:1px solid #0073aa;
	padding:8px 16px;
	border-radius:3px;
	cursor:pointer;
	transition:background-color 0.2s ease-in-out,border-color 0.2s
}
.btn-primary:hover {
	background-color:#005b8c;
	border-color:#004e7a
}
input,select {
    
	padding:6px 10px;
	border-radius:4px;
	box-sizing:border-box;
	border:1px solid #dedede;
	min-width:11%!important;
	margin-right:11px!important;
	margin-top:8px!important
}
@media (max-width:768px) {
	input,select {
	width:100%!important;
	min-width:unset!important;
	margin-right:0!important
}
.btn-primary,.btn-danger {
	width:100%;
	display:block;
	font-size:15px;
	padding:12px 16px;
	margin-top:10px
}
.jv-spinner {
	width:28px;
	height:28px;
	border-width:3px
}
}
@media (max-width:480px) {
	.btn-primary,.btn-danger {
	font-size:14px;
	padding:10px 14px
}
input,select {
	font-size:14px;
	padding:8px 10px
}
.jv-spinner {
	width:24px;
	height:24px;
	border-width:3px
}
}