﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
}

#external-events {
    position: fixed;
    z-index: 2;
    top: 20px;
    left: 20px;
    width: 150px;
    padding: 0 10px;
    border: 1px solid #ccc;
    background: #eee;
}

    #external-events .fc-event {
        cursor: move;
        margin: 3px 0;
    }

#calendar-container {
    position: relative;
    z-index: 1;
    margin-left: 200px;
}

#calendar {
    max-width: 1100px;
    margin: 20px auto;
}
.select2-results__option--selected {
    display: none;
}
.check {
    -webkit-appearance: none;
    position: relative;
    top: 5px;
    transition: 0.10s;
    background-color: #FE0006;
    text-align: center;
}

    .check:checked {
        background-color: #0E9700;
    }

    .check:before {
        content: "✖";
    }

    .check:checked:before {
        content: "✔";
    }

    .check:hover {
        cursor: pointer;
        opacity: 0.8;
    }