.price-slider {
    position: relative;
    max-width: 1400px;
    width: 100%;
    height: 36px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 36px;
    /*background: linear-gradient(to right, #f00 0%, #ff0 50%, #0f0 100%);*/
    outline: none;
    border-radius: 6px;
}

.slider-thumb {
    position: absolute;
    top: -20px;
    left: -50px;
    width: 100px;
    height: 90px;
    background-image: url(images/slider_logo.png);
    background-size: cover;
    cursor: pointer;
    background-repeat: no-repeat;
}

.price-slider-wrapper {
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    background: linear-gradient(101deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(12.5px);
    padding: 40px;
    align-content: center;
    align-items: center;
}

.price-slider-label {
    width: 50px;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: white;
}

.price-slider-label_right {
    padding-left: 20px;
    width: 100px;
}

.value-box {
    position: absolute;
    top: 77px;
    transform: translateX(-50%);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 10px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: linear-gradient(93deg, #FF5C65 0%, #FD008B 53.12%, #6500FC 100%);
    backdrop-filter: blur(12.5px);
    color: white;
}

@media screen and (max-width: 1200px) {
    .price-slider-label {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .plan--active {
        margin-top: -6rem !important;
    }
}

@media screen and (max-width: 1024px)  {
    .price-slider-wrapper {
        padding: 10px;
    }

    .value-box {
        top: 45px;
        font-size: 16px;
    }

    .slider-thumb {
        top: -8px;
        width: 55px;
        height: 55px;
        background-size: 55px;
    }
}