.comments {
    /*max-width: 735px;*/
    margin: 20px auto;
    width: 100%;
}
.comentar {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    border: 1.5px solid #CCC;
    border-radius: 5px;
    justify-content: space-between;
}
.comentarios {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: baseline;
    word-break: break-word;
}
.comentario {
    position: relative;
    /* border: 1.5px solid #ccc; */
    border-radius: 5px;
    margin-bottom: 30px;
    width: 49%;
    box-shadow: 1px 1px 2px 2px rgb(110 110 110 / 17%);
}
.comentar #comentario {
	width: 100%;
	height: 100px;
	border: none;
	border-bottom: 1px solid #EEE;
	outline: none;
	padding: 15px;
	font-size: 16px;
	color: #676767;
	resize: none;
}
.comentar #comentario::placeholder {
	color: #9a9a9a;
}
.comentar #comentario:focus::placeholder {
	opacity: 0.5;
}
.comentar .contador {
    color: #9a9a9a;
    font-size: 12px;
}
.contador.maxcaracteres {
	color: red;
}
.comment-footer {
    height: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    padding: 0 15px;
}
.encuesta {
    padding: 0 15px;
    display: none;
    position: relative;
}
.encuesta input {
	margin: 7px 0;
	width: 90%;
    font-size: 15px;
}
.addOption {
    position: absolute;
    bottom: 2px;
    left: 90%;
    cursor: pointer;
    opacity: 0.6;
    font-size: 20px;
}
.addOption:hover, .addOption:active {
	opacity: 1;
}
.btn-responder {
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0;
    height: 34px !important;
    width: 34px;
}

.comentario>p {
	padding: 10px;
    font-size:14px;
    margin:0px;
}

.respuesta {
    position: relative;   
}
.respuesta input{
    font-size:15px;
    height: 35px;
}
.respuesta-box {
    padding: 15px;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
}
.txt-respuesta {
	padding-right: 34px;
}
.txt-respuesta:active+.btn-responder, .txt-respuesta:focus+.btn-responder, .btn-responder:hover, .btn-responder:focus {
	color: #66afe9 !important;
}
.separator hr {
    border: 1px solid #EEE;
    margin: 0;
    padding: 0;
}

.separator {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

span.vota {
    position: relative;
    padding: 5px 8px;
    border: 1px solid #EEE;
    font-size: 12px;
    background: #FFF;
    top: -12px;
    color: #8e8e8e;
    font-weight: bold;
}
.votar {
	padding: 0 15px;
}
.votar button {
    background: transparent;
    width: 100%;
    display: block;
    margin: 6px 0;
    border: 2px solid #19ac3e;
    border-radius: 10px;
}
.votar button:hover, .votar button:focus {
    background: #f3f3f3;
}
.votar>ul, .votar>ul>li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.time {
    padding: 0px 15px 5px;
    text-align: right;
    display: block;
    color: #848484;
    font-size: 12px;
}
.nuevo {
	display: none;
}
.crespuesta {
    padding: 5px 10px;
    background: #feffc8;
    border-radius: 5px;
    margin: 5px 0;
}

.validada {
	background-color: #c7ffe5;
    background-repeat: no-repeat;
    background-position: top right;
}

.crespuesta>p {
    font-size: 12px;
    margin-bottom: 3px;
}

.crespuesta>.time-respuesta {
    font-size: 10px;
    color: #888;
}
a.ver-mas {
    font-size: 12px;
    margin: 5px 0 0 0;
    color: #999;
}
.ver-mas.nohay {
    cursor: not-allowed;
    text-decoration: none;
}
button.btn {
    outline: none !important;
    font-size: 11px;
    height: 34px;
    padding: 0 10px;
    font-weight: 700;
    font-size: 13px;
}
li.opt-voted {
    position: relative;
    font-size: 12px;
    height: 35px;
}

.opt-voted .barra {
    position: absolute;
    height: 30px;
    display: block;
    left: 0;
    top: 0;
    background: #eee;
    z-index: 1;
    border-radius: 5px;
}

.opt-voted .opt {
    z-index: 2;
    color: #000 !important;
    position: absolute;
    line-height: 30px;
    left: 15px;
}
.btn.btn-votar img {
    width: 19px;
}
.modcomment {
    cursor: pointer;
}
@media screen and ( max-width: 620px ) {
	.comentarios {
	    flex-direction: column;
	}
	.comentario {
		width: 100%;
	}
}