.wrapper {
    max-width: 600px;
    width: 100%;
    margin: 2vh auto;
}

.wrapper .content-link {
	margin: 10px;
	width: 100%;
}

.wrapper .content-link a {
	color: #3E474F;
    font-size: 1.2em;
}

.wrapper input {
    display: none;
}

.wrapper label {
    display: flex;
    width: 100%;
    height: 50px;
    cursor: pointer;
    border: 2px solid #3E474F;
    user-select: none;
}

.wrapper label div:first-child {
    width: 100%;
    line-height: 45px;
    margin-left: 10px;
    font-size: 1.2em;
}

.cross{
    margin-right:15px;
    margin-top:3px;
}

.cross:before,.cross:after {
    content: '';
    border-top: 2px solid #3E474F;
    width: 15px;
    display: block;
    margin-top: 18px;
    transition: 0.3s;
}

.cross:after {
    transform: rotate(90deg);
    margin-top: -2px;
}

.content {
    box-sizing: border-box;
    font-size: 0.9em;
    margin: 10px 10px;
	max-height: 0;
    overflow: hidden;
    transition: max-height, .5s;
}

.wrapper input:checked ~ .content {
    max-height: 400px;
    transition: max-height, 1s;
}

.wrapper input:checked ~ label .cross:before {
    transform: rotate(180deg);
}

.wrapper input:checked ~ label .cross:after {
    transform: rotate(0deg);
}

.optiuni {
	margin: auto;
    font-size: 1.2em;
	white-space: nowrap;
    max-width: 310px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
	border: none;
	background: #819db5;
	color: #FFF;
	text-align: center;
	margin-left: 0px;
	margin-right: 10px;
}

.questions{
    margin-top:20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height, .5s;
}

.questions label{
    border:none;
    box-shadow: none;
    margin:0;
}

.wrapper input:checked ~ .questions {
    max-height: 400px;
    transition: 1s;
}