.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;
	padding: 2.1rem 1.9rem;
    border-radius: 0.8rem;
	box-shadow: 0.3rem 0.3rem 0.7rem 0 #A94B0880;
    text-decoration: none;
	box-sizing: border-box;
    text-align: center;
	display: none;
}

.deckcalc-results-tile-wrapper {
	position: sticky;
    bottom: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	gap: 1.6rem;
}
.deckcalc-results-tile {
	min-width: 28rem;
    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%;
}



.deckcalc-modal-wrapper {
	font-family: 'Inter';
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80rem;
	max-height: 90%;
	display: flex;
    flex-direction: column;
	padding: 3.7rem 14.1rem 5.6rem;
    box-sizing: border-box;
    background-color: #F5F5F5;
    border: 0.1rem solid #00000026;
    box-shadow: 0.4rem 0.4rem 1.5rem 0 #211710;
    border-radius: 0.8rem;
	overflow-y: auto;
    z-index: 1001;
	display: none;
}
.deckcalc-modal-wrapper::-webkit-scrollbar {
	width: 0;
}
.deckcalc-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: #181D27;
    transform: rotate(45deg);
	text-decoration: none;
}
.deckcalc-modal-form {
	display: flex;
    flex-direction: column;
	align-items: center;
	width: 100%;
}
.deckcalc-modal-form h2 {
	font-weight: 500;
    font-size: 3.2rem;
    line-height: 100%;
    margin-bottom: 0.1rem;
}
.deckcalc-modal-form h4 {
	font-weight: 500;
    font-size: 2rem;
    line-height: 100%;
    margin-bottom: 1.3rem;
}
.deckcalc-modal-form p {
	display: flex;
    height: 7.2rem;
    font-size: 1.6rem;
    line-height: 100%;
    text-align: center;
    margin-bottom: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}
.deckcalc-modal label {
	display: flex;
    flex-direction: column;
    gap: 0.6rem;
	width: 40rem;
	margin-bottom: 2rem;
}
.deckcalc-modal label.deckcalc-label-checkbox {
	flex-direction: row;
    align-items: center;
    gap: 1.3rem;
}
.deckcalc-modal label span {
	font-size: 1.6rem;
    line-height: 100%;
}
.deckcalc-modal label input,
.deckcalc-modal label select {
	width: 100%;
    height: 5rem;
	font-size: 1.8rem;
    line-height: 100%;
    padding: 0 2.1rem;
    box-sizing: border-box;
    border: 0.1rem solid #8D8D8D;
    border-radius: 0.8rem;
    box-shadow: 0.3rem 0.3rem 0.73rem 0 #00000040;
    outline: none;
}
.deckcalc-modal label select {
	color: #8D8D8D;
	background-color: #fff;
	background-image: url('../../images/form-select-arrow.svg');
	background-repeat: no-repeat, repeat;
	background-position: right 1.8rem top 60%, 0 0;
	background-size: 1.5rem;
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}  
.deckcalc-modal label select option { color: #8D8D8D; }  
.deckcalc-modal label select:has(option:checked:not([value])),
.deckcalc-modal label select:has(option:checked:not([value=""])) { color: #181D27; }  
.deckcalc-modal label select:has(option:checked:not([value])) option,
.deckcalc-modal label select:has(option:checked:not([value=""])) option { color: #181D27; } 
.deckcalc-modal label textarea {
	width: 100%;
    height: 8rem;
	font-size: 1.8rem;
    line-height: 100%;
    padding: 1.3rem 2.1rem;
    box-sizing: border-box;
    border: 0.1rem solid #8D8D8D;
    border-radius: 0.8rem;
    box-shadow: 0.3rem 0.3rem 0.73rem 0 #00000040;
    outline: none;
	resize: none;
}
.deckcalc-modal label textarea::-webkit-scrollbar {
	width: 0;
}
.deckcalc-modal label input::placeholder,
.deckcalc-modal label textarea::placeholder {
	color: #8D8D8D;
}
.deckcalc-modal label input[type="checkbox"] {
	display: none;
}
.deckcalc-modal label input[type="checkbox"] + span {
	width: 1.8rem;
	min-width: 1.8rem;
	height: 1.8rem;
	background-image: url('../../images/deckcalc-check.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
.deckcalc-modal label input[type="checkbox"]:checked + span {
	background-image: url('../../images/deckcalc-check-active.svg');
}
.deckcalc-modal label p {
	height: auto;
    margin: 0.3rem 0 0;
    font-size: 1.2rem;
    line-height: 100%;
    color: #8D8D8D;
}
.deckcalc-consultation {
	width: 42rem;
	margin-bottom: 3.5rem;
	max-height: 0;
    overflow: hidden;
	transition: max-height 0.3s linear;
	padding: 0 1rem;
	box-sizing: border-box;
}
.deckcalc-consultation.open {
	max-height: 45rem;
}
.deckcalc-modal .deckcalc-consultation input[type="radio"] {
	display: none;
}
.deckcalc-modal .deckcalc-consultation input[type="radio"] + span {
	width: 1.8rem;
	height: 1.8rem;
	background-image: url('../../images/deckcalc-radio.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
.deckcalc-modal .deckcalc-consultation input[type="radio"]:checked + span {
	background-image: url('../../images/deckcalc-radio-active.svg');
}
.deckcalc-modal-form .deckcalc-consultation span {
	font-size: 1.6rem;
    line-height: 100%;
}
.deckcalc-modal-form .deckcalc-consultation p {
	height: auto;
    margin: 0.3rem 0 1.2rem;
    font-size: 1.2rem;
    line-height: 100%;
    color: #8D8D8D;
}
.deckcalc-modal-form .deckcalc-consultation label.deckcalc-input-p {
	margin-bottom: 1rem;
}
.deckcalc-modal-form .deckcalc-consultation label.deckcalc-input-p p {
	margin: 0.2rem 0 0;
}
.deckcalc-radios {
	display: flex;
    gap: 4.5rem;
}
.deckcalc-radios label {
	flex-direction: row;
    gap: 0.9rem;
	width: auto;
}
.deckcalc-invalid {
	border-color: #D32F2F !important;
}
.deckcalc-email-send {
	width: 20rem;
    height: 5.2rem;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    background-color: #B1470C;
    border-radius: 0.6rem;
    color: #fff;
	outline: none;
    border: none;
	box-shadow: 0.3rem 0.3rem 0.7rem 0 #A94B0880;
	cursor: pointer;
}
.deckcalc-email-send:hover {
	background-color: #CE7644;

}
.deckcalc-email-send:disabled,
.deckcalc-email-sended-ok .deckcalc-email-send {
	color: #181D27;
	background-color: #fff;
	box-shadow: 3px 3px 7px 0px #8D8D8D;
	cursor: default;
}
.deckcalc-email-sended-ok .deckcalc-email-send {
	cursor: pointer;
}
.deckcalc-email-sended-ok .deckcalc-email-send span {
	display: none;
}
.deckcalc-email-sended-ok .deckcalc-email-send:after {
	content: "CLOSE";
}
.deckcalc-email-result {
	font-size: 2rem;
	line-height: 100%;
	font-weight: 500;
	margin-top: 1.5rem;
	color: #2E7D32;
	text-align: center;
    display: none;
}
.deckcalc-email-sended-ok .deckcalc-email-result {
	display: block;
}
.deckcalc-email-sended-ok .deckcalc-modal-form h4 {
	opacity: 0.4;
}
.deckcalc-email-sended-ok .deckcalc-modal label {
	opacity: 0.4;
}
.deckcalc-email-sended-ok .deckcalc-modal-form .deckcalc-consultation span {
	opacity: 0.4;
}
.deckcalc-email-sended-error .deckcalc-email-result {
	display: block;
	color: #f00;
}
.deckcalc-over {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #21171080;
    z-index: 1000;
	display: none;
}
.deckcalc-modal-open {
	overflow: hidden;
}
.deckcalc-modal-open .deckcalc-modal-wrapper {
	display: flex;
}
.deckcalc-modal-open .deckcalc-over {
	display: block;
}

@media (max-width: 576px) {
.deckcalc-modal-wrapper {
	width: 35rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.deckcalc-modal-form h2 {
	font-size: 2.4rem;
}
.deckcalc-modal-form p {
	height: 10rem;
}
.deckcalc-modal label {
	width: 28rem;
}
.deckcalc-consultation {
	width: 30rem;
}
.deckcalc-modal label textarea {
    height: 12rem;
}
.deckcalc-results-tile-wrapper {
	flex-direction: column-reverse;
}
}
