:root {
  --text-color: #fff;
  --input-font-size: 1rem;
  --input-background-color: #141D3A;
  --input-text-color: #FFFFFF84;
  --label-font-size: 1.25rem;
  --label-font-size-small: .6875rem;
  --label-text-color: #fff;
  --link-text-color: #9B9C9E9B;
  --button-font-size: 1.25rem;
  --button-background-color: #008DFF;
  --button-background-color-dark: #1A2457;
  --button-background-color-danger: #FF0000;
  --button-text-color: #fff;
  --button-hover-background-color: #0078E7;
  --footer-menu-color: #FFFFFF74;
  --footer-menu-color-active: #fff;
  --icon-button-color: #fff;
  --tile-background-color: #141D3A;
  --list-item-background-color: #18182F;
  --list-item-subcontent-color: #FFFFFF59;
  --status-color-new:#D3D3D3 ;
  --status-color-accepted: #808080;
  --status-color-in-progress: #FFD500FF;
  --status-color-completed: #00FF31;
  --status-color-open: #EE00FF;
  --badge-background-color: #425CAF;
  --d: 2500ms;
  --angle: 90deg;
  --gradX: 100%;
  --gradY: 50%;
  --c1: rgba(168, 239, 255, 1);
  --c2: rgba(168, 239, 255, 0.1);
}

* {
  box-sizing: border-box;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: true;
}
@property --gradX {
  syntax: "<percentage>";
  initial-value: 50%;
  inherits: true;
}
@property --gradY {
  syntax: "<percentage>";
  initial-value: 0%;
  inherits: true;
}
@font-face {
  font-family: "Europa-Bold";
  src: url("../fonts/europa-bold-webfont-a8b7f843a7664d21378a475c82f713b3.eot");
  src: url("../fonts/europa-bold-webfont-a8b7f843a7664d21378a475c82f713b3.eot") format("embedded-opentype"), url("../fonts/europa-bold-webfont-d46000b473e12c0ef39923e3aa0379b3.woff2") format("woff2"), url("../fonts/europa-bold-webfont-274e36cfcedfd0651af98aac9c32ee4f.woff") format("woff"), url("../fonts/europa-bold-webfont-2ad1fc837d9abd0085d282d33723401f.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Europa-Light";
  src: url("../fonts/europa-light-webfont-c9fe439ba4e197d401d99494ad1340e7.eot");
  src: url("../fonts/europa-light-webfont-c9fe439ba4e197d401d99494ad1340e7.eot") format("embedded-opentype"), url("../fonts/europa-light-webfont-39e85b914ae39312ae3e34db564f5e23.woff2") format("woff2"), url("../fonts/europa-light-webfont-31d13a407a0fa7e0ba7f5868aa44de42.woff") format("woff"), url("../fonts/europa-light-webfont-cf5fb40e3d0ced815dd597dd74bc7995.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Europa-Regular";
  src: url("../fonts/europa-regular-webfont-0228c7a91bbecc4b55b9e83bef265991.eot");
  src: url("../fonts/europa-regular-webfont-0228c7a91bbecc4b55b9e83bef265991.eot") format("embedded-opentype"), url("../fonts/europa-regular-webfont-9ddc2ac31fd7d57c22eb06145f0de94a.woff2") format("woff2"), url("../fonts/europa-regular-webfont-7ca4347483ca61942e1072745096cfbd.woff") format("woff"), url("../fonts/europa-regular-webfont-190eef13cd7cba7bc61c176987b30b59.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  background-image: linear-gradient(to bottom, #030509 0%, #030509 20%, #0F1A52 100%);
  min-height: 100vh;
  margin: 0;
  font-family: "Europa-Bold", sans-serif;
  color: var(--text-color);
}

.main {
  padding: 1.5625rem;
}

.f-right {
  float: right;
}

.logo-wrapper {
  width: clamp(300px, 80vw, 600px);
  margin: 15vh auto;
  display: block;
}

input {
  font-size: var(--input-font-size);
  padding: 0.625rem;
  border-radius: 0.3rem;
  background-color: var(--input-background-color);
  color: var(--input-text-color);
  border: none;
  height: 2.75rem;
}

input[type=checkbox] {
  height: 1rem;
}

select {
  font-size: 1.25rem;
  background-color: var(--input-background-color);
  color: var(--input-text-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  height: 2.75rem;
}

.form-group-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
}
.form-group-filter input, .form-group-filter select, .form-group-filter button {
  height: 2.75rem;
}
.form-group-filter a {
  margin-left: auto;
  align-self: center;
}

.login-form {
  margin: 0;
}
.login-form-wrapper {
  width: clamp(300px, 80vw, 600px);
  margin: 0 auto 10vh;
}
.login-form-wrapper .form-group {
  position: relative;
  margin: 1.25rem 0 1.25rem 0;
}
.login-form-wrapper .form-group label {
  font-size: var(--label-font-size);
  font-family: "Europa-Regular";
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
  color: var(--label-text-color);
  position: absolute;
  top: 1rem;
  left: 1rem;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.login-form-wrapper .form-group input:valid + label,
.login-form-wrapper .form-group input:focus + label,
.login-form-wrapper .form-group input:disabled + label {
  font-size: var(--label-font-size-small);
  transform: translateY(-0.8rem);
}
.login-form-wrapper .form-group input, .login-form-wrapper .form-group select {
  width: 100%;
}
.login-form-wrapper .form-group input {
  padding: 1.625rem 1rem;
}
.login-form-wrapper .form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.login-form-wrapper .form-group-checkbox label {
  font-size: 0.75rem;
  font-family: "Europa-Regular";
  color: var(--label-text-color);
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.login-form-wrapper button {
  max-width: 50%;
  float: right;
  padding: 1rem;
  border-radius: 0.25rem;
  font-family: "Europa-Bold";
  font-size: var(--button-font-size);
  margin-top: 0.75rem;
  background-color: var(--button-background-color);
  color: var(--button-text-color);
  cursor: pointer;
  border: none;
}
.login-form-wrapper button:hover {
  background-color: var(--button-hover-background-color);
}
.login-form-wrapper .left {
  float: left;
}

.button-links {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-family: "Europa-Regular";
}
.button-links a {
  font-size: 12px;
  text-decoration: none;
}
.button-links a, .button-links a:active, .button-links a:visited {
  color: var(--link-text-color);
}

.alert {
  width: clamp(300px, 80vw, 600px);
  margin: 1em auto;
  color: white;
  padding: 1em;
  border-radius: 0.25rem;
}
.alert-success {
  background-color: #009b00;
}
.alert-danger {
  background-color: #da0000;
}

.footer-menu {
  background-color: rgba(250, 250, 250, 0.0196078431);
  overflow: visible;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 3.3125rem;
  display: flex;
  justify-content: start;
}
.footer-menu .menu-button {
  text-align: center;
  width: 20%;
}
.footer-menu .menu-button a {
  display: inline-block;
  height: 3.3125rem;
  width: 100%;
}
.footer-menu .menu-button a, .footer-menu .menu-button a:active, .footer-menu .menu-button a:visited {
  color: var(--footer-menu-color);
}
.footer-menu .menu-button a.active, .footer-menu .menu-button a:hover {
  background-color: rgba(250, 250, 250, 0.062745098);
  color: var(--footer-menu-color-active);
}
.footer-menu .menu-button a .feather {
  stroke-width: 0.075rem;
}
.footer-menu .menu-button a svg {
  margin-top: 0.5rem;
  width: 2.325rem;
  height: 2.325rem;
}
.footer-menu .menu-button-center {
  position: relative;
}
.footer-menu .menu-button-center a {
  display: inline-block;
  color: var(--footer-menu-color-active);
  background-color: var(--button-background-color);
  border-radius: 50%;
  position: relative;
  width: 3.625rem;
  height: 3.625rem;
  top: -0.625rem;
}
.footer-menu .menu-button-center a.active, .footer-menu .menu-button-center a:hover {
  background-color: var(--button-hover-background-color);
}
.footer-menu .menu-button-center a svg {
  width: 2.625rem;
  height: 2.625rem;
}
.footer-menu .menu-button-large {
  width: 40%;
}

button, .button {
  background-color: var(--input-background-color);
  border: 0;
  color: var(--icon-button-color);
  border-radius: 0.3125rem;
  padding: 0.25rem 0.6325rem;
}

.button {
  padding: 0.7325rem 0.8325rem;
}
.button .icon-button a {
  width: 2.625rem;
  height: 2.625rem;
}
.button .icon-button a svg {
  position: relative;
  top: 0.575rem;
  width: 1.5rem;
  height: 1.5rem;
}

.icon-button {
  text-align: center;
  height: 3rem;
  cursor: pointer;
}
.icon-button.dark a {
  background-color: var(--button-background-color-dark);
}
.icon-button a {
  display: inline-block;
  background-color: var(--button-background-color);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: relative;
}
.icon-button a, .icon-button a:active, .icon-button a:visited {
  color: var(--icon-button-color);
}
.icon-button a svg {
  position: relative;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
}

.reset-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.button {
  height: auto;
  display: inline-block;
}

.button-container > div {
  display: inline-block;
  margin: 0 0 0 0.25rem;
}
.button-container .icon-button a {
  background-color: var(--button-background-color);
  width: 2.625rem;
  height: 2.625rem;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.button-container .icon-button a svg, .button-container .icon-button a img {
  position: relative;
  top: 0.575rem;
  width: 1.5rem;
  height: 1.5rem;
}
.button-container .icon-button a:hover:not(.disabled) {
  background-color: var(--button-hover-background-color);
}
.button-container .icon-button a.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.button-container .icon-button.danger a {
  background-color: var(--button-background-color-danger);
}
.button-container .icon-button.dark a {
  background-color: var(--button-background-color-dark);
}
.button-container.centered {
  display: flex;
  justify-content: center;
  flex: 1;
}
.button-container.centered .icon-button a {
  background-color: var(--button-background-color-dark);
}
.button-container.centered .icon-button a:hover:not(.disabled) {
  background-color: var(--button-background-color);
}

.header h1 {
  margin-top: 0;
  font-size: 42px;
  font-family: "Europa-Regular";
  font-weight: normal;
  width: 50%;
  line-height: 2.5rem;
}
.header .icon-button {
  position: relative;
}
.header .icon-button .feather {
  stroke-width: 0.095rem;
}
.header.with-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}
.header.with-nav .button-container.centered {
  justify-self: center;
}
.header.with-nav .button-container.f-right {
  float: none;
  justify-self: end;
}

.content {
  padding: 1.875rem 0;
}
.content table th, .content table td {
  text-align: left;
}

.dot {
  height: 0.625rem;
  width: 0.625rem;
  background-color: var(--button-background-color);
  border-radius: 50%;
  display: inline-block;
}
.dot.open {
  background-color: var(--status-color-open);
}
.dot.new {
  background-color: var(--status-color-new);
}
.dot.in-progress {
  background-color: var(--status-color-in-progress);
}
.dot.completed {
  background-color: var(--status-color-completed);
}
.dot.accepted {
  background-color: var(--status-color-accepted);
}

.icon-button .dot {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}

.top-menu {
  margin-top: 2.375rem;
  display: flex;
  gap: 0.5em;
  justify-content: start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 630px) {
  .top-menu.search-driver-form .ts-wrapper, .top-menu.search-tour-form .ts-wrapper {
    flex-basis: 100%;
  }
  .top-menu.search-driver-form #active, .top-menu.search-tour-form #active {
    flex-basis: calc(100% - 42.5px - 0.5em);
  }
}
@media only screen and (max-width: 470px) {
  .top-menu.search-driver-form #search, .top-menu.search-driver-form #dateFrom, .top-menu.search-driver-form #dateTo, .top-menu.search-tour-form #search, .top-menu.search-tour-form #dateFrom, .top-menu.search-tour-form #dateTo {
    flex-basis: 100%;
  }
}
.top-menu.search-driver-form .ts-wrapper, .top-menu.search-tour-form .ts-wrapper {
  width: 28rem;
}
.top-menu .input-container {
  position: relative;
}
.top-menu .input-container input[type=date]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z'/%3E%3C/svg%3E");
}
.top-menu .input-container .feather {
  width: 1.8625rem;
  height: 1.8625rem;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}

.tile {
  text-align: center;
  background-color: var(--tile-background-color);
  border-radius: 0.5rem;
  width: 48%;
  padding: 0.5rem 1%;
  height: 6.875rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.tile img {
  width: auto;
  height: 4rem;
  margin-top: 0.125rem;
}

.list {
  overflow-y: scroll;
  max-height: 60vh;
}
.list .list-header {
  margin-bottom: 1.5625rem;
  font-size: 1.125rem;
}
.list .list-item {
  font-size: 0.875rem;
  background-color: var(--list-item-background-color);
  padding: 1.125rem;
  min-height: 4.625rem;
  border-radius: 0.5rem;
  margin-top: 0.4375rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.list .list-item-subcontent {
  color: var(--list-item-subcontent-color);
}
.list .list-item-content {
  min-width: 40%;
}
.list .list-item-action {
  margin-top: 1rem;
  right: 0;
  min-width: 20%;
  flex-grow: 1;
}
.list .list-item-action-reset {
  display: flex;
  gap: 0.5rem;
}
.list .list-item-action .icon-button a {
  background-color: var(--button-background-color);
  width: 2.625rem;
  height: 2.625rem;
  margin-left: 0.5rem;
}
.list .list-item-action .icon-button a svg {
  position: relative;
  top: 0.575rem;
  width: 1.5rem;
  height: 1.5rem;
}
.list .list-item-action .icon-button a.blue {
  background-color: var(--button-background-color);
}
.list .list-item-action .icon-button a.grey {
  background-color: var(--status-color-accepted);
}
.list .list-item-action .icon-button a.red {
  background-color: var(--button-background-color-danger);
}
.list .list-item-action .icon-button.no-bg {
  height: auto;
  text-align: right;
  margin-bottom: 0.25rem;
}
.list .list-item-action .icon-button.no-bg a {
  background: none;
  width: auto;
  height: auto;
}
.list .list-item-action .icon-button.no-bg a svg {
  top: 0;
  width: 1.3625rem;
  height: 1.3625rem;
}
.list .list-item a {
  color: white;
  text-decoration: none;
}

.detail-item {
  font-size: 1.375rem;
  font-family: Europa-Regular;
}
.detail-item-subcontent {
  font-size: 0.875rem;
  font-family: Europa-Bold;
  color: var(--list-item-subcontent-color);
}
.detail-item-address {
  padding-top: 0.5rem;
  font-size: medium;
}
.detail-item-action {
  float: right;
  font-size: 0.875rem;
  font-family: Europa-Bold;
}
.detail-item-action a, .detail-item-action a:active, .detail-item-action a:visited {
  color: var(--link-text-color);
}
.detail-item-status {
  font-family: Europa-Bold;
  margin-top: 1.125rem;
  font-size: 0.875rem;
}
.detail-item-status .title {
  margin-right: 0.5rem;
}

.badge {
  font-size: 0.8125rem;
  font-family: Europa-Bold;
  padding: 0.03125rem 0.3915rem;
  border-radius: 0.5rem;
  background-color: var(--badge-background-color);
}

#map {
  margin-top: 1.875rem;
  min-height: 500px;
  width: 100%;
}

.tour-information {
  height: calc(100vh - 12rem);
}
.tour-information #map {
  height: 100%;
}

.tour-detail {
  margin-bottom: 5rem;
}

.block-spacer {
  margin-top: 5rem;
}

.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}

.leaflet-marker-icon .number {
  position: relative;
  top: -40px;
  font-size: 12px;
  width: 25px;
  text-align: center;
  font-weight: bold;
}

.tour-state-element {
  margin-top: 1rem;
  min-width: 40%;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#toast {
  max-width: 20%;
  padding-top: 1rem;
  margin-left: auto;
  margin-right: 1rem;
}
#toast .toast-success, #toast .toast-error {
  border: 1px solid grey;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
#toast .toast-success {
  background-color: green;
}
#toast .toast-error {
  background-color: red;
}

.tour-detail-legend {
  margin-top: 0.5rem;
}
.tour-detail-legend-element {
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.tour-detail-legend-element span {
  padding-left: 0.5rem;
}

.password-reset {
  color: white;
}

.ts-wrapper .ts-control {
  background-image: unset !important;
  background-color: var(--input-background-color) !important;
  color: var(--input-text-color) !important;
  border: unset !important;
  box-shadow: none !important;
  font-size: 1.25rem;
  padding: 1.2rem 1rem;
  border-radius: 0.3rem;
}

.ts-dropdown .ts-dropdown-content {
  background-color: var(--input-background-color) !important;
  color: var(--input-text-color) !important;
  font-family: Europa-Regular !important;
  font-size: 1.25rem;
}
.ts-dropdown .ts-dropdown-content .option:hover {
  background-color: #46b1f0 !important;
  color: white !important;
}

[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.5em);
  background: rgba(250, 250, 250, 0.062745098);
  padding: 1em;
  white-space: nowrap;
  display: none;
}

[data-tooltip]:hover::after {
  display: block;
}

.ts-wrapper .ts-control > input {
  border: 1px solid white !important;
  margin-top: 1rem !important;
  color: white !important;
  padding-left: 1rem !important;
}

.mobile-badge-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-badge-container .store-badge {
  height: 82px;
  vertical-align: middle;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.mobile-badge-container h2 {
  margin-bottom: 5rem;
}
.mobile-badge-container p {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-badge-container p .driverapp-logo {
  width: 64px;
  border-radius: 1rem;
}

.tour-image {
  cursor: pointer;
}
.tour-image-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.tour-image-overlay-image {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.tabs ul {
  list-style-type: none;
  width: clamp(300px, 80vw, 600px);
  display: flex;
  gap: 1rem;
  justify-self: center;
  padding: 0;
}
.tabs ul button {
  font-size: var(--button-font-size);
  cursor: pointer;
  background: none;
}
.tabs .is-active {
  display: block !important;
}
.tabs [data-tab-content-id] {
  display: none;
}
.tabs .active {
  font-weight: bold;
  text-decoration: underline;
}

.svg-item {
  width: 45px;
  font-size: 20px;
  animation: donutfade 1s;
  position: relative;
  float: left;
  margin: 0 0.4rem;
}
.svg-item:first-of-type {
  margin-left: 0;
}

.donut-ring {
  stroke: #EBEBEB;
}

.donut-segment {
  transform-origin: center;
}
.donut-segment-New {
  stroke: #989393;
}
.donut-segment-Accepted {
  stroke: #808080;
}
.donut-segment-in-progress {
  stroke: #ffd500;
}
.donut-segment-Completed {
  stroke: #00FF31;
}
.donut-segment-Open {
  stroke: #EE00FF;
}
.donut-segment-Cancelled {
  stroke: #FC0303;
}

.donut-percent {
  animation: donutfadelong 1s;
}

@keyframes donutfadelong {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.donut-text {
  font-family: Arial, Helvetica, sans-serif;
  fill: var(--text-color);
}

.donut-label {
  font-size: 12px;
  text-align: center;
}

.donut-percent {
  font-size: 0.5em;
  line-height: 1;
  transform: translateY(0.5em);
  font-weight: bold;
}

.donut-data {
  font-size: 0.12em;
  line-height: 1;
  transform: translateY(0.5em);
  text-align: center;
  text-anchor: middle;
  color: #666;
  fill: #666;
  animation: donutfadelong 1s;
}

#modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.modal {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-out;
}

.modal-header {
  padding: 0 16px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.modal-header .modal-title {
  margin: 1rem;
}

.modal-body {
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.modal-footer {
  padding: 16px;
  border-top: 1px solid #ddd;
  text-align: right;
}

.modal-footer .btn {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal .modal-dialog .modal-content .modal-footer .btn-secondary {
  background-color: #f0f0f0;
  color: #333;
}
.modal .modal-dialog .modal-content .modal-footer .btn-delete {
  background-color: var(--button-background-color-danger);
  color: #333;
  display: unset;
  text-decoration: none;
}

.modal-footer .btn-secondary:hover {
  background-color: #e0e0e0;
}

.btn-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  margin: -8px -8px -8px 0;
}

.btn-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=app.output.css.map */
