body {
	font-family: 'Montserrat', sans-serif;
}

.text-yellow {
	color: #41782a;
}

.border-yellow {
	border-color: #41782a;
	border: 5px solid;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}
   
/* Handle */
::-webkit-scrollbar-thumb {
	background: #888; 
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

 /* .gold-div {
	width: 50%;
	height: 150px;;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #d2b356;
	z-index: -1;
} */

body {
	padding: 10px;
}

@keyframes body {
	100% {padding: 10px;}
}

/*LOADER*/
.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1031;
}

.loader {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	border: 4px solid #41782a;
	animation: loader 4s infinite ease;
	-webkit-animation: loader 4s infinite ease;
	-moz-animation: loader 4s infinite ease;
	-o-animation: loader 4s infinite ease;
}

.loader-hide {
	animation: loader-hide 2s linear forwards;
	-webkit-animation: loader-hide 2s linear forwards;
	-moz-animation: loader-hide 2s linear forwards;
	-o-animation: loader-hide 2s linear forwards;
}

@keyframes loader {
	0% { transform: rotate(0deg);}
	25% { transform: rotate(180deg);}
	50% { transform: rotate(180deg);}
	75% { transform: rotate(360deg);}
	100% { transform: rotate(360deg);}
}
@keyframes loader-inner {
	0% { height: 0%;}
	25% { height: 0%;}
	50% { height: 100%;}
	75% { height: 100%;}
	100% { height: 0%;}
}

@keyframes loader-hide {
	0% {opacity: 1;}
	50% {opacity: 1;}
	100% {opacity: 0; z-index: -1;}
}

/*PAGE BORDERS*/
/* .border-top, .border-bottom {height: 20px;}
.border-left, .border-right {width: 20px;} */
.fixed-left {left: 0;}
.fixed-right {right: 0;}
.fixed-left, .fixed-right {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 1029;
}

.border-top, .border-bottom {
	-webkit-animation: border-1 0.5s 1.5s forwards;
	-moz-animation: border-1 0.5s 1.5s forwards;
	-o-animation: border-1 0.5s 1.5s forwards;
	animation: border-1 0.5s 1.5s forwards;
}
.border-left, .border-right {
	-webkit-animation: border-2 0.5s 1.5s forwards;
	-moz-animation: border-2 0.5s 1.5s forwards;
	-o-animation: border-2 0.5s 1.5s forwards;
	animation: border-2 0.5s 1.5s forwards;
}

.page-borders > * {
	background-color: #41782a;
	/* background-image: linear-gradient(to right, #ff8605, #ff5b02) */
}

@keyframes border-1 {
	0% {height: 0px;}
	100% {height: 10px;}
}

@keyframes border-2 {
	0% {width: 0px;}
	100% {width: 10px;}
}

/*FONT WEIGHT*/
.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.fw-900 {font-weight: 900;}

@media (max-height: 799px) {
	.img-mt {
		max-height: 550px;
        width: auto;
	}
}

@media (min-height: 800px) {
	.img-mt {
		max-height: 650px;
	}
}