.details {
    border-top: 3px solid #DEDFFB;
    border-left: 3px solid #DEDFFB;
    border-right: 3px solid #DEDFFB;
    border-radius: 13px;
    &:last-of-type {
        border-bottom: 3px solid #DEDFFB;
    }
}
.details-summary {
    position: relative;
    display: block;
    padding: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #6667ab;
    border-radius: 10px;
    &:hover {
        cursor: pointer;
        opacity: 0.8;
    }
    .btn {
        position: absolute;
        top: 37%;
        left: 10%;
        width: 18px;
        height: 18px;
        transform-origin: center center;
        transition-duration: 0.2s;

        &:before,
        &:after {
            content: "";
            background-color: #fff;
            border-radius: 10px;
            width: 18px;
            height: 4px;
            position: absolute;
            top: 7px;
            left: 0;
            transform-origin: center center;
        }
        &:before {
            width: 4px;
            height: 18px;
            top: 0;
            left: 7px;
        }
    }
    &.is-active {
        .btn {
            -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
            &:before {
                content: none;
            }
        }
    }
}

.details-summary::-webkit-details-marker {
    display: none;
}

.details-content {
    padding: 20px;
    font-size: 16px;
    p {
        margin: 0 0 20px;
        color: #000;
        font-size: 20px;
        text-align: left;
        &:last-of-type {
            margin: 0 0 0;
        }
    }
    .movie {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        margin-top: 10px;
    }
    a {
        color: #0000EE;
        text-decoration: underline;
        &:hover {
            text-decoration: none;
        }
    }
}

@media screen and (max-width: 883px) {
    .details-summary {
        font-size: 14px;
        .btn {
            left: 3%;
        }
    }
    .details-content {
        font-size: 14px;
        p {
            font-size: 16px;
        }
    }
}