body {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #555;
  background: #222;
}

html, body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#main {
  flex: 1;
}

ol, ul, li {
  list-style: none;
}

html, body, span, object, iframe, h1, h2, h3, h4, p, a, img, b, i, ol, ul, li, input, form, label, embed, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  font-family: "Roboto",Arial,sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #555;
  background: #222;
}

body {
  position: relative;
  background: #222;
}

a {
  color: #49b;
  text-decoration: none;
}

a:hover, a:active {
  color: #333;
  text-decoration: none;
}

a:focus {
  outline: none;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}

/* Header */

#header {
  position: fixed;
  z-index: 11000;
  top: 0;
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: flex-start;
  border-bottom: solid 1px #000;
  background-color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.headwrap {
  flex: 1;
}

.headtop {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 45px;
  border-bottom: solid 1px #444;
  background: url("../../assets/img/headftone.png") 0 30% no-repeat, linear-gradient(to right, #333 0, #333 100px, #222 100px, #222 100%);
}

.logo img {
  padding: 5px 5px 0 15px;
}

/* Search */

#search {
  width: 300px;
  padding: 5px 40px 5px 15px;
  border: solid 1px #000;
  background-color: #333;
  font-size: 15px;
  color: #ddd;
}

#search:focus {
  background-color: #000;
  border: solid 1px #444;
  box-shadow: none;
}

#search::placeholder {
  color: #888;
}

#search:focus::placeholder {
  color: transparent;
}

.search {
  position: relative;
}

.icon-search {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 17px;
  color: #777;
  padding: 0;
  line-height: 0.5;
}

/* NAVIGATION */

#menu {
  display: flex;
  justify-content: flex-start;
}

#menu li {
  text-align: center;
  border-right: solid 1px #444;
  line-height: 26px;
}

#menu li:last-child {
  border-right: 0;
}

.navhome a, .navover a {
  display: block;
  font-weight: 500;
  color: #ccc;
  margin: 4px 10px;
}

#menu li a:hover, #menu li:hover {
  color: #fff;
  background: #222;
}

.navhome a {
  font-size: 18px;
  padding-top: 2px;
}

.navover a {
  font-size: 15px;
  min-width: 80px;
  border-bottom-style: solid;
  border-width: 2px;
}

.icon-more {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #aaa;
  padding: 6px 12px;
}

#tag {
  display: none;
  box-sizing: border-box;
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 85px;
  width: 100%;
  padding: 20px 20px 30px 20px;
  text-align: center;
  background: #eee;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, 130px);
  justify-content: space-between;
  grid-gap: 10px 20px;
}

.tags a {
  display: block;
  position: relative;
  padding: 5px 20px;
  /*width: 90px;*/
  white-space: nowrap;
  color: #555;
  font-weight: 500;
  border-radius: 15px;
  background-color: #fafafa;
  border: solid 1px #bbb;
  border-left: none;
  background: linear-gradient(#48a 100%, #fafafa 0%) no-repeat, #f9f9f9;
  background-size: 7px 100%;
}

.tags a:hover {
  background: #48a;
  color: #fff;
  border-color: #eee;
}

.tags li {
  position: relative;
}

.icon-tag {
  position: absolute;
  right: 8px;
  bottom: 6px;
  font-size: 14px;
  color: #f95;
}

/* rps menu */

@media (max-width: 1100px) {
  #header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 10px 20px;*/
    background-color: #333;
    position: relative;
    height: auto;
  }
}

@media (max-width: 1100px) {
  .logo img {
    height: 40px;
    padding: 0px 0px 0 50px;
  }
}

@media (max-width: 1100px) {
  #menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #333;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease-in-out;
    padding-top: 40px;
    box-shadow: 0 0 10px #000;
  }
}

@media (max-width: 1100px) {
  #menu.active {
    left: 0;
  }
}

@media (max-width: 1100px) {
  #menu li {
    text-align: center;
    /*padding: 10px 0;*/
    border-bottom: solid 1px #414141;
  }
}

@media (max-width: 1100px) {
  .navover a, .navhome a {
    border-width: 8px;
    border-bottom: none;
    border-left-style: solid;
  }
}

@media (max-width: 1100px) {
  .navhome {
    /*border-top: solid 1px #414141;*/
  }
}

@media (max-width: 1100px) {
  #menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    margin: 0;
  }
}

/* Hide menu toggle on larger screens */

.menu-toggle {
  display: none;
}

@media (max-width: 575px) {
  #search {
    width: 200px;
  }
}

@media (max-width: 460px) {
  #search {
    width: 150px;
  }
}

@media (max-width: 350px) {
  #search {
    width: 120px;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 24px;
    background: none;
    border: none;
    position: absolute;
    left: 15px;
    top: 5px;
    z-index: 9999;
  }
}

.menu-toggle.active::before {
  content: "✖";
  color: white;
}

@media (max-width: 1100px) {
  #plus {
    display: none;
  }
}

/* Color */

.color0 {
  background-color: #393939;
}

.color1, .color6 {
  background-color: #49c;
}

.color2 {
  background-color: #7a3;
}

.color3 {
  background-color: #b33;
}

.color4 {
  background-color: #d73;
}

.color5 {
  background-color: #76b;
}

.border0, .border6 {
  border-color: #777;
}

.border1 {
  border-color: #49b;
}

.border2 {
  border-color: #7a3;
}

.border3 {
  border-color: #b33;
}

.border4 {
  border-color: #d73;
}

.border5 {
  border-color: #76b;
}

.link0, .link0:hover, .link1, .link1:hover {
  color: #49b;
}

.link2, .link2:hover {
  color: #7a3;
}

.link3, .link3:hover {
  color: #c55;
}

.link4, .link4:hover {
  color: #d73;
}

.link5, .link5:hover {
  color: #96b;
}

.link6, .link6:hover {
  color: #48a;
}

/* SLIDER */

.slider {
  overflow: hidden;
  position: relative;
  height: 280px;
  background-color: #111;
}

.slider a {
  display: inline-block;
  margin-right: 1px;
}

.slick-line {
  white-space: nowrap;
}

.slick-list {
  overflow: hidden;
  margin: 1px;
  border-radius: 10px;
}

.slick-arrow {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 1px;
  bottom: 1px;
  width: 18%;
}

.slick-arrow:hover {
  cursor: pointer;
}

.slick-prev {
  left: 1px;
  justify-content: flex-start;
  background: linear-gradient(to right, rgba(17, 17, 17, 1) 0, rgba(17, 17, 17, 1) 10%, rgba(17, 17, 17, 0) 100%);
}

.slick-next {
  right: 1px;
  justify-content: flex-end;
  background: linear-gradient(to left, rgba(17, 17, 17, 1) 0, rgba(17, 17, 17, 1) 10%, rgba(17, 17, 17, 0) 100%);
}

.slick-prev span {
  transform: scaleX(-1);
}

.slick-arrow span {
  font-size: 50px;
  color: #fff;
  opacity: 0.2;
  padding: 20px;
  transition: 0.2s ease;
}

.slick-arrow:hover span {
  padding-right: 15px;
  opacity: 1;
}

/* GENERAL STRUCTURE */

#main {
  /*overflow: hidden;*/
  display: block;
  /*min-height: calc(100vh - 133px);*/
  margin-top: 86px;
  padding-bottom: 15px;
  background: url("../../assets/img/bgshine.jpg") left 5px top no-repeat, url("../../assets/img/bgshine.jpg") right -10px top no-repeat, linear-gradient(to bottom, #2a7db3 704px, #2b7fb5 705px, #18a 100%);
}

@media (max-width: 1100px) {
  #main {
    margin-top: 0;
  }
}

.main {
  display: flex;
  justify-content: center;
}

@media (max-width: 1170px) {
  .main {
    flex-wrap: wrap;
  }
}

.Hside {
  width: 1390px;
}

.Gside {
  width: 1400px;
}

.Cside {
  width: 1655px;
}

.Pside {
  display: flex;
  flex-direction: column;
  width: 1870px;
  min-height: calc(100vh - 172px);
}

.Bside {
  width: calc(1390px + 345px);
  box-sizing: border-box;
  margin: 0 auto;
}

.content {
  overflow: hidden;
  flex-grow: 1;
  background: #eee;
}

.border {
  overflow: hidden;
  border-radius: 10px;
  margin: 15px 7px 0 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  border: none !important;
}

.op {
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  margin: 15px 7px 0 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* SIDEBAR */

.Rside {
  max-width: 345px;
}

.Rside ul {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  margin: 15px 7px;
  gap: 10px;
}

@media (max-width: 1170px) {
  .Rside ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .Rside ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .Rside ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 360px) {
  .Rside ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.toptitle, .bestofnew {
  height: 40px;
  font-size: 17px;
  padding-left: 10px;
  font-weight: 500;
}

.bestofnew {
  line-height: 40px;
}

.toptitle:hover {
  background: rgba(255,255,255,0.2);
}

.toptitle a {
  color: #fff;
}

.capsim {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.capsim img {
  transition: 0.2s ease;
  width: 100%;
  aspect-ratio: 4/2.88;
  object-fit: cover;
}

.capsim:hover img {
  filter: brightness(1.2);
}

/* ADS */

.square {
  width: 300px;
  padding: 15px;
}

.op {
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  margin: 15px 7px 0 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.homesquare {
  height: 280px;
  padding: 15px;
}

.board {
  width: 160px;
  height: 600px;
  margin: 20px 15px 0 15px;
  background: rgba(255, 255, 255, 0.12);
}

/* CAPTIONS */

.captions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  padding: 15px;
  gap: 15px;
}

@media (max-width: 1400px) {
  .captions {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .captions {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .captions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 574px) {
  .captions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 360px) {
  .captions {
    grid-template-columns: repeat(1, 1fr);
  }
}

.caption {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  padding: 11px 12px 10px 12px;
  background: linear-gradient(to bottom, #fff 0%, #f7f7f7 100%) no-repeat;
  border: solid 1px #d5d5d5;
  transition: 0.2s ease;
}

.caption img {
  border-radius: 6px;
  transition: 0.2s ease;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.capinfos {
  padding: 7px 2px 0 2px;
  line-height: 18px;
}

.captitle {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666;
  font-weight: 700;
}

.captag, .caphit {
  font-weight: 500;
  font-size: 12px;
}

.caprate {
  font-weight: 700;
  font-size: 12px;
}

.grayscale {
  filter: grayscale(1);
  opacity: 0.6;
}

.grayscale:hover {
  filter: grayscale(0);
  opacity: 1;
}

.caption:hover {
  border-color: #fff;
}

.caption:hover img {
  filter: brightness(1.2);
  transform: scale(0.95);
}

.caption a {
  display: block;
}

/* HOME PAGE */

.homesub, .homecat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  background-color: #fff;
}

.morelink, .homesub a {
  display: flex;
  align-items: center;
  height: 40px;
  font-weight: 500;
}

.homesub a {
  border-left: solid 1px #ddd;
  color: #666;
}

.homesub a:first-child {
  border: 0;
}

.homesub a:hover {
  background: #f5f5f5;
  border-left: solid 1px #ddd;
  color: #333;
}

.homesub span {
  margin-right: 10px;
}

.homecat {
  position: relative;
  border: solid 1px #d3d3d3;
  border-radius: 8px;
  margin: 15px 15px 0 15px;
}

.homesub a {
  padding: 0 20px;
}

.homecat a {
  padding: 0 10px;
}

.homecat .icon-new {
  font-size: 14px;
}

/* sortby home */

.homecat .sortby {
  display: none;
}

@media (max-width: 991px) {
  .homecat .sortby {
    display: block;
  }
}

@media (max-width: 991px) {
  .homecat .homesub {
    display: none;
  }
}

.homecat .sortby {
  color: black;
  background: #393939;
  height: 40px;
  border-radius: 0px 8px 8px 0;
}

.homecat .sort {
  height: 40px;
}

.morelink .icon-arrow {
  opacity: 0;
  margin-right: -1px;
}

.morelink .icon-new {
  margin-bottom: 3px;
}

.ar1 {
  transition: all 0.2s ease;
}

.ar2 {
  transition: all 0.4s ease;
}

.icon-arrow svg {
  margin-bottom: 2px;
}

.morecat {
  margin-left: 5px;
  transition: all 0.2s ease;
}

.morelink:hover .morecat {
  margin-right: 8px;
}

.morelink:hover .icon-arrow {
  opacity: 1;
}

.hometitle {
  border-radius: 8px;
  color: #fff;
  padding: 0 100px 0 15px;
  font-size: 19px;
  font-weight: 700;
  line-height: 40px;
  white-space: nowrap;
  background-image: url("../../assets/img/tophead.png");
  background-position: right center;
  background-repeat: no-repeat;
}

.hometitle:hover {
  color: #fff;
}

.subtop {
  color: #7ac;
}

.subhot {
  color: #f95;
}

.subnew {
  color: #555;
}

.subhit {
  color: #9b4;
}

.subover {
  background: #000;
}

/* Bottom text */

.footdesc {
  text-align: justify;
  line-height: 22px;
  background-color: #f5f5f5;
  padding: 20px 35px 30px 35px;
}

.footdesc a {
  font-weight: 700;
}

.footdesc h2, .footdesc h1 {
  font-size: 15px !important;
  line-height: 32px;
  padding-top: 10px;
}

.footdesc p {
  margin-bottom: 8px;
}

.footdesc ol li, .gamedesc ol li {
  list-style-type: decimal;
  margin-left: 20px;
}

.footdesc ul li, .gamedesc ul li {
  list-style-type: disc;
  margin-left: 20px;
}

/* FOOTER */

#copyright {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 40px;
}

#copyright svg {
  width: 40px;
  height: 30px;
  margin: -3px 10px 0 0;
}

#footer {
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 47px;
  white-space: nowrap;
  color: #aaa;
  border-top: solid 1px #111;
  background-color: #222;
}

#footer a, #footer span, #footer button {
  color: #aaa;
}

#footer a:hover, #footer button:hover {
  background-color: #111;
}

#footer .logo-ft {
  height: 34px;
}

.contact, .cgu, .privacy {
  padding: 0 30px;
  line-height: 46px;
  text-align: center;
  border-left: solid 1px #333;
}

@media (max-width: 768px) {
  #footer {
    flex-flow: column;
    height: auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #copyright {
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #footer a {
    border-top: 1px solid #333333;
  }
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 19px;
}

/* CATEGORY PAGE */

.capcat {
  border-top: dotted 1px #ccc;
}

.catsky {
  margin: 15px 20px 0 0;
  border-radius: 10px;
  padding: 26px;
  background: linear-gradient(to bottom, #fff 0%, #f7f7f7 100%) no-repeat;
  border: solid 1px #d5d5d5;
}

.cathead {
  position: relative;
  white-space: nowrap;
  display: flex;
  box-shadow: 0px 0 5px 5px rgba(0, 0, 0, 0.05);
}

.cathead h1 {
  height: 48px;
  line-height: 48px;
  font-weight: 700;
  padding: 0 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

.catsub {
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 90px;
  background: url("../../assets/img/cathead.png") left center no-repeat;
}

.catsub li a, .catsub li strong {
  padding: 5px 15px;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.15);
}

.catsub li a:hover {
  background: rgba(0, 0, 0, 0.25);
}

.catsub li strong {
  background: none;
  border: solid 1px rgba(0, 0, 0, 0.2);
}

.catdesc {
  display: flex;
  line-height: 16px;
  background: #fafafa;
}

.desc {
  text-align: justify;
  color: #777;
  padding: 15px 20px;
}

.sortby {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-size: 15px;
  font-weight: 500;
}

.sorthide {
  display: none;
  overflow: hidden;
  border-bottom-left-radius: 10px;
}

.sort, .nosort {
  height: 48px;
  min-width: 120px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  user-select: none;
}

.sort {
  justify-content: space-between;
}

.nosort {
  justify-content: flex-start;
}

.sorthover {
  cursor: pointer;
  /*background-color: rgba(0, 0, 0, 0.1);*/
  padding-right: 10px;
}

.sortby a:hover, .sorthover:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.sortby a:hover span, .sorthover:hover span {
  color: #fff;
}

.homecat .sortby.active {
  border-radius: 0px 8px 0px 0;
}

.homecat .sorthover:hover {
  background: transparent;
  border-radius: 10px;
}

.sortby span {
  margin-right: 10px;
  color: #fff;
}

.sortarrow {
  margin-top: 3px;
  transform: rotate(90deg);
  color: #fff;
}

/* Detail page */

.game-player {
  background-color: #22385b;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.game-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.game-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0;
}

/* TOOLTIP */

[tooltip] {
  position: relative;
  z-index: 80;
}

[tooltip]:before, [tooltip]:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  line-height: 20px;
}

/* Position tooltip above the element */

[tooltip]:before {
  position: absolute;
  bottom: 105%;
  left: 2%;
  margin-bottom: 5px;
  padding: 7px 10px;
  white-space: nowrap;
  border-radius: 3px;
  background-color: #ddd;
  color: #222;
  font-weight: bold;
  border-bottom: solid 2px #bbb;
  min-width: 80px;
  text-align: center;
  content: attr(tooltip);
}

/* Triangle hack to make tooltip look like a speech bubble */

[tooltip]:after {
  position: absolute;
  bottom: 105%;
  left: 50%;
  border-top: 5px solid #bbb;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
}

/* Show tooltip content on hover */

[tooltip]:hover:before, [tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

#pad span, #unpad span {
  text-indent: 6px;
}

.gamebar {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 42px;
  color: #eee;
  background-color: #222;
}

.gamebar button {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.gamebar button:hover {
  background-color: #111;
  border-color: #000;
}

.gamebar button:hover svg {
  fill: #fff;
}

.gameopt, .gamerate, .gamesize {
  display: flex;
}

.gameopt button {
  border-right: solid 1px #111;
  background-color: rgba(0, 0, 0, 0.2);
}

.gameopt svg {
  fill: #888;
}

#pad, #unpad {
  color: #ddd;
}

#pad span, #unpad span {
  text-indent: 6px;
}

#pad svg, #unpad svg {
  width: 17px;
}

.report svg {
  width: 21px;
}

.gamesize button {
  border-left: solid 1px #111;
  border-right: solid 1px #111;
  background-color: rgba(0, 0, 0, 0.2);
}

.resizing svg {
  width: 26px;
  fill: #888;
}

.gamerate span {
  margin-right: 8px;
  color: #888;
}

.gamerate button {
  border-left: solid 1px #111;
  background-color: rgba(0, 0, 0, 0.2);
}

.gamerate button:hover span {
  border-color: #000;
  color: #fff;
}

.gamescore {
  padding: 0 15px 0 20px;
  font-size: 21px;
  line-height: 42px;
  font-weight: 700;
  border-left: solid 1px #090909;
  background-color: #111;
  color: white;
}

.gamescore span {
  color: white;
}

.gamebar button {
  border-radius: 0;
}

/* GAME INFOS */

.gameinfos {
  position: relative;
  background-color: #eee;
}

.gameinfos h1 {
  color: #666;
}

.gameinfo {
  padding: 25px 35px;
  line-height: 18px;
  border-bottom: dotted 1px #bbb;
}

.gameinfo a {
  font-weight: 500;
}

.gamedesc {
  overflow: hidden;
  margin-top: 10px;
  text-align: justify;
}

.gamedesc strong {
  display: block;
}

.gamemore {
  display: block;
  padding-top: 6px;
}

.gamehit {
  color: #c55;
  font-weight: 700;
}

.gameauth {
  color: #111;
}

.gametags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 20px;
}

.gametags a {
  padding: 4px 20px;
  margin: 3px 5px;
  text-align: center;
  white-space: nowrap;
  color: #555;
  font-weight: 500;
  border-radius: 15px;
  background-color: #fafafa;
  border: solid 1px #bbb;
  border-left: none;
  background: linear-gradient(#48a 100%, #fafafa 0%) no-repeat, #f9f9f9;
  background-size: 7px 100%;
}

.gametags a:hover {
  background: #48a;
  color: #fff;
  border-color: #eee;
}

.download {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
  background: #b33;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.download svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  fill: #fff;
}

.download:hover {
  color: #fff;
  background-color: #a22;
}

/* MISC PAGE */

#misc {
  display: flex;
  flex-direction: column;
  width: 75%;
  margin-left: 23px;
  margin-right: 23px;
  min-height: calc(100vh - 172px);
}

.miscontent {
  position: relative;
  overflow: hidden;
  padding: 40px;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 575px) {
  .miscontent {
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .submit {
    max-width: 150px;
  }
}

.miscontent h2 {
  font-size: 18px;
  color: #49b;
}

.miscontent a {
  font-weight: 700;
}

.miscontent li {
  list-style-type: disc;
}

.miscontent ul {
  margin-left: 15px;
}

.miscontent p {
  margin-bottom: 20px;
}

.miscontent input, .miscontent textarea {
  border: 1px solid #bbb;
}

.miscontent label {
  margin-bottom: 0;
  margin-top: 1rem;
}

.miscontent label:first-child {
  margin-top: 0;
}

.list {
  text-decoration: underline;
}

.failed {
  padding: 25px 15px 50px 15px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.failed svg {
  max-width: 345px;
  margin: 0 20px 10px 20px;
}

.lp_confirm {
  margin-bottom: 20px;
}

.nocontent {
  padding: 100px 5px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.submit {
  margin-top: 30px;
  height: 35px;
  width: 280px;
  border: 1px solid #aaa;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 15px;
  color: #38a;
  border-radius: 5px;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f9f9f9 50%, #f9f9f9 100%) no-repeat;
}

.submit:hover {
  background: #fff;
  border: 1px solid #ccc;
}

.submit:active {
  box-shadow: 0 0 5px #bbb inset;
  background: #e5e5e5;
  border: 1px solid #aaa;
}

/* MOBILE TRANSITION */

@media only screen and (max-width:950px) {
  .Pside {
    width: 100%;
  }
}

@media only screen and (max-width:950px) {
  .border {
    box-shadow: none;
  }
}

@media only screen and (max-width:950px) {
  .catsub li {
    display: none;
  }
}

@media only screen and (max-width:950px) {
  .captions {
    justify-content: center;
  }
}

@media only screen and (max-width:950px) {
  .catdesc {
    box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.05);
  }
}

@media only screen and (max-width:950px) {
  .content {
    background: #e5e5e5;
  }
}

@media only screen and (max-width:950px) {
  .caption {
    padding: 0;
    border: solid 1px #c1c1c1;
    box-shadow: 0 0 5px rgba(0,0,0,0.09);
  }
}

@media only screen and (max-width:950px) {
  .caption img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media only screen and (max-width:950px) {
  .capinfos {
    padding: 5px 6px 8px 9px;
    line-height: 16px;
  }
}

/* MEDIA SCREEN */

@media only screen and (max-width:2300px) {
  #main {
    background-position: left -100px top,right -100px top;
  }
}

@media only screen and (max-width:2300px) {
  .Pside {
    width: 1640px;
  }
}

@media only screen and (max-width:1990px) {
  .Hside, .Gside {
    width: 1165px;
  }
}

@media only screen and (max-width:1990px) {
  .Pside {
    width: 1405px;
  }
}

@media only screen and (max-width:1990px) {
  .Bside {
    width: calc(1165px + 345px);
  }
}

@media only screen and (max-width:1990px) {
  .Gside {
    width: 1200px;
  }
}

@media only screen and (max-width:1990px) {
  .Cside {
    width: 1424px;
  }
}

@media only screen and (max-width:1930px) {
  #main {
    background-position: left -150px top,right -150px top;
  }
}

@media only screen and (max-width:1800px) {
  .Cside {
    width: 1196px;
  }
}

@media only screen and (max-width:1600px) {
  .Hside, .Gside {
    width: 940px;
  }
}

@media only screen and (max-width:1600px) {
  .Pside {
    width: 1175px;
  }
}

@media only screen and (max-width:1600px) {
  .Bside {
    width: calc(940px + 345px);
  }
}

@media only screen and (max-width:1600px) {
  #misc {
    width: 80%;
  }
}

@media only screen and (max-width:1400px) {
  .Cside {
    width: 970px;
  }
}

@media only screen and (max-width:1310px) {
  #main {
    background: url("../../assets/img/bgshine.jpg") left -250px top repeat-x, linear-gradient(to bottom,#2a7db3 710px,#2b7fb5 711px,#18a 100%);
  }
}

@media only screen and (max-width:1300px) {
  .Bside {
    width: 100%;
  }
}

@media only screen and (max-width:1170px) {
  .Rside {
    max-width: calc(100% - 30px);
  }
}

@media only screen and (max-width:1170px) {
  .homesquare, .board {
    display: none;
  }
}

@media only screen and (max-width:1170px) {
  .catsky {
    display: none;
  }
}

@media only screen and (max-width:1170px) {
  .Cside {
    width: 970px;
  }
}

@media only screen and (max-width:1170px) {
  .Pside {
    width: 945px;
  }
}

@media only screen and (max-width:1170px) {
  .Bside {
    width: 940px;
  }
}

@media only screen and (max-width:991px) {
  .Hside, .Bside, .Cside, .Gside, #misc {
    width: calc(100% - 30px);
  }
}

