*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}
@media only screen and (min-width: 480px) {
  body {
    width: 480px;
    margin: auto;
  }
}
.web{
  
}

.header {
  width: 100%;
  height: 7.2rem;
  /* background-color: #EBF8FA; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 1rem 1.5rem; */
}
.header__group {
  display: flex;
  align-items: center;
}
.header__cancel {
  width: 1.6rem;
  margin-right: 1.5rem;
}
.header__brand {
  width: 7.2rem;
}
.header__alert {
  width: 2rem;
}

.page-error {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #F7F9FA;
}
.error-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-content__img {
    margin-bottom: 2rem;
}
.page-error--no-positions .error-content__img {
    width: 10rem;
}
.page-error--session-timeout .error-content__img {
    width: 5rem;
}
.error-content__title {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(43, 49, 51, 0.88);
    margin-bottom: 0.8rem;
    text-align: center;
    white-space: nowrap;
}
.error-content__description {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(43, 49, 51, 0.6);
    text-align: center;
}


.server-error-container {
  height: calc(100vh - 2px);
  display: flex;
  width: 100%;
  padding-bottom: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #F7F9FA;
  position: relative;

  .server-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
 
  .server-error-section {
    display: flex;
    padding: 0px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    align-self: stretch;

    .server-error-title {
      display: flex;
      flex-direction: column;
      align-self: stretch;
      color: var(--solid-gray-800, #424f56);
      text-align: center;
      font-family: Roboto;
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      letter-spacing: 0.05px;
    }

    .server-error-note {
      display: flex;
      flex-direction: column;
      align-self: stretch;
      color: var(--solid-gray-700, #68767d);
      text-align: center;
      font-family: Roboto;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
    }
  }

 }
}


/* Retry Page */

/* .retry-page-container{
  display: flex;
  width: 100%;
  height: calc(100vh - 128px);
  padding-bottom: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #f7f9fa;
  position: relative;

  .retry-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

    .retry-page-section{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;

      .retry-title{
        color: var(--text-low-emphasis, rgba(43, 49, 51, 0.38));
        text-align: right;
        font-feature-settings: 'clig' off, 'liga' off;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.08px;
      }

      .retry-note{
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--solid-primary-blue-700, #0D4582);
        text-align: center;
        font-feature-settings: 'clig' off, 'liga' off;
        font-family: Roboto;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.28px;

        .refresh-icon{
          display: flex;
          align-items: center;
        }

      }
    }
  }
} */




