.transition,p,ul li i:before,ul li i:after {
    transition: all 0.25s ease-in-out;
}

.flipIn,h1,ul li {
/*     animation: flipdown 0.5s ease both; */
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}

ul.qa_accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    padding:0 80px 0 30px;
}

ul.qa_accordion li {
    position: relative;
    padding: 0;
    margin: 0;
    padding: 28px 70px 28px 20px;
    border-top: 1px dotted #b7b7b7;
    letter-spacing: 0.5px;
    text-transform:uppercase;
/*     background: #fcfcfc; */
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
ul.qa_accordion li h2 {
    font-size:16px;
    font-weight: bold;
    margin: 0 0 0 0;
    letter-spacing: 1px;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
ul.qa_accordion li p {
    margin:20px 0 0 0;
    line-height: 22px;
    color:#747474;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
/* HOVER */
ul.qa_accordion li:hover {
    background: #f8f8f8;
}
ul.qa_accordion li:hover h2 {
    color:#bbbbbb;
}
ul.qa_accordion li:hover p {
    color:#bbbbbb;
}
ul.qa_accordion li:hover i {
    background: #bbbbbb;

}
/* HOVER end */
ul.qa_accordion li:nth-of-type(1) {
    animation-delay: 0.5s;
}

ul.qa_accordion li:nth-of-type(2) {
    animation-delay: 0.75s;
}

ul.qa_accordion li:nth-of-type(3) {
    animation-delay: 1s;
}
ul.qa_accordion li:nth-of-type(4) {
    animation-delay: 1.25s;
}
ul.qa_accordion li:nth-of-type(5) {
    animation-delay: 1.5s;
}
ul.qa_accordion li:nth-of-type(6) {
    animation-delay: 1.75s;
}

ul.qa_accordion li:last-of-type {
    padding-bottom: 0;
}

ul.qa_accordion li i {
    position: absolute;
    transform: translate(0, 0);
    margin-top: 16px;
    right: 20px;
    top:8px;
    background-color: #ff6873;
    width: 23px;
    height: 23px;
    background: #262626;
    border-radius: 23px;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}

ul.qa_accordion li i:before,
ul.qa_accordion li i:after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 1px;
    height: 11px;
    right:11px;
    top:6px;
}

ul.qa_accordion li i:before {
    transform: translate(0px, 0) rotate(90deg);
}

ul.qa_accordion li i:after {
    transform: translate(0, 0) rotate(90deg);
}

ul.qa_accordion li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top:0;
    z-index: 1;
    opacity: 0;
    margin:0;
}

ul.qa_accordion li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}

ul.qa_accordion li input[type=checkbox]:checked ~ i:before {
    transform: translate(0, 0) rotate(0deg);
}

ul.qa_accordion li input[type=checkbox]:checked ~ i:after {
    transform: translate(0, 0) rotate(90deg);
}

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(0deg);
    }
    5% {
        opacity: 1;
    }
    80% {
        transform: rotateX(15deg);
    }
    83% {
        transform: rotateX(45deg);
    }
    92% {
        transform: rotateX(55deg);
    }
    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}
