﻿.wrap-collabsible {
  margin-bottom: 1.2rem 0;
}
  .wrap-collabsible input[type='checkbox'] { display: none; }

.lbl-toggle {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
  padding: .3rem .3rem .3rem .6rem;
  color: #fff;
  background: #0F6CBD;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

  .lbl-toggle:hover {
    color: #fff;
    background: #0F548C;
  }

  .lbl-toggle::before {
    content: ' ';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
    transition: transform .2s ease-out;
  }

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    /*  max-height: 0px;
  overflow: hidden;*/
    display: none;
    transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
    /*  max-height: 100vh;*/
    display: inherit;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: rgba(225, 226, 230, .2);
  border-bottom: 1px solid rgba(225, 226, 230, .45);
  border-left: 1px solid rgba(225, 226, 230, .45);
  border-right: 1px solid rgba(225, 226, 230, .45);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .3rem .5rem;
}




.small-collabsible {
  margin-bottom: 1.2rem 0;
}
  .small-collabsible input[type='checkbox'] {
    display: none;
  }
  .small-collabsible
  .small-lbl-toggle {
    display: block;
    font-weight: bold;
    text-align: left;
    padding: .2rem .2rem .2rem .5rem;
    color: #666;
    background: #EBEBEB;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s ease-out;
    white-space: nowrap;
  }

.small-lbl-toggle:hover {
  background: #d7d7d7;
}

.small-lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out;
}

.small-toggle:checked + .small-lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.small-collapsible-content {
/*  max-height: 0px;
  overflow: hidden;*/
  display:none;
  transition: max-height .25s ease-in-out;
}

.small-toggle:checked + .small-lbl-toggle + .small-collapsible-content {
/*  max-height: 100vh;*/
  display:inherit;
}

.small-toggle:checked + .small-lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.small-collapsible-content .small-content-inner {
  background: #ffffff;
  border-bottom: 1px solid rgba(225, 226, 230, .45);
  border-left: 1px solid rgba(225, 226, 230, .45);
  border-right: 1px solid rgba(225, 226, 230, .45);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .3rem .3rem;
}


