$width-desktop: calc(100% + 40px);

.page-container {
  box-sizing: border-box;
  height: 100%;
  padding: 30px;
  overflow-x: hidden;

  @include media-max-md {
    -webkit-overflow-scrolling: auto;
  }

  @include hidden-scrollbar;
}

.columns-card {
  display: flex;
  flex-wrap: wrap;
  width: $width-desktop;

  @include media-max-md {
    width: 100%;
  }
}

.col-page-1 {
  width: calc(100% / 3);

  @include media-max-md {
    width: 100%;
  }
}

.col-page-2 {
  width: calc((100% * 2) / 3);

  @include media-max-md {
    width: 100%;
  }
}

.full-width-mobile {
  @include media-max-md {
    width: $width-desktop;
    margin-left: -20px;
  }
}
