.videoModuleWrapper{
  position: relative;
/*   padding: 0px 120px; */
  color: #231f20;
  font-family: 'Catamaran' !important;
  max-width: 1205px;
  margin: auto;
  width: 85%;
}

.mobileHeader{
  display: none;
}

.videoWrapper{
  display:table;
  width:auto;
  position:relative;
  width:100%;
}

.playButton{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  z-index: 999;
  color: white;
}

button{
  font-family: 'Catamaran' !important;
  font-weight: 700;
  border-radius: 4px;
}

button: hover{
  transform: translateY(-0.25em);
}
.video{
  width: 100%;
}

.optionsOverlay{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(1,1,1,0.8);
  width: 100%;
  height: 100%;
/*   z-index: 2147483647; */
}

.optionsOverlayInner{
  display: none; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
/*   z-index: 2147483647; */
  width: 80%;
}

.optionsOverlayInner h1{
  text-align: center;
  color: white;
  font-size: 42px;
}

.options{
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 33%;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 10px;
}

.column{
  width: 30%;
  padding: 20px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 11px 64px rgba(0, 0, 0, 0.13);
}

.column button{
  background-color: black;
  color: white;
  padding: 9px 26px;
  font-size: 12px;
  font-weight: 800 !important;
  line-height: 17px;
  border: 0;
  border-radius: 46px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
}

.textWrapper{
  height: 280px;
}

.textWrapper h3{
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 19px;
  color: #231F20;
}

.textWrapper p {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 19px;
  color: #231F20;
}

.bottomButtons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.replayButton{
  background-color: transparent;
  color: white;
  border: 2px solid #e7e7e7;
  padding: 10px;
  width: 200px;
  margin: 10px;
  font-family: 'Catamaran';
  font-style: normal;
  font-weight: 800 !important;
  font-size: 16px;
  line-height: 23px;
}

.redSimCTA{
  border-radius: 4px !important;
  width: 200px !important;
  margin: 10px !important;
  padding: 10px !important;
  border: 2px solid #E32726 !important; 
  font-family: 'Catamaran' !important;
  font-style: normal !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  line-height: 23px !important;
  background-color: #E32726 !important;
  color: white !important;
}

.redSimCTA a{
  color: white !important;
}

.redSimCTA a:hover{
  color: white !important;
}

/* .fullSimCTA:hover{
  color: black !important;
} */

.answersOverlay{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  height: 100%;
  background-color: rgba(1,1,1,0.8);
}

.show{
  display: block !important;
}

.answersOverlayInner{
  z-index: 992;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  margin: auto;
  background: white;
  padding: 40px;
  height: auto;
  width: 50%;

}

.answerVid{
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}

.answersOverlayText{
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 800 !important;
  line-height: 36px;
  padding: 10px 75px;
  
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.answerOverslayInner .center button{
  background-color: black;
  color: white;
  width: 250px;
  border-radius: 2px;
  border: none;
  padding: 20px;
  font-size: 22px;
}

.closeButton{
  position: absolute;
  top: -28px; 
  right: -20px; 
  color: white; 
  text-decoration: none;
  z-index: 994;
  font-size: 22px;
}

.closeButton:hover{
  color: white;
  text-decoration: none;
}

#optionA{
  display: none;
}
#optionB{
  display: none;
}
#optionC{
  display: none;
}

.mobile{
  display: none;
}

@media (max-width: 1024px) {
  
  body{
    margin: 0px;
  }
  
  .videoModuleWrapper{
    max-width: 100%;  
    padding: 0px;

  } 
  
  .mobileHeader{
    display:flex;
    justify-content: center;
    padding: 20px;
  }
  
  .video{
    width: 100%;
  }
  
  .playButton{
    display: none;
  }
  
  .optionsOverlay{
    display: block;
    position: relative;
    background-color: white;
    width: 100%;
  }
  
  .optionsOverlayInner{
    position: relative;
    display: block;
    top: 0;
    left: 0;
    transform: translate(0,0); 
    width: auto;
  }
  
  .optionsOverlayInner h1{
    text-align: center;
    color: black;
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
  }
  
  .column{
    width: 100%;
    margin: 10px 0px;
    box-shadow: 0px 11px 64px rgba(0, 0, 0, 0.13);
  }
  
  .textWrapper{
    height: 200px;
  }
  .replayButton{
    display: none;
    color: black;
    border: 2px solid black;
    width: 250px;
  }

  .options{
    width: 100%;
  }
  
  .bottomButtons{
    margin-top: 50px;
    margin-bottom: 100px;
  }
  
  .redSimCTA{
    padding: 10px 0px !important;
    line-height: 23px !important;
    width: 250px !important;
  }

  .answersOverlay{
    position: fixed;
  }
  
  .answersOverlayInner{
    padding: 10px;
    width: 80%; 
  }
  
  .answersOverlayText{
    font-size: 24px;
    padding: 25px 50px;
    line-height: 31px;
  }
  
  .closeButton{
    top: -30px;
    right: 0px;
    font-size: 18px;
  }
  
  .mobile{
    display: block;
  }
  
}

@media (max-width: 600px) {
  .textWrapper{
    height: 280px;
  }

}
  
@media (min-width: 2200px) {
  .column{
    padding: 32px;
  }
  .textWrapper h3{
    font-size: 1.6rem;
  }
  
  .textWrapper p{
    font-size: 1.4rem;
    line-height: 1.2rem;
  }
}

