/* loader */

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.hidden {
    animation: slideOutUp .5s;
    animation-fill-mode: forwards;
}


/* end loader */


/* stars */


/* START RATING CARD */

.rating-card {
    width: 70%;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}

.fa-star,
.fa-star-o {
    color: orange;
}

.rating-card h1 {
    color: #337AB7;
    margin-bottom: 20px;
}

.rating {
    width: 50%;
    float: left;
}

.rating p {
    margin-top: 10px;
    font-size: 20px;
}

.rating h2 {
    margin: 0px;
    font-size: 60px;
    font-weight: normal;
}

.rating-process {
    width: 50%;
    text-align: left;
    float: right;
}

.rating-right-part {
    margin-bottom: 3px;
}

.rating-right-part p {
    margin: 0px;
}

@media (min-width:320px) and (max-width:640px) {
    .rating {
        width: 100%;
    }
    .rating-process {
        width: 100%;
    }
}


/* END RATING CARD */


/*STAR RATING*/

.star-rating {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
}

.star-rating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer;
}

.star-rating label:last-child {
    position: static;
}

.star-rating label:nth-child(1) {
    z-index: 5;
}

.star-rating label:nth-child(2) {
    z-index: 4;
}

.star-rating label:nth-child(3) {
    z-index: 3;
}

.star-rating label:nth-child(4) {
    z-index: 2;
}

.star-rating label:nth-child(5) {
    z-index: 1;
}

.star-rating label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.star-rating label .icon {
    float: left;
    color: transparent;
}

.star-rating label:last-child .icon {
    color: #000;
}

.star-rating:not(:hover) label input:checked~.icon,
.star-rating:hover label:hover input~.icon {
    color: #09f;
}

.star-rating label input:focus:not(:checked)~.icon:last-child {
    color: #000;
    text-shadow: 0 0 5px #09f;
}


/* end od stars */

.card-effect:hover .card {
    z-index: 99;
    transition-duration: 500ms;
    transform: scale(1.05);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card {
    transition-duration: 500ms;
    white-space: inherit;
}

.center-v {
    padding: 10px;
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0;
    margin-left: 0;
    position: absolute;
    left: 35%;
    top: 50%;
    -ms-transform: translate(-26%, -50%);
    transform: translate(-26%, -50%);
}