/* Header */

.headerContainer {
  justify-content: center;
  padding-bottom: 20px;
  text-align: center
}

.gradientText {
  background-color: #000;
  background-image: linear-gradient(45deg, #a41a47, #5a1679);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
}

.headerContainer h2 {
  font-size: calc(1.6vh + 1.6vw);
}

/* Tab Bar */

.tabBar {
  width: 100%;
  overflow-x: auto;
  margin-right: 0px;
  margin-left: 0px;
  font-size: 16px;
  display: inline-flex;
}

.tabBar button {
  background-color: #f1f1f1;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 14px;
  transition: 0.3s;
  border: 0.5px solid #ccc;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  width: 14vw;
  height: 100%;
}

.tabBar button:hover {
  background-color: #ddd;
}

.tabBar button.active {
  background-color: white;
  border-bottom: none;
}

.tabBar button .imgContainer {
  align-items: center; 
  justify-content: center;
}

.tabBar button img {
  height: 7vmin;
  width: 7vmin;
  padding: 5px;
}

/* Page Navigation */

.page {
  display: none;
  position: relative;
}

/* Content */

.tabcontent {
  justify-content: center;
  display: none;
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 55vh;
}

.tabcontent .leftColumn {
  position: relative;
  float: left;
  width: 50%;
  text-align: left;
  margin-top: 2vh;
}

.tabcontent .rightColumn {
  position: relative;
  float: right;
  width: 45%;
  text-align: center;
  margin-top: 2vh;
}

.tabcontent .fullColumn {
  position: relative;
  overflow-y: auto;
  height:90%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  float: left;
}

.tabcontent img {
  height: 35vmin;
  width: 35vmin;
  border-radius: 20px;
}

.tabcontent iframe {
  height: 35vmin;
  width: 60vmin;
  border: none;
  cursor: pointer;
}

/* Content Text Styles */

.tabcontent h4 {
  font-size: 4vh;
}

.tabcontent h4 {
  font-size: 4vh;
}

.tabcontent p,
.tabcontent td,
.tabcontent li {
  font-size: calc(1vh + 1vw);
}

.navigation {
  display: inline-block;
  height: 10%;
  width: 100%;
  right: 10%;
  left: 10%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.navigation .btn {
  background-color: #821a5e;
  background-image: linear-gradient(to top right, #a41a47, #5a1679);
  color: white;
  border-radius: 50px
}

.navigation .btn:hover,
.navigation .btn.active {
    filter: brightness(125%)
}

.navigation .btn[disabled] {
  pointer-events: none;
  background-image: none;
  background-color: gray;
}

.progress {
  height: 8px !important;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 15px;
}

.progress-container{
  display: inline-block;
  width: 60%;
  position: relative;
}

.progress .progress-bar {
  background-color: #8b1b58;
}

.tabcontent label {
  font-weight: bold;
  font-size: calc(1vh + 1vw);
  margin-top: 0.5px;
}

.tabcontent .form-group {
  margin-bottom: 2vh;
}

.tabcontent input[type=checkbox] {
  height: 2.5vmin;
  width: 2.5vmin;
}

@media only screen and (min-width: 701px ) {
  .row.mobile {
    display: none;
  }
}

/* Small Mobile */
@media only screen and (max-width: 400px) {

  .tabBar button {
    font-size: 9px;
    padding: 2px 2px;
  }

  .tabBar button img {
    padding: none;
  }

  .tabcontent {
    height: 60vh;
  }

  .tabcontent img {
    height: 35vmin;
    width: 35vmin;
    margin-top: 2vh;
  }

  .tabcontent .fullColumn {
    margin-top: 0vh;
    height: 50vh;
  }

  .tabcontent .leftColumn {
    width: 100%;
    min-height: 25vh;
    text-align: left;
    margin-top: 0vh;
  }

  .tabcontent .rightColumn {
    float: none;
    width: 100%;
    text-align: center;
    min-height: 20vh;
  }

  .tabcontent h4 {
    font-size: 15px;
  }

  .tabcontent .form-group {
    margin-bottom: 0.5rem;
  }

  .fullColumn .row {
    flex-direction: column;
  }

  .fullColumn .col-4 {
    max-width: 100%;
  }

  .navigation {
    bottom: 0%;
  }

  .navigation .btn {
    font-size: 12px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }

  .navigation .btn.reg {
    display: none;
    font-family: 'Trebuchet MS';
  }

  .row.mobile {
    /*margin-top: 10px;*/
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*display: initial;*/
  }

  .progress {
    height: 10px;
    margin-top: 10px;
    top: 10%;
  }

  .progress-container { 
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

}

/* Very Small Mobile */
@media only screen and (max-width: 330px) {
  .tabBar button {
    font-size: 8px;
  }
  
}

/* Mobile */
@media only screen and (min-width: 400px) and (max-width: 700px) {

  .tabBar button {
    font-size: 9px;
    padding: 2px 2px;
  }

  .tabBar button img {
    padding: none;
  }

  .tabcontent {
    height: 60vh;
  }

  .tabcontent img {
    height: 35vmin;
    width: 35vmin;
    margin-top: 2vh;
  }

  .tabcontent .fullColumn {
    margin-top: 0vh;
  }

  .tabcontent .leftColumn {
    /*width: 70vw;*/
    width: 100%;
    min-height: 25vh;
    text-align: left;
    margin-top: 0vh;
  }

  .tabcontent .rightColumn {
    float: none;
    /*width: 70vw;*/
    width: 100%;
    text-align: center;
    min-height: 20vh;
  }

  .tabcontent h4 {
    font-size: 15px;
  }

  .tabcontent .form-group {
    margin-bottom: 0.5rem;
  }

  .fullColumn .row {
    flex-direction: column;
  }

  .fullColumn .col-4 {
    max-width: 100%;
  }

  .navigation {
    bottom: 0;
/*    right: 2%;
    left: 2%;*/
  }

  .navigation .btn {
    font-size: 12px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }

  .navigation .btn.reg {
    display: none;
  }

  .row.mobile {
/*    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;*/
    /*display: initial;*/
  }

  .progress {
    height: 10px;
    margin-top: 10px;
    top: 10%;
  }

  .progress-container { 
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* iPad/Tablet */
@media only screen and (min-width: 700px) and (max-width: 1030px) and (min-height: 1000px) {
  
  .tabBar button {
    font-size: 14px;
    width: 13vw;
  }

  .tabBar button img {
    padding: 3px;
  }

  .tabcontent {
    height: 60vh;
  }

  .tabcontent img {
    height: 35vmin;
    width: 35vmin;
    margin-top: 2vh;
  }

  .tabcontent .leftColumn {
    /*width: 75vw;*/
    width: 100%;
    min-height: 23vh;
    text-align: left;
    margin-top: 2vh;
  }

  .tabcontent .rightColumn {
    float: none;
    /*width: 75vw;*/
    width: 100%;
    text-align: center;
    margin-top: 0vh;
  }

  .tabcontent .form-group {
    margin-bottom: 0.5rem;
  }

  .tabcontent h4 {
    font-size: 24px;
    line-height: 80px;
  }

  .tabcontent input[type=checkbox] {
    height: 20px;
    width: 20px;
  }

  .tabcontent input[type=text] {
    margin-top: 10px;
  }

  .fullColumn .row {
    flex-direction: column;
  }

  .fullColumn .col-4 {
    max-width: 100%;
  }

  .navigation {
    bottom: 0;
/*    right: 15%;
    left: 15%;*/
  }

  .navigation .btn {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }

  .progress {
    height: 10px;
    margin-top: 15px;
    top: 10%;
  }

  .progress-container { 
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* iPad Pro */
@media only screen and (min-width: 1020px) and (max-width: 1030px) and (min-height: 1300px) and (max-height: 1400px) {
  .tabBar button {
    width: 14vw;
  }

  .tabcontent {
    line-height: 48px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .tabcontent h4 {
    font-size: 35px;
  }

  .navigation .btn {
    font-size: 20px;
  }

}