/* Accordion styles */
.tabsaccordion {
    /*border-radius: 8px;*/
    overflow: hidden;
}

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

.tabaccordion {
    width: 100%;
    color: #2c3e50;
    overflow: hidden;
}

/*.tabaccordion-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 1em;
  padding-left: 50px;
  background: #FFF;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.1)  ; 
  -moz-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.1)  ; 
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.1)  ; 
}*/
.tabaccordion-label {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 16px 20px 16px 76px;
    border-radius: 16px;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #CCC;
    margin-bottom: 0px;
    font-weight: 600;
}

.tabaccordion-label:hover {
    background: #FFF;
}

.tabaccordion-label::after {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    /*font-family: "FontAwesome";*/
    content: "";
    /*width: 1em;
  height: 1em;*/
    background: url('../images/plus-icon.png');
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    text-align: center;
    -webkit-transition: all .15s;
    transition: all .15s;
}

.tabaccordion-content {
    border-radius: 0 0 16px 16px;
    max-height: 0;
    /*padding: 0 1em;*/
    color: #666;
    background: white;
    box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.1);
    /*-webkit-transition: all .35s;
    transition: all .35s;*/

}

.tabaccordion-close {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #FFF;
    cursor: pointer;
}

.tabaccordion-close:hover {
    background: #F9F9F9;
}

input:checked+.tabaccordion-label {
    background: #FFF;
    border-radius: 16px 16px 0px 0px;
    border-bottom: 0px solid #CCC;
}

input:checked+.tabaccordion-label::after {
    background: url('../images/icon-minus.png');
    background-repeat: no-repeat;
    top: 50%;
    background-color: rgba(66, 186, 227, 0.3);
    border-radius: 50%;
    background-size: 65%;
    background-position: center center;
}

input:checked~.tabaccordion-content {
    max-height: 100vh;
    padding: 17px 65px 17px 80px;
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 15px;
    text-align: justify;
    border: 1px solid #CCC;
    border-top: 0px;
}

input:checked~.tabaccordion-label {
    -webkit-box-shadow: 0px 6px 7px -4px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: 0px 6px 7px -4px rgba(255, 255, 255, 0.1);
    box-shadow: 0px 6px 7px -4px rgba(255, 255, 255, 0.1);
}