.CONVERSATIONAL-FILTER .checkbox-card {
	background-color: #ffffff;
	padding: 20rem;
	border-radius: 10px;
	text-align: center;
	position: relative;
	height: 100%;
	box-sizing: border-box;
}

.CONVERSATIONAL-FILTER .checkbox-card .icon {
	width: fit-content;
	margin: auto;
	margin-bottom: 20rem;
	min-height: 84px;
}
.CONVERSATIONAL-FILTER .checkbox-card label::after {
	content: '';
	position: absolute;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	top:0;
	left: 0;
}
.CONVERSATIONAL-FILTER .checkbox-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.CONVERSATIONAL-FILTER .checkbox-card .checkmark {
	display: block;
	margin: auto;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
	border: 1px solid #999999;
	position: relative;
	z-index: 0;
	border-radius: 6px;
}
.CONVERSATIONAL-FILTER .checkbox-card:hover input ~ .checkmark {
  background-color: var(--cream);
}
.CONVERSATIONAL-FILTER .checkbox-card input:checked ~ .checkmark {
  background-color: var(--orange);
	border: 1px solid var(--orange);

}
.CONVERSATIONAL-FILTER .checkbox-card .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.CONVERSATIONAL-FILTER .checkbox-card input:checked ~ .checkmark:after {
  display: block;
}
.CONVERSATIONAL-FILTER .checkbox-card .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.CONVERSATIONAL-FILTER .checkbox-card.row{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.CONVERSATIONAL-FILTER .checkbox-card.row .icon{
	margin: 0;
	min-height: 0;
	margin-right: 40rem;
}
.CONVERSATIONAL-FILTER .checkbox-card.row .checkmark {
	margin: 0 0 0 auto;
}

.filter-form-container  {
	position: relative;
	overflow: hidden;
	transition: height 0.55s;
}

.filter-form-container.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.filter-form-container .b-columns {
	transition: all 0.75s;

}
.filter-form-container .b-columns:not(.active-step) {
	position: absolute;
	width: calc(100% + 40rem);
	top: 0;
	transform: translateX(100%);
}
.filter-form-container .b-columns.prev-step {
	transform: translateX(-100%);
}
.filter-form-container .b-columns.active-step {
	transform: translateX(0);
}
.filter-form-container .b-columns.topics .b-column,
.filter-form-container .b-columns.catergories .b-column {
	display: block;
}
.filter-form-container .b-columns.topics .b-column.unavalible,
.filter-form-container .b-columns.categories .b-column.unavalible {
	display: none;
}
 .b-columns.action-buttons {
	margin-top: 20rem;
	position: relative;
}
.b-columns.action-buttons .b-column:not(.active-buttons) {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
}
.b-columns.action-buttons .b-column.active-buttons {
	display: flex;
	gap: 20rem;
}
@media screen and (max-width: 960px) {
	.b-columns.action-buttons .b-column.active-buttons {
		display: flex;
		gap: 20rem;
		width: 100%;
		justify-content: center;
	}
	.b-columns.action-buttons .b-column.active-buttons .b-button {
		min-width: fit-content;
		width: 50%;
	}
}
