/* CSS for the filter slider element */
:root {
    --beon-filter-white: white;
	--beon-filter-1: #F2EFE8;
	--beon-filter-2: #DBD6C9;
	--beon-filter-text: #848A8D;
	--beon-filter-clicked-1: #E9EEFC;
	--beon-filter-clicked-2: #3463F5;
	--beon-filter-clicked-text: black;
	--beon-filter-disabled-1: #EEE;
	--beon-filter-disabled-2: #444;
	--beon-filter-disabled-text: #444;
	--beon-filter-btn: var(--beon-filter-clicked-2);
	--beon-filter-btn-hover: #1955CE;
    --beon-svg-standard: #8D7D48;
}

#shortcode-344-9 {
    width: 100%;
}
.beon-filter-slider-wrapper {
    width: 100%;
    min-height: 300px;
    overflow: hidden;
	padding-top: 65px;
	margin-top: -65px;
	padding-bottom: 65px;
}
.beon-filter-slider-wrapper .beon-unit-slider {
	position: relative;
}
.filter-btn-wrapper {
    width: 100%;
	position: relative;
}
.filter-btn-wrapper .filter-btn-wrapper-bg {
	background-color: var(--beon-filter-white);
    padding: 0 30px;
    width: max-content;
    z-index: 1;
    margin: auto;
    position: relative;
}
.filter-btn-wrapper .separator-line {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	background: var(--border-color);
}
.beon-slider-button-wrapper {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--beon-filter-white);
}
.beon-slide {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
}
.beon-disabled.beon-slide {
	cursor: default;
}
.beon-small-circle {
    background-color: var(--beon-filter-2);
	transition: background-color 0.4s ease;
    border-radius: 50%;
    padding: 10px;
    /* padding-top: 17px; */
    height: 38px;
    width: 38px;
    text-align: center;
    position: relative;
    color: var(--beon-filter-white);
    font-size: 23px;
    align-self: flex-end;
    top: 50px;
    display: flex;
    /* display: none; */
    align-items: center;
    justify-content: center;
}
.beon-large-circle svg {
    padding: 20px;
    width: 100px;
    height: 100px;
}
.beon-large-circle path {
    fill: var(--beon-svg-standard);
	transition: fill 0.4s ease;
}
.beon-clicked .beon-small-circle, .beon-slide:hover .beon-small-circle {
    background-color: var(--beon-filter-clicked-2);
}
.beon-clicked .beon-large-circle path, .beon-slide:hover path {
    fill: var(--beon-filter-clicked-2) !important;
}
.beon-disabled .beon-small-circle {
    background-color: var(--beon-filter-disabled-2);
}
.beon-disabled .beon-large-circle path {
    fill: var(--beon-filter-disabled-2);
}
.beon-large-circle {
    background-color: var(--beon-filter-1);
	transition: background-color 0.4s ease;
    border-radius: 50%;
    height: 160px;
    width: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.beon-large-circle img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}
.beon-clicked .beon-large-circle, .beon-slide:hover .beon-large-circle {
    background-color: var(--beon-filter-clicked-1);
}
.beon-disabled .beon-large-circle {
    background-color: var(--beon-filter-disabled-1);
}
.beon-slider-name {
    text-transform: uppercase;
    text-align: center;
    padding-top: 16px;
    color: var(--beon-filter-text);
}
.beon-clicked .beon-slider-name {
    color: var(--beon-filter-clicked-text);
}
.beon-disabled .beon-slider-name {
    color: var(--beon-filter-disabled-text);
}
.beon-filter-button {
    font-size: 18px;
    background-color: var(--beon-filter-btn);
    transition: background-color 0.4s ease;
    padding: 15px;
    border-radius: 30px;
    max-width: 250px;
    color: var(--link-color);
}
.beon-filter-button:hover {
    background-color: var(--beon-filter-btn-hover);
}
.beon-filter-button:hover:active {
    color: var(--beon-filter-white);
}
.beon-wunsch {
    font-size: 14px;
    margin-top: 20px;
    color: var(--beon-filter-text);
}

.shake-animation {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}
.beon-filter-slider-wrapper .swiper-slide {
    width: 180px;
}

@keyframes shake {
    0% { transform: translate(0.5px, 0.5px) rotate(0deg); }
    10% { transform: translate(-0.5px, -1px) rotate(-0.25deg); }
    20% { transform: translate(-1px, 0px) rotate(0.25deg); }
    30% { transform: translate(1px, 1px) rotate(0deg); }
    40% { transform: translate(0.5px, -0.5px) rotate(0.25deg); }
    50% { transform: translate(-0.5px, 1px) rotate(-0.25deg); }
    60% { transform: translate(-1px, 0.5px) rotate(0deg); }
    70% { transform: translate(1px, 0.5px) rotate(-0.25deg); }
    80% { transform: translate(-0.5px, -0.5px) rotate(0.25deg); }
    90% { transform: translate(0.5px, 1px) rotate(0deg); }
    100% { transform: translate(0.5px, -1px) rotate(-0.25deg); }
}

@media only screen and (max-width: 1024px) {
    .beon-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .beon-filter-slider-wrapper {
        width: 100% !important;
        min-height: 250px;
        overflow: hidden;
		margin-top: 0px;
		padding-bottom: 35px;
    }
    .beon-slider-button-wrapper {
        width: 100% !important;
        flex-direction: row;
        margin-left: 0;
        justify-content: flex-start;
    }
    .beon-slide {
        transform: scale(0.9);
    }
    @keyframes shake {
        0% { transform: scale(0.8) translate(0.5px, 0.5px) rotate(0deg); }
        10% { transform: scale(0.8) translate(-0.5px, -1px) rotate(-0.25deg); }
        20% { transform: scale(0.8) translate(-1px, 0px) rotate(0.25deg); }
        30% { transform: scale(0.8) translate(1px, 1px) rotate(0deg); }
        40% { transform: scale(0.8) translate(0.5px, -0.5px) rotate(0.25deg); }
        50% { transform: scale(0.8) translate(-0.5px, 1px) rotate(-0.25deg); }
        60% { transform: scale(0.8) translate(-1px, 0.5px) rotate(0deg); }
        70% { transform: scale(0.8) translate(1px, 0.5px) rotate(-0.25deg); }
        80% { transform: scale(0.8) translate(-0.5px, -0.5px) rotate(0.25deg); }
        90% { transform: scale(0.8) translate(0.5px, 1px) rotate(0deg); }
        100% { transform: scale(0.8) translate(0.5px, -1px) rotate(-0.25deg); }
    }
    .beon-filter-button {
        font-size: 16px;
        padding: 20px;
        padding-top: 20px;
    }
    .beon-wunsch {
        font-size: 16px;
        margin-top: 0px;
        margin-left: 10px;
    }
    
}


@media only screen and (max-width: 767px) {
    .beon-filter-button {
        font-size: 14px;
        padding: 15px;
        padding-top: 15px;
    }
    .beon-wunsch {
        font-size: 12px;
        margin-top: 0px;
        margin-left: 10px;
        line-height: 14px;
    }
   
    .beon-slide {
        width: auto;
    }
    .beon-filter-slider-wrapper .swiper-slide {
        width: 150px;
    }
	.filter-btn-wrapper {
		width: auto;
	}
	.filter-btn-wrapper .filter-btn-wrapper-bg {
		padding: 0;
	}
	.beon-slider-button-wrapper {
		justify-content: space-evenly;
	}
}

@media only screen and (max-width: 380px) {

.beon-slide {
	transform: scale(0.8);
}
}
