html, body, * {
    font-family: Open Sans;
}
body {
    padding: 20px;
}
.form-inline {
    display: inline;
    padding: 0;
    margin: 0;
}
a[data-parent="#accordion"] {
    text-decoration: none
}

label.cont {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    padding: 0 28px 0 35px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
label.cont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #ddd;
}

/* On mouse-over, add a grey background color */
label.cont:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
label.cont input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
label.cont input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
label.cont .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.panel-heading {
    font-size: 16px;
    font-weight: bold;
}

.panel-heading:hover {
  background-color: #cecece !important;
}

/* Modal */
/* ********************************************************************************************************** */
.modal-full {
    width: 98%;
    /*height: 100%;*/
    margin: 10px 1%;
    padding: 0;
}

.modal-full .modal-content {
    height: auto;
    /*min-height: 100%;*/
    border-radius: 0;
}

.modal-body h5 {font-size:14px; padding:10px 20px; text-transform:uppercase;}
.modal-body .list-group {margin:10px 0 15px 0;}
.modal-body .list-group > li > strong {display:inline-block; width:110px;}
.modal-body .list-unstyled {margin:0 0 20px 0;}


.modal-header {
    padding: 10px 15px !important;
    border-bottom: 1px solid #e5e5e5;
    background: #dcf0f7;
}
.modal-header .modal-title {
    font-size: 16px;
    font-weight: bold;
    color: #515151;
}
.modal-header .close {
    margin-top: auto;
    position: absolute;
    right: 15px;
    top: 12px;
    float: right;
    color: #4990c5;
    opacity: 1;
}

table td,
table th {
    font-size: 13px !important
}
