
.template_container {
    padding: 20px;
}


.breadcrumb {
    padding: .75rem 1rem !important;
    list-style-type: none !important;
    font-size: 16px !important;
    background-color: #f4f4f4 !important;
    border-radius: 0 !important; /* QUICK AND DIRTY FIX */
}


/* Bug fix for tooltip in modal */
.tooltip {
    z-index: 1000000;
}

#wr_template_container .wr_dt_wrapper .row, .wr_modal_DataTable .wr_dt_wrapper .row {
    margin-left: unset;
    margin-right: unset;
}

/* Link 'styled' */
.wr-link {
    color: #0056b3;
}

.wr-link:hover {
    text-decoration: underline;
}

.wr_container {
    width: 100% !important;
}


/**
 Styling for WR forms.
 */

/* Fix for checkboxes, something overrides the bootstrap default styling */
.form-check-input.wr-checkbox {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem;
}

/* To display the toggle button under the label  */
.form-group > div.toggle.btn {
    display: block;
}

/* Change cursor for the clock symbol in the datetimepicker */
table > tbody > tr > td a[data-action="togglePicker"] {
    cursor: pointer;
    color: #00a0d2 !important;
}

/* Change color for the increment and decrement Buttons for the Time Picker*/
.timepicker-picker > table > tbody > tr > td > a[data-action="incrementMinutes"],
.timepicker-picker > table > tbody > tr > td > a[data-action="decrementMinutes"],
.timepicker-picker > table > tbody > tr > td > a[data-action="incrementHours"],
.timepicker-picker > table > tbody > tr > td > a[data-action="decrementHours"] {
    color: #00a0d2 !important;
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Fix DT reorder z-index in Modals, the reordered Row would be behind the Modal*/
table.dt-rowReorder-float {
    z-index: 1000000;
}


/* Beginn Radio options fix: Fix for I think jQuery, which overloads the default RadioOption css settings*/
input.wr-option-input.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

label.wr-option-label.form-check-label {
    padding-bottom: 3px;
    padding-left: 3px;
}

/* END Radio options fix: /*