/**
 * Details
 */


.ls-details {
    margin-bottom: 10px;
}

.ls-details:last-child {
    margin-bottom: 0;
}

.ls-details.js-tags-favourite-cloud {
    margin-bottom: 40px;
}


/* Заголовок */
.ls-details-title {
    background: #fafafa;
    position: relative;
    padding: 12px 15px 12px 32px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    border-radius: 3px;
}

.ls-details-title:hover {
    background: #f5f5f5;
    cursor: pointer;
}

.ls-details.is-open > .ls-details-title {
    background: #f5f5f5;
    border-radius: 3px 3px 0 0;
}

.ls-details-title-text {
    border-bottom: 1px dashed;
    color: #d32f2f;
}


/* Стрелка */
.ls-details-title:before {
    content: "";
    position: absolute;
    top: 17px;
    left: 15px;
    height: 0;
    width: 0;
    margin-top: -1px;
    border: 4px solid transparent;
    border-left-color: #d32f2f;
}

.ls-details.is-open > .ls-details-title:before {
    top: 19px;
    left: 13px;
    border-left-color: transparent;
    border-top-color: #d32f2f;
}


/* Основной контейнер */
.ls-details-body {
    display: none;
}

.ls-details.is-open > .ls-details-body {
    display: block;
}


/* Содержимое */
.ls-details-content {
    padding: 20px 20px;
    border: 1px solid #f5f5f5;
    border-top: none;
    border-radius: 0 0 3px 3px;
}
