* {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  outline: 0 !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

a {
  text-decoration: none;
}

body {
  background-color: #F1F7FF;
}

#pwa-popup {
  position: fixed;
  bottom: -16px;
  right: 50%;
  transform: translate(50%,-50%);

  background-color: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 999999999999999;
  display: none;
  padding: 20px;
  animation: slideUp 0.3s ease-out;
  margin: 0 auto;
}

@keyframes slideUp {
  from {
    transform: translateY(120%) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

#pwa-popup-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

#pwa-popup-icon {
  width: 48px;
  height: 48px;
  background-color: #42d4b1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#pwa-popup-icon .material-icons {
  color: white;
  font-size: 24px;
}

#pwa-popup-text {
  flex: 1;
  min-width: 0;
}

#pwa-popup-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#pwa-popup-logo > img {
  width: 100px;
  margin-top: 7px;
}

#pwa-popup-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-popup-btn {
  font-family: "Poppins";
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pwa-popup-btn.primary {
  background-color: #42d4b1;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
}

.pwa-popup-btn.primary:hover {
  background-color: #5BC2B0;
  transform: translateY(-1px);
}

.pwa-popup-btn.secondary {
  background-color: #f7fafc;
  color: #718096;
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  min-width: auto;
  height: 36px;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.pwa-popup-btn.secondary:hover {
  background-color: #edf2f7;
  color: #4a5568;
  border-color: #cbd5e0;
}

.pwa-popup-btn .material-icons {
  font-size: 18px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .pwa-popup-btn.primary {
    padding: 8px 16px;
    font-size: 13px;
  }
}

#wrong-device-container {
  z-index: 9999999999999999999999;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: white;
  display: none;
}

#wrong-device-container #wrong-device-div {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#wrong-device-container #wrong-device-div .empty-img {
  padding-top: 20vh;
}

#wrong-device-container #wrong-device-div .empty-header {
  font-weight: 700;
  font-size: 29px;
  font-style: italic;
}

#wrong-device-container #wrong-device-div .empty-paragraph {
  text-align: center;
  font-size: 20px;
  color: rgba(75, 78, 99, 0.8);
}

.fader {
  -webkit-animation-name: faderIn;
          animation-name: faderIn;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes faderIn {
  0% {
    -webkit-transform: translateY(100px) scale(0.8);
            transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

@keyframes faderIn {
  0% {
    -webkit-transform: translateY(100px) scale(0.8);
            transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.fullscreen-container {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  overflow-y: auto;
}

.fullscreen-container.ng-hide {
  opacity: 0;
  -webkit-transform: scale(0.8) translateY(200px);
          transform: scale(0.8) translateY(200px);
}

.fullscreen-container.ng-hide-add, .fullscreen-container.ng-hide-remove {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.back-button {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 4;
  padding: 16px;
  padding-left: 9px;
  padding-top: 11px;
  padding-right: 19px;
  border-bottom-right-radius: 50px;
  background-color: #F2F3FD;
  font-size: 30px;
  color: #8A8DA1;
}

.hit-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.skeleton {
  min-width: 160px;
  min-height: 150px;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-animation-name: skeleton;
          animation-name: skeleton;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transition: 0s !important;
}

.skeleton h1, .skeleton p, .skeleton i, .skeleton span, .skeleton div {
  display: none;
}

@-webkit-keyframes skeleton {
  0% {
    background-color: white;
    color: white;
  }
  50% {
    background-color: #F1F7FF;
    color: #F1F7FF;
  }
  100% {
    background-color: white;
    color: white;
  }
}

@keyframes skeleton {
  0% {
    background-color: white;
    color: white;
  }
  50% {
    background-color: #F1F7FF;
    color: #F1F7FF;
  }
  100% {
    background-color: white;
    color: white;
  }
}

.skeleton.ng-animate {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}

.fade {
  opacity: 1;
}

.fade.ng-enter {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.fade.ng-enter-active {
  opacity: 1;
}

.fade.ng-show {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.fade.ng-show-active {
  opacity: 1;
}

.fade.ng-hide {
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
}

.fade.ng-hide-show {
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
}

#bottom-menu {
  width: 100%;
  height: 67px;
  position: fixed;
  bottom: -1px;
  left: 0px;
  background-color: #F5F6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 3;
}

#bottom-menu .bottom-menu-page-link {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

#bottom-menu .bottom-menu-page-link .bottom-menu-page-icon {
  color: rgba(102, 185, 245, 0.5);
  font-size: 31px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: -2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#bottom-menu .bottom-menu-page-link .bottom-menu-page-icon.home {
  font-size: 33px;
}

#bottom-menu .bottom-menu-page-link .bottom-menu-page-icon.active-true {
  color: #42d4b1;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

#view-wrapper {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  /* overflow-x: hidden; */
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #535A80;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
          box-shadow: 0 0 0px 1000px white inset;
  border-radius: 6px;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.content-search-div {
  width: 83%;
  height: 59px;
  background-color: white;
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.content-search-div.ng-hide {
  opacity: 0;
  -webkit-transform: scale(2) translateY(0px);
          transform: scale(2) translateY(0px);
}

.content-search-div.ng-hide-add, .content-search-div.ng-hide-remove {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.content-search-div .content-search-icon {
  font-size: 21px;
  color: #acb3cc;
  position: absolute;
  left: 20px;
  top: 19px;
}

.content-search-div .content-search-input {
  width: calc(100% - 39px);
  padding-top: 1px;
  padding-left: 60px;
  color: black;
  font-weight: 700;
  font-style: italic;
  font-size: 21px;
  font-weight: 500;
  font-family: Poppins;
  height: 100%;
  border: 0px;
  background-color: transparent;
}

.content-search-div .content-search-input::-webkit-input-placeholder {
  color: #acb3cc;
  opacity: 1;
  /* Firefox */
}

.content-search-div .content-search-input:-ms-input-placeholder {
  color: #acb3cc;
  opacity: 1;
  /* Firefox */
}

.content-search-div .content-search-input::-ms-input-placeholder {
  color: #acb3cc;
  opacity: 1;
  /* Firefox */
}

.content-search-div .content-search-input::placeholder {
  color: #acb3cc;
  opacity: 1;
  /* Firefox */
}
/*# sourceMappingURL=shared.css.map */