@import url("https://fonts.googleapis.com/css?family=Arvo:700|Open+Sans");

*::-webkit-scrollbar {
	display: none;
}

*{
	-ms-overflow-style: none;
	scrollbar-width: none; /* Firefox */

	
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

body{
 /* background: #10273A; */
 font-size: 14px;
 font-weight: 400;
 font-family: 'Open Sans', sans-serif;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
 -webkit-font-smoothing: subpixel-antialiased;
 color: #abacae;
 line-height: 25px;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
 overflow-x: hidden;
	
 
}
body::-webkit-scrollbar {
 display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body{
 -ms-overflow-style: none;  /* IE and Edge */
 scrollbar-width: none;  /* Firefox */
}


/* Preloader STARTS*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 9999999;
}

.loader {
	top: 50%;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	position: relative;
	margin: 0 auto;
}

#loader-1:before, #loader-1:after {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 7px solid transparent;
	border-top-color: #081229;
}

#loader-1:before {
	z-index: 100;
	animation: spin 1s infinite;
}

#loader-1:after {
	border: 7px solid #f2f2f2;
}

@keyframes spin {
	0% {
			-webkit-transform: rotate(0deg);
			-ms-transform: rotate(0deg);
			-o-transform: rotate(0deg);
			transform: rotate(0deg);
	}
	100% {
			-webkit-transform: rotate(360deg);
			-ms-transform: rotate(360deg);
			-o-transform: rotate(360deg);
			transform: rotate(360deg);
	}
}

/* PRELOADER END */

/* LOAD ON DATA BASE RESPONSE */
.appointment_body:after{
 position: absolute;
 content: '';
 top: 0;
 left: 0;
 height: 110%;
 width: 100%;
 background: rgba(0,0,0,0.7);
}

.appointment_body:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 7px solid transparent;
	border-top-color: khaki;
 animation: spin 1s infinite;
 z-index: 99999;
} 

@keyframes spin {
	0% {
			-webkit-transform: rotate(0deg);
			-ms-transform: rotate(0deg);
			-o-transform: rotate(0deg);
			transform: rotate(0deg);
	}
	100% {
			-webkit-transform: rotate(360deg);
			-ms-transform: rotate(360deg);
			-o-transform: rotate(360deg);
			transform: rotate(360deg);
	}
} 
/* LOAD ON DATA BASE RESPONSE */


/* SECTION DATA  */
.section_info{

}

.section-title {
	/* font-size: 2.5rem; */
	font-weight: 300;
	/* color: crimson; */
	color: #0065e1;
	text-shadow: 5px 4px 5px rgba(0, 0, 0, 0.36);
	margin-bottom: 10px;
	letter-spacing: 0.1rem;
	text-align: center;

}

.section_info P{
color:#111430;
}

/* BUTTON GLOBAL */
.button_style_all {
	background-color: transparent;
	border: 2px solid crimson;
	transition: 0.3s ease;
	transition-property: background-color, color;
 color: crimson;
	margin: 20px 5px;
	padding: 5px 10px;
	font-size: 1rem;
 border-radius: 10px;
 cursor:pointer;
 outline: none;
}

.button_style_all{
 text-align: center;
 margin: 0 auto;

}

.button_style_all:hover {
	color: khaki;
	background-color: crimson;
}

.nav_style{
	text-decoration: none !important;
}