@font-face {
	font-family: Montserrat-Regular;
	src: url('fonts/Montserrat/Montserrat-Regular.ttf');
}

@font-face {
	font-family: Montserrat-Bold;
	src: url('fonts/Montserrat/Montserrat-Bold.ttf');
}

* {
	box-sizing: border-box;
	font-size: 12px;
	color:#000 !important
}

html,
body {
	padding: 0;
	margin: 0;
	height: 100%;
	position:relative;
}

body {
	font-family: Montserrat-Regular;
}

input {
	outline: none;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

/* .container {
	width: 800px;
	height: 600px
} */
.container {
	width: 100%;
	/* max-width: 820px; */
	min-height: 100vh;
	margin: auto;
	padding-bottom: 20px;
}

.main-nav,
.drop-nav,
.flyout-nav {
	background: #161c2d
}

.main-nav {
	display: flex;
	margin: 0;
}

.main-nav li {
	border-right: 1px solid rgba(255, 255, 255, .2);
	flex-grow: 1;
}

.main-nav li:hover {
	background: #000;
}

.main-nav a {
	color: #FFF !important;
	display: block;
	padding: 6px;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	/* width: 100px; */
	text-decoration: none;
}

.dropdown,
.flyout {
	position: relative;
}

.dropdown:after,
.flyout:after {
	font-size: 14px;
	position: absolute;
	top: 10%;
	right: 10%;
	color: #FFF;
}

.dropdown:after {
	content: "\25BC";
}

.flyout:after {
	content: "\25B6";
}

.drop-nav,
.flyout-nav {
	position: absolute;
	display: none;
	z-index: 1001;
}

.dropdown:hover>.drop-nav,
.flyout:hover>.flyout-nav {
	display: block;
}

.flyout-nav {
	left: 101px;
	top: -1px;
}

.loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1001;
	background-color: #fff;
}

.loader>img {
	width: 50px;
}

#home div {
	text-align: center;
}

#home #div1 {
	padding-top:60px;
	font-size: 20px;
}
#home #div2 {
	padding-top:10px;
	font-size: 30px;
	font-weight: 600;
}


.modal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1001;
	background-color: rgba(0, 0, 0, 0.6);
}


  .modal_wrap {
	background-color: #FFFFFF;
	border-radius: 4px;
	display: inline-block;
	max-width: CALC(100% - 16px);
  }
  .modal_head {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 2px 4px;
	background-color: #ccc;
  }
  .modal_body {
	font-size: 14px;
	text-transform: capitalize;
	padding: 16px 16px 24px 16px;
  }
  .modal_footer {
	text-align: right;
	padding-bottom: 6px;
	min-width: 260px;
  }
  .modal_footer button {
	font-size: 12px;
	text-transform: uppercase;
	width: 80px;
	height: 24px;
	margin-right:6px
  }
  .modal_footer #btnOk {
	margin-left: 16px
  }
  
  .modal_error {
	font-size: 14px;
	  text-align: center;
	  color: #f44336;
	  padding: CALC(100% - 106px) 0
  }