
.x-calc-section input::-webkit-outer-spin-button,
.x-calc-section input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.x-calc-section input[type=number] {
  -moz-appearance: textfield;
}
.x-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    /* min-height: 40px; */
}
.x-container {
   max-width: 1094px;
   margin: 0 auto;
}
.x-calc-section {
    font-size: 16px;
    padding: 100px 0;
}
.x-flex {
    width: 100%;
    display: flex;
    gap: 16px;
}
.gap-136 {
    gap: 136px;
}
.wrap-printer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 473px;
    min-height: 222px;
    position: relative;
}
.wrap-printer img {
    position: absolute;
}
.wrap-calc {
    width: calc(100% - 473px);
}
@media (max-width: 991px) {
    .x-line {
        display: flex;
        flex-direction: column;
    }
    .x-flex {
        flex-direction: column;
    }
    .wrap-calc,
    .wrap-printer {
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }
    .wrap-printer img {
        position: absolute;
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }
    .wrap-calc {
        margin: 0 auto;
        width: 100%;
    }
}
.coins-icon {
    position: relative;
    top: -8px;
}
.printer {
    display: block;
    width: 100%;
}
.x-boxes {
    max-width: 416px;
    margin-bottom: 22px;
}
.x-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* min-height: 64px; */
    padding: 10px;
    background-color: #EB5C2A;
    color: white;
    width: 100%;
}
.x-box div {
    display: flex;
    justify-content: center;
    width: 100%;
}
.x-box strong {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 24px;
}
@media (width: 991px) {
    .x-flex {
        flex-direction: column;
    }
    .wrap-printer,
    .wrap-calc {
        width: 100%;
    }
    .x-container {
        padding: 0;;
    }
}
.range-row {
    width: 100%;
    max-width: 940px;
    position: relative;
}
.fancy-slider {
    position: relative;
    width: 100%;
    margin-top: 57px;
}
.range-slider_input {
    width: 100%;
    max-width: 940px;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    opacity: 0;
    margin: 0;
    padding: 0 !important;
}

.range-slider_input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.range-slider_input::-moz-range-thumb {
    width: 14vmin;
    height: 14vmin;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.range-slider_thumb {
    width: 26px;
    height: 26px;
    border: 3px solid white;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #EB5C2A;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 4vmin;
    color: #303030;
    box-shadow: 0px 1px 1px #00000040;
    z-index: 2;
}
.range-slider_thumb span {
    position: relative;
    top: -26px;
    font-size:16px;
    font-weight: bold;
    white-space: nowrap;
}
.range-slider_line {
    height: 12px;
    width: 100%;
    border: none;
    background-color: #EB5C2A;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}
.range-slider_backline {
    height: 12px;
    width: 100%;
    background-color: #E9E9ED;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    z-index: 0;
    border-radius: 10px;
}
.range-slider_line-fill {
    position: absolute;
    height: 12px;
    width: 0;
    background-color: #303030;
}
.range-min,
.range-max {
    position: absolute;
    top: 16px;
}
.range-min {
    left: 0;
}
.range-max {
    right: 0;
}
.x-calc-section label {
    font-weight: bold;
}
.x-calc-section input,
.x-calc-section select {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 40px;
    border-radius: 0;
    border: 1px solid #90949C;
}
.calc-step {
    display: none;
}
.calc-step.active {
    display: block;
}
.res-plan {
    font-size: 32px;
    font-weight: normal;
    color: #EB5C2A;
    margin: 0 0 20px;
}
.x-calc-section h5 {
    margin: 0 0 16px;
}
.results ul {
    padding: 0;
    list-style: none;
    margin-bottom: 6px;
}
.results li {
    position: relative;
    padding-left: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.results li::before {
    content: '';
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    width: 12px;
    height: 12px;
    background-image: url(https://epsonemear.a.bigcontent.io/v1/static/tick);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.printers-loading,
.printers-loaded {
    opacity: 0;
    transition: opacity .6s ease-out;
}
.printers-loading.active,
.printers-loaded.active {
    opacity: 1;
}
.monitor {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #303030;
    color: green;
    display: flex;
    align-items: center;
}
.infobox {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 5px;
}
.infobox img {
    display: block;
    width: 30px;
    height: 30px;
}