@charset "UTF-8";

.modal-knowledge-comment-content {
	background: #fff;
	padding: 5% 3%;
    border-radius: 10px;
}

.modal-knowledge-comment-content h2 {
    width: 100%;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 0 0 0 20px;
    position: relative;
    box-sizing: border-box;
}

.modal-knowledge-comment-content h2:before {
	content: "";
    width: 4px;
    height: 20px;
    background: #0097E0;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
}

.modal-knowledge-comment-content textarea {
	margin-top: 1.5em;
  	height: 8em;
	width: 100%;
}

.modal-knowledge-comment-content button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 20px 0;
    color: #FFF;
    font-size: 1.125rem;
    width: 240px;
    height: 50px;
    border-radius: 25px;
    background-color: #3497E0;
    cursor: pointer;
}

.modal-knowledge-comment-content button.modal-btn-close-label {
    background-color: #9fa7ac;
}

.modal-knowledge-comment-content .lyt-btn-wrap {
	display: flex;
    justify-content: center;
    
}

.modal-knowledge-comment-content .input-comment-success {
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
    
}
    
.modal-knowledge-comment-content .input-comment-success .modal-btn-close-label {
	margin-top: 4em;
}

.modal-knowledge-comment-content .add-notes {
	margin-top: 0.9em;
	font-size: 0.9em;
}

@media screen and (max-width: 640px) {

	.knowledgeCommentModal {
		top: 10vh !important;
		left: 0 !important;
		width: 100vw !important;
		height: 80vh !important;
	}
	
	.modal-knowledge-comment-content .lyt-btn-wrap {
	    display: flex;
	    justify-content: center;
	    flex-direction: column-reverse;
	    align-items: center;
	}
	
	.modal-knowledge-comment-content .input-comment-success .modal-btn-close-label {
		margin-bottom: 4em;
	}
	
}

