.assessment-page {
  .sidebar-layout__sidebar {
    display: none;
  }

  .sidebar-layout__content {
    max-width: 100%;
  }

  .assassment-page__title {
    display: flex;
    justify-content: space-between;
  }

  .sidebar-layout__toolbar,
  .sidebar-layout__toolbar-fake {
    width: 80px;
    padding: 0 10px 0 30px;
  }
}

.assessment {
  color: $primary-color;

  &__logo {
    max-height: 100px;
    margin-top: -20px;
  }

  &__step1,
  &__step3 {
    max-width: 680px;
  }

  &__step2,
  &__step3 {
    display: none;
    transition: opacity 0.3s ease-out;

    .js-submitting & {
      pointer-events: none;
      opacity: .4;
    }
  }

  &__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }

  &__col {
    padding: 0 10px;

    &--1 {
      width: 25%;
    }

    &--2 {
      width: 50%;
    }
  }

  &__section-title {
    display: flex;
    justify-content: space-between;

    h2 {
      margin-bottom: 1rem;
    }
  }

  &__back {
    margin-top: 30px;
    text-decoration: underline;
  }

  &__country-warning {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease-out;

    &-dialog {
      width: 500px;
      max-width: 80%;
      background: #fff;
      padding: 20px 40px 40px;
      text-align: center;
      border: 2px solid $primary-color;
    }

    button {
      margin-top: 30px;
    }

    &.js-show {
      opacity: 1;
      pointer-events: all;
    }
  }

  &__location-map {
    border: 2px solid $primary-color;
    margin-top: -2px;
    border-radius: 5px;
    height: 300px;

    .js-validation-error & {
      border-color: $invalid-color;
    }
  }

  &__no-load-profile,
  &__has-load-profile {
    margin-top: 10px;
    display: inline-block;
    font-size: 1.4rem;
    text-decoration: underline;
    margin-bottom: 20px;
  }

  &__selected-file {
    font-size: 1.4rem;
    font-style: italic;
  }

  input[type="file"] {
    display: none;
  }

  &__load-info {
    display: none;
  }
}
