/**
 * @file
 * Is the responsive layout composition.
 *
 * Is intented to set basic layout rules to regions and global blocks.
 * Also add grid common rules.
 */



/**
 * Layout content
 */


.layout-container {
  position: relative;
}
.main__content {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.layout__region--content {
  display: flex;
  flex-direction: column;
}
.node {
  overflow-x: hidden;
}


/**
 * Grid row
 */

.grid-row {
	padding: 0;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
@media all and (min-width: 1300px) {
  .grid-row {
    width: 82%;
  }
  .grid-row--12{
    max-width: 1670px;
  }
  .grid-row--10{
    max-width: 1360px;
  }
  .grid-row--8{
    max-width: 846px;
  }
  .grid-row--6{
    max-width: 630px;
  }
}
