.section-post-comments {
    margin-top: 2rem !important;
}

.kk-star-ratings {
    margin-bottom: .5rem !important;
}

.loaders {
    height: 50px;
    line-height: 60px;
}

.loader {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.loader-quart {
    border-radius: 50px;
    border: 6px solid rgba(255, 255, 255, 0.4);
    margin-right: .5em;
}

.loader-quart:after {
    content: "";
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    border-radius: 50px;
    border: 6px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        tranform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        tranform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        tranform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        tranform: rotate(360deg);
    }
}
