.slider-target,
.slider-target * {
-webkit-touch-callout: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-user-select: none;
touch-action: none;
user-select: none;
box-sizing: border-box;
}
.slider-target {
position: relative;
}
.slider-base,
.slider-connects {
width: 100%;
height: 100%;
position: relative;
z-index: 1;
}
.slider-connects {
overflow: hidden;
z-index: 0;
}
.slider-connect,
.slider-origin {
will-change: transform;
position: absolute;
z-index: 1;
top: 0;
right: 0;
height: 100%;
width: 100%;
-ms-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-webkit-transform-style: preserve-3d;
transform-origin: 0 0;
transform-style: flat;
}
.slider-txt-dir-rtl.slider-horizontal .slider-origin {
left: 0;
right: auto;
}
.slider-vertical .slider-origin {
top: -100%;
width: 0;
}
.slider-horizontal .slider-origin {
height: 0;
}
.slider-handle {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
position: absolute;
}
.slider-touch-area {
height: 100%;
width: 100%;
}
.slider-state-tap .slider-connect,
.slider-state-tap .slider-origin {
transition: transform 0.3s;
}
.slider-state-drag * {
cursor: inherit !important;
}
.slider-tooltip-focus .slider-tooltip,
.slider-tooltip-drag .slider-tooltip {
display: none !important;
}
.slider-tooltip-focus.slider-focused .slider-tooltip:not(.slider-tooltip-hidden),
.slider-tooltip-drag.slider-state-drag .slider-tooltip:not(.slider-tooltip-hidden),
.slider-tooltip-drag .slider-active .slider-tooltip {
display: block !important;
}
.slider-horizontal {
height: var(--slider-height, 6px);
}
.slider-horizontal .slider-handle {
width: var(--slider-handle-width, 16px);
height: var(--slider-handle-height, 16px);
top: calc(((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + 1px) * (-1));
right: calc(var(--slider-handle-width, 16px) / 2 * (-1));
}
.slider-vertical {
width: var(--slider-height, 6px);
height: var(--slider-vertical-height, 300px);
}
.slider-vertical .slider-handle {
width: var(--slider-handle-height, 16px);
height: var(--slider-handle-width, 16px);
right: calc(((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + 1px) * (-1));
bottom: calc(var(--slider-handle-width, 16px) / 2 * (-1));
}
.slider-txt-dir-rtl.slider-horizontal .slider-handle {
left: calc(var(--slider-handle-width, 16px) / 2 * (-1));
right: auto;
}
.slider-base {
background-color: var(--slider-bg, #D1D5DB);
border-radius: var(--slider-radius, 9999px);
}
.slider-connects {
border-radius: var(--slider-radius, 9999px);
}
.slider-connect {
background: var(--slider-connect-bg, #10B981);
cursor: pointer;
}
.slider-draggable {
cursor: ew-resize;
}
.slider-vertical .slider-draggable {
cursor: ns-resize;
}
.slider-handle {
width: var(--slider-handle-width, 16px);
height: var(--slider-handle-height, 16px);
border-radius: var(--slider-handle-radius, 9999px);
background: var(--slider-handle-bg, #fff);
border: var(--slider-handle-border, 0);
box-shadow: var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));
cursor: grab;
}
.slider-handle:focus {
outline: none;
box-shadow: 0 0 0 var(--slider-handle-ring-width, 3px) var(--slider-handle-ring-color, #10B98130), var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));
}
.slider-active {
box-shadow: var(--slider-handle-shadow-active, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.42));
cursor: grabbing;
}
[disabled] .slider-connect {
background: var(--slider-connect-bg-disabled, #9CA3AF);
}
[disabled].slider-target,
[disabled].slider-handle,
[disabled] .slider-handle {
cursor: not-allowed;
}
[disabled] .slider-tooltip {
background: var(--slider-tooltip-bg-disabled, #9CA3AF);
border-color: var(--slider-tooltip-bg-disabled, #9CA3AF);
}
.slider-tooltip {
position: absolute;
display: block;
font-size: var(--slider-tooltip-font-size, 0.875rem);
line-height: var(--slider-tooltip-line-height, 1.25rem);
font-weight: var(--slider-tooltip-font-weight, 600);
white-space: nowrap;
padding: var(--slider-tooltip-py, 2px) var(--slider-tooltip-px, 6px);
min-width: var(--slider-tooltip-min-width, 20px);
text-align: center;
color: var(--slider-tooltip-color, #fff);
border-radius: var(--slider-tooltip-radius, 5px);
border: 1px solid var(--slider-tooltip-bg, #10B981);
background: var(--slider-tooltip-bg, #10B981);
}
.slider-horizontal .slider-tooltip-top {
transform: translate(-50%, 0);
left: 50%;
bottom: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-horizontal .slider-tooltip-top:before {
content: "";
position: absolute;
bottom: calc(var(--slider-tooltip-arrow-size, 5px) * (-2));
left: 50%;
width: 0;
height: 0;
border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
border-top-color: inherit;
transform: translate(-50%);
}
.slider-horizontal .slider-tooltip-bottom {
transform: translate(-50%, 0);
left: 50%;
top: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-horizontal .slider-tooltip-bottom:before {
content: "";
position: absolute;
top: calc(var(--slider-tooltip-arrow-size, 5px) * (-2));
left: 50%;
width: 0;
height: 0;
border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
border-bottom-color: inherit;
transform: translate(-50%);
}
.slider-vertical .slider-tooltip-left {
transform: translate(0, -50%);
top: 50%;
right: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-vertical .slider-tooltip-left:before {
content: "";
position: absolute;
right: calc(var(--slider-tooltip-arrow-size, 5px) * (-2));
top: 50%;
width: 0;
height: 0;
border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
border-left-color: inherit;
transform: translateY(-50%);
}
.slider-vertical .slider-tooltip-right {
transform: translate(0, -50%);
top: 50%;
left: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-vertical .slider-tooltip-right:before {
content: "";
position: absolute;
left: calc(var(--slider-tooltip-arrow-size, 5px) * (-2));
top: 50%;
width: 0;
height: 0;
border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
border-right-color: inherit;
transform: translateY(-50%);
}
.slider-horizontal .slider-origin > .slider-tooltip {
transform: translate(50%, 0);
left: auto;
}
.slider-horizontal .slider-origin > .slider-tooltip-top {
bottom: calc(var(--slider-tooltip-arrow-size, 5px) + ((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2) + var(--slider-tooltip-distance, 3px) + 1px);
}
.slider-horizontal .slider-origin > .slider-tooltip-bottom {
top: calc(var(--slider-tooltip-arrow-size, 5px) + ((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2) + var(--slider-tooltip-distance, 3px) + var(--slider-height, 6px) - 1px);
}
.slider-vertical .slider-origin > .slider-tooltip {
transform: translate(0, calc((var(--slider-tooltip-line-height, 1.25rem) - var(--slider-tooltip-py, 2px)) * (-1) + 1px));
top: auto;
}
.slider-vertical .slider-origin > .slider-tooltip-left {
right: calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + ((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2) + var(--slider-tooltip-distance, 3px) - 1px);
}
.slider-vertical .slider-origin > .slider-tooltip-right {
left: calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + ((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2) + var(--slider-tooltip-distance, 3px) - var(--slider-height, 6px) + 1px);
}
.v-select {
position: relative;
font-family: inherit;
}
.v-select,
.v-select * {
box-sizing: border-box;
} @keyframes vSelectSpinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .vs__fade-enter-active,
.vs__fade-leave-active {
pointer-events: none;
transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}
.vs__fade-enter,
.vs__fade-leave-to {
opacity: 0;
}  .vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
cursor: not-allowed;
background-color: #f8f8f8;
} .v-select[dir=rtl] .vs__actions {
padding: 0 3px 0 6px;
}
.v-select[dir=rtl] .vs__clear {
margin-left: 6px;
margin-right: 0;
}
.v-select[dir=rtl] .vs__deselect {
margin-left: 0;
margin-right: 2px;
}
.v-select[dir=rtl] .vs__dropdown-menu {
text-align: right;
} .vs__dropdown-toggle {
-webkit-appearance: none;
appearance: none;
display: flex;
padding: 0 0 4px 0;
background: none;
border: 1px solid rgba(60, 60, 60, 0.26);
border-radius: 4px;
white-space: normal;
}
.vs__selected-options {
display: flex;
flex-basis: 100%;
flex-grow: 1;
flex-wrap: wrap;
padding: 0 2px;
position: relative;
}
.vs__actions {
display: flex;
align-items: center;
padding: 4px 6px 0 3px;
} .vs--searchable .vs__dropdown-toggle {
cursor: text;
}
.vs--unsearchable .vs__dropdown-toggle {
cursor: pointer;
}
.vs--open .vs__dropdown-toggle {
border-bottom-color: transparent;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.vs__open-indicator {
fill: rgba(60, 60, 60, 0.5);
transform: scale(1);
transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}
.vs--open .vs__open-indicator {
transform: rotate(180deg) scale(1);
}
.vs--loading .vs__open-indicator {
opacity: 0;
} .vs__clear {
fill: rgba(60, 60, 60, 0.5);
padding: 0;
border: 0;
background-color: transparent;
cursor: pointer;
margin-right: 8px;
} .vs__dropdown-menu {
display: block;
box-sizing: border-box;
position: absolute;
top: calc(100% - 1px);
left: 0;
z-index: 1000;
padding: 5px 0;
margin: 0;
width: 100%;
max-height: 350px;
min-width: 160px;
overflow-y: auto;
box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
border: 1px solid rgba(60, 60, 60, 0.26);
border-top-style: none;
border-radius: 0 0 4px 4px;
text-align: left;
list-style: none;
background: #fff;
}
.vs__no-options {
text-align: center;
} .vs__dropdown-option {
line-height: 1.42857143; display: block;
padding: 3px 20px;
clear: both;
color: #333; white-space: nowrap;
cursor: pointer;
}
.vs__dropdown-option--highlight {
background: #5897fb;
color: #fff;
}
.vs__dropdown-option--deselect {
background: #fb5858;
color: #fff;
}
.vs__dropdown-option--disabled {
background: inherit;
color: rgba(60, 60, 60, 0.5);
cursor: inherit;
} .vs__selected {
display: flex;
align-items: center;
background-color: #f0f0f0;
border: 1px solid rgba(60, 60, 60, 0.26);
border-radius: 4px;
color: #333;
line-height: 1.4;
margin: 4px 2px 0px 2px;
padding: 0 0.25em;
z-index: 0;
}
.vs__deselect {
display: inline-flex;
-webkit-appearance: none;
appearance: none;
margin-left: 4px;
padding: 0;
border: 0;
cursor: pointer;
background: none;
fill: rgba(60, 60, 60, 0.5);
text-shadow: 0 1px 0 #fff;
} .vs--single .vs__selected {
background-color: transparent;
border-color: transparent;
}
.vs--single.vs--open .vs__selected, .vs--single.vs--loading .vs__selected {
position: absolute;
opacity: 0.4;
}
.vs--single.vs--searching .vs__selected {
display: none;
}  .vs__search::-webkit-search-cancel-button {
display: none;
}
.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
display: none;
}
.vs__search,
.vs__search:focus {
-webkit-appearance: none;
appearance: none;
line-height: 1.4;
font-size: 1em;
border: 1px solid transparent;
border-left: none;
outline: none;
margin: 4px 0 0 0;
padding: 0 7px;
background: none;
box-shadow: none;
width: 0;
max-width: 100%;
flex-grow: 1;
z-index: 1;
}
.vs__search::placeholder {
color: inherit;
} .vs--unsearchable .vs__search {
opacity: 1;
}
.vs--unsearchable:not(.vs--disabled) .vs__search {
cursor: pointer;
}
.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
opacity: 0.2;
} .vs__spinner {
align-self: center;
opacity: 0;
font-size: 5px;
text-indent: -9999em;
overflow: hidden;
border-top: 0.9em solid rgba(100, 100, 100, 0.1);
border-right: 0.9em solid rgba(100, 100, 100, 0.1);
border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
border-left: 0.9em solid rgba(60, 60, 60, 0.45);
transform: translateZ(0);
animation: vSelectSpinner 1.1s infinite linear;
transition: opacity 0.1s;
}
.vs__spinner,
.vs__spinner:after {
border-radius: 50%;
width: 5em;
height: 5em;
} .vs--loading .vs__spinner {
opacity: 1;
}
#hypoCalc {
background: white;
font-family: "Inter", "Open Sans", sans-serif;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
width: 950px;
margin: 0 auto;
max-width: 100%;
}
#hypoCalc input[type=text] {
padding: 7px 40px 7px 15px;
width: 248px;
-moz-appearance: textfield;
border: none !important;
}
#hypoCalc input[type=text]::-webkit-outer-spin-button, #hypoCalc input[type=text]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#hypoCalc .slider-tooltip {
font-weight: 400;
border: 1px solid var(--color-dark-blue);
background: var(--color-dark-blue);
padding: 0 4px;
font-size: 13px !important;
}
#hypoCalc .slider-connect {
background: #45596e;
}
.hypoCalc__container {
display: flex;
justify-content: space-between;
width: 100%;
flex-wrap: wrap;
}
@media only screen and (min-width: 1100px) {
.hypoCalc__container {
width: 1000px;
margin: auto;
}
}
.hypoCalc__left {
width: 100%;
max-width: 650px;
display: flex;
align-items: center;
flex-wrap: wrap;
padding: 30px 5px;
margin: auto;
background: var(--color-white);
}
@media only screen and (min-width: 890px) {
.hypoCalc__left { padding: 20px 20px;
}
}
@media only screen and (min-width: 925px) {
.hypoCalc__left { }
} .hypoCalc__addPrice {
cursor: pointer;
width: 21px;
height: 21px;
background-color: #e3e3e3;
position: absolute;
top: 0;
right: 0;
border: 1px solid #cdcdcd;
border-top: 0;
border-right: 0;
display: flex;
justify-content: center;
align-items: center;
font-weight: 500;
font-size: 12px;
color: #787878;
}
.hypoCalc__addPrice:hover,
.hypoCalc__addPrice:focus {
background-color: #dadada;
}
.hypoCalc__lowerPrice {
cursor: pointer;
width: 21px;
height: 21px;
background-color: #e3e3e3;
position: absolute;
bottom: 0;
right: 0;
border: 1px solid #cdcdcd;
border-bottom: 0;
border-right: 0;
display: flex;
justify-content: center;
align-items: center;
font-weight: 500;
font-size: 16px;
color: #787878;
}
.hypoCalc__lowerPrice:hover,
.hypoCalc__lowerPrice:focus {
background-color: #dadada;
}
.hypoCalc__line {
display: flex;
flex-wrap: wrap;
width: 100%;
align-items: center;
justify-content: center;
text-align: center;
}
@media only screen and (min-width: 890px) {
.hypoCalc__line {
justify-content: flex-start;
text-align: left;
}
}
.hypoCalc__line:first-child {
margin-top: -20px;
}
.hypoCalc__input {
position: relative;
width: 250px;
width: auto;
max-width: 100%;
border: 1px solid rgba(60, 60, 60, 0.26);
border-radius: 3px;
overflow: hidden;
}
.hypoCalc__inputSlider {
width: 250px;
max-width: 100%;
margin-top: 27px;
margin-bottom: 23px;
}
.hypoCalc__inputSelect {
width: 250px;
max-width: 100%;
}
.hypoCalc__inputWrapper {
margin-top: 20px;
padding-right: 10px;
padding-left: 10px; }
@media only screen and (min-width: 890px) {
.hypoCalc__inputWrapper {  width: 50%;
padding-right: 20px;
padding-left: 20px;
}
}
.hypoCalc__inputWrapper label {
display: block;
margin-bottom: 0px;
}
.hypoCalc__inputWrapperFull {
width: 100%;
}
.hypoCalc__title {
width: 100%;
font-weight: 700;
font-size: 1.1rem;
text-align: center;
} .vs__dropdown-toggle {
padding: 7px 10px 7px 7px;
width: 250px;
}
.vs__selected {
font-weight: 400;
}
.hypoCalc__checkbox {
display: flex;
align-items: center;
}
.hypoCalc__checkbox label {
margin: 0 0 0 15px;
}
.hypoCalc__inputWrapperBtn {
display: flex;
align-items: flex-end;
justify-content: flex-end;
}
.hypoCalc__text {
font-size: 0.9rem;
font-style: italic;
font-weight: 400;
line-height: 1.55;
margin: 16px auto 0;
max-width: 100%;
padding: 7px 15px;
text-align: center;
width: 854px;
color: grey;
}
.hypoCalc__button-container {
justify-content: center;
}
.hypoCalc__button-container .hypoCalc__inputWrapper {
justify-content: center;
}
.hypoCalc__result {
width: 100%;
margin-top: 0.5rem;
margin-bottom: 0rem;
}
.hypoCalc__result .hypoCalc__resultLabel {
margin-bottom: 0rem;
text-align: center;
}
.hypoCalc__result .hypoCalc__resultValue {
display: block;
text-align: center;
font-weight: 800;
font-size: 1.2rem;
}
.hypoCalc__result .hypoCalc__resultValue em {
color: #999;
font-weight: 100;
}