﻿/*--- Accordion Styles ---*/
.sections-blocks [name="bookmark"] { display: none; }
.sections-blocks >:not(input):not(label) {
  overflow: hidden;
  height: 0;
  margin: 0;
  padding: 0 .5em;
  border: 1px solid #4fc6cd;
  border-top-style: none;
  transition: .5s;
}
.sections-blocks > label {
  overflow: hidden;
  display: block;
  padding: .5em 1em;
  background: #55b1ae;
  color: rgb(255,255,255);
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}
.sections-blocks > :checked + label + * {
  overflow: auto;
  height: 290px;
}
.sections-blocks > :checked + label {
  background: #0d847d;
  cursor: default;
}