*{
  margin: 0;
  padding: 0;
  font-family: monospace;
}
.vessel{
  height:100vh;
}
.card{
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
a{
  opacity: 1;
  color: #334177;
  &:hover{
    opacity: 0.75;
    text-decoration: none;
  }
}
h2{
  background-color: #89ACB9;
  border-radius: 5px;
  padding: 10px 0 10px 5px;
  margin: 0 0 10px 0;
  font-size: x-large;
}
.collapsible-button{
  background-color: #89ACB9;
  border-radius: 5px;
  padding: 10px 0 10px 5px;
  margin: 0 0 10px 0;
  border: none;
  width: 99%;
  font-size: x-large;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.box{
  background-color: #fff;
  padding: 10px;
  border-style: dashed;
  border-width: 1px;
  margin: 1px 3px 7px 3px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.switch-wrapper{
  margin: 0 20px;
  input{
    display: none;
  }
  .slider{
    position: relative;
    &:after{
      background:#334181;
      border-radius: 50%;
      bottom: 0;
      content: '';
      height: 16px;
      left: 4px;
      margin: auto;
      position: absolute;
      top: 0;
      transition: 0.4s;
      width: 16px;
    }
    &:before {
      background:#33418168;
      border-radius: 34px;
      bottom: 0;
      content: '';
      height: 24px;
      margin: auto;
      position: absolute;
      top: 0;
      width: 40px;
    }
  }
  .switch {
    margin-left: 50px;
    &.one {
      color: #334181;
    }
    &.two {
      color: #464646;
      display: none;
    }
  }
  input:checked + .slider:before {
    background-color: #dddddd;
  }
  input:checked + .slider:after {
    background-color: #464646;
    transform: translateX(16px);
  }
  input:checked ~ .slider > .switch.one {
    display: none;
  }
  input:checked ~ .slider > .switch.two {
    display: inline-block;
  }
}