@import url(../fontawesome/css/all.min.css);

* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
}

#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  font-family: Raleway;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}

h1 {
  text-align: center;  
}

h3 {
  color: green;  
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #04AA6D;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}

.check_box{
  width: 13px;
}

.add_button{
  margin-bottom: 20px;
}

.remove_button{
  background-color: red;
  margin-left: 20px;
}

/*  error popup  */

.error__popup{
  position: fixed;
  top: 0;
  left:0;
  right: 0;
  bottom: 0;
  display: none;
}

.error__popup__body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.error__popup .backdrop{
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.error__popup__inner{
  max-width: 500px;
  background: #fff;
  z-index: 1000;
  padding:30px 20px;
  padding-top: 50px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  margin-left: 15px;
}
.error__popup__inner p{
  margin-bottom: 0;
  font-size: 16px;
}

.error__popup__inner .error{
  color: red;
  margin-left: 0px;
}

.error__popup .close-error-msg{
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: #444;
}
.error__popup .close-error-msg:hover{
  color: #000;
}

/*==============================
Loader design start here
===============================*/

.loader {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.loader #loader-4 span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #41bbb5;
  margin: 35px 5px;
  opacity: 0;
}

.loader #loader-4 span:nth-child(1) {
  animation: opacitychange 1s ease-in-out infinite;
}

.loader #loader-4 span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

.loader #loader-4 span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange {
  0%,
  100% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
