* {
  box-sizing: border-box;
}
html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 15px;
  margin: 0;
  padding: 0;
  
}
.h {
  margin-top: 0;
}
.button {
  display: inline-block;
  margin: 0;
  padding: 10px 25px;
  background-color: #ec2260;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.button:hover {
  box-shadow: inset 0 -2.5px rgba(0, 0, 0, 0.4);
}
.hero {
  position: fixed;
  z-index: 1000;
  
  top: 97%;
  right: 0px;
  
  border: 1px solid rgba(0, 0, 0, 0.4);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
		  
}

#speak-to-expert-div {
    background-color: #E8E8E8;
    border: 1px solid #fff;
    /* border-radius: 5px; */
	position: fixed;
	top: 79%;
    /* left: 1%; */
    padding: 20px;
   
    width: 250px;
    z-index: 1;
}
#speak-to-expert-div .banner-cta-submit {
    background: #c61443;
    color: #fff;
    /* font-weight: bold; */
    padding: 6px 0;
}

#speak-to-expert-div input {
    border: 1px solid #ccc;
    color: #000;
    display: block;
    margin: 6px 0;
    padding: 6px 0 6px 10px;
    width: 100%;
}


#instant-callback-div input {
    border: 1px solid #ccc;
    display: block;
    margin: 6px 0;
    padding: 6px 10px;
    width: 92%;
}






.state {
  position: absolute;
  top: 0;
  left: -100vw;
}
.state:checked ~ .content {
  -webkit-transform: none;
          transform: none;
}
.state:checked ~ .backdrop {
  bottom: 0;
  opacity: 1;
  z-index: 1;
}
.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  padding: 0 20px;
}
.lightbox .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
  max-width: 500px;
  max-height: 95vh;
  margin: 170px auto;
  padding: 20px;
  background: #fff;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.lightbox .header,
.lightbox .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lightbox .header .h,
.lightbox .footer .h {
  margin: 0;
}
.lightbox .header .button:not(:first-child),
.lightbox .footer .button:not(:first-child) {
  margin-left: auto;
}
.lightbox .header {
  padding-bottom: 10px;
}
.lightbox .footer {
  padding-top: 20px;
}
.lightbox .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  
}
.lightbox .backdrop {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  opacity: 0;
  
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
