@charset "utf-8";
/* CSS Document */

.accordion {
    width: 100%;
    float: left;
    margin: 0 0 21px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.accordion h3 {
    width: 100%;
    float: left;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 9px 0 12px 0;
    position: relative;
    z-index: 9;
}

.accordion h3:first-child {
    border-top: none;
}

.accordion h3:after {
    width: 18px;
    height: 18px;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: url(../images/questions-down-arrow.svg) no-repeat center / cover;
}

.accordion h3.active:after {
    background: url(../images/questions-left-arrow.svg) no-repeat center / cover;
}

.accordion .content {
    width: 100%;
    float: left;
    padding: 4px 0 4px 0;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {}

@media screen and (min-width:481px) and (max-width:600px) {}


@media screen and (min-width:601px) and (max-width:767px) {}

@media screen and (min-width:768px) and (max-width:900px) {}

@media screen and (min-width:901px) and (max-width:1024px) {}

@media screen and (min-width:1025px) and (max-width:1240px) {}