﻿/***********************************
    GLOBAL
************************************/
html {
    position: relative;
    min-height: 100%;
}

body {
    background: url(../img/bkgd2.png) no-repeat center bottom, linear-gradient(rgb(47, 66, 75) 0%, rgb(91, 114, 104) 100%) no-repeat;
    font-family: 'Poppins', sans-serif;
    color: #555;
}

body:not(.modal-open) {
    overflow: visible !important; /*Fixing Alert Hiding Scrollbar Issues*/
}

h1 {
    text-align: center;
    font-weight: 200;
    color: #3B6865;
}

h1 .btn-link {
    font-size: 1rem;
}

h5 {
    color: #699696;
}

a, .btn-link {
    color: #DA7E16;
}

a:focus, a:hover, .btn-link:focus, .btn-link:hover {
    color: #be6e13;
}

/*********************
    TOOLS
*********************/
/*Equalizer Trick*/
.equal, .equal > div[class*='col-'] {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 1 0 auto;
}

.equal > div[class*='col-'] .card {
    width: 100%;
}

.well {
    margin-bottom: 15px;
    padding: 15px;
    background: #ebf8f7;
    border: 1px dashed #b4cbca;
}

.required, .control-label i {
    color: #AC6411;
}

.narrow {
    width: 50px;
}

.tooltip-inner {
    min-width: 300px;
    max-width: 500px;
}

.dialog-spinner {
    position: absolute;
    height: 100px;
    width: 100px;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    background-size: 100%;
}

/***********************************
    HEADER & MENU
************************************/
.site-header {
    position: relative;
    padding: 0;
    background: url(../img/bkgd.png) no-repeat -255px -205px, rgb(32, 43, 55);
    border: 1px solid rgba(0,0,0,0.33);
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 0.125em 0.25em 0 rgba(0,0,0,0.075);
}

.site-header .logo {
    display: inline-block;
    height: 40px;
    margin: 5px 5px 5px 0;
    vertical-align: top;
}

.site-header .navbar-brand {
    padding: 0;
    line-height: 40px;
    font-weight: 600;
    font-size: 40px;
    color: #202b37;
}

.site-header .navbar-brand {
    color: #fff;
    letter-spacing: 2px;
}

.site-header .navbar-brand span {
    display: inline-block;
    height: 40px;
    vertical-align: middle;
    text-shadow: 2px 2px rgba(32,43,55,0.50);
}

.site-header .navbar-brand img {
    display: block;
    float: left;
    height: 70px;
    margin: 0 15px;
}

.site-header .navbar-brand .text {
    display: block;
    padding: 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
    text-shadow: 2px 2px rgba(32,43,55,0.50);
}

.site-header .navbar-brand .text em {
    display: block;
    letter-spacing: normal;
    font-size: 20px;
    font-style: normal;
    text-shadow: none;
}

.site-header .navbar-brand .text:focus, .site-header .navbar-brand .text:hover, .site-header .navbar-brand:hover .text em {
    color: #fff;
}

.site-header .navbar-container {
    padding: 0 15px;
}

.site-header .nav-link {
    margin: 0 5px 0 0;
    border-radius: .25rem;
    transition: all .15s ease-in-out;
    background: rgba(255,255,255,0.5);
}

.site-header .nav-link:hover {
    background: rgba(218,126,22,0.15);
}

.site-header .user {
    margin: 0 5px 0 30px;
    text-align: right;
}

/*Nav*/
.site-header ul.navbar-nav > li > a {
    background-color: transparent;
    color: #ddd;
    text-shadow: 0 1px rgba(40,42,55,1);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-radius: 0;
}

.site-header ul.navbar-nav > li > a > i {
    display: block;
    margin: 11px 0;
    text-align: center;
    font-size: 26px;
}

.site-header ul.navbar-nav > li.active > a, .site-header ul.navbar-nav > li > a:hover {
    color: #fff;
    background: rgba(70,106,135,0.30);
    border-color: rgba(70,106,135,1);
}

.navbar-toggler {
    color: #DA7E16;
}

/***********************************
    STRUCTURE
************************************/
.main {
    padding-bottom: 75px;
}

.container {
    width: 90%;
}

.main {
    margin: 15px auto 75px auto;
    padding: 40px;
    background: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #bbb;
}

/*ePass Login*/
.login {
    width: 250px;
    margin: 100px auto;
    padding: 30px 0 0 0;
}

.login ul {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 10px;
    background: #fefffc;
    border: 1px solid #cbcdc9;
    text-align: center;
    -moz-border-radius: 0 5px 5px 5px;
    -khtml-border-radius: 0 5px 5px 5px;
    -webkit-border-radius: 0 5px 5px 5px;
    border-radius: 0 5px 5px 5px;
}

.login ul li {
    font-size: 15px;
    line-height: 2;
}
/***********************************
    TABS
************************************/
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.50);
    border: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    margin-right: 5px;
    color: #D17915;
}

.nav-tabs .nav-link:hover {
    background: #f7c77a;
    border-color: #DA7E16 #DA7E16 rgb(222, 226, 230);
    color: #9E5B10;
}

.tab-content {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
}

/***********************************
    ACCORDION
************************************/
.card .card-header {
    padding: 0;
    background-color: #4d585e;
}

.card .card-header:hover {
    background-color: #f7c77a;
}

.card .card-header a {
    display: block;
    width: 100%;
    padding: .75rem 1.25rem;
    color: #D17915;
}

.card .card-header a:hover {
    text-decoration: none;
    color: #9E5B10;
}

.card .card-header a:before, .btn-collapse:before {
    content: "\f13a";
    float: right;
    padding: 0 5px 0 0;
    font-size: 18px;
    font-family: FontAwesome !important;
}

.card .card-header a[aria-expanded="true"]:before, .btn-collapse[aria-expanded="true"]:before {
    content: "\f139";
}

.accordion .card .card-header {
    padding: 0;
    background-color: #78909c;
}

.accordion .card .card-header a {
    display: block;
    width: 100%;
    padding: .75rem 1.25rem;
    color: #fff;
}

.accordion .card .card-header a:hover {
    text-decoration: none;
}

.accordion .card .card-header a:before, .btn-collapse:before {
    content: "\f13a";
    float: right;
    padding: 0 5px 0 0;
    font-size: 18px;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
}

.accordion .card .card-header a[aria-expanded="true"]:before, .btn-collapse[aria-expanded="true"]:before {
    content: "\f139";
}

.accordion .card .card-header a[aria-expanded="true"] {
    background: #546f7a;
}

.accordion .card-body {
    background: #f4f7fa;
}

/***********************************
    TABLE
************************************/
.table .nav-link {
    padding: 0;
    margin: 0 10px;
}

.icon-bar a {
    text-align: center;
}

.min-width {
    min-width: 250px;
}

.footable {
    border-collapse: unset !important;
    border-spacing: 0 !important;
    border: inherit !important;
    -moz-border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    border-radius: 6px !important;
    font-family: inherit !important;
    font-size: 15px !important;
    color: inherit !important;
    background: rgba(255,255,255,0.75);
}

.footable > thead > tr > th, .footable > thead > tr > td, .fc-head {
    background: #c8e2e1 !important;
    border: 1px #b4cbca solid !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: #3B6865 !important;
    padding: 2px 4px !important;
}

.footable > tbody > tr > td {
    border-top: 1px solid #b4cbca !important;
    border-left: 1px solid #b4cbca !important;
    padding: .2rem !important;
    vertical-align: middle;
    line-height: 1.2;
}

.footable tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.footable td, .footable th {
    padding: .3rem;
}

/*Fixing Right Border on Responsive Tables*/
.table-responsive > .footable thead tr th, .table-responsive > .footable tbody tr td {
    border-right: 1px solid #b4cbca !important;
}

.footable > tbody > tr:last-child td {
    border-bottom: 1px solid #b4cbca !important;
}

/*Table Actions*/
.actions, .footable th:last-child, .footable td:last-child {
    width: 100px;
    text-align: center !important;
}

.footable td:last-child .btn-group button {
    padding: 1px 6px;
}

.footable input:not([type="checkbox"]) {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.footable input:disabled {
    background-color: #e9ecef !important;
}

/*Pagination & Sort*/
.footable > thead > tr > th > span.footable-sort-indicator:before {
    font-size: 11px !important;
}

.footable > tfoot > tr > th, .footable > tfoot > tr > td {
    background: transparent !important;
}

.footable .pagination > ul {
    margin: 0 auto !important;
}

.footable .pagination > .active > a, .footable .pagination > .active > a:focus, .footable .pagination > .active > a:hover, .footable .pagination > .active > span, .footable .pagination > .active > span:focus, .footable .pagination > .active > span:hover {
    color: #3B6865;
    background-color: #c8e2e1;
    border-color: #b4cbca;
}

/*Custom Table Rules*/
#event-table th:nth-child(9), #event-table td:nth-child(9),
#event-table-past th:nth-child(9), #event-table-past td:nth-child(9),
#type-table th:nth-child(4), #type-table td:nth-child(4),
#tag-table th:nth-child(2), #tag-table td:nth-child(2),
#calendar-table th:nth-child(3), #calendar-table td:nth-child(3),
#attachment-table th:nth-child(3), #attachment-table td:nth-child(3),
#attachment-table th:nth-child(4), #attachment-table td:nth-child(4),
#filing-attachment-table th:nth-child(4), #filing-attachment-table td:nth-child(4),
#filing-attachment-table th:nth-child(5), #filing-attachment-table td:nth-child(5),
#filing-attachment-table th:nth-child(6), #filing-attachment-table td:nth-child(6) {
    text-align: center;
}

#contact-table table th:first-child, #contact-table table td:first-child {
    width: 85px;
    text-align: center !important;
}

#contact-table table th:last-child, #contact-table table td:last-child,
#history-table table th:last-child, #history-table table td:last-child {
    width: auto;
    text-align: left !important;
}

/*Organization*/
#organization-table th:nth-child(1), #organization-table td:nth-child(1) {
    width: 300px;
}

#organization-table th:nth-child(2), #organization-table td:nth-child(2) {
    width: 400px;
}

#organization-table th:nth-child(3), #organization-table td:nth-child(3) {
    width: 140px;
}

#organization-table th:nth-child(5), #organization-table td:nth-child(5) {
    width: 90px;
}

/*Tags*/
.tags {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tags li {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    background: rgba(200,226,225, 0.5);
}

/*Report Table*/
#report-table .footable thead {
    display: none;
}

#report-table .footable {
    width: 50%;
    margin: 0 auto;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
}

#report-table .footable td {
    padding: 0 !important;
}

#report-table .footable td a {
    display: block;
    width: 100%;
    padding: 10px 0;
}

#report-table .footable td a label {
    margin-bottom: 0;
    cursor: pointer;
}

/***********************************
    FORM
************************************/
.form-inline h1 {
    margin: 0;
}

.required, .control-label i {
    color: #AC6411;
}

.event-box label {
    width: 100%;
}

.event-form-multi {
    min-height: 240px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc !important;
    opacity: 1 !important; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc !important;
}

#txtSearch {
    width: 160px;
}

.table input[type=checkbox] {
    display: block;
    margin: 0 auto;
}

/*Multi-Selects*/
.multiselect-native-select {
    display: block;
}

.multiselect-native-select .dropdown-toggle::after {
    margin-left: -5px;
}


.multiselect-native-select .btn-group, .multiselect-native-select .multiselect {
    width: 100%;
}

ul > li.multiselect-item.multiselect-filter > div > span.input-group-btn {
    margin-right: 5px;
}

ul > li.multiselect-item.multiselect-filter > div > span.input-group-btn > button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

ul > li.multiselect-item.multiselect-filter > div > span.input-group-btn > button > i:before {
    display: block;
    content: "\f057";
    font-family: Font Awesome\ 5 Free;
}

.multiselect-selected-text {
    display: inline-block;
    width: 100%;
    overflow-x: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.multiselect-container > li > a {
    color: #555;
}

.multiselect-container > li > a:hover {
    text-decoration: none;
}

.multiselect-container > li > a, .multiselect-container > li > a > label {
    display: block;
    width: 100%;
}


.multiselect-native-select .btn-group, .multiselect-native-select .multiselect {
    width: 100%;
}

/*Filters*/
.filters .form-group {
    margin-right: .5rem;
}

.filters .form-group:last-child {
    margin-right: 0;
}

.filters label {
    padding: 0 3px 0 0;
}

.filters #txtTrackingNumber {
    width: 120px;
}

.control-label i {
    color: #DA7E16;
}

fieldset.set-border {
    position: relative;
    min-width: 0;
    margin: 0 0 20px 0;
    padding: 10px;
    border: 1px solid #ABC4C4 !important;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

fieldset.set-border legend {
    width: auto;
    margin-bottom: 0px;
    padding: 5px 5px 5px 10px;
    border: none;
    color: #699696;
    font-size: 18px;
    font-weight: normal;
}

.card-body.note {
    height: calc(100vh - 200px);
    overflow-y: auto;
}

.card-body.note textarea {
    height: calc(100vh - 260px);
}

.alert-file-upload {
    background: #c8e2e1;
    border: 1px #b4cbca solid !important;
    border-bottom: none !important;
    color: #3B6865;
    border-spacing: 10px;
}

#divAddress {
    background-color: rgba(0,0,0,.05);
    border: 1px solid #b4cbca;
    padding: 6px;
}

#divAddress.form-inline .form-control-plaintext {
    min-width: 20px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

#divAddress.form-inline select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

#divAddress.form-inline #selCountry, #divAddress.form-inline #txtOrgPhone {
    display: none;
}

/*Validation Messages*/
.message span {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    font-weight: bold;
}

.message span:empty {
    display: none;
}

.validation-message ul {
    color: green;
    display: block;
}

.validation-message ul li {
    padding: 2px !important;
}

.modal-footer button.float-left {
    position: absolute;
    left: 15px;
}

/***********************************
    Calendar
************************************/
#goToDate {
    width: 175px;
}

#calendar {
    margin-bottom: 15px;
}

.fc-toolbar h2 {
    line-height: 1;
    font-weight: 200;
    color: #3B6865;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
}

.fc-view-container {
    background: #fff;
}

.fc-event .fc-content {
    color: #fff;
}

.fc-event, .fc-event-dot {
    background-color: #475e6d;
    border: 1px solid #32424d;
}

.fc-event:hover {
    background-color: #32424d;
    cursor: pointer;
}

.qtip-default {
    background-color: #d4e0ec !important;
    border-color: #aec3d8 !important;
    color: inherit;
    font-size: 14px;
    line-height: 1.3;
}

.qtip-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.qtip-content ul li {
    margin: 7px 0;
}

.qtip-content ul li strong {
    display: inline-block;
}

/***********************************
    NEW ACCOUNT STEPS
************************************/
.cf:before, .cf:after {
    content: ' ';
    display: table;
}

.cf:after {
    clear: both;
}

.wizard {
    overflow: hidden;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}

.wizard ul {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.wizard li {
    float: left;
    width: 16.66%;
}

.wizard .nav-tabs .nav-link {
    border-radius: 0;
}

.wizard a {
    position: relative;
    display: block;
    padding: 20px;
    padding-right: 0 !important;
    text-align: center;
    color: #aaa;
    cursor: pointer;
}

.wizard h6 {
    display: inline;
    font-size: 13px;
    font-weight: bold;
}

.wizard a:hover {
    background: #eee;
}

.wizard a.active {
    color: #777;
    background-color: #fff;
}

.wizard a span:first-child {
    display: inline-block;
    width: 22px;
    height: 22px;
    padding: 2px;
    margin-right: 5px;
    border: 2px solid #aaa;
    border-radius: 50%;
    background-color: #fff;
}

.wizard a.active span:first-child {
    color: #fff;
    border-color: #777;
    background-color: #777;
}

.wizard a:before, .wizard a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    display: block;
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 16px solid transparent;
}

.wizard a:before {
    margin-left: 1px;
    border-left-color: #d5d5d5;
}

.wizard a:after {
    border-left-color: #f5f5f5;
}

.wizard a:hover:after {
    border-left-color: #eee;
}

.wizard a.active:after {
    border-left-color: #fff;
}

.wizard li:last-child a:before, .wizard li:last-child a:after {
    display: none;
}

/***********************************
    GALLERY CARDS
************************************/
.gallery .card {
    position: relative;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.gallery .card a {
    transition: all 0.25s ease-in-out 0s;
}

.gallery .card .card-block {
    position: relative;
    padding: 30px 0 15px 0;
}

.gallery .card .card-title {
    text-align: center;
}

.gallery .card .btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
    padding: 0;
    width: 3rem;
    height: 3rem;
    transition: all .25s ease-in-out;
}

.gallery .card .btn .icon {
    transition: all .25s ease-in-out;
}

.gallery .card a:hover .card-img-top {
    opacity: 0.7;
}

.gallery .card a:hover {
    background: rgba(70,106,135,1);
    text-decoration: none;
    color: #fff;
}

/***********************************
    BUTTONS
************************************/
.btn-primary {
    background: #fce094;
    border-color: #f7c77a;
    color: #965108;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(218,126,22,.5);
}

.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    background: #f7c77a;
    border-color: #efb75d;
    color: #be6e13;
}

.btn-danger {
    background-color: #ef6e77;
}

.btn-danger:hover {
    background-color: #cc4b54;
}

.btn-primary.disabled, .btn-primary:disabled, .btn-secondary.disabled, .btn-secondary:disabled, .btn-danger.disabled, .btn-danger:disabled {
    color: #555;
    background-color: #dfdfdf;
    border-color: #dfdfdf;
    cursor: not-allowed;
}

.modal-footer .float-right button {
    margin-left: 5px;
}

/*Jira Bug Button*/
.atlwdg-trigger {
    background: #DA7E16 !important;
    z-index: 9999 !important;
    top: 44% !important;
    letter-spacing: 1px;
}

.tooltip {
    z-index: 100000000;
}

.btn-light {
    background-color: #EAECEF;
    border-color: #D0D4D9;
}

/*Toggle Switch*/
.form-check label {
    margin-right: .5rem;
}

.btn-toggle {
    margin: 0 2rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem;
    color: #6b7381;
    background: #bdc1c8;
}

.btn-toggle:focus, .btn-toggle.focus, .btn-toggle:focus.active, .btn-toggle.focus.active {
    outline: none;
}

.btn-toggle:before, .btn-toggle:after {
    line-height: 1.5rem;
    width: 2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity .25s;
    color: #6b7381;
}

.btn-toggle:before {
    content: 'Off';
    left: -2rem;
    text-align: left;
}

.btn-toggle:after {
    content: 'On';
    right: -2rem;
    opacity: .5;
    text-align: right;
}

.btn-toggle > .handle {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #fff;
    transition: left .25s;
}

.btn-toggle.active {
    transition: background-color 0.25s;
    background-color: #DA7E16;
}

.btn-toggle.active > .handle {
    left: 1.6875rem;
    transition: left .25s;
}

.btn-toggle.active:before {
    opacity: .5;
}

.btn-toggle.active:after {
    opacity: 1;
}

.active-toggle label {
    margin-right: 20px;
}

.list-group-item label {
    margin-left: 45px;
}

/*Pencil Icon on Profile*/
.editButton {
    color: #da7e16;
    background-color: transparent;
    border: none;
    cursor: inherit;
}

.editButton:hover {
    cursor: pointer;
}

/***********************************
    FOOTER
************************************/
.footer {
    position: fixed;
    bottom: 0;
    padding: 10px 5px;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #d4d4d4;
    box-shadow: 0 -0.125em 0.25em 0 rgba(0,0,0,0.075);
    z-index: 1002;
}

.footer img.logo {
    display: block;
    float: right;
    height: 40px;
}

footer .nav {
    width: 100%;
    text-align: center;
}

footer .nav > li {
    float: none;
    display: inline-block;
    margin: 0 auto;
}

footer .nav > li a {
    margin: 5px 3px;
    padding: 5px 8px;
    font-size: small;
    color: #999;
    transition: all 0.8s ease 0.1s;
    -webkit-transition: all 0.8s ease 0.1s;
    -moz-transition: all 0.8s ease 0.1s;
    -o-transition: all 0.8s ease 0.1s;
}

.footer .nav > li > a:hover, .footer .nav > li > a:active, .footer .nav > li > a:focus {
    background: #eee;
}

/***********************************
    RESPONSIVE
************************************/
@media print {
    html, body {
        height: auto !important;
        page-break-after: avoid !important;
        overflow: auto !important;
        background: none;
        page-break-inside: avoid !important;
    }

    div.pad * {
        page-break-after: avoid;
        page-break-before: avoid;
    }

    .btn, input, .footer, #goToDate, label[for="goToDate"], .navbar-toggler, .form-group .site-header {
        display: none;
    }

    @page {
        size: landscape;
    }

    /*Full Calendar*/
    .fc-event .fc-content {
        color: #000;
    }

    .fc-day-grid-event .fc-content {
        white-space: normal;
        overflow: visible;
    }
}

@media only screen and (max-width : 1600px) {
    .site-header {
        background-position: -500px -205px;
    }

    .site-header .navbar-brand .text em {
        font-size: 14px;
    }
}

/* Large devices (large desktops, <= 1200px) */
@media only screen and (max-width : 1200px) {
    .site-header {
        background-position: -750px -205px;
    }

    .site-header .user {
        position: absolute;
        top: 14px;
        right: 50px;
    }

    .navbar-toggler {
        position: absolute;
        top: 10px;
        right: 0;
        color: #fff;
    }

    .navbar-collapse.show {
        background: #fff;
    }

    .navbar-collapse .navbar-nav {
        background: rgb(32, 43, 55);
    }

    .site-header .nav-link {
        margin: 0;
        padding: 10px;
        border-radius: 0;
    }

    .site-header .navbar-brand .text em {
        font-size: 18px;
    }

    .site-header ul.navbar-nav {
        margin: 0;
    }

    .site-header ul.navbar-nav > li > a {
        padding: 0 15px;
    }

    .site-header ul.navbar-nav > li > a > i {
        display: inline-block;
        margin: 15px;
        text-align: left;
        font-size: 26px;
    }

    .modal-lg {
        max-width: 96%;
    }

    .filters .form-inline {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .footer img.logo {
        height: 32px;
    }
}

/* Medium devices (desktops, <= 992px) */
@media only screen and (max-width : 992px) {
    .wizard h6 {
        display: none;
    }

    .form-inline .form-group {
        margin-bottom: .25rem;
    }

    .footer img.logo {
        float: none;
        margin: 0 auto;
    }
}

@media (min-width: 576px) {
    .form-inline label {
        display: inline;
    }
}
/* Small devices (tablets, <= 768px) */
@media only screen and (max-width : 768px) {
    h1 {
        font-size: 30px;
    }

    h3, h4 {
        font-size: 20px;
    }

    .site-header .navbar-brand {
        margin: 10px;
    }

    .site-header .navbar-brand img {
        height: 40px;
        margin: 0 10px 0 0;
    }

    .site-header .navbar-brand .text {
        font-size: 24px;
    }

    .site-header .navbar-brand .text em {
        font-size: 10px;
        font-weight: 200;
    }

    .site-header .navbar-brand span {
        font-size: 24px;
    }

    .fc-toolbar .fc-left {
        float: none;
        width: 100%;
    }

    .fc .fc-toolbar > * > * {
        float: none;
    }

    .fc .fc-button-group > * {
        float: none;
        margin: 0 0 15px 0;
    }

    .fc .fc-toolbar .fc-button-group {
        text-align: center;
    }

    .fc-scroller {
        overflow-y: auto !important;
        height: auto !important;
    }

    .main {
        padding: 30px;
    }

    .wizard a {
        padding: 15px;
    }

    .wizard a:before, .wizard a:after {
        border-top-width: 26px;
        border-bottom-width: 26px;
        border-left-width: 13px;
    }
}

@media (max-width: 620px) {
    .wizard a {
        padding: 10px;
        font-size: 12px;
    }

    .wizard a:before, .wizard a:after {
        border-top-width: 22px;
        border-bottom-width: 22px;
        border-left-width: 11px;
    }
}

@media (max-width: 520px) {
    .wizard a {
        padding: 5px;
    }

    .wizard a:before, .wizard a:after {
        border-top-width: 16px;
        border-bottom-width: 16px;
        border-left-width: 8px;
    }

    .wizard li a span:first-child {
        display: block;
        margin: 0 auto;
    }

    .wizard li a span:last-child {
        display: none;
    }

    .btn {
        padding: .375rem;
    }
}

/*Min-Width Rules*/
@media (min-width: 1200px) {
    .container {
        max-width: none;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: none;
    }
}

@media(min-width:768px) {

    .container {
        max-width: none;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: none;
    }
}

/*Tabs To Accordion*/
.nav-tabs {
    display: none;
}

@media(min-width:768px) {
    .nav-tabs {
        display: flex;
    }

    .card {
        border: none;
    }

    .card .card-header {
        display: none;
    }

    .card .collapse {
        display: block;
    }
}

@media(max-width:767px) {
    .tab-content, .tab-content:not(#wizard-tabContent) {
        padding: 0;
        border: none;
    }

    .tab-content > .tab-pane, .tab-content > .tab-pane:not(#stepPersonal, #stepMailingAddress, #stepOrganization, #stepAdditional, #stepEmailList, #stepWatchList) {
        display: block;
        opacity: 1;
    }
}
