/**
    Home saved search list
 */
.home-saved-searches-container {
    background-color: #f7f6f4;
    padding: 10px 10px 10px 10px;
}

.home-saved-searches-container a {
    text-decoration: none;
    cursor: pointer;
    display:block;
}

.home-saved-searches-container .all-searches-button {
    color: #399a19;
    font-size: 14px;
    margin: 6px 0 0 10px;
    text-align:center;
}

.home-saved-searches-container .item-wrapper.hide {
    display: none;
}

.home-saved-searches-container .item {
    display: table;
    width: 100%;
    border: 1px solid #dfdfdf;
    border-bottom: none;
    background-color: #fff;
    height: 58px;
}

.home-saved-searches-container .item.first {
    border-radius: 3px 3px 0 0;
}

.home-saved-searches-container .item.last {
    border-radius: 0 0 3px 3px;
    border-bottom: 1px solid #dfdfdf;
}

.home-saved-searches-container .item.without-border {
    border: none;
}

.home-saved-searches-container .item .subscribe-button-block {
    display: table-cell;
    vertical-align: middle;
    width: 75px;
    padding: 0;
    text-align: center;
    position: relative;
}

.home-saved-searches-container .item .subscribe-button-block a{
    display: inline-block;
    width: 75px;
    height: 58px;
    outline: 0;
    -moz-outline-style: none;
    text-decoration: none;
}

.home-saved-searches-container .item .subscribe-button-block:hover::before{
    border: 1px solid yellow;
    outline: 0;
    -moz-outline-style: none;
    text-decoration: none;
}


.home-saved-searches-container .item .notifications-button-block {
    display: table-cell;
    vertical-align: middle;
    width: 75px;
    padding: 0;
    text-align: center;
    border: none;
    position:relative;
}
.notifications-link{
    display:none;
}
.home-saved-searches-container .item .notifications-button-block p {
    font-size: 12px;
    color: #A2A2A2;
    margin:0;
    padding:0;
    line-height:12px;
}

.home-saved-searches-container .item .subscribe-button-block .button-title {
    font-size: 12px;
    color: #A2A2A2;
    line-height:12px;
    height: 47px;
}

.home-saved-searches-container .item .subscribe-button-block .button-title img{
    margin-top: 5px;
    margin-bottom: 3px;
}

.home-saved-searches-container .item .left {
    display: table-cell;
    vertical-align: middle;
    width: 40px;
}

.home-saved-searches-container .item .left img {
    display: block;
    margin-left: 9px;
}

.home-saved-searches-container .item .content {
    display: table-cell;
    padding-top: 5px;
}

.home-saved-searches-container .item .content .title {
    color: #666666;
    font-weight: normal;
    font-size: 13px;
    margin: 5px 0 0 5px;
    padding: 5px 0 0 0;
    overflow: hidden;
    line-height: 20px;
    height:20px;
}

.home-saved-searches-container .item .content .title span {
    background-color: #ffcd30;
    padding: 3px 5px;
    font-size: 11px;
    color: #676769;
    vertical-align: 1px;
    border-radius: 3px;
}

.home-saved-searches-container .item .content .description {
    color: #a0a0a0;
    max-height: 36px;
    font-size: 12px;
    margin: 0 0 0 5px;
    padding: 0;
    width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    height: 20px;
}

.home-saved-searches-container .item-wrapper:last-child {
    border: none;
}

.subscription-block label{
    pointer-events: none;
}

/**
Switch
 */
.switch-input {
    display: none;
}
.switch-label {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    padding: 16px 0 16px 44px;
    font-size:10px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
.switch-label:before, .switch-label:after {
    content: "";
    position: absolute;
    margin: 0;
    outline: 0;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.switch-label:before {
    left: 6px;
    width: 30px;
    height: 18px;
    background-color: #fff!important;
    border-radius: 10px;
    top:42px;
    border: 1px solid #cdcdcd!important;
    outline: 0;
    -moz-outline-style: none;
}
.switch-label:after {
    left: 6px;
    top:42px;
    width: 18px;
    height: 18px;
    border: 1px solid #cdcdcd!important;
    border-radius: 50%;
    background-color:#fff!important;
    outline: 0!important;
    -moz-outline-style: none;
}
.switch-label .toggle--on {
    display: none;
    top: 5px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    color: #339900!important;
    line-height: 1.2;
    white-space: nowrap;
}
.switch-label .toggle--off {
    display: inline-block;
    top: 5px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    color: #A2A2A2;
    line-height: 1.2;
    white-space: nowrap;
}
.switch-input + .switch-label:before {
    background-color: #fff!important;
    border: 1px solid #cdcdcd!important;
}
.switch-input:checked + .switch-label:before {
    background-color: #7abb45!important;
    border: 1px solid #7abb45!important;
}
.switch-input:checked + .switch-label:after {
    background-color: #fff;
    -ms-transform: translate(60%, -50%);
    -webkit-transform: translate(60%, -50%);
    transform: translate(60%, -50%);
    border: 1px solid #7abb45!important;
}
.switch-input:checked + .switch-label .toggle--on {
    display: inline-block;
}
.switch-input:checked + .switch-label .toggle--off {
    display: none;
}