/*
 * 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: lightgrey;
}

.slidein-panel {
    /* don't add width or height, use 'breadth' widget option as it then works for horz and vert */
}

.slidein-handle {
    overflow: hidden;  /* don't change this */
    padding: 10px;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    margin-top: 25%;
}

.slidein
{
    background : #fff;
}

/* the panel only */

.slidein-panel
{
    overflow : hidden;
    padding  : 20px;
    height: max-content;
    margin-top: 20%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* the handle only */

.slidein-handle
{
    color : rgba(234,35,48,1);
}
.bsc_input_group{
    margin-bottom: 20px;
}
#bsc_form input{
    cursor: pointer;
}
#bsc_form input[type="color"]{
    height: 50px
}
#bsc_form .bsc_submit_btn{
    background: rgba(234,35,48,1);
    color: #fff;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #fff;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; 
    text-align: center;
    cursor: pointer;   
}
#bsc_form .bsc_submit_btn:hover{
    color: #fff !important;
}
.bsc_submit_btn .fa-spin{
    display: none;
}