*:focus {
    outline: none;
}
.sp-seo-faq ul {
	padding: 0;
}
.sp-seo-faq li {
	list-style: none;
}
.faq-question {
	position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 8px;
    /*box-shadow: 0 1px 3px rgba(0,0,0,.12),0 2px 2px rgba(0,0,0,.06),0 0 2px rgba(0,0,0,.07);*/
    /*border: 1px solid #f2f4f8;*/
    border: 1px solid #e5f1f1;
	padding: 24px;
    transition: border-color .3s ease-in-out;
}
.faq-question:hover {
    border-color: rgb(58, 138, 114);
    /*box-shadow: 0 2px 4px rgba(0,0,0,.12),0 3px 3px rgba(0,0,0,.06),0 0 3px rgba(0,0,0,.07);*/
}
.faq-link {
    position: relative;
    cursor: pointer;
    margin: -24px;
    padding: 18px 32px 18px 24px;
    font-size: 16px;
    line-height: 1.35;
	list-style: none;
}
.faq-link:after {
    position: absolute;
    content: "";
    top: 24px;
    right: 7px;
    pointer-events: none;
    width: 18px;
    height: 14px;
    transition: .25s;
    background: url(/catalog/view/theme/default/image/faq-chevron-down.svg) no-repeat 50%;
}
.faq-text {
	font-size: 14px;
	margin-top: 20px;
    color: var(--bs-gray-700);
}
.faq-text ul li:before {
	content: '✓\00a0';
    display: inline-block;
}
.faq-title{
	color: #000;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    .faq-question {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        padding-left: 1rem;
    }
    .faq-link {
        font-size: 14px;
    }
    .faq-link:after {
        top: 21px;
    }
    .faq-text {
        font-size: 13px;
    }
}