* {
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	font-size: 16px;
	/* font-family: 'Exo 2', sans-serif;  */
	font-family: Exo 2;
	background: #efefef;
	color: #555;
	zoom: 90%;
}

.header {
	padding: 10px 20px;
	background-color: #fff;
}

/* .container {
	max-width: 1200px;
	margin: 0 auto;
} */
@media only screen and (max-width : 1000px) {
	.stellarnav>ul>li>a {
		padding: 20px 23px;
	}
}

#scrollToTopButton {
	position: fixed;
	z-index: 100;
	bottom: 25px;
	right: 8px;
	width: 45px;
	height: 45px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	transition: opacity 0.3s;
	opacity: 0;
	visibility: hidden;
}

#scrollToTopButton.show {
	opacity: 0.3;
	visibility: visible;
}

#scrollToTopButton:hover {
	opacity: 1;
}

#backButton {
    position: fixed;
	z-index: 100;
	bottom: 25px;
	left: 8px;
	width: 45px;
	height: 45px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	transition: opacity 0.3s;
	opacity: 0.3;
}

#backButton:hover {
    opacity: 1;
}

input, textarea, select {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page {
	padding: 0 1.5rem 1.5rem;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fade {
	transition: opacity .15s linear;
	width:100%;
	height:100%;
}

.modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	/* padding: var(--bs-modal-header-padding); */
	padding: 8px 20px;
	color: white;
	background-color: var(--bs-primary);
	border-bottom: var(--bs-modal-header-border-width) solid
		var(--bs-modal-header-border-color);
	border-top-left-radius: var(--bs-modal-inner-border-radius);
	border-top-right-radius: var(--bs-modal-inner-border-radius);
	
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    /* padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)* .5); */
    padding:0;
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

div.dt-buttons div.dropdown-menu {
    margin-top: 4px;
    width: 200px;
    margin-left: 30px;
}