@charset "UTF-8";
.gotop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  color: #800101;
  padding: 3px 10px;
  font-size: 3em;
  border-radius: 0px;
  -moz-border-radius: 3px;
  line-height: 200%;
  text-align: center;
  opacity: 0.8;
  z-index: 998;
  transition: all .3s ease; }

.modal-content {
  background-color: #ee9030;
  border-radius: 0px;
  color: #333334;
  margin: 20% auto;
  min-height: 60vh; }
  .modal-content h5 {
    color: #333334; }
  .modal-content p {
    color: #333334; }
  .modal-content .modal-header {
    border-bottom: 1px solid #ee9030; }
    .modal-content .modal-header .close {
      color: #333334;
      font-size: 2.5em;
      margin-top: -10px;
      opacity: 0.3; }
  .modal-content .modal-body {
    text-align: left; }
    .modal-content .modal-body .modal-title {
      margin: 5px auto 8px auto; }
    .modal-content .modal-body input[type="file"] {
      color: #333333;
      background-color: #ffffff;
      width: 100%;
      padding: 6px 10px;
      border-radius: 10px;
      vertical-align: baseline;
      line-height: 1; }
  .modal-content .tab-content {
    padding: 10px 5px; }
    .modal-content .tab-content blockquote {
      margin: 10px 0;
      background: #eee;
      padding: 8px;
      font-size: 16px;
      border-left: none; }
  .modal-content .list-inline > li {
    width: 49.5%;
    text-align: center;
    text-decoration: none;
    background: #333335;
    color: #ddd; }
    .modal-content .list-inline > li .tab {
      display: inline-block;
      color: #fff;
      font-size: 16px;
      padding: 9px 4px 7px;
      text-decoration: none;
      width: 100%; }
    .modal-content .list-inline > li.active {
      border: 1px solid #333335;
      border-bottom: none;
      background: #ee9030; }
      .modal-content .list-inline > li.active .tab {
        color: #333;
        cursor: text; }
  .modal-content .list-inline > li .active {
    border-bottom: 1px solid #fff; }

@media screen and (max-width: 480px) {
  .container .modal {
    left: none !important;
    right: none !important; } }
.section--org .modal-content,
.section--spon .modal-content,
.section--buy .modal-content,
.section--thx .modal-content {
  background: #ffffff; }
  .section--org .modal-content .modal-header,
  .section--spon .modal-content .modal-header,
  .section--buy .modal-content .modal-header,
  .section--thx .modal-content .modal-header {
    border-bottom: 1px solid #eeeeee; }

.section--org .img-sponsor:first-of-type {
  padding: 1%;
  margin: auto;
  margin-bottom: 3%;
  max-width: 250px; }

.pl0 {
  padding-left: 0 !important; }

/*
0-600px Phone
600-900px Tablet portrait
900-1200px Tablet landscape
1200-1800 is our normal styles apply
1800px + Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
1em=16px

ORDER:base+typography > general layout + grid>page layout >components
*/
.ani-move-big {
  -webkit-animation: move-big .5s infinite alternate linear;
  animation: move-big .5s infinite alternate linear; }
  @media (max-width: 768px) {
    .ani-move-big {
      animation-play-state: paused; } }

@keyframes move-big {
  100% {
    -webkit-transition: width 2s;
    /* Safari */
    transition: width 2s; } }
.ani-move-left {
  margin-left: 8px;
  -webkit-animation: move-left .5s infinite alternate linear;
  animation: move-left .5s infinite alternate linear; }
  @media (max-width: 768px) {
    .ani-move-left {
      animation-play-state: paused; } }

@keyframes move-left {
  100% {
    transform: translateX(8px); } }
.ani-move-top {
  margin-left: 8px;
  -webkit-animation: move-top .5s infinite alternate linear;
  animation: move-top .5s infinite alternate linear; }
  @media (max-width: 768px) {
    .ani-move-top {
      animation-play-state: paused; } }

@keyframes move-top {
  100% {
    transform: translateY(8px); }
  50% {
    transform: translateY(2px); }
  0% {
    transform: translateY(0px); } }
.movedown {
  animation: moveDown 0.6s ease-in-out 0.2s backwards; }

@keyframes moveDown {
  0% {
    transform: translateY(-40px); }
  100% {
    transform: translateY(0px); } }
.btn-style,
.btn-close,
.btn-cancel {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  background-color: #828181;
  border: none;
  border-radius: 6px;
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2), inset 0 2px 0 0 rgba(255, 255, 255, 0.3);
  transition: .2s linear;
  overflow: hidden; }
  @media (min-width: 768px) {
    .btn-style,
    .btn-close,
    .btn-cancel {
      padding: 8px 16px; } }
  .btn-style::after,
  .btn-close::after,
  .btn-cancel::after {
    content: '';
    position: absolute;
    left: -10%;
    top: -40%;
    width: 120%;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
    transition: .2s linear; }
  .btn-style span,
  .btn-close span,
  .btn-cancel span {
    position: relative;
    display: inline-block;
    z-index: 1;
    text-shadow: 0 0 1px #686868;
    transition: .2s linear; }
  .btn-style:hover, .btn-style:focus,
  .btn-close:hover,
  .btn-close:focus,
  .btn-cancel:hover,
  .btn-cancel:focus {
    color: #fff;
    background-color: #757474; }
  .btn-style:focus,
  .btn-close:focus,
  .btn-cancel:focus {
    outline: 0; }
  .btn-style:active,
  .btn-close:active,
  .btn-cancel:active {
    transform: translateY(2px); }
    .btn-style:active::after,
    .btn-close:active::after,
    .btn-cancel:active::after {
      top: -35%; }
    .btn-style:active span,
    .btn-close:active span,
    .btn-cancel:active span {
      transform: translateY(1px); }
    .btn-style:active:focus,
    .btn-close:active:focus,
    .btn-cancel:active:focus {
      outline: 0; }

.btn-style--warning {
  background-color: #ea4444;
  color: #fde5e5; }
  .btn-style--warning::after {
    background-color: transparent; }
  .btn-style--warning span {
    text-shadow: none; }
  .btn-style--warning:hover, .btn-style--warning:focus {
    color: #ffffff;
    background-color: #ed5b5b; }
  .btn-style--warning:active {
    color: #ffffff; }
.btn-style--invite {
  background-color: #ff9a45; }
  .btn-style--invite span {
    color: #333333;
    text-shadow: none; }
  .btn-style--invite:hover, .btn-style--invite:focus {
    background-color: #ff8c2c; }

.signup-btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 14px 20px;
  color: #333333;
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 3px;
  line-height: 2.2em;
  background-color: #ff943b;
  border: none;
  box-shadow: inset 0px -9px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: .1s linear;
  overflow: hidden; }
  .signup-btn::after {
    content: none; }
  .signup-btn span {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    transition: .1s linear;
    z-index: 1;
    font-weight: 600;
    text-shadow: none; }
  .signup-btn:hover, .signup-btn:focus, .signup-btn:active {
    background-color: #ff8622; }
  .signup-btn:focus {
    outline: 0; }
  .signup-btn__font {
    font-size: 120%; }
  @media (max-width: 1200px) {
    .signup-btn {
      max-width: 100%; } }
  .signup-btn--topic {
    background-color: #29a99d;
    border-color: #29a99d; }
    .signup-btn--topic:hover, .signup-btn--topic:focus {
      background-color: #24948a; }
    .signup-btn--topic:active {
      box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.3), 3px 3px 0 rgba(0, 0, 0, 0.3); }
  .signup-btn--self {
    background-color: #8db73a;
    border-color: #8db73a; }
    .signup-btn--self:hover, .signup-btn--self:focus {
      background-color: #7ea434; }
    .signup-btn--self:active {
      box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.3), 3px 3px 0 rgba(0, 0, 0, 0.3); }
  .signup-btn--team {
    border-color: transparent;
    text-shadow: 0 0 5px #000; }
    .signup-btn--team:hover, .signup-btn--team:focus {
      background-color: #a22799; }
    .signup-btn--team:active {
      box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.3), 3px 3px 0 rgba(0, 0, 0, 0.3); }
  .signup-btn .mini {
    font-size: 80%;
    display: inline-block;
    margin-right: 3px; }
  .signup-btn--disable {
    background-color: #ababab;
    border-color: #6d6d6d;
    pointer-events: none; }
    .signup-btn--disable span {
      text-shadow: 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab, 0 0 4px #ababab; }
    .signup-btn--disable:hover, .signup-btn--disable:focus {
      background-color: #ababab; }

.warning-modal .modal-content {
  width: calc(100% - 12px);
  margin: 0 auto;
  padding: 0px;
  color: #C10C0C;
  background-color: #FFF3F3;
  border: 2px solid #7A1313;
  border-radius: 10px;
  box-shadow: 0 0 0 4px #353535, 0 0 0 8px #ffa255, 0 0 0 14px #a14900, 0 0 0 30px #6e3200;
  overflow: hidden; }
.warning-modal .modal-header {
  color: #fff;
  border: none;
  border-bottom: 2px solid #ff4847;
  background-color: #ff6160; }
.warning-modal .modal-footer {
  border: none;
  text-align: center; }
.warning-modal .modal-title {
  font-size: 20px;
  font-weight: 700; }

.invitation-modal,
.normal-modal {
  width: calc(100% - 12px);
  margin: 0 auto;
  padding: 0px;
  color: #e67b22;
  background-color: #f1f1f1;
  border: 2px solid #e67b22;
  border-radius: 10px;
  box-shadow: 0 0 0 4px #353535, 0 0 0 8px #ffa255, 0 0 0 14px #a14900, 0 0 0 30px #6e3200;
  overflow: hidden; }
  @media (min-width: 768px) {
    .invitation-modal,
    .normal-modal {
      width: calc(100% - 14px); } }
  .invitation-modal .modal-header,
  .normal-modal .modal-header {
    color: #fff;
    border: none;
    border-bottom: 2px solid #eac3a2;
    background-color: #ecc8aa; }
    .invitation-modal .modal-header .close,
    .normal-modal .modal-header .close {
      margin-top: 0; }
  .invitation-modal .modal-footer,
  .normal-modal .modal-footer {
    border: none;
    text-align: center; }
  .invitation-modal .modal-title,
  .normal-modal .modal-title {
    font-size: 20px;
    font-weight: 700; }

.team-badge-s {
  display: inline-block;
  padding: 1px 6px;
  margin-right: 4px;
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
  border-radius: 16px;
  background-color: #4668cc; }

.group-badge {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0;
  vertical-align: middle; }
  .group-badge__img {
    display: inline-block;
    width: 30px;
    vertical-align: middle;
    background-color: #ffffff;
    border-radius: 5px; }
  .group-badge__name {
    display: inline-block;
    padding: 3px 10px 3px 4px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #664935;
    line-height: 1;
    vertical-align: middle;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: #a6efe2;
    transition: .2s linear; }
  .group-badge--hover:hover .group-badge__name {
    background-color: #bcf3e9; }

.pagination {
  margin-bottom: 0;
  margin-top: 40px; }
  .pagination > li {
    display: inline-block; }
    .pagination > li > a,
    .pagination > li > span {
      margin: 0 5px;
      padding: 6px 11px;
      line-height: 1;
      font-size: 16px;
      color: #868e96;
      border-color: transparent;
      border-radius: 8px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin: 0;
      margin-right: 20px;
      padding: 6px 20px;
      border: 1px solid #adb5bd;
      border-radius: 8px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      margin: 0;
      margin-left: 20px;
      padding: 6px 20px;
      border: 1px solid #adb5bd;
      border-radius: 8px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    color: #868e96;
    background-color: #dee2e6;
    border-color: transparent; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    color: #fff;
    background-color: #e8b538;
    border-color: transparent; }
  .pagination > li:first-child.disabled > span,
  .pagination > li:first-child.disabled > span:hover,
  .pagination > li:first-child.disabled > span:focus,
  .pagination > li:first-child.disabled > a,
  .pagination > li:first-child.disabled > a:hover,
  .pagination > li:first-child.disabled > a:focus,
  .pagination > li:last-child.disabled > span,
  .pagination > li:last-child.disabled > span:hover,
  .pagination > li:last-child.disabled > span:focus,
  .pagination > li:last-child.disabled > a,
  .pagination > li:last-child.disabled > a:hover,
  .pagination > li:last-child.disabled > a:focus,
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #dee2e6;
    background-color: transparent;
    border-color: #dee2e6; }

.pager {
  margin-bottom: 0;
  margin-top: 20px; }
  .pager li {
    display: inline-block; }
    .pager li + li {
      margin-left: 30px; }
    .pager li > a,
    .pager li > span {
      font-size: 16px;
      color: #868e96;
      padding: 4px 16px;
      border: 1px solid #adb5bd;
      border-radius: 8px; }
    .pager li > a:hover,
    .pager li > a:focus {
      color: #e8b538;
      background-color: transparent;
      border-color: #e8b538; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #dee2e6;
    background-color: transparent;
    border-color: #dee2e6; }

.progress {
  overflow: visible;
  margin-bottom: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4), 0 1px rgba(255, 255, 255, 0.1); }

.progress-bar {
  background: #F78100;
  transition: width 1.5s ease-in-out;
  border-radius: 50px; }

.progress-num + .tooltip {
  position: relative;
  float: right; }
  .progress-num + .tooltip > .tooltip-inner {
    padding: 2px 10px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background-color: #F78100; }
.progress-num + .tooltip.top {
  margin-top: -6px;
  z-index: 1; }
.progress-num + .tooltip > .tooltip-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #F78100; }

body {
  padding-top: 80px;
  font-size: 16px;
  line-height: 1.6;
  font-family: 微軟正黑體, Helvetica, Arial, Verdana, sans-serif;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom, center top;
  background-color: #ee9029; }
  @media (min-width: 768px) {
    body {
      background-size: 160%; } }
  @media (min-width: 992px) {
    body {
      padding-top: 90px;
      background-size: contain; } }
  @media (max-width: 767px) {
    body {
      padding-top: 65px; } }
  body.bg-hidden {
    overflow: hidden; }

a {
  transition: .2s linear; }
  a:hover, a:focus {
    outline: 0;
    text-decoration: none; }

.wrapper,
footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px; }

.wrapper {
  margin-bottom: 16%; }

footer {
  color: #fff; }

.a970 {
  margin-bottom: 30px;
  text-align: center; }
  .a970 img {
    max-width: 100%;
    margin: auto; }

.a300 {
  margin-bottom: 30px;
  text-align: center; }
  .a300 img {
    max-width: 100%;
    margin: auto; }

.user-avatar {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #4668cc;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 0 3px #a6efe2, 0 0 0 4px #ffefbc, 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden; }
  .user-avatar img {
    width: 100%;
    height: 100%; }

.post-select {
  display: block;
  padding: 8px;
  background-color: #fff;
  border: 1px solid transparent;
  color: #bd0101; }
  .post-select + .post-select {
    margin-top: 6px; }
  .post-select:hover, .post-select:focus, .post-select:active {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #eab42d;
    color: #a40101; }
  .post-select__topic {
    color: #444; }
  .post-select .team-gray {
    margin-top: 4px; }

.slogan {
  margin: 60px auto 0;
  text-align: center;
  width: auto; }
  @media (max-width: 1024px) {
    .slogan {
      margin-top: 2%;
      padding: 10px 15px; } }
  .slogan img {
    width: 48%;
    margin: 0 auto;
    user-select: none; }
  .slogan p {
    font-weight: 600;
    font-size: 6rem;
    -webkit-text-stroke: 0.3px #132140;
    text-align: center;
    color: #ffedcb;
    margin-top: 4.8vh;
    letter-spacing: 3px;
    white-space: nowrap;
    word-break: nowrap;
    margin: 0 auto; }
    @media (max-width: 992px) {
      .slogan p {
        font-size: 5rem; } }
    @media (max-width: 992px) {
      .slogan p {
        font-size: 4rem;
        white-space: pre-wrap; } }
    @media (max-width: 480px) {
      .slogan p {
        font-size: 2.6rem; } }
    @media (max-width: 992px) {
      .slogan p span {
        display: block; } }

.border-frame-title {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 6px;
  width: 80%;
  padding: 6px 10px 0;
  font-size: 20px;
  font-weight: bold;
  color: #654937;
  border: 2px solid #fbd572;
  background-color: #f9c12d;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  .border-frame-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background-color: #f9c12d; }
  @media (min-width: 768px) {
    .border-frame-title {
      width: 40%;
      padding: 20px;
      margin-top: 80px;
      font-size: 30px; }
      .border-frame-title::after {
        bottom: -6px;
        height: 6px; } }
  @media (min-width: 992px) {
    .border-frame-title {
      margin-top: 140px; } }
  .border-frame-title--team {
    color: #fff;
    border: 2px solid #4668cc;
    background-color: #4668cc; }
    .border-frame-title--team::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 4px;
      background-color: #4668cc; }

.border-frame {
  width: calc(100% - 12px);
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 10px;
  background-color: #f1f1f1;
  border: 2px solid #f9c12d;
  border-radius: 16px;
  box-shadow: 0 0 0 2px #fcde90, 0 0 0 4px #f9c12d, 0 0 0 6px #fbd572, 0 0 4px 6px rgba(0, 0, 0, 0.5); }
  @media (min-width: 768px) {
    .border-frame {
      width: calc(100% - 24px);
      padding: 20px;
      border-width: 4px; } }
  @media (min-width: 992px) {
    .border-frame {
      padding: 30px; } }
  @media (min-width: 1600px) {
    .border-frame {
      min-height: 800px; } }
  .border-frame--team {
    background-color: #F4F4F4;
    border-color: #3050af;
    box-shadow: 0 0 0 2px #414191, 0 0 0 4px #4668cc, 0 0 0 6px #4668cc, 0 0 4px 6px rgba(0, 0, 0, 0.5); }

.border-frame-tabs {
  position: relative;
  margin-top: 4%;
  text-align: center;
  font-size: 0; }
  @media (min-width: 769px) {
    .border-frame-tabs {
      margin-top: 2.5%;
      margin-bottom: 0; } }
  .border-frame-tabs__link {
    position: relative;
    display: inline-block;
    margin-bottom: 6px;
    width: 42%;
    padding: 12px 4px 6px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #9FA0A0;
    border: 2px solid transparent;
    border-bottom: 1px solid #fbd572;
    background-color: #F4F2E8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    vertical-align: bottom; }
    @media (min-width: 768px) {
      .border-frame-tabs__link {
        bottom: 0;
        width: 32%;
        padding: 16px 10px 8px;
        font-size: 22px;
        margin-bottom: 6px; } }
    .border-frame-tabs__link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      height: 6px;
      background-color: transparent; }
    .border-frame-tabs__link + .border-frame-tabs__link {
      margin-left: -2px; }
    .border-frame-tabs__link.active {
      font-size: 16px;
      z-index: 1; }
      .border-frame-tabs__link.active::after {
        bottom: -4px; }
      @media (min-width: 768px) {
        .border-frame-tabs__link.active {
          font-size: 28px; } }
    .border-frame-tabs__link--self {
      color: #9FA0A0;
      border-color: none;
      background-color: #f9c12d; }
      .border-frame-tabs__link--self:hover, .border-frame-tabs__link--self:focus {
        color: #654937;
        background-color: #facb50; }
      .border-frame-tabs__link--self.active {
        color: #654937;
        border-color: #fbd572;
        background-color: #f9c12d; }
        .border-frame-tabs__link--self.active::after {
          background-color: #f9c12d; }
    .border-frame-tabs__link--team {
      color: #eeeeea;
      border-color: #4668cc;
      background-color: #4668cc; }
      .border-frame-tabs__link--team:hover, .border-frame-tabs__link--team:focus {
        color: #fff;
        background-color: #4668cc; }
      .border-frame-tabs__link--team.active {
        color: #fff;
        background-color: #4668cc;
        border-color: transparent; }
        .border-frame-tabs__link--team.active::after {
          background-color: #4668cc; }

* {
  padding: 0;
  margin: 0; }

html {
  overflow-x: hidden; }

body {
  min-height: 100vh;
  position: relative;
  font-family: "Open Sans", "Helvetica Neue", 微軟正黑體, Helvetica, Arial, sans-serif;
  color: #333333;
  font-size: 1.6rem; }
  @media (max-width: 768px) {
    body {
      min-height: 100%; } }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  margin: 20px 0 10px; }

h1 {
  font-size: 36px;
  margin-bottom: 40px; }

h2 {
  font-size: 32px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 22px;
  font-weight: 600; }

h6 {
  font-size: 20px;
  font-weight: 600; }

@media screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
    margin-bottom: 20px; }

  h2 {
    font-size: 28px;
    margin: 1%; }

  h3 {
    font-size: 24px;
    margin: 1%; }

  h4 {
    font-size: 20px;
    margin: 1%; }

  h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 1%; }

  h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 1%; }

  p {
    font-size: 1.6rem; } }
strong {
  font-weight: 700; }

p {
  font-size: 1.8rem;
  line-height: 1.6em; }

p:last-child {
  margin-bottom: 0px; }

ul {
  list-style: none;
  line-height: 1.9em; }

ul li {
  list-style: none; }

.ma__t30 {
  margin-top: 30px; }

.overflow-y {
  overflow-y: visible; }

.ma10 {
  margin: 10px; }

.mat30 {
  margin-top: 30px; }

.mat20 {
  margin-top: 20px; }

.mab10 {
  margin-bottom: 10px; }

.float-none {
  float: none; }

.ul-check {
  margin-left: 5px;
  list-style: none; }

.ul-check > li {
  display: inline-block;
  margin-left: 22px;
  word-break: keep-all; }

.ul-check > li:before {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  font-size: 12px;
  margin-left: -15px; }

.border-china {
  border: 3px solid #da8027; }

.border-group {
  border: 3px solid #800101; }

a {
  transition: all .3s ease;
  color: #ff9a45; }
  a:hover {
    color: #ffb678;
    text-decoration: none; }

button,
.btn {
  transition: all .3s ease; }

.btn--default {
  background: #fff;
  border: 2px solid #531d8d;
  margin-top: 20px;
  min-width: 120px;
  color: #531d8d;
  display: inline-block;
  width: 45%;
  margin: 1%;
  padding: 10px 0;
  font-size: 18px; }

.btn--default:focus,
.btn--default:hover,
.btn--default:active {
  color: #fff;
  background: #531d8d; }

section,
header {
  position: relative; }

section {
  padding: 12rem 1.5rem;
  margin: 0; }
  section:last-of-type {
    margin-bottom: 0; }

.header {
  z-index: 999;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  box-shadow: 0 0 10px #ffffff;
  background-color: #132140;
  border-color: #132140; }
  .header .navbar-inverse .navbar-nav {
    float: right;
    padding: 0; }
    @media (max-width: 1199px) {
      .header .navbar-inverse .navbar-nav {
        float: left;
        margin: 0;
        text-align: center;
        width: 100%;
        padding: 0; } }
  @media (max-width: 768px) {
    .header {
      height: auto; } }

.navbar-inverse {
  height: 90px;
  background-color: transparent;
  border-color: transparent;
  padding: 0 0 0 30px;
  margin-bottom: 0; }
  @media (max-width: 1199px) {
    .navbar-inverse {
      position: absolute;
      background-color: #132140;
      border-bottom: 0px;
      height: auto;
      width: 100%;
      padding: 0;
      padding-top: 10px;
      padding-bottom: 1.5%;
      box-shadow: 0 0 10px #ffffff; } }
  @media (max-width: 767px) {
    .navbar-inverse {
      height: 65px; } }
  .navbar-inverse .navbar-form {
    border-color: #2a4a8f; }
  .navbar-inverse .navbar-collapse.in {
    overflow-y: scroll;
    border-color: #d4d4d4;
    background-color: #132140; }
  .navbar-inverse .navbar-header {
    width: auto; }
    @media (max-width: 768px) {
      .navbar-inverse .navbar-header {
        width: auto; } }
  .navbar-inverse .navbar-logobox {
    display: block;
    max-width: 360px;
    margin-top: 20px;
    float: left;
    position: relative;
    width: 100%; }
@media (min-width: 1200px) and (max-width: 1365px) {
  .navbar-inverse .navbar-logobox {
    max-width: 220px; } }

    @media (max-width: 768px) {
      .navbar-inverse .navbar-logobox {
        left: 95px;
        margin-top: 0px; } }
    @media (max-width: 667px) {
      .navbar-inverse .navbar-logobox {
        width: 50%;
        margin-left: 8px;
        margin-bottom: 8px;
        left: 10px; } }
    .navbar-inverse .navbar-logobox img {
      width: 100%;
      margin: 0.5%; }
  .navbar-inverse .navbar-10thbox {
    height: auto;
    display: block;
    position: absolute;
    left: calc(50% - 100px); }
    @media (max-width: 768px) {
      .navbar-inverse .navbar-10thbox {
        top: 0px;
        left: 15px; } }
    .navbar-inverse .navbar-10thbox img {
      width: 100%;
      display: block;
      max-width: 200px;
      margin: 0 auto;
      margin-top: 25px; }
      @media (max-width: 1024px) {
        .navbar-inverse .navbar-10thbox img {
          width: 150px;
          margin-top: 10px; } }
      @media (max-width: 768px) {
        .navbar-inverse .navbar-10thbox img {
          margin-top: 10px;
          width: 80px; } }
  .navbar-inverse .navbar-toggle {
    border-radius: 0px;
    padding: 14px;
    color: #ffffff;
    border: none;
    position: absolute;
    right: 0; }
    .navbar-inverse .navbar-toggle i {
      font-size: 2.8rem; }
    @media (max-width: 768px) {
      .navbar-inverse .navbar-toggle {
        right: -5px;
        top: -10px;
        z-index: 999; } }
  .navbar-inverse .navbar-toggle:focus,
  .navbar-inverse .navbar-toggle:hover {
    background-color: transparent;
    color: #eeeeee; }
  @media (max-width: 1199px) {
    .navbar-inverse .navbar-nav li {
      border-bottom: 1px solid #333333;
      text-align: center; } }
  .navbar-inverse .navbar-nav li a {
    font-size: 1.6rem;
    color: #ffffff;
    line-height: 55px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 1px;
    padding-top: 25px;
    transition: all .3s ease; }
    .navbar-inverse .navbar-nav li a:hover, .navbar-inverse .navbar-nav li a:focus {
      color: #eeeeee;
      border-bottom: 4px solid #ffb06e; }
    @media (max-width: 1199px) {
      .navbar-inverse .navbar-nav li a:hover, .navbar-inverse .navbar-nav li a:focus {
        border-bottom: none;
        background-color: #3054a2; } }
    .navbar-inverse .navbar-nav li a.sponsor:hover, .navbar-inverse .navbar-nav li a.sponsor:focus {
      border-bottom: 4px solid #ffb06e; }
    .navbar-inverse .navbar-nav li a.unDecoHover {
      border-bottom: none; }
    .navbar-inverse .navbar-nav li a.menu__search-btn:hover, .navbar-inverse .navbar-nav li a.menu__search-btn:focus {
      border-bottom: none; }
      .navbar-inverse .navbar-nav li a.menu__search-btn:hover .menu__search-toggle:before, .navbar-inverse .navbar-nav li a.menu__search-btn:focus .menu__search-toggle:before {
        border-color: #ffb06e; }
      .navbar-inverse .navbar-nav li a.menu__search-btn:hover .menu__search-toggle:after, .navbar-inverse .navbar-nav li a.menu__search-btn:focus .menu__search-toggle:after {
        background-color: #ffb06e; }
    @media (max-width: 767px) {
      .navbar-inverse .navbar-nav li a {
        padding: .3em; } }
  .navbar-inverse .navbar-nav li .dropdown-menu {
    padding: 0px;
    border-radius: 0;
    left: calc(50% - 80px); }
    .navbar-inverse .navbar-nav li .dropdown-menu li {
      border-bottom: 1px solid #eee; }
  .navbar-inverse ul li:last-child {
    border-bottom: none; }
  .navbar-inverse .dropdown {
    float: left; }
    .navbar-inverse .dropdown a:hover,
    .navbar-inverse .dropdown a:active,
    .navbar-inverse .dropdown a:visited {
      color: #3054a2; }
    .navbar-inverse .dropdown .btn {
      background: transparent; }
  .navbar-inverse .navbar-nav .dropdown-menu li a {
    line-height: 30px;
    padding: 10px 1em;
    text-align: center; }
  .navbar-inverse .nav .open > a,
  .navbar-inverse .nav .open > a:focus,
  .navbar-inverse .nav .open > a:hover {
    background: transparent;
    border-color: transparent; }
  .navbar-inverse .menu-user {
    float: right;
    margin: 0;
    min-width: auto;
    width: auto;
    margin-left: 5px;
    cursor: pointer; }
    .navbar-inverse .menu-user:hover {
      background-color: #1f3567;
      color: #eeeeee; }
    @media (max-width: 1199px) {
      .navbar-inverse .menu-user {
        float: none;
        width: 100%;
        position: relative; } }
    .navbar-inverse .menu-user a {
      color: #ffffff;
      display: block;
      vertical-align: middle;
      text-align: center;
      letter-spacing: 1px;
      text-decoration: none;
      transition: ease 0.3s; }
      .navbar-inverse .menu-user a:hover {
        color: #eeeeee; }
      .navbar-inverse .menu-user a:active {
        top: 2px; }
    .navbar-inverse .menu-user--top {
      width: 280px;
      position: relative;
      float: right;
      text-align: right;
      padding: 0px;
      height: 85px; }
      .navbar-inverse .menu-user--top a {
        color: #333333; }
      .navbar-inverse .menu-user--top .fa {
        float: right; }
        @media (max-width: 1199px) {
          .navbar-inverse .menu-user--top .fa {
            text-align: center; } }
      @media (max-width: 1199px) {
        .navbar-inverse .menu-user--top {
          float: left;
          width: 100%;
          position: relative;
          height: auto;
          border: none; } }
    .navbar-inverse .menu-user--down {
      width: 280px;
      background-color: #999999;
      position: absolute;
      top: 89px;
      right: 15px;
      float: right; }
      @media (max-width: 1199px) {
        .navbar-inverse .menu-user--down {
          float: none;
          width: 100%;
          position: relative; } }
    .navbar-inverse .menu-user__avatar {
      vertical-align: middle;
      border: 3px solid #2a4a8f;
      width: 60px;
      height: 60px;
      box-shadow: none;
      float: left;
      margin: 0 5px;
      display: block;
      border-radius: 100%;
      overflow: hidden;
      margin: auto;
      position: relative; }
      .navbar-inverse .menu-user__avatar img {
        width: 100%;
        height: 100%;
        display: block;
        background-color: #fff; }
      @media (max-width: 1199px) {
        .navbar-inverse .menu-user__avatar {
          float: none; } }
    .navbar-inverse .menu-user__link {
      padding: 12px 50px; }
    .navbar-inverse .menu-user__name {
      display: block;
      min-width: 145px;
      width: 280px;
      margin-left: 5px;
      height: 100%;
      vertical-align: middle;
      line-height: 45px;
      color: #ffffff;
      padding: 15px;
      border: none;
      border: 0px;
      text-align: right;
      float: right;
      transition: .2s linear; }
      .navbar-inverse .menu-user__name:hover, .navbar-inverse .menu-user__name:focus {
        color: #eeeeee; }
      .navbar-inverse .menu-user__name .nickname {
        float: left;
        width: 145px;
        height: 55px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: left;
        padding-left: 3px;
        line-height: 56px; }
        @media (max-width: 1199px) {
          .navbar-inverse .menu-user__name .nickname {
            width: 100%;
            text-align: center; } }
      .navbar-inverse .menu-user__name--login {
        max-width: 120px;
        background: transparent;
        border: 2px solid #666666;
        margin-left: auto;
        margin-right: auto;
        max-height: 75px;
        margin-top: 5px;
        border-radius: 10px; }
        .navbar-inverse .menu-user__name--login:hover, .navbar-inverse .menu-user__name--login:focus, .navbar-inverse .menu-user__name--login:active {
          border: 2px solid #999999; }
      .navbar-inverse .menu-user__name .avatar-numbox {
        background: #bd0101;
        width: auto;
        height: 25px;
        border-radius: 40px;
        line-height: 25px;
        position: absolute;
        top: 6px;
        left: 55px;
        z-index: 99;
        display: block;
        box-shadow: 1px 1px 1px 1px rgba(51, 51, 51, 0.2);
        padding: 0px 4px;
        min-width: 25px; }
        @media (max-width: 1199px) {
          .navbar-inverse .menu-user__name .avatar-numbox {
            left: calc(50% + 10px); } }
        .navbar-inverse .menu-user__name .avatar-numbox .avatar-num {
          font-weight: bold;
          font-size: 15px;
          color: #ffffff; }
        .navbar-inverse .menu-user__name .avatar-numbox:after {
          content: '即時通知';
          position: absolute;
          left: 38px;
          top: -3px;
          padding: 4px 6px;
          min-width: 100%;
          white-space: nowrap;
          font-weight: 700;
          font-size: 15px;
          color: #fff;
          text-align: center;
          background-color: #00000085;
          border-radius: 4px;
          opacity: 0;
          -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 0.5s ease, -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          -o-transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
        .navbar-inverse .menu-user__name .avatar-numbox:before {
          content: "";
          position: absolute;
          top: 4px;
          left: 18px;
          border: solid transparent;
          height: 0;
          width: 0;
          border-right-color: #00000085;
          border-width: 10px;
          opacity: 0;
          -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 0.5s ease, -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          -o-transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 0.5s ease, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
        .navbar-inverse .menu-user__name .avatar-numbox:focus:after, .navbar-inverse .menu-user__name .avatar-numbox:hover:after, .navbar-inverse .menu-user__name .avatar-numbox:focus:before, .navbar-inverse .menu-user__name .avatar-numbox:hover:before {
          opacity: 1; }
    .navbar-inverse .menu-user .fa-chevron-down:before {
      right: 0;
      float: right;
      font-size: 20px;
      margin: 0 6px;
      color: #aaa;
      border-radius: 50%;
      text-align: center;
      line-height: 55px;
      transition: transform .15s ease 0s; }
    .navbar-inverse .menu-user .fa-chevron-down:hover:before, .navbar-inverse .menu-user .fa-chevron-down:focus:before {
      color: #999999; }
    .navbar-inverse .menu-user .menu-user--top[aria-expanded="true"] .fa-chevron-down:before {
      transform: rotate(180deg); }
    .navbar-inverse .menu-user--ul li {
      text-align: center;
      padding: 0;
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #ddd; }
      .navbar-inverse .menu-user--ul li:hover {
        background-color: #808080; }

.navbar-inverse .navbar-nav li .menu-btn-post {
  color: #ffffff;
  background-color: #359c78;
  border-radius: 10px;
  line-height: 40px;
  padding: 10px 22px;
  position: relative;
  right: auto;
  top: auto;
  z-index: 0;
  margin: 10px;
  margin-top: 13px;
  border: none;
  margin-right: 12px;
  font-size: 1.6rem;
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
  transition: .2s linear; }
  .navbar-inverse .navbar-nav li .menu-btn-post:hover, .navbar-inverse .navbar-nav li .menu-btn-post:focus, .navbar-inverse .navbar-nav li .menu-btn-post:active {
    background-color: #3baf87;
    border: none;
    color: #eeeeee; }
  .navbar-inverse .navbar-nav li .menu-btn-post:active {
    top: 2px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.3);
    background-color: #3baf87;
    border: none;
    color: #eeeeee; }
@media (min-width: 1200px) and (max-width: 1365px) {
  .navbar-inverse .navbar-nav li .menu-btn-post {
    padding: 8px 16px; } }

.navbar-inverse .navbar-nav li .btn-apply {
  color: #ffffff;
  background-color: #e67b22;
  border-radius: 10px;
  line-height: 40px;
  padding: 10px 20px;
  position: relative;
  right: auto;
  top: 0;
  z-index: 0;
  margin: 10px;
  margin-top: 13px;
  border: none;
  margin-right: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
  transition: .2s linear; }
  .navbar-inverse .navbar-nav li .btn-apply:hover, .navbar-inverse .navbar-nav li .btn-apply:focus, .navbar-inverse .navbar-nav li .btn-apply:active {
    background-color: #e98939;
    border: none;
    color: #eeeeee; }
  .navbar-inverse .navbar-nav li .btn-apply:active {
    top: 2px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.3);
    background-color: #e98939;
    border: none;
    color: #eeeeee; }
@media (min-width: 1200px) and (max-width: 1365px) {
  .navbar-inverse .navbar-nav li .btn-apply {
    padding: 8px 16px; } }

@media (max-width: 1200px) {
  .hidden-1200 {
    display: none !important; } }

@media (max-width: 768px) {
  .hidden-768 {
    display: none !important; } }

ul li {
  list-style: none; }

header .menu-search-parent .bar__search-input {
  float: left;
  margin-bottom: 16px;
  width: 100%;
  padding: 14px 12px;
  font-size: 20px;
  line-height: 1.42857143;
  color: #333;
  background-color: transparent;
  background-image: none;
  border: none;
  border-bottom: 1px solid #f6f6f6;
  border-radius: 0;
  transition: .15s ease-in-out; }
  header .menu-search-parent .bar__search-input:focus {
    outline: none; }
@media (max-width: 1199px) {
  header .menu-search-parent .bar__search-li {
    user-select: auto;
    position: absolute; } }
header .menu-search-parent .bar__search-btn {
  cursor: pointer;
  width: 44px;
  height: 50px;
  margin-top: 20px; }
  header .menu-search-parent .bar__search-btn:hover, header .menu-search-parent .bar__search-btn:focus {
    color: #333;
    background-color: #ffb06e;
    border-bottom: none; }
    header .menu-search-parent .bar__search-btn:hover .bar__search-toggle::before, header .menu-search-parent .bar__search-btn:focus .bar__search-toggle::before {
      border-color: #ffb06e; }
    header .menu-search-parent .bar__search-btn:hover .bar__search-toggle::after, header .menu-search-parent .bar__search-btn:focus .bar__search-toggle::after {
      background: #ffb06e; }
  @media (max-width: 1199px) {
    header .menu-search-parent .bar__search-btn {
      display: none; } }
  header .menu-search-parent .bar__search-btn .menu__search-toggle::before {
    border-color: #ffb06e; }
  header .menu-search-parent .bar__search-btn .menu__search-toggle::after {
    background-color: #ffb06e; }
header .menu-search-parent .bar__search-toggle {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  cursor: pointer; }
  @media (max-width: 1199px) {
    header .menu-search-parent .bar__search-toggle {
      top: 0; } }
  header .menu-search-parent .bar__search-toggle::before, header .menu-search-parent .bar__search-toggle::after {
    content: '';
    position: absolute;
    display: block;
    transition: 0.1s linear; }
  header .menu-search-parent .bar__search-toggle::before {
    left: -2px;
    top: -2px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff; }
  header .menu-search-parent .bar__search-toggle::after {
    height: 2px;
    width: 7px;
    top: 13px;
    left: 10px;
    background: #fff;
    transform: rotate(45deg); }
  header .menu-search-parent .bar__search-toggle.active::before {
    left: 7px;
    top: 1px;
    width: 0;
    border: none;
    border-left: 2px solid white;
    border-radius: 0;
    transform: rotate(45deg); }
  header .menu-search-parent .bar__search-toggle.active::after {
    width: 16px;
    left: 0px;
    top: 8px; }
header .menu-search-parent .bar__dropform {
  display: none;
  position: relative;
  z-index: 999999;
  width: calc(100% - 30px);
  background-color: rgba(204, 204, 204, 0.9);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  animation-name: fadeIn;
  animation-duration: .3s; }
  @media (max-width: 1199px) {
    header .menu-search-parent .bar__dropform {
      width: 100%; } }
  header .menu-search-parent .bar__dropform form {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0; }
  header .menu-search-parent .bar__dropform-btn {
    margin-top: 10px;
    margin-left: 16px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    color: rgba(58, 58, 58, 0.96);
    background-color: #f6f6f6;
    transition: .2s ease; }
    header .menu-search-parent .bar__dropform-btn:focus {
      color: rgba(58, 58, 58, 0.96);
      background-color: #fbfbfb;
      outline: none; }
    header .menu-search-parent .bar__dropform-btn:hover {
      color: rgba(58, 58, 58, 0.96);
      background-color: #fbfbfb; }
    header .menu-search-parent .bar__dropform-btn:active {
      color: rgba(67, 67, 67, 0.96);
      background-color: #f1f1f1;
      outline: none; }
  header .menu-search-parent .bar__dropform .pull-left {
    width: 88%; }
  header .menu-search-parent .bar__dropform .radio-label {
    margin-right: 30px;
    margin-bottom: 0;
    padding-left: 22px;
    color: #fff; }
    header .menu-search-parent .bar__dropform .radio-label::before, header .menu-search-parent .bar__dropform .radio-label::after {
      top: 5px;
      width: 16px;
      height: 16px; }
    header .menu-search-parent .bar__dropform .radio-label::before {
      background-color: transparent;
      border: 2px solid #fff;
      box-shadow: none; }
    header .menu-search-parent .bar__dropform .radio-label::after {
      background-color: #fff; }
  header .menu-search-parent .bar__dropform .radio-input:checked + .radio-label {
    font-weight: normal; }
  header .menu-search-parent .bar__dropform .radio-input:checked + .radio-label::after {
    transform: scale(0.5, 0.5); }
header .menu-search-parent .bar__mask {
  display: none;
  background-color: rgba(0, 0, 0, 0.45);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  animation-name: fadeIn;
  animation-duration: .3s; }
  header .menu-search-parent .bar__mask--open {
    display: block; }

.dropdown-badge {
  position: static;
  display: inline-block;
  margin-left: 4px;
  vertical-align: text-bottom; }

.show-ask,
.show-notice,
.show-list-ask,
.show-list-notice,
.menu__avatar .notification__badge {
  display: none; }

@media (min-width: 1160px) {
  .show-ask,
  .show-notice {
    display: block; }

  .menu__container {
    max-width: 1170px; }

  .header__inner {
    max-width: 1170px; } }
@media (min-width: 1110px) and (max-width: 1159px) {
  .show-ask,
  .show-list-notice,
  .menu__avatar .notification__badge {
    display: block; }

  .menu__container {
    width: 98%; }

  .header__inner {
    width: 98%; } }
@media (min-width: 856px) and (max-width: 1109px) {
  .show-list-ask,
  .show-list-notice,
  .menu__avatar .notification__badge {
    display: block; }

  .menu__account {
    display: none; }

  .menu__container {
    width: 98%; }

  .header__inner {
    width: 98%; } }
@media (max-width: 866px) {
  .show-list-ask,
  .show-list-notice,
  .menu__avatar .notification__badge {
    display: block; }

  .menu__account {
    display: none; }

  .menu__avatar {
    margin-right: 8px; } }
@media (max-width: 991px) {
  .menu__left {
    transform: translateX(0); }
  .menu__logo {
    display: none; } }
@media (min-width: 768px) and (max-width: 1159px) {
  .menu__dropform .pull-left {
    width: 80%; } }
@media (max-width: 767px) {
  .menu__dropform form {
    padding: 30px 0 40px; }

  .menu__dropform .pull-left {
    width: 100%; }

  .menu__dropform-btn {
    margin-top: 16px;
    margin-left: 0; } }
.mask__patch {
  overflow: hidden; }

.section--footer {
  overflow: hidden;
  background: #000000;
  padding: 0 0 3rem;
  border-top: 6px solid #888889;
  width: 100%; }
  .section--footer img {
    margin: 0 auto;
    max-width: 100%;
    border: 1px solid #333; }
  .section--footer .logobox {
    margin-top: 3%; }
  .section--footer .logo {
    max-width: 300px; }

.section--footer__org {
  margin: 0 0 2%;
  padding: 30px 15px;
  background: #ffffff; }
  .section--footer__org .org img {
    max-width: 300px; }
    @media (max-width: 480px) {
      .section--footer__org .org img {
        max-width: 100%; } }
  .section--footer__org .org__sponsor {
    border-left: 1px solid #eee; }
    @media (max-width: 992px) {
      .section--footer__org .org__sponsor {
        border-left: none; } }
  .section--footer__org .org__title {
    color: #00659a; }
  .section--footer__org .title-layer {
    background: #e2edf9;
    color: #5f5f5f;
    font-size: 1.8rem;
    padding: 4px 3px;
    text-align: center;
    border-radius: 10px; }

/*org*/
.section--org {
  color: #333333;
  background: #eeeeee; }

.section--org .title {
  color: #eeeeee;
  margin: 1rem 0 .6rem; }

.section--org .title:before {
  background: url("/images/ironman/11th/event/deco-title-red.png") no-repeat; }

.section--org .org__logobox {
  background: #ffffff;
  margin-top: 10px;
  padding: 15px; }

.section--org .org__logobox:first-of-type {
  border-right: 10px solid #eeeeee; }

@media (max-width: 991px) {
  .section--org .org__logobox:first-of-type {
    border-right: none; } }
.section--org .org__logobox img {
  max-width: 300px;
  margin: auto; }

.section--org .org__logobox .org__title {
  font-size: 30px; }

.section--org .org__logobox .org__subtitle {
  font-size: 24px; }

.section--org .org__logobox__til {
  border-bottom: 2px solid #eeeeee; }

.section--org .org__logobox-left {
  border-right: 10px solid #eee; }

@media (max-width: 768px) {
  .section--org .org__logobox-left {
    border-right: 0 solid #eee; } }
.section--org .org h3 {
  color: #333333; }

.vertical-align {
  display: flex;
  align-items: center; }

@media (min-width: 992px) {
  .d-flex {
    display: flex; } }
.loading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffcf9e;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: .5s linear;
  -o-transition: .5s linear;
  transition: 0.5s linear; }

.loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.loading__logo svg {
  width: 100%; }

.signup-wrapper {
  max-width: 800px;
  margin: 0 auto; }

.signup-user {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .signup-user {
      margin-bottom: 60px; } }
  .signup-user__avatar {
    float: left;
    width: 40px;
    height: 40px;
    margin-top: 8px;
    margin-right: 10px;
    text-align: center;
    box-shadow: 0 0 0 3px #efbe45, 0 0 0 5px #ffefbc, 0 2px 0 rgba(0, 0, 0, 0.2), inset 0 0 5px rgba(0, 0, 0, 0.2); }
    @media (min-width: 768px) {
      .signup-user__avatar {
        width: 80px;
        height: 80px;
        margin-top: 2px;
        margin-right: 20px; } }
    .signup-user__avatar img {
      width: 100%;
      height: 100%; }
  .signup-user__box {
    overflow: hidden; }
  @media (min-width: 768px) {
    .signup-user__info {
      float: left;
      width: 50%; }
      .signup-user__info:first-child {
        padding-right: 10px; } }
  .signup-user__info > p:last-child {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 2rem;
    word-break: break-word; }
    @media (min-width: 768px) {
      .signup-user__info > p:last-child {
        font-size: 2.6rem; } }
  .signup-user__info-link {
    display: inline-block;
    padding-left: 10px;
    font-size: 14px;
    color: #ff9a45; }
    .signup-user__info-link:hover, .signup-user__info-link:focus {
      color: #ffad69; }
    .signup-user__info-link:active {
      color: #ff8721; }
    @media (min-width: 768px) {
      .signup-user__info-link {
        font-size: 16px; } }
  .signup-user .mylist-badge {
    margin-top: 8px;
    margin-bottom: 8px; }

.mylist {
  min-height: 300px;
  margin-bottom: 30px;
  font-size: 20px; }
  .mylist .contestants-list {
    background-color: #fff; }
  .mylist .mylist-badge,
  .mylist .team-badge {
    margin-bottom: 8px; }
  .mylist p {
    margin-bottom: 16px;
    word-break: break-word; }

.mylist-badge {
  display: inline-block;
  height: 30px;
  margin-right: 8px;
  padding: 0 16px;
  color: #664935;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  background-color: #e8e8e8;
  border-radius: 50px; }
  @media (min-width: 768px) {
    .mylist-badge {
      font-size: 16px; } }

.mylist-btn {
  position: relative;
  float: right; }
  @media (min-width: 768px) {
    .mylist-btn {
      position: absolute;
      right: 10px;
      top: 10px; } }

.text-warning {
  color: #e67b22;
  background-color: #333333;
  padding: 2px 10px;
  border-radius: 10px; }

.contestants-nav {
  margin-bottom: 10px; }
  .contestants-nav__ul {
    margin-bottom: 0; }
    @media (max-width: 767px) {
      .contestants-nav__ul {
        display: none;
        padding: 4px 8px;
        border: 1px solid #fff8d5;
        background-color: #fff;
        border-bottom-right-radius: 6px;
        border-bottom-left-radius: 6px; } }
  .contestants-nav__item + .contestants-nav__item {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .contestants-nav {
      float: left;
      width: 220px;
      padding-right: 10px; }
      .contestants-nav__item + .contestants-nav__item {
        margin-top: 10px; } }
  @media (min-width: 992px) {
    .contestants-nav {
      width: 300px;
      padding-right: 30px; } }

.contestants-filter {
  padding: 4px 12px;
  color: #2e698e;
  background-color: #fff8d5;
  border-radius: 6px;
  cursor: pointer; }
  @media (min-width: 768px) {
    .contestants-filter {
      display: none; } }
  .contestants-filter.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .contestants-filter .caret {
    float: right;
    margin-top: 12px; }

.group-nav {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
  padding: 2px 8px 0;
  border-radius: 6px; }
  @media (min-width: 768px) {
    .group-nav {
      height: auto;
      padding: 8px;
      padding-left: 12px;
      background-color: #fff8d5; } }
  .group-nav__img {
    display: none;
    vertical-align: top; }
    @media (min-width: 768px) {
      .group-nav__img {
        display: table-cell; } }
    .group-nav__img img {
      width: 50px;
      height: 50px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      background: #fff;
      box-shadow: inset 0 0 0px 2px #ffb21b;
      padding: 2px; }
  .group-nav__text {
    display: inline-block;
    color: #0f76aa;
    font-size: 14px;
    line-height: 1.4;
    vertical-align: middle; }
    @media (min-width: 768px) {
      .group-nav__text {
        display: table-cell;
        padding-left: 10px;
        line-height: 1.2;
        font-size: 16px; } }
    @media (min-width: 992px) {
      .group-nav__text {
        line-height: 1.3; } }
  .group-nav__num {
    position: absolute;
    right: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    background-color: #d60101;
    border-radius: 50%; }
    @media (min-width: 768px) {
      .group-nav__num {
        left: 45px;
        right: auto;
        top: 2px;
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3); } }
  .group-nav.active {
    background-color: #d89f06;
    color: #654937; }
    .group-nav.active .group-nav__text {
      color: #ffffff;
      font-weight: 700; }
    .group-nav.active:hover, .group-nav.active:focus {
      color: #fff;
      background-color: #3477a1; }
    .group-nav.active:active {
      color: #fff;
      background-color: #255573; }
  .group-nav:hover, .group-nav:focus {
    color: #fff;
    background-color: #fffcef; }
  .group-nav:active {
    color: #fff;
    background-color: #fff2b1; }

.contestants-wrapper {
  padding: 6px;
  background-color: #fff;
  border-radius: 10px; }
  @media (min-width: 768px) {
    .contestants-wrapper {
      float: left;
      padding: 20px;
      width: calc(100% - 220px);
      min-height: 500px; } }
  @media (min-width: 992px) {
    .contestants-wrapper {
      width: calc(100% - 300px); } }

.contestants-num {
  margin-bottom: 20px;
  color: #664935; }
  .contestants-num span {
    font-size: 24px; }

.contestants-group img {
  position: absolute;
  left: 0;
  top: -1px;
  width: 30px;
  height: 30px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0px 2px #ffb21b;
  padding: 2px; }
  @media (min-width: 992px) {
    .contestants-group img {
      top: -10px;
      width: 50px;
      height: 50px; } }
.contestants-group div {
  display: inline-block;
  padding: 1px 16px 1px 34px;
  font-weight: 700;
  font-size: 14px;
  color: #664935;
  border-radius: 50px;
  background-color: #a6efe2;
  vertical-align: middle; }
  @media (min-width: 992px) {
    .contestants-group div {
      height: 30px;
      padding: 2px 16px 2px 60px;
      font-size: 16px; } }

.contestants-list {
  position: relative;
  padding: 16px;
  padding-top: 32px;
  border-radius: 10px;
  background-color: #f2f2f2;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
  .contestants-list + .contestants-list {
    margin-top: 50px; }
  @media (min-width: 768px) {
    .contestants-list {
      padding: 20px;
      padding-left: 34px; } }
  @media (min-width: 992px) {
    .contestants-list {
      padding: 20px;
      padding-top: 32px;
      padding-left: 68px; } }
  .contestants-list__group {
    position: absolute;
    left: 0;
    top: -15px; }
    @media (min-width: 768px) {
      .contestants-list__group {
        left: 10px; } }
  .contestants-list__title {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: #664935; }
    .contestants-list__title:hover, .contestants-list__title:focus {
      color: #7d5a41; }
    .contestants-list__title:active {
      color: #4f3829; }
    @media (min-width: 992px) {
      .contestants-list__title {
        font-size: 22px; } }
  .contestants-list__desc {
    margin-bottom: 12px; }
  .contestants-list__team {
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .contestants-list__team {
        margin-bottom: 16px; } }
    .contestants-list__team a {
      display: inline-block;
      margin-left: 16px;
      font-size: 14px;
      color: #0f76af; }
      .contestants-list__team a:hover, .contestants-list__team a:focus {
        color: #128cd0; }
      .contestants-list__team a:active {
        color: #0c608e; }
      @media (min-width: 768px) {
        .contestants-list__team a {
          font-size: 16px; } }
  .contestants-list__person {
    display: inline-block; }
  .contestants-list__avatar {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle; }
  .contestants-list__name {
    display: inline-block;
    color: #555;
    vertical-align: middle;
    overflow: hidden;
    max-width: 590px;
    line-height: 1.6rem;
    height: 1.7rem;
    text-overflow: ellipsis; }
  .contestants-list__date {
    margin-top: 8px;
    color: #9fa0a0;
    font-size: 14px; }
    @media (min-width: 768px) {
      .contestants-list__date {
        position: relative;
        right: 20px;
        bottom: 10px;
        float: right; } }

.contestants-empty {
  padding: 60px 10px 40px;
  text-align: center; }
  .contestants-empty span {
    display: block;
    margin-bottom: 20px;
    font-size: 20px; }
  .contestants-empty img {
    opacity: 0.6; }

@media (min-width: 768px) {
  .contestants-lists-nav {
    float: left;
    margin-bottom: 36px; } }
.contestants-lists-nav a {
  display: inline-block;
  padding: 4px 10px;
  color: #2e698e;
  border-radius: 5px;
  border: 2px solid #eeeeea;
  color: #000003; }
  .contestants-lists-nav a + .contestants-lists-nav a {
    margin-left: 10px; }
  .contestants-lists-nav a.active {
    color: #eeeeea;
    background-color: #000003; }
  .contestants-lists-nav a:hover, .contestants-lists-nav a:focus {
    color: #eeeeea;
    background-color: #000003; }
  .contestants-lists-nav a:active {
    color: #eeeeea;
    background-color: #deded6; }
.contestants-lists-nav--team + .team-signup-num {
  text-align: right; }
  @media (min-width: 768px) {
    .contestants-lists-nav--team + .team-signup-num {
      float: right; } }
.contestants-lists-nav + .contestants-num {
  text-align: right; }
  @media (min-width: 768px) {
    .contestants-lists-nav + .contestants-num {
      float: right; } }

.contestants-list .team-dashboard__box {
  margin-bottom: 20px;
  min-height: auto;
  background-color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2); }
.contestants-list .team-dashboard__day {
  font-size: 20px; }
  @media (min-width: 768px) {
    .contestants-list .team-dashboard__day {
      width: 96px; }
      .contestants-list .team-dashboard__day span {
        font-size: 22px; } }
  @media (min-width: 992px) {
    .contestants-list .team-dashboard__day {
      margin-top: 4px;
      width: 120px;
      font-size: 30px; }
      .contestants-list .team-dashboard__day span {
        display: inline-block;
        font-size: 24px; } }
.contestants-list .team-dashboard__progress {
  display: inline-block;
  width: 100%;
  vertical-align: bottom; }
  @media (min-width: 768px) {
    .contestants-list .team-dashboard__progress {
      width: calc(100% - 106px); } }
  @media (min-width: 992px) {
    .contestants-list .team-dashboard__progress {
      width: calc(100% - 160px); } }

.team-badge {
  position: relative;
  display: inline-block;
  height: 30px;
  padding-left: 16px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background-color: #000003;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 1; }
  @media (max-width: 767px) {
    .team-badge {
      margin-bottom: 8px;
      padding-left: 10px;
      height: auto;
      line-height: 1.6; } }
  .team-badge::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 15px;
    height: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #000003; }
    @media (max-width: 767px) {
      .team-badge::after {
        width: 10px;
        height: 100%; } }
  .team-badge__wanted {
    display: inline-block;
    padding-left: 20px;
    padding-right: 14px;
    height: 30px;
    line-height: 30px;
    color: #333333;
    font-size: 14px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #dddddd; }
    @media (max-width: 767px) {
      .team-badge__wanted {
        margin-bottom: 8px;
        padding-left: 12px;
        padding-right: 10px;
        height: auto;
        line-height: 1.6; } }
    .team-badge__wanted + a {
      margin-left: 6px; }

.team-link {
  color: #ff9a45; }
  .team-link:hover, .team-link:focus {
    color: #ffad69; }
  .team-link:active {
    color: #ff8721; }

.border-frame-tabs__link--self:hover,
.border-frame-tabs__link--self:focus {
  background-color: #facb50; }

.border-frame-tabs__link--self:hover::after,
.border-frame-tabs__link--self:focus::after {
  background-color: #facb50; }

.group-nav.active:hover,
.group-nav.active:focus {
  background-color: #ecad07; }

.group-nav--team.active {
  background-color: #4668cc;
  border-color: #3050af; }

.group-nav--team.active:hover,
.group-nav--team.active:focus {
  background-color: #3050af; }

.team-dashboard {
  margin: 0 -10px; }
  .team-dashboard__column {
    padding: 0 10px; }
    @media (min-width: 768px) {
      .team-dashboard__column {
        float: left;
        width: 50%; } }
    @media (min-width: 850px) {
      .team-dashboard__column {
        width: 25%; } }
  .team-dashboard__row {
    padding: 0 10px; }
  .team-dashboard__box {
    position: relative;
    margin-bottom: 10px;
    padding: 10px 20px;
    color: #898989;
    background-color: #EFEFEF;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1); }
    @media (min-width: 992px) {
      .team-dashboard__box {
        min-height: 100px; } }
    .team-dashboard__box i {
      position: absolute;
      right: 10px;
      top: 10px;
      color: #B4B4D6;
      font-size: 18px; }
    .team-dashboard__box--white {
      background-color: #fff; }
    .team-dashboard__box--member {
      padding-bottom: 0; }
  .team-dashboard__title {
    margin-bottom: 6px;
    color: #898989;
    font-size: 1.6rem;
    font-weight: 700; }
    @media (min-width: 850px) {
      .team-dashboard__title {
        margin-bottom: 0;
        font-size: 16px; } }
  .team-dashboard__num, .team-dashboard__date, .team-dashboard__text {
    line-height: 1; }
    @media (min-width: 850px) {
      .team-dashboard__num, .team-dashboard__date, .team-dashboard__text {
        position: absolute;
        bottom: 10px; } }
  .team-dashboard__num span {
    font-size: 30px;
    color: #2E2E75; }
    @media (min-width: 992px) {
      .team-dashboard__num span {
        font-size: 50px; } }
  .team-dashboard__date {
    color: #2E2E75;
    font-size: 20px; }
    .team-dashboard__date span {
      font-size: 30px; }
      @media (min-width: 992px) {
        .team-dashboard__date span {
          font-size: 40px; } }
  .team-dashboard__text {
    color: #2E2E75;
    font-size: 30px; }
    @media (min-width: 992px) {
      .team-dashboard__text {
        font-size: 40px; } }
    .team-dashboard__text--none, .team-dashboard__text--fail {
      color: #9FA0A0; }
    .team-dashboard__text--success {
      color: #F78100; }
    .team-dashboard__text--challenge {
      color: #2E2E75; }
  .team-dashboard__day {
    display: inline-block;
    margin-bottom: 40px;
    width: 120px;
    font-size: 30px;
    line-height: 1;
    vertical-align: bottom;
    color: #2E2E75; }
    @media (min-width: 768px) {
      .team-dashboard__day {
        margin-bottom: 0; } }
    @media (min-width: 992px) {
      .team-dashboard__day {
        margin-top: 20px;
        width: 150px;
        font-size: 40px; } }
  .team-dashboard__progress {
    display: inline-block;
    width: 100%;
    vertical-align: bottom; }
    @media (min-width: 768px) {
      .team-dashboard__progress {
        width: calc(100% - 130px); } }
    @media (min-width: 992px) {
      .team-dashboard__progress {
        width: calc(100% - 180px); } }
  .team-dashboard__member {
    margin-top: 10px; }
  .team-dashboard__leader {
    display: inline-block;
    position: relative;
    margin-right: 24px;
    vertical-align: bottom; }
    .team-dashboard__leader-badge {
      position: absolute;
      right: -18px;
      bottom: -8px;
      padding: 0 8px;
      color: #fff;
      font-size: 1.6rem;
      font-weight: 700;
      border-radius: 50px;
      background-color: #96a9e2; }
  .team-dashboard__team-member {
    display: inline-block;
    margin-right: 10px;
    vertical-align: bottom; }
  .team-dashboard__leader, .team-dashboard__team-member {
    position: relative;
    margin-bottom: 16px; }
    .team-dashboard__leader:hover .team-dashboard__account, .team-dashboard__team-member:hover .team-dashboard__account {
      display: block;
      position: absolute;
      left: 50%;
      top: 100%;
      width: auto;
      animation: badgefadein .2s linear forwards; }
  .team-dashboard__account {
    position: relative;
    display: none;
    padding: 4px 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    border-radius: 6px;
    background-color: #4A4A56;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 1; }
    .team-dashboard__account:hover, .team-dashboard__account:focus {
      color: white; }
    .team-dashboard__account:active {
      color: #ededed; }
    .team-dashboard__account::before {
      position: absolute;
      content: '';
      left: 50%;
      top: -14px;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-bottom-color: #4A4A56; }

@keyframes badgefadein {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20%); }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(20%); } }
.team-deco {
  position: relative; }
  .team-deco img {
    position: absolute;
    left: 0;
    bottom: 12px;
    max-width: 360px;
    width: 30%;
    height: auto;
    user-select: none; }

.team-detail-wrapper {
  max-width: 970px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 50px; }

.team-detail {
  position: relative;
  margin-bottom: 50px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
  .team-detail__badge {
    position: absolute;
    right: 10px;
    top: -16px;
    padding: 4px 8px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #5116a0;
    border-radius: 6px; }
    .team-detail__badge::after {
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      border-style: solid;
      border-width: 14px 40px 0 40px;
      border-color: #5116a0 transparent transparent transparent; }
    @media (min-width: 768px) {
      .team-detail__badge {
        right: 20px;
        top: -12px;
        width: 100px;
        padding: 8px 16px 0;
        font-size: 16px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0; }
        .team-detail__badge::after {
          content: '';
          border-width: 14px 50px 0 50px; } }
    .team-detail__badge--fail {
      color: #4668cc;
      background-color: #96a9e2; }
      .team-detail__badge--fail::after {
        border-color: #96a9e2 transparent transparent transparent; }
  .team-detail__img {
    position: absolute;
    left: 16px;
    top: -10px;
    width: 80px;
    height: 80px;
    border: 3px solid #2E2E75;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 0 0 4px #4668cc, 0 0 0 5px #4668cc, 0 6px 8px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden; }
    .team-detail__img img {
      display: block;
      width: 100%;
      vertical-align: middle; }
    @media (min-width: 768px) {
      .team-detail__img {
        left: 30px;
        top: -20px;
        width: 120px;
        height: 120px; } }
  .team-detail__img-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 6px 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.7); }
    @media (min-width: 768px) {
      .team-detail__img-btn {
        font-size: 1.6rem; } }
    .team-detail__img-btn:hover, .team-detail__img-btn:focus {
      color: #fff;
      background-color: rgba(0, 0, 0, 0.6); }
    .team-detail__img-btn:active {
      color: #fff;
      background-color: rgba(0, 0, 0, 0.8); }
  .team-detail__content {
    padding: 16px; }
    @media (min-width: 768px) {
      .team-detail__content {
        padding: 20px; } }
    @media (min-width: 992px) {
      .team-detail__content {
        padding: 20px 30px; } }
  .team-detail__title {
    margin: 0;
    padding: 14px 20px;
    padding-left: 110px;
    color: #fff;
    background-color: #4668cc;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
    @media (min-width: 768px) {
      .team-detail__title {
        padding: 14px 30px;
        padding-left: 170px;
        font-size: 30px; } }
    .team-detail__title a {
      font-size: 24px;
      display: block;
      color: #fff; }
      .team-detail__title a:hover, .team-detail__title a:focus {
        color: white; }
      .team-detail__title a:active {
        color: #ededed; }
  .team-detail__desc {
    margin-bottom: 16px;
    font-size: 16px;
    color: #333; }
    @media (min-width: 768px) {
      .team-detail__desc {
        padding-left: 150px;
        min-height: 20px; } }
    @media (min-width: 992px) {
      .team-detail__desc {
        padding-left: 142px; } }
  .team-detail__leader-btn {
    margin-top: 10px;
    text-align: right; }

.team-icon-box {
  display: table-cell;
  height: 74px;
  vertical-align: middle; }
  @media (min-width: 768px) {
    .team-icon-box {
      height: 114px; } }

.team-upload-rule {
  margin-top: 8px;
  font-size: 1.6rem;
  color: #777; }
  .team-upload-rule ul {
    padding-left: 20px; }

.team-upload-btn {
  width: 200px; }

.team-progress--prepare .team-dashboard__day {
  font-size: 24px;
  color: #939393; }
  @media (min-width: 992px) {
    .team-progress--prepare .team-dashboard__day {
      font-size: 30px; } }
.team-progress--prepare .progress-bar {
  background: #939393; }
.team-progress--prepare .progress-num + .tooltip > .tooltip-inner {
  background-color: #939393; }
.team-progress--prepare .progress-num + .tooltip > .tooltip-arrow {
  border-top-color: #939393; }
.team-progress--fail .team-dashboard__day {
  color: #939393; }
.team-progress--fail .progress-bar {
  background: #939393; }
.team-progress--fail .progress-num + .tooltip > .tooltip-inner {
  background-color: #939393; }
.team-progress--fail .progress-num + .tooltip > .tooltip-arrow {
  border-top-color: #939393; }
.team-progress--challenge .team-dashboard__day {
  color: #1098ad; }
.team-progress--challenge .progress-bar {
  background: #1098ad; }
.team-progress--challenge .progress-num + .tooltip > .tooltip-inner {
  background-color: #1098ad; }
.team-progress--challenge .progress-num + .tooltip > .tooltip-arrow {
  border-top-color: #1098ad; }
.team-progress--success .team-dashboard__day {
  color: #1098ad; }
.team-progress--success .progress-bar {
  background: #1098ad; }
.team-progress--success .progress-num + .tooltip > .tooltip-inner {
  background-color: #1098ad; }
.team-progress--success .progress-num + .tooltip > .tooltip-arrow {
  border-top-color: #1098ad; }

.team-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border: 3px solid #2E2E75;
  background-color: #f4f4f4;
  border-radius: 100%;
  box-shadow: 0 0 0 3px #4668cc, 0 0 0 4px #4668cc, inset 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden; }
  .team-avatar img {
    width: 100%;
    height: 100%; }
  .team-avatar--m {
    width: 56px;
    height: 56px; }

.team-leader-info {
  display: inline-block; }
  .team-leader-info__avatar {
    float: left;
    margin-top: 4px; }
  .team-leader-info__content {
    padding-top: 2px;
    padding-left: 16px;
    overflow: hidden; }
  .team-leader-info__badge {
    display: inline-block;
    margin-bottom: 0;
    padding: 0 8px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    background-color: #4668cc; }
    @media (min-width: 992px) {
      .team-leader-info__badge {
        margin-bottom: 8px; } }
  .team-leader-info__name {
    display: inline-block;
    font-size: 18px;
    overflow: hidden;
    max-height: 30px;
    color: #595757; }
    .team-leader-info__name:hover, .team-leader-info__name:focus {
      color: #4668cc; }
    .team-leader-info__name:active {
      color: #4668cc; }

.team-detail-lists {
  margin-bottom: 50px; }
  .team-detail-lists__title {
    display: inline-block;
    padding: 8px 20px 2px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #4668cc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
    @media (min-width: 992px) {
      .team-detail-lists__title {
        padding: 10px 30px 2px;
        font-size: 24px; } }

.team-detail-member {
  position: relative;
  padding: 14px;
  background-color: #fff;
  border-bottom: 1px solid #BFBFD6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); }
  @media (min-width: 768px) {
    .team-detail-member {
      padding: 14px 20px; } }
  .team-detail-member:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; }
  .team-detail-member .team-leader-info {
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .team-detail-member .team-leader-info {
        width: 220px;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin-bottom: 0; } }
  .team-detail-member .member {
    padding-top: 18px; }
  .team-detail-member__content {
    padding: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    background-color: #E7E7F2;
    overflow: hidden; }
    @media (min-width: 768px) {
      .team-detail-member__content {
        width: calc(100% - 240px);
        margin-left: 240px;
        padding: 10px 20px; } }
    .team-detail-member__content > a {
      font-size: 18px; }
    .team-detail-member__content .contestants-list__title {
      margin-bottom: 0;
      color: #595757; }
      .team-detail-member__content .contestants-list__title:hover, .team-detail-member__content .contestants-list__title:focus {
        color: #4668cc; }
      .team-detail-member__content .contestants-list__title:active {
        color: #4668cc; }
      @media (max-width: 767px) {
        .team-detail-member__content .contestants-list__title {
          font-size: 16px; } }
  .team-detail-member__btn {
    margin-top: 8px;
    text-align: right; }
    @media (min-width: 768px) {
      .team-detail-member__btn {
        position: absolute;
        right: 30px;
        top: 20px;
        bottom: auto;
        margin-top: 0; } }
    .team-detail-member__btn .btn-style--warning {
      font-size: 1.6rem;
      padding: 6px 10px; }

.team-article {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
  .team-article__empty {
    padding: 20px; }

.invitation {
  border: 1px solid #ddd; }
  .invitation--list {
    margin-top: 10px;
    margin-bottom: 20px;
    border: none; }
    .invitation--list .invitation-list {
      border-radius: 6px;
      background-color: #fff;
      margin-bottom: 8px;
      box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1); }
    .invitation--list .invitation-list__account {
      color: #333; }
      .invitation--list .invitation-list__account:hover, .invitation--list .invitation-list__account:focus {
        color: #454545; }
      .invitation--list .invitation-list__account:active {
        color: #212121; }
  .invitation-text {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px; }
  .invitation-count {
    color: #333; }
  .invitation-count--full {
    color: #000; }
  .invitation-list {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px; }
    @media (min-width: 768px) {
      .invitation-list {
        padding-top: 5px;
        padding-bottom: 5px; } }
    .invitation-list__avatar {
      position: absolute;
      left: 10px;
      top: 6px;
      display: inline-block;
      width: 50px;
      height: 50px; }
      .invitation-list__avatar-img {
        max-width: 100%;
        height: 100%; }
      .invitation-list__avatar:hover {
        opacity: .8;
        transition: .2s linear; }
    .invitation-list__content {
      padding-left: 76px; }
      @media (min-width: 768px) {
        .invitation-list__content {
          padding-right: 100px; } }
    .invitation-list__name {
      margin-bottom: 4px;
      font-size: 17px;
      line-height: 1.4;
      word-wrap: break-word;
      color: #4668cc; }
    .invitation-list__account {
      font-size: 1.6rem;
      color: #333; }
    .invitation-list__btn {
      padding: 8px 10px;
      font-size: 16px;
      letter-spacing: 0; }
      @media (min-width: 768px) {
        .invitation-list__btn {
          position: absolute;
          top: 10px;
          right: 16px; } }
    .invitation-list:focus, .invitation-list:hover {
      background-color: #f2e6ca; }

.team-gray {
  font-size: 1.6rem;
  color: #5e3b96; }
  .team-gray__link {
    color: #5e3b96; }
    .team-gray__link:hover, .team-gray__link:focus {
      color: #6e45b0; }
    .team-gray__link:active {
      color: #4e317c; }

.team-rules-title {
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6; }
  @media (max-width: 767px) {
    .team-rules-title {
      font-size: 20px; } }
.team-rules + .team-rules {
  margin-top: 30px; }
.team-rules__step {
  position: relative;
  bottom: -8px;
  left: 16px;
  display: inline-block;
  padding: 4px 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: #e67b22;
  border-radius: 8px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  z-index: 1; }
  @media (min-width: 768px) {
    .team-rules__step {
      left: 24px;
      font-size: 24px; } }
.team-rules__content {
  position: relative;
  padding: 24px 20px;
  font-size: 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
  .team-rules__content::after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -24px;
    width: 70px;
    border-style: solid;
    border-width: 24px 35px 0 35px;
    border-color: #ffffff transparent transparent transparent; }
  @media (min-width: 768px) {
    .team-rules__content {
      padding: 24px 30px;
      font-size: 18px; }
      .team-rules__content::after {
        left: 40px; } }
  .team-rules__content span {
    color: #C63E3E; }
  .team-rules__content strong {
    color: #C63E3E; }
.team-rules:last-child .team-rules__content {
  margin-bottom: 10px; }
  .team-rules:last-child .team-rules__content::after {
    content: none; }
.team-rules__link {
  font-size: 1.6rem;
  color: #eeeeea; }
  .team-rules__link:hover, .team-rules__link:focus {
    color: #fefefe; }
  .team-rules__link:active {
    color: #deded6; }
  @media (min-width: 768px) {
    .team-rules__link {
      font-size: 16px; } }

@media (max-width: 767px) {
  .contestants-nav--team .contestants-nav__ul {
    border-color: #4668cc; } }
.contestants-nav--team .contestants-filter {
  color: #4668cc;
  background-color: #4668cc; }

.team-signup-num {
  margin-bottom: 20px;
  color: #4668cc; }
  .team-signup-num span {
    font-size: 24px; }

.team-detail--list {
  margin-bottom: 0;
  background-color: #f2f2f2; }
  .team-detail--list + .team-detail--list {
    margin-top: 50px; }
  @media (min-width: 768px) {
    .team-detail--list .team-detail__img {
      left: 16px;
      top: -10px;
      width: 80px;
      height: 80px; } }
  @media (min-width: 992px) {
    .team-detail--list .team-detail__img {
      left: 30px;
      top: -20px;
      width: 120px;
      height: 120px; } }
  @media (min-width: 768px) {
    .team-detail--list .team-icon-box {
      height: 74px; } }
  @media (min-width: 992px) {
    .team-detail--list .team-icon-box {
      height: 114px; } }
  @media (min-width: 768px) {
    .team-detail--list .team-detail__title {
      padding-left: 110px;
      padding-right: 120px; } }
  @media (min-width: 992px) {
    .team-detail--list .team-detail__title {
      padding-left: 170px; } }
  @media (min-width: 768px) {
    .team-detail--list .team-detail__desc {
      padding-left: 90px;
      min-height: auto; } }
  @media (min-width: 992px) {
    .team-detail--list .team-detail__desc {
      padding-left: 142px;
      min-height: 20px; } }
  @media (min-width: 768px) {
    .team-detail--list .team-dashboard__column {
      width: 50%; } }
  @media (min-width: 1200px) {
    .team-detail--list .team-dashboard__column {
      width: 25%; } }
  .team-detail--list .team-dashboard__box {
    background-color: #fff; }
    @media (min-width: 992px) {
      .team-detail--list .team-dashboard__box {
        min-height: 90px; } }
  @media (min-width: 850px) {
    .team-detail--list .team-dashboard__num,
    .team-detail--list .team-dashboard__date,
    .team-detail--list .team-dashboard__text {
      position: static;
      bottom: 0; } }
  @media (min-width: 992px) {
    .team-detail--list .team-dashboard__num,
    .team-detail--list .team-dashboard__date,
    .team-detail--list .team-dashboard__text {
      position: absolute;
      bottom: 10px; } }
  .team-detail--list .team-dashboard__num span {
    font-size: 40px; }
  .team-detail--list .team-dashboard__text {
    font-size: 30px;
    line-height: 1.1; }
  @media (min-width: 768px) {
    .team-detail--list .team-dashboard__day {
      margin-top: 10px; } }
  .team-detail--list .team-dashboard__leader-badge {
    font-size: 12px; }

#main--ithelp .title {
  font-size: 32px;
  text-align: center;
  letter-spacing: 4px;
  color: #ffffff;
  margin: 1.8rem 0 3.2rem; }
  #main--ithelp .title:before {
    content: '';
    background: url("../../../../images/ironman/10th/deco-title.png") no-repeat;
    width: 68px;
    height: 81px;
    position: absolute;
    top: -90px;
    left: calc(50% - 34px); }
  #main--ithelp .title span {
    font-size: 28px;
    color: #389014;
    display: block;
    margin: 10px auto 20px auto;
    letter-spacing: 2px;
    font-weight: 200; }

.section--content .kv__bg {
  min-height: auto; }
.section--ten {
  background: #d86042 url("../../../../images/ironman/10th/bg-ten.png") no-repeat;
  background-size: cover;
  color: #ffffff; }
  .section--ten h1 {
    font-size: 6rem;
    text-align: center;
    letter-spacing: 3px;
    color: #ffffff; }
    .section--ten h1 span {
      color: #ffd82f;
      font-size: 10rem; }
  .section--ten h4 {
    color: #fff;
    text-align: center;
    font-size: 1.8rem; }
    .section--ten h4 span {
      color: #ffd82f;
      width: 200px;
      font-size: 4rem; }
    .section--ten h4 .num {
      display: block;
      margin: 10px auto; }
  .section--ten .ten_treebox {
    text-align: center;
    margin-bottom: 3%; }
.section--slogan {
  padding: 0; }
  .section--slogan .sloganbox {
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffd82f 0%, #b87f12 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffd82f 0%, #b87f12 100%);
    background-image: url("../../../../images/ironman/10th/bg-slogan.png"), linear-gradient(to bottom, #ffd82f 0%, #b87f12 100%);
    background-repeat: no-repeat, repeat;
    background-position: center, center;
    color: #333333;
    background-size: 93%;
    padding-top: 150px; }
    .section--slogan .sloganbox__text {
      margin: 100px 0 250px 0; }
    .section--slogan .sloganbox__title {
      font-size: 3.6rem;
      color: #bd0101; }
    .section--slogan .sloganbox__main {
      color: #bd0101; }
    .section--slogan .sloganbox__down {
      color: #bd0101; }
.section--type {
  color: #ffffff;
  background: #be0101;
  /* Old browsers */
  background: -moz-linear-gradient(top, #be0101 0%, #700000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #be0101 0%, #700000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #be0101 0%, #700000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-image: url("../../../../images/ironman/10th/bg-type.png"), linear-gradient(to bottom, #be0101 0%, #700000 100%);
  background-repeat: no-repeat, repeat;
  background-position: right bottom, center;
  background-size: 96%, 100%;
  min-height: 72vh; }
  .section--type .type--content__til {
    font-size: 3rem;
    color: #ffd82f; }
    .section--type .type--content__til:after {
      content: "";
      position: absolute;
      background: url("../../../../images/ironman/10th/deco-type-til.png") no-repeat;
      background-size: 100%;
      width: 145px;
      height: 16px;
      top: 60px;
      left: 0; }
  .section--type .type--content__ul {
    margin-top: 18%; }
    .section--type .type--content__ul li {
      list-style-type: disc; }
.section--speaker {
  background: #eeeeee;
  background-image: linear-gradient(to bottom, #eeeeee 0%, #aaaaaa 100%);
  background-repeat: repeat;
  background-position: center;
  background-size: 100%;
  overflow: hidden; }
  .section--speaker .title {
    color: #bd0101; }
    .section--speaker .title:before {
      content: '';
      background: url("../../../../images/ironman/10th/deco-title-red.png") no-repeat; }
  .section--speaker .speaker-card {
    background: #ffffff url("../../../../images/ironman/10th/deco-speaker.png") no-repeat left;
    background-size: 100%;
    padding: 0;
    border-bottom: 2px solid #aaaaaa;
    position: relative;
    margin-top: 3%;
    z-index: 9; }
    .section--speaker .speaker-card__bg {
      background-image: url(../../../../images/ironman/10th/bg-speaker.png);
      background-repeat: repeat-y;
      background-position: center left;
      background-size: 80%;
      width: 100%;
      height: 100%;
      padding: 12rem 1.5rem;
      margin: -12rem -1.5rem; }
      @media (max-width: 480px) {
        .section--speaker .speaker-card__bg {
          background-image: none; } }
    .section--speaker .speaker-card__man {
      margin-top: 3%; }
      .section--speaker .speaker-card__man img {
        position: relative;
        bottom: 0;
        left: 10%; }
      .section--speaker .speaker-card__man .ban {
        width: 200%;
        height: 100px;
        background: #bd0101;
        position: absolute;
        bottom: 0;
        left: 0;
        padding-left: 100%; }
        .section--speaker .speaker-card__man .ban:after {
          content: '';
          width: 0;
          height: 0;
          border-bottom: 100px solid #bd0101;
          border-right: 100px solid transparent;
          position: absolute;
          right: -100px;
          bottom: 0; }
        .section--speaker .speaker-card__man .ban__til {
          font-size: 2rem;
          color: #ffd82f;
          display: inline-block;
          margin-left: 5px; }
        .section--speaker .speaker-card__man .ban__name {
          font-size: 4rem;
          letter-spacing: 5px;
          color: #fff;
          display: inline-block; }
    .section--speaker .speaker-card__quote {
      font-size: 3rem;
      width: 50%;
      line-height: 1.5em;
      display: inline-block;
      float: right;
      top: 40px;
      right: 20px;
      position: relative; }
      .section--speaker .speaker-card__quote .q q::before {
        content: "”";
        width: 30px;
        height: 30px;
        position: absolute;
        font-size: 5rem;
        left: -20px; }
      .section--speaker .speaker-card__quote .q q::after {
        content: "”";
        width: 30px;
        height: 30px;
        position: absolute;
        font-size: 55px;
        transform: rotateX(180deg);
        right: -20px; }
    .section--speaker .speaker-card__video {
      bottom: 0;
      position: absolute;
      bottom: 10px;
      right: 10px;
      text-align: center;
      width: 150px;
      cursor: pointer;
      -webkit-transition: width 2s;
      /* Safari */
      transition: width 2s; }
      .section--speaker .speaker-card__video:hover {
        font-size: 8rem;
        cursor: pointer; }
        @media (max-width: 768px) {
          .section--speaker .speaker-card__video:hover {
            font-size: 7rem;
            transition-property: none; } }
      .section--speaker .speaker-card__video i {
        font-size: 7rem;
        padding: 2% 10%;
        background: #eee;
        margin: 0 0 3%;
        border-radius: 10px; }
        .section--speaker .speaker-card__video i:hover {
          background: #f4f4f4; }
.section--theme {
  color: #ffffff;
  background-image: url("../../../../images/ironman/10th/bg-theme.png");
  background-repeat: no-repeat;
  background-size: cover; }
  .section--theme .theme__table {
    background: #fff9db;
    border: 10px solid #ab9020;
    padding: 0; }
    .section--theme .theme__table h4 {
      border-bottom: 1px solid #ab9020;
      padding: 0 10px 20px;
      text-align: center; }
    .section--theme .theme__table ul {
      margin-top: 10px; }
      .section--theme .theme__table ul li {
        list-style: disc;
        margin-left: 15%;
        color: #333; }
    .section--theme .theme__table .table-cell-left {
      background: #fff9db;
      padding: 1% 0%; }
    .section--theme .theme__table .table-cell-right {
      background: #f2edc6;
      padding: 1% 0%; }
  .section--theme .sponsor {
    background: #bd0101;
    border-radius: 20px;
    padding: 3px 5px;
    color: #fff; }
.section--award {
  color: #ffffff;
  background-image: url("../../../../images/ironman/10th/bg-award.png");
  background-repeat: repeat-y;
  background-size: cover; }
  .section--award .ribbon {
    background: url("../../../../images/ironman/10th/event/ribbon.png") no-repeat;
    width: 464px;
    height: 103px;
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 4px;
    vertical-align: middle;
    line-height: 3em;
    margin: 3% auto; }
    @media (max-width: 480px) {
      .section--award .ribbon {
        line-height: 2.5em;
        font-size: 2.4rem; } }
  .section--award .award--content__item {
    background: #e4e4e4;
    border-bottom: 3px solid #bd0101;
    width: 19%;
    margin: 0.5%;
    text-align: center;
    color: #333;
    min-height: 258px;
    min-height: 260px; }
    .section--award .award--content__item:nth-of-type(7) {
      border-bottom: 3px solid #ab9020; }
    .section--award .award--content__item:nth-of-type(8) {
      border-bottom: 3px solid #ab9020; }
    .section--award .award--content__item:nth-of-type(9) {
      border-bottom: 3px solid #ab9020; }
  .section--award .more {
    margin: 1% 0;
    color: #ffffff; }
    .section--award .more:hover, .section--award .moreactive {
      color: #fe2626; }
  .section--award .addaward--content {
    background: rgba(154, 0, 0, 0.6);
    background-size: cover;
    text-align: center;
    padding: 0 0 2% 0;
    margin: 2% 0; }
    .section--award .addaward--content .gift-title {
      color: #ffd82f;
      font-size: 2rem;
      margin-top: 2%; }
    .section--award .addaward--content .gift-name {
      color: #ffffff; }
    .section--award .addaward--content .gift-price {
      color: #ffffff;
      font-size: 15px; }
    .section--award .addaward--content .gift-price-bg {
      background: #ffd82f;
      display: inline-block;
      border-radius: 10px;
      padding: 1px 10px;
      color: #bd0101; }
    .section--award .addaward--content .gift-note {
      color: #ffd82f;
      background: #333333;
      padding: 1px 5px;
      display: inline-block; }
      .section--award .addaward--content .gift-note span {
        background: #bd0101;
        padding: 1px 5px;
        color: #ffffff;
        border-radius: 10px; }
    .section--award .addaward--content .gift-img {
      width: 80%;
      margin: 1% auto; }
  .section--award .addaward-title {
    background-image: url(../../../../images/ironman/10th/addaward-title.png);
    background-size: 100%;
    background-repeat: no-repeat;
    font-size: 2.6rem;
    color: #ffffff;
    width: 250px;
    height: auto;
    text-align: center;
    line-height: 100px;
    margin: 1% auto; }
  .section--award .addaward-subtitle {
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    margin: 0 0 2%;
    padding: 10px 0 10px;
    background: #bd2100;
    vertical-align: middle;
    line-height: 36px; }
.section--share {
  color: #ffffff;
  background-image: url("../../../../images/ironman/10th/bg-share.png");
  background-size: cover; }
  .section--share .share--content_date {
    color: #fff;
    font-size: 2.5rem;
    margin-left: 10%;
    text-align: center; }
    .section--share .share--content_date span {
      color: #ffd82f; }
  .section--share .btn-share {
    background: #fff;
    color: #bd0101;
    padding: 2rem;
    width: 60%;
    margin: 3rem auto 0;
    font-size: 2.5rem;
    letter-spacing: 3px;
    font-weight: 700; }
.section--group {
  color: #ffffff;
  background-image: url("../../../../images/ironman/10th/bg-group.png"), linear-gradient(to bottom, #ffdf50 0%, #ffd30f 50%, #a58018 100%);
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  background-size: 74%, cover; }
  .section--group .title {
    color: #bd0101; }
    .section--group .title:before {
      content: '';
      background: url(../../../../images/ironman/10th/deco-title-red.png) no-repeat; }
  .section--group .group__table {
    background: #fff9db;
    border: 10px solid #ab9020;
    padding: 0;
    margin-top: 5%; }
    .section--group .group__table h3 {
      border-bottom: 1px solid #ab9020;
      padding: 10px;
      text-align: center; }
    .section--group .group__table ul {
      margin-top: 10px; }
      .section--group .group__table ul li {
        list-style: disc;
        margin-left: 15%;
        color: #333; }
    .section--group .group__table .table-cell-leftbox {
      background: #fff9db;
      padding: 2% 0%; }
    .section--group .group__table .table-cell-rightbox {
      background: #f2edc6;
      padding: 2% 0%; }
.section--org {
  padding-bottom: 8rem; }
  .section--org .title {
    color: #bd0101;
    margin: 1rem 0 .6rem; }
    .section--org .title:before {
      background: url("../../../../images/ironman/10th/deco-title-red.png") no-repeat; }
  .section--org .org__logobox img {
    max-width: 300px;
    margin: auto; }
  .section--org .org__logobox-left {
    right: 1%; }
    @media (max-width: 768px) {
      .section--org .org__logobox-left {
        right: 0; } }
  .section--org .org .title-layer {
    background: #e2edf9;
    color: #5f5f5f;
    font-size: 1.8rem;
    padding: 4px 3px;
    text-align: center;
    border-radius: 10px; }
  .section--org .org h3 {
    color: #333333; }

body {
  background-image: url(../../../../images/ironman/11th/signup/footerbg.png), linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0)), url(../../../../images/ironman/11th/signup/background.jpg);
  background-position: center bottom, center, center top;
  background-size: 100%;
  background-color: #1a2948; }

.signup-title {
  position: relative;
  margin-top: 4%;
  min-height: 140px; }
  .signup-title--team {
    min-height: auto; }
  .signup-title__bearman {
    width: 30%;
    float: left; }
    .signup-title__bearman img {
      max-width: 100%;
      padding-left: 10px;
      user-select: none; }
  .signup-title__content {
    float: left;
    position: relative;
    width: 70%;
    left: 0;
    top: 0;
    margin-top: 3%; }
    .signup-title__content h2 {
      margin-top: 0;
      color: #ffffff;
      font-size: 4.8rem;
      letter-spacing: 1px;
      font-weight: 400;
      margin-bottom: 20px;
      text-shadow: 0 1px 5px #000;
      text-shadow: none; }
      @media (max-width: 1024px) {
        .signup-title__content h2 {
          font-size: 4rem; } }
      .signup-title__content h2.theme {
        color: #ffffff;
        text-shadow: 0 1px 5px #000; }
        @media (max-width: 1024px) {
          .signup-title__content h2.theme {
            font-size: 2.6rem; } }
    .signup-title__content p {
      margin-bottom: 6px;
      font-size: 2rem;
      font-weight: bold;
      color: #000; }
      .signup-title__content p.theme {
        color: #ffffff;
        background: transparent;
        padding: 1px 9px;
        border-radius: 5px;
        display: inline-block;
        text-shadow: 0 1px 5px #000; }
      @media (max-width: 768px) {
        .signup-title__content p {
          font-size: 1.8rem; } }
      @media (max-width: 768px) {
        .signup-title__content p {
          font-size: 1.5rem;
          padding: 2px 6px; } }
    .signup-title__content span {
      color: #333333;
      opacity: .8;
      font-size: 1.6rem;
      background: #ffffff;
      padding: 2px 9px;
      border-radius: 5px; }

.signup-frame {
  position: relative;
  width: calc(100% - 28px);
  min-height: 500px;
  margin: 0 auto 5%;
  padding: 10px;
  border-radius: 10px;
  color: #333333;
  margin-top: 28px;
  background-color: #555555;
  box-shadow: 0 0 0 4px #353535, 0 0 0 8px #ffa255, 0 0 0 14px #a14900, 0 0 0 30px #6e3200; }
  .signup-frame:before {
    content: '';
    position: absolute;
    left: calc(50% - 0); }
  @media (min-width: 1024px) {
    .signup-frame {
      position: relative;
      width: calc(100% - 100px);
      margin-top: -1%;
      padding-top: 100px;
      padding-bottom: 40px; } }
  .signup-frame.self {
    background-color: #544f3b; }
  .signup-frame.group {
    background-color: #445075; }
  .signup-frame--spacing {
    margin-top: 40px; }
    @media (min-width: 768px) {
      .signup-frame--spacing {
        margin-top: 80px; } }
  .signup-frame__line {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px; }
    @media (min-width: 1024px) {
      .signup-frame__line {
        padding-top: 100px;
        border: none; } }
  .signup-frame__deco {
    position: relative;
    text-align: center; }
    @media (min-width: 1024px) {
      .signup-frame__deco {
        position: absolute;
        top: -75px;
        left: 0;
        width: 100%; } }
    .signup-frame__deco img {
      max-width: 100%;
      user-select: none;
      opacity: .65; }
      @media (min-width: 768px) {
        .signup-frame__deco img {
          max-width: 60%; } }
      @media (min-width: 1024px) {
        .signup-frame__deco img {
          max-width: 100%; } }
    .signup-frame__deco span {
      position: absolute;
      left: 0;
      top: 50%;
      width: 100%;
      color: #ffffff;
      font-weight: 400;
      font-size: 3rem;
      letter-spacing: 3px;
      text-shadow: 0 3px 0px #00071d, 0 3px 6px #6f6751;
      transform: translateY(-50%);
      color: #ffffff; }
      @media (min-width: 768px) {
        .signup-frame__deco span {
          font-size: 4rem;
          letter-spacing: 3px;
          color: #ffffff;
          margin-top: 2%; } }
  .signup-frame .signup-form {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px; }
    .signup-frame .signup-form__desc {
      margin-bottom: 20px;
      color: #fff7c4;
      font-size: 1.6rem;
      font-weight: 600; }
      @media (min-width: 768px) {
        .signup-frame .signup-form__desc {
          margin-bottom: 30px;
          font-size: 20px; } }
      @media (min-width: 1024px) {
        .signup-frame .signup-form__desc {
          text-align: center; } }
    .signup-frame .signup-form__label {
      font-size: 18px;
      font-weight: 300;
      color: #fff7c4; }
      .signup-frame .signup-form__label span {
        padding-left: 8px;
        font-size: 1.6rem;
        color: #706f6d;
        font-weight: 300; }
      @media (min-width: 768px) {
        .signup-frame .signup-form__label {
          font-size: 20px; } }
    .signup-frame .signup-form input[type="file"] {
      color: #333333;
      background-color: #ffffff;
      width: 100%;
      padding: 6px 10px;
      border-radius: 10px;
      vertical-align: baseline;
      line-height: 1; }
    .signup-frame .signup-form .form-control {
      border-color: #353535; }
      .signup-frame .signup-form .form-control:focus {
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(53, 53, 53, 0.6); }
    .signup-frame .signup-form .has-error .form-control {
      border-color: #ff312d;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    .signup-frame .signup-form .has-error .help-block {
      color: #ff312d; }
    .signup-frame .signup-form textarea {
      resize: vertical; }
    .signup-frame .signup-form .form-group {
      margin-bottom: 24px; }
    @media (max-width: 767px) {
      .signup-frame .signup-form .help-block {
        font-size: 1.6rem; } }
    .signup-frame .signup-form .help-block a {
      color: #fff7c4;
      text-decoration: underline; }
      .signup-frame .signup-form .help-block a:hover, .signup-frame .signup-form .help-block a:focus {
        color: #fffce8; }
      .signup-frame .signup-form .help-block a:active {
        color: #fff2a0; }
    .signup-frame .signup-form span.help-block {
      display: inline-block; }
    .signup-frame .signup-form .input-lg {
      font-size: 16px; }
    .signup-frame .signup-form__group {
      font-size: 0; }
      @media (min-width: 768px) {
        .signup-frame .signup-form__group {
          margin-bottom: 10px; } }
    .signup-frame .signup-form__group-radio {
      margin-bottom: 6px; }
      @media (min-width: 768px) {
        .signup-frame .signup-form__group-radio {
          display: inline-block;
          width: calc((100% - 20px) / 3);
          margin-bottom: 0;
          font-size: 0; }
          .signup-frame .signup-form__group-radio + .signup-frame .signup-form__group-radio {
            margin-left: 10px; } }
    .signup-frame .signup-form__btn {
      margin-top: 30px;
      text-align: right; }
    .signup-frame .signup-form__cancel {
      margin-top: 30px;
      margin-right: 10px; }
  .signup-frame .group-radio {
    display: table;
    width: 100%;
    padding: 8px;
    border: 1px solid #C6C1B9;
    background-color: #fff8d5;
    border-radius: 6px;
    cursor: pointer; }
    .signup-frame .group-radio__img {
      display: inline-block;
      width: 50px;
      vertical-align: middle; }
    .signup-frame .group-radio__text {
      display: inline-block;
      width: calc(100% - 50px);
      padding-left: 8px;
      color: #4f412b;
      font-size: 16px;
      line-height: 1.4;
      vertical-align: middle; }
      @media (min-width: 768px) {
        .signup-frame .group-radio__text {
          line-height: 1.6; } }
    .signup-frame .group-radio.active {
      background-color: #4668cc;
      border: 1px solid #D8D4CE; }
      .signup-frame .group-radio.active .group-radio__text {
        color: #fff;
        font-weight: 700; }
  .signup-frame .signup-entrance {
    margin-top: 30px;
    background-color: #ffffff; }
    @media (max-width: 767px) {
      .signup-frame .signup-entrance .party {
        margin-top: 20px; } }
    @media (min-width: 992px) {
      .signup-frame .signup-entrance img {
        width: 70%; } }
    @media (min-width: 1800px) {
      .signup-frame .signup-entrance img {
        width: auto; } }
    .signup-frame .signup-entrance__btn .signup-btn {
      color: #fff;
      transition: all .3s ease;
      font-size: 2.6rem;
      padding: 10px;
      max-width: 100px;
      display: block;
      box-shadow: inset 1px -6px 0 0 rgba(0, 0, 0, 0.2), inset 0 3px 0 0 rgba(255, 255, 255, 0.2);
      background-color: #ab7c55; }
      @media (min-width: 1200px) {
        .signup-frame .signup-entrance__btn .signup-btn {
          margin-bottom: 16px;
          font-size: 20px;
          font-weight: 500; } }
    .signup-frame .signup-entrance .rules-text {
      display: inline-block;
      margin-bottom: 10px;
      color: #fff;
      text-decoration: underline; }
      .signup-frame .signup-entrance .rules-text:hover, .signup-frame .signup-entrance .rules-text:focus {
        color: white; }
      .signup-frame .signup-entrance .rules-text:active {
        color: #ededed; }
    .signup-frame .signup-entrance__text {
      color: #fff; }
      .signup-frame .signup-entrance__text span {
        color: #a6efe2;
        font-size: 150%;
        font-weight: 700; }

.wrapper {
  margin-bottom: 2%; }

.help-block {
  color: #ffffff; }

.signup-frame .signup-form__label span {
  color: #eeeeee;
  font-size: 1.6rem;
  font-weight: 400; }

.masking {
  background: #132140;
  padding-top: 2%;
  width: 32%;
  min-height: 410px;
  margin-left: 0.5%;
  border-radius: 10px;
  transition: all .3s ease;
  color: #ffffff;
  box-shadow: 0 0 3px #ffffff; }

.masking.active {
  box-shadow: 0 0 8px #ffffff; }

.topic-til {
  font-size: 40px;
  letter-spacing: 1px;
  color: #ffffff;
  border-bottom: 1px solid #888888;
  padding-bottom: 10px; }

.signup-desc {
  color: #ffffff; }

.topic-subtil {
  color: #ffffff; }

.topic-p {
  max-height: 112px;
  overflow: hidden; }

.signup-entrance__btn .signup-btn {
  color: #132140;
  background-color: #ffb06e;
  border-radius: 10px;
  line-height: 40px;
  padding: 10px 20px;
  z-index: 0;
  margin: 10px auto;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  max-width: 100px;
  display: block; }
  .signup-entrance__btn .signup-btn:hover, .signup-entrance__btn .signup-btn:focus, .signup-entrance__btn .signup-btn:active {
    background-color: #ffa255;
    border: none;
    color: #132140; }
@media (min-width: 1200px) and (max-width: 1365px) {
  .signup-entrance__btn .signup-btn {
    padding: 8px 16px; } }

  .signup-entrance__btn .signup-btn:before {
    content: '';
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    top: -200%;
    left: -225%;
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out; }
  .signup-entrance__btn .signup-btn:hover:before {
    top: 200%;
    left: 200%; }

.tips {
  font-size: 1.5rem;
  color: #ffb06e;
  font-weight: 500; }

.signup-entrance__btn {
  position: absolute;
  bottom: 0;
  left: 0; }

.a970 {
  position: relative;
  min-height: 100px;
  z-index: 9;
  margin: 1% 15px 1.5%; }

.start-cover {
  background-image: url(../../../../images/ironman/11th/signup/background2.png);
  background-position: center bottom;
  background-size: cover;
  background-color: #192947;
  padding: 0;
  position: relative;
  width: 100%;
  height: 52vh;
  background-repeat: no-repeat;
  margin-bottom: 4%;
  z-index: 100; }
  .start-cover .top-board {
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    float: left;
    width: 1400px;
    border-radius: 10px;
    margin-top: 2%;
    margin-left: calc(50% - 700px);
    padding: 15px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.2); }
    @media (max-width: 1420px) {
      .start-cover .top-board {
        width: 94%;
        margin-top: 1%;
        margin-left: 3%;
        margin-bottom: 3%; } }
    @media (max-width: 991px) {
      .start-cover .top-board {
        width: 94%;
        margin-top: 4%;
        margin-left: 3%;
        background-color: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(0, 0, 0, 0.4); } }
    .start-cover .top-board--top {
      padding: 10px; }
      .start-cover .top-board--top a {
        display: inline-block;
        cursor: pointer; }
        .start-cover .top-board--top a .icon-awardlist {
          max-height: 150px; }
    .start-cover .top-board--down {
      position: relative;
      float: left;
      width: 100%;
      margin-bottom: 15px;
      border-top: 2px solid rgba(255, 255, 255, 0.2);
      padding-top: 10px; }
      @media (max-width: 991px) {
        .start-cover .top-board--down {
          margin-bottom: 2px; } }
    .start-cover .top-board--out {
      position: relative;
      float: left;
      width: 100%; }
      @media (max-width: 991px) {
        .start-cover .top-board--out {
          top: 2%; } }
      .start-cover .top-board--out__img {
        width: 42%;
        margin: 4% auto 2%; }
        @media (max-width: 1024px) {
          .start-cover .top-board--out__img {
            margin-top: 50px; } }
        @media (max-width: 991px) {
          .start-cover .top-board--out__img {
            margin-top: 25px;
            width: 60%; } }
      .start-cover .top-board--out__scroll-text {
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #ffffff;
        text-shadow: 0px 0px 9px #333;
        transition: all .3s ease;
        transition-delay: .8s;
        transform: translateZ(0); }
    .start-cover .top-board__title {
      font-size: 3.8rem;
      font-weight: 500;
      text-shadow: 2px 2px 2px #000000;
      text-align: center;
      width: 100%;
      color: #ffffff; }
      @media (max-width: 768px) {
        .start-cover .top-board__title {
          font-size: 3rem; } }
      @media (max-width: 667px) {
        .start-cover .top-board__title {
          font-size: 2.5rem; } }
    .start-cover .top-board__announce {
      background-color: rgba(0, 0, 0, 0.2);
      position: relative;
      float: left;
      padding: 2px 8px 2px 10px;
      width: 100%;
      margin-top: 5px;
      overflow: hidden;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      color: #ffffff; }
      .start-cover .top-board__announce-text {
        color: #ffffff;
        padding: 1px 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        float: left;
        line-height: 30px;
        display: block; }
        .start-cover .top-board__announce-text i {
          display: block; }
        .start-cover .top-board__announce-text a:hover, .start-cover .top-board__announce-text a:active, .start-cover .top-board__announce-text a:visited {
          color: #ffb678; }
      .start-cover .top-board__announce-tag {
        background-color: #6586ec;
        color: #ffffff;
        display: block;
        float: left;
        border-radius: 10px;
        padding: 0px 8px;
        margin: 4px 8px 4px 5px; }
  .start-cover p {
    font-size: 18px;
    text-shadow: none;
    text-align: center;
    white-space: unset;
    word-break: unset;
    margin: 0; }
  .start-cover .count-list {
    position: relative;
    width: 80%;
    height: 40px;
    margin-left: 13%;
    margin-bottom: 20px;
    color: #fff;
    font-size: 40px;
    transform: translateX(50%);
    opacity: 0;
    animation: fadeInRight .3s 1.5s ease-out forwards; }
    .start-cover .count-list:nth-child(2) {
      animation-delay: 1.6s; }
    .start-cover .count-list:nth-child(3) {
      animation-delay: 1.7s; }
    .start-cover .count-list:nth-child(4) {
      animation-delay: 1.8s; }
    .start-cover .count-list:nth-child(5) {
      animation-delay: 1.9s; }
    @media (min-width: 992px) {
      .start-cover .count-list {
        width: 80%;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 4px; } }
    @media (min-width: 1400px) {
      .start-cover .count-list {
        width: 70%;
        height: 80px;
        margin-left: 20px;
        margin-bottom: 20px; } }
    .start-cover .count-list__bg {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 30px;
      background-color: rgba(53, 74, 109, 0.5);
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
      .start-cover .count-list__bg::before, .start-cover .count-list__bg::after {
        content: '';
        position: absolute;
        box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
      .start-cover .count-list__bg::before {
        right: 100%;
        bottom: 0;
        border: 15px solid transparent;
        border-right-color: rgba(53, 74, 109, 0.5);
        border-bottom-color: rgba(53, 74, 109, 0.5); }
      .start-cover .count-list__bg::after {
        right: -10px;
        bottom: 0;
        width: 5px;
        height: 100%;
        background-color: rgba(53, 74, 109, 0.5); }
      @media (min-width: 992px) {
        .start-cover .count-list__bg {
          height: 50px; }
          .start-cover .count-list__bg::before {
            border-width: 25px; }
          .start-cover .count-list__bg::after {
            right: -20px;
            width: 10px; } }
    .start-cover .count-list__title {
      position: absolute;
      top: 12px;
      left: 7px;
      color: #fff;
      font-size: 16px;
      text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
      @media (min-width: 375px) {
        .start-cover .count-list__title {
          width: 36%;
          text-align: right; } }
      @media (min-width: 992px) {
        .start-cover .count-list__title {
          top: auto;
          bottom: 8px;
          left: 0;
          width: 30%;
          text-align: right;
          font-size: 20px; } }
    .start-cover .count-list__text {
      position: relative;
      padding-right: 20px;
      font-size: 14px;
      font-weight: 700;
      text-align: left;
      display: inline-block;
      text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
      margin: 1% 0; }
      .start-cover .count-list__text:nth-of-type(2), .start-cover .count-list__text:nth-of-type(3), .start-cover .count-list__text:nth-of-type(4) {
        margin-left: 10%; }
        @media (max-width: 1366px) {
          .start-cover .count-list__text:nth-of-type(2), .start-cover .count-list__text:nth-of-type(3), .start-cover .count-list__text:nth-of-type(4) {
            margin-left: 8%; } }
        @media (max-width: 1200px) {
          .start-cover .count-list__text:nth-of-type(2), .start-cover .count-list__text:nth-of-type(3), .start-cover .count-list__text:nth-of-type(4) {
            margin-left: 5%; } }
        @media (max-width: 991px) {
          .start-cover .count-list__text:nth-of-type(2), .start-cover .count-list__text:nth-of-type(3), .start-cover .count-list__text:nth-of-type(4) {
            margin-left: 0.8%; } }
      @media (min-width: 992px) {
        .start-cover .count-list__text {
          padding-right: 0px;
          font-size: 16px; } }
      @media (max-width: 768px) {
        .start-cover .count-list__text {
          text-align: center;
          width: 99%; } }
      .start-cover .count-list__text a {
        color: #ffffff; }
        .start-cover .count-list__text a:hover {
          color: #dddddd; }
    .start-cover .count-list__num {
      padding: 0 5px;
      font-size: 40px;
      font-weight: 700;
      line-height: 36px;
      font-family: 'Roboto', 'Play', 'Charcoal', 'Verdana', sans-serif;
      position: relative;
      display: inline-block;
      text-align: right; }
      @media (min-width: 992px) {
        .start-cover .count-list__num {
          padding: 0 10px;
          font-size: 48px; } }
      .start-cover .count-list__num-last {
        text-align: right; }
      .start-cover .count-list__num-gray {
        font-size: 36px;
        color: #eeeeee; }
    .start-cover .count-list__time {
      position: relative;
      padding-right: 20px;
      color: #eeeeee;
      line-height: 40px;
      padding: 0px 6px;
      display: inline-block;
      float: right;
      letter-spacing: 2px;
      font-weight: 600;
      background-color: #bd0101;
      box-shadow: 4px 4px 0px #6f1f03;
      border-radius: 10px;
      font-size: 20px; }
      @media (max-width: 992px) {
        .start-cover .count-list__time {
          bottom: -5px;
          font-size: 18px; } }
      @media (max-width: 992px) {
        .start-cover .count-list__time {
          float: none;
          text-align: center;
          display: block; } }
      .start-cover .count-list__time-date {
        padding-right: 40px;
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        font-family: 'Charcoal', 'Verdana', sans-serif; }
        @media (min-width: 992px) {
          .start-cover .count-list__time-date {
            font-size: 48px; } }
      .start-cover .count-list__time-clock {
        font-size: 16px;
        line-height: 1;
        font-family: 'Charcoal', 'Verdana', sans-serif; }
        @media (min-width: 992px) {
          .start-cover .count-list__time-clock {
            font-size: 20px; } }

/* Bear fly */
.start-cover .kv__bear {
  position: absolute;
  top: 35%;
  width: 100%;
  z-index: 1; }

@keyframes bearGo {
  0% {
    transform: translate3d(0px, 0px, 0px); }
  10% {
    transform: translate3d(0px, 25px, 0px); }
  20% {
    transform: translate3d(0px, 0px, 0px); }
  30% {
    transform: translate3d(0px, 25px, 0px); }
  40% {
    transform: translate3d(0px, 0px, 0px); }
  50% {
    transform: translate3d(0px, 25px, 0px); }
  60% {
    transform: translate3d(0px, 0px, 0px); }
  70% {
    transform: translate3d(-2000px, -300px, 0px); }
  80% {
    transform: translate3d(0px, -300px, 0px); }
  100% {
    transform: translate3d(0px, 0px, 0px); } }
.start-cover .kv__bear img {
  width: 6%;
  right: 17%;
  position: absolute;
  display: block;
  animation: bearGo 10s ease-in-out infinite; }

.icon-awardlist {
  position: relative; }

@media (max-width: 1200px) {
  .start-cover .kv__bear {
    position: absolute;
    top: 30%;
    right: -5%; } }
@media (max-width: 667px) {
  .start-cover .kv__bear {
    position: absolute;
    top: 20%;
    right: 0;
    width: 100%; }

  .start-cover .kv__bear img {
    width: 15%;
    right: 3%;
    position: absolute;
    animation-play-state: paused; } }
.section--content__titlebox {
  margin-top: 30px; }
  @media (max-width: 768px) {
    .section--content__titlebox {
      margin-top: 60px; } }
.section--content .title {
  margin: .5% 4% 6%;
  font-size: 4rem; }
  @media (max-width: 480px) {
    .section--content .title {
      font-size: 3.2rem; } }
  .section--content .title:before {
    content: '';
    background: url(../../../../images/ironman/10th/deco-title-red.png) no-repeat;
    width: 68px;
    height: 81px;
    position: absolute;
    top: -90px;
    left: calc(50% - 34px); }

.announcement {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px; }
  @media (min-width: 768px) {
    .announcement {
      margin-top: 0;
      margin-left: 20px; } }
  @media (min-width: 992px) {
    .announcement {
      margin-left: 0;
      margin-top: 30px;
      width: 96%; } }
  @media (min-width: 1400px) {
    .announcement {
      margin-left: -26px;
      margin-right: 0;
      width: 80%; } }
  .announcement__title {
    display: inline-block;
    margin-right: 4px;
    padding: 4px 4px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    background-color: #E58817;
    text-align: center;
    vertical-align: middle; }
    @media (min-width: 992px) {
      .announcement__title {
        width: 90px;
        padding: 4px 10px;
        font-size: 16px; } }
  .announcement__content {
    display: inline-block;
    width: calc(100% - 100px);
    font-size: 14px;
    color: #E58817;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
    .announcement__content:hover, .announcement__content:focus {
      color: #eb9935; }
    .announcement__content:active {
      color: #c57514; }
    @media (min-width: 992px) {
      .announcement__content {
        font-size: 16px; } }

.count-group {
  overflow: hidden; }
  @media (min-width: 768px) {
    .count-group {
      margin-top: 40px;
      overflow: visible; } }
  @media (min-width: 992px) {
    .count-group {
      margin-top: 60px; } }

@keyframes fadeInRight {
  100% {
    transform: translateX(0);
    opacity: 1; } }
.count-list {
  position: relative;
  width: 80%;
  height: 40px;
  margin-left: 13%;
  margin-bottom: 20px;
  color: #fff;
  font-size: 40px;
  transform: translateX(50%);
  opacity: 0;
  animation: fadeInRight .3s 1.5s ease-out forwards; }
  .count-list:nth-child(2) {
    animation-delay: 1.6s; }
  .count-list:nth-child(3) {
    animation-delay: 1.7s; }
  .count-list:nth-child(4) {
    animation-delay: 1.8s; }
  .count-list:nth-child(5) {
    animation-delay: 1.9s; }
  @media (min-width: 992px) {
    .count-list {
      width: 80%;
      height: 80px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 4px; } }
  @media (min-width: 1400px) {
    .count-list {
      width: 70%;
      height: 80px;
      margin-left: 20px;
      margin-bottom: 20px; } }
  .count-list__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(53, 74, 109, 0.5);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
    .count-list__bg::before, .count-list__bg::after {
      content: '';
      position: absolute;
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2); }
    .count-list__bg::before {
      right: 100%;
      bottom: 0;
      border: 15px solid transparent;
      border-right-color: rgba(53, 74, 109, 0.5);
      border-bottom-color: rgba(53, 74, 109, 0.5); }
    .count-list__bg::after {
      right: -10px;
      bottom: 0;
      width: 5px;
      height: 100%;
      background-color: rgba(53, 74, 109, 0.5); }
    @media (min-width: 992px) {
      .count-list__bg {
        height: 50px; }
        .count-list__bg::before {
          border-width: 25px; }
        .count-list__bg::after {
          right: -20px;
          width: 10px; } }
  .count-list__title {
    position: absolute;
    top: 12px;
    left: 7px;
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
    @media (min-width: 375px) {
      .count-list__title {
        width: 36%;
        text-align: right; } }
    @media (min-width: 992px) {
      .count-list__title {
        top: auto;
        bottom: 8px;
        left: 0;
        width: 30%;
        text-align: right;
        font-size: 20px; } }
  .count-list__text {
    position: relative;
    padding-right: 20px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    text-align: right;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
    @media (min-width: 992px) {
      .count-list__text {
        padding-right: 40px;
        font-size: 20px; } }
  .count-list__num {
    display: inline-block;
    padding: 0 5px;
    color: #EFBE45;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Play', sans-serif; }
    @media (min-width: 992px) {
      .count-list__num {
        padding: 0 10px;
        font-size: 80px; } }
  .count-list__time {
    position: relative;
    bottom: 4px;
    padding-right: 20px;
    color: #EFBE45;
    text-align: right; }
    @media (min-width: 992px) {
      .count-list__time {
        bottom: -8px;
        padding-right: 40px; } }
    .count-list__time-date {
      padding-right: 40px;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      font-family: 'Play', sans-serif; }
      @media (min-width: 992px) {
        .count-list__time-date {
          font-size: 48px; } }
    .count-list__time-clock {
      font-size: 16px;
      line-height: 1;
      font-family: 'Play', sans-serif; }
      @media (min-width: 992px) {
        .count-list__time-clock {
          font-size: 20px; } }

.ir-promote {
  background-color: #ffe066; }
.ir-index {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-bottom: 40px; }
  @media (min-width: 992px) {
    .ir-index {
      margin-bottom: 100px; } }
  @media (min-width: 768px) {
    .ir-index__list {
      width: 96%;
      margin: 0 auto; } }
  @media (min-width: 992px) {
    .ir-index__list {
      float: left;
      max-width: 970px;
      width: calc(100% - 360px); } }
  .ir-index__side {
    display: none; }
    @media (min-width: 769px) {
      .ir-index__side {
        display: block; } }
    @media (min-width: 992px) {
      .ir-index__side {
        float: right;
        width: 300px;
        margin-right: 7px;
        margin-left: 30px; } }

.ir-index-page {
  padding-bottom: 16px; }

.slogan-index {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); }
  .slogan-index span {
    color: #EFBE45;
    font-size: 95%;
    font-family: 'Play', sans-serif; }
  @media (min-width: 768px) {
    .slogan-index {
      margin-bottom: 40px; } }
  @media (min-width: 992px) {
    .slogan-index {
      font-size: 30px; } }
  @media (min-width: 1400px) {
    .slogan-index {
      font-size: 36px; } }

.index-img {
  max-width: 60%;
  user-select: none;
  opacity: 0;
  transform: translateY(50%);
  animation: bounceup .3s 1s linear forwards; }
  @media (min-width: 768px) {
    .index-img {
      max-width: 80%; } }
  @media (min-width: 992px) {
    .index-img {
      max-width: 100%;
      margin-bottom: 40px; } }

@keyframes bounceup {
  80% {
    opacity: 1;
    transform: translateY(-20%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.ir-index-tabs {
  position: relative;
  text-align: center;
  font-size: 0; }
  .ir-index-tabs__link {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
    width: 30%;
    padding: 12px 4px 6px;
    font-size: 14px;
    font-weight: bold;
    color: #e8d774;
    border: 2px solid transparent;
    background-color: #863b01;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    vertical-align: bottom; }
    @media (min-width: 768px) {
      .ir-index-tabs__link {
        padding: 12px 10px 6px;
        font-size: 22px; } }
    .ir-index-tabs__link::after {
      content: none; }
    .ir-index-tabs__link:hover, .ir-index-tabs__link:focus {
      color: #ffffff;
      background-color: #a44801; }
      .ir-index-tabs__link:hover::after, .ir-index-tabs__link:focus::after {
        background-color: #a44801; }
    .ir-index-tabs__link + .ir-index-tabs__link {
      margin-left: 4px; }
    .ir-index-tabs__link.active {
      font-size: 16px;
      color: #fff1a2;
      border-color: transparent;
      background-color: #b76521;
      margin-bottom: 6px;
      z-index: 1; }
      .ir-index-tabs__link.active::after {
        bottom: -4px;
        background-color: #717cb9; }
      @media (min-width: 768px) {
        .ir-index-tabs__link.active {
          font-size: 28px; } }

.ir-index-subtabs {
  padding: 16px 8px;
  background-color: #cab19d;
  text-align: center;
  font-size: 0; }
  @media (min-width: 768px) {
    .ir-index-subtabs {
      padding: 16px; } }
  .ir-index-subtabs__link {
    position: relative;
    display: inline-block; }
    .ir-index-subtabs__link + .ir-index-subtabs__link {
      margin: 2px;
      margin-left: 4px; }
      @media (min-width: 768px) {
        .ir-index-subtabs__link + .ir-index-subtabs__link {
          margin-left: 16px;
          margin-bottom: 8px; } }
  .ir-index-subtabs__img {
    display: inline-block;
    margin-bottom: 4px;
    width: 40px;
    vertical-align: middle;
    border-radius: 6px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }
    @media (min-width: 768px) {
      .ir-index-subtabs__img {
        min-width: 50px; } }
  .ir-index-subtabs__name11th {
    position: relative;
    display: inline-block;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 700;
    color: #654937;
    line-height: 1;
    white-space: nowrap;
    border-radius: 6px;
    background-color: #e8e8e8;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2); }
    .ir-index-subtabs__name11th:hover {
      background-color: #eeeeee; }
    .ir-index-subtabs__name11th::before {
      content: ''; }
    .ir-index-subtabs__name11th:active {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0.2); }
    .ir-index-subtabs__name11th.higher {
      background-color: #eeeeee; }
      .ir-index-subtabs__name11th.higher:hover {
        background-color: #eeeeee; }

.ir-index-tabs-content {
  margin-bottom: 40px;
  border: 3px solid #b76521;
  border-radius: 10px;
  box-shadow: 0 0 0 8px #b76521, 0 0 0 12px #6e3200;
  background-color: #fff;
  overflow: hidden; }

.ir-lists-five {
  padding: 16px 8px 8px;
  background-color: #1c7cd6; }
  @media (min-width: 801px) {
    .ir-lists-five {
      text-align: center; } }
  .ir-lists-five__select {
    display: inline-block;
    margin: 0;
    padding: 0; }
    .ir-lists-five__select li {
      display: inline-block;
      padding: 0 4px;
      margin-bottom: 8px;
      text-align: center; }
      @media (min-width: 1201px) {
        .ir-lists-five__select li {
          padding: 0 8px; } }
      .ir-lists-five__select li a {
        display: inline-block;
        padding: 6px 16px;
        color: #fff;
        line-height: 1;
        border: 1px solid #fff;
        border-radius: 20px; }
        .ir-lists-five__select li a:hover, .ir-lists-five__select li a:focus {
          color: #1c7cd6;
          background-color: #fff; }
        .ir-lists-five__select li a:active {
          color: #1c7cd6;
          background-color: #fff; }
      .ir-lists-five__select li.active a {
        color: #1c7cd6;
        background-color: #fff; }

.ir-lists-switch {
  min-height: 63px;
  padding: 12px 8px;
  border-bottom: 1px solid #adb5bd; }
  @media (min-width: 467px) {
    .ir-lists-switch {
      padding: 16px 64px; } }
  @media (min-width: 992px) {
    .ir-lists-switch {
      padding: 16px 64px; } }
  .ir-lists-switch__title {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #bbbbbb; }
    @media (min-width: 411px) {
      .ir-lists-switch__title {
        margin-bottom: 0; } }
    .ir-lists-switch__title span {
      vertical-align: middle; }
  .ir-lists-switch__select {
    display: inline-block;
    margin: 0; }
    .ir-lists-switch__select li {
      display: inline-block;
      padding: 0 16px; }
      @media (min-width: 769px) {
        .ir-lists-switch__select li {
          padding: 0 32px; } }
      .ir-lists-switch__select li a {
        display: block;
        font-size: 14px;
        color: #818c98; }
        .ir-lists-switch__select li a:hover, .ir-lists-switch__select li a:focus {
          color: #949ea8; }
        .ir-lists-switch__select li a:active {
          color: #6e7a87; }
        @media (min-width: 467px) {
          .ir-lists-switch__select li a {
            font-size: 16px; } }
        @media (min-width: 769px) {
          .ir-lists-switch__select li a {
            font-size: 18px; } }
      .ir-lists-switch__select li + li {
        border-left: 1px solid #adb5bd; }
      .ir-lists-switch__select li.active a {
        position: relative;
        font-weight: bold;
        color: #664935; }
        .ir-lists-switch__select li.active a:hover, .ir-lists-switch__select li.active a:focus {
          color: #7d5a41; }
        .ir-lists-switch__select li.active a:active {
          color: #4f3829; }
        @media (min-width: 769px) {
          .ir-lists-switch__select li.active a:before, .ir-lists-switch__select li.active a:after {
            position: absolute;
            left: 50%;
            top: 37px;
            z-index: 1;
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-bottom: 10px solid #adb5bd;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            transform: translateX(-50%); }
          .ir-lists-switch__select li.active a:after {
            top: 39px;
            border-bottom: 10px solid #fff; } }

.ir-list {
  padding: 16px 16px;
  border-bottom: 1px solid #adb5bd; }
  .ir-lists {
    min-height: 500px;
    margin-bottom: 0; }
  @media (min-width: 769px) {
    .ir-list {
      padding: 16px 32px; } }
  @media (min-width: 1201px) {
    .ir-list {
      padding: 16px 64px; } }
  .ir-list__group {
    margin-bottom: 8px; }
    .ir-list__group-topic {
      display: inline-block;
      margin: 0;
      padding-left: 2px;
      font-size: 16px;
      color: #818c98; }
      .ir-list__group-topic a {
        color: #664935;
        word-break: break-all; }
        .ir-list__group-topic a:hover, .ir-list__group-topic a:focus {
          color: #7d5a41; }
        .ir-list__group-topic a:active {
          color: #4f3829; }
      .ir-list__group-topic-num {
        color: #535c65; }
  .ir-list__title {
    margin: 0;
    margin-bottom: 8px; }
    .ir-list__title a {
      font-size: 20px;
      font-weight: bold;
      line-height: 1.5;
      color: #333333;
      word-break: break-all; }
      .ir-list__title a:hover, .ir-list__title a:focus {
        color: #454545; }
      .ir-list__title a:active {
        color: #212121; }
      @media (min-width: 769px) {
        .ir-list__title a {
          font-size: 22px; } }
      @media (min-width: 992px) {
        .ir-list__title a {
          font-size: 24px; } }
  .ir-list__desc {
    font-size: 16px;
    color: #535c65;
    word-break: break-all; }
  .ir-list__info {
    font-size: 14px;
    color: #818c98;
    vertical-align: middle; }
    @media (min-width: 992px) {
      .ir-list__info {
        font-size: 16px; } }
  .ir-list__user {
    display: inline-block;
    padding-right: 8px; }
  .ir-list__avatar {
    margin-right: 4px;
    width: 30px;
    height: 30px;
    border: 1px solid #e5e5e5;
    background-color: #fff; }
  .ir-list__name {
    color: #535c65; }
    .ir-list__name:hover, .ir-list__name:focus {
      color: #636e79; }
    .ir-list__name:active {
      color: #434a51; }
  .ir-list__team {
    display: inline-block;
    vertical-align: top; }
    .ir-list__team a {
      vertical-align: middle;
      color: #5e3b96; }
      .ir-list__team a:hover, .ir-list__team a:focus {
        color: #6e45b0; }
      .ir-list__team a:active {
        color: #4e317c; }

.ir-index-hot {
  background-color: #fff;
  border: 3px solid #b76521;
  border-radius: 10px;
  box-shadow: 0 0 0 3px #b76521, 0 0 0 6px #6e3200;
  overflow: hidden; }
  @media (min-width: 992px) {
    .ir-index-hot {
      margin-bottom: 30px; } }
  .ir-index-hot__title {
    margin: 0;
    padding: 6px 0 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    background-color: #b76521;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  .ir-index-hot__lists {
    margin: 8px; }

.ir-index-hot__list {
  padding: 8px; }
  @media (min-width: 682px) {
    .ir-index-hot__list {
      width: 48%;
      display: inline-block;
      margin-right: 10px;
      border-bottom: 1px solid #ced4da;
      vertical-align: top; } }
  @media (min-width: 992px) {
    .ir-index-hot__list {
      width: auto;
      display: block;
      margin-right: 0;
      border-bottom: none; } }
  .ir-index-hot__list + .ir-index-hot__list {
    border-top: 1px solid #ced4da; }
    @media (min-width: 682px) {
      .ir-index-hot__list + .ir-index-hot__list {
        border-top: none; } }
    @media (min-width: 992px) {
      .ir-index-hot__list + .ir-index-hot__list {
        border-top: 1px solid #ced4da; } }
  .ir-index-hot__list .ir-list__group {
    margin-bottom: 2px;
    line-height: 1; }
  .ir-index-hot__list .ir-list__title a {
    font-size: 17px;
    line-height: 1; }
  .ir-index-hot__list .ir-list__avatar {
    width: 24px;
    height: 24px; }
  .ir-index-hot__list .ir-list__info {
    font-size: 14px; }
  .ir-index-hot__list .ir-list__info-num {
    color: #535c65; }

.ir-index-social {
  padding: 20px 30px; }
  .ir-index-social h3 {
    color: #654937; }
  .ir-index-social__list {
    padding-left: 20px; }
    .ir-index-social__list a {
      color: #666; }
      .ir-index-social__list a:hover, .ir-index-social__list a:focus {
        color: #787878; }
      .ir-index-social__list a:active {
        color: #545454; }

.winner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  min-height: 400px; }

.winner-header {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px; }
  .winner-header h2 {
    margin-bottom: 40px;
    font-size: 40px;
    letter-spacing: 2px;
    color: #FFFFA6;
    text-align: center;
    line-height: 1.4; }
    @media (max-width: 374px) {
      .winner-header h2 {
        font-size: 30px; } }
    .winner-header h2 span {
      font-size: 30px;
      color: #fff; }
  .winner-header p {
    max-width: 80%;
    margin: 0 auto;
    color: #fff; }
  .winner-header .slogan p {
    color: #ffffff; }
  .winner-header__btns {
    margin-top: 20px;
    text-align: center; }
    @media (min-width: 1201px) {
      .winner-header__btns {
        margin-top: 60px; } }

.btn-winner-switch-right, .btn-winner-switch-left {
  padding: 15px;
  font-size: 20px;
  border: none;
  margin: 1% auto;
  background: #ffffff;
  border: 3px solid #ffffff;
  transition: all .3s ease;
  position: relative;
  width: 25%;
  display: inline-block;
  border-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  @media (max-width: 768px) {
    .btn-winner-switch-right, .btn-winner-switch-left {
      display: block;
      width: 100%;
      margin: 2% auto; } }
  .btn-winner-switch-right:hover, .btn-winner-switch-right:focus, .btn-winner-switch-left:hover, .btn-winner-switch-left:focus {
    background: #eeeeee;
    border: 3px solid #ffffff;
    color: #d66200; }

.btn-winner-switch-right.actived, .btn-winner-switch-left.actived {
  padding: 15px;
  font-size: 20px;
  border: none;
  margin: 1% auto;
  border: 3px solid #ffffff;
  transition: all .3s ease;
  width: 25%;
  position: relative;
  display: inline-block;
  margin: 0 3%;
  background: rgba(76, 76, 76, 0.5);
  border-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #ffffff;
  user-select: none;
  cursor: inherit; }
  @media (max-width: 768px) {
    .btn-winner-switch-right.actived, .btn-winner-switch-left.actived {
      display: block;
      width: 100%;
      margin: 2% auto; } }
  .btn-winner-switch-right.actived:hover, .btn-winner-switch-right.actived:focus, .btn-winner-switch-left.actived:hover, .btn-winner-switch-left.actived:focus {
    background: rgba(76, 76, 76, 0.5);
    border: 3px solid #ffffff;
    color: #ffffff; }

.winner-carousel {
  position: absolute;
  left: 50%;
  top: 0;
  width: 600px;
  transform: translateX(-50%); }
  @media (min-width: 1201px) {
    .winner-carousel {
      top: 12%; } }
  .winner-carousel__item {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    transform: translateX(-50%); }

.winner-champion {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: -1; }
@media (min-width: 992px) and (max-width: 1200px) {
  .winner-champion {
    padding-top: 30px; } }

  .winner-champion__bg {
    position: relative;
    margin-top: -11%;
    border-radius: 8px;
    z-index: -1; }
@media (min-width: 992px) and (max-width: 1200px) {
  .winner-champion__bg {
    margin-top: -3%; } }

    .winner-champion__bg img {
      max-width: 100%;
      user-select: none;
      margin-top: 6%; }
    .winner-champion__bg:after {
      content: none; }

.champion-badge {
  position: relative;
  margin: 0 auto;
  padding-top: 100px;
  transform: translateY(30%) scale(0);
  transform-origin: bottom center;
  transition: .3s linear;
  opacity: 0; }

.champion-light {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(0);
  user-select: none;
  transition: .2s .2s linear; }
  .champion-light img {
    user-select: none; }

.champion-wing {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(46px) scale(0);
  transform-origin: center bottom;
  transition: .2s .4s ease;
  opacity: 0; }
  .champion-wing img {
    user-select: none; }

.champion-type {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(0);
  transition: .2s .2s linear;
  opacity: 0;
  z-index: 1; }

.winner-carousel__item.active {
  z-index: 10; }
  .winner-carousel__item.active .champion-badge {
    opacity: 1;
    transform: translateY(0) scale(1); }
  .winner-carousel__item.active .champion-type {
    transform: translateX(-50%) translateY(40px);
    opacity: 1; }
  .winner-carousel__item.active .champion-wing {
    opacity: 1;
    transform: translateX(-50%) translateY(36px) scale(1); }
  .winner-carousel__item.active .champion-light {
    transform: translateX(-50%) scale(1); }
    .winner-carousel__item.active .champion-light img {
      animation: light-rotate 10s .3s linear infinite; }
@keyframes light-rotate {
  100% {
    transform: rotate(360deg); } }
.champion-title {
  position: relative;
  max-width: 400px;
  height: 100px;
  margin: 0 auto;
  padding: 10px 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  background-color: #ff8d2d; }
  .champion-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    border: 10px solid #d46c14;
    border-top-color: #9a4700;
    border-right-color: #9a4700;
    z-index: 1; }
  .champion-title:after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    border: 10px solid #d46c14;
    border-top-color: #9a4700;
    border-left-color: #9a4700;
    z-index: 1; }
  .champion-title__deco {
    position: absolute;
    top: 20px;
    border: 50px solid #d46c14; }
  .champion-title__deco:first-of-type {
    right: 100%;
    border-left-color: transparent;
    border-left-width: 40px;
    border-right-width: 10px; }
  .champion-title__deco:last-of-type {
    left: 100%;
    border-right-color: transparent;
    border-right-width: 40px;
    border-left-width: 10px; }

.champion-body {
  position: relative;
  width: 360px;
  margin: 0 auto;
  height: 300px; }
  .champion-body:before {
    content: '';
    position: absolute;
    left: -10px;
    bottom: 0;
    width: calc(100% + 20px);
    height: 20px;
    background-image: linear-gradient(to bottom, #F7B52D 50%, #E39F3F 50%); }
  .champion-body:after {
    content: '';
    position: absolute;
    left: -20px;
    bottom: 4px;
    width: calc(100% + 40px);
    height: 12px;
    border-radius: 10px;
    background-image: linear-gradient(to bottom, #F7B52D 50%, #E39F3F 50%); }
  .champion-body__container {
    position: relative;
    padding: 20px;
    height: 100%;
    text-align: center;
    background-color: #FFFCF4;
    z-index: 1; }
    .champion-body__container:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 10px;
      background-color: rgba(0, 0, 0, 0.2); }
    .champion-body__container:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 10px;
      background-color: rgba(0, 0, 0, 0.2); }
  .champion-body__avatar {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 104px;
    height: 104px;
    border: 4px solid #8C6B19;
    border-radius: 100%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
    .champion-body__avatar img {
      height: 100%;
      width: auto; }
  .champion-body__name {
    display: inline-block;
    margin-bottom: 10px;
    color: #F29700;
    font-size: 24px;
    font-weight: 700; }
    .champion-body__name:hover, .champion-body__name:focus {
      color: #ffa40d; }
    .champion-body__name:active {
      color: #d98700; }
  .champion-body__topic {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    color: #946134;
    font-size: 16px;
    font-weight: 700;
    background-color: #E4DCB6;
    border-radius: 6px; }
    .champion-body__topic:hover, .champion-body__topic:focus {
      color: #a76d3b; }
    .champion-body__topic:active {
      color: #81552d; }

.winner-spacing {
  margin-bottom: 0; }
  @media (min-width: 769px) {
    .winner-spacing {
      margin-bottom: 40px; } }
  @media (min-width: 1201px) {
    .winner-spacing {
      margin-bottom: 100px; } }

.winner-title {
  margin-bottom: 0px; }
  .winner-title img {
    user-select: none;
    max-width: 300px;
    margin: 2%; }
    @media (max-width: 767px) {
      .winner-title img {
        width: 80%;
        margin: 0 auto; } }

.winner-item {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 50px; }
  @media (max-width: 374px) {
    .winner-item {
      max-width: 280px; } }
  .winner-item:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 4px;
    width: calc(100% + 40px);
    height: 20px;
    border-radius: 6px;
    background-image: linear-gradient(to bottom, #edc386 14%, #f2a609 14%, #f2a609 80%, #d98c20 80%); }
  .winner-item:after {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: calc(100% + 20px);
    height: 28px;
    background-image: linear-gradient(to bottom, #f0cc98 14%, #F7B52D 14%, #F7B52D 80%, #E39F3F 80%); }
  .winner-item__body {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1; }
    .winner-item__body:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 6px;
      background-color: rgba(255, 255, 255, 0.15); }
    .winner-item__body:after {
      content: '';
      position: absolute;
      left: 0;
      top: 22px;
      width: 100%;
      height: 6px;
      background-color: rgba(0, 0, 0, 0.2); }
    .winner-item__body img {
      user-select: none;
      max-width: 100%; }
  .winner-item__content {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    padding: 20px 30px;
    text-align: center; }
    .winner-item__content a {
      display: inline-block;
      line-height: 1.3; }
  .winner-item__avatar {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    overflow: hidden; }
    @media (max-width: 374px) {
      .winner-item__avatar {
        width: 60px;
        height: 60px; } }
    .winner-item__avatar img {
      height: 100%;
      width: auto; }
  .winner-item__name {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFA6; }
    .winner-item__name:hover, .winner-item__name:focus {
      color: #ffffca; }
    .winner-item__name:active {
      color: #ffff82; }
    @media (max-width: 374px) {
      .winner-item__name {
        margin-bottom: 0;
        font-size: 22px; } }
  .winner-item__group {
    margin-bottom: 10px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #664935;
    border-radius: 20px;
    background-color: #FBCD3C; }
    .winner-item__group:hover, .winner-item__group:focus {
      color: #7d5a41; }
    .winner-item__group:active {
      color: #4f3829; }
    @media (max-width: 374px) {
      .winner-item__group {
        font-size: 12px; } }
  .winner-item__topic {
    color: #fff; }
    .winner-item__topic:hover, .winner-item__topic:focus {
      color: #FFFFA6; }
    .winner-item__topic:active {
      color: #FFFFA6; }

.juror-list {
  padding-bottom: 20%; }

.juror-title {
  color: #ffffff; }

.juror-item {
  position: relative;
  margin-bottom: 30px;
  padding: 0 20px;
  padding: 0; }
  @media (max-width: 1199px) {
    .juror-item {
      margin-bottom: 40px; } }
  .juror-item__avatar {
    position: relative;
    float: left;
    margin-top: 8px;
    width: 150px;
    height: 150px; }
    @media (max-width: 1199px) {
      .juror-item__avatar {
        float: none;
        margin: 0 auto;
        margin-bottom: 20px; } }
    .juror-item__avatar img {
      position: relative;
      z-index: 1;
      border-radius: 8px; }
    .juror-item__avatar:before, .juror-item__avatar:after {
      content: '';
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border-radius: 12px; }
    .juror-item__avatar:after {
      width: 158px;
      height: 158px;
      background-image: linear-gradient(to top, #ffefbd, #e2ac00); }
    .juror-item__avatar:before {
      width: 168px;
      height: 168px;
      background-image: linear-gradient(to bottom, #ffefbd, #e2ac00); }
  .juror-item__content {
    overflow: hidden;
    padding-left: 30px;
    padding-right: 30px; }
    @media (max-width: 1199px) {
      .juror-item__content {
        padding: 0; } }
  .juror-item__name {
    font-size: 26px;
    font-weight: 700;
    color: #EFBE45; }
    @media (max-width: 374px) {
      .juror-item__name {
        font-size: 22px; } }
    @media (max-width: 1199px) {
      .juror-item__name {
        text-align: center; } }
  .juror-item__desc {
    color: #fff; }
    .juror-item__desc a {
      color: #fff; }
      .juror-item__desc a:hover, .juror-item__desc a:focus {
        color: #EFBE45; }
      .juror-item__desc a:active {
        color: #EFBE45; }

.champion-badge--team .champion-title {
  line-height: 100px;
  font-size: 30px;
  padding: 0; }
.champion-badge--team .champion-team-deco {
  position: absolute;
  left: 50%;
  top: 10px;
  opacity: 0;
  transform: translateX(-50%);
  transition: .2s .2s linear; }
.champion-badge--team .champion-wing {
  top: -38px; }
.champion-badge--team .champion-body__avatar {
  width: 144px;
  height: 144px;
  margin-top: 20px;
  margin-bottom: 20px; }

.winner-carousel__item.active .champion-team-deco {
  transform: translateX(-50%);
  opacity: 1; }
.winner-carousel__item.active .champion-badge--team .champion-wing {
  transform: translateX(-50%) translateY(36px) scale(0.6); }

.winner-team {
  position: relative;
  min-height: 340px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px; }
  @media (min-width: 769px) {
    .winner-team {
      width: 90%;
      padding: 30px; } }
  @media (min-width: 1201px) {
    .winner-team {
      padding: 40px;
      padding-bottom: 0; } }
  .winner-team__member {
    position: relative;
    padding: 14px;
    border-bottom: 3px solid #eeeeee;
    float: left;
    width: 100%; }
    @media (min-width: 768px) {
      .winner-team__member {
        margin-left: 340px; } }
    @media (min-width: 1201px) {
      .winner-team__member {
        margin-bottom: 80px; } }
  .winner-team__avatar {
    position: relative;
    float: left;
    margin: 0 10px;
    margin-bottom: 40px; }
    .winner-team__avatar:hover .winner-team__account {
      display: block;
      position: absolute;
      left: 50%;
      top: 100%;
      width: auto;
      animation: badgefadein .2s linear forwards; }
    .winner-team__avatar:hover img {
      border-color: #ffae27; }
    .winner-team__avatar img {
      position: relative;
      width: 64px;
      height: 64px;
      border: 4px solid #F39800;
      border-radius: 50%;
      background-color: #fff;
      z-index: 1;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      user-select: none; }
    .winner-team__avatar::before, .winner-team__avatar::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 22px;
      height: 50px;
      background-color: #d46c14; }
    .winner-team__avatar::before {
      left: 10px;
      transform: skewY(-30deg); }
    .winner-team__avatar::after {
      left: 32px;
      transform: skewY(30deg); }
  .winner-team__account {
    position: relative;
    display: none;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    border-radius: 6px;
    background-color: #4A4A56;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 1; }
    .winner-team__account:hover, .winner-team__account:focus {
      color: white; }
    .winner-team__account:active {
      color: #ededed; }
    .winner-team__account::before {
      position: absolute;
      content: '';
      left: 50%;
      top: -14px;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-bottom-color: #4A4A56; }
  .winner-team__badge {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 2px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    background-color: #4668cc; }
  .winner-team__leader {
    margin-bottom: 20px; }
    .winner-team__leader .winner-team__avatar img {
      width: 84px;
      height: 84px; }
    .winner-team__leader .winner-team__avatar::before, .winner-team__leader .winner-team__avatar::after {
      width: 30px;
      height: 60px; }
    .winner-team__leader .winner-team__avatar::before {
      left: 12px; }
    .winner-team__leader .winner-team__avatar::after {
      left: 40px; }
    .winner-team__leader-account {
      display: inline-block;
      margin-left: 10px;
      font-size: 20px;
      color: #fac53c; }
      .winner-team__leader-account:hover, .winner-team__leader-account:focus {
        color: #fbcf5f; }
      .winner-team__leader-account:active {
        color: #f9bb19; }

@keyframes badgefadein {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20%); }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(20%); } }
.winner-item--team {
  margin-bottom: 0; }
  @media (max-width: 374px) {
    .winner-item--team {
      max-width: 280px; } }
  @media (min-width: 769px) {
    .winner-item--team {
      position: absolute;
      left: 40px;
      top: 20px; } }
  .winner-item--team .winner-item__content {
    padding: 30px; }
  .winner-item--team .winner-item__avatar {
    width: 140px;
    height: 140px;
    border: 6px solid #F39800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
    @media (max-width: 374px) {
      .winner-item--team .winner-item__avatar {
        width: 80px;
        height: 80px; } }
  .winner-item--team .winner-item__name {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); }
    .winner-item--team .winner-item__name:hover, .winner-item--team .winner-item__name:focus {
      color: white; }
    .winner-item--team .winner-item__name:active {
      color: #ededed; }

.champion-badge--team .champion-title {
  line-height: 100px;
  font-size: 30px;
  padding: 0; }
.champion-badge--team .champion-team-deco {
  position: absolute;
  left: 50%;
  top: 10px;
  opacity: 0;
  transform: translateX(-50%);
  transition: .2s .2s linear; }
.champion-badge--team .champion-wing {
  top: -38px; }
.champion-badge--team .champion-body__avatar {
  width: 144px;
  height: 144px;
  margin-top: 20px;
  margin-bottom: 20px; }

.winner-carousel__item.active .champion-team-deco {
  transform: translateX(-50%);
  opacity: 1; }
.winner-carousel__item.active .champion-badge--team .champion-wing {
  transform: translateX(-50%) translateY(36px) scale(0.6); }

.winner-team {
  position: relative;
  min-height: 340px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px; }
  @media (min-width: 769px) {
    .winner-team {
      width: 90%;
      padding: 30px; } }
  @media (min-width: 1201px) {
    .winner-team {
      padding: 40px;
      padding-bottom: 0; } }
  @media (min-width: 769px) {
    .winner-team__member {
      margin-left: 340px; } }
  @media (min-width: 1201px) {
    .winner-team__member {
      margin-bottom: 80px; } }
  .winner-team__avatar {
    position: relative;
    float: left;
    margin: 0 10px;
    margin-bottom: 40px; }
    .winner-team__avatar:hover .winner-team__account {
      display: block;
      position: absolute;
      left: 50%;
      top: 100%;
      width: auto;
      animation: badgefadein .2s linear forwards; }
    .winner-team__avatar:hover img {
      border-color: #ffae27; }
    .winner-team__avatar img {
      position: relative;
      width: 64px;
      height: 64px;
      border: 4px solid #F39800;
      border-radius: 50%;
      background-color: #fff;
      z-index: 1;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      user-select: none; }
    .winner-team__avatar::before, .winner-team__avatar::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 22px;
      height: 50px;
      background-color: #d46c14; }
    .winner-team__avatar::before {
      left: 10px;
      transform: skewY(-30deg); }
    .winner-team__avatar::after {
      left: 32px;
      transform: skewY(30deg); }
  .winner-team__account {
    position: relative;
    display: none;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    border-radius: 6px;
    background-color: #4A4A56;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 1; }
    .winner-team__account:hover, .winner-team__account:focus {
      color: white; }
    .winner-team__account:active {
      color: #ededed; }
    .winner-team__account::before {
      position: absolute;
      content: '';
      left: 50%;
      top: -14px;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-bottom-color: #4A4A56; }
  .winner-team__badge {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 2px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    background-color: #4668cc; }
  .winner-team__leader {
    margin-bottom: 20px; }
    .winner-team__leader .winner-team__avatar img {
      width: 84px;
      height: 84px; }
    .winner-team__leader .winner-team__avatar::before, .winner-team__leader .winner-team__avatar::after {
      width: 30px;
      height: 60px; }
    .winner-team__leader .winner-team__avatar::before {
      left: 12px; }
    .winner-team__leader .winner-team__avatar::after {
      left: 40px; }
    .winner-team__leader-account {
      display: inline-block;
      margin-left: 10px;
      font-size: 20px;
      color: #fac53c; }
      .winner-team__leader-account:hover, .winner-team__leader-account:focus {
        color: #fbcf5f; }
      .winner-team__leader-account:active {
        color: #f9bb19; }

.winner-item--team {
  margin-bottom: 0; }
  @media (max-width: 374px) {
    .winner-item--team {
      max-width: 280px; } }
  @media (min-width: 769px) {
    .winner-item--team {
      position: absolute;
      left: 40px;
      top: 20px; } }
  .winner-item--team .winner-item__content {
    padding: 30px; }
  .winner-item--team .winner-item__avatar {
    width: 140px;
    height: 140px;
    border: 6px solid #F39800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
    @media (max-width: 374px) {
      .winner-item--team .winner-item__avatar {
        width: 80px;
        height: 80px; } }
  .winner-item--team .winner-item__name {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); }
    .winner-item--team .winner-item__name:hover, .winner-item--team .winner-item__name:focus {
      color: white; }
    .winner-item--team .winner-item__name:active {
      color: #ededed; }

.winner-board .board-title {
  font-size: 42px;
  color: #bd0101;
  margin: 30px 0 20px;
  text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff; }
.winner-board .board-item .table {
  background: #ffffff;
  border: none; }
.winner-board .board-item .title {
  text-align: center;
  font-size: 20px;
  width: 33.33%;
  color: #ffffff;
  border: none; }
.winner-board .board-item .title-champion {
  background: #b61818; }
.winner-board .board-item .title-second {
  background: #255d5f; }
.winner-board .board-item .title-third {
  background: #835411; }
.winner-board .board-item .badge {
  font-size: 14px; }
.winner-board .board-item .name {
  font-weight: 700;
  font-size: 16px; }
.winner-board .board-item .desc {
  font-size: 16px; }
.winner-board .board-item .board-tr td:nth-child(1) {
  background: #ffeae8; }
.winner-board .board-item .board-tr td:nth-child(2) {
  background: #daecec; }
.winner-board .board-item .board-tr td:nth-child(3) {
  background: #ece3d4; }
.winner-board .table > thead > tr > th, .winner-board .table > thead > tr > td, .winner-board .table > tbody > tr > th, .winner-board .table > tbody > tr > td, .winner-board .table > tfoot > tr > th, .winner-board .table > tfoot > tr > td {
  border-top: 1px solid #eeeeee;
  padding-left: 2%;
  padding-right: 2%; }

.winner-juror {
  margin-bottom: 40px;
  background-color: #3c3c3c;
  border-radius: 20px;
  border: 5px solid #6f0f00; }
  .winner-juror .juror-title {
    font-size: 42px;
    color: #bd0101;
    margin: 30px 0 20px;
    text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff; }
  .winner-juror .juror-item-card {
    background-color: #ffffff;
    padding: 10px 15px 20px;
    border-radius: 10px;
    position: relative;
    float: left;
    margin: 1% 1.5% 3%;
    box-shadow: 6px 5px 0px #969696;
    min-height: 410px; }
@media (max-width: 1366px) and (min-width: 1200px) {
  .winner-juror .juror-item-card {
    min-height: 420px; } }

@media (max-width: 1199px) and (min-width: 992px) {
  .winner-juror .juror-item-card {
    min-height: 500px; } }

    .winner-juror .juror-item-card_img {
      text-align: center; }
      .winner-juror .juror-item-card_img img {
        border-radius: 50%;
        border: 5px solid #bd0101;
        max-width: 100%; }
    .winner-juror .juror-item-card_text_title {
      font-size: 16px;
      font-weight: 500; }
    .winner-juror .juror-item-card_text_desc {
      font-size: 16px; }

.winner-group-best, .winner-group-more, .winner-group-finish {
  position: relative;
  width: 100%; }
  .winner-group-best .winner-title, .winner-group-more .winner-title, .winner-group-finish .winner-title {
    margin: 40px auto 20px;
    float: left;
    width: 100%; }
    .winner-group-best .winner-title img, .winner-group-more .winner-title img, .winner-group-finish .winner-title img {
      max-width: 300px; }

.winner-group-finish {
  margin-bottom: 40px; }
  .winner-group-finish .winner-title img {
    max-width: 260px; }

.group-card {
  background-color: #96248d;
  border-radius: 10px;
  border-top: 10px solid #96248d;
  width: 86%;
  left: 7%;
  margin-bottom: 3%; }
  .group-card .group-item {
    background-color: #ffffff; }
  .group-card .group-item {
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #f7f7f7;
    padding-bottom: 15px; }
    .group-card .group-item__img {
      position: relative;
      top: -20px;
      width: 200px;
      height: 200px;
      padding: 0;
      border: 3px solid #2E2E75;
      background-color: #f4f4f4;
      border-radius: 10px;
      box-shadow: 0 0 0 4px #b72cac, 0 0 0 5px #b72cac, 0 6px 8px 2px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      padding: 0;
      margin: auto; }
      .group-card .group-item__img img {
        display: block;
        width: 100%;
        vertical-align: middle; }
      @media (min-width: 768px) {
        .group-card .group-item__img {
          margin: 0 30px;
          top: -30px;
          float: left; } }
    .group-card .group-item__text {
      float: left;
      margin: 0;
      padding: 0 15px;
      width: 100%; }
      @media (min-width: 1024px) {
        .group-card .group-item__text {
          width: calc(90% - 260px); } }
    .group-card .group-item__img-btn {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      padding: 6px 2px;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      text-align: center;
      vertical-align: middle;
      background-color: rgba(0, 0, 0, 0.7); }
      @media (min-width: 768px) {
        .group-card .group-item__img-btn {
          font-size: 1.6rem; } }
      .group-card .group-item__img-btn:hover, .group-card .group-item__img-btn:focus {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.6); }
      .group-card .group-item__img-btn:active {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.8); }
    .group-card .group-item__content {
      padding: 16px; }
      @media (min-width: 768px) {
        .group-card .group-item__content {
          padding: 20px; } }
      @media (min-width: 992px) {
        .group-card .group-item__content {
          padding: 20px 30px; } }
    .group-card .group-item__title {
      margin: 0;
      padding: 14px 20px;
      padding-left: 110px;
      color: #fff;
      background-color: #4668cc;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.2;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px; }
      @media (min-width: 768px) {
        .group-card .group-item__title {
          padding: 14px 30px;
          padding-left: 170px;
          font-size: 30px; } }
      .group-card .group-item__title a {
        font-size: 24px;
        display: block;
        color: #fff; }
        .group-card .group-item__title a:hover, .group-card .group-item__title a:focus {
          color: white; }
        .group-card .group-item__title a:active {
          color: #ededed; }
    .group-card .group-item__desc {
      margin-bottom: 16px;
      font-size: 16px;
      color: #333; }
      @media (min-width: 768px) {
        .group-card .group-item__desc {
          padding-left: 150px;
          min-height: 20px; } }
      @media (min-width: 992px) {
        .group-card .group-item__desc {
          padding-left: 142px; } }
    .group-card .group-item__leader-btn {
      margin-top: 10px;
      text-align: right; }

.group-item__member {
  position: relative;
  padding: 14px;
  border-bottom: 3px solid #eeeeee;
  float: left;
  width: 80%;
  left: 10%;
  background-color: #fff;
  margin-top: 3px; }
  @media (min-width: 768px) {
    .group-item__member {
      padding: 14px 20px; } }
  .group-item__member .team-leader-info {
    margin-bottom: 10px;
    width: 100%;
    transform: none;
    float: left; }
    @media (min-width: 1024px) {
      .group-item__member .team-leader-info {
        width: 220px;
        position: relative;
        left: 20px;
        top: 50%;
        margin-bottom: 0; } }
    .group-item__member .team-leader-info__badge {
      padding: 6px;
      width: 30px;
      line-height: 1.3em;
      float: left;
      display: block;
      margin: 0 4% auto 0;
      position: absolute;
      left: -40px; }
    .group-item__member .team-leader-info__name {
      display: block;
      font-size: 18px;
      overflow: visible;
      max-height: 122px;
      word-break: break-all;
      line-height: 1.3em;
      width: 125px;
      color: #595757; }
      .group-item__member .team-leader-info__name:hover, .group-item__member .team-leader-info__name:focus {
        color: #4668cc; }
      .group-item__member .team-leader-info__name:active {
        color: #4668cc; }
      @media (max-width: 1024px) {
        .group-item__member .team-leader-info__name {
          width: 100%; } }
  .group-item__member .member {
    padding-top: 18px; }
  .group-item__member__content {
    padding: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    float: left;
    background-color: #E7E7F2;
    width: 100%; }
    @media (min-width: 768px) {
      .group-item__member__content {
        margin-left: 0;
        padding: 10px 20px; } }
    @media (min-width: 1024px) {
      .group-item__member__content {
        width: calc(100% - 240px); } }
    .group-item__member__content > a {
      font-size: 18px; }
    .group-item__member__content .contestants-list__title {
      margin-bottom: 0;
      color: #595757; }
      .group-item__member__content .contestants-list__title:hover, .group-item__member__content .contestants-list__title:focus {
        color: #4668cc; }
      .group-item__member__content .contestants-list__title:active {
        color: #4668cc; }
      @media (max-width: 767px) {
        .group-item__member__content .contestants-list__title {
          font-size: 16px; } }
  .group-item__member__btn {
    margin-top: 8px;
    text-align: right; }
    @media (min-width: 768px) {
      .group-item__member__btn {
        position: relative;
        right: 30px;
        top: 20px;
        bottom: auto;
        margin-top: 0; } }
    .group-item__member__btn .btn-style--warning {
      font-size: 1.6rem;
      padding: 6px 10px; }

@media (max-width: 1680px) {
  .section--group {
    background-size: 90%, cover; }

  .section--slogan .sloganbox__text {
    margin-top: 10px; } }
@media (max-width: 1400px) {
  .section--group {
    background-size: 110%, cover; }

  .section--slogan .sloganbox {
    background-size: 100%;
    padding-top: 0px; }

  .section--slogan .sloganbox__text {
    margin: 12rem 0; }

  .section--kv .kv__text {
    width: 40%; } }
@media (max-width: 1216px) {
  .section--kv .kv__text {
    width: 45%; }

  .section--slogan .sloganbox {
    background-size: 100%;
    background-image: url(../../../../images/ironman/10th/bg-slogan-s.png), linear-gradient(to bottom, #ffd82f 0%, #b87f12 100%);
    background-position: right; }

  .section--slogan .sloganbox__text {
    margin: 12rem 0; }

  .section--group {
    background-size: 100%, cover; } }
@media (max-width: 1199px) {
  .navbar-inverse .menu-user__name {
    width: 100%;
    border-left: none; }
    .navbar-inverse .menu-user__name:hover, .navbar-inverse .menu-user__name:focus {
      border-left: none; }

  .fa-chevron-down:before {
    content: ''; }

  .navbar-inverse .menu-user--down {
    display: block;
    float: left;
    top: 0;
    background-color: #999999;
    height: auto !important; } }
  @media (max-width: 1199px) and (max-width: 1199px) {
    .navbar-inverse .menu-user--down {
      left: 0; } }

@media (max-width: 1199px) {
  .navbar-inverse .menu-user {
    margin-left: 0px; }

  .navbar-inverse .menu-user a {
    max-width: 100%; }

  .navbar-inverse .menu-user .menu-user__name--login-a {
    color: #ffffff; } }
@media (max-width: 990px) {
  .section--kv .kv__text {
    width: 70%;
    position: absolute;
    left: 0;
    bottom: 0; }

  .section--slogan .sloganbox {
    padding: 9% 0;
    background-image: #fff url(../../../../images/ironman/10th/bg-slogan-s.png), linear-gradient(to bottom, #fff 0%, #fff 100%); }

  .section--slogan .sloganbox__title {
    font-size: 2.7rem;
    margin-top: 0; }

  h3 {
    font-size: 20px;
    margin: 2% 0 2%; }

  h4 {
    font-size: 22px;
    margin: 2% 0 1%; }

  p {
    font-size: 1.6rem;
    line-height: 1.5em; }

  .section--speaker .speaker-card {
    background: #ffffff;
    padding: 1% 0;
    border-bottom: 5px solid #bd0101; }

  .section--speaker .speaker-card__man img {
    width: 20%;
    left: 0;
    float: left; }

  .section--speaker .speaker-card__man .ban {
    background: transparent;
    position: relative;
    display: inline-block;
    float: right;
    width: auto;
    height: auto;
    padding: 1%;
    color: #333; }
    .section--speaker .speaker-card__man .ban:before {
      background: transparent;
      border: none; }
    .section--speaker .speaker-card__man .ban:after {
      background: transparent;
      border: none; }

  .section--speaker .speaker-card__man .ban__til {
    color: #957900; }

  .section--speaker .speaker-card__man .ban__name {
    color: #333;
    font-size: 2.8rem; }

  .section--speaker .speaker-card__quote {
    width: 90%;
    font-size: 1.9rem;
    display: block;
    top: auto;
    float: left;
    left: 5%;
    margin-top: 5%; }

  .section--speaker .speaker-card__video {
    float: right;
    position: relative;
    border-bottom: 3px solid #ddd;
    border-radius: 0;
    width: 96%;
    right: 0;
    margin: 2%;
    background: #eee; }

  .section--award .award--content__item {
    width: 48%;
    left: 0; }
    .section--award .award--content__item p {
      height: 50px;
      margin: 1% 3%; }
    .section--award .award--content__item h4 {
      margin: 5% 0 2%; }

  .award--content__item__img img {
    width: 250px;
    margin: auto; }

  .section--award .more {
    background: #580000;
    border: 2px solid #fff;
    padding: 3% 5%;
    margin: 3%;
    width: 100%;
    border-radius: 10px;
    text-align: center; }

  .section--share {
    background: #a21b02 url(../../../../images/ironman/10th/bg-share.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom; }

  .section--org .org__logobox {
    right: 0;
    float: left;
    width: 100%;
    padding: 2%;
    margin-top: 2%; }
    .section--org .org__logobox img {
      float: none;
      margin: auto; } }
@media (max-width: 768px) {
  .navbar-inverse .navbar-nav li a.sponsor:after {
    right: 30px; }

  .title:before {
    top: -6rem;
    background-size: 80%;
    left: calc(50% - 24px); }

  .section--speaker .title:before {
    top: -6rem;
    background-size: 80%;
    left: calc(50% - 24px); }

  .section--ten {
    padding: 2rem 1.5rem; }

  .section--ten h1 {
    font-size: 5rem; }
    .section--ten h1 span {
      font-size: 9rem; }

  .section--ten h4 {
    font-size: 2.5rem; }
    .section--ten h4 .num {
      font-size: 3rem;
      display: inline-block;
      margin: 5px auto;
      width: auto; }

  .section--slogan .sloganbox {
    background: linear-gradient(to bottom, #fdf7dd 0%, #ffd482 100%); }

  .section--slogan .sloganbox__text {
    margin: 0; }

  .type--content {
    text-align: center; }

  .section--type .type--content__til:after {
    left: calc(50% - 72px); }

  .section--type .type--content__ul {
    text-align: left;
    margin: 8%;
    margin-left: 30%; }

  .section--award .award--content__item.center {
    margin: auto;
    padding-top: 5px; }

  .section--group {
    background-image: linear-gradient(to bottom, #ffdf50 0%, #ffd30f 50%, #a58018 100%); } }
@media (max-width: 667px) {
  .section--ten h1 {
    font-size: 3rem; } }
@media (max-width: 480px) {
  section {
    padding: 6rem .5rem 3rem; }

  .section--kv .kv__text {
    width: 100%;
    top: 0; }

  .section--slogan .sloganbox {
    background: linear-gradient(to bottom, #fdf7dd 0%, #ffd482 100%); }

  .section--ten h1 {
    font-size: 30px;
    max-width: 250px;
    margin: auto; }
    .section--ten h1 span {
      font-size: 5rem; }

  .section--ten h4 .num {
    font-size: 3rem; }

  .section--type .type--content__til:after {
    top: 45px; }

  .section--award .award--content__item {
    width: 100%;
    margin: 1% auto;
    padding-top: 2%; }
    .section--award .award--content__item img {
      width: 180px;
      margin: auto; }

  .section--award .ribbon {
    background-size: 100%;
    width: 100%; }

  .section--speaker .speaker-card__man .ban {
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: block;
    text-align: center; }

  .section--speaker .speaker-card__man .ban__til {
    color: #ffd82f;
    z-index: 9;
    position: relative; }

  .section--speaker .speaker-card__man .ban__name {
    color: #ffffff;
    z-index: 9;
    position: relative; }

  .section--speaker .speaker-card__video {
    width: 100%;
    margin: 0;
    margin-bottom: -4%;
    padding-bottom: 4%; }

  .section--speaker .speaker-card__man img {
    position: relative;
    position: relative;
    width: 70%;
    float: none;
    margin: auto;
    z-index: -1; }

  .section--org .org__logobox img {
    max-width: 100%; }

  .section--org .title:before {
    background-size: 80%;
    top: -6rem; }

  .section--org .org__logobox-left {
    right: 0;
    float: left;
    width: 100%;
    padding: 2%; } }
body {
  background-image: url(../../../../images/ironman/11th/signup/footerbg.png), linear-gradient(to bottom, rgba(111, 57, 14, 0.3), rgba(255, 157, 41, 0)), url(../../../../images/ironman/11th/signup/background.jpg);
  background-position: center bottom, center, center top;
  background-size: 100%;
  background-color: #1a2948; }

.col-3 {
  float: left;
  width: 60%; }

.col-3 .w2x {
  width: calc((100% / 3)*2); }

.col-3 .w1x {
  width: calc(100% / 3); }

.col-2 {
  float: left;
  width: 40%; }

.col-2 .w2x {
  width: 100%; }

.col-2 .w1x {
  width: 50%; }

.w2x {
  float: left;
  padding: 2px; }

.w2x img {
  width: 100%; }

.w1x {
  float: left;
  padding: 2px; }

.w1x img {
  width: 100%; }

.highlights {
  margin-top: 30px;
  margin-bottom: 5%; }
  .highlights h2 {
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #fff; }
  .highlights-imgbox {
    margin: 0 0 21px 0;
    transition: .1s linear; }
    @media (min-width: 992px) {
      .highlights-imgbox:nth-of-type(1) {
        margin: 0; } }
    @media (min-width: 992px) {
      .highlights-imgbox:nth-of-type(2), .highlights-imgbox:nth-of-type(3) {
        margin: 0 0 1.5% 0; } }
    @media (min-width: 992px) {
      .highlights-imgbox:nth-of-type(4), .highlights-imgbox:nth-of-type(5), .highlights-imgbox:nth-of-type(6), .highlights-imgbox:nth-of-type(7), .highlights-imgbox:nth-of-type(8), .highlights-imgbox:nth-of-type(9), .highlights-imgbox:nth-of-type(10), .highlights-imgbox:nth-of-type(11), .highlights-imgbox:nth-of-type(12) {
        margin: 0 0 1.5% 0; } }
    .highlights-imgbox:nth-of-type(14) {
      padding-bottom: 3px; }
      @media (max-width: 1200px) {
        .highlights-imgbox:nth-of-type(14) {
          padding-bottom: 8px; } }
      @media (max-width: 991px) {
        .highlights-imgbox:nth-of-type(14) {
          padding-bottom: 0px; } }
    .highlights-imgbox:hover, .highlights-imgbox:hover {
      -webkit-filter: brightness(110%);
      filter: brightness(110%);
      transform: scale(1.02);
      -webkit-transform: scale(1.02); }
  .highlights-links {
    margin-top: 20px;
    clear: both; }
    .highlights-links li {
      width: 49%; }
  .highlights-item {
    position: relative;
    display: inline-block;
    padding: 8px 16px; }
    .highlights-item:before, .highlights-item:after {
      position: absolute;
      left: 0;
      bottom: 0;
      content: '';
      width: 100%;
      height: 2px;
      transition: .4s linear; }
    .highlights-item:after {
      width: 0; }
    .highlights-item:hover:after {
      width: 100%; }

@media (max-width: 414px) {
  .col-3,
  .col-2 {
    width: 100%;
    float: none; }

  .col-3 .w2x,
  .col-2 .w2x {
    width: 25%; }

  .col-3 .w1x,
  .col-2 .w1x {
    width: 25%; } }
@media (min-width: 415px) {
  .block-clear::after {
    display: block;
    content: "";
    clear: both; } }

/*# sourceMappingURL=main-signup.css.map */
