/* touchSideSwipe v0.3.1
 * https://github.com/Lucyway/touch-sideswipe
 * 2018 (c) Mititelu Nick (aka freetitelu). MIT license.
 */

@media(max-width:1440px) {
    .touch-side-swipe {
        display: none;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1976d3+0,0093dd+49,1976d3+51,0093dd+100 */
        background: rgb(25,118,211); /* Old browsers */
        background: -moz-linear-gradient(-45deg,  rgba(25,118,211,1) 0%, rgba(0,147,221,1) 49%, rgba(25,118,211,1) 51%, rgba(0,147,221,1) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg,  rgba(25,118,211,1) 0%,rgba(0,147,221,1) 49%,rgba(25,118,211,1) 51%,rgba(0,147,221,1) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg,  rgba(25,118,211,1) 0%,rgba(0,147,221,1) 49%,rgba(25,118,211,1) 51%,rgba(0,147,221,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1976d3', endColorstr='#0093dd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }
    .tss .touch-side-swipe {
        display: block;
        overflow-y: overlay;
    }
    .tss {
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        will-change: transform;
        transition-property: transform;
        transition-timing-function: ease;
    }
    .tss-wrap {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .tss-label {
        z-index: 99999;
        position: absolute;
        top: 5px;
        right: -44px;
        width: 44px;
        height: 44px;
        display: block;
        cursor: pointer;
    }
    .tss-label_pic {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        font-style: normal;
        text-align: left;
        text-indent: -9999px;
        direction: ltr;
        box-sizing: border-box;
        transition: transform .2s ease;
    }
    .tss-label_pic:after,
    .tss-label_pic:before {
        content: '';
        pointer-events: none;
        transition: transform .2s ease;
    }
    .tss--close .tss-label_pic {
        color: #000;
        width: 30px;
        height: 2px;
        /*box-shadow: inset 0 0 0 2px, 0 -8px, 0 8px;*/
        margin: 14px 10px;
    }
    .tss--close .tss-label_pic:after {
        position: absolute;
        transform: translateY(4px);
        color: #fff;
        width: 30px;
        height: 3px;
        box-shadow: inset 0 0 0 32px, 0 -8px, 0 8px;
        top: 0;
        left: 0;
    }
    .tss--open .tss-label_pic {
        color: #fff;
        padding: 0;
        width: 40px;
        height: 40px;
        margin: 2px;
        transform: rotate(45deg);
    }
    .tss--open .tss-label_pic:before {
        width: 40px;
        height: 2px;
    }
    .tss--open .tss-label_pic:after {
        width: 2px;
        height: 40px;
    }
    .tss--open .tss-label_pic:after,
    .tss--open .tss-label_pic:before {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-shadow: inset 0 0 0 32px;
    }
    .tss-bg {
        background: #000;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        will-change: opacity;
        transition-property: opacity;
        transition-timing-function: ease;
    }
}