<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal {
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.25s;
  z-index: 100;
}

.modal::before {
  content: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  z-index: 100 !important;
}

.modal h3 {
  font-size: clamp(18px, 2.5vw, 22px);
}

.modal .dialog {
  width: min(480px, calc(100% - 2rem));
  max-height: 90%;
  background-color: white;
  display: flex;
  flex-direction: column;
  z-index: 30;
  position: relative;
  word-break: keep-all;
  padding: 1.5rem 1.25rem .75rem;
  color: #434649;
  margin-top: 5rem;
  margin-left: -43.5rem;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.modal p {
  padding: 1rem 0;
}

.modal ul {
  padding: 1rem;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f3f6f9;
}

.modal ul + button {
  background-color: #3985e6;
  color: white;
  padding: 1rem 2.5rem;
  width: fit-content;
  margin: 1rem auto;
  line-height: 1;
  font-size: 15px;
}

.modal .close {
  width: 1rem;
  height: 1rem;
  background-image: linear-gradient(black 0 0), linear-gradient(black 0 0);
  background-position: center;
  background-size:
    100% 2px,
    2px 100%;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  text-indent: 9999px;
  z-index: 10;
}

.modal section {
  flex: 1 1 auto;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.checkbox {
  position: relative;
}

.checkbox input {
  display: none !important;
}

.checkbox input:checked ~ label {
  &amp;::before {
    transition: all 0.15s ease-in;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.checkbox input:checked ~ svg {
  stroke-dashoffset: 0;
  transition: all 0.3s ease-out 0.15s;
}



.checkbox label {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.25;
  z-index: 2;
  cursor: pointer;
}

.checkbox label::before {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #f1f2f3;
  background-color: white;
  transition: all 0.15s ease-out 0.3s;
}

.checkbox svg {
  position: absolute;
  top: 50%;
  left: 3px;
  stroke: #3985e6;
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 30 30;
  stroke-dashoffset: 30;
  transform: scale(1.15) translateY(-50%);
  transition: all 0.5s ease-out;
}

@media screen and (max-width: 640px) {
  .modal {
    align-items: center;
  }  

  .modal .dialog {
    margin-left: 0
  }
}</pre></body></html>