
body {
    font-family: 'Open Sans',sans-serif;
}
.container{
    width: 450px;
    height: 720px;
    overflow-y: auto;
    position:relative;
}
h3 {
    font-weight: bold;
}

a {
    text-decoration: underline;
    color: black;
}

table {
    width: 100%;
    overflow-y: scroll;
}

input[type="checkbox"], label.form-check-label:hover, .col-form-label:hover {
    cursor: pointer;
}

.btn-custom {
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    padding: 0 15px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    background-color: #E2001A;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    width: 100%;
}

.btn:focus,
.btn:hover,
.btn:active {
    outline: none;
    /*background: none;*/
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none !important;
    text-decoration: none !important;
}

button:disabled {
    cursor: not-allowed;
    pointer-events: all !important;
}

/*Parsley CSS*/
.parsley-errors-list {
    padding: 0;
    margin: 1px;
    list-style: none;
    color: #dc3545;
    font-size: .9rem;
}

.alert-warning {
    color: #17a117;
    font-weight: bold;
}

.invalid-feedback{
    font-size: 90%;
}

.confirmation-msg {
    color: #E2001A;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    width: 100%;
}

/********* DATE PICKER ***********/
/*img.ui-datepicker-trigger {*/
/*    cursor: pointer;*/
/*    border-radius: 3px;*/
/*    margin-left: -35px;*/
/*    border: 1px solid #ced4da;*/
/*    border-left: none;*/
/*}*/

.ui-corner-all, select.ui-datepicker-month, select.ui-datepicker-year {
    cursor: pointer;
}


/* Remove Arrows from number field */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width : 400px){
    .btn-custom {
        /*font-size: 0.9rem;*/
    }

    tr {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.spinner {
    text-align: center;
    position: fixed;
    z-index: 79;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.spinner .bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.spin {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    width: 80px;
    height: 80px;
    text-indent: -9999em;
    background: url(../images/gears.svg) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    z-index: 12;
}

.form-control {
    display: block;
    width: 100%;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    height: 38px;
    padding: 8px 14px;
    font-size: 15px;
    line-height: 1.42857143;
    color: #555;
    background: #fff;
    border: 2px solid #DDD;
    border-radius: 0 !important;
    -webkit-transition: border-color ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s;
    transition: border-color ease-in-out .15s;
}
.form-control:active, .form-control:focus {
    border-color: #999 !important;
    box-shadow: none !important;
}
label, .form-check-label {
    display: inline-block;
    line-height: 1.4em;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Raleway',sans-serif;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #555;
    /*margin-bottom: 10px;*/
    cursor: pointer;
}
.form-check-input {
    margin-top: 0;
}

.table td, .table th {
    padding: .3em;
}

.modal, .modal-backdrop {
    position: absolute !important;
}
.modal-dialog {
    margin: 4rem 10px;
}
.modal-content {
    border-radius: 0;
    background-color: rgba(224, 0, 26, 0.88);
    font-family: 'Raleway',sans-serif;
    color: black;
    font-size: 1.2rem;
    font-weight: 800;
}
.modal-header {
    border-bottom: none;
}
.close {
    font-size: 1.9rem;
    text-shadow: none;
    opacity: 1;
}

::selection {
    color: #fff;
    background: #E2001A;
}

::-moz-selection {
    color: #fff;
    background: #E2001A;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    background: transparent;
}

::-webkit-scrollbar:vertical {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 6px;
    border: solid 2px #fff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: none;
}