.block_container {
padding: 10px;
border: 2px dotted #000;
border-radius: 10px;
margin-bottom: 20px;
}
.question_container {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
.question_container h2 {
font-weight: 500;
font-size: 20px !important;
color: #6dabe4;
}
.question_title {
margin: 0;
line-height: inherit;
}
.display_answer_cross {
font-size: 32px;
line-height: 32px;
margin-right: 20px;
font-weight: 600;
height: 32px;
}
.cross_open {
animation: 0.5s cross_open;
}
.cross_closed {
animation: 0.5s cross_closed;
}
@keyframes cross_open {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-90deg);
}
}
@keyframes cross_closed {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(90deg);
}
}
.answer_div {
max-height: 0;
overflow: hidden;
transition: 0.5s ease max-height;
}
.answer_div p {
font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
margin: 0;
font-size: 16px;
}
.centered {
margin: 0 auto;
}