@charset "UTF-8";

@use "variables" as *;

@use "mixins" as *;


@if $border-box-sizing == true {

  html { // http://bit.ly/1qk2tVR
    box-sizing: border-box;
  }

  * {

    &,
    &::after,
    &::before {
      box-sizing: inherit;
    }
  }
}


#body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main-content {
  flex-grow: 1;
  width: 100%;
}

.ma__container {

  @include ma-container();
  margin-top: 0px;
}
