@import "../bower_components/selectize/dist/css/selectize.css";

@media (max-width: 768px) {
    .btn-success .btn-danger {
        padding:2px 4px;
        font-size:90%;
        line-height: 1;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .btn-success .btn-danger {
        padding:4px 9px;
        font-size:95%;
        line-height: 1.2;
    }
}

body {
    background-color: #eee;
    /*font-size: 12px;*/
}
th input {
    display: flex;
    width: 100%;
}

table{
    table-layout: fixed;
}

td{
    word-wrap:break-word;
}
.navbar {
    background-color: #eee;
    border:none;
    min-height: 0;
    margin-bottom: 0;
}

.btn-group-vertical{
    display: grid;
}

.container-full {
    margin: 0 auto;
    width: 100%;
}

.selectize-input{
    overflow: inherit;
}

.main-logo{
    max-height: 70px;
}

.main-div{
    border: groove;
    border-radius: 10px;
    padding-bottom: 1%;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 1%;
}

.jumbotron{
    height: 100vh;
    padding-top: 0.2%;
    margin-bottom: 0%;
}

.required:after {
    content: "*";
    color: red;
}

.navbar-login {
    width: 305px;
    padding: 10px;
    padding-bottom: 0px;
}

.navbar-login-session {
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
}

.icon-size {
    font-size: 87px;
}

.stylish-input-group .input-group-addon {
    background: white !important;
}

.stylish-input-group .form-control {
    border-right: 0;
    box-shadow: 0 0 0;
    border-color: #ccc;
}

.stylish-input-group button {
    border: 0;
    background: transparent;
}

/* layout.css Style */
.upload-drop-zone {
    height: 50%;
    border-width: 2px;
    margin-bottom: 2%;
}

/* skin.css Style*/
.upload-drop-zone {
    color: #ccc;
    border-style: dashed;
    border-color: #ccc;
    line-height: 100px;
    text-align: center
}

.upload-drop-zone.drop {
    color: #222;
    border-color: #222;
}

.row {
    padding-top: 0.5%;
}

.ver-disp-flex {
    display: flex;
}

.ver-disp-flex-child {
    align-self: flex-end;
}

.filterable {
    margin-top: 15px;
}
.filterable .panel-heading .pull-right {
    margin-top: -20px;
}
.filterable .filters input[disabled] {
    background-color: transparent;
    border: none;
    cursor: auto;
    box-shadow: none;
    padding: 0;
    height: auto;
}
.filterable .filters input[disabled]::-webkit-input-placeholder {
    color: #333;
}
.filterable .filters input[disabled]::-moz-placeholder {
    color: #333;
}
.filterable .filters input[disabled]:-ms-input-placeholder {
    color: #333;
}

.menu-gap{
    margin-top:1%;
    /*padding-bottom:1%;*/
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 24px;
    left: 3px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 32px;
}

.slider.round:before {
    border-radius: 50%;
}