﻿.FaqList
{
    padding-top: 30px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
}

.FaqList ul
{
}

.FaqList ul li
{
    list-style: none;
}




.FaqList .tab
{
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: #fff;
    overflow: hidden;
    margin-bottom: 10px;
}



.FaqList .tab .tab-input
{
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.FaqList .tab .tab-label
{
    position: relative;
    display: block;
    padding: 12px;
    background: #f9f9f9;
    color: #333;
    font-weight: bold;
    padding-right: 45px;
    cursor: pointer;
    border: solid 1px #e5e5e5;
    margin-bottom: 0px;
}





.FaqList .tab-content
{
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #000;
    opacity: 0;
    transition: all .3s;
    border: solid 1px #e5e5e5;
    border-top: none;
}



.FaqList .tab-content p
{
    margin: 1em;
}
/* :checked  */
.FaqList .tab .tab-input:checked ~ .tab-content
{
    max-height: 100vh;
    padding: 10px;
    opacity: 1;
}
/* Icon */
.FaqList .tab .tab-label::before
{
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.FaqList .tab .tab-input[type=checkbox] + .tab-label::before
{
    content: "\25BC";
    transform: rotate(-90deg);
}


.FaqList .tab .tab-input[type=checkbox]:checked + .tab-label::before
{
    transform: rotate(0deg);
}