@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;700;900&display=swap');

:root {
  --paper-white: #f6f6f9;
  --columbus-darkblue: #01316a;
  --columbus-mildblue: #325887;
  --columbus-yellow: #f6ba01;
  --progressbar-background: #ccc;
}

body {
  background-color: var(--paper-white);
}

body * {
  font-family: 'Roboto', sans-serif;
}

.mainFrame {
  position: relative;
}

.transportFrame {
  padding-left: 0px!important;
}

.footer {
  position: relative;
  bottom: 0;
  background-color: var(--columbus-darkblue);
  padding: 16px;
  font-size: x-small;
}

.footer p {
  color: white;
}

.footer img {
  height: 25px;
}

.header {
  text-align: center;
  background-color: var(--columbus-darkblue);
  padding: 15px;
}

.header img {
  height: 60px;
}

.header h2 {
  font-weight: 300;
  color: white;
  margin-top: 10px;
}

.transport {
  border: 1px solid var(--columbus-mildblue);
  padding: 10px;
  background-color: var(--paper-white);
}

.accentLine {
  height: 2px;
  background-color: var(--columbus-yellow);
}

.accentLineVertical {
  width: 2px;
  height: auto;
  background-color: var(--columbus-yellow);
  margin-right: 10px;
}

.transportStats,
.driverStats,
.clientInfo {
  display: flex;
  flex-direction: row;
  margin: 20px 0px;
}

.transportIcons i:first-of-type {
  margin-bottom: 10px;
}

.transportIcons,
.driverIcons,
.clientIcons {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 40px;
  margin-right: 15px;
}

.driverIcons i:first-of-type {
  margin-bottom: 10px;
}

.clientIcons i {
  color: var(--columbus-mildblue);
  font-size: 30px;
}

.transportIcons i,
.driverIcons i {
  color: var(--columbus-mildblue);
}

.transportStatus {

}

.deliveryNoteInfo {
  display: flex;
  flex-direction: column;
}

.progressBar {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding: 0 20px;
}

.progressBar-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 16px;
}

.progressBar-top img {
  height: 30px;
}

.progressBar-top i {
  color: var(--columbus-mildblue);
  font-size: 30px;
}

.progressBar-mid {
  background-color: var(--progressbar-background);
  height: 3px;
  position: relative;
  margin-bottom: 20px;
}

.progressBar-mid i {
  color: var(--columbus-yellow);
  font-size: 30px;
  position: absolute;
  top: -10px;
}

.progressBar-done {
  height: 100%;
  background-color: var(--columbus-mildblue);
}

.progressBar-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.progressBar-bottom p {
  font-size: 16px;
  font-weight: 900;
}

/* Loading state animations */
@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
}

.skeleton-block {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.loading-state {
  animation: fadeIn 0.3s ease-in;
}

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

/*
@media (min-width: 768px) {
  .transportFrame {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .transportFrame {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .transportFrame {
    width: 1170px;
  }
}
 */
