@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
}

.header-bg{background-color: #1c2c59; width: 100%; margin: 0px; padding: 30px 0;}	
.v-mid {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}	
#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  font-family: "Roboto", sans-serif;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}
	
h1 {
  text-align: center;  
}
p{line-height: 22px;}
input,select,textarea,radio {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  border: 1px solid #aaaaaa;
  color:#777777;	
}

.rating{width: 50px; margin: 0 auto; display: inline-block;
  text-align: center;}
.rating .cls-radio{width:auto; margin:0 auto 10px; display: block ; text-align: center;}	

.cls-radio{width:auto; margin: 8px; display: inline;}	
/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}
input p {color:#777777;}	

select.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

#tab-3{display: none;}

button {
  background-color: #eb2725;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  order-radius: 5px;	
}

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;
  background-color: #04AA6D;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}
	
footer {
	padding: 40px 0 0;
    background-color: #303030;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}	
	
.footer .widget-title {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin: 0 0 30px;
    padding-left: 15px;
    text-transform: uppercase;
    color: #fff;
    border-left: 3px solid #ff5e5e;
}	
.copyright {
    background: #171717;
    color: #999;
    padding: 25px 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 13px;
}	
	
footer a {
    color: inherit;
    transition: 0.2s ease;
	text-decoration: none;
}	
footer p{font-size:15px; line-height: 22px;}
.footer-social {
    margin-top: 15px;
}
.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -13px;
}
.footer-social ul li {
    display: inline-block;
}	
.footer-social ul li a i {
    display: block;
    font-size: 16px;
    color: #999;
    transition: 400ms;
    padding: 10px 13px;
}	

.required-mark {
  color: #eb2725;
}

.blinking-text {
  /*animation: smoothBlink 1.5s linear infinite;*/
  color: red; /* Optional */
  display:block;
  font-size:14px;
  display:none;
}

/*keyframes smoothBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}*/

@media (max-width:980px){
	#regForm{width:90%;	padding: 30px; margin: 50px auto}
}		

@media (max-width:767px){
	.rating{width: 50px; margin: 0; display:block;
  text-align: center;}
	
}
	