@import "../helpers/colors.scss";

#content {
    .euroBonus {
        .filter {
            // margin-left: 25%;

            form {
                float: right;

                h4 {
                    color: $green;
                    @include boldFont();
                    font-size: 2rem;
                }

                .sliderWrapper {
                    margin: 0 15px;
                    line-height: 90px;

                    h5 {
                        color: $green;
                        font-size: 2rem;
                        @include boldFont();
                        display: inline;
                        margin: 0 25px;
                    }

                    #ex1Slider {
                        .slider-handle {
                            background: $green;
                        }

                        .slider-track {
                            box-shadow: none;
                        }

                        .slider-selection {
                            background: #e0e0e0;
                            box-shadow: none;
                        }

                        .bs-tooltip-auto[x-placement^="top"] .arrow::before,
                        .bs-tooltip-top .arrow::before {
                            top: -1px;
                        }
                    }
                }

                button {
                    @include borderRadius(20px);
                    border: 1px solid $green;
                    background: $green;
                    color: #fff;
                    @include boldFont();
                    font-size: 1.3rem;
                    padding: 5px 10px;

                    &:hover {
                        background: $gray;
                        border-color: $gray;
                    }
                }
            }
        }

        .euroBonusTable {
            table {
                margin-top: 50px;

                tr td {
                    padding: 20px 0;
                    border-top: none;
                    border-bottom: 1px solid $gray;
                    vertical-align: middle;
                    font-size: 1.8rem;
                    color: $black;
                    position: relative;

                    &::after {
                        content: " ";
                        position: absolute;
                        width: 1px;
                        height: 40px;
                        background: $gray;
                        top: 20px;
                        right: 0;
                    }

                    &:nth-child(1) {
                        color: $green;
                        font-size: 1.8rem;
                        @include boldFont();
                        width: 30%;
                        position: relative;
                    }

                    &:nth-child(2) {
                        text-align: center;
                        width: 10%;

                        span {
                            font-size: 2rem;
                            @include boldFont();
                        }
                    }

                    &:nth-child(3) {
                        text-align: center;
                        width: 30%;

                        span {
                            font-size: 2rem;
                            @include boldFont();
                        }
                    }

                    &:nth-child(4) {
                        width: 10%;
                        text-align: center;

                        a {
                            margin: 0 10px;

                            i {
                                &::before {
                                    width: 30px;
                                    height: 30px;
                                    top: -5px;
                                }
                            }
                        }
                    }

                    &:nth-child(5) {
                        width: 15%;
                        text-align: center;

                        p {
                            display: inline-block;
                            margin: 0;

                            &:nth-child(1) {
                                font-size: 2rem;
                                margin-right: 20px;
                            }

                            &:nth-child(2) {
                                font-size: 1.6rem;
                                @include boldFont();
                                color: #fff;
                                background: $green;
                                @include borderRadius(20px);
                                padding: 10px 15px;
                                line-height: 1;
                            }
                        }
                    }

                    &:nth-child(6) {
                        text-align: center;

                        a {
                            i {
                                &::before {
                                    left: -10px;
                                    top: -10px;
                                }
                            }
                        }

                        &::after {
                            width: 0;
                        }
                    }
                }
                .euroBonusTableRow {
                    td {
                        &::after {
                            @include ver-center();
                        }
                        &:nth-child(4) {
                            width: 15%;
                            p {
                                display: inline;
                                font-size: 1.8rem;
                                &:nth-of-type(2) {
                                    background-color: $green;
                                    color: #fff;
                                    @include borderRadius(20px);
                                    padding: 5px;
                                    @include boldFont();
                                    font-size: 1.6rem;
                                }
                            }
                        }
                        &:last-of-type {
                            width: 5%;
                            .ci.ci-arrow-right {
                                &::before {
                                    @include abs-center();
                                }
                            }
                            &::after {
                                width: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}
