@import url("https://fonts.googleapis.com/css?family=Karla:400,700");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.loading_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.loading_container .loading-bar {
  display: flex;
  height: 10px;
  width: 100%;
  max-width: 300px;
  box-shadow: inset 0px 0px 0px 1px #c8c8cd;
  border-radius: 50px;
  overflow: hidden;
}

#loader{
	display:none;
}

@keyframes progress-animation {
  0% {
    width: 0%;
  }
  20% {
    width: 10%;
  }
  40% {
    width: 30%;
  }
  50% {
    width: 60%;
  }
  100% {
    width: 90%;
  }
}
.loading_container .loading-bar .progress-bar {
  display: flex;
  height: 100%;
  width: 90%;
  background: #066832;
  animation: progress-animation 5s ease-in-out;
}




.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 10px 10px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
  cursor:pointer;
}

.header a:hover {
  background-color: #ddd;
  color: black;
  cursor:pointer;
}

.header a.active {
  background-color: #066832;
  color: white;
}

.header-right {
  float: right;
}

body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: white;
  font-family: "Karla", arial, sans-serif;
}

.device {
  overflow-x:hidden;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  display: inline-block;
  transform: scale(1);
}

.device .device-bezel {
  border-radius: inherit;
  overflow-y: scroll;
  background: white;
  position: relative;
  box-sizing: content-box;
}

.device .device-viewport {
  overflow-y:scroll;
  contain: strict;
  width: 350px;
  height: 622.2222222222px;
  background: white;
  border-radius: inherit;
  transform: scale(1);
}

#screen_content{

  overflow-y:scroll;

}

* {
  font-family: "Karla", arial, sans-serif;
  user-select: none;
}

.container {
  background: transparent;
  height: 100%;
}

.content {
  background: white;
}

.content img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.body-content {
  padding: 16px;
}
.body-content h3 {
  margin-bottom: 16px;
}
.body-content p {
  line-height: 1.5em;
  margin-bottom: 8px;
}
.body-content .option-button {
  width: 100%;
  height: 48px;
  border-radius: 1000px;
  background: cyan;
  border: none;
  outline: none;
  margin-top: 24px;
  cursor: pointer;
}

.pin-info {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  background: #EAEAEA;
}

.pin-display {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
}

.keypad {
  padding: 16px;
  background: white;
}

.keypad--row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.keypad--button {
  font-family: "Karla", arial, sans-serif;
  height: 48px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 100ms ease-out;
}

.keypad--button:active {
  background: #EAEAEA;
}

.confirmation-dots {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.keypad.error {
  animation-name: shake;
  animation-duration: 300ms;
}
.confirmation-dots.error {
  animation-name: shake;
  animation-duration: 300ms;
}
.confirmation-dots svg {
  height: 24px;
  max-height: 24px;
  width: 180px;
}
.confirmation-dots .phone {
  font-size:20px;
  height: 24px;
  max-height: 24px;
  width: 250px;
}

.confirmation-dots .userid {
  font-size:20px;
  height: 24px;
  max-height: 24px;
}

.confirmation-dots .pin-circle {
  transition: all 100ms ease-out;
  fill: white;
  stroke-width: 2px;
  stroke: black;
  outline-offset: -2px;
  outline-width: 2px;
}

.confirmation-dots .pin-circle.entered {
  fill: black;
}

.confirmation-dots .pin-circle.success {
  fill: green;
  stroke: green;
}

.confirmation-dots .pin-circle.error {
  fill: red;
  stroke: red;
}

.circle-lock--container {
  font-size:32px;
  height: 72px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.circle-lock {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 1000px;
  position: relative;
  top: -30px;
  box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.circle-lock .lock-icon {
  color: #333;
}

.page-title {
  font-size: 25px;
  line-height: 2rem;
  text-align: center;
  font-weight: 700;
  top: 100;
  position: absolute;
}

.page-error {
  font-size: 17px;
  line-height: 1.2rem;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
  color:red;
  display:none;
  position: absolute;
}

.pin-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.back_button{
line-height: 2rem;
text-align: center;
position:absolute;
top:20;
left:20;
font-size:14px;
background:white;
width:50px;
height:30px;
border-radius: 2px;
}

.resend_button_disabled{
line-height: 2rem;
text-align: center;
position:absolute;
bottom:80;
font-size:14px;
background:white;
width: 150px;
height:30px;
color:gray;
border-radius: 2px;
}


.resend_button{
line-height: 2rem;
text-align: center;
position:absolute;
bottom:80;
font-size:14px;
background:white;
width: 150px;
height:30px;
color: #066832;
border-radius: 2px;
font-weight:800;
}


.account_button{
line-height: 2rem;
text-align: center;
position: absolute;
top: 20;
right: 20;
font-size: 14px;
background: white;
width: 180px;
height: 30px;
border-radius: 2px;
}

.button-settings {
  width: 100%;
  font-size:24px;
  color:black;
  height: 48px;
  background: white;
  border: 1px black solid;
  outline: none;
  margin-bottom: 40px;
  cursor: pointer;
}

.phone-confirmation {
  width: 100%;
  font-size:24px;
  color:black;
  height: 48px;
  border-radius: 1px;
  background: white;
  border: 1px black solid;
  outline: none;
  margin-bottom: 40px;
  cursor: pointer;
}
.phone-confirmation-container{
	margin: 0 auto;

 	width: 80%;

}

#signoption{
  position:absolute;
  top:150;
}

#sign-toggle {
	width: 160px;
	height: 24px;
	margin: auto;
	border-radius: 6px;
	overflow: hidden;
	user-select: none;
	cursor: pointer;
}

.inner-container {
	position: absolute;
	left: 0;
	top: 0;
	width: inherit;
	height: inherit;
	text-transform: uppercase;
	font-size: 0.6em;
	letter-spacing: 0.2em;
}

.inner-container:first-child {
	background:white; /*#e9e9e9;*/
	color: #a9a9a9;
}

.inner-container:nth-child(2) {
	background: #066832;
	color: white;
	clip-path: inset(0 50% 0 0);
	transition: 0.3s cubic-bezier(0, 0, 0, 1);
}

.toggle {
	width: 50%;
	position: absolute;
	height: inherit;
	display: flex;
	box-sizing: border-box;
}

.toggle p {
	margin: auto;
}

.toggle:nth-child(1) {
	right: 0;
}



.contact-form h4 {
  padding-bottom: 30px;
  text-align: center;
}


.contact-form {
  width: 300px;
  margin: 0 auto;
}


.contact-form .form-parent{

display:flex;
flex-direction:row;

}


.contact-form .form-control {
 	padding-bottom: 10px;
  	width: 100%;
  	outline:none;
  	border: none;
  	box-shadow: none;
 	border-radius: 0;
  	border-bottom: 1px solid #cfd8dc;
  	transition: 1s ease;
  	font-weight: bold;
}

.contact-form select {
	height:35px;
}

.contact-form .small {
	width: 100px;
}

.contact-form .medium {
	width: 200px;
}

.contact-form .small-space {
	margin-left: 25px;
}



.controls .form-group{
	padding-bottom:30px;

}


.contact-form .form-control:focus {
  transition: 1s ease;
  border-bottom: 1px solid #002b5d;
}
.contact-main .contact-main-title h2 {
  margin-top: 0;
}

.contact-form .send-msg {
  color: #002b5d;
  border: 1px solid #002b5d;
  height: 40px;
  background-color: transparent;
  transition: all 0.8s ease-out;
   border-radius: 5px;
   width:100%;
  font-size:16px;
}

.contact-form .send-msg:hover {
  color: #fff;
  border: 1px solid #fff;
  height: 40px;
  background-color: #002b5d;
}




@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}





@media screen and (max-width: 350px) {

 .device .device-viewport {
    	contain: strict;
  	width: 300px;
  	height: 622.2222222222px;
  	background: white;
  	border-radius: inherit;
  	transform: scale(1);
  }
  
  .header-right {
    	float: right;
  }
  
  .header {
  	overflow: hidden;
  	background-color: #f1f1f1;
  	padding: 10px 10px;
        margin-top:40px;
  }

  #signoption{
  	position:absolute;
  	top:40;
  }

.back_button {
line-height: 2rem;
text-align: center;
position: absolute;
top: 35;
left: 20;
font-size: 14px;
background: white;
width: 50px;
height: 30px;
border-radius: 2px;
}

.account_button{
line-height: 2rem;
text-align: center;
position: absolute;
top: 35;
right: 20;
font-size: 14px;
background: white;
width: 150px;
height: 30px;
border-radius: 10px;
}


}
