#switcher_link {
    position: fixed;
    left: 0;
    top: 305px;
    background: #FFF;
    color: #333;
    z-index: 9999;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.15);
    border-radius: 0 4px 4px 0;
}

#switcher_link a i {
    font-size: 2em;
}

#switcher_link a {
    padding: 10px;
    float: left;
    color: #333;
}


#switcher_wrap {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 305px;
    background: #FFF;
    padding: 15px 17px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.15);
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    max-width: 309px;
    color: #232323;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -ms-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

#switcher_wrap.switcher_moved {
    left: -309px;
}
#switcher_wrap,
#switcher_wrap h3,
#switcher_wrap p,
.presale_question,
.buy_now{
    direction: ltr;
    text-align: left; 
}

.switcher_close {
    position: absolute;
    right: 15px;
    top: 20px;
    color: #d6d6d6;
    line-height: 1em;
    font-size: 16px;
    &:hover {
        color: #fdba1f;
    }
}

.switcher_close:hover,
#switcher_link a:hover {
    text-decoration: none;
}

#switcher_wrap label {
    line-height: 1.6em;
    user-select: none;
}

#switcher_wrap label {
    color: #333;
    clear: both;
    display: block;
    margin: 20px 0 0;
    padding-top: 10px;
    font-size: 12px;
}

#switcher_wrap label:hover {
    cursor: pointer;
}
#switcher_wrap label input{
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

#switcher_wrap label,
#switcher_wrap h3,
#switcher_wrap h4,
#switcher_wrap p,
#switcher_wrap select {
    font-family: Helvetica, sans-serif;
}

#switcher_wrap h3 {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1.6em;
    color: #232323;
}

#switcher_wrap h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4em;
    color: #232323;
}

#switcher_wrap p {
    font-size: 12px;
}

#switcher_wrap p {
    line-height: 1.4em;
    margin-bottom: 17px;
    clear: both;
}

#switcher_wrap ul {
    list-style: none;
    margin-bottom: 0;
    margin: 0;
    padding: 0;
}

.buy_now {
    background: #fdba1f;
    width: 100%;
    display: block;
    text-align: center;
    color: #3b0000;
    float: left;
    border-radius: 5px;
    padding: 5px 0;
    font-weight: bold;
    margin: 10px 0 10px;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -ms-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    i{
        margin-right: 8px;
    }
}

.buy_now:hover {
    opacity: 0.8;
    text-decoration: none;
}

.switcher_items a {
    width: 130px;
    height: 40px;
    display: block;
    float: left;
    clear: both;
    text-indent: -9999px;
    background: url('../img/herald_items_sprite.jpg') 0 0;
    position: relative;
}

.switcher_items li {
    margin-bottom: 10px;
    float: left;
    margin-right: 10px;
}
.switcher_items li:nth-child(2n){
    margin-right: 0;
}

.switcher_items {
    .item_default {
        background-position: 0 0;
    }
    .item_fashion {
        background-position: 0 -50px;
    }
    .item_essence {
        background-position: 0 -100px;
    }
    .item_sports {
        background-position: 0 -150px;
    }
    .item_blog {
        background-position: 0 -200px;
    }
    .item_tech {
        background-position: 0 -250px;
    }

    a {
        &:before {
            display: block;
            height: 24px;
            width: 24px;
            position: absolute;
            right: 8px;
            top: 7px;
            border: 2px solid #000;
            color: #000;
            border-radius: 50%;
            background: #fff;
            font-family: "FontAwesome";
            content: "\f00c";
            text-indent: 1px;
            font-size: 11px;
            text-align: center;
            line-height: 23px;
            opacity: 0;
            -webkit-transition: opacity .2s ease;
            -moz-transition: opacity .2s ease;
            -ms-transition: opacity .2s ease;
            -o-transition: opacity .2s ease;
            transition: opacity .2s ease;
        }
    }
    a.selected {
        &:before {
            opacity: 1;
        }
    }
    a:hover {
        &:before {
            opacity: 0.7;
        }
    }
}

.presale_question {
    color: #da0000;
    text-decoration: underline;
    &:hover {
        text-decoration: none;
    }
}



.fa-spin {
    -webkit-animation: spin 5s infinite linear;
    -moz-animation: spin 5s infinite linear;
    -o-animation: spin 5s infinite linear;
    animation: spin 5s infinite linear;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}
.herald-slider.owl-carousel, .owl-carousel .owl-stage-outer{
    direction: ltr;
}

@media only screen and (max-width:1335px) {
    #switcher_link,
    #switcher_wrap {
        display: none;
    }
}

@media only screen and (max-width:1919px) {
    #switcher_link{
        top: initial;
        bottom: 60px;
    }
    #switcher_wrap {
        top: initial;
        bottom: 50px;
    }
}