/* Collapsable Div CSS */
.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
  margin-left: 1.5em;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

.accordion {
  margin-bottom: 1em;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  padding: 0px;
  border: 0px solid #e8e8e8;
  border-top: 0;
}

.accordion .handle {
  margin: 0 0 0 0;
  font-size: 1.1em;
  text-transform: uppercase;
  line-height: 1.2em;
  color: #338ff7;
  padding: 0 0 0 20px;
  border: thin;
  border-style:  solid;
}

.accordion label {
  font-family: "Open Sans", Verdana, Geneva, Arial, Helvetica, sans-serif;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  padding: 15px 0 0 0;
  background: #ffffff;
}

.accordion label:hover,
.accordion label:focus {
  background: #ffffff;
}

.accordion .handle label:after {
  font-family: 'sans-serif';
  content: "\25BE";
  position: absolute;
  right: 24em; /* Adjust as needed */
  
  color: #338ff7;
  display: inline-block;
  margin-right: 10px;
  font-size: 1em;
  line-height: 0em;
  vertical-align: middle;
  margin: 0 0 0 0;
}

.accordion > input[type="checkbox"]:checked ~ .handle label:after {
  font-family: 'sans-serif';
  content: "\25BA";
  color: #338ff7;
  display: inline-block;
  margin-right: 10px;
  font-size: .5em;
  line-height: 0em;
  vertical-align: middle;
}

