body {
	font-family: Arial Narrow;
}

h1 {
	color: #175a7a;
	font-weight: bold;
	margin-bottom: 30px;
}

h2 {
	font-weight: bold;
	margin-bottom: 30px;
}

h2.purple {
	color: #15688f;
	font-weight: bold;
}

input[type="text"] {
	border: 0;
	border-radius: 0px;
	padding: 5px;
	text-align: center;
}

span.menuLabel {
	padding-bottom: 5px;
}

.bgimage {
	background-image: url("../img/header_mobile.jpg");
	background-position-y: center;
	background-size: cover;
	display: inline-block;
}

.btn-engine {
	background-color: #e37925;
	border: 0;
	border-radius: 0px;
	color: #000;
	width: 100%;
}

.hedbar {
	background-image: url("../img/patternbar.jpg");
	background-size: cover;
}

.nav-item {
	font-size: 1.25em;
}

.nav-link {
	text-decoration: none
	color: black;
	font-weight: bold;
}

.nav-link.active > span.menuLabel {
	border-bottom: solid #f57424;
	color: #15688f;
}
.navbar-light .navbar-nav .nav-link {
	color: #4291ac;
}

.red {
	color: #E74128;
}

.lightBlue {
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 15%, rgba(230,131,54,1) 100%);
	color: #175a7a;
}
.lightBlue > .bkimage {
	background-image: url("../img/loginbg.png");
	background-position-x: right;
	background-position-y: bottom;
	background-repeat: no-repeat;
	background-size: contain;
}
.lightBlueNOBG {
	background-color: #f2cc9a;
	color: #175a7a;
}

@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
  margin: 0;
  padding: 0;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

[data-ripple] {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 9999px;
  animation: ripple-animation 2s;
}

@keyframes ripple-animation {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(100);
    opacity: 0;
  }
}

.aks-accordion {
  margin: 0 auto;
}
.aks-accordion-row {
}
.aks-accordion-item {
  width: 100%;
  border-bottom: 1px solid #f57424;
  padding-top: 20px;
  padding-right: 5px;
  padding-bottom: 12px;
  padding-left: 5px;
  cursor: pointer;
}
.aks-accordion-item-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.aks-accordion-item-icon {
  width: 25px;
  height: 25px;
  background: #F3EFEB;
  border-radius: 9999px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  text-align: center;
}
.aks-accordion-item-icon svg {
  width: 15px;
  fill: #000;
  margin: 0 auto;
}
.aks-accordion-item-title {
  width: 90%;
  text-align: left;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.aks-accordion-item-title h4 {
  margin: 0;
}
.aks-accordion-item-content {
  display: none;
  width: 100%;
  padding-top: 12px;
  padding-right: 8px;
  padding-bottom: 0;
  padding-left: 42px;
  overflow: hidden;
  word-break: break-word;
  width: 88%;
  text-align: left;
  line-height: 1.5;
}

.aks-accordion-item.opened .aks-accordion-item-icon-open {
  display: none;
}
.aks-accordion-item-icon-close {
  display: none;
}
.aks-accordion-item.opened .aks-accordion-item-icon-close {
  display: block;
}

@media screen and (max-width: 500px) {
  .aks-accordion {
    width: 100%;
  }
  .aks-accordion-item-content {
    padding-left: 11px;
    width: 92%;
  }
}



/* Media Queries section for custom responsive CSS */
	/* Custom, iPhone Retina */ 
	@media screen and (min-width : 320px) {
		h1 {
			font-size: 2em;
		}
		h2.purple {
			font-size: 1.5rem;
		}
		img.autmlogo {
			float: left;
		}
		.desktop {
			display: none;
		}
		.mobile {
			display: inline;
		}
	}

	/* Extra Small Devices, Phones */ 
	@media screen and (min-width : 480px) {
		h1 {
			font-size: 3em;
		}
		h2.purple {
			font-size: 1.75rem;
		}
		.desktop {
			display: none;
		}
		.mobile {
			display: inline;
		}
	}

	/* Small Devices, Tablets */
	@media screen and (min-width : 768px) {
		h1 {
			font-size: 3em;
		}
		h2.purple {
			font-size: 1.75rem;
		}
		img.autmlogo {
			float: none;
		}
		.desktop {
			display: none;
		}
		.mobile {
			display: inline;
		}
	}

	/* Medium Devices, Desktops */
	@media screen and (min-width : 992px) {
		h1 {
			font-size: 4em;
		}
		h2.purple {
			font-size: 2.5rem;
		}
		.bgimage {
			background-position-x: center;
		}
		.desktop {
			display: inherit;
		}
		.mobile {
			display: none;
		}
	}
		
	/* Large Devices, Wide Screens */
	@media screen and (min-width : 1200px) {
		h1 {
			font-size: 3em;
		}
		h2.purple {
			font-size: 2.5rem;
		}
		.bgimage {
			background-position-x: right;
		}
		.desktop {
			display: inherit;
		}
		.mobile {
			display: none;
		}
	}