﻿
.faq-header {
    font-size: 35px;
    border-bottom: 1px dotted #ccc;
    padding: 24px;
}

.faq-content {
    margin: 0px auto;
}

.faq-question {
    border-bottom: 1px dotted #ccc;
    text-align: initial;
    height: 100px;
}

.panel-title {
    font-size: 16px;
    width: 100%;
    position: relative;
    margin: 0px;
    padding: 15px 0px 0px 60px;
    display: block;
    cursor: pointer;
    /* margin-top: -25px; */
}

.panel-content {
    font-size: 12px;
    margin: 0px 60px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.panel:checked ~ .panel-content {
    height: auto;
    opacity: 1;
    padding: 0px;
}

.plus {
    position: absolute;
    margin-left: 20px;
    margin-top: 4px;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.panel {
    display: none;
}
