/* TEMPLATE for Government Window Customer Page
   Based on Macon Bibb by Nathan Davenport
   June 2021
*/


/*****************************
    GENERAL STYLE
*****************************/


/*

bootstrap breakpoints

xs <576
sm >576
md >768
lg >992
xl >1200
*/


/* VARIABLES TO EDIT */

:root {
    /* Primary color determines Header background color */
    --primary-color: var(--gw-primary);
    /* Secondary color determines the footer color and divider colors */
    --secondary-color: var(--gw-primary);
    /* Selection Color determines the overlay color */
    --selection-color: var(--gw-primary);
    /* Background Color */
    --background-color: rgba(245, 245, 245);
    /* Header Image -- delete if want to use primary color as header */
    --header-image: url("../../../../resources/img/modern/header.jpg");
    /* Header height at top of page */
    --header-height: 80px;
    /**/
    /**/
    /**/
    /**/
    /* main palette */
    --dark-grey: #323232;
    --light-grey: #565656;
    --warning: #a20000;
    --success: #006f0b;
    --gw-primary: #3C4981;
    --gw-secondary: #4097DB;
    /* section colors -- customize if needed */
    --footer-color: var(--secondary-color);
    --footer-text: white;
    --header-color: var(--primary-color);
    --alert-banner-color: var(--warning);
    --divider-color: var(--secondary-color);
}


/* TEXT -- font-faces found in fonts.css */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Trueno Bold", sans-serif;
    font-style: normal;
    color: #323232;
    color: var(--dark-grey);
    overflow-y: hidden;
}

body,
a,
span,
p,
label,
td,
th,
thead,
tr,
table,
sup,
tbody {
    font-family: "Trueno Light", sans-serif;
    font-weight: 200;
    font-style: normal;

    color: #565656;
    color: var(--light-grey);
}

b {
    font-family: "Trueno Bold", sans-serif;
    overflow-x: hidden;
    color: #323232;
    color: var(--dark-grey);
}

strong {
    font-family: "Trueno Extra Bold", sans-serif;
    overflow-x: hidden;
    color: #323232;
    color: var(--dark-grey);
}

i {
    font-family: "Trueno Light Italic", sans-serif;
    overflow-x: hidden;
    color: #323232;
    color: var(--dark-grey);
}

i.fas,
a i.fas {
    /* for FONT AWESOME down arrows */
    right: 0px;
    top: 7px;
    color: #323232 !important;
    color: var(--dark-grey) !important;
    text-align: right;
    font-size: 12pt;
}

p.warning,
span.warning {
    color: #a20000;
    color: var(--warning);
}

h4.success,
span.success,
p.success {
    color: #006f0b;
    color: var(--success);
}

a {
    cursor: pointer;
    text-decoration: underline;
}

u {
    text-decoration: underline;
}

.no-underline {
    text-decoration: none !important;
}

body {
    background-color: rgba(245, 245, 245);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    
}


/* accessibility */

:not(button a, .close-sidebar-button, .header-button):focus,
a:not(button a, .close-sidebar-button, .header-button):hover,
a b:not(button a, .close-sidebar-button, .header-button):hover,
:not(button img) .dropbtn:hover,
:not(button:hover),
:not(input:select) {
    color: white !important;
    color: var(--footer-text) !important;
    background-color: #3C4981 !important;
    background-color: var(--selection-color) !important;
    border-radius: 4px;
    text-decoration: none !important;
    opacity: 1;
}


/* HEADER */

header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    /* set the background image here, where it says url() */
    background-color: #3C4981;
    background-color: var(--header-color);
    /* Header image from Wikiedpia, License here: TheMillCreek, CC BY-SA 3.0 <https://creativecommons.org/licenses/by-sa/3.0>, via Wikimedia Commons */
    background-image: linear-gradient( 180deg, rgba(86, 86, 86, 0) 0%, rgba(50, 50, 50, 0.6375) 73.44%, rgba(50, 50, 50, 0.75) 100%), url("../../../../resources/img/modern/header.jpg");
    background-image: linear-gradient( 180deg, rgba(86, 86, 86, 0) 0%, rgba(50, 50, 50, 0.6375) 73.44%, rgba(50, 50, 50, 0.75) 100%), var(--header-image);
    background-size: cover;
    /* adjust positioning here with second percentage */
    background-position: 100% 50%;
    background-repeat: no-repeat;
    height: auto;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 999;
    vertical-align: bottom;
    transition: 0.2s all;
}

header h1 {
    color: white;
    font-size: 38pt;
    transition: height 500ms, background 500ms;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    vertical-align: bottom;
    transition: 0.2s all;
    overflow-x: hidden;
    word-wrap: normal;
}

header h4 {
    color: white;
    transition: height 500ms, background 500ms;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    vertical-align: bottom;
    transition: 0.2s all;
    font-size: 14pt;
}

header i.fas {
    /* for FONT AWESOME down arrows */
    right: 0px;
    top: 7px;
    color: white !important;
    text-align: right;
    font-size: 10pt;
}

#sidebar i.fas {
    color: #323232 !important;
    color: var(--dark-grey) !important;
}

.horizontal-nav {
    display: none;
    padding-top: 4px;
    padding-bottom: 8px;
    z-index: inherit;
}

.horizontal-nav a {
    font-style: normal !important;
    text-decoration: none !important;
    color: white;
    font-family: "Trueno", sans-serif;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    vertical-align: bottom;
    font-size: 12pt;
}

@media (max-width: 768px) {
    .horizontal-nav {
        display: none !important;
    }
}


/* OVERLAY MENUS */

.dropdown-content {
    /* Dropdown Content (Hidden by Default) */
    display: none;
    position: absolute;
    margin-left: -30px;
    z-index: 9999999;
    min-width: 250px;
    transition: visibility 0s, opacity 0.5s linear;
    animation: fadeIn 0.2s ease-in;
}

.dropdown-content a {
    color: #565656;
    color: var(--light-grey);
    font-family: "Trueno Light", sans-serif;
    text-shadow: none;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    /* Show the dropdown menu on hover */
    animation: fadeIn 0.2s ease-in;
    display: block;
}


/* other header styling */

.header-image {
    width: 100%;
}

.header-text {
    margin-top: 80px;
    margin-top: var(--header-height);
    vertical-align: bottom;
    flex-wrap: wrap-reverse;
}

.shrink-header .header-text {
    margin-top: auto;
    transition: 0.2s all;
    margin-top: 30px;
    transition: all 300ms, background 300ms;
}

.padding-bottom {
    padding-bottom: 10px;
}


.header-button {
  height: 36px;
  margin-top: 2px;
  display: block;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

.gw-header-button {
  border: white !important;
  height: 48px;
  padding-top: 8px;
  display: block;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(255, 255, 255, 0.3));
  filter: drop-shadow(0px 1px 2px rgba(255, 255, 255, 0.3));
}

.cart-button,
button:not(.hamburger-menu-button) .header-button {
    /* hiding the cart button for now */
    /*display: none; */
    margin-top: -20px;
}

.header-button-row {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    margin: 0px;
    z-index: 999; /* should less than bootstrap modal */
}

.header-button:hover,
.close-sidebar-button:hover {
    filter: brightness(120%);
    transition: 0.1s all;
}


/* shrinking header -- responsive styling */

.shrink-header {
    transition: 0.2s;
}

@media (max-width: 1440px) {
    .header-text h1 {
        font-size: 36px;
    }
    .header-text h4 {
        font-size: 16px;
    }
    .shrink-header h1 {
        font-size: 32px;
        margin-top: 0;
    }
    .shrink-header h4 {
        font-size: 14px;
    }
    .shrink-header .header-text {
        margin-top: 30px;
    }
}

@media (max-width: 1140px) {
    .header-text h1 {
        font-size: 32px;
    }
    .header-text h4 {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .header-text h1 {
        font-size: 32px;
    }
    .header-text h4 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .padding-top {
        padding-top: 200px;
    }
    .header-text h1 {
        font-size: 28pt;
    }
    .header-text h4 {
        display: contents !important;
        font-size: 12pt;
    }
}

@media (max-width: 576px) {
    .header-text h1 {
        font-size: 24px;
    }
    .header-text h4 {
        font-size: 12px;
    }
}

@media (max-width: 300px) {
    .header-text h1 {
        font-size: 14pt;
    }
    .header-text h4 {
        font-size: 10pt;
    }
}


/* HAMBURGER MENU */

#sidebar {
    visibility: hidden;
}

.sidebar-menu {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: -300px;
    overflow-x: hidden;
    transition: 0.4s;
    background: #ffffff;
    /* Drop Shadow */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 0px 20px 20px 0px;
}

.sidebar-menu img {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 0;
}

.sidebar-menu h1 {
    padding-top: 70px;
    padding-bottom: 140px;
    height: 160px;
    z-index: 5;
}

.sidebar-logo {
    max-width: 250px;
    max-height: 80px;
    height: auto !important;
    width: auto !important;
}

.sidebar-menu a {
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: 0.3s;
    padding-bottom: 10px;
}

.sidebar-menu p {
    font-size: 12px;
}

.sidebar-menu .close-sidebar-button {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    cursor: pointer;
    z-index: 5;
}

.hamburger-dropdown-container {
    /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
    display: none;
    padding-left: 12px;
    animation: fadeIn 0.3s ease-in;
}

.hamburger-dropdown-container a {
    font-size: 12pt;
}

@media (min-width: 800px) {
    .hamburger-menu-button {
        /* hiding sidebar button on desktop */
        display: none !important;
    }
}

@media screen and (max-height: 450px) {
    /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
    .sidebar-menu {
        padding-top: 15px;
    }
    .sidebar-menu a {
        font-size: 18px;
    }
}


/* FOOTER AND alert-banner BARS */

footer {
    background-color: #3C4981;
    background-color: var(--footer-color);
    margin-bottom: 0px !important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    margin-top: 24px;
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.1);
}

.sticky-footer {
    position: fixed !important;
    bottom: 0px !important;
    left: 0px;
    right: 0px;
}

.alert-banner {
    /* normal styles */
    position: sticky;
    top: 0;
    /* bottom: 0; */
    width: 100%;
    margin: 0px;
    padding: 0px;
    padding-top: 4px;
    padding-bottom: 4px;
    background: #a20000;
    background: var(--alert-banner-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    transition: visibility 0s, opacity 0.5s linear;
    z-index: 999;
}

.alert-banner p,
.alert-banner a,
.alert-banner b,
footer p,
footer a,
footer b {
    color: white !important;
    transition: visibility 0s, opacity 0.5s linear;
    margin: 0px;
    padding: 0px;
    text-decoration: none !important;
    font-size: 12pt;
}

.alert-banner .container-fluid,
footer .container-fluid {
    width: 90% !important;
}

.alert-banner .close-footer-button {
    background-color: transparent;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    right: 0px;
    font-size: 36px;
    margin-right: 24px;
    cursor: pointer;
    z-index: 99999;
    color: white;
    border-radius: 0;
    opacity: 1;
}

.hidden {
    opacity: 0;
    transition: opacity 0s, opacity 0.2s linear;
}

@media (max-width: 500px) {
    .alert-banner p,
    .alert-banner a,
    .alert-banner b,
    footer p,
    footer a,
    footer b {
        font-size: 9pt;
    }
    .alert-banner .container-fluid {
        width: 85% !important;
    }
    .alert-banner .close-footer-button {
        margin-right: 16px;
    }
}


/* FORM STYLING */

select,
input {
    /* background: rgba(227, 227, 228, 0.5); */
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #ced4da;
    margin-top: 12px;
    margin-bottom: 12px;
    color: rgba(86, 86, 86, 0.85);
}

.dropdown select {
    color: rgba(86, 86, 86, 0.85);
    width: 100%;
}

.input-form input {
    color: rgba(86, 86, 86, 0.85);
    color: rgba(86, 86, 86, 0.85);
    width: 100%;
}

.card-form {
    /* background: rgba(227, 227, 228, 0.5); */
    border-radius: 8px;
    padding: 8px;
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid #ced4da;
}

.remove-form-styling {
    background-color: transparent !important;
    border-radius: 0px !important;
    border: none !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    margin: 0 !important;
}

.card-form select {
    /* Hiding arrow */
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
    /* removing all padding */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

label {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    padding-left: 2px;
    padding-right: 2px;
}

label.no-styling {
    margin-top: auto;
    margin-bottom: auto;
    width: 150px;
    padding-left: auto;
    padding-right: auto;
}


/* BUTTON STYLING */

button {
    background: rgba(227, 227, 228, 0.5);
    border-radius: 8px;
    padding: 8px;
    padding-left: 32px;
    padding-right: 32px;
    border: none;
    cursor: pointer;
    opacity: 1;
}

button.no-styling {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

button.table-button {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: 12px;
    margin-right: 12px;
}

button:hover {
    /* Change color on hover */
    opacity: 95%;
    transition: 0.2s;
}

button.drop-shadow {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}

button.success {
    background: #006f0b;
    background: var(--success);
    color: white;
}

button.warning {
    background: #a20000;
    background: var(--warning);
    color: white;
}

button.primary-color {
    background: #3C4981;
    background: var(--primary-color);
    color: white;
    color: var(--footer-text);
}

button.grey {
    background: #323232;
    background: var(--dark-grey);
    color: white;
}

button:focus {
    border-radius: 8px !important;
    opacity: 1 !important;
}

button:active {
    transform: scale(1.05);
    filter: brightness(120%);
    transition: .2s;
    opacity: 1 !important;
}

.floating-top-button {
    position: fixed !important;
    bottom: 40px !important;
    z-index: 50;
    width: 100%;
    opacity: 1 !important;
}

@media (min-width: 992px) {
    .floating-top-button {
        display: none !important;
    }
}


/* TABLE STYLING */

tbody {
    cursor: pointer;
}

thead tr th {
    /* removing the top line from table to look cleaner */
    border-top: none !important;
    color: #323232 !important;
    color: var(--dark-grey) !important;
}

td.warning {
    color: #a20000;
    color: var(--warning);
}


/* CARD STYLING */

.card {
    /* Primary White */
    background: #ffffff;
    /* Drop Shadow */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card.fill-height {
    height: 98%;
}

.divider-line {
    opacity: 0.2;
    /* Primary Grey */
    border: 1px solid #3C4981;
    border: 1px solid var(--divider-color);
    fill: #3C4981;
    fill: var(--divider-color);
    border-radius: 10px;
    margin-top: 0;
    margin-bottom: 10px;
}

.card-image {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
    border-radius: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.card-video {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
    margin-top: 12px;
    margin-bottom: 12px;
}

.carousel-image {
    border-radius: 20px !important;
}

.gw-image {
    width: auto !important;
    margin: auto !important;
    padding: auto !important;
    position: unset !important;
    z-index: auto !important;
    /*width: 42px !important;*/
}

.gw-image-bordered {
    border-radius: 20px;
    background-color: white;
    padding: 4px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}

.nav-card a {
    text-decoration: none;
}

.sticky-nav-card a {
    margin-top: 2px;
    margin-bottom: 4px;
}

@media (min-width: 992px) {
    /* makes nav card sticky to the side */
    .sticky-nav-section {
        position: sticky;
        top: 0;
        height: 100%;
        padding-bottom: 10px;
    }
    .sticky-nav-card {
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky;
        position: sticky;
        top: 145px;
    }
    .sticky-nav-card a,
    .sticky-nav-card p span {
        margin-top: 2px;
        margin-bottom: 4px;
        font-size: 10pt;
    }
    .header-card,
    .new-header-image {
        border-radius: 0px 0px 20px 20px;
    }
}


/* RESPONSIVE DESIGN */


/* Fixing the container widths for bootstrap */

@media (min-width: 0px) {
    .container-wrapper {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container-wrapper {
        max-width: 95%;
    }
}


/* bounds width for ultrawide and 4k */

@media (min-width: 2000px) {
    .container-wrapper {
        max-width: 1900px;
    }
}


/* Fade animation between pages */

.animate-in {
    -webkit-animation: fadeIn 0.4s ease-in;
    animation: fadeIn 0.4s ease-in;
}

.animate-out {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}

/* Pagination/ Pager */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pagination > li > a,
.pagination > li > span {
  color: #636e7b;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #e4e7ea;
}
.pagination-split li {
  margin-left: 5px;
  display: inline-block;
  float: left;
}
.pagination-split li:first-child {
  margin-left: 0;
}
.pagination-split li a {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #5fbeaa;
  border-color: #5fbeaa;
}
.pager li > a,
.pager li > span {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #636e7b;
}

.bootstrap-dialog {
    /* dialog types */
    /**
     * Icon animation
     * Copied from font-awesome: http://fontawesome.io/
     **/
    /** End of icon animation **/
}

.bootstrap-dialog .modal-header {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.bootstrap-dialog .bootstrap-dialog-title {
    color: #fff;
    display: inline-block;
    font-size: 16px;
}

.bootstrap-dialog .bootstrap-dialog-message {
    font-size: 14px;
}

.bootstrap-dialog .bootstrap-dialog-button-icon {
    margin-right: 3px;
}

.bootstrap-dialog .bootstrap-dialog-close-button {
    font-size: 20px;
    float: right;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.bootstrap-dialog .bootstrap-dialog-close-button:hover {
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
}

@media (min-width: 1172px) {
    .bootstrap-dialog .modal-xl {
        max-width: 95%;
    }
}

.bootstrap-dialog .modal-lg .bootstrap4-dialog-button:first-child {
    margin-top: 8px;
}

.bootstrap-dialog.type-default .modal-header {
    background-color: #fff;
}

.bootstrap-dialog.type-default .bootstrap-dialog-title {
    color: #333;
}

/* .bootstrap-dialog.type-info .modal-header {
    background-color: #17a2b8;
}

.bootstrap-dialog.type-primary .modal-header {
    background-color: #007bff;
}

.bootstrap-dialog.type-secondary .modal-header {
    background-color: #6c757d;
}

.bootstrap-dialog.type-success .modal-header {
    background-color: #28a745;
}

.bootstrap-dialog.type-warning .modal-header {
    background-color: #ffc107;
}

.bootstrap-dialog.type-danger .modal-header {
    background-color: #dc3545;
}

.bootstrap-dialog.type-light .modal-header {
    background-color: #f8f9fa;
}

.bootstrap-dialog.type-dark .modal-header {
    background-color: #343a40;
} */

.bootstrap-dialog.size-large .bootstrap-dialog-title {
    font-size: 24px;
}

.bootstrap-dialog.size-large .bootstrap-dialog-close-button {
    font-size: 30px;
}

.bootstrap-dialog.size-large .bootstrap-dialog-message {
    font-size: 18px;
}

.bootstrap-dialog .icon-spin {
    display: inline-block;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}

@-ms-keyframes spin {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.bootstrap-dialog-header {
        display: contents;
}

.nav-tabs .nav-link {
        border: 0px solid #3C4981 !important;
    }
ul#taxBillTabs li {
        margin: 5px; 
    }
ul#taxBillTabs li a {
        background-color:#3C4981;
        padding: 10px;
        border-radius: 10px;
        display: block;
    }
a#print_latest_bill {
        background: #006f0b !important;
    }
span#email-bill {
        background: #3C4981;
        padding: 8px;
        border-radius: 10px;
        color: white !important;
        margin-top: 0px;
        margin-bottom:0px;
        display: block;
    }
ul#taxBillTabs li a:hover{
        text-shadow: 1px 0 white;
    }
#taxBillTabs a {
        color: white !important;
    }
span#email-bill:hover{
        text-shadow: 1px 0 white;
    }
#taxBillTabs a.active {
        text-decoration: underline;
        text-shadow: 0px 0 white !important;
    }

.formslist a:hover{		
        background-color: #43638C; 	
        border-radius:5px;
        color: white;	
}
    
.nav-card a:hover {
        background-color: #43638C;
        border-radius:5px;
        color: white;	
}
    
.horizontal-nav a:hover {	
        background-color: #43638C;	
        border-radius:5px;	
        color: white;
        }
#sidebar .container a:hover {
        background-color: #43638C;
        border-radius:5px;
        color: white;
        }
ul#ui-id-1 li:hover{
    color:white !important;
}

ul#ui-id-1 li{
    font-family: "Trueno Light", sans-serif;
}

#estore_info .estore-office-categories img,
#estore_info .estore-categories img,
#estore_info .estore-products img {
	width: 100px !important;
	height: 100px !important;
	border: 0px;
}

/*# sourceMappingURL=bootstrap-dialog.css.map */