.box-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 6em auto 6em;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 90%);
}

.box-content {
  display: flex;
  width: 90%;
  margin: auto;
  margin-bottom: 2em;
  border-radius: 20px;
  background-color: white;
}

.box-content-padding {
  width: 95%;
  margin: auto;
}

.box-header {
  color: var(--gc-orange);
  margin: auto;
  font-size: xx-large;
  padding: 1em;
}

.box-extra-buttons-wrapper {
  display: flex;
  flex-direction: row;
  margin: 1em auto 1em auto;
  width: 90%;
}

.box-extra-button {
  background-color: white;
  border: solid 1px var(--gc-orange);
  font-size: 12pt;
  text-align: center;
  padding: 1em 2em 1em 2em;
  color: var(--gc-orange);
}

.box-extra-button:hover {
  background-color: var(--gc-orange);
  border: solid 1px var(--gc-orange);
  text-align: center;
  padding: 1em 2em 1em 2em;
  color: white;
}

.box-button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 85%;
  margin: auto;
  margin-bottom: 2em;
}

.box-button-wrapper-solo {
  display: flex;
  flex-direction: row;
  width: 85%;
  margin: auto;
  justify-content: flex-end;
  margin-bottom: 2em;
}

.box-button {
  background-color: white;
  border: solid 1px var(--gc-orange);
  border-radius: 50px;
  font-size: 12pt;
  text-align: center;
  padding: 1em 2em 1em 2em;
  color: var(--gc-orange);
  cursor: pointer;
}

.box-button:hover {
  background-color: var(--gc-orange);
  border: solid 1px var(--gc-orange);
  text-align: center;
  padding: 1em 2em 1em 2em;
  color: white;
}

.box-extra-switch-wrapper {
  position: relative;
  width: 162px;
  margin: 1em 0em 1em 5em;
}

/* The switch - the box around the slider */
.box-extra-switch-label {
  position: relative;
  display: block;
  width: 220px;
  height: 40px;
}

/* Hide default HTML checkbox */
.box-extra-switch-label input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.switch-span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  border: 2px solid var(--gc-orange);
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-span:before {
  position: absolute;
  content: "";
  height: 38px;
  width: 110px;
  left: 0;
  bottom: -1px;
  background-color: var(--gc-orange);
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-check:checked+.switch-span {
  background-color: white;
}

.switch-check:focus+.switch-span {
  box-shadow: 0 0 1px white;
}

.switch-check:checked+.switch-span:before {
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(107px);
}

.switch-text-one {
  position: absolute;
  z-index: 5;
  margin: 0;
  left: 12px;
  top: 9px;
  pointer-events: none;
  color: white;
}

.switch-text-two {
  position: absolute;
  z-index: 5;
  margin: 0;
  right: -30px;
  top: 9px;
  pointer-events: none;
  color: var(--gc-orange);
}

.templates-hidden {
  visibility: hidden;
  display: none;
}