.profile-checklist {
    padding-left: 24px;
    &--flush {
        padding-left: 0;
    }
    &__item {
        position: relative;
        margin-bottom: 6px;
        &:last-child {
            margin-bottom: 0;
        }
        &:before {
            font-family: AppDirectIcons;
            text-align: center;
            display: inline-block;
            width: 24px;
            content: " ";
            position: absolute;
            left: -24px;
        }
        &--checked:before {
            color: #6aaa1f;
            content: "\e003"
        }
    }
}

.profile-edition {
    display: flex;
    flex-direction: column;
    border: 1px solid #cbcbcb;
    background-color: #fff;
    border-radius: 3px;
    &--primary {
        box-shadow: 0 0 0 4px #cfe8b2;
        border-color: #9fd164;
    }
    &__header {
        background-color: #f5f5f5;
        padding: 10px;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        border-bottom: 1px solid #cbcbcb;
        & h3 {
            text-align: center;
            margin-bottom: 0;
        }
        &--primary {
            border-bottom: 1px solid #9fd164;
            background-color: #f8fcf4;
            color: #5e971b;
        }
    }
    &__content {
        padding: 14px;
    }
    &__prices {
        margin-bottom: 14px;
        &-separator {
            margin-left: 0;
            position: relative;
            text-align: center;
            text-transform: uppercase;
            z-index: 1;
            & span {
                font-size: 10px;
                display: inline-block;
                padding: 0 8px;
                background-color: #fff;
            }
            &:before {
                content: "";
                display: block;
                position: absolute;
                z-index: -1;
                top: 50%;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: #eaeaea;
            }
        }
    }
    &__price {
        & .edition__price-amount {
            font: bold 14px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 400;
        }
        &:first-child .edition__price--primary-amount {
            font: bold 32px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        & .edition__price-frequency, & .edition__price-unit {
            text-transform: lowercase;
        }
    }
    &__price--primary {
        margin-top: 0;
        margin-left: 0;
        & .edition__price--primary-amount {
            font-size: 18px;
            font-weight: bold;
        }
        &:before {
            font-family: AppDirectIcons;
            text-align: center;
            display: inline-block;
            width: 24px;
            content: " ";
            position: absolute;
            left: -24px;
        }
    }
    &__action {
        text-align: center;
        margin-bottom: 14px;
    }
    &__details {
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 14px;
        margin-bottom: 14px;
        &:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
    }
    &__bullets {
        li:nth-child(n+8) {
            display: none;
        }
        .toggle-show,
        .toggle-hide {
            display: inline-block;
        }
        .toggle-hide {
            display: none;
            margin-top: 6px;
        }
        &.toggled {
            li:nth-child(n+8) {
                display: list-item;
            }
            .toggle-show {
                display: none;
            }
            .toggle-hide {
                display: inline-block;
            }
        }
    }
    &__footnotes {
        border-radius: 3px;
        margin-bottom: 24px;
        padding: 14px;
        background-color: #f5f5f5;
    }

    .profile-checklist__item.profile-edition__price {
        margin-left: 25px;
        margin-top: 10px;
        &:before {
            font-family: AppDirectIcons;
            content: "\e631";
            font-size: 10px;
            position: absolute;
            left: -25px;
            text-align: center;
            width: 19px;
        }
        &--primary, :first-child {
            margin-left: 0;
            margin-top: 0;
            &:before {
                content: " ";
            }
        }
        &--previous {
            text-decoration: line-through;
        }
    }
}

.configurator-editions-box {
    .profile-edition {
        &__bullets {
            li:nth-child(n+8) {
                display: list-item;
            }
        }
        &__details {
            display: none;
            &-container {
                &.toggled {
                    .profile-edition__details,
                    .toggle-hide {
                        display: inline-block;
                    }
                    .toggle-show {
                        display: none;
                    }
                }
            }
            &-toggle {
                .toggle-show {
                    display: inline-block;
                }
                .toggle-hide {
                    display: none;
                }
            }
        }
    }
}

.profile-box {
    margin-bottom: 24px;
    @include media-breakpoint-down(xs) {
        max-width: 345px;
        min-width: 300px;
        display: inline-block;
        &.addon-configurator--hidden {
            display: none;
        }
    }
    &.slick-list {
        overflow: hidden;
    }
}

.profile-post--container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    & .caption {
        white-space: normal;
    }
}

.reviews-summary {
    flex: 1 0 1px;
    display: flex;
    min-width: 65%;
    padding: 7px 0;
    &--average-rating, &--user-rating, &--no-rating {
        flex: 1 0 1px;
    }
    &--no-rating {
        padding: 7px 0;
        min-width: 60%;
        margin-bottom: 0;
    }
}

@include media-breakpoint-down(xs) {
    .profile__image {
        margin-top: 14px;
    }
}

@include media-breakpoint-down(xm) {
    .profile-content {
        padding-left: 12px;
        padding-right: 12px;
    }
    .title__xxxxxlarge {
        font-size: 22px;
    }
    .feature-actions {
        text-align: center;
    }
    .featured-reviews {
        .slat--image_caption {
            font-size: 11px;
        }
    }
}

.profile-resources {
    &__item iframe {
        min-height: 340px;
        @include media-breakpoint-down(xm) {
            min-height: 200px;
        }
    }
}

.profile-entries {
    .slat {
        &--content {
            .subtitle {
                white-space: normal;
            }
            @include media-breakpoint-down(xm) {
                .badge {
                    white-space: normal;
                }
                .caption {
                    font-size: 11px;
                }
            }
        }
    }
}
