.slide_in_panel {
    position: fixed;
    z-index: 10;
    width: 35%;
    height: 100%;
    background: rgb(213, 213, 213); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(213, 213, 213, 1) 0%, rgba(196, 196, 196, 1) 99%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(213, 213, 213, 1) 0%, rgba(196, 196, 196, 1) 99%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(213, 213, 213, 1) 0%, rgba(196, 196, 196, 1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d5d5d5', endColorstr='#c4c4c4', GradientType=0); /* IE6-9 */
    top: 0;

}

.slide_in_panel.left {
    left: -1500px;
}

.slide_in_panel.right {
    right: -1500px;
}

.slide_in_panel .closer {
    position: absolute;
    z-index: 11;
    top: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .8)
}

.slide_in_panel.left .closer {
    right: -20px;
}

.slide_in_panel.right .closer {
    margin-left: -20px;
}

.slide_in_panel .title h2 {
    font-size: 1.3em;
    font-weight: 700;
    margin: 30px 30px 15px 30px;
    border-bottom: 1px solid rgba(44, 50, 95, .4);
    padding-bottom: 7px;
    color: rgb(40, 42, 111);
    text-align: left;
}

.slide_in_panel p {
    font-size: .9em;

}

.slide_in_panel .iscroll-wrapper {
    background: none;
}

.slide_in_panel .scroller {
    padding: 30px;
}

.slide_in_panel.left.on {
    animation: slide_in_left_panel 1.5s forwards;
}

.slide_in_panel.right.on {
    animation: slide_in_right_panel 1.5s forwards;
}

.accelerator {
    display: none;
    position: absolute;
    z-index: 99;
    min-height: 60px;
    background: #270015;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .06);
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.accelerator p {
    margin: 0;
}

.accelerator:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #270015;
    border-width: 10px;
    margin-left: -10px;
}

.container-coupon-error.accelerator {
    margin: -58px 0 0 0px;
    font-size: .8em;
    position: relative;
    width: 100%;
}

.container-coupon-error.accelerator .fas {
    margin-right: 7px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all .4s;
}

.container-coupon-error.accelerator .fas:hover {
    color: #c19267;
}

@keyframes slide_in_left_panel {
    0% {
        left: -1500px;

    }
    100% {
        left: 0px;
    }
}

@keyframes slide-up {
    0% {
        bottom: -200px;

    }
    100% {
        bottom: 0px;
    }
}


@keyframes slide_in_right_panel {
    0% {
        right: -1500px;

    }
    100% {
        right: 0px;
    }
}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 812px)
and (orientation: portrait) , only screen
and (min-device-width: 1024px)
and (max-device-width: 1024px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 2) , only screen
and (max-aspect-ratio: 13/9)
and (max-device-width: 1023px) {
    .slide_in_panel {
        width: 100%;
    }

    .accelerator {
        font-size: 1.1em;
        max-width: initial;
        min-height: initial;
        width: 100%;
        background: #270015 url('data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20width%3D%2228px%22%20height%3D%2227px%22%20viewBox%3D%220%200%2028%2027%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%3Cg%20transform%3D%22translate%28-336.000000%2C%20-47.000000%29%22%20fill%3D%22%23ffffff%22%3E%3Cg%20transform%3D%22translate%28350.000000%2C%2060.500000%29%20rotate%28-45.000000%29%20translate%28-350.000000%2C%20-60.500000%29%20translate%28332.000000%2C%2043.000000%29%22%3E%3Crect%20x%3D%2217%22%20y%3D%220%22%20width%3D%222%22%20height%3D%2235%22%3E%3C/rect%3E%3Crect%20transform%3D%22translate%2818.000000%2C%2017.500000%29%20rotate%28-90.000000%29%20translate%28-18.000000%2C%20-17.500000%29%20%22%20x%3D%2217%22%20y%3D%220%22%20width%3D%222%22%20height%3D%2235%22%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E') no-repeat no-repeat 97% 15px;
        position: fixed;
    }

    .slide_in_panel.left .closer,
    .slide_in_panel.right .closer {
        right: 15px;
        margin-left: inherit;
    }

    .slide_in_panel .scroller .container {
        max-height: 80%;
        overflow-y: scroll;
    }

    .accelerator p {
        max-width: 80%;
    }

    .accelerator p span {
        font-size: 1em !important;
    }

    .accelerator:after {
        display: none;
    }
}