/*
 * jQuery Slidein Plugin v1.0.0
 * https://github.com/pete-rai/jquery-slidein
 *
 * Copyright 2017 Pete Rai
 * Released under the MIT license
 * https://github.com/pete-rai/jquery-slidein/blob/master/LICENSE
 *
 * Released with the karmaware tag
 * https://pete-rai.github.io/karmaware
 *
 * Website  : http://www.rai.org.uk
 * GitHub   : https://github.com/pete-rai
 * LinkedIn : https://uk.linkedin.com/in/raipete
 *
 */

/* useful for right (x) or bottom (y) docked panels

 html {
     overflow-x: hidden;
     overflow-y: hidden;
 }
*/

.slidein {
    display: block;      /* don't change this */
    position: fixed;  /* don't change this */
    z-index: 999;
   /* background: #c2c2ff;*/
}

.slidein-panel {
    /* don't add width or height, use 'breadth' widget option as it then works for horz and vert */
    margin-top: 20px;
    height: 80%;
    border:groove;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #FaFaFa;

    border-color:#e9ecef;
}

.slidein-handle {
    overflow: hidden;  /* don't change this */
    padding: 10px;
    margin-top: 30px;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    /*border-color:#ced4da;*/
     border-color:#e9ecef;
      border:groove;
    background: #e9ecef;
    writing-mode: vertical-lr;
    font-size: 8pt;
}

.slidein2-panel {
    /* don't add width or height, use 'breadth' widget option as it then works for horz and vert */
    margin-top: 20px;
    height: 80%;
    border:groove;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #f2f2ff;
    border-color:#e6e6ff;
}

.slidein2-handle {
    overflow: hidden;  /* don't change this */
    padding: 10px;
    margin-top: 60px;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    background: #e6e6ff;
    writing-mode: vertical-lr;
    font-size: 5pt;
}
