.comment-form-captcha {
    margin-top: 15px;
    padding: 10px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.comment-form-captcha label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.comment-form-captcha input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
}




/* ACCORDION  For none-betheme*/
details {
       box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .15);
    padding: 12px;
    max-height: 55px;
    overflow: hidden;
    transition: max-height .5s ease;
}
details[open] {transition: max-height 0.5s;
    max-height: 500px;}

details summary {
    font-weight: bold;
		cursor: pointer;
	
}
details:hover summary
 {
    color: #74c622;
}
details p {
    margin-top: 15px;
}
details summary:before {
    content: "+";
    font-size: 18px;
    margin: 0 10px;
}
details[open] summary:before {
    content:"×";
    font-size: 18px;
    margin: 0 10px;
}
/* ACCORDION */
