.title-container {
  display: flex;
  flex-direction: column;
}

.title-container h2.h4 {
  border-bottom: 1px solid rgb(221, 221, 221);
  padding-bottom: 10px;
}

.text-align-center {
  text-align: center;
}
.underline {
  text-decoration: underline;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.col {
  flex-direction: column;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-self-flex-end {
  align-self: flex-end;
}
.gap-8 {
  gap: 8px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.padding-10 {
  padding: 10px;
}
.padding-20 {
  padding: 20px;
}
.padding-x-20 {
  padding: 0 20px;
}

.padding-top-8 {
  padding-top: 8px;
}
.padding-top-20 {
  padding-top: 20px;
}
.border-radius-2 {
  border-radius: 2px;
}
.vertical-center {
  margin: auto 0;
}
.width-90-percent {
  width: 90%;
}

.width-100-percent {
  width: 100%;
}

.width-300 {
  width: 300px;
}

.cursor-pointer {
  cursor: pointer;
}
.no-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

button[type="submit"]:disabled {
  background: dimgray;
  color: white;
}

/* iframe {
      width: 100%;
      height: 600px;
      border: none;
    }
  
    .row {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%;
    }
  
    .column {
      display: flex;
      flex-direction: column;
      flex-basis: 100%;
      flex: 1;
    }
    .double-column {
      display: flex;
      flex-direction: column;
      flex-basis: 100%;
      flex: 2;
    } */
