@charset "utf-8";
/* CSS Document */

/* Tab CSS */
[data-tab-content] {
    display: none;
}

div.wrap {
    padding: 0;
}

.question {
    font-weight:600;
}

.active[data-tab-content] {
    display: block;
}

.tab-content {
    padding: 2rem;
}

/* Allow very long words/URLs to wrap inside tab content */
.tab-content, .tab-content a, .tab-content p, .tab-content li {
  overflow-wrap: anywhere;   /* modern */
  word-break: break-word;    /* legacy fallback */
}

.tabs {
    display: flex;
    justify-content: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-bottom: thin solid #006A99;
}

.tab {
    cursor: pointer;
    padding: 1rem;
    /*border: thin solid gray;*/
    border-bottom: 0;
    /*border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: .1rem -.1rem .5rem #888888;*/
}

.tab.active {
    background-color: #0094C9;
}

.tab:hover {
    color: white;
    background-color: #006A99;
}

/* Styles for buttons */

.button-main {
  appearance: none;
  background-color: #006A99;
  border: 2px solid white;
    color: white;
  border-radius: 15px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2em;
  min-height: 60px;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
    min-width: 100%;
}

.button-main:disabled {
  pointer-events: none;
}

.button-main:hover,
.button-main:focus {
  background-color: #0094C9 !important;
  color: black !important;
  outline: none;

}

.button-main:active {
  box-shadow: none;
  transform: translateY(0);
}


@media screen and (min-width:1024px) {
    main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 120px;
    }
    .tab-content {
        padding: 2rem 3rem;
    }
    .tab {
        padding: 1rem 5rem;
        margin-right: .25rem;
    }
    
    h1 {
        text-align: center;
    }

    .button-main {
        width: 50%;
    }

}