.page-title {
    border-bottom: vw(4) solid $color-default-border;
    padding-right: vw(4);
    height: vw(104);
    float: left;
    width: 100%;

    @include tablet {
        border-bottom-width: vw2(2);
        padding-right: vw2(4);
        height: vw2(52);
    }

    @include desktop {
        border-bottom-width: 2px;
        padding-right: 4px;
        height: 52px;
    }

    .filter-handler {
        line-height: vw(100);
        text-align: center;
        font-size: vw(32);
        cursor: pointer;
        width: vw(100);
        float: left;

        @include tablet {
            line-height: vw2(50);
            font-size: vw2(16);
            width: vw2(50);
        }

        @include desktop {
            line-height: 50px;
            font-size: 16px;
            width: 50px;
        }
    }
    
    h2 {
        line-height: vw(100);
        text-align: center;
        font-size: vw(24);
        font-weight: 500;
        cursor: pointer;
        float: left;

        @include tablet {
            line-height: vw2(50);
            font-size: vw2(12);
        }

        @include desktop {
            line-height: 50px;
            font-size: 12px;
        }
    }

    .page-title-wrapper {
        border-left: 2px solid $color-default-border;
        padding: 0 13px;
        cursor: pointer;
        float: right;

        &:last-child {
            border-bottom: 2px solid #fff;
        }

        &.last {
            padding-right: 0;
        }

        &.single {
            cursor: default;
            border: 0 none;
            padding: 0;
        }

        h3 {
            text-transform: uppercase;
            line-height: vw(100);
            font-size: vw(24);
            font-weight: 500;
            float: left;

            @include tablet {
                line-height: vw2(50);
                font-size: vw2(12);
            }

            @include desktop {
                line-height: 50px;
                font-size: 12px;
            }
        }

        .page-icon {
            margin-right: vw(12);
            line-height: vw(100);
            font-size: vw(32);
            float: left;

            @include tablet {
                margin-right: vw2(6);
                line-height: vw2(50);
                font-size: vw2(16);
            }

            @include desktop {
                margin-right: 6px;
                line-height: 50px;
                font-size: 16px;
            }
        }
    }
}