/* Favourite */
.favourites {
    .icon {
        cursor: pointer;
        padding: 8px;
        background-color: transparent;
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        width: max-content;
        &:hover {
            background-color: #00042A;
        }
    }
    &.added {
        .icon {
            svg {
                fill: #fff;
            }
        }
    }
}
/* Domain */
.domain {
    position: relative;
    z-index: 99999999999;
    border-top: 1px solid #d3d3d3;
    min-height: 6.25rem;
    padding-right: calc(0.25rem * 2);
    color: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: default;
    &:hover {
        background: rgba(255, 255, 255, 0.09);
        backdrop-filter: blur(100px);
    }
    .inner-domain {
        width: 100%;
        @media (max-width: 768px) {
            padding: calc(0.25rem * 2);
        }
        .content {
            .domain-title {
                display: flex;
                align-items: center;
                padding: calc(0.25rem * 2) calc(0.25rem * 1);
                color: #fff;
                .left {
                    display: flex;
                    align-items: center;
                    .fav {
                        margin: 0 30px;
                        @media (max-width: 768px) {
                            margin: 0 30px;
                            margin-left: 0;
                        }
                    }
                }
                .middle {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    @media (max-width: 768px) {
                        flex-direction: column;
                        align-items: flex-start;
                        gap: calc(0.25rem * 4);
                    }
                    .domain-name {
                        h3 {
                            font-size: 1.601806640625rem;
                            font-weight: 600;
                            line-height: 30px;
                            margin-bottom: 0;
                            margin-right: 4px;
                        }
                    }
                }
                .right {
                    display: flex;
                    align-items: center;
                    .add-to-cart {
                        button {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            gap: 5px;
                            background-color: transparent;
                            color: #ffffff;
                            border: 1px solid #ffffff;
                            padding: calc(0.25rem * 2);
                            border-radius: 8px;
                            cursor: pointer;
                            height: 72px;
                            width: 72px;
                            transition: all 0.3s ease-in-out;
                            &:hover {
                                background-color: #00042A;
                                svg {
                                    scale: 1.1;
                                }
                            }
                        }
                    }
                }
                .price {
                    .prices {
                        display: flex;
                        align-items: center;
                        flex-wrap: wrap;
                        gap: calc(0.25rem * 2);
                        margin-right: calc(0.25rem * 4);
                        line-height: 1.5;
                        @media (max-width: 768px) {
                            flex-direction: column-reverse;
                            gap: 0;
                            margin-bottom: calc(0.25rem * 2);
                        }
                        div,
                        div del {
                            font-size: 22px;
                            font-weight: 700;
                            display: flex;
                            align-items: center;
                            gap: 2px;
                        }
                        div {
                            del {
                                div {
                                    font-size: 16px;
                                    font-weight: 600;
                                }
                            }
                        }
                    }
                    .small-p {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                    }
                }
            }
        }
    }
    &.taken-domain {
        .inner-domain {
            .content {
                .domain-title {
                    .middle {
                        .domain-name {
                            display: flex;
                            align-items: center;
                            gap: 5px;
                            color: #c6c6c6;
                            font-size: 1.601806640625rem;
                            font-weight: bolder;
                            line-height: 30px;
                            margin-bottom: 0;
                            margin-right: 4px;
                            h3 {
                                display: flex;
                                align-items: center;
                                gap: 5px
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Tooltip */
.tooltip {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    width: max-content;
    .icon {
        cursor: pointer;
    }
    .hidden-box {
        position: absolute;
        left: -1000%;
        bottom: 110%;
        width: max-content;
        max-width: 90vw;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        color: #000;
        border: 1px solid #d3d3d3;
        border-radius: 4px;
        padding: calc(3 * 0.25rem);
        opacity: 0;
        display: none;
        transition: opacity 0.3s ease-in-out;
        transition-duration: 0.15s;
        visibility: hidden;
        z-index: 999999999999999;
        @media screen and (max-width: 757px) {
            left: -1800%;
        }
        .p {
            font-size: 0.88888rem;
        }
        .box {
            max-width: 22rem;
            position: relative;
            &::after {
                content: '';
                --ux-flyout-arrow-clip: calc(50% - 1px);
                height: 1rem;
                width: 1rem;
                background-color: #fff;
                left: 180px;
                bottom: -20px;
                position: absolute;
                background: inherit;
                border: inherit;
                box-sizing: border-box;
                transform-origin: center center;
                clip-path: polygon(var(--ux-flyout-arrow-clip) var(--ux-flyout-arrow-clip), 100% 0, 100% 100%, 0 100%);
                transform: rotate(45deg);
                top: calc(100% - 1rem / 2);
            }
            .top {
                display: flex;
                justify-content: space-between;
                .h {
                    font-size: 1rem;
                    font-weight: 700;
                    line-height: 1.5;
                    margin-bottom: 1rem;
                    margin-right: 3rem;
                }
                .close {
                    background: 0 0;
                    background-color: transparent;
                    border: 0;
                    border-color: transparent;
                    color: inherit;
                    cursor: pointer;
                    float: right;
                    margin: 0;
                    padding: 0;
                    padding: 0.75rem;
                    position: absolute;
                    right: 0;
                    top: 0;
                }
            }
            .text {
                display: flex;
                flex-direction: column;
                gap: calc(0.25rem * 6);
                p {
                    font-size: 1rem;
                    font-weight: 500;
                    line-height: 1.5;
                    text-align: left;
                }
            }
        }
    }
    &:hover {
        .hidden-box {
            display: flex;
            opacity: 1;
            visibility: visible;
        }
    }
}
/* Search */
.search {
    position: sticky;
    top: 0px;
    z-index: 99999;
    padding-top: 100px;
    background-color: #31006c;
    padding-bottom: 0;
    hr {
        border: none;
        height: 1px;    
        background-color: #d3d3d3;
        margin: 0;
    }
    .domain {
        margin: 1em 0;
        padding: 0;
        width: 100%;
        border: 0;
        display: block;
        &:hover {
            background-color: transparent;
        }
        .domain-search {
            display: flex;
            align-items: center;
            width: 100%;
            box-shadow: 0px 15px 30px rgba(27, 44, 92, 0.1);
            border-radius: 8px;
            .input {
                position: relative;
                width: 100%;
                input {
                    width: 100%;
                    border: none;
                    padding: 30px;
                    background-color: #fff;
                    border: 1px solid #fff;
                    border: none;
                    border-radius: 8px 0 0 8px;
                    font-size: 18px;
                    font-weight: 400;
                    color: #000;
                    border-right: 3px solid #000;
                    &::placeholder {
                        color: #00000090;
                    }
                    &:focus {
                        outline: 0;
                    }
                    @media (max-width: 768px) {
                        padding: 20px;
                        font-size: 16px;
                    }
                }
            }
            .button {
                button {
                    display: inline-block;
                    padding: 30px;
                    background-color: #fff;
                    color: #000;
                    border: 1px solid #fff;
                    border: none;
                    outline: none;
                    cursor: pointer;
                    border-radius: 0 8px 8px 0;
                    font-size: 18px;
                    font-weight: 600;
                    transition: all 0.3s ease-in-out;
                    @media (max-width: 768px) {
                        padding: 20px;
                        font-size: 16px;
                    }
                    &:hover {
                        background-color: #000;
                        color: #fff;
                        border: 1px solid #000;
                        border: none;
                    }
                }
            }
        }
    }
    .filters {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 0;
        @media (max-width: 768px) {
            padding-bottom: 10px;
            gap: 10px;
        }
        &::-webkit-scrollbar {
            display: none
        }
        .filter {
            display: flex;
            justify-content: center;
            align-items: center;
            button {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.5em;
                padding: 1.09375rem;
                font-size: 0.9rem;
                border: none;
                color: #ffffff; 
                background-color: transparent;
                cursor: pointer;
                transition: all 0.3s ease-in-out;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-weight: 600;
                border-bottom: 1px solid transparent;
                @media (max-width: 768px) {
                    border: 1px solid #d3d3d3 !important;
                    border-radius: 8px;
                    font-size: 0.75rem;
                    padding: 0.9375rem;
                    span {
                        display: none;
                    }
                }
            }
            &.selected {
                button {
                    color: #04e4ff;
                    border-bottom: 1px solid #04e4ff;
                    @media (max-width: 768px) {
                        background-color: #00042A;
                        color: #fff;
                        span {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}
/* Pages */
.pages {
    background: linear-gradient( #31006c, #04e6ff75);
}
.pages .container .inside .filter-pages {
    width: 100%;
}
.pages .container .inside .filter-pages .c-page {
    width: 100%;
    min-height: 639px;
    display: none;
}
.pages .container .inside .filter-pages .c-page.true-page {
    width: 100%;
    display: block;
}
.pages .container .inside .filter-pages .result-page {
    padding-top: calc(0.25rem * 6);
}
.pages .container .inside .filter-pages .result-page .top .domain-state {
    display: none;
}
.pages .container .inside .filter-pages .result-page .top .domain-state.active {
    display: block;
}
.pages .container .inside .filter-pages .result-page .top .domain-state .parent {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    color: #fff;
}
.pages .container .inside .filter-pages .result-page .top .domain-state .parent .child {
    position: relative;
    color: #fff;
    flex: 2 0 0px;
}
.pages .container .inside .filter-pages .result-page .top .domain-state .parent .child .inner-child {
    border-radius: 8px;
    padding: calc(0.25rem * 12);
    border: 1px solid #d3d3d3;
    width: 100%;
    height: 100%;
    @media (max-width: 768px) {
        padding: calc(0.25rem * 6);
    }
}
.pages .container .inside .filter-pages .result-page .top .domain-state .parent .child .favourites {
    position: absolute;
    top: 4px;
    right: 4px;
    width: max-content;
    display: inline-block;
}
.pages .container .inside .filter-pages .result-page .top .domain-taken .parent .child.taken .inner-child .content {
    .span {
        min-height: 26px;
    }
    .span span {
        min-height: 26px;
        background-color: #c6c6c6;
        color: #000000;
        letter-spacing: 0.9px;
        font-size: 0.8rem;
        text-transform: uppercase;
        padding: 0.25rem;
        font-weight: 700;
        border-radius: 4px;
    }
    .taken-domain-name {
        display: flex;
        align-items: center;
        color: #c6c6c6;
        gap: calc(0.25rem * 1);
    }
    .taken-domain-name .domain-name h2 {
        font-size: 1.802032470703125rem;
        font-weight: bolder;
        line-height: 2.25rem;
    }
    @media (min-width: 992px) {
        .taken-domain-name .domain-name h2 {
            font-size: 2.0272865295410156rem;
            line-height: 2.5rem;
        }
    }
    .small-p {
        font-size: 0.88888rem;
    }
    .small-p a {
        color: #fff;
        text-decoration: underline;
    }
    .small-p a:hover {
        color: #04e4ff;
    }
    .broker {
        margin-bottom: calc(0.25rem * 4);
        margin-top: calc(0.25rem * 2);
        display: flex;
    }
    .broker {
        display: flex;
        align-items: center;
    }
    .broker .img {
        margin-right: calc(0.25rem * 2);
    }
    .broker .img .inner-img {
        position: relative;
        background: linear-gradient(356.56deg, #1976d2 -38.42%, #9e42b5 150.39%);
        /* padding: 0.125rem; */
        outline: 2px solid #9e42b5;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        width: 60px;
    }
    .broker .img .inner-img img {
        scale: 2;
        transform: translate(5px, 19px);
    }
    .broker .text {
        display: flex;
        flex-direction: column;
    }
    .broker .text .p {
        font-size: 0.88888rem;
    }
    .broker .text .price {
        display: flex;
        align-items: center;
        gap: 5px;
        line-height: 1.5;
    }
    .broker .text .price .currency,
    .broker .text .price .number {
        font-weight: 700;
        font-size: 22px;
    }
    .action-button button {
        background-color: #fff;
        color: #111;
        border: none;
        padding: calc(0.25rem * 2) calc(0.25rem * 3);
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.5;
        width: max-content;
    }
    .action-button button:hover {
        opacity: 0.9;
    }
}
.pages .container .inside .filter-pages .result-page .top .domain-taken .parent .child.taken .inner-child {
    display: flex;
    align-items: center;
}
.pages .container .inside .filter-pages .result-page .top .domain-taken .parent .child.altrenative .inner-child {
    padding-bottom: calc(0.25rem * 4);
}
.pages .container .inside .filter-pages .result-page .top .domain-taken .parent .child.altrenative .inner-child .content,
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child.exact .inner-child .content,
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child.Bundle .inner-child .content {
    .span {
        min-height: 26px;
    }
    .span span {
        min-height: 26px;
        background-color: #ffeea9;
        color: #000000;
        letter-spacing: 0.9px;
        font-size: 0.8rem;
        text-transform: uppercase;
        padding: 0.25rem;
        font-weight: 700;
        border-radius: 4px;
    }
    .domain-name {
        display: flex;
        align-items: center;
        color: #fff;
        gap: calc(0.25rem * 1);
    }
    .domain-name h2 {
        font-size: 1.802032470703125rem;
        font-weight: bolder;
        line-height: 2.25rem;
    }
    @media (min-width: 992px) {
        .domain-name h2 {
            font-size: 2.0272865295410156rem;
            line-height: 2.5rem;
        }
    }
    .domain-name h2 span {
        color: #00c9df;
    }
    .price {
        margin-top: 4rem;
        padding-top: calc(0.25rem * 2);
        padding-bottom: calc(0.25rem * 2);
    }
    .price .prices {
        display: flex;
        align-items: center;
        gap: calc(0.25rem * 2);
        margin-right: calc(0.25rem * 1);
        line-height: 1.5;
    }
    .price .prices div,
    .price .prices div del {
        font-size: 22px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .price .prices div del div {
        font-size: 20px;
        font-weight: 600;
    }
    .price .small-p {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .action-button {
        margin-top: calc(0.25rem * 4);
    }
    .action-button button {
        background-color: #fff;
        color: #111;
        border: none;
        padding: calc(0.25rem * 2) calc(0.25rem * 3);
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.5;
        width: max-content;
    }
    .action-button button:hover {
        opacity: 0.9;
    }
}
@media (max-width: 768px) {
    .pages .container .inside .filter-pages .result-page .top .domain-state .parent {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }
    .pages .container .inside .filter-pages .result-page .top .domain-state .parent .child {
        flex: 2 0 0px;
        margin-top: calc(0.25rem * 4);
    }
    .pages .container .inside .filter-pages .result-page .top .domain-state .parent .child.child.altrenative .inner-child {
        padding-left: calc(0.25rem * 4);
        padding-right: calc(0.25rem * 4);
        padding-top: calc(0.25rem * 6);
        padding-bottom: calc(0.25rem * 6);
    }
    .pages .container .inside .filter-pages .result-page .top .domain-state .parent .child.child.altrenative .inner-child .content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .pages .container .inside .filter-pages .result-page .top .domain-state .parent .child.child.altrenative .inner-child .content .price {
        margin-top: calc(0.25rem * 4);
    }
    .pages .container .inside .filter-pages .result-page .top .domain-state .parent .child.child.altrenative .inner-child .content .action-button {
        margin-top: 0;
    }
}
.pages .container .inside .filter-pages .result-page .top .domain-state .center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: calc(0.25rem * 6);
    padding-bottom: calc(0.25rem * 6);
}
.pages .container .inside .filter-pages .result-page .top .domain-state .center .small-p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pages .container .inside .filter-pages .result-page .top .domain-free .center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: calc(0.25rem * 6);
}
.pages .container .inside .filter-pages .result-page .top .domain-free .center .p {
    text-align: center;
    color: #ffffff;
    font-size: 2.027rem;
    font-weight: 850;
    line-height: 120%;
    margin-bottom: calc(0.25rem * 2);
}
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child .inner-child .bottom-child {
    margin-top: calc(0.25rem * 2);
}
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child .inner-child .bottom-child hr {
    border: 0;
    border-top: 1px solid #d6d6d6;
    margin-bottom: calc(0.25rem * 4);
    margin-top: calc(0.25rem * 6);
}
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child .inner-child .bottom-child hr {
    border: 0;
    border-top: 1px solid #d6d6d6;
    margin-bottom: calc(0.25rem * 4);
    margin-top: calc(0.25rem * 6);
}
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child .inner-child .bottom-child .text {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child .inner-child .bottom-child .text {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.pages .container .inside .filter-pages .result-page .top .domain-free .parent .child.Bundle .inner-child .content {
    .span {
        span {
            background-color: #00a4a6;
            color: #ffffff;
        }
    }
    .price {
        margin-top: 0;
    }
    .pathes-types {
        margin-bottom: calc(0.25rem * 4);
        hr {
            border: 0;
            border-top: 1px solid #d6d6d6;
            margin-top: calc(0.25rem * 1);
            margin-bottom: calc(0.25rem * 1);
        }
        ul {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: calc(0.25rem * 2);
            li {
                border-color: #d3d3d3;
                border-radius: 8px;
                font-size: 20px;
                font-weight: 500;
                line-height: 0.5;
                padding: .5rem;
                margin: 0 0 calc(.25rem * 5);
                margin-top: calc(0.25rem * 1);
                margin-right: calc(0.25rem * 2);
                border: 1px solid;
            }
        }
    }
}
.result-domains {
    padding-top: calc(0.25rem * 6);
}
.result-domains .suggested-domains .domain {
    border-top: 1px solid #d3d3d3;
    min-height: 6.25rem;
    padding-right: calc(0.25rem * 2);
    color: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: default;
}
.result-domains .suggested-domains .domain:hover {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(100px);
}
.result-domains .suggested-domains .domain .inner-domain {
    width: 100%;
}
.result-domains .suggested-domains .domain .inner-domain .content .domain-title {
    display: flex;
    align-items: center;
    padding: calc(0.25rem * 2) calc(0.25rem * 1);
}
.result-domains .suggested-domains .domain .inner-domain .content .domain-title {
    .left {
        display: flex;
        align-items: center;
    }
    .left .fav {
        margin: 0 30px;
    }
    .domain-name h3 {
        font-size: 1.601806640625rem;
        font-weight: 600;
        line-height: 30px;
        margin-bottom: 0;
        margin-right: 4px;
    }
    .middle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .right {
        display: flex;
        align-items: center;
    }
    .price .prices {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .price .prices {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: calc(0.25rem * 2);
        margin-right: calc(0.25rem * 4);
        line-height: 1.5;
    }
    .price .prices div,
    .price .prices div del {
        font-size: 22px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .price .prices div del div {
        font-size: 16px;
        font-weight: 600;
    }
    .price .small-p {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .right .add-to-cart button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        /* background-color: #00a4a6; */
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
        padding: calc(0.25rem * 2);
        border-radius: 8px;
        cursor: pointer;
        height: 72px;
        width: 72px;
        transition: all 0.3s ease-in-out;
    }
    .right .add-to-cart button:hover {
        /* background-color: rgba(255, 255, 255, 0.09);
        backdrop-filter: blur(100px); */
        background-color: #00042A;
    }
    .right .add-to-cart button:hover svg {
        scale: 1.1;
    }
}
@media (max-width: 768px) {
    .result-domains .suggested-domains .domain .inner-domain {
        padding: calc(0.25rem * 2);
        .content {
            .domain-title {
                .left .fav {
                    margin: 0 30px;
                    margin-left: 0;
                    margin-right: 5px;
                }
                .middle {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: calc(0.25rem * 2);
                }
                .price .prices {
                    flex-direction: row-reverse;
                    align-items: center;
                    margin-inline: 0;
                    gap: 10px;
                    margin-bottom: calc(0.25rem * 2);
                }
            }
        }
    }
}
/* Filter Page */
.filter-page .top {
    padding: calc(0.25rem * 6) 0;
}
.filter-page .top .parent {
    display: flex;
    justify-content: space-between;
}
.filter-page .top .parent .child {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
}
.filter-page .top .parent .left-child {
    padding: calc(0.25rem * 6);
    flex-basis: 75%;
    margin-right: 0.5rem;
}
.filter-page .top .parent .left-child .content  {
    .h {
        font-size: 1.723828125rem;
        font-weight: 500;
        line-height: 1.75rem;
        margin-bottom: calc(0.25rem * 6);
    }
    .h h4 {
        font-weight: 500;
    }
    .text {
        max-width: 75%;
    }
    .text .types {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px 8px;
    }
    .text .types button {
        border: 2px solid;
        border-color: #d6d6d6;
        background-color: #ffffff;
        color: #000;
        transition: all 0.3s ease-in-out;
        padding: calc(0.25rem * 2) calc(0.25rem * 3);
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
    }
    .text .types button:hover {
        border-color: #000000;
    }
    .text .types button.active {
        border-color: #111;
        background-color: #000000;
        color: #ffffff;
    }
}
.filter-page .top .parent .right-child {
    flex-basis: 25%;
    margin-left: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .filter-page .top .parent {
        flex-direction: column;
    }
    .filter-page .top .parent .left-child {
        margin-right: 0;
        margin-bottom: calc(0.25rem * 6);
    }
    .filter-page .top .parent .left-child .content .text {
        width: 100%;
    }
    .filter-page .top .parent .left-child .content .text .types {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .filter-page .top .parent .right-child {
        margin-left: 0;
    }
}
.filter-page .top .parent .right-child .filter-box {
    min-width: 250px;
    width: 100%;
}
.filter-page .top .parent .right-child .filter-box {
    .filter-section {
        padding: calc(0.25rem * 6);
    }
    .filter-section h3 {
        font-size: 1.523828125rem;
        font-weight: 500;
        line-height: 1.75rem;
        margin-bottom: calc(0.25rem * 6);
    }
    .slider-container {
        position: relative;
        height: 32px;
        margin-bottom: 10px;
    }
    input[type="range"] {
        width: 100%;
        -webkit-appearance: none;
        background: transparent;
        height: 6px;
    }
    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        background: #000;
        border-radius: 50%;
        cursor: pointer;
        margin-top: -7px;
    }
    input[type="range"]::-webkit-slider-runnable-track {
        height: 4px;
        border-radius: 3px;
        background: linear-gradient(to right, #00b3b3 var(--progress), #ddd var(--progress));
    }
    .value-box {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-weight: bold;
        width: max-content;
    }
    .value-box span {
        text-align: center;
        margin: calc(0.25rem * 2) 0;
        padding: 0 calc(0.25rem * 6);
    }
    /* .value-box:first-child span:first-child {
        min-width: 12ch;
    } */
    .value-box span:first-child {
        border-right: 1px solid;
        border-color: #d6d6d6;
    }
}