/*
  Theme Name: Hollow
  Theme URI: http://bigtuna.com
  Description: BigTuna WordPress Theme
  Version: 1.0.0
  Author: BigTuna
  Author URI: http://bigtuna.com
  Tags: HTML5, CSS3
*/
@charset "utf-8";

/*============================ */
/* Design Survey
============================== */
.surveyForm {
  --surveyBlue: #2B587F;
  --surveyTeal: #54BDC9;
  --surveyTealDark: #398992;
  --surveyOrange: #FF9900;
  --surveyOrangeDark: #e68e0a;
}
.surveyForm {
  position: relative;
  padding: 4rem 0;
  font-family: 'Roboto';
  background: #f9f9f9;
  min-height: 100vh;
}
/*============================ */
/* Base Styles
============================== */
.surveyForm h1 {
  color: var(--surveyBlue);
}
.surveyForm h3,
.surveyForm h4 {
  font-weight: 700;
  color: var(--surveyTeal);
  margin-bottom: 1rem;
}
.surveyForm h4 {
  text-align: center;
}
.surveyForm p {
  font-size: 1rem;
  font-weight: 400;
  color: #454545;
}
.surveyForm .wpcf7 input,
.surveyForm .wpcf7 textarea,
.surveyForm .wpcf7 select {
  border-radius: 5px;
  font-family: 'Roboto';
  font-weight: 300;
}
.surveyForm .wpcf7 textarea {
  height: 5rem;
  width: 100%!important;
  margin-top: .75rem;
  margin-bottom: 2.5rem;
}
.surveyForm .wpcf7 input:focus,
.surveyForm .wpcf7 textarea:focus {
  font-weight: 400;
}
.surveyForm input[type="file"] {
  cursor: pointer;
  margin-bottom: 2.5rem;
  background: #fff;
}
.surveyForm .wpcf7 #termsOfService {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 5px;
  background: #fff;
  margin-bottom: 1rem;
  height: 24rem;
  overflow-y: scroll;
}
.surveyForm label {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--surveyBlue);
  font-family: 'Roboto';
  padding-left: 0;
}
.surveyForm label input {
  margin-top: .75rem;
  margin-bottom: 2.5rem;
}
/*============================ */
/* Main Headings
============================== */
.surveyForm .title-wrap {
  margin-bottom: 2rem;
}
.surveyForm .inst-wrap {
  text-align: center;
  padding: 2rem;
  margin-bottom: 3rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 7px;
}
.surveyForm .inst-wrap h3 {
  font-weight: 400;
  color: var(--surveyBlue);
  margin-bottom: .5rem;
}
.surveyForm .inst-wrap .imp {
  font-weight: 700;
  color: var(--surveyOrange);
}
/*============================ */
/* Survey Progress Bar
============================== */
.surveyForm .status-bar {
  display: flex;
  align-items: center;
}
.surveyForm .status-bar hr {
  width: 100%;
  border: none;
  height: 4px;
  background: lightgrey;
}
.surveyForm .status-bar i {
  font-size: 1.5rem;
  color: var(--surveyBlue);
}
/*============================ */
/* Survey Flex Groups
============================== */
.surveyForm .group-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem;
  border: 2px solid #ddd;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #fff;
}
.surveyForm .group {
  position: relative;
}
.surveyForm .group-wrap .group {
  width: 49%;
}
.surveyForm .group-wrap .status-group {
  width: 30%;
  margin-bottom: 2rem;
  padding-right: 2rem;
  border-right: 2px solid #ccc;
}
.surveyForm .group-wrap .status-group p {
  text-align: center;
}
.surveyForm .group-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
}
.surveyForm .group-wrap .field-group {
  width: 70%;
  padding-left: 2rem;
  margin-bottom: 2rem;
}
.surveyForm .group-wrap p.label {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--surveyBlue);
  margin-bottom: .5rem;
}
.surveyForm .radio-block,
.surveyForm .check-block {
  margin-bottom: 2.5rem;
}
body.page-id-563 .surveyForm .radio-block,
body.page-id-563 .surveyForm .check-block {
	margin-bottom:0;	
}
.surveyForm .radio-block input[type="checkbox"] {
  -webkit-appearance: radio;
}
.surveyForm .wpcf7-list-item-label {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.3rem;
}
.surveyForm .radio-block .wpcf7-list-item {
  width: 100%;
}
.surveyForm .wpcf7-list-item label {
  padding: 0.05rem 0 .2rem;
  color: #444;
  border-radius: 4px;
  width: 100%;
  transition: all .1s ease;
}
.surveyForm .wpcf7-list-item label:hover {
  background: rgba(0,0,0,.1);
  color: #000;
}
.surveyForm .wpcf7-list-item input {
  margin-top: .4rem;
  margin-bottom: 0;
}
.surveyForm .title-group {
  text-align: center;
}
/*============================ */
/* Buttons Group
============================== */
.surveyForm .group-wrap .buttons-group,
.surveyForm .buttons-group {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin: 0 auto;
  width: 100%;
}
.surveyForm .buttons-group input {
  font-family: 'Roboto';
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  background: var(--surveyBlue);
  border: none;
  margin: 0 1rem;
  padding: 0.7rem 2.5rem;
  transition: all .3s ease;
}
.surveyForm .buttons-group input:hover {
  background: var(--surveyOrangeDark);
}
.surveyForm .buttons-group a.nextSlide,
.surveyForm .buttons-group a.prevSlide {
  display: flex;
  font-family: 'Roboto';
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 1rem;
  padding: 0.7rem 2.5rem;
  color: #fff;
  background: var(--surveyBlue);
  /* text-transform: uppercase; */
  border: none;
  border-radius: 5px;
  transition: all .3s ease;
}
.surveyForm .buttons-group a.nextSlide:hover,
.surveyForm .buttons-group a.prevSlide:hover {
  background: var(--surveyOrange);
}
/*============================ */
/* Range Sliders
============================== */
.surveyForm .range-group {
  padding: 2rem;
  /* width: 50%; */
  border: 2px solid #ddd;
  border-top: none;
  margin-bottom: 6rem;
  border-radius: 0 0 8px 8px;
  background: #fff;
}
.surveyForm .range-group h4 {
  width: 100%;
  margin-bottom: 2rem;
  color: var(--surveyBlue);
}
.surveyForm .range-group p {
  text-align: center;
  padding: 0 3rem;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}
.surveyForm .range-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: auto;
}
.surveyForm .range-wrap span {
  font-size: 1.1rem;
  color: #333;
  padding: .5rem;
}
/*============================ */
/* Range Sliders - Labels
============================== */
.surveyForm .range-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.surveyForm .range-labels span {
  width: 100%;
  text-align: center;
}
.surveyForm .range-labels span:first-of-type {
  text-align: left;
}
.surveyForm .range-labels span:last-of-type {
  text-align: right;
}
.surveyForm .range-wrap .wpcf7-form-control-wrap {
  width: 100%;
}
/*============================ */
/* Range Sliders - Inputs
============================== */
.surveyForm .range-group .ranger {
  -webkit-appearance: none;
  width: 100%;
  height: .5rem;
  padding: 0.2rem 0.3rem;
  margin: 1rem 0 0;
  background: var(--surveyBlue);
  outline: none;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity .3s;
}
.surveyForm .range-group .ranger:hover {
  opacity: 1;
}
.surveyForm .range-group .ranger::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 36px;
  height: 28px;
  border-radius: 5px;
  background: var(--surveyOrange);
  cursor: pointer;
}
/*============================ */
/* Slick Sliders
============================== */
.surveyForm .design-slider,
.surveyForm .range-slider {
  margin: auto;
  width: 100%;
  padding: 0 1rem;
  visibility: hidden;
}
.surveyForm .design-slider.slick-initialized,
.surveyForm .range-slider.slick-initialized {
  visibility: visible;
}
.surveyForm .range-slider .slick-track {
  display: flex;
  align-items: center;
}
.surveyForm .design-slider .slick-list, 
.surveyForm .range-slider .slick-list {
  height: unset!important;
}
/*============================ */
/* Slick Sliders - Images
============================== */
.surveyForm .design-slider .img-wrap img,
.surveyForm .range-slider .img-wrap img {
  margin: 0;
}
.surveyForm .overlay-group .img-wrap {
  position: relative;
}
.surveyForm .overlay-group .img-wrap img {
  width: 100%;
  height: 100%;
}
.surveyForm .overlay-group .img-wrap img.arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*============================ */
/* Slick Sliders - Videos
============================== */
.surveyForm .group-wrap .video-group {
  width: 100%;
  text-align: center;
}
.surveyForm .vid-wrap video {
  width: 100%;
  height: 100%;
  max-height: 477px;
  object-fit: contain;
}
/*============================ */
/* Password Visibility Toggle
============================== */
.surveyForm .form-wrap .regpassLabel {
  position: relative;
}
.surveyForm .form-wrap .regpassLabel #regpassToggle {
  position: absolute;
  right: 0.7rem;
  bottom: 0;
  font-size: 1.2rem;
  color: var(--surveyBlue);
  padding: .5rem;
  z-index: 200;
}
/*============================ */
/* Form Loading Events
============================== */
.surveyForm .form-wrap form {
  transition: opacity .4s ease;
}
.surveyForm .form-wrap.active form {
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
.surveyForm .form-wrap .loading {
  border-width: 0.7rem;
  border-color: var(--surveyBlue);
  border-top-color: var(--surveyOrange);
  width: 3rem;
  height: 3rem;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
}
.surveyForm .form-wrap.active .loading {
  opacity: 1;
  z-index: 1000;
  animation: spinLoading 1.5s infinite linear;
}
@keyframes spinLoading {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.surveyForm .form-wrap div.wpcf7-mail-sent-ok {
  text-align: center;
  line-height: 1.6;
  font-size: 1.4rem;
  padding: 2rem 5rem;
  margin: 5rem auto;
  border: 2px solid var(--surveyBlue);
  background: #fff;
  border-radius: 5px;
  font-family: 'Roboto';
  font-weight: 300;
}
/*============================ */
/* Survey Media Queries
============================== */
@media only screen and (max-width: 1199px) {
  .surveyForm .buttons-group a.nextSlide,
  .surveyForm .buttons-group a.prevSlide,
  .surveyForm .buttons-group input {
    font-size: 1.1rem;
    padding: .7rem 2rem;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 991px) {
  .surveyForm .form-wrap div.wpcf7-mail-sent-ok {
    padding: 2rem 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .surveyForm p {
    font-size: 1.2rem;
  }
  .surveyForm .title-wrap {
    text-align: center; 
  }
  .surveyForm .group-wrap .group {
    width: 100%;
  }
  .surveyForm .group-wrap .field-group {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .surveyForm label {
    font-size: 1.2rem;
  }
  .surveyForm .group-wrap p.label {
    font-size: 1.2rem;
  }
  .surveyForm .group-wrap .status-group {
    width: 65%;
    padding: 0; 
    margin: 0 auto 2rem;
    border-right: none;
  }
  .surveyForm .buttons-group {
    flex-wrap: wrap-reverse;
  }
  .surveyForm .buttons-group a.nextSlide,
  .surveyForm .buttons-group a.prevSlide,
  .surveyForm .buttons-group input {
    margin: .5rem 1rem;
  }
  .surveyForm .design-slider .img-wrap img, 
  .surveyForm .range-slider .img-wrap img {
    margin-bottom: 2rem;
  }
  .surveyForm .range-wrap {
    width: 100%;
  }
  .surveyForm .range-group p {
    padding: 0;
  }
  .surveyForm .form-wrap div.wpcf7-mail-sent-ok {
    font-size: 1.5rem;
    padding: 2rem 1rem;
  }
}