.shoutout .wheretopost {
  background: #1f1f1f;
  background-attachment: fixed;
  background-position: center;
  padding: 70px 0;
}
.shoutout .wheretopost ul {
  width: 90%;
  margin: 0 auto;
  padding-top: 2em;
}
@media (min-width: 996px) {
  .shoutout .wheretopost ul {
    width: 68%;
  }
}
.shoutout .wheretopost ul li {
  list-style: disc;
  margin-bottom: 10px;
  text-align: left;
}
.shoutout .wheretopost__block {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 3em auto;*/
     
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 0px;
    margin-top: 50px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(254,254,254,0.5), 0 0 40px rgba(254,254,254,0.5);
    -moz-box-shadow: 0 0 40px rgba(254, 254, 254, 0.5), 0 0 40px rgba(254, 254, 254, 0.5);
    box-shadow: 0 0 40px rgba(254,254,254,0.5), 0 0 40px rgba(254,254,254,0.5);
    border-radius: 10px;
}

/*
@media (min-width: 996px) {
  .shoutout .wheretopost__block {
    width: 70%;
  }
}*/

.wheretopost__block > div {
    background-color: transparent;
    cursor: pointer;
    margin: 40px 20px;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    transition: 0.7s;
    position: relative;
}
.wheretopost__block .place:hover  {
    transform: scale(1.1);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
/*.shoutout .wheretopost__block > div {
  width: calc(50% - 20px);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  position: relative;
}*/


.shoutout .wheretopost__block > div:first-child span {
  border-radius: 2em 0 0 2em;
}
.shoutout .wheretopost__block > div:last-child span {
  border-radius: 0 2em 2em 0;
}
.shoutout .wheretopost__block > div > span {
  text-align: center;
  margin: auto;
  display: block;
  padding: 10px 0;
  color: #ffffff;
  font-size: var(--text-lg);
  font-weight: bold;
  width: 100%;
  -webkit-filter: drop-shadow(0 0 2em black);
          filter: drop-shadow(0 0 2em black);
  position: relative;
  background: #327cff;
  z-index: 3;
}
.shoutout .wheretopost__block > div > span::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shoutout .wheretopost__block > div > div {
  padding: 0 10px;
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0 0 2em 2em;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  background: #327cff;
  margin-top: -1em;
  z-index: 2;
}
.shoutout .wheretopost__block > div > div > span {
  color: black;
  font-size: var(--text-md);
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shoutout .wheretopost__block > div > div > span:first-child {
  margin-top: 3em;
}
.shoutout .wheretopost__block > div > div > span:last-child {
  margin-bottom: 1.2em;
}
.shoutout .wheretopost__block > div > div > span:hover {
  background: #1c62df !important;
  border-radius: 5em;
  color: white;
}

#promotion-list {
  margin-top: 40px;
}
#promotion-list a {
  text-decoration: none;
  color: #fff;
  font-size: var(--text-lg);
  width: 50%;
  margin: 5px auto 0 auto;
  text-align: center;
  background: rgba(204, 204, 204, 0.1921568627);
  padding: 10px 0;
  display: block;
  position: relative;
}
#promotion-list a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: #ffffff;
  display: block;
  color: #ccc;
  top: 0;
  font-size: 40px;
  left: 0;
  overflow: hidden;
}

.terms {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  color: #333;
}
.terms p {
  line-height: 1.5;
  text-align: left;
}
.terms li {
  line-height: 1.5;
}
.terms__area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 1280px;
  margin: auto;
  height: 90vh;
  overflow-x: hidden;
  padding: 20px 20px 70px 20px;
  background: #f5f5f5;
  overflow-y: scroll;
  float: left;
}
.terms__area::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.terms__area::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}
.terms__area::-webkit-scrollbar-thumb {
  background-color: #949494;
}
.terms__area-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 34px;
  z-index: 100;
  cursor: pointer;
}
.terms__area-subtitle {
  font-size: var(--title-lg);
  margin-top: 40px;
  text-align: center;
}
.terms__area-line {
  width: 100%;
  height: 1px;
  margin: 10px auto 40px auto;
  position: relative;
  background: #ccc;
  z-index: 5;
}
.terms__area::after {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 200px;
  content: "";
  display: block;
  background: #016af9;
  z-index: 99;
  height: 1px;
}
.terms__area-tabletitle {
  font-size: 26px;
  margin: 70px 0 40px 0;
  text-align: center;
}
.terms__area ul {
  list-style-type: disc;
  margin-left: 25px;
  text-align: left;
}
.terms__area ul.withnuber {
  list-style-type: decimal;
}
.terms__area ul.withnuber li {
  list-style-type: decimal;
}
.terms__area li {
  list-style-type: auto;
  margin: 20px 20px;
}
.terms__area table {
  width: 100%;
}
.terms__area table tbody {
  width: 100%;
}
.terms__area table tbody td {
  padding: 10px;
  /*background: #fafafa;*/
  border: 2px solid #fbdcff;
}
.terms__area table tbody .separate td {
  background: #f1f1f1;
}

.winner {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  color: white;
}
.winner h2 {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-filter: drop-shadow(0 0 15px #dd4dab);
          filter: drop-shadow(0 0 15px #dd4dab);
  font-size: var(--title-xl);
}
.winner p.title {
  font-size: var(--text-xl);
}
.winner p.note {
  color: #ddd;
  font-size: var(--text-md);
}
.winner__area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #402758;
  width: 90%;
  max-width: 1280px;
  margin: auto;
  height: 60%;
  overflow: hidden;
  padding: 20px 20px 70px 20px;
  text-align: center;
}
.winner__area-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 34px;
  z-index: 100;
  cursor: pointer;
}
.winner__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.winner__form-box {
  border: 1px solid rgba(239, 104, 207, 0.3);
  vertical-align: middle;
  border-radius: 5px;
  padding: 8px;
  color: #ef68cf;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
}

html, body {
  scroll-behavior: smooth;
}

.navbar {
  position: relative;
  z-index: 10;
  background: #fff;
  min-height: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0px !important;
}
.navbar a {
  line-height: 0;
  padding: 10px 0;
}
.navbar a img {
  display: inline-block;
  max-width: 95px;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shoutout {
  color: white;
  /*background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/kv-bg-2.jpg) repeat-y;*/
  background-size: contain;
  font-size: var(--body-font-size);
  font-family: var(--MSIBodyFont);
      margin-top: -8%;
}
.shoutout #servicemapproc .servicemapproc-show_more[disabled=disabled] {
  color: #eee;
  background-color: black;
}
.shoutout #servicemapproc .servicemapproc-show_more[disabled=disabled]:hover {
  background-color: #111;
  color: #eee;
}
.shoutout img {
  max-width: 100%;
  overflow: hidden;
}
.shoutout .common__container {
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1480px;
}
.shoutout .common__title {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-filter: drop-shadow(3px 3px 10em black);
          filter: drop-shadow(3px 3px 10em black);
}
.shoutout .common__title::before {
  background: -webkit-gradient(linear, right top, left top, from(#eee), to(rgba(238, 238, 238, 0)));
  background: linear-gradient(to left, #eee, rgba(238, 238, 238, 0));
  height: 1px;
  width: 15%;
  content: "";
}
.shoutout .common__title::after {
  background: -webkit-gradient(linear, left top, right top, from(#eee), to(rgba(238, 238, 238, 0)));
  background: linear-gradient(to right, #eee, rgba(238, 238, 238, 0));
  content: "";
  height: 1px;
  width: 15%;
}
.shoutout .common__title h2 {
  -ms-flex-preferred-size: 0 0 auto;
      flex-basis: 0 0 auto;
  margin: 10px 0;
  font-size: var(--block-title-lg);
  font-weight: bold;
  color: rgba(0, 0, 0, 0);
  background-image: -webkit-gradient(linear, right top, left top, from(#ccc), color-stop(#fff), to(#ccc));
  background-image: linear-gradient(to left, #ccc, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: #fff 5px 0 50px;
}
.shoutout.shoutout__color-white {
  position: relative;
}
.shoutout.shoutout__color-white .productseries__gamingmodel {
  display: none;
}
.shoutout.shoutout__color-white .productseries {
  background-size: 100%;
  background-attachment: fixed;
  background-position: center;
  padding: 70px 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(45, 45, 45, 0)), color-stop(50%, #2d2d2d), color-stop(65%, rgba(15, 209, 225, 0.5)), to(#6672a3));
  background: linear-gradient(to bottom, rgba(45, 45, 45, 0) 0%, #2d2d2d 50%, rgba(15, 209, 225, 0.5) 65%, #6672a3 100%);
}
.shoutout.shoutout__color-white .productseries__modelbox-ele a:hover {
  border: 2px solid #27c9d6;
  -webkit-filter: drop-shadow(0 0 0.6em #27c9d6);
          filter: drop-shadow(0 0 0.6em #27c9d6);
}
.shoutout.shoutout__color-white .productseries__modelboxGM {
  display: none;
}
.shoutout.shoutout__color-white .productseries__modelboxCC {
  display: block;
}
.shoutout.shoutout__color-white .prize {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #6672a3), color-stop(60%, #104044));
  background: linear-gradient(to bottom, #6672a3 50%, #104044 60%);
  margin: auto;
}
.shoutout.shoutout__color-white .prize__gm {
  display: none;
}
.shoutout.shoutout__color-white .prize__bg {
  background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/prize-bg-blue.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 996px) {
  .shoutout.shoutout__color-white .prize__bg {
    background-size: 100%;
  }
}
.shoutout.shoutout__color-white .expperts__black {
  display: none;
}
.shoutout.shoutout__color-black .productseries {
  background-size: 100%;
  background-attachment: fixed;
  background-position: center;
  padding: 70px 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(45, 45, 45, 0)), color-stop(50%, #2d2d2d), color-stop(75%, #2e2371), to(#7a508c));
  background: linear-gradient(to bottom, rgba(45, 45, 45, 0) 0%, #2d2d2d 50%, #2e2371 75%, #7a508c 100%);
}
.shoutout.shoutout__color-black .productseries__createmodel {
  display: none;
}
.shoutout.shoutout__color-black .productseries__modelbox-ele p {
  display: block;
    text-align: center;
    width: 100%;
    font-size: 1.5em;
    margin: 1em auto 0;
    color: #fff;
    font-weight: 600;
}
.shoutout.shoutout__color-black .productseries__modelbox-ele a:hover {
  -webkit-filter: drop-shadow(0 0 0.6em #cd86ff);
          filter: drop-shadow(0 0 0.6em #cd86ff);
}
.shoutout.shoutout__color-black .productseries__modelbox-ele.boxsub {
  opacity: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.shoutout.shoutout__color-black .productseries__modelbox-ele.boxsub--active {
  position: relative;
  top: auto;
  z-index: 2;
  opacity: 1;
}
.shoutout.shoutout__color-black .productseries__modelbox--active {
  display: block;
}
.shoutout.shoutout__color-black .productseries__modelboxGM {
  display: block;
}
.shoutout.shoutout__color-black .productseries__modelboxCC {
  display: none;
}
.shoutout.shoutout__color-black .prize {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #7a508c), color-stop(60%, #262626));
  background: linear-gradient(to bottom, #7a508c 50%, #262626 60%);
}
.shoutout.shoutout__color-black .prize__cc {
  display: none;
}
.shoutout.shoutout__color-black .prize__bg {
  background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/prize-bg.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 996px) {
  .shoutout.shoutout__color-black .prize__bg {
    background-size: 100%;
  }
}
.shoutout.shoutout__color-black .expperts__white {
  display: none;
}
.shoutout .kv {
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 10em 4em rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 10em 4em rgba(0, 0, 0, 0.4));
  position: relative;
  overflow: hidden;
  color: #fff;
  /*margin-bottom: 5em;*/
  text-align: left;
}
@media (min-width: 1930px) {
  .shoutout .kv {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .shoutout .kv__block {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    z-index: 2;
  }
  .shoutout .kv::before {
    background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/kv-bg-right.jpg) repeat-x;
    right: 0;
    width: 25%;
    height: 100%;
    position: absolute;
    content: "";
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #23b5b5;
    border-radius: 0 0 5vw 0;
  }
  .shoutout .kv::after {
    background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/kv-bg-left.jpg) repeat-x;
    left: 0;
    width: 25%;
    height: 100%;
    position: absolute;
    content: "";
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #2d216b;
    border-radius: 0 0 0 5vw;
  }
}
.shoutout .kv__main {
  background: url(../images/kv.jpg) no-repeat center top;
  background-size: contain;
  position: relative;
}
.shoutout .kv__main--bg {
  position: absolute;
  top: 0;
}
@media (min-width: 996px) {
  .shoutout .kv__main--bg {
    position: relative;
  }
}
.shoutout .kv__main--flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  width: 96%;
  max-width: 2060px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .shoutout .kv__main--flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: absolute;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.shoutout .kv__img {
  position: relative;
}
.shoutout .kv__img--chat1 {
  position: absolute;
  top: 0;
  -webkit-animation: upani 0.4s infinite steps(3, start) alternate;
          animation: upani 0.4s infinite steps(3, start) alternate;
}
.shoutout .kv__img--chat2 {
  position: absolute;
  top: 0;
  -webkit-animation: upani 0.35s infinite steps(3, start) alternate;
          animation: upani 0.35s infinite steps(3, start) alternate;
}
@-webkit-keyframes upani {
  from {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes upani {
  from {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.shoutout .kv__title {
  position: relative;
  margin-top: 30px;
}
.shoutout .kv__title--loudspeaker {
  position: absolute;
  top: 0;
  -webkit-animation: soundAni 0.5s infinite;
          animation: soundAni 0.5s infinite;
  -webkit-transform-origin: 110px 110px;
          transform-origin: 110px 110px;
}
.shoutout .kv__title--light {
  position: absolute;
  top: 0;
  -webkit-animation: lifghtAni 0.5s infinite;
          animation: lifghtAni 0.5s infinite;
}
@-webkit-keyframes soundAni {
  100% {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
    opacity: 0;
  }
}
@keyframes soundAni {
  100% {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
    opacity: 0;
  }
}
@-webkit-keyframes lifghtAni {
  100% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
}
@keyframes lifghtAni {
  100% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
}
.shoutout .kv__title h2 {
  color: white;
  text-align: center;
  text-shadow: -1px 1px 0 #77ff3d, -2px 2px 0 #77ff3d, 1px -1px 0 #ff0079, 2px -2px 0 #ff0079, 0px 8px 10px black;
  -webkit-filter: drop-shadow(0 0 0.1em #4242fd);
          filter: drop-shadow(0 0 0.1em #4242fd);
  margin-top: -20px;
  font-size: var(--title-lg);
}
@media (min-width: 1600px) {
  .shoutout .kv__title h2 {
    font-size: 36px;
  }
}
.shoutout .kv__title h3 {
  text-align: center;
  color: #f4a43b;
  text-shadow: -1px 1px 0 #fffb00, 0px 5px 3px black;
  -webkit-filter: drop-shadow(0 0 0.1em #4242fd);
          filter: drop-shadow(0 0 0.1em #4242fd);
  margin-top: 10px;
  font-size: var(--title-lg);
}
@media (min-width: 1600px) {
  .shoutout .kv__title h3 {
    font-size: 30px;
  }
}
.shoutout .kv__block {
  background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/kv-bg.jpg) repeat-y;
  background-size: contain;
  padding-bottom: 5em;
  border-radius: 0 0 8vw 8vw;
}
@media (min-width: 1930px) {
  .shoutout .kv__block {
    -webkit-filter: none;
            filter: none;
    border-radius: 0 0;
  }
}
.shoutout .kv__flex {
  gap: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 996px) {
  .shoutout .kv__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.shoutout .kv__flex--txtwrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.shoutout .kv__flex--txtwrap h2 {
  font-size: var(--title-xl);
  text-align: center;
  font-weight: 500;
}
@media (min-width: 996px) {
  .shoutout .kv__flex--txtwrap h2 {
    text-align: left;
  }
}
.shoutout .kv__flex--txtwrap h3 {
  color: #e7d60e;
  margin: 3px 0 1.8em 0;
  font-weight: normal;
  font-size: var(--title-md);
  text-align: center;
}
@media (min-width: 996px) {
  .shoutout .kv__flex--txtwrap h3 {
    text-align: left;
  }
}
.shoutout .kv__flex .featureBox {
  font-size: var(--text-xs);
}
.shoutout .kv__flex .featureBox__item {
  background: rgba(31, 23, 52, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 18px;
  margin-bottom: 3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 996px) {
  .shoutout .kv__flex .featureBox__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.shoutout .kv__flex .featureBox__item:first-child {
  border-radius: 0 60px 0 0;
}
.shoutout .kv__flex .featureBox__item:last-child {
  border-radius: 0 0 60px 0;
}
.shoutout .kv__flex .featureBox__item--icon {
  background: rgba(59, 52, 95, 0.4);
  -webkit-box-flex: 0;
      -ms-flex: 0 0;
          flex: 0 0;
  -ms-flex-preferred-size: 70px;
      flex-basis: 70px;
  padding: 8px;
  border-radius: 50px;
}
.shoutout .kv__flex .featureBox__item figcaption {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.shoutout .menubox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
  position: relative;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  width: 100%;
}
.shoutout .menubox__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  height: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 996px) {
  .shoutout .menubox__box {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 15px;
    width: 80%;
  }
}
.shoutout .menubox__box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: white;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .shoutout .menubox__box a {
    width: 25%;
  }
}
@media (min-width: 996px) {
  .shoutout .menubox__box a {
    width: auto;
  }
}
.shoutout .menubox__box a:hover {
  -webkit-filter: brightness(1) drop-shadow(3px 3px 10px #39ffc0);
          filter: brightness(1) drop-shadow(3px 3px 10px #39ffc0);
}
.shoutout .menubox__box a.select {
  -webkit-filter: brightness(1) drop-shadow(3px 3px 10px #39ffc0);
          filter: brightness(1) drop-shadow(3px 3px 10px #39ffc0);
}
.shoutout .menubox__box a.select b {
  color: #2fba8d;
}
.shoutout .menubox__box a b {
  font-weight: normal;
  margin: 5px auto;
}
@media (min-width: 996px) {
  .shoutout .menubox__box a b {
    font-weight: bold;
    margin: 0 auto;
  }
}
.shoutout .menubox__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 3px dotted #2fba8d;
  width: 100%;
  text-align: center;
}
@media (min-width: 996px) {
  .shoutout .menubox__title {
    width: auto;
    border-right: 3px dotted #2fba8d;
    border-bottom: 0px;
  }
}
.shoutout .menubox__title h2 {
  color: #2fba8d;
  padding-right: 15px;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .shoutout .menubox__title h2 {
    margin: auto 0;
  }
}
.shoutout .productseries {
  margin-top: 130px;
}
@media (min-width: 996px) {
  .shoutout .productseries {
    margin-top: 70px;
  }
}
.shoutout .productseries__subtitle {
  text-align: center;
  margin-top: 3em;
  font-size: var(--title-lg);
  font-weight: bold;
  text-transform: uppercase;
}
.shoutout .productseries__selectbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 70px 0 5em;
  gap: 10px;
}
@media (min-width: 996px) {
  .shoutout .productseries__selectbox {
    gap: 40px;
    flex-wrap: wrap;
  }
  
}
.shoutout .productseries__selectbox-item {
  width: calc(50% - 20px);
  max-width: 400px;
  padding: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  
  -webkit-filter: none;
          filter: none;
}
@media (min-width: 996px) {
  .shoutout .productseries__selectbox-item {
    padding: 1% 5%;
  }
}
.shoutout .productseries__selectbox-item p {
  font-size: var(--title-sm);
  text-align: center;
  padding: 10px;
  position: relative;
  border-radius: 20px;
  border: 0;
  margin: 0 10px;
}
@media (min-width: 996px) {
  .shoutout .productseries__selectbox-item p {
    padding: 0.4em 1em;
    border-radius: 80px;
    font-size: var(--title-md);
    margin: 0;
  }
}
.shoutout .productseries__selectbox-item svg {
  width: 20px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation: animateaarrow 1.3s ease infinite;
          animation: animateaarrow 1.3s ease infinite;
}
.shoutout .productseries__selectbox-item.gamingStyle {
  background: linear-gradient(45deg, #222 40%, #da47f0 80%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shoutout .productseries__selectbox-item.gamingStyle p {
  background: radial-gradient(ellipse at top, #da47f0, #9700ae, #83059c);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 2.5em 0.35em rgba(17, 17, 17, 0.25), 0 0.25em 0.5em rgba(54, 29, 58, 0.65), 0 0.1em 0.35em rgba(54, 29, 58, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
          box-shadow: 0 0 2.5em 0.35em rgba(17, 17, 17, 0.25), 0 0.25em 0.5em rgba(54, 29, 58, 0.65), 0 0.1em 0.35em rgba(54, 29, 58, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
}
.shoutout .productseries__selectbox-item.gamingStyle:hover {
  -webkit-filter: drop-shadow(0 0 0.6em #da47f0);
          filter: drop-shadow(0 0 0.6em #da47f0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 2px #da47f0;
          box-shadow: 0 0 2px #da47f0;
}
.shoutout .productseries__selectbox-item.gamingStyle:hover p {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 0.5em rgba(218, 71, 240, 0.65), 0 0 0.75em rgba(218, 71, 240, 0.8), 0 0 0.35em rgba(54, 29, 58, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
          box-shadow: 0 0 0.5em rgba(218, 71, 240, 0.65), 0 0 0.75em rgba(218, 71, 240, 0.8), 0 0 0.35em rgba(54, 29, 58, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
}
.shoutout .productseries__selectbox-item.creationStyle {
  background: linear-gradient(45deg, #222 40%, #1db3c0 80%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shoutout .productseries__selectbox-item.creationStyle p {
  background: radial-gradient(ellipse at top, #068590, #206f77, #00545c);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 2.5em 0.35em rgba(17, 17, 17, 0.25), 0 0.25em 0.5em rgba(8, 92, 99, 0.65), 0 0.1em 0.35em rgba(8, 92, 99, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
          box-shadow: 0 0 2.5em 0.35em rgba(17, 17, 17, 0.25), 0 0.25em 0.5em rgba(8, 92, 99, 0.65), 0 0.1em 0.35em rgba(8, 92, 99, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
}
.shoutout .productseries__selectbox-item.creationStyle:hover {
  -webkit-filter: drop-shadow(0 0 0.6em #1db3c0);
          filter: drop-shadow(0 0 0.6em #1db3c0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 2px #1db3c0;
          box-shadow: 0 0 2px #1db3c0;
}
.shoutout .productseries__selectbox-item.creationStyle:hover p {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 0.5em rgba(52, 124, 130, 0.65), 0 0 0.75em rgba(52, 124, 130, 0.8), 0 0 0.35em rgba(8, 92, 99, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
          box-shadow: 0 0 0.5em rgba(52, 124, 130, 0.65), 0 0 0.75em rgba(52, 124, 130, 0.8), 0 0 0.35em rgba(8, 92, 99, 0.8), inset -0.025em 0.3em 0.4em rgba(255, 255, 255, 0.68), inset 0 0.05em 0.05em rgba(255, 255, 255, 0.95);
}
.shoutout .productseries__gamingmodel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.5em auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 996px) {
  .shoutout .productseries__gamingmodel {
    gap: 4em;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px;
  }
}
.shoutout .productseries__gamingmodel-select {
  padding: 14px;
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin: 5px;
  background: rgba(0, 0, 0, 0.4);
}
@media (min-width: 996px) {
  .shoutout .productseries__gamingmodel-select {
    width: calc(10% - 0px);
    opacity: 1;
  }
}
.shoutout .productseries__gamingmodel-select img {
  position: absolute;
  opacity: 0.5;
}
@media (min-width: 996px) {
  .shoutout .productseries__gamingmodel-select img {
    position: relative;
    opacity: 1;
  }
}
.shoutout .productseries__gamingmodel-select--active {
  background: #593c76;
}
.shoutout .productseries__gamingmodel-select:hover {
  background: #593c76;
}
.shoutout .productseries__gamingmodel-select p {
  text-align: center;
  position: relative;
  -webkit-filter: drop-shadow(0 0 10px black);
          filter: drop-shadow(0 0 10px black);
  font-size: var(--title-lg);
}
@media (min-width: 996px) {
  .shoutout .productseries__gamingmodel-select p {
    font-size: var(--title-md);
  }
}
.shoutout .productseries__createmodel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.5em auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 996px) {
  .shoutout .productseries__createmodel {
    gap: 4em;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px;
  }
}
.shoutout .productseries__createmodel-select {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin: 5px;
  background: rgba(0, 0, 0, 0.4);
}
@media (min-width: 996px) {
  .shoutout .productseries__createmodel-select {
    width: calc(20% - 0px);
    opacity: 1;
  }
}
.shoutout .productseries__createmodel-select img {
  position: absolute;
  opacity: 0.5;
}
@media (min-width: 996px) {
  .shoutout .productseries__createmodel-select img {
    position: relative;
    opacity: 1;
  }
}
.shoutout .productseries__createmodel-select--active {
  background: rgba(255, 255, 255, 0.2);
}
.shoutout .productseries__createmodel-select:hover {
  background: rgba(255, 255, 255, 0.2);
}
.shoutout .productseries__createmodel-select p {
  text-align: center;
  position: relative;
  -webkit-filter: drop-shadow(0 0 10px black);
          filter: drop-shadow(0 0 10px black);
  font-size: var(--title-lg);
}
@media (min-width: 996px) {
  .shoutout .productseries__createmodel-select p {
    font-size: var(--title-md);
  }
}
.shoutout .productseries__filter {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 99;
}
.shoutout .productseries__filter-item {
 background: #000;
    -webkit-box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.2235294118);
    box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.2235294118);
    border-radius: 2em;
    margin-bottom: 1em;
    line-height: 1.5em;
    padding: 5px 2em;
    margin: 10px;
    cursor: pointer;
    border-radius: 2em 2em 2em 2em;
    font-size: var(--title-md);
    color: #fff;
    font-weight: 600;
	border: 3px solid #bf0baa;
	-webkit-box-shadow: 1px 0px 10px #bf0baa;
          box-shadow: 1px 0px 10px #bf0baa;
}
.shoutout .productseries__filter-item.active {
  border: 3px solid #bf0baa;
  background: #33a2bd;
  -webkit-box-shadow: 1px 0px 15px #bf0baa;
          box-shadow: 1px 0px 15px #bf0baa;
}
.shoutout .productseries__modelbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
.shoutout .productseries__modelbox-ele {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shoutout .productseries__modelbox-ele a {
	width: 22%;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 15px 0;
    border-radius: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #000000;
    font-size: var(--text-sm);
    margin-left: 10px;
    margin-right: 10px;
    align-content: center;
	background: linear-gradient(90deg, #33a2bd 0, #bf0baa 100%);	  
}
@media (min-width: 996px) {
  .shoutout .productseries__modelbox-ele a {
   /* width: calc(20% - 20px);*/
  }
}
.shoutout .productseries__modelbox-ele a:hover {
 /* -webkit-filter: drop-shadow(0 0 0.6em #32a6ff);
          filter: drop-shadow(0 0 0.6em #32a6ff);*/
  background: #bf0baa;
  -webkit-box-shadow: 1px 0px 15px #33a2bd;
          box-shadow: 1px 0px 15px #33a2bd;
}

.shoutout .productseries__modelbox-ele a:hover > .model__btn-name {
   opacity: 0;
 }
  .model__btn:hover +  .model__btn-link {
  display: none;
}

.shoutout .productseries__modelbox--active {
  display: block;
}
.shoutout .productseries__seriesmodelbox {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  background: #1f1f1f;
  padding: 1em;
}
.shoutout .productseries__seriesmodelbox a {
  width: calc(50% - 0px);
  padding: 8px 8px 8px 16px;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.shoutout .productseries__seriesmodelbox a:hover {
  border-radius: 0 2em 2em 2em;
  background: white;
  color: black;
}
.shoutout .prize__gm {
  display: block;
  width: 100%;
  text-align: center;
}
.shoutout .prize__gm h4 {
  color: #fef480;
  text-shadow: 0 0 5px #2a1b00;
  -webkit-filter: drop-shadow(0 0 2em #ffa801);
          filter: drop-shadow(0 0 2em #ffa801);
  font-size: var(--title-lg);
}
.shoutout .prize__gm a {
  text-decoration: none;
  display: block;
  margin: 15px 0;
}
.shoutout .prize__gm a span {
  border: 1px solid #ef68cf;
  cursor: pointer;
  padding: 5px 15px;
  color: white;
  -webkit-filter: drop-shadow(0 0 15px #dd4dab);
          filter: drop-shadow(0 0 15px #dd4dab);
  font-size: var(--title-md);
  background: rgba(57, 33, 91, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shoutout .prize__gm a span:hover {
  background: #39215b;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shoutout .prize__gm .winner__btn {
  display: none;
}
.shoutout .prize__gm .winner__btn.active {
  display: block;
}
.shoutout .prize__gm p {
  color: white;
  font-size: var(--body-font-size);
  display: block;
  padding-top: 10px;
}
.shoutout .prize__gm p.note {
  color: #e7d60e;
  font-style: italic;
  font-weight: normal;
  text-align: center;
  padding-top: 0px;
}
.shoutout .prize__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-top: 2em;
}
.shoutout .prize__box img {
  max-width: 290px;
  width: 80%;
}
.shoutout .prize__box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shoutout .prize__box p {
  color: #ccc;
}
.shoutout .prize__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2em auto 4em;
}
.shoutout .prize__block p {
  text-align: center;
}
.shoutout .prize__block p.title {
  color: #e7d60e;
}
.shoutout .prize__bg {
  border-radius: 5em 5em 0 0;
  padding: 3em 0;
}
.shoutout .prize__title {
  text-align: center;
  position: relative;
}
.shoutout .prize__title--txt {
  font-size: 46px;
  color: white;
  text-transform: uppercase;
  font-weight: bolder;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}
@media (min-width: 996px) {
  .shoutout .prize__title--txt {
    font-size: 72px;
  }
}
.shoutout .prize__title--img {
  -webkit-animation: prizeAni 2s infinite;
          animation: prizeAni 2s infinite;
}
.shoutout .prize__title--img img {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .shoutout .prize__title--img img {
    width: 38%;
  }
}
@-webkit-keyframes prizeAni {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(20px);
            transform: scale(0.8) translateY(20px);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes prizeAni {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(20px);
            transform: scale(0.8) translateY(20px);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.shoutout .prize__txt {
  text-align: center;
  padding-bottom: 30px;
}
.shoutout .prize__txt.active {
  display: none;
}
.shoutout .prize__txt--titleAct.active {
  display: none;
}
.shoutout .prize__txt--intro {
  background: #1d1d1d;
  font-weight: bold;
  -webkit-filter: drop-shadow(0 0 0.6em #32a6ff);
          filter: drop-shadow(0 0 0.6em #32a6ff);
  border-radius: 0 2em 2em 2em;
  padding: 15px 2%;
  text-align: center;
  margin: 1em auto;
  font-size: var(--text-xl);
  display: table;
  text-align: center;
  color: #ccc;
}
.shoutout .prize__txt--intro b {
  color: #327cff;
}
.shoutout .prize__txt h3 {
  padding: 20px 0 2px;
}
.shoutout .prize__txt--date {
  color: #a7c7ff;
  text-shadow: 2px 2px 5px black;
  border-radius: 0 1.5em 1.5em 1.5em;
  display: inline-block;
  font-weight: bold;
  font-size: var(--text-xl);
}
.shoutout .prize__txt--steam {
  margin: 3em auto 5em;
  width: 45%;
}
.shoutout .expperts {
  background: #222;
  padding: 4em 0;
}
@media (min-width: 996px) {
  .shoutout .expperts {
    padding: 5em 0 7em;
  }
}
.shoutout .expperts__box {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 996px) {
  .shoutout .expperts__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.shoutout .expperts__box a {
  position: relative;
  border-radius: 0 2em 0 0;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7), 6px 6px 0 #2d6fe5;
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7), 6px 6px 0 #2d6fe5;
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .shoutout .expperts__box a {
    width: auto;
  }
}
.shoutout .expperts__box a::before {
  background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/video-icon.png) no-repeat;
  background-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 3;
  left: 0;
}
.shoutout .expperts__box a::after {
  background: rgba(29, 29, 29, 0.66);
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 2;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shoutout .expperts__box a:hover {
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.7), 6px 6px 0 #2d6fe5;
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.7), 6px 6px 0 #2d6fe5;
}
.shoutout .expperts__box a:hover::after {
  background: rgba(24, 92, 213, 0.9);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shoutout .wtb {
  padding: 70px 0;
  background: #1f1f1f;
}
.shoutout .redeem {
  background: #262626;
  overflow: hidden;
  padding: 4em 0;
}
@media (min-width: 996px) {
  .shoutout .redeem {
    padding: 3.5em 0 8em;
  }
}
.shoutout .redeem__mainbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3em auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .shoutout .redeem__mainbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.shoutout .redeem__item {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.shoutout .redeem__item img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shoutout .redeem__item:hover a {
  text-decoration: none;
}
.shoutout .redeem__item:hover img {
  -webkit-filter: drop-shadow(0 0 1em #3faefb);
          filter: drop-shadow(0 0 1em #3faefb);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.shoutout .redeem__item h4 {
  color: #808080;
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--title-md);
  margin: 0.5em 0;
}
.shoutout .redeem__item p {
  color: white;
  padding: 0 20%;
}
.shoutout .redeem__arrow {
  text-align: center;
  margin: 2% 0 3%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 768px) {
  .shoutout .redeem__arrow {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    margin: 6.5% 0 0 0;
  }
}
.shoutout .redeem__tandcbox {
  padding: 3em;
  background: #1f1f1f;
  border-radius: 12px;
  margin-top: 40px;
  text-align: left;
}
.shoutout .redeem__tandcbox p {
  color: #079ff7;
  font-weight: bold;
  font-size: var(--title-md);
  margin: 1em 0 15px;
}
.shoutout .redeem__tandcbox ul {
  margin-left: 30px;
}
.shoutout .redeem__tandcbox ul li {
  list-style: disc !important;
  line-height: 1.8;
  font-size: var(--text-sm);
  color: #ccc;
}
.shoutout .redeem__tandcbox-btn {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shoutout .redeem__tandcbox-btn a {
  padding: 7px 30px;
  background: #3a6d98;
  display: inline-block;
  border-radius: 0 25px 0 0;
  border: 2px solid #3a6d98;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: white;
}
.shoutout .redeem__tandcbox-btn a:hover {
  -webkit-filter: drop-shadow(0 0 1em #3faefb);
          filter: drop-shadow(0 0 1em #3faefb);
  background: white;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shoutout .visit {
  background: #1f1f1f;
  padding: 3em 0 7em;
}
.shoutout .visit__title {
  width: 100%;
  text-align: center;
}
.shoutout .visit__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  gap: 1em;
}
.shoutout .visit__gm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shoutout .visit__cc {
  display: none;
}
.shoutout .langchoose {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4666666667);
  position: fixed;
  z-index: 30;
  top: 0%;
  text-align: center;
}
.shoutout .langchoose ul, .shoutout .langchoose li {
  padding: 0;
  margin: 0;
}
.shoutout .langchoose__block {
  width: 90%;
  max-width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 80vh;
  background: #222;
  overflow-x: hidden;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.479), -3px -3px 15px rgba(0, 0, 0, 0.479);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.479), -3px -3px 15px rgba(0, 0, 0, 0.479);
  border-radius: 10px;
}
.shoutout .langchoose__block::-webkit-scrollbar-track {
  background-color: #949494;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.shoutout .langchoose__block::-webkit-scrollbar {
  width: 6px;
  background-color: #949494;
}
.shoutout .langchoose__block::-webkit-scrollbar-thumb {
  background-color: #f5f5f5;
}
.shoutout .langchoose__block > div {
  padding: 0px 0px;
}
.shoutout .langchoose__block h2 {
  margin: 0 auto;
  padding: 40px 0;
  background: url(https://storage-asset.msi.com/event/2023/CND/shoutout/images/kv-bg-2.jpg) repeat-y;
  background-size: contain;
  text-transform: uppercase;
  font-size: var(--title-lg);
}
.shoutout .langchoose__block-sel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1d1732;
}
.shoutout .langchoose__block-sel li {
  width: 25%;
  text-align: center;
  list-style-type: none;
  margin: 0 0px;
  border-bottom: 1px solid #563a63;
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.shoutout .langchoose__block-sel li a {
  color: #0a8990;
  text-decoration: none;
}
.shoutout .langchoose__block-sel--active {
  background: rgba(238, 238, 238, 0.8);
}
.shoutout .langchoose__block-sel--active a {
  color: #1d1732 !important;
}
.shoutout .langchoose__country {
  padding: 20px;
}
.shoutout .langchoose__country-item {
  display: none;
}
.shoutout .langchoose__country-item--active {
  display: block;
}
.shoutout .langchoose__country ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.shoutout .langchoose__country ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(25% - 10px);
  background: #222;
  margin: 5px 5px;
  border: rgba(255, 255, 255, 0.0941176471) 1px solid;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shoutout .langchoose__country ul li:hover {
  background: #333;
}
.shoutout .langchoose__country ul li a {
  width: 100%;
  padding: 10px 0;
  font-size: var(--text-sm);
  text-align: center;
  color: #ddd;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */