﻿.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.field-validation-error {
    color: #ff0000;
}

.review-horizontal-rule {
    display: block;
    margin: 1em auto 0.5em auto;
    border-style: inset;
    border-width: 1px;
}

.breadcrumb-left-align {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.review-section-header {
    padding-left: 12px;
    font-size: 1.2em;
    font-weight: bold;
}

.user-input-area {
    width: 100%;
    border-radius: 5px;
    border: 1px solid;
    border-color: #f5f5f5;
}

.review-star {
    margin: 0;
    padding: 0;
    float: left;
}

.review-star-container {
    float: left;
}

    .review-star-container > input {
        display: none;
    }

    .review-star-container > .review-star:before {
        content: "\2605";
        font-weight: 900;
        display: inline-block;
        margin: 5px;
        font-size: 1.45em;
    }

    .review-star-container > label {
        color: #BDBDBD;
        float: right;
    }

    /***** CSS Magic to Highlight Stars on Hover *****/

    .review-star-container > input:checked ~ label, /* show gold star when clicked */
    .review-star-container:not(:checked) > label:hover, /* hover current star */
    .review-star-container:not(:checked) > label:hover ~ label {
        color: #FFCC00;
    }

        /* hover previous stars in list */

        .review-star-container > input:checked + label:hover, /* hover current star when changing rating */
        .review-star-container > input:checked ~ label:hover,
        .review-star-container > label:hover ~ input:checked ~ label, /* lighten current selection */
        .review-star-container > input:checked ~ label:hover ~ label {
            color: #FFED85;
        }

.disable-link-button {
    opacity: .4;
    cursor: default !important;
    pointer-events: none;
}

.val-summary-list ul {
    margin-left: 28px;
}

.main-header {
    color: orange;
    font-size: 2.1em;
    font-weight: bold;
}

.share-header {
    color: orange;
    font-size: 1.7em;
    font-weight: bold;
}

.success-social-icon {
    margin: 0 14px 0 14px;
}