/*
    Global Classes for all Tabs
 */

.float_layout{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.float_layout_left{
    display: flex;
    justify-content: left;
    align-items: flex-start;
    width: 100%;
}

.mainLabel{
    top: -10px;
    left: 10px;
    background-color: #f1f1f1;
    position: relative;
}

.important_label{
    color: red;
}

.slider{
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    border-radius: 5px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    top: -5px;
    width: 15px;
    height: 35px;
    background: none;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    border-radius: 5px;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    top: -5px;
    width: 15px;
    height: 35px;
    background: none;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    border-radius: 5px;
    cursor: pointer;
}

.stapp_input{
    border-style: solid;
    border-color: black;
    border-width: 2px;
    border-radius: 5px;
}

.white_background{
    background: white;
}

.color_slider_bg {
    background: -webkit-gradient(linear, left top, right top, from(red), color-stop(17%, #ff0), color-stop(33%, lime), color-stop(50%, cyan), color-stop(66%, blue), color-stop(83%, #f0f), to(red));
    background:linear-gradient(to right, red, #ff0 17%, lime 33%, cyan, blue 66%, #f0f 83%, red);
}

.LinkButton{
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
    background: #0073aa;
    color: white;
    height: 60px;
    font-size: 17px;
    cursor: pointer;
}


#dividerSection{
    height: 100px;
}


.hidden{
    display: none;
}

.text_input{
    width: 100%;
}

/* The switch - the box around the slider */
.toogle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.toogle input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.toogleButton {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0073aa;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.toogleButton:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toogleButton {
    background-color: #08c415;
}

input:focus + .toogleButton {
    box-shadow: 0 0 1px #08c415;
}

input:checked + .toogleButton:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/*
    Elements on Color Tab

 */

.dividerDIV{
    width: 100%;
    height: 30px;
    border-radius: 25px;
}

.codeviewarea{
    width: 100%;
}

.color_chooser_input{
    width: 100px;
    height: 60px;
}


.chessboard {
    position: relative;
    background-image: linear-gradient(45deg, gray 25%, transparent 25%), linear-gradient(-45deg, gray 25%, transparent 25%), linear-gradient(45deg, transparent 75%, gray 75%), linear-gradient(-45deg, transparent 75%, gray 75%);
    background-size: 16px 16px;
    background-position:0 0, 0 8px, 8px -8px, -8px 0px;

}
.transparency_slider_bg2{
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}




/*
Color Table

 */
#colortable{
    width: 100%;
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
}

#addColor{

}

.selected{
    background-color: gray;
    color:white;

}
.dividerDIVContrainer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

/*

Advanced Area

 */

.codearea{
    width: 100%;
    height: 200px;

}

.codeviewarea{
    white-space:pre;
}
