/* BASIC STYLES */
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
  height: 100%;
  box-sizing: border-box;
  font-size: 13px;
}

header {
  width: 100%;
}
button {
  cursor: pointer;
}
*:focus {
    outline: none  !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #989898;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #989898;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #989898;
}
:-moz-placeholder { /* Firefox 18- */
  color: #989898;
}
textarea:focus, input:focus, select:focus {
    outline: none  !important;
    webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.form-control:focus {
  border: 1px solid #ccc !important;
}
.form_main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.height_100 {
  height: 100px !important;
}
.full {
  width: 100% !important;
}
.form_group {
    text-align: left;
    width: 49%;
}
.form_group label {
  margin-bottom: 10px;
  width: 100%;
  float: left;
}

.wrapper_main {
      min-height: calc(100% - 50px);
      float: left;
      width: 100%;
      clear: both;
      box-sizing: border-box;
}

ul {
  list-style: none;
}

/* NAV BAR */
#nav_bar {
  float: right;
  position: absolute;
  right: 0;
}

#nav_bar li {
  display: inline-block;
  padding: 8px;
}

#nav_bar #sign_in {
  background: #c3262e; 
  margin-right: 25px;
  padding: 7px 15px;
  border-radius: 3px; 
  font-weight: bold;
}

.nav-links {
  color: #404040;
}

a {
  text-decoration: none;
  color: inherit;
}

li.nav-links a:hover {
  text-decoration: underline;
}

#sign_in:hover { 
  box-shadow: 1px 1px 5px #999;
}

#sign_in {
  color: #fff;
}

/* GOOGLE AREA */
.google #google_logo {
  text-align: center;
  display: block;
  margin: 0 auto;
  clear: both;
  /*margin-top: 12%;*/
  padding-bottom: 30px;
}

.form {
    /*text-align: center;*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.form form {
  width: 50%;
}

#form-search { 
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
        margin-bottom: 0;
    height: 50px;
}


/*#form-search:hover {
  border-color: #e4e4e4;
  padding-top: 0;
}*/

.buttons {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 50px;
  display: flex;
    justify-content: center;
    align-items: center;
    clear: both;
}
.button_new .icon {
  margin-bottom: 5px;
}
.button_new {
    display: flex;
    float: left;
    flex-direction: column;
    width: 90px;
    height: 80px;
    background: #ad3d31;
    justify-content: center;
    align-items: center;
    margin: 5px;
    color: #fff;
}
.button_new:hover {
  /*background: #202020;*/
  -moz-box-shadow:    inset 0 0 15px #000000;
   -webkit-box-shadow: inset 0 0 15px #000000;
   box-shadow:         inset 0 0 15px #000000;
}
.img_btn{}

.btn-custom-report {
      border: 1px solid #ccc;
    padding: 5px 17px;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 5px;
}
.reporttext {
  background: #c3262e;
  color: #fff;
  padding: 7px 20px;
  text-transform: uppercase;
  border-radius: 30px;
}

/* FOOTER */
footer  {
  background: #f2f2f2;
  border-top: solid 2px #e4e4e4;
/*   position: fixed; */
  bottom: 0;
  padding-bottom: 0;
  clear: both;
  float: left;
  width: 100%;
  
}

footer ul li {
  display: inline;
  color: #666666;
  font-size: 14px;
  padding: 13px;
}

footer ul {
  float: left;
  padding: 1px;
}

footer ul a:hover {
  text-decoration: underline;
}

.footer-right {
  /*float: right;*/
}
.footer_links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.search_form {
  position: relative;

}
.searchbtn:hover {
  background: #202020;
}

.searchbtn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 16.5px 30px;
    border-radius: 0 50px 50px 0;
    border: 1px solid #ccc;
    background: #c3262e;
    color: #fff;
}
.searchbtn_new {
        position: relative;
    padding: 16.5px 25px;
    border: 1px solid #c3262e;
    background: #c3262e;
    color: #fff;
    border-radius: 4px;
    display: flex;
    font-weight: bold;
    align-items: center;
    font-size: 15px;
}
.searchbtn_new i {
      margin-right: 8px;
    font-size: 14px;
}

#google_logo img {
  width: 70%;
}

.results_section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-bottom: 80px;
}
.table_results {
  width: 50%;
  text-align: center;
}
.results_section h3 {
  text-transform: uppercase;
  font-weight: bold;
  clear: both;
}
.table_results td {
  border: 1px solid #f0f0f0;
    padding: 10px;
}
.table_results th {
    border: 1px solid #f0f0f0;
    padding: 10px;
    background: #efefef;
}

/* MEDIA QUERIES */

@media screen and (max-width: 450px) {
  .button_others { width: auto !important; }
  .search_form {
    flex-direction: column;
    width: 95%;
  }
  .show_video {
    width: 100% !important;
  }
  #nav_bar {
    position: relative !important;
  }
  #form-search {
    margin-right: 0 !Important;
    margin-bottom: 10px;
  }
  .left_sum {
    margin-bottom: 15px;
  }
  .img_sum {
    width: 70px !important;
    height: 70px !important;
  }
  .msform fieldset {
    width: 95% !important;
  }
  .profile_summary {
    width: 95% !important;
    flex-direction: column;
        border-bottom: 3px dashed #adadad;
        padding-bottom: 15px;
  }
  .report_section {
    width: 95% !important;
  }
  #google_logo img {
      width: 65% !important;
  }
  .button_new {
    width: 47%;
  }
  #msform fieldset {
    padding: 15px 15px !important;
    width: 100% !important;
  }
  .form_group {
    width: 100%;
  }
  .reporttext {
    width: 100%;
    float: left;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .btn-custom-report {
    width: 47%;
    margin-top: 15px;
  }
  .table_results {
    width: 100%;
  }
  footer ul li {
    width: 100%;
    float: left;
    text-align: center;
    box-sizing: border-box;
}

  .google #google_logo {
    padding-top:220px;
  }
 .wrapper_main {
    padding: 0 15px;
    /*min-height: calc(100% - 201px);*/
    
 }
 .form form {
  width: 100%;
 }
 li.nav-links a {
    display: none;
  }
  
 #google_logo {
   padding: 0;
 }
  
 .buttons {
   display: block;
 }
  
 #form-search {
   width: 80%;

 }
  
 footer {
   bottom: 0;
 }
  
 footer ul {
   float: none;
   padding-bottom: 2px;
    
 }
  
 .footer-left {
   text-align: center;
   margin: auto; 
   padding-top: 10px;
    
 }
  
 .footer-right {
   float: none;
   text-align: center;
   
 }
}

@media screen and (max-width: 565px) {
 
  li.nav-links a {
    display: none;
  }
  
  
 #google_logo {
   padding: 0;
 }
  
 .buttons {
   display: block;
 }
  
 #form-search {
   width: 80%;

 }
  
 footer {
/*    bottom: 0;
   postion: absolute; */
   /*position:absolute;*/
   /*bottom:0;*/
   width:100%;
 }
  
 footer ul {
   float: none;
   padding-bottom: 2px;
    
 }
  
 .footer-left {
   text-align: center;
   margin: auto; 
   padding-top: 10px;
    
 }
  
 .footer-right {
   float: none;
   text-align: center;
   
 }
}

/*************FORM************************/
/*form styles*/
#msform {
  width: 90%;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  
  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
input, textarea, select {
  padding: 14px 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  color: #2C3E50;
  font-family: 'Poppins', sans-serif;
  height: auto;
  font-size: 12px;
      color: #2a2a2a;
}
/*buttons*/
#msform .action-button {
  width: 150px;
  background: #c93c43;
  font-weight: normal;
  text-transform: uppercase;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 25px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  /*box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;*/
  background: #202020;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  padding-left: 0;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: #202020;
  text-transform: uppercase;
  font-size: 9px;
  width: 50%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: #f0f0f0;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #202020;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #c93c43;
  color: white;
}

.uncover {
      text-align: center;
    float: left;
    width: 100%;
    margin-top: 40px;
    color: #fff;

}
.uncover span {
  background: url("../images/arrow.png") no-repeat;
  width: 47px;
  height: 47px;
  display: inline-block;
  margin-left: 5px;
    margin-top: 7px;
}
.show_image,.show_video {
  display: none;
}
.previous {
  background: #8e8e8e !important;
}
.previous:hover {
  background: #656565 !important;
}

.profile_summary {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.left_sum {    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.right_sum {}
.right_sum span {
  color: #c42b32;
}
.img_sum {
  float: left;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  overflow: hidden;
  padding: 10px;
}
.img_sum img {
  width: 100%;
}
.sum_detal {margin-left: 15px;
    display: flex;
    flex-direction: column;}
.sum_detal h2 { margin-bottom: 0; }
.report_section {
    display: flex;
    align-items: center;
    width: 70%;
    flex-direction: column;
    border-bottom: 1px dotted #ececec;
    margin-bottom: 15px;
}
.result_rows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.left_row {
  display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: flex-end;
}
.left_row h3 {
  padding: 0;
  margin:  0;
}
.right_row {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.inner_report_details {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}
.descp_report {
    max-height: 100px;
    overflow: hidden;
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 11px;
    word-break: break-word;
    background: #f9f9f9;
    width: 100%;
}
.btn {
      border: 1px solid #fff;
    padding: 10px 15px;
    float: left;
    min-width: 90px;
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 5px;
}
.btn-black {    background: #505050;
    color: #fff;}
.btn-red {    background: #c42931;
    color: #fff;}
.signup_section {
    display: flex;
    justify-content: space-evenly;
    margin-top: 15px;
}
.msform fieldset {
      width: 45% !important;
    margin: 0 auto;
}
.msform .form_group {
  width: 100% !important;
}
.otp_code {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.otp_code input {
    width: 14%;
    height: 42px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #ccc;
    margin-right: 5px;
    margin-left: 5px;
    text-transform: uppercase;
    font-size: 22px !important;
    font-weight: bold;
}
.otp_code .inputs {
        border: 0 !important;
    border-bottom: 2px solid #ccc !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wd100 {
  width: 100%;
  float: left;
}
.custom_input {
  width: 100%;
      height: 150px;
}
.right {
  float: right;
}
.justify_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.center_resp {
      width: 85%;
    margin: 0 auto;
}
.report_reponds {
  display: flex;
  flex-direction: column;
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
    position: relative;
}
.report_reponds span {
      font-size: 12px;
    color: #909090;
    float: right;
    width: 100%;
    text-align: right;
}
.report_reponds h3 {
      margin: 0;
    font-size: 14px;
}
.report_repondss:after {
    content:'';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 10px #e15915;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
}
.button_others {
   border: 1px solid #e6e6e6;
    /*width: 16.5%;*/
    padding: 10px;
    background: #e4e4e424;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-left: 0.5%;
    margin-right: 0.5%;
    text-align: center;
    min-width: 12%;
    float: left;
}
.button_others:hover {
  border: 1px solid #c3262e;
  background: #c3262e;
  color: #fff;
}