.cr-modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.cr-modal.is-visible {
    visibility: visible;
}

.cr-modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.cr-modal.is-visible .cr-modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.cr-modal-wrapper {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  top: 10vh;
  width: 90%;
  max-width: 1100px;
  height: 75%;
  left: 50%;
  transform: translate(-50%, 0%);
  overflow-y: auto;
  padding: 20px 50px 35px;
}

.cr-modal-transition {
  transition: all 0.3s 0.12s;
  /*transform: translateY(-10%);*/
  opacity: 0;
}

.cr-modal.is-visible .cr-modal-transition {
  /*transform: translateY(0);*/
  opacity: 1;
}

.cr-modal-header {
  position: relative;
  margin-bottom: 15px;
}

.cr-modal-close {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 500;
  display: block;
  color: #7d7d7d;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  left: calc(100% - 35px);
  transition: .2s ease all;
}

.cr-modal-close:hover {
  color: var(--cr-yellow);
}

.cr-modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cr-modal-content > *:first-child {
  margin-top: 0;
}

.cr-modal-content > *:last-child {
  margin-bottom: 0;
}

/* === Font Styling === */

.cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content h2, .cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  color: #595955;
  display: block;
}

.cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content h2 {font-size: 48px; line-height: 54px; padding-bottom: 35px;}
.cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content h3 {font-size: 36px; line-height: 42px; padding-bottom: 20px;}
  
.cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  padding-bottom: 25px;
}

.cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content ul {
  margin: 10px 0 35px;
  list-style: none;
}

.cr-modal .cr-modal-wrapper .cr-modal-body .cr-modal-content ul li {
  font-size: 18px;
  font-weight: 400;
}

/* === Scroll Bar === */

/* width */
.cr-modal ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.cr-modal ::-webkit-scrollbar-track {
  background: #efefef; 
}
 
/* Handle */
.cr-modal ::-webkit-scrollbar-thumb {
  background: var(--cr-yellow);
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
  

