.modal-wrapper {
    z-index: 3;
    display: none;
    padding-top: 100px;
	padding-left: 30px;
	padding-right: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-container {
	background: #fff;
	max-width: 1000px;
	width: 100%;
	height: 80%;
	margin: 0 auto;
	padding: 24px;
	border-radius: 8px;
	position: relative;
}

.modal-close-btn {
	position: absolute;
	top: -24px;
	right: -24px;
	width: 24px;
	height: 24px;
	background-image: url('../img/close-modal.png');
	background-repeat: no-repeat;
	background-size: 24px 24px;
	background-position: center;
	cursor: pointer;
}

.faq-main {
	display: flex;
	margin-top: 17px;
	height: calc(100% - 44px);
}

.faq-filters {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 120px;
	margin-top: 24px;
	padding-right: 5px;
	height: calc(100% - 44px);
	overflow-y: auto;
}

.faq-checkbox {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
  }
  
.faq-checkbox-label {
	position: relative;
	cursor: pointer;
	color: #010101;
	font-size: 16px;
	font-weight: 400;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	line-height: 20px;
	white-space: nowrap;
}

.faq-checkbox-label:before {
	content:'';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #535353;
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 6px;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 8px;
}
  
.faq-checkbox:checked + .faq-checkbox-label:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 4px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-50%, -50%);
}

.faq-checkbox:checked + .faq-checkbox-label:before {
	background-color: #F18500;
	border: 2px solid #F18500;
}

.faq-checkbox:checked + .faq-checkbox-label {
	font-weight: 600;
	color: #F18500;
}

.faq-toggle {
	display: flex;
	justify-content: space-between;
}

.faq-toggle-title {
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	color: #000000;
}

.faq-toggle-button {
	border: none;
	outline: none;
	background: none;
	font-size: 10px;
	line-height: 12px;
	color: #000000;
}

.faq-divider {
	width: 2px;
	border-radius: 1px;
	background: rgba(83, 83, 83, 0.2);
	margin: 0 40px 0 12px;
}

.faq-answers-container {
	width: 100%;
}

.faq-answers {
	margin-top: 10px;
	height: calc(100% - 64px);
	overflow: auto;
	scrollbar-width: thin;
    scrollbar-color: #b3b3b3 #fff;
}

@media (max-width: 992px) {
	.modal-container {
		max-width: 680px;
	}
}

@media (max-width: 768px) {
	.w3-modal {
		padding-top: 50px;
	}

	.faq-divider {
		display: none;
	}

	.faq-toggle {
		justify-content: flex-end;
		margin-top: 24px;
	}

	.faq-toggle-title {
		display: none;
	}

	.faq-toggle-button {
		font-size: 12px;
		line-height: 15px;
		color: rgba(83, 83, 83, 0.6);
		padding: 2px 8px;
		border: 1px solid rgba(135, 135, 135, 0.2);
		border-radius: 8px;
	}

	.faq-filters {
		flex-direction: row;
		overflow-x: auto;
		gap: 8px;
		margin-top: 8px;
		height: auto;
	}

	.faq-filters::-webkit-scrollbar {
		display: none;
		-ms-overflow-style: none;
  		scrollbar-width: none;
	}

	.faq-checkbox-label:after {
		content: none;
	}

	.faq-checkbox-label:before {
		content: none;
	}

	.faq-checkbox:checked + .faq-checkbox-label:after {
		content: none;
	}

	.faq-checkbox-label {
		padding: 12px 8px;
		border-radius: 24px;
		font-size: 14px;
		line-height: 17px;
		font-weight: 600;
		border: 1px solid rgba(83, 83, 83, .7);
		color: rgba(83, 83, 83, .7);
		white-space: nowrap;
	}

	.faq-checkbox:checked + .faq-checkbox-label {
		border: 1px solid #f65c0000;
		background: #F185001a;
	}

	.faq-answers {
		margin-top: 16px;
		height: calc(100% - 156px);
	}
}

@media (max-width: 500px) {
	.modal-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}

	.modal-container {
		padding: 12px;
		height: 90%;
	}

	.modal-close-btn {
		top: -20px;
    	right: -18px;
	}

	.faq-answers {
		height: calc(100% - 166px);
	}
}

.loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-text {
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    font-weight: 400;
    color: #b3b3b3;
    margin: 16px 0;
}

.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #F18500;
    position: relative;
    height: 100px;
    width: 100px;
}

.dot-spinner.white {
    --uib-color: white;
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
    0%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}