.link1:link {
    background-color: #f44336;
    color: white;
    padding: 3px 3px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-left:8px;
}

div + div {
    clear: both;
}

p {
    line-height: 1.4em;
    color: #9e9e9e;
}

.faq-title {
    font-size: 2em;
    margin: 0.4em 0;
}

div.seperator {
    width: 7.5em;
    background-color: #e31b1b;
    height: 0.17em;
    margin-left: -1.8em;
}

.faq-list > div {
    border-bottom: 0.07em solid #ededed;
    padding: 1.5em 0em;
}

    .faq-list > div:last-child {
        border: unset;
    }

details > summary {
    list-style: none;
}

    details > summary::-webkit-details-marker {
        display: none;
    }

summary {
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s ease;
}

    summary:hover {
        color: #e31b1b;
    }

details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-left: -10px
    }

    100% {
        opacity: 1;
        margin-left: 55px
    }
}

details[open] summary {
    color: #e31b1b;
}

details[open] p {
    border-left: 2px solid #e31b1b;
    margin-left: 55px;
    padding-left: 25px;
    opacity: 100;
    transition: all 3s ease;
}

details[open] summary:after {
    content: "-";
    font-size: 3.2em;
    margin: -33px 0.35em 0 0;
    font-weight: 200;
}


.faq-body {
    width: 70em;
    margin: 2em 2em;
    border-radius: 0.2em;
    padding: 2em;
    background-color: #fff;
}

.faq-list {
    width: 55em;
    margin: 1em auto;
    padding: 2em 0;
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    background: transparent;
    border-radius: 0.3em;
    content: "+";
    color: #e31b1b;
    float: left;
    font-size: 1.8em;
    font-weight: bold;
    margin: -0.3em 0.65em 0 0;
    padding: 0;
    text-align: center;
    width: 25px;
}

.view {
    display: flex;
    flex-direction: column;
}

.view-sub {
    display: flex;
    flex-direction: row;
    padding-top: 7px;
    justify-content: space-between;
}
@media only screen and (max-width: 900px) and (min-width: 360px) {

    .faq-body {
        width: 90%;
        margin: 2em auto;
        border-radius: 0.2em;
        padding: 2em;
        background-color: #fff;
        overflow-x: hidden;
    }

    .faq-title {
        font-size: 1.2em;
        margin: 0.1em 0;
    }

    .faq-list {
        width: 100%;
    }

    summary {
        font-size: 0.9em;
        word-wrap: break-word;
    }
        summary:after {
            background: transparent;
            border-radius: 0.3em;
            content: "+";
            color: #e31b1b;
            float: left;
            font-size: 1.8em;
            font-weight: bold;
            margin: -1.2em 0.7em 0 0;
            margin-left:-0.9em;
            padding: 0;
            text-align: center;
            width: 25px;
        }

    .view-sub {
        flex-direction: column;
        align-items: flex-start;
    }

        .view-sub img {
            margin-bottom: 5px;
        }

        .view-sub a {
            margin-left: 0;
            margin-top: 5px;
        }
}

