/* SPEK-ACCORDION */

html {
	scroll-behavior: smooth;
	scroll-padding: 80px;
}

.spek-plugin-accordion {
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    margin-bottom: 0;
    padding: 10px 20px;
    background-color: #45423b;
    color: white;
	border: 0px solid #0C659E;
    margin-top: 20px;
    transition: all 0.2s linear;
    text-transform: none;
    border-radius: 0px;
    font-size: 20px;
    font-weight: 400;
    position: relative;
}

.spek-plugin-accordion:after {
    content: "+";
    position: absolute;
    right: 0;
	top: calc(50% - 7px);
    color: white;
    font-size: 25px;
    font-weight: 300;
    padding: 0 25px;
	
	height: 14px;
    display: flex;
    align-items: center;
}


@media screen and (min-width: 768px) {
.spek-plugin-accordion:hover {
    opacity: 0.8;
}
}

.spek-plugin-accordion.active {
    border-radius: 0px 0px 0 0;
}

.spek-plugin-accordion.active:after {
    content: "−";
}

/* Style the accordion panel. Note: hidden by default */
.answer-panel {
    display: none;
    overflow: hidden;
    transition: all 0.2s linear;
    max-height: 0px;
    padding: 0px 20px;
    background-color: #aaa09070;
    border-radius: 0 0 0px 0px;
    border: 0px solid #0C659E;
	border-top: 0px;
	font-size:18px;
}

.answer-panel p {
    margin-bottom: 10px;
	font-size: 18px;
}

.answer-panel p:last-child {
    margin-bottom: 0;
}

.answer-panel p.faq-button {
	display: inline-block;
	margin-top: 10px;
}

.answer-panel p.faq-button:hover a {
	opacity: 0.8;
}


.answer-panel a {
	color: inherit;
	text-decoration: underline;
}
.answer-panel a:hover {
	color: inherit;
	text-decoration: underline;
	opacity: 0.8;
}

.answer-panel .faq-button a {
	border: 2px solid #a2165a;
    background-color: #a2165a;
    color: #fff;
    cursor: pointer;
    transition: 300ms;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.answer-panel img {
    width: 33%;
    margin: 0 0 0 20px !important;
}

@media (max-width:800px) {
	.spek-plugin-accordion {
		padding: 10px 27px 10px 12px;
		line-height: 1.2 !important
	}

	.spek-plugin-accordion:after {
		margin-right: 10px;
		padding: 5px;
	}
}