/* Custom styling for Details block */
details {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

details::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background: #E6E6E6;
		margin: 20px 0;
}

details summary {
    list-style: none;
    padding: 1rem 0;
    cursor: pointer;
    color: #009CDE;
		font-size: 20px;
    font-weight: 700;
		line-height: 27px;
		margin: 0  0 .625rem 0;
    position: relative;
    padding-right: 2rem;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('./assets/plus-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

details[open] summary::after {
    background-image: url('./assets/minus-icon.svg');
}

details > div {
    padding: 1rem 0;
}
