@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

.bg-gradient-vertical{
    background-image: url("../../images/background/bg-gradient-vertical.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
}

/* ============ range slider ============  */
.range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 101%;
    background: #ABB5C7;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    /* height: 8px; */
    height: 35px;
    top: 0.2rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    visibility: hidden;
    border-radius: 50%;
    border: 2px solid #ABB5C7;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.range-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    border: 2px solid #ABB5C7;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.range-input::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
    border-radius: 4px;
    position: relative;
}
.range-input::before {
    content: '';
    height: 8px;
    background: red;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.slider-container {
    position: relative;
    height: 8px;
}
.tick {
    position: absolute;
    bottom: -14px;
    width: 15px;
    height: 16px;
    border-radius: 1.5px 8px 8px 1.5px;
    background: #ABB5C7;
    transform: rotate(45deg);
    transition: background-color 0.2s;
    pointer-events: none;
    -webkit-border-radius: 1.5px 8px 8px 1.5px;
    -moz-border-radius: 1.5px 8px 8px 1.5px;
    -ms-border-radius: 1.5px 8px 8px 1.5px;
    -o-border-radius: 1.5px 8px 8px 1.5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    -ms-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
}
.tick::after{
    content: attr(period);
    position: absolute;
    top:1rem;
    transform: rotate(-45deg);
    text-wrap: nowrap;
    font-size: 0.7rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.bg-pattern-etalase{
    background-image: url("./../../images/background/pattern-thumbnails-etalase.png");
    background-repeat: no-repeat;
    background-size: 55%;
    background-position: center;
}
.bg-pattern-etalase-success{
    background-image: url("./../../images/background/pattern-thumbnails-etalase-success.png");
    background-repeat: no-repeat;
    background-size: 65%;
    background-position-x: center;
    background-position-y: 1.5rem;
}

.bg-effect-selesai{
    background-color: rgba(25, 60, 71, 0.7);
}
.bg-effect-prelisting{
    background: linear-gradient(90deg, #193C47 0%, rgb(4, 43, 100, 0.2) 100%);
}
.bg-effect-listing{
    background: linear-gradient(90deg, #193C47 0%, rgb(4, 43, 100, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}

/* slider swiper testimonials */
#wrapper-slide-testimony article{
    font-family: "Questrial", sans-serif;
}
.swiper-slide.active-center > div > h3{
    font-weight: bold;
}
.swiper-slide.active-center > div > p{
    font-weight: 500;
}