.submit-comment-box {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
    margin: 1em;
    padding: 6px 8px;
    background-color: #dad7c7;
    border-bottom: solid #5a5757 3px;
    border-radius: 8px;
    transition: all .4s;
    -webkit-transition: all .4s;
    display: flex;
    align-items: center;
    font-family: monospace;
}

.submit-comment-box img {
    position: relative;
    width: 25px;
    margin-right: 4px;
}

.submission-form {
    width: 0px;
    height: 0px;
    transition: all .4s;
    -webkit-transition: all .4s;
    overflow: hidden;
}

.submission-form-big {
    width: 280px;
    height: 250px;
    transition: all .4s;
    -webkit-transition: all .4s;
    overflow: hidden;
}

.submission-form-full {
    transition: all .4s;
    -webkit-transition: all .4s;
    overflow: hidden;
}

.comment-field {
    width: 100%;
    height: calc(100% - 4em);
    box-sizing: border-box;
    border: 0;
    resize: none;
}

.block {
    display: block;
}

.button-row {
    text-align: right;
}

.submit-button {
    display: inline-block;
    padding: 1em;
    margin-top: .5em;
    min-width: 100px;
    border: 0px solid #222;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .05);
    border-radius: 100px;
    background-color: #e0e0D0;
    color: #808060;
}

button.cancel {
    background-color: #c0c0b0;
    color: white;
}

button.close {
    background-color: #e0f0d0;
}


.none {
    display: none;
}


@media screen and (max-width: 600px) {
    .submit-comment-box {
        bottom: 90px;
    }
    


}
