/* @author Tim himself */

.greeva h3 {
    color: #299bdc;
    text-align: left;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 25px;
    padding-right: 40px;
    transition: 0.25s all;
    position: relative;
    letter-spacing: 1px;
	width:100%;
	background:#dbdbdb;
	padding: 5px 0;
	border-left: 5px solid;
	border-radius: 5px;
}
.greeva h3.active {
    background:#aeaeae;
	padding: 5px 0;
	border-left: 5px solid;
	border-radius: 5px;
}
.greeva h3::before {
	content: attr(data-prefix);
	font-size: 18px;
	margin-right: 9px;
}
.greeva > div {
	display: none;
	background: #fff;
    border-radius: 0;
    border: 1px solid #cdcdcd;
    text-align: left;
    padding: 31px 33px;
    margin-bottom: 9px;
	overflow:hidden;
	box-shadow: 0px 0px 36px 16px #e3e3e3;
}

.greeva .collapseIcon {
	position: absolute;
    right: 10px;
    top: 52%;
    font-size: 30px;
    font-weight: 400;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
/*--/Responsive--*/
@media(max-width:640px){
	.greeva > div {
		display: none;
		background: #fff;
		border-radius: 0;
		border: 1px solid #cdcdcd;
		text-align: left;
		padding: 15px 15px;
		margin-bottom: 9px;
	}
	.greeva h3 {
      padding: 15px 20px;
	}
}
@media(max-width:414px){
	.greeva h3 {
		padding: 9px 15px;
		margin-bottom: 14px;
		padding-right: 40px;
		font-size: 1.2em;
	}
}

.greeva h4{
	color:orange;
	margin-top:15px;
}
/*--//Responsive--*/