/* Spacewood Furnishers
 * Referral Form
 * Form CSS File..
 */
/*-- Imported Style --*/
@import url(bootstrap.min.css);
@import url(../fonts/icofont.min.css);
@import url(animate.css);
/*-- Custom Fonts --*/
@font-face {
  font-family: Akzidenz-Grotesk BQ Light;
  src: url(../fonts/custom-fonts/akzidenz-grotesk-bq-light-.otf);
}
@font-face {
  font-family: Akzidenz-Grotesk BQ;
  src: url(../fonts/custom-fonts/Akzidenz-Grotesk-BQ-Medium.ttf);
}
@font-face {
  font-family: Helvetica;
  src: url(../fonts/custom-fonts/Helvetica___.ttf);
}
h2, h3{
  font-family: Akzidenz-Grotesk BQ;
}
button{
  font-family: Helvetica;
}
ul li a{
  font-family:Akzidenz-Grotesk BQ Light;
}
/*-- Global Styles --*/
html,
body{
  font-family: 'Helvetica';
  background-color: rgba(0,0,0,0.03);
}
*:focus {
  outline: 0 !important;
}
hr{
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 2px solid #bcbec0;
}
ul li{
  list-style: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
a{
  color: #000;
  text-decoration: none;
  font-family: Helvetica;
}
a:hover, a:focus{
  color: #ffb300;
}
h1,
h2,
h3,
h4{
  margin: 0;
  color: #000;
  text-transform: uppercase;
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  font-weight: 500;
}
li{
  list-style: none;
}
p{
  color: #000;
  font-size: 16px;
  font-family: Helvetica;
  font-weight: 400;
}
.verticalAlign{
  display: flex;
  align-items: center;
}
.sectionPadTop{
  padding-top: 40px;
}
.paddingZero{
  padding:0;
}
.paddingBotZero{
  padding-bottom: 0;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000 !important;
}
input:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #000 !important;  
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #000 !important;  
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {  
  color: #000 !important;  
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #000;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px rgba(4,118,181,0.2) inset;
  transition: background-color 5000s ease-in-out 0s;
}
textarea{
  color: #000;
}
/*
 * preloader 
 */
#preloader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  z-index: 500;
}
#loaderInnerDiv{
  width: 50px;
  height: 30px;
  position: fixed;
  left: 50%;
  bottom: 50%;
}
.spinner{
  margin: 0px auto;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
  left: 50%;
  bottom: 50%;
}
.spinner > div{  
  background: #000;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: stretchDelay 1.2s infinite ease-in-out;
  animation: stretchDelay 1.2s infinite ease-in-out;
}
.spinner .lineTwo{
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .lineThree{
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
.spinner .lineFour{
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .lineFive{
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
/*-- preloader animation --*/
@-webkit-keyframes stretchDelay{
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }
  20% {
    -webkit-transform: scaleY(1.0)
  }
}
@keyframes stretchDelay{
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}/*-- end preloader --*/
/*
 * Header Area 
 */
.headerAreaMain { 
  display: none;
}
.headerAreaMain.navBarFixed{
  display: block;
  position: fixed;
  width: 100%;
  z-index: 999;
  background: #ffff;
  top: 0;
  animation-name: menuSticky;
  animation-duration: 0.60s;
  animation-timing-function: ease-out;
    -webkit-box-shadow:0px 10px 10px -10px rgba(0,0,0,0.5);
      -moz-box-shadow:0px 10px 10px -10px rgba(0,0,0,0.5);
  box-shadow:0px 10px 10px -10px rgba(0,0,0,0.5);
}
.headerAreaMain.navBarFixed img{
  padding: 5px 0;
  width: 180px;
}
@keyframes menuSticky {
  0%   {
    margin-top:-150px;
  }
  50%  {
    margin-top: -90px;
  }
  100% {
    margin-top: 0;
  }
}
/*
 * Banner Title Area 
 */
#bannerArea {
  transform: translate3d(0px, 0px, 0px);
  min-height: 150px;
  position: relative;
  height: auto;
  background: url(../images/bg-img.png);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.bannerTitle img{
  width: 400px;
}
#bannerArea .bannerOverlay {
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: -1;
}
#bannerArea .container {
  padding-top: 60px;
  padding-bottom: 160px;
}
#bannerArea .bannerTitle h1 {
  color: #fff;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
}

/*
 * Referal Section Style
 */
#referalSection{
  background-color: #fff;
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -100px 60px 0;
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.referSectionDiv{
  padding: 15px;
  position: relative;
  border-left: 2px solid #fff000;
  border-right: 2px solid #ffb300;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 2px;
  -moz-background-size: 100% 2px;
  background-size: 100% 2px;
  margin: 30px;
  background-image: -webkit-linear-gradient(left, #fff000 0%, #ffb300 100%),-webkit-linear-gradient(left, #fff000 0%, #ffb300 100%);
  background-image: -moz-linear-gradient(left, #fff000 0%, #ffb300 100%), -moz-linear-gradient(left, #fff000 0%, #ffb300 100%);
  background-image: -o-linear-gradient(left, #fff000 0%, #ffb300 100%), -o-linear-gradient(left, #fff000 0%, #ffb300 100%);
  background-image: linear-gradient(to right, #fff000 0%, #ffb300 100%), linear-gradient(to right, #fff000 0%, #ffb300 100%);
}
.referSectionDiv:before{
  content: '';
  background-image: url(../images/side-img-right.png);
  position: absolute;
  width: 250px;
  height: 200px;
  right: -32px;
  top: -32px;
  background-repeat: no-repeat;
  background-size: cover;
}
.referSectionDiv:after{
  content: '';
  background-image: url(../images/side-img-left.png);
  position: absolute;
  width: 180px;
  height: 130px;
  left: -33px;
  bottom: -30px;
  background-repeat: no-repeat;
  background-size: cover;
}
.referHederDiv{
  text-align: center;
}
.referHederDiv h2{
  text-transform: unset;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 5px;
  padding-bottom: 15px;
}
.referFormArea{
  padding: 15px;
  border-left: 2px solid #fff000;
  border-right: 2px solid #ffb300;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 2px;
  -moz-background-size: 100% 2px;
  background-size: 100% 2px;
  margin: 30px 0;
  background-image: -webkit-linear-gradient(left, #fff000 0%, #ffb300 100%),-webkit-linear-gradient(left, #fff000 0%, #ffb300 100%);
  background-image: -moz-linear-gradient(left, #fff000 0%, #ffb300 100%), -moz-linear-gradient(left, #fff000 0%, #ffb300 100%);
  background-image: -o-linear-gradient(left, #fff000 0%, #ffb300 100%), -o-linear-gradient(left, #fff000 0%, #ffb300 100%);
  background-image: linear-gradient(to right, #fff000 0%, #ffb300 100%), linear-gradient(to right, #fff000 0%, #ffb300 100%);
}
#boxHeader{
  margin-top: -30px;
  text-align: center;
}
#boxHeader h3{
  display: inline-block;
  background: #fff;
  padding: 5px 20px;
}
.referFormArea form{
  margin-top: 30px;
}
.flexRow.row {
  display: flex;
  flex-wrap: wrap;
}
.flexRow.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.flexRow.row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}
.referFormArea h4{
  margin-bottom: 30px;
}
.referFormArea .form-group {
  margin-bottom: 25px;
}
.referFormArea .input-group {
  border-radius: 0px !important;
  width: 100%;
}
.referFormArea .input-group-addon {
  border-radius: 0;
  outline: none;
  border: none;
  font-size: 16px;
  line-height: 30px;
  color: #ffb300;
  background-color: rgba(0,0,0,0.09);
  position: absolute;
  top: -5px;
  background: #000;
  left: 5px;
  z-index: 99;
  text-align: center;
  width: 40px;
  height: 40px;
}
.referFormArea .input-group-addon:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 5px solid #000;
  border-left: 5px solid transparent;
  left: -5px;
  top: 0px;
}
.referFormArea .input-group input {
  padding: 5px 15px 5px 55px;
  background: #fff;
  width: 100%;
  height: 40px;
  border-color: rgba(0,0,0,0.09);
  outline: none;
  border: none;
  border-radius: 0;
  box-shadow: unset;
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
  -moz-box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
    -ms-box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
      -o-box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
}
.referFormArea button{
  width: 200px;
  text-align: center;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 22px;
  padding: 5px 5px;
  display: block;
  height: auto;
  letter-spacing: 5px;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btnSubmit {
  background-color: transparent;
  border: none;
  color: #fff;
  position: relative;
  z-index: 1;
}
.btnSubmit:before {
  position: absolute;
  left: 0%;
  top: 0%;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.3s 0.2s cubic-bezier(0.95, 0.18, 0.17, 0.59) all;
  transition: 0.3s 0.2s cubic-bezier(0.95, 0.18, 0.17, 0.59) all;
  content: '';
  background: #ffb300;
  border-radius: 3px;
  z-index: -1;
}
.btnSubmit:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  content: '';
  z-index: -1;
  -webkit-transition: all 0.24s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.24s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  border-radius: 3px;
}
.btnSubmit:hover,
.btnSubmit:focus,
.btnSubmit:active {
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #000 !important;
}
.btnSubmit:hover:before,
.btnSubmit:focus:before,
.btnSubmit:active:before {
  left: 0%;
  width: 100%;
}
.btnSubmit:hover:after,
.btnSubmit:focus:after,
.btnSubmit:active:after {
  width: 5px;
  height: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  left: 20px;
}
/*--- Date Picker ---*/
.formInput.dateSelector {
    transition: background-color .2s;
}
.datePicker {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  color: #000;
}
.datePicker .datePickerViewBox {
  position: relative;
  float: left;
  margin-top: 15px;
  background: #fff url(../images/bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
    -moz-box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
      -ms-box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
        -o-box-shadow: -3px 3px 3px -3px rgba(0,0,0,0.5);
}
.datePicker .nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 15px;
}
.datePicker .nav .btn {
  position: absolute;
  display: block;
  z-index: 1;
  cursor: pointer;
  cursor: hand;
  width: 25px;
  height: 25px;
  line-height: 15px;
  top: -5px;
  left: auto;
  transition: opacity .5s;
  border-radius: 0;
  background: #ffb300;
  padding: 5px;
}
.datePicker .nav .btn:hover {
  color: #808080;
  background: #e0e0e0;
  border-color: #606060;
}
.datePicker .nav .prev {
  left: 0;
}
.datePicker .nav .prevYear {
  border: 1px solid #000;
  background: none;
}
.datePicker .nav .prevMonth{
  left: 32px;
}
.datePicker .nav .nextYear {
  border: 1px solid #000;
  background: none;
}
.datePicker .nav .NextMonth{
  right: 32px !important;
}
.datePicker .nav:hover .nextYear {
  opacity: 1;
}
.datePicker .nav .next {
  right: 0;
}
.datePicker .head {
}
.datePicker .head .title {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
}
.datePicker .head span {
  cursor: pointer;
}
.datePicker .head span.y {
  font-weight: 900;
}
.datePicker .dateRow {
  clear: both;
}
.datePicker .dateRow.th {
  font-weight: 700;
  text-transform: uppercase;
  height: 40px;
}
.datePicker .dateRow.th .C {
  border-bottom: 1px solid #ffb300;
  border-radius: 0;
}
.datePicker .C {
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  float: left;
  transition: background-color .05s, color .05s;
}
.datePicker .C.mn {
  cursor: pointer;
  cursor: hand;
  font-size: 14px;
}
.datePicker .C.mn:hover {
  background: #000;
  color: #ffb300;
}
.datePicker .C.g {
  color: #a0a0a0;
  font-weight: 300;
}
.datePicker .C.slctd {
  background: #000;
  color: #fff;
  font-weight: 300;
}
.datePicker .C.today {
  font-size: 18px;
  font-weight: 600;
}
.datePicker .selected {
  margin: 0 0 0 64px;
  float: right;
  text-align: center;
  width: 280px;
}
.datePicker .selected .desc {
  border-bottom: 1px solid #ffb300;
}
.datePicker .selected .val {
  padding: 0 8px;
  background: #f0f0f0;
  color: #808080;
}
.datePicker .dayArea {
  position: relative;
  width: 280px;
  height: 240px;
  overflow: hidden;
}
.datePicker .dayArea .mArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.referralBottomDiv{
  padding: 60px 300px 0 0;
  margin-bottom: 80px;
}
.chairImg img{
  position: absolute;
  width: 300px;
  bottom: -30px;
  background: #fff;
  right: -30px;
  padding: 15px;
}
.referralBottomDiv ul li:nth-child(1){
  padding-bottom: 8px;
}
.referralBottomDiv ul li span{
  font-weight: 600;
}
.requiredDiv p{
  position: relative;
  margin: 0;
  padding-left: 10px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
}
.requiredDiv p i{
  font-weight: 600;
  font-size: 10px;
  position: absolute;
  top: 2px;
  color: #ff0000;
  left: 0;
}
footer{
  background: #ffb300;
  margin-top: 40px;
  text-align: center;
}
footer .footerBottom p{
  margin-bottom: 0;
  padding: 5px 0;
}
/*
 * Scroll To Top
 */
.scrollToTop{
  position:fixed;
  bottom:0;
  right:15px;
  width:40px;
  height:40px;
  color:#ffffff;
  font-size:14px;
  text-transform:uppercase;
  line-height:40px;
  text-align:center;
  z-index:12;
  cursor:pointer;
  background:#000;
  display:none;
  -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
      -o-transition:all 300ms ease;
        -moz-transition:all 300ms ease;
          transition:all 300ms ease;    
}
.scrollToTop:hover{
  color:#000;
  background:#ffb300;
}
.scrollToTop i{
  font-size: 30px;
  line-height: 40px;
}