/* -----------------------------------------------------
 * Layout settings
 * ----------------------------------------------------- */
/* -----------------------------------------------------
 * App-wide specs: colors, dimensions, etc.
 * Controller- and page-specific variables should be declared in
 * the controller-specific SASS stylesheet.
 * ----------------------------------------------------- */
/*
 * Utopia-specific SASS variables and mixins.
 */
/* Page layouts
 */
/* -----------------------------------------------------
 * Grids
 *
 * Programmatically generate the widths of elements that
 * belong in the grid.
 *
 * Usage:
 *
 * .container
 *   @include row
 *   .primary
 *     @include col(8)
 *     @include internal-margin
 *   .secondary
 *     @include col(4)
 *     @include last
 * .container
 *   @include row
 *   .tertiary
 *     @prepend(4)
 *     @include(4)
 *     @append(4)
 *
 * Inspired by:
 *   http://bjorkoy.com/2010/05/css-grids-with-sass/
 * ----------------------------------------------------- */
/* math magic */
/* create row div */
/* create a column div */
/* make an element span n columns */
/* the first and last columns in a row needs these */
/* prepend n blank columns */
/* append n blank columns */
/*
 * Book display styles.
 */
/*
 * Utopia-specific SASS variables and mixins.
 */
/* Page layouts
 */
/* -----------------------------------------------------
 * Grids
 *
 * Programmatically generate the widths of elements that
 * belong in the grid.
 *
 * Usage:
 *
 * .container
 *   @include row
 *   .primary
 *     @include col(8)
 *     @include internal-margin
 *   .secondary
 *     @include col(4)
 *     @include last
 * .container
 *   @include row
 *   .tertiary
 *     @prepend(4)
 *     @include(4)
 *     @append(4)
 *
 * Inspired by:
 *   http://bjorkoy.com/2010/05/css-grids-with-sass/
 * ----------------------------------------------------- */
/* math magic */
/* create row div */
/* create a column div */
/* make an element span n columns */
/* the first and last columns in a row needs these */
/* prepend n blank columns */
/* append n blank columns */
/*
 * Book display styles.
 */
.grid--two .grid-construct {
  padding-left: 0;
  padding-right: 0;
}
.grid--two .grid__column.cart-message-non-overlay {
  margin: 0 auto;
}
@media (min-width: 31.25em) {
  .grid--two .grid__column.cart-message-non-overlay {
    width: 100%;
  }
}
@media (min-width: 60em) {
  .grid--two .grid__column.cart-message-non-overlay {
    width: 70%;
  }
}

.cart-message-non-overlay #cart-message {
  box-shadow: none;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 60em) {
  .cart-message-non-overlay #cart-message {
    margin: 0;
  }
}
.cart-message-non-overlay #cart-message .notification-div {
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
}
.cart-message-non-overlay #cart_box {
  margin: 0 auto;
}
.cart-message-non-overlay #cart_table, .cart-message-non-overlay #subtotal_table, .cart-message-non-overlay #cart_box {
  width: 100%;
}

.sidebar-module {
  margin: 0 auto;
  width: 90%;
}
@media (min-width: 60em) {
  .sidebar-module {
    width: 30%;
    padding: 0 18px;
  }
}

.sidebar-module__content#sideBarModule {
  float: none !important;
}

.related-info {
  padding-top: 10px;
  width: 100%;
}

.related-info--header {
  font-size: 1.2em;
  margin-bottom: 5px;
  width: 100%;
}

.footer__lang-select__select-wrap {
  z-index: 10002;
}

.controls__nav__list.utility .utility__list-item {
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

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

@media (max-width: 749px) {
  .controls__nav {
    display: block;
  }

  nav.footer__legal {
    top: 550px;
  }
}
