/* review-wall-admin-wrap */
.review-wall-admin-wrap {
    margin: 20px 0;
}

/* review-wall-admin-container */
.review-wall-admin-container {
    max-width: 1200px;
}

/* review-wall-section */
.review-wall-section {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    background: #fff;
}

/* review-wall-modal */
.review-wall-modal {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.review-wall-modal__content {
    position: relative;
    width: 50%;
    max-width: 600px;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #fefefe;
}

.review-wall-modal__close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    line-height: 1;
    color: #aaa;
    font-weight: bold;
    cursor: pointer;
}

.review-wall-modal__close:hover,
.review-wall-modal__close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.review-wall-modal .submit {
    padding: 0;
}

/* keyframes loading-spin */
@keyframes loading-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}