/* ---- grid ---- */
.grid {
    max-width: 1200px;
    /*background: green;*/
}

/* clearfix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}


/* ---- grid-item ---- */
.grid-item {
    margin-bottom: 10px;
}

/* Horizontal spacing */
.gutter-sizer { width: 2%; }

@media screen and (max-width: 600px) {
  /* 1 column for small screens */
  .grid-sizer { width: 100%; }
  .grid-item-S { width:  100%; }
  .grid-item-M { width:  100%; }
  .grid-item-L { width:  100%; }
}

@media screen and (min-width:601px) and (max-width: 1280px) {
  /* 2 columns for medium screens */
  .grid-sizer { width: 49%; }
  .grid-item-S { width:  49%; }
  .grid-item-M { width:  100%; }
  .grid-item-L { width:  100%; }
}

@media screen and (min-width: 1280px) {
  /* 3 columns for larger screens */
  .grid-sizer { width: 32%; }
  .grid-item-S { width:  32%; }
  .grid-item-M { width:  66%; }
  .grid-item-L { width:  100%; }
}


.stamp {
  position: absolute;
}

.stamp_right_top {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 33.333%;
  height: 30px;
}
