@charset "utf-8";
/* CSS Document */
.accordion-container {
  width:100%;
  max-width: 1200px;
  margin: auto;
  margin-top:20px;
}

.question {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
	position: relative;
    cursor: pointer;
    padding: 14px 20px;
	background-color: #eee;
    box-shadow:	0 1px 3px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-weight: bold;
    transition: .4s ease-out;
}
.question.active {
    background-color: var(--link-blue);
    color: #fff;
	box-shadow: 0 3px 4px rgba(0,0,0,0.4);
}
.accordion ul li:first-child .question {
	border-radius: 8px 8px 0 0;
}
.accordion ul li:last-child .question {
	border-radius: 0 0 8px 8px;
}

.answer {
    
    display: none;
    padding: 16px 16px 16px 24px;
	
    width: 100%;
    background: linear-gradient(to right, transparent 8px, var(--second-color) 8px, var(--second-color) 12px, #fff 12px 100%);
}
.accordion ul li:last-child .answer {
	border-radius: 0 0 4px 4px;
	box-shadow:	0 1px 2px rgba(0,0,0,0.3);
}


