.scrollable {
  overflow-y : scroll;
  overflow-x : hidden;
  width : 100%;
  height : 100vh;
  margin : 0;
  padding : 0;
  display : flex;
  flex-direction : column;
  align-items : center;
  justify-content : flex-start;
}

.quoteFormContainer {
  width : 100%;
  height : auto;
  scroll-snap-type : y;
  scroll-behavior: smooth;
  margin : 0;
  padding : 0;
  display : flex;
  flex-direction : column;
  align-items : center;
  justify-content : flex-start;
  scroll-snap-align : center;
  z-index : 50;
}

.quoteForm {
  padding : 30px;
  border-radius : 50px;
  width : 50%;
  height : auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  margin : 50px;
  display : flex;
  flex-direction : column;
  align-items : center;
  justify-content : center;
}

.quoteFieldContainer {
  display : flex;
  flex-direction : column;
  align-items : flex-start;
  justify-content : space-around;
  margin : 10px;
  width : 80%;
}

#productFieldContainer {
  display : flex;
  flex-direction : column;
  align-items : center;
  justify-content : space-around;
  width : 90%;
  padding : 20px;
  border : 3px solid #eee;
  border-radius : 20px;
  margin : 20px;
}

.checkFieldContainer {
  display : flex;
  flex-direction : row;
  align-items : center;
  justify-content : space-around;
  margin : 10px;
  width : 100%;
  flex-wrap : wrap;

}

label {
  font-family : var(--contentFont);
  font-weight : bold;
  position : relative;
  left : 15px;
  margin : 5px;
}

.quoteField , .formSelect {
  background-color : rgb(240,240,240);
  border : none;
  padding : 15px;
  width : 100%;
  height : auto;
  margin : 5px;
  border-radius : 50px;
  position : relative;
  display : flex;
  flex-direction : row;
  align-items : center;
  justify-content : center;
  font-family : var(--contentFont);
}

.formSelectField {
  width : 98%;
  background-color : rgb(240,240,240);
  border : none;
}

.formSelectField:focus {
  outline-color: rgb(240,240,240);
}


.checkboxContainer {
  margin : 15px;
  position : relative;
}

.checkboxContainer > label {
  font-weight : 400;
  display : flex;
  align-items : center;
  justify-content : center;
}

input[type="checkbox"]  {
  height : 50px;
  width : 50px;
  left : 0;
  position : absolute;
  background-color : coral;
  z-index : 99;
  opacity : 0;
  cursor : pointer;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  margin : 10px;
  border-radius : 3px;
  cursor : pointer;
}

.Checkbox:checked ~ .checkmark {
  background-color: var(--colonyRed);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.Checkbox:checked ~ .checkmark:after {
  display: block;
}

.productCheckbox {

}

/* Style the checkmark/indicator */
.checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btnSubmit {
  margin : 10px;
  color : white;
  font-family : var(--bodyFont);
  border-radius : 50px;
  letter-spacing : 5px;
  padding : 15px;
  padding-left : 40px;
  padding-right : 40px;
  font-weight : bold;
  background-color : var(--colonyRed);
  border : 3px solid var(--colonyRed);
  cursor : pointer;
  font-family : var(--contentFont);
  transition-duration : 0.3s;
}

.btnSubmit:hover {
  color : white;
  background-color : var(--black);
  border : 3px solid var(--black);

}

#thankyouQuote {
  transform : scale(0);
  position : fixed;
  top : 30%;
  z-index : 100;
  background-color : white;
  width : 32vw;
  height : 20vw;
  border-radius : 25px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  display : flex;
  flex-direction : column;
  justify-content : center;
  align-items : center;
  left : 30vw;
  text-align : center;
  transition-duration : 0.2s;
  z-index : 100;
}
#thankyouQuote > * {
  max-width : 80%;
}

@media screen and (max-width: 980px) {

  .scrollable {
    scroll-snap-type : none!important;
  }

  .quoteForm {
    padding : 50px;
    width : 80%;
    margin : 50px;
  }

  .quoteFieldContainer {
    display : flex;
    flex-direction : column;
    align-items : flex-start;
    justify-content : space-around;
    margin : 50px;
    width : 80%;
    scroll-snap-type : none;
  }

  .quoteFieldContainer > * {
    margin : 50px;
  }

  label {
    font-family : var(--contentFont);
    font-weight : bold;
    position : relative;
    left : 15px;
    margin : 5px;
  }

  .quoteField , .formSelect {
    padding :25px;
    margin : 10px;
  }

  .checkboxContainer {
    margin : 15px;
    position : relative;
  }

  .checkboxContainer > label {
    font-weight : 400;
    display : flex;
    align-items : center;
    justify-content : center;
    flex-direction : column;
  }

  input[type="checkbox"]  {
    height : 100px;
    width : 100px;
    left : 43%;
    top : -10px;
    opacity : 0;
  }

  .checkmark {
    height: 75px;
    width: 75px;
    margin : 20px;
    border-radius : 10px;
  }

  #subscribeCheckbox:checked ~ .checkmark {
    background-color: var(--colonyRed);
  }

  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  #subscribeCheckbox:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .checkmark:after {
    left: 17px;
    top: 2px;
    width: 30px;
    height: 46px;
    border: solid white;
    border-width: 0 10px 10px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .btnSubmit {
    margin : 50px;
    padding : 20px;
    padding-left : 60px;
    padding-right : 60px;
    border : 7px solid var(--colonyRed);
  }

  .btnSubmit:hover {
    color : white;
    background-color : var(--black);
    border : 3px solid var(--black);

  }

}
