/* Accordion Styles */

input[type="radio"] {
    display: none;
    visibility: hidden;
}

.accordion-tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion-tabs {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  width: 100%;
  margin: 0 auto;
}

.accordion-tab {
  width: 100%;
  color: #FFF;
  overflow: hidden;
}

.tab-label {
  
  color: #FFF;
  background: #4169E1;
  font-family: Arial;
  font-size: 1em;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-box-pack: justify;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding: 1em;
  margin-bottom: 0.15em;
  cursor: pointer;
  /* Icon */
}

.tab-label:hover {
  color: #C0C0C0;
}

.tab-label::after {
  font-family: Font Awesome\ 5 Free;
  font-size: 1.5em;
  font-weight: bold;
  content: "\F0A8";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
  margin-left: 0.5em;
  margin-bottom: 1em;
}

.tab-content {
  max-height: 0;
  overflow-y: scroll;
  font-size: 1em;
  font-family: Arial;
  font-weight: bold;
  text-align: center;
  color: #4169E1;
  background: #FFF;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}

.tab-content .fa-times-circle {
  font-size: 1.5em;
  text-decoration: none;
  color: #FFF;
  margin-top: 5px;
  margin-bottom: 5px;
}

.tab-content .fa-times-circle:hover {
  font-size: 1.5em;
  color: #663399;
}

.tab-content a {
  color: #663399;
  text-decoration: none;
}

.tab-shut {
  display: -webkit-box;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-box-pack: end;
  justify-content: center;
  padding: 1em;
  font-family: Arial;
  font-size: 1em;
  font-weight: bold;
  width: 50px;
  background: #663399;
  color: #FFF;
  border: 3px dotted #4169E1;
  cursor: pointer;
}

.tab-shut:hover {
  background: #C0C0C0;
  color: #4169E1;
  border: 3px dotted #4169E1;
}

.tab-shut-any {
  display: -webkit-box;
  display: flex;
  margin: 0 auto;
  margin-bottom: 5px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-box-pack: end;
  justify-content: center;
  padding: 1em;
  font-family: Arial;
  font-size: 1em;
  font-weight: bold;
  width: 250px;
  background: #663399;
  color: #FFF;
  border: 3px dotted #4169E1;
  cursor: pointer;
}

.accordion-tab input:checked + .tab-label {
  background: #663399;
}

.accordion-tab input:checked + .tab-label::after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.accordion-tab input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}