@charset "UTF-8";
/* Platform sorter on previews and reviews landing pages */
/* mixins.sass */
/* Global sass mixins */
/* Modal window */
/* Modal window open */
/* Short content fix - keep the footer at the bottom */
/* Box Shadow */
/* Button */
/* Button Colors */
/* CSS transitions */
/* Icons */
/* Calculate Aspect Ratios */
/* Image Hover Effect */
/* Containers for items in standard article etc. */
/* Toggle Arrows */
/* variables.sass */
/* All global variables and settings - this should be on every page!! */
/******* Viewport Widths *******/
/******* Spacing *******/
/******* Colors *******/
/* Variable formatting: $color[Description] */
/* Admin */
/* Forms */
/* Borders */
/* Icons */
/* Header */
/* Footer */
/* Front Page */
/* Advertorials */
/* Announcement */
/* Poll */
/* Game Details */
/* Reviews */
/* Image Galleries */
/* Scrollbars */
/* Modals */
/* Cover Gallery */
/* Summary Embeds */
/******* Images *******/
/******* Typography *******/
/* Font family stack */
/* Variable formatting: $font[Description] */
/* Common font sizes */
/* Common font weights */
/* Platform sorter on previews and reviews landing pages */
.gi5-platform-sort {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 0 30px;
}
@media screen and (max-width: 1500px) {
  .gi5-platform-sort {
    margin: 0 15px;
  }
}

.gi5-sort-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
}
@media screen and (max-width: 800px) {
  .gi5-sort-container {
    flex-direction: column;
  }
}

.gi5-sort-label {
  flex: 1;
  font-family: "Newsreader", Times, "Times New Roman", serif;
  font-style: italic;
  line-height: 1;
}
.gi5-sort-label p {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .gi5-sort-label {
    padding: 10px 0 0;
  }
}

.gi5-sort-current {
  flex: 2;
  font-family: "Biennale", "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: right;
  line-height: 1;
}
@media screen and (max-width: 450px) {
  .gi5-sort-current {
    padding-bottom: 10px;
  }
}
.gi5-sort-current ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 450px) {
  .gi5-sort-current ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.gi5-sort-current li {
  padding-left: 30px;
  margin-left: 0;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .gi5-sort-current li {
    padding-left: 0;
  }
}
.gi5-sort-current a, .gi5-sort-current .gi5-sort-button {
  padding: 20px 0 15px;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 5px solid transparent;
}
@media screen and (max-width: 800px) {
  .gi5-sort-current a, .gi5-sort-current .gi5-sort-button {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 450px) {
  .gi5-sort-current a, .gi5-sort-current .gi5-sort-button {
    border-bottom: none;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.gi5-sort-current #platform--reset a {
  font-family: "Newsreader", Times, "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
  padding-top: 22px;
}
@media screen and (max-width: 800px) {
  .gi5-sort-current #platform--reset a {
    padding-top: 7px;
  }
}
.gi5-sort-current #platform--reset a.platform-sort--active-item-link {
  display: none;
}
.gi5-sort-current div.gi5-sort-button {
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  /*.icon-arrow
  * height: 0.6em
  * width: 0.6em
  * position: absolute
  * top: 2.3rem
  * right: 0
  * margin-left: 1rem
  * @media screen and (max-width: $mobile)
  * top: 1.3rem*/
}
.gi5-sort-current div.gi5-sort-button::after {
  content: "+";
  position: absolute;
  width: 10px;
  text-align: center;
  right: 0;
  transition: all 0.3s ease;
  line-height: 1;
}
.gi5-sort-current div.gi5-sort-button.sort-list-open::after {
  content: "−";
  transform: rotate(360deg);
}

div.gi5-sort-list-container {
  position: relative;
  flex: none;
  font-size: 0.9em;
}

.gi5-sort-list {
  display: none;
  padding: 0 0 20px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 800px) {
  .gi5-sort-list {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.gi5-sort-list .view-content {
  flex-wrap: wrap;
  display: flex;
}
.gi5-sort-list .view-content div {
  width: 20%;
  min-width: 200px;
  padding: 10px 0;
}
@media screen and (max-width: 800px) {
  .gi5-sort-list .view-content div {
    width: 50%;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .gi5-sort-list .view-content div {
    width: 100%;
  }
}
.gi5-sort-list .view-footer {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #dbdbdb;
  font-family: "Newsreader", Times, "Times New Roman", serif;
  font-style: italic;
  text-align: center;
  line-height: 1;
}