﻿.switches-box {
    display: flex;
    height: 30px;    
    justify-content: space-between;
    border-bottom: 1px solid #CFCFCF;
    box-sizing:unset;
    margin-top:16px;
}

    .switches-box div, .switches-box span, .switches-box span:before, .switches-box label {
        box-sizing:unset;
    }

    .switches-box .switch-wrapper .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 24px;
    }

    .switches-box .switch-wrapper .switchMargin {
        margin-bottom: 0px;
    }

        .switches-box .switch-wrapper .switch input {
            display: none;
        }

        .switches-box .switch-wrapper .switch .switch-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 17px;
        }

        .switches-box .switch-wrapper .switch input:checked + .switch-slider {
            background-color: #007F90;
        }

        .switches-box .switch-wrapper .switch .switch-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 3px;
            top: 3px;
            background-color: #fff;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 50%;
            border: solid 1px #b4b4b4;
        }

        .switches-box .switch-wrapper .switch input:checked + .switch-slider:before {
            -webkit-transform: translateX(16px);
            transform: translateX(16px);
        }

    .switches-box .switch-wrapper .switch-title {
        color: #4A4A4A;
        font-size: 11pt;
        padding-right:3px;
        vertical-align:super;
    }

.Center .toggleBox {
    display: inline-block;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px
}

    .Center .toggleBox .toggleOrderBy {
        display: inline-block;
        background-color: #FFFFFF;
        border: 1px solid #0C769A;
        text-decoration: none;
        height: 33px;
        width: 95px;
        line-height: 31px;
        color: #000000
    }

    .Center .toggleBox .toggleBoxClicked {
        background-color: #0C769A;
        color: #fff
    }

    .Center .toggleBox .toggleOrderBy.toggleOrderByPrice {
        border-left: none;
        float: right;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
    }

    .Center .toggleBox .toggleOrderBy.toggleOrderByDistance {
        border-right: none;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
    }

    .Center .toggleBox .toggleOrderBy .txt {
        text-align: center;        
        font-size: 15px;
    }

.Center .sortByArea {
    display: inline-block;
    float: left;
    padding-top: 8px;    
    height:33px;
    line-height:33px;
}

    .Center .sortByArea a {
        font-size: 15px;
        font-weight:bold;
        color: #000000;
        text-decoration: none;
    }

    .Center .sortByArea small {
        border-left: 2px solid #007F90;
        border-bottom: 2px solid #007F90;
        width: 6px;
        height: 6px;
        display: inline-block;
        transform: rotate(45deg);
    }