html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 1rem;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.btn.focus, .btn:focus {
    box-shadow: none !important;
}



.moveble-box-container{
    display: flex;
    flex-wrap: wrap;
}
.moveble-box {
    width: 225px;
    border: 1px solid #ccc;
    margin: 4px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}

.moveble-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    margin: 0 0 5px;
    padding: 8px;
    background: #17a2b8;
    color: #fff;
}
.moveble-box-header .date{
    font-size: 13px;
}
.mid-con{
    padding: 8px;
}
.mid-con p{
    margin-bottom: 8px;
}
.mid-con .name{
    display: flex;
    align-items: center;
}
.mid-con .name i{
    font-size: 13px;
    color: #777;
    margin-right: 5px;
}
.mid-con .bin span{
    color: #777777;
}
.switch-btn{
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #ccc;
    padding: 5px 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin-bottom: 0;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: -2px;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #17a2b8;
}

input:focus + .slider {
    box-shadow: 0 0 1px #17a2b8;
}

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

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
.unsortable{
    background: grey !important;
}


.switch-btn{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding: 5px 8px;
    align-items: center
}
.switch-btn .del-btn{
    color: #FF6C60;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}
i.fa.fa-trash {
    color: #FF6C60;
    font-size: 25px;
}
.btn-circle {
    border-radius: 25px!important;
}
.btn-red {
    color: #fff;
    background-color: #FF6C60;
    border-color: #FF6C60;
}
.btn-white {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
text.highcharts-credits {
    display: none !important;
}