 /* Sidebar Animation */
.app-sidebar {
  max-height: 100%;
  z-index: 9999;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  display: none;
}

.app-sidebar-selected {
  animation: slide-in 0.5s forwards;
  -webkit-animation: slide-in 0.5s forwards;
}

.app-sidebar-dismiss {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@-webkit-keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
  }
}

.app-sidebar-blocker {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: none;
}

.app-sidebar-blocker-active {
  background-color: black;
  opacity: 0.2;
  z-index: 998;
  display: inherit;
}

/* ********************************************************************************** */
/* ********************************************************************************** */

.loader-img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 43%;
    left: 0;
    margin: 0 auto;
    text-align: center;
}

* {
    box-sizing: border-box;
  }

.header-container {
    display: flex;
}

.header-left {
    padding: 20px;
    float: left;
    width: 50%;
    max-height: 90px;
}

.header-right {
    padding: 20px;
    float: left;
    text-align: right;
    width: 50%;
    max-height: 90px;
}
  
  /* Use a media query to add a break point at x px: */
  @media screen and (max-width: 200px) {
    .header-left, .header-right {
      width: 100%; /* The width is 100%, when the viewport is ??px or smaller */
    }
  }

.menu-burger {
    background-color: #105f86;
    display: inline-flex;
    appearance: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    user-select: none;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    outline-offset: 2px;
    width: auto;
    line-height: 1.2;
    font-weight: 100;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    height: 3.5rem !important;
    min-width: 3.5rem;
    font-size: 1rem;
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
    outline: transparent solid 2px;
    border-radius: 0.375rem;
    padding: 0px !important;
    text-decoration: none;
}

    .menu-burger :hover {
        background-color: #4186a8;
        display: inline-flex;
        appearance: none;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        user-select: none;
        position: relative;
        white-space: nowrap;
        vertical-align: middle;
        outline-offset: 2px;
        width: auto;
        line-height: 1.2;
        font-weight: 100;
        transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
        transition-duration: 200ms;
        height: 3.5rem !important;
        min-width: 3.5rem;
        font-size: 1rem;
        padding-inline-start: 1rem;
        padding-inline-end: 1rem;
        outline: transparent solid 2px;
        border-radius: 0.375rem;
        padding: 0px;
        text-decoration: none;
    }

.menu-burger-size {
    font-size: 22px !important;
    color: white;
    height: 22px !important;
}

.app-header-logo {
  max-width:100%;height:auto;
  padding-left: 20px; 
  width: 130px;
  height: 50px;
  transition: transform .2s;
}
  .app-header-logo:hover {
      transform: scale(1.2);
  }

.app-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.app-navbar-footer {
  position:absolute;
  bottom:0;
  width: 100%;
}

.app-navbar-footer-img {
  width: 20px;
  height: 15px;
}

.app-navbar-footer-copywrite {
  display: inline-block; 
  -webkit-box-align: center; 
  margin-bottom: 20px; 
  width: 100%; 
  text-align: center;
  font-size: small;
}

.logout-container {
    display: block;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}

.theme-container {
  display: flex;
  flex-wrap:wrap;
}

.theme-moon-div {
  width: 3em;
  padding-top: 10px;
  margin-right: 11px;
  text-align: right;
}

.theme-sun-div {
  width: 3em;
  margin-left: 11px;
  padding-top: 10px;
}

.theme-icon-size {
  font-size: 26px !important;
}

.theme-switch {
    width: 4em !important;
    height: 2.5em
}

.theme-switch-div {
  width: 4em;
}

.theme-spacer {
  width: 20%;
}

.flag-switch {
    width: 4em !important;
    height: 2.5em
}

.flags-container {
    display: flex;
    flex-wrap: wrap;
}

.flag-size {
    width: 70%;
    height: 75%;
    margin-top: 2px;
}

.btn-logout {
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
    outline: transparent solid 2px;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: large;
    min-width: 60%;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    margin-top: 15px;
    white-space: nowrap;
}

.btn-menu-small-block {
    padding-inline-start: 0.5rem;
    padding-inline-end: 0.5rem;
    outline: transparent solid 2px;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: large;
    width: 100%;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    margin-top: 8px;
}

.btn-menu-block {
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
  outline: transparent solid 2px;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: large;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 15px;
}

  .btn-menu-block:hover {
      padding-inline-start: 1rem;
      padding-inline-end: 1rem;
      outline: transparent solid 2px;
      border-radius: 0.375rem;
      font-weight: 750;
      font-size: large;
  }

  .app-sidebar-top {
    text-align: right; 
    margin-right: 10px; 
    margin-top: 10px;
  }

  .app-side-menu {
    list-style-type: none;
    margin-top: 30px; 
    margin-right: 0px; 
    margin-left: 0px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

.app-toaster {
    background-color: #fa6060 !important;
    border: 6px solid red;
    min-height: 200px;
    width: 360px;
}

.toaster-icon-alert {
    font-size: 26px;
    margin-right: 20px;
}
.toaster-icon-alert i {
    color: red !important;
}

.toaster-icon-info {
    font-size: 26px;
    margin-right: 20px;
}
.toaster-icon-info i {
    color: cyan;
}

.toaster-body {
    display: flex;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    min-height: 133px;
    font-weight: 500;
    line-height: 200%;
}

.toaster-footer {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.page-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 1.5rem 0rem 1.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    position: relative;
    min-height: 50px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.page-title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    margin-bottom: 0.2rem;
    color: #ff9900 !important;
}

.page-container {
    text-align: center;
}

.main-container {
    text-align: center;
}

.main-container-center-box {
    display: inline-block;
    min-width: 300px;
    max-width: 360px;
    text-align: left;
}

.box-container {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    width: 100%;
    overflow: hidden;
    display: flex;
    border: 1px solid gray;
    border-radius: 0.5rem;
    display: block;
}

/* main Screen (after login) */
.outer-container {
    background-image: url('/common/images/slider-01.jpg');
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 90px;
    max-height: 100vmax;
    background-size: cover;
    background-position: center;
}

.inner-container {
    display: block;
    text-align: center;
    color: white;
    margin-top: 40vmax;
}

    .inner-container h1 {
        font-size: 6vw;
    }

    .inner-container h3 {
        font-size: 3vw;
    }

.main-text {
    color: orangered;
}

.main-bg-color {
    background-color: orangered;
}

/*SPIN LOADER*/
@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.spin-loader-container {
    margin-top: 35px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.spin-loader::before {
    animation: 1.5s linear infinite spinner;
    animation-play-state: inherit;
    border: solid 5px #cfd0d1;
    border-bottom-color: #1c87c9;
    border-radius: 50%;
    content: "";
    height: 40px;
    width: 40px;
    position: absolute;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}

.app-list-font {
    padding-top: 10px;
    font-weight: bold;
    display: block;
}

.error-header {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.error-detail {
    min-height: 200px;
}

.error-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.error-message-1 {
    font-style: italic
}

.error-message-2 {
    font-weight: 300;
}

.display-tickets-list {
    list-style-type: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.display-tickets-list a {

    text-decoration: none;
}

.app-span {
    font-size: 16px;
}

.alert-warning i {
    color: orangered;
    font-size: 42px;
}

/*#################*/
/*# COMMON STYLES #*/
/*#################*/
.w20-pct {
    width: 20%;
}

.w30-pct {
    width: 30%;
}

.w40-pct {
    width: 40%;
}

.w50-pct {
    width: 50%;
}

.w60-pct {
    width: 60%;
}

.w70-pct {
    width: 70%;
}

.w80-pct {
    width: 80%;
}

.w90-pct {
    width: 90%;
}

.w100-pct {
    width: 100%;
}

.max-w300 {
    max-width: 300px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-20px {
    padding-top: 20px;
}

.pt-30px {
    padding-top: 30px;
}

.pl-10px {
    padding-left: 10px;
}

.pr-10px {
    padding-right: 10px;
}

.align-center {
    text-align: center;
    display: block;
}

.align-left {
    text-align: left;
    display: block;
}

.row-block {
    display: block;
    width: 100%;
}