.collapsible {
  background-color: white;
  color: #3d3d3d;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 22px;
  padding: 20px 32px ;
}

.collapsible.active {
  background-color: #ffffff;
}

.collapsible:after {
  content: "\002B";
  color: #000000;
  font-size: 30px;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
.collapsible.active:after {
  content: "\2212";
}
.collapsible-block .content {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #ffffff;
}
.collapsible-block {
  border-bottom: 1px solid #3d3d3d;
}
/* modal css */
.modal-center {
  position: absolute; /* Stay in place */
  z-index: 1; /* Sit on top */
  /*padding: 115px; !* Location of the box *!*/
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto; /* Enable scroll if needed */
  align-items: center;
  justify-content: center;

  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 115px; /* Location of the box */
  left: 0;
  top: 0;
  overflow: auto; /* Enable scroll if needed */

  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.d-flex{
  display: flex !important;
}
/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 35px;

}
.modal-content input{
  border: 1px solid #3d3d3d;
  border-radius: 8px;
  width: 100%;
}

/* The Close Button */
.close {
  color: #3D3D3D !important;
  font-size: 24px !important;
  font-weight: bold;
  opacity: 1 !important;
}

.close:hover,
.close:focus {
  color: #3D3D3D;
  text-decoration: none;
  cursor: pointer;
}
/* end modal */
/* progress bar */
progress {
  width: 100%;
  border-radius: 8px;
  height: 8px;
  background: crimson;
}
progress {
  color: lightblue;
  border-radius: 8px;
}
progress::-moz-progress-bar {
  background: lightblue;
  border-radius: 8px;
}
progress::-webkit-progress-value {
  background: #008080;
  border-radius: 8px;
}
progress::-webkit-progress-bar {
  background: #BDBDBD;
  border-radius: 8px;
}
/* end progress bar  */
input:focus {
  border: 2px solid #008080 !important;
}
.max-container{
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .collapsible {
    font-size: 16px;
  }
}
@media (max-width: 768px){
  .mobile-full-modal{
      padding-top:0px;
  }
}
@media (max-width: 768px){
  .modal-content.enroll-modal {
      border-radius: 0px !important;
      width: 100% !important;
      height: 100% !important;
  }
}
