#backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}
.comment-modal {
    z-index: 2;
    position: fixed;
    top: 30%;
    margin: 0 -200px;
    left: 50%;
    overflow: hidden;
    width: 400px;

.comment-modal-content {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: linear-gradient(180deg, #fce4a6, white 20%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comment-modal-header {
    width: 100%;
    padding: 30px 80px 10px 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    p {
        line-height: 30px;
        margin-bottom: 10px;
    }
}

#comment-modal-form {
    padding: 10px 80px 30px 80px;
}

input {
    background-color: #f8f9fa;
    font-family: open sans, sans-serif;
    border: 1px solid #ccc;
}

label {
    font-size: 13px;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}
.input {
    margin-bottom: 10px;
}

.comment-modal-header p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #2491ca;
}

.comment-modal-content label,
.comment-modal-content input[type="text"],
.comment-modal-content input[type="email"],
.comment-modal-content input[type="submit"] {
    width: 100%;
    display: block;
}

.comment-modal-content input[type="text"],
.comment-modal-content input[type="email"],
.comment-modal-content input[type="submit"] {
    border-radius: 5px;
}
.comment-modal-content input[type="submit"] {
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    font-family: lato, sans-serif;
    padding: 8px 16px;
    margin: 20px auto;
    color: white;
    border-color: #4a669e;
    background: #4a669e;
}

.comment-modal-content .close {
    position: absolute;
    top: 5px;
    right: 20px;
    color: #ccc;
    font-size: 25px;
    cursor: pointer;
}
}

@media (max-width: 768px) {
    .comment-modal {
        .comment-modal-content {
            top: 30%;
            left: 20%;
            transform: none;
            width: 80%;
            margin: 0 auto;
            .close {
                right: 60px;
            }

        }
        .comment-modal-header {
            padding: 30px 30px 10px 30px;
        }
        #comment-modal-form {
            padding: 10px 30px 30px 30px;
        }
    }

}