@charset "utf-8";

@import './components/colors.css';
@import './components/input-search.css';
@import './components/input-date.css';
@import './components/app-button.css';
@import './components/app-loader.css';
@import './components/app-badge.css';
@import './components/app-form.css';
@import './components/app-text.css';
@import './components/helpers.css';
@import './components/app-card.css';
@import './components/request-history.css';
@import './components/header-env.css';
@import './components/app-header.css';
@import './components/uploader.css';
@import './components/scroll.css';
@import './components/skeleton.css';
@import './components/page-card.css';
@import './components/page-table.css';
@import './components/app-tooltip.css';
@import './components/app-accordion.css';
@import './components/school-finder.css';
@import './components/home.css';
@import './components/project-search.css';
@import './components/project-info.css';
@import './components/error-page.css';
/* CSS Document */
/* this is hack how to get correct 100vh on ios */
:root {
  --app-height: 100%;
}

body {
  min-width: 320px;
}

html *:not(.fa, .material-symbols-rounded, .material-symbols-outlined) {
  font-family: Inter, sans-serif !important;
}

.cursor-pointer {
  cursor: pointer;
}

.error-msg {
  font-size: 11px;
  color: #f00;
}

footer {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  font-size: 11px;
}

.btn-white {
  text-align: center;
  font-weight: 500;
  padding: 6px 12px;
  transition: none;
  border: none;
  font-size: 16px;
  line-height: 20px;
  border-radius: 4px;
  cursor: pointer;
  color: #2473b3;
  background-color: #fff;
}

.btn-blue {
  text-align: center;
  font-weight: 500;
  padding: 6px 12px;
  transition: none;
  border: none;
  font-size: 16px;
  line-height: 20px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 12%);
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  background-color: #2473b3;
}

.btn-blue:hover {
  color: #fff;
  background-color: #2473b3;
}

.btn-outline {
  text-align: center;
  font-weight: 500;
  transition: none;
  color: #1a3f52;
  border-radius: 4px;
  cursor: pointer;
  height: 40px;
  padding: 5px 24px;
  gap: 4px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #b3bec4;
  z-index: 1000;

  @media (width < 576px) {
    padding-inline: 4px;
    font-size: 10px;
    line-height: 1.4;
    height: 29px;
    padding-top: 6px;
    padding-bottom: 7px;
  }
}

@media (width >= 576px) {
  .w-sm-auto {
    width: auto !important;
  }
}

.contact-card {
  border: 1px solid var(--app-form-grey);
  box-shadow: 0 4px 10px 0 rgb(var(--app-accent-rgb) 0.1);

  &.is-selected {
    border-color: var(--app-primary);
  }
}

.dev-fees-tooltip .tooltip-inner {
  max-width: 350px;
}

.fs-16 {
  font-size: 16px;
}

.site-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100dvh;
}

.app-logo {
  display: block;
  height: 41px;

  img {
    display: block;
    height: 100%;
    width: auto;
  }

  @media (width < 576px) {
    height: auto;

    img {
      width: 100%;
      height: auto;
    }
  }
}

.fs-inherit {
  font-size: inherit;
}

.min-w-0 {
  min-width: 0 !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}
