
/* 
ITN
Edits
2021
*/

.preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #2B2B2B;
	/* display: -webkit-box; */
	/* display: -ms-flexbox; */
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* z-index: 99999; */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 999999;
}

.preloader #circle-square span {
	width: 16px;
	height: 16px;
	display: inline-block;
	background-color: #84cb2e;
	-webkit-animation: square2 2s infinite ease-in-out both;
	animation: square2 2s infinite ease-in-out both;
}

body {
	font-family: "Rubik", sans-serif;
	color: #fff;
	background-color: #2B2B2B;
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*Nav Bar*/

.header {
	background: #1c1c1c;
	padding: 15px 0;
	border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.header .navbar-brand {
	padding-top: 0;
	padding-bottom: 0;
	margin-right: 0;
	font-size: 30px;
	font-weight: bold;
	color: #fff !important;
}

.header .navbar-brand span {
	color: #84cb2e !important;
}

.header .navbar-dark .navbar-nav .nav-link {
	color: #ebebeb;
}

.header .nav-link:hover, .header .nav-link.active {
	color: #84cb2e !important;
}

.header .navbar-nav .nav-item {
	padding-left: 30px;
}

/*Calendar*/

main.padding-top {
	padding-top: 20px;
}

.quick-events .events-calendar {
	-webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
	box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #585858;
}

.quick-events .events-calendar .calendar-header .current-date span {
	color: #84cb2e;
	margin-left: 3px;
}

.quick-events .events-calendar .calendar-header .nav-time .btn-change-date {
	border: 1px solid #84cb2e;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-left: 10px;
	padding: 5px 10px;
	background: #84cb2e;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
}

.quick-events .events-calendar .calendar-header .nav-time .btn-change-date:hover {
	background: #fff;
	border: 1px solid #84cb2e;
	color: #84cb2e;
}

.quick-events .events-calendar .calendar-table .calendar-day.today .day-num {
	color: #fff;
	background: #84cb2e;
	border-radius: 100%;
	width: 22px;
	font-size: 13px;
	text-align: center;
}

.quick-events .events-calendar .calendar-table .calendar-day.weekend .day-num {
	color: #84cb2e;
}

.quick-events .events-list .event-item .event-info .event-intro {
	font-size: 15px;
	line-height: 22px;
	display: none;
}

/*Event Modal*/

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	background: #fff;
	max-width: 720px;
	height: auto;
	overflow-y: auto;
	margin: 0 auto;
	-webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
	box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.event-info .event-intro {
    color: #8b88b1;
}

.event-intro {
    margin-top:20px;
}

.my-mfp-zoom-in .zoom-anim-dialog .event-item .event-info .event-intro {
	font-size: 16px;
	line-height: 22px;
}

/*Font*/

h1, h2, h3, h4, h5, h6 {
	color: #fff;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	margin: 20px 0;
}

.section-title span {
    color: #84cb2e;
}

.section-title::after {
	content: "";
	border: 0;
	width: 50px;
	height: 2px;
	background: #84cb2e;
	z-index: 1;
	margin-left: 0;
	position: absolute;
	left: 0;
	bottom: -12px;
}

.footer {
	background: none;
	border-top: 0;
	padding: 30px 0;
	margin-top: 80px;
	text-align: center;
}