.mobile {
	display: none !important;
}
.deckcalc {
	font-family: Inter;
	display: flex;
    flex-direction: column;
    gap: 1.6rem;
	font-size: 2rem;
	margin: 15.7rem 0;
	color: #181D27;
}
.deckcalc *:focus-visible {
	outline: none !important;
}
.deckcalc-container {
	width: 144rem;
	margin: 0 auto;
}
.deckcalc h2 {
	display: flex;
    gap: 1rem;
    align-items: center;
	font-size: 3.2rem;
    font-weight: 500;
    line-height: 3.873rem;
    margin-bottom: 3rem;
}
.deckcalc h2 a {
	display: flex;
    width: 2.1rem;
    height: 2.1rem;
}
.deckcalc-section {
	margin-bottom: 4.4rem;
}
.deckcalc-section:last-child {
	margin-bottom: 3.5rem;
}
.deckcalc-section-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
    gap: 4rem;
	padding: 5rem 6rem 4rem;
	border: 0.1rem solid #00000026;
	box-shadow: 0.4rem 0.4rem 1.5rem 0 #21171042;
	box-sizing: border-box;
	border-radius: 0.8rem;
}
.deckcalc-section-name {
	position: absolute;
    top: 1.9rem;
    right: 1.9rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 4.841rem;
    color: #6F6E6E4D;
}
.deckcalc-section-block-wrapper {
	display: flex;
    justify-content: space-between;
}
.deckcalc-section-block-calc {
	width: 75.7rem;
	z-index: 1;
}
.deckcalc-section-sidebar {
	width: 45.1rem;
}
.deckcalc-section-block {
	
}
.deckcalc-results {
	display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
}
.deckcalc-results-deck-platform {
	
}
.deckcalc-results-total-cost {
	font-size: 2.5rem;
    font-weight: 500;
}
.deckcalc-results-total-cost p:last-child {
	font-size: 1.6rem;
}


.deckcalc-sliders {
	display: flex;
    flex-direction: column;
    gap: 2rem;
}
.deckcalc-slider {
	display: flex;
    align-items: flex-start;
}
.deckcalc-slider-info {
	width: 19.2rem;
    display: flex;
    gap: 0.4rem;
}
.deckcalc-slider-name {
	width: 7.72rem;
	font-size: 2rem;
    line-height: 2.42rem;
    color: #6F6E6E;
}
.deckcalc-slider-value {
	font-size: 2.2rem;
    font-weight: 600;
    line-height: 2.4rem;
}
.deckcalc-slider-unit {
	font-size: 1.4rem;
    line-height: 2.8rem;
}
.deckcalc-slider-field-wrapper {
	width: calc(100% - 20rem);
	overflow: hidden;
    padding: 0 1.1rem;
}
.deckcalc-slider-line {
    border: none !important;
	height: 1.8rem;
	background: unset !important;
}

.deckcalc-slider-line:after {
	content: "";
	position: relative;
	top: 0.6rem;
	display: flex;
	width: 100%;
	height: 0.4rem;
    background: #8D8D8D4D;
}


.deckcalc-slider .ui-slider-handle {
	top: 0;
	width: 1.8rem;
	height: 1.8rem;
	margin-left: -0.9rem;
	background: unset;
	border: none !important;
	background-image: url('../../images/slider-handle.svg');
	background-repeat: no-repeat;
	background-size: contain;
	
}

.deckcalc-slider-line .ui-slider-range {
	top: 0.6rem;
    height: 0.4rem;
    background: #A94B08;
}
/*
.deckcalc-slider .ui-slider-handle:before {
	content: "";
	display: flex;
    width: 100vw;
    height: 0.4rem;
    background-color: #A94B08;
    position: absolute;
    top: 0.6rem;
    right: 1.4rem;
}
*/
.deckcalc-slider-range {
	position: relative;
    top: 0rem;
    left: -0.4rem;
	display: flex;
    justify-content: space-between;
	font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.694rem;
	color: #8D8D8D;
}
.deckcalc-slider-max {
	/*position: relative;
    right: -1.2rem;*/
}

.deckcalc-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    gap: 3.5rem;
}
.deckcalc-item {
	position: relative;
	display: flex;
	gap: 3.7rem;
	width: 36rem;
    height: 14rem;
	outline: 0.3rem solid #8D8D8D;
    border-radius: 0.8rem;
	box-shadow: 0.3rem 0.3rem 0.73rem 0 #00000040;
	overflow: hidden;
	box-sizing: border-box;
	cursor: pointer;
}
.deckcalc-item.active {
	outline: 0.5rem solid #A94B08;
	box-shadow: 0.3rem 0.3rem 0.73rem 0 #A94B0880;

}
.deckcalc-item.disabled {
	opacity: 0.5;
	cursor: default;
}
.deckcalc-item input {
	display: none;
}
.deckcalc-item input[type="radio"] + span {
	position: absolute;
	top: 2.8rem;
    right: 1.8rem;
	width: 1.9rem;
	height: 1.8rem;
	background-image: url('../../images/radio.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.deckcalc-item input[type="radio"]:checked + span {
	background-image: url('../../images/radio-active.svg');
}
.deckcalc-item input[type="checkbox"] + span {
	position: absolute;
	top: 2.8rem;
    right: 1.8rem;
	width: 1.9rem;
	height: 1.8rem;
	background-image: url('../../images/checkbox.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.deckcalc-item input[type="checkbox"]:checked + span {
	top: 2rem;
    right: 0.8rem;
	width: 3.1rem;
	height: 2.7rem;
	background-image: url('../../images/checkbox-active.svg');
}
.deckcalc-item-image {
	width: 14.5rem;
	min-width: 14.5rem;
}
.deckcalc-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.deckcalc-item-name {
	font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.178rem;
	width: 12.6rem;
    margin-top: 4.4rem;
}
.deckcalc-item-info label {
	font-size: 1.4rem;
}
.deckcalc-item-select {
	background-color: #fff;
	background-image: url('../../images/select-arrow.svg');
	background-repeat: no-repeat, repeat;
	background-position: right .167rem top 35%, 0 0;
	width: 14rem;
	width: 16rem;
	border: none;
    border-bottom: 0.1rem solid #000000;
    padding-bottom: 0.4rem;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.56rem;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
.deckcalc-item-select::-ms-expand {
	display: none;
}
.deckcalc-items > div {
	width: 36rem;
}
.deckcalc-results {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 3.026rem;
	padding-right: 3.3rem;
}


.deckcalc-section-sidebar h3 {
	font-weight: 500;
    font-size: 1.8rem;
    line-height: 100%;
	margin: 0 0 0.7rem 1.6rem;
}
.deckcalc-section-clarification-title {
	position: relative;
	font-weight: 500;
    font-size: 1.6rem;
    line-height: 100%;
	color: #5F676F;
    padding: 1.6rem 4.8rem 1.6rem 1.6rem;
	border-bottom: 0.1rem solid #CED4DA;
    box-sizing: border-box;
	cursor: pointer;
}
.deckcalc-section-clarification-title:after {
	content: "";
	position: absolute;
	right: 1.6rem;
	width: 1.6rem;
	height: 1.6rem;
	background-image: url('../../images/clarification-arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
}
.deckcalc-section-clarification-text-wrapper {
	max-height: 0;
    overflow: hidden;
}
.deckcalc-section-clarification-text {
	font-size: 1.4rem;
    line-height: 2rem;
    padding: 1.6rem;
    color: #737D86;
}
.deckcalc-section-clarification-title.open:after {
	transform: rotate(180deg);
}
.deckcalc-section-clarification-title.open + .deckcalc-section-clarification-text-wrapper {
	max-height: unset;
}

.deckcalc-send {
    font-size: 1.5rem;
    line-height: 100%;
    font-weight: 600;
	background-color: #BA7341;
    color: #fff;
    padding: 1.6rem;
    border-radius: 0.8rem;
    text-decoration: none;
}

.deckcalc-results-tile-wrapper {
	position: sticky;
    bottom: 2rem;
    display: flex;
    justify-content: flex-end;
}
.deckcalc-results-tile {
	min-width: 45.1rem;
    font-size: 2rem;
    line-height: 100%;
	font-weight: 500;
    background-color: #E3C4A1;
    padding: 1.8rem 0;
    text-align: center;
    border-radius: 0.6rem;
    border: 0.1rem solid #BA7341;
    box-sizing: border-box;
    box-shadow: 0.3rem 0.3rem 0.7rem 0 #A94B0880;
}
.deckcalc-results-tile p:last-child {
	font-weight: 300;
    font-size: 1.4rem;
    line-height: 100%;
}
