@charset "UTF-8";
/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}

a img {
  border: 0;
}

:focus {
  outline: 0;
}

body, #page {
  background: #f7f7f7;
}

body {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.85);
  font-family: Arial, sans-serif;
  /*line-height: 1.5;*/
  -webkit-text-size-adjust: 100%;
}

body.disable-all-button {
  pointer-events: none;
}

a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*/

.layout {
  zoom: 1;
  margin: 0 auto;
  position: relative;
  max-width: 1080px;
  width: 100%;
}

.layout::before {
  content: '';
  display: block;
}

.layout::after {
  clear: both;
  content: '';
  display: table;
}

.svg .color-darkblue {
  fill: #072644;
}

.svg .color-primary {
  fill: #e60012;
}

.mainbtn {
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
}

.mainbtn-primary-lv1 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e60012;
  color: white;
  border: none !important;
  padding: 12px 16px !important;
  font-size: 16px;
}

.mainbtn-primary-lv1:hover {
  text-decoration: none;
}

.mainbtn-primary-lv1:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-primary-lv1.disabled {
  pointer-events: none;
}

.mainbtn-primary-lv1:hover:after {
  background: white;
  opacity: .1;
}

.mainbtn-primary-lv1.disabled {
  opacity: .2;
}

.mainbtn-primary-lv2 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e60012;
  color: white;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 14px;
}

.mainbtn-primary-lv2:hover {
  text-decoration: none;
}

.mainbtn-primary-lv2:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-primary-lv2.disabled {
  pointer-events: none;
}

.mainbtn-primary-lv2:hover:after {
  background: white;
  opacity: .1;
}

.mainbtn-primary-lv2.disabled {
  opacity: .2;
}

.mainbtn-primary-lv3 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e60012;
  color: white;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 12px;
}

.mainbtn-primary-lv3:hover {
  text-decoration: none;
}

.mainbtn-primary-lv3:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-primary-lv3.disabled {
  pointer-events: none;
}

.mainbtn-primary-lv3:hover:after {
  background: white;
  opacity: .1;
}

.mainbtn-primary-lv3.disabled {
  opacity: .2;
}

.mainbtn-secondary-lv1 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 12px 16px !important;
  font-size: 16px;
}

.mainbtn-secondary-lv1:hover {
  text-decoration: none;
}

.mainbtn-secondary-lv1:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-secondary-lv1.disabled {
  pointer-events: none;
}

.mainbtn-secondary-lv1:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.mainbtn-secondary-lv1.disabled {
  opacity: .4;
}

.mainbtn-secondary-lv2 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 16px !important;
  font-size: 14px;
}

.mainbtn-secondary-lv2:hover {
  text-decoration: none;
}

.mainbtn-secondary-lv2:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-secondary-lv2.disabled {
  pointer-events: none;
}

.mainbtn-secondary-lv2:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.mainbtn-secondary-lv2.disabled {
  opacity: .4;
}

.mainbtn-secondary-lv3 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 16px !important;
  font-size: 12px;
}

.mainbtn-secondary-lv3:hover {
  text-decoration: none;
}

.mainbtn-secondary-lv3:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-secondary-lv3.disabled {
  pointer-events: none;
}

.mainbtn-secondary-lv3:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.mainbtn-secondary-lv3.disabled {
  opacity: .4;
}

.mainbtn-secondary-dark-lv1 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 12px 16px !important;
  font-size: 16px;
}

.mainbtn-secondary-dark-lv1:hover {
  text-decoration: none;
}

.mainbtn-secondary-dark-lv1:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-secondary-dark-lv1.disabled {
  pointer-events: none;
}

.mainbtn-secondary-dark-lv1:hover:after {
  background: white;
  opacity: .04;
}

.mainbtn-secondary-dark-lv2 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 8px 16px !important;
  font-size: 14px;
}

.mainbtn-secondary-dark-lv2:hover {
  text-decoration: none;
}

.mainbtn-secondary-dark-lv2:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-secondary-dark-lv2.disabled {
  pointer-events: none;
}

.mainbtn-secondary-dark-lv2:hover:after {
  background: white;
  opacity: .04;
}

.mainbtn-secondary-dark-lv3 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 8px 16px !important;
  font-size: 12px;
}

.mainbtn-secondary-dark-lv3:hover {
  text-decoration: none;
}

.mainbtn-secondary-dark-lv3:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-secondary-dark-lv3.disabled {
  pointer-events: none;
}

.mainbtn-secondary-dark-lv3:hover:after {
  background: white;
  opacity: .04;
}

.mainbtn-verification-lv1 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background-color: #28a745;
  color: white;
  padding: 12px 16px !important;
  font-size: 16px;
}

.mainbtn-verification-lv1:hover {
  text-decoration: none;
}

.mainbtn-verification-lv1:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-verification-lv1.disabled {
  pointer-events: none;
}

.mainbtn-verification-lv1:hover:after {
  background: white;
  opacity: .1;
}

.mainbtn-verification-lv1.disabled {
  opacity: .2;
}

.mainbtn-verification-lv2 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background-color: #28a745;
  color: white;
  padding: 8px 16px !important;
  font-size: 14px;
}

.mainbtn-verification-lv2:hover {
  text-decoration: none;
}

.mainbtn-verification-lv2:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-verification-lv2.disabled {
  pointer-events: none;
}

.mainbtn-verification-lv2:hover:after {
  background: white;
  opacity: .1;
}

.mainbtn-verification-lv2.disabled {
  opacity: .2;
}

.mainbtn-verification-lv3 {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background-color: #28a745;
  color: white;
  padding: 8px 16px !important;
  font-size: 12px;
}

.mainbtn-verification-lv3:hover {
  text-decoration: none;
}

.mainbtn-verification-lv3:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainbtn-verification-lv3.disabled {
  pointer-events: none;
}

.mainbtn-verification-lv3:hover:after {
  background: white;
  opacity: .1;
}

.mainbtn-verification-lv3.disabled {
  opacity: .2;
}

.languageSelect {
  position: relative;
  color: rgba(0, 0, 0, 0.85);
}

.languageSelect .selectedLanguage {
  font-size: 12px;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.languageSelect .selectedLanguage img, .languageSelect .selectedLanguage svg {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  margin-right: 3px;
}

.languageSelect .selectedLanguage::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(0, 0, 0, 0.85);
  border-right: 2px solid rgba(0, 0, 0, 0.85);
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  margin: 0 0 3px 8px;
}

.languageSelect.open .selectedLanguage::after {
  border-top: none !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.85);
  border-right: none !important;
  border-left: 2px solid rgba(0, 0, 0, 0.85);
  margin-bottom: 0;
}

.languageSelect ul {
  background: rgba(0, 0, 0, 0.85);
  display: none;
  list-style: none;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  width: 161px;
  padding: 10px 0;
}

.languageSelect ul li {
  text-align: left;
}

.languageSelect ul li > * {
  display: block;
  padding: 8px 24px;
  padding-right: 0;
  color: white;
}

.languageSelect ul li a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.languageSelect ul li > span::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 6px;
  border-left: 3px solid #e60012;
  border-bottom: 3px solid #e60012;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 0 4px 12px;
}

.languageSelect.language-top ul, .languageSelect.language-side ul, .languageSelect.language-sp ul {
  position: absolute;
}

.languageSelect.language-top {
  width: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.languageSelect.language-top .selectedLanguage {
  margin: auto;
}

.languageSelect.language-top ul {
  right: 0;
}

.languageSelect.language-side .selectedLanguage img, .languageSelect.language-side .selectedLanguage svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.languageSelect.language-side ul {
  bottom: 40px;
}

.languageSelect.language-sp .selectedLanguage {
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}

.languageSelect.language-sp ul {
  position: static;
  background: transparent;
  font-size: 16px;
  font-weight: normal;
}

.languageSelect.language-bottom {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.languageSelect.language-bottom .selectedLanguage {
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  padding-left: 15px;
}

.languageSelect.language-bottom ul {
  position: absolute;
  top: 35px;
  z-index: 1;
}

@media (min-width: 661px), (max-width: 480px) {
  .languageSelect.language-bottom ul {
    right: 0;
  }
}

.general .languageSelect.language-top .selectedLanguage, .general .languageSelect.language-side .selectedLanguage, .general .languageSelect.language-sp .selectedLanguage {
  color: rgba(0, 0, 0, 0.5);
}

.general .languageSelect.language-top .selectedLanguage svg *, .general .languageSelect.language-side .selectedLanguage svg *, .general .languageSelect.language-sp .selectedLanguage svg * {
  fill: rgba(0, 0, 0, 0.5);
}

.general .languageSelect.language-top .selectedLanguage::after, .general .languageSelect.language-side .selectedLanguage::after, .general .languageSelect.language-sp .selectedLanguage::after {
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
}

.general .languageSelect.language-top.open .selectedLanguage::after, .general .languageSelect.language-side.open .selectedLanguage::after, .general .languageSelect.language-sp.open .selectedLanguage::after {
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(0, 0, 0, 0.5);
}

.general .languageSelect ul li > * {
  color: rgba(0, 0, 0, 0.85);
}

.general .languageSelect ul li a:hover {
  background: rgba(0, 0, 0, 0.07);
}

.general .languageSelect.language-top ul, .general .languageSelect.language-side ul {
  background: white;
}

.general .languageSelect.language-sp ul {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.adult .languageSelect.language-top .selectedLanguage, .adult .languageSelect.language-side .selectedLanguage, .adult .languageSelect.language-sp .selectedLanguage {
  color: rgba(255, 255, 255, 0.6);
}

.adult .languageSelect.language-top .selectedLanguage svg *, .adult .languageSelect.language-side .selectedLanguage svg *, .adult .languageSelect.language-sp .selectedLanguage svg * {
  fill: rgba(255, 255, 255, 0.6);
}

.adult .languageSelect.language-top .selectedLanguage::after, .adult .languageSelect.language-side .selectedLanguage::after, .adult .languageSelect.language-sp .selectedLanguage::after {
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  border-right: 2px solid rgba(255, 255, 255, 0.6);
}

.adult .languageSelect.language-top.open .selectedLanguage::after, .adult .languageSelect.language-side.open .selectedLanguage::after, .adult .languageSelect.language-sp.open .selectedLanguage::after {
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  border-left: 2px solid rgba(255, 255, 255, 0.6);
}

/******************************
共通modal

使用しているモーダルのhtml
message/views/scripts/index/delete.html
message/views/scripts/detail-view/delete.html
games/views/scripts/download/download-info.html
games/views/scripts/app/info.html
******************************/
.commonModal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  /* modal-overlayのz-indexが14のため **/
  z-index: 14;
}

.commonModal.large {
  max-width: 720px;
}

.commonModal .title {
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.commonModal .mainContents {
  margin: 32px 0;
  text-align: center;
}

.commonModal .closeButton {
  position: absolute;
  top: -35px;
  right: -10px;
  width: 42px;
  height: 42px;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  cursor: pointer;
  border: none;
  background: none;
}

.commonModal .closeButton:before, .commonModal .closeButton:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 4px;
  height: 42px;
  background-color: white;
}

.commonModal .closeButton:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.commonModal .closeButton:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.commonModal .closeButton:hover {
  opacity: .6;
}

.commonModal .buttonWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 28px;
}

.commonModal .buttonWrapper > button {
  width: 153px;
  margin: 0 12px;
}

.commonModal.off {
  pointer-events: none;
}

body.modal-open section {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.modal-overlay {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  width: 100%;
  height: 100%;
  z-index: 14;
}

.modal-overlay.open {
  display: block;
}

@media (max-width: 660px) {
  .commonModal {
    width: 85%;
  }
  .commonModal.large {
    width: 90%;
  }
}

.download-purchase-confirm-modal {
  padding: 24px 16px 0;
}

.download-purchase-confirm-modal .img-wrapper {
  width: 136px;
  height: auto;
  position: relative;
  height: 188px;
  overflow: hidden;
  margin: 0 auto 12px;
}

.download-purchase-confirm-modal .img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}

.download-purchase-confirm-modal .game-title {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 8px;
}

.download-purchase-confirm-modal .requirements {
  text-align: center;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: normal;
}

.download-purchase-confirm-modal .requirements > span {
  margin-right: 24px;
}

.download-purchase-confirm-modal .requirements > span:last-child {
  margin-right: 0;
}

.download-purchase-confirm-modal .requirements > span > span {
  margin-left: 4px;
}

.download-purchase-confirm-modal .requirements > span > span img, .download-purchase-confirm-modal .requirements > span > span svg {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

.download-purchase-confirm-modal .requirements > span > span img *, .download-purchase-confirm-modal .requirements > span > span svg * {
  fill: rgba(0, 0, 0, 0.5);
}

.download-purchase-confirm-modal form {
  background: none;
  border: none;
  padding: 0;
}

.download-purchase-confirm-modal .purchase-button-wrapper {
  width: 280px;
  margin: auto;
  text-align: center;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-shortage {
  font-size: 14px;
  font-weight: bold;
  color: rgba(164, 0, 0, 0.85);
  margin-bottom: 12px;
  border: 1px solid rgba(164, 0, 0, 0.85);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-shortage img {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-add-credit img {
  margin-right: 4px;
  width: 21px;
  height: 21px;
  vertical-align: middle;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-add-credit span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-add-credits {
  font-size: 10px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-store {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #4098ff;
  margin-top: 12px;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-credit img {
  margin-right: 4px;
  width: 21px;
  height: 21px;
  vertical-align: middle;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-credit > span {
  font-size: 16px;
  margin-left: auto;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-credit .equivalent-price {
  text-align: right;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-credit .equivalent-price img {
  width: 16px;
  height: 16px;
  vertical-align: text-top;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-credit .equivalent-price span {
  display: block;
  font-size: 10px;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-or {
  font-size: 12px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 12px 0;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-or:before, .download-purchase-confirm-modal .purchase-button-wrapper .text-or:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  display: block;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-or:before {
  margin-right: .6em;
}

.download-purchase-confirm-modal .purchase-button-wrapper .text-or:after {
  margin-left: .6em;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-card img {
  margin-right: 4px;
  width: 21px;
  height: 21px;
  vertical-align: middle;
}

.download-purchase-confirm-modal .purchase-button-wrapper .button-purchase-card > span {
  font-size: 16px;
  margin-left: auto;
}

@media (max-width: 480px) {
  .download-purchase-confirm-modal .purchase-button-wrapper {
    width: auto;
  }
}

.download-purchase-confirm-modal .receive-updates-games {
  padding: 32px 0;
  text-align: center;
}

.download-purchase-confirm-modal .receive-updates-games input {
  vertical-align: top;
  width: 14px;
  height: 14px;
}

.download-purchase-confirm-modal.large .img-wrapper {
  width: 104px;
  height: auto;
  height: 144px;
}

.download-purchase-waiting-modal {
  padding: 16px 0;
}

.download-purchase-waiting-modal .spinner {
  margin: 16px auto 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  border-left: 5px solid rgba(0, 0, 0, 0.25);
  -webkit-animation: spinnerAnim 0.6s infinite linear;
  animation: spinnerAnim 0.6s infinite linear;
}

@-webkit-keyframes spinnerAnim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinnerAnim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.download-purchase-waiting-modal .main-text {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  padding: 16px;
}

.download-purchase-waiting-modal .button-continue {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

.download-purchase-error {
  margin-bottom: 16px;
}

.download-purchase-error .main-text {
  text-align: center;
  padding: 16px 0;
}

.download-purchase-error button {
  display: block;
  max-width: 280px;
  margin: auto;
}

.download-purchase-finish-modal .bg-wrapper {
  position: absolute;
  width: 100%;
  height: 130px;
  overflow: hidden;
  z-index: -1;
}

.download-purchase-finish-modal .bg-wrapper .bg {
  position: relative;
  height: 100%;
}

.download-purchase-finish-modal .bg-wrapper .bg img {
  width: 100%;
}

.download-purchase-finish-modal .bg-wrapper .bg:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), white);
  background: linear-gradient(rgba(255, 255, 255, 0), white);
}

.download-purchase-finish-modal .head-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-top: 48px;
}

.download-purchase-finish-modal .center-text {
  text-align: center;
  padding-top: 32px;
}

.download-purchase-finish-modal .center-text.single {
  padding-bottom: 24px;
}

.download-purchase-already-modal .center-text {
  text-align: center;
  padding-top: 32px;
}

.download-purchase-already-modal .center-text.single {
  padding-bottom: 24px;
}

.application-games-list {
  margin: 0 -8px 20px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.application-games-list--full {
  margin-right: auto;
  margin-left: auto;
  max-width: 1040px;
}

.application-games-list li {
  width: 192px;
  margin: 0 8px 16px;
}

.application-games-list li a {
  height: 100%;
  padding: 0 0 8.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.application-games-list li a .application-games-thumbnail-wrapper {
  position: relative;
  width: 100%;
  min-height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.application-games-list li a .application-games-thumbnail-wrapper .application-games-thumbnail {
  opacity: 1;
}

.application-games-list li a .application-games-thumbnail-wrapper .application-games-thumbnail img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon > img, .application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon svg {
  width: 24px;
  height: 24px;
}

.application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon.icon-sp > img *, .application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon.icon-sp svg * {
  fill: white;
}

.application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon.icon-android_app > img *, .application-games-list li a .application-games-thumbnail-wrapper .application-games-device-icon.icon-android_app svg * {
  fill: #A4C639;
}

.application-games-list li a .application-games-info {
  width: 100%;
  padding: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.application-games-list li a .application-games-info .application-games-title {
  font-size: 14px;
  font-weight: normal;
  width: 100%;
  height: 3em;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.application-games-list li a .application-games-info .application-games-genres {
  width: 100%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.application-games-list li a .application-games-info .application-games-genres span {
  font-size: 10px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
}

.application-games-list li a .application-games-info .application-games-genres span:not(:last-child) {
  margin: 0 8px 0 0;
}

.application-games-list li a .application-games-info .application-games-detail {
  width: 100%;
  height: 2.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms,
.application-games-list li a .application-games-info .application-games-detail .application-games-os {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span {
  font-size: 0;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span svg path,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span:not(:last-child),
.application-games-list li a .application-games-info .application-games-detail .application-games-os span:not(:last-child) {
  margin: 0 8px 0 0;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span.is-pc svg, .application-games-list li a .application-games-info .application-games-detail .application-games-platforms span.is-android_app svg,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span.is-pc svg,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span.is-android_app svg {
  width: 13px;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span.is-sp svg,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span.is-sp svg {
  width: 15px;
  height: 19px;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span.is-windows svg, .application-games-list li a .application-games-info .application-games-detail .application-games-platforms span.is-linux svg,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span.is-windows svg,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span.is-linux svg {
  width: 14px;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-platforms span.is-mac svg,
.application-games-list li a .application-games-info .application-games-detail .application-games-os span.is-mac svg {
  width: 14px;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price {
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price.is-owned {
  color: #28a745;
  position: relative;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price.is-owned span {
  display: inline-block;
  vertical-align: middle;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price.is-owned::before {
  width: 10px;
  height: 5px;
  margin: 0 auto 3px;
  content: '';
  display: inline-block;
  vertical-align: middle;
  border: 2px solid #28a745;
  border-right: none;
  border-top: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-price-discount-rate {
  color: #e60012;
  font-size: 10px;
  font-weight: bold;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-credits-established {
  font-size: 10px;
  font-weight: normal;
  text-decoration: line-through;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-credits-established::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("/images/icon/virtual_currency.svg");
  background-size: cover;
  vertical-align: middle;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-price-established {
  font-size: 10px;
  font-weight: normal;
  text-decoration: line-through;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-result-credits {
  width: 100%;
  display: inline-block;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-result-credits::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("/images/icon/virtual_currency.svg");
  background-size: cover;
  vertical-align: middle;
}

.application-games-list li a .application-games-info .application-games-detail .application-games-price .application-games-result-price {
  width: 100%;
  display: inline-block;
}

.application-games-list li a:hover {
  top: 2px;
  text-decoration: none;
}

.application-games-list li a:hover .application-games-thumbnail {
  opacity: .7;
}

@media (max-width: 800px) {
  .application-games-list li {
    width: 160px;
  }
  .application-games-list li a .application-games-thumbnail-wrapper {
    min-height: 160px;
  }
}

.purchase-modal-overlay {
  min-height: 600px;
  background: rgba(0, 0, 0, 0.5);
}

.purchase-modal-overlay.is-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.purchase-modal-wrapper {
  padding: 13% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.purchase-modal-wrapper .purchase-modal {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.purchase-modal .purchase-modal-inner {
  padding: 24px;
}

.purchase-modal .purchase-modal-thumbnail {
  max-width: 136px;
  margin: auto;
}

.purchase-modal .purchase-modal-thumbnail.is-small {
  max-width: 104px;
}

.purchase-modal .purchase-modal-thumbnail img {
  width: 100%;
}

.purchase-modal .purchase-modal-item-name {
  font-size: 16px;
  font-weight: normal;
  margin: 8px 0 0;
  text-align: center;
}

.purchase-modal .purchase-modal-box {
  margin: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.purchase-modal .purchase-modal-box .purchase-modal-text {
  color: rgba(0, 0, 0, 0.5);
}

.purchase-modal .purchase-modal-box .purchase-modal-totalAmount {
  margin: 0 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.purchase-modal .purchase-modal-box .purchase-modal-totalAmount .purchase-modal-totalAmount-icon {
  width: 30px;
}

.purchase-modal .purchase-modal-box .purchase-modal-totalAmount p {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 0 8px;
}

.purchase-modal .purchase-modal-info .purchase-modal-shortage {
  margin: 0 0 16px;
  text-align: center;
}

.purchase-modal .purchase-modal-info .purchase-modal-shortage .purchase-modal-shortage-inner {
  padding: 4px 16px;
  display: inline-block;
  color: rgba(164, 0, 0, 0.85);
  border: 1px solid rgba(164, 0, 0, 0.85);
  border-radius: 20px;
}

.purchase-modal .purchase-modal-info .purchase-modal-shortage .purchase-modal-shortage-inner img {
  display: inline-block;
  vertical-align: middle;
}

.purchase-modal .purchase-modal-info .purchase-modal-shortage .purchase-modal-shortage-inner span {
  margin: 0 0 0 4px;
  display: inline-block;
  vertical-align: middle;
}

.purchase-modal .purchase-modal-continue {
  display: none;
}

.purchase-modal .purchase-modal-continue .purchase-modal-continue-text {
  text-align: center;
}

.purchase-modal .purchase-modal-continue .purchase-modal-continue-text:nth-child(2) {
  margin: 16px 0;
}

.purchase-modal .purchase-modal-primary-button {
  max-width: 280px;
  margin: auto;
}

.purchase-modal .purchase-modal-primary-button a {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e60012;
  color: white;
  border: none !important;
  padding: 12px 16px !important;
  font-size: 16px;
}

.purchase-modal .purchase-modal-primary-button a:hover {
  text-decoration: none;
}

.purchase-modal .purchase-modal-primary-button a:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.purchase-modal .purchase-modal-primary-button a.disabled {
  pointer-events: none;
}

.purchase-modal .purchase-modal-primary-button a:hover:after {
  background: white;
  opacity: .1;
}

.purchase-modal .purchase-modal-primary-button a.disabled {
  opacity: .2;
}

.purchase-modal .purchase-modal-primary-button a .purchase-modal-primary-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.purchase-modal .purchase-modal-primary-button a .purchase-modal-primary-label span {
  margin: 0 0 0 4px;
}

.purchase-modal .purchase-modal-primary-button a .purchase-modal-primary-supplement {
  font-size: 12px;
  font-weight: normal;
  display: block;
}

.purchase-modal .purchase-modal-notice {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.purchase-modal .purchase-modal-more {
  margin: 16px 0 0;
  text-align: center;
}

.purchase-modal .purchase-modal-more a {
  color: #4098ff;
}

.purchase-modal .purchase-modal-error-text {
  text-align: center;
}

.purchase-modal .purchase-modal-error-text:not(:first-child) {
  margin: 16px 0;
}

.avatar-edit-modal .avatar-list-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list {
  height: 484px;
  overflow-y: scroll;
  background: #f7f7f7;
  list-style: none;
  padding-bottom: 24px;
  padding: 64px 0 24px;
  text-align: center;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li {
  position: relative;
  display: inline-block;
  max-width: 108px;
  width: 24%;
  margin: 24px 12px 0;
  cursor: pointer;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li img {
  width: 100%;
  border-radius: 50%;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li.active {
  pointer-events: none;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li.active img {
  border: 6px solid #28a745;
  padding: 4px;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li.active:before, .avatar-edit-modal .avatar-list-wrapper .avatar-list li.active:after {
  display: block;
  content: "";
  position: absolute;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li.active:before {
  right: 0;
  width: 32px;
  height: 32px;
  background: #28a745;
  border-radius: 50%;
}

.avatar-edit-modal .avatar-list-wrapper .avatar-list li.active:after {
  top: 10px;
  right: 8px;
  width: 14px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 480px) {
  .avatar-edit-modal .avatar-list-wrapper .avatar-list {
    height: 387px;
  }
}

.avatar-edit-modal .select-category-wrapper {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 256px;
  height: 48px;
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  padding: 0 12px 0 16px;
  border-radius: 40px;
}

.avatar-edit-modal .select-category-wrapper select {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-weight: normal;
  padding-right: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.avatar-edit-modal .select-category-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(0, 0, 0, 0.85);
  border-right: 2px solid rgba(0, 0, 0, 0.85);
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
}

.avatar-edit-modal .error-text {
  text-align: center;
  padding: 32px 0;
}

.character-bg {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.character-bg:not(.default) {
  min-height: 1000px;
}

.character-bg.default {
  background-image: url("../images/background/01.jpg");
}

.character-bg-sp {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  overflow: hidden;
}

.character-bg-sp:before {
  content: '';
  position: absolute;
  top: -4px;
  height: 4px;
  width: 100%;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.login-sec.character-bg.chara1 {
  background-image: url("../images/page/login/bg_01.jpg");
}

.login-sec.character-bg.chara2 {
  background-image: url("../images/page/login/bg_02.jpg");
}

.login-sec.character-bg.chara3 {
  background-image: url("../images/page/login/bg_03.jpg");
}

.signup-sec.character-bg {
  background-image: url("../images/page/signup/bg.jpg");
}

.age-check.character-bg {
  background-image: url("../images/page/age_verification/bg.jpg");
}

.age-check .character-bg-sp {
  background-image: url("../images/page/age_verification/bg_sp.jpg");
}

.publishers.character-bg {
  background-image: url("../images/page/publishers/bg.jpg");
}

.publishers .character-bg-sp {
  background-image: url("../images/page/publishers/bg_sp.jpg");
}

@media (min-width: 801px) {
  .about .about-Section {
    padding: 64px 16px;
  }
}

@media (max-width: 800px) {
  .about .about-Section {
    padding: 40px 16px;
  }
}

.about .about-Section.is-sns, .about .about-Section.is-platform {
  background-color: white;
}

@media (min-width: 801px) {
  .about .about-Section.is-popularGame {
    padding: 80px 16px;
  }
}

.about .about-Section .about-head {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.about .about-Section .about-caption {
  font-size: 16px;
  font-weight: normal;
  margin: 16px 0 0;
  text-align: center;
}

.about .about-mainTitle {
  text-align: center;
}

.about .about-mainTitle img {
  max-width: 360px;
  width: 100%;
}

@media (max-width: 800px) {
  .about .about-mainTitle img {
    width: 80%;
  }
}

.about .about-mainCaption {
  margin: 48px 0;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 800px) {
  .about .about-mainCaption {
    font-size: 24px;
    font-weight: bold;
  }
}

@media (max-width: 480px) {
  .about .about-mainCaption {
    font-size: 18px;
    font-weight: bold;
  }
}

.about .about-subCaption {
  max-width: 528px;
  margin: 48px auto;
}

.about .about-subCaption:last-child {
  margin: 48px auto 0;
}

.about .about-subCaption p {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}

.about .about-snsListWrapper {
  max-width: 868px;
  margin: 32px auto 0;
}

@media (max-width: 900px) {
  .about .about-snsListWrapper {
    max-width: 568px;
  }
}

.about .about-snsListWrapper .about-snsList {
  margin: 0 -16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about .about-snsListWrapper .about-snsList .about-snsItem {
  max-width: 268px;
  list-style-type: none;
}

.about .about-snsListWrapper .about-snsList .about-snsItem:not(:last-child) {
  margin: 0 16px 32px;
}

.about .about-snsListWrapper .about-snsList .about-snsItem.about-sns-facebook {
  color: #1877f2;
}

.about .about-snsListWrapper .about-snsList .about-snsItem.about-sns-discord {
  color: #7289da;
}

.about .about-snsListWrapper .about-snsList .about-snsItem.about-sns-twitter {
  color: #1da1f2;
}

.about .about-snsListWrapper .about-snsList .about-snsItem.about-sns-twitter .about-snsFrame {
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.about .about-snsListWrapper .about-snsList .about-snsItem.about-sns-youtube {
  max-width: 348px;
  width: 100%;
  color: #f00;
}

.about .about-snsListWrapper .about-snsList .about-snsItem.about-sns-youtube .about-snsFrame {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.about .about-snsListWrapper .about-snsList .about-snsItem .about-snsName {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px;
  text-align: center;
}

.about .about-popularGameListWrapper {
  margin: 32px auto 0;
}

.about .about-popularGameListWrapper .about-popularGameList {
  margin: 0 -16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .about .about-popularGameListWrapper .about-popularGameList {
    margin: 0 -8px;
  }
}

.about .about-popularGameListWrapper .about-popularGameList li {
  margin: 0 16px 20px;
}

@media (max-width: 480px) {
  .about .about-popularGameListWrapper .about-popularGameList li {
    width: 132px;
    margin: 0 8px 20px;
  }
}

.about .about-popularGameListWrapper .about-popularGameList li a {
  padding: 0 0 5em;
  pointer-events: none;
}

.about .about-platformList {
  max-width: 960px;
  margin: 32px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about .about-platformList .about-platformItem {
  max-width: 216px;
  width: 50%;
  list-style-type: none;
}

@media (max-width: 800px) {
  .about .about-platformList .about-platformItem {
    margin: 0 0 20px;
    padding: 0 8px;
  }
}

.about .about-platformList .about-platformItem .about-platformIcon {
  padding: 50% 0;
  border-radius: 50%;
  background-color: #f7f7f7;
  position: relative;
}

.about .about-platformList .about-platformItem .about-platformIcon img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about .about-platformList .about-platformItem .about-platformIcon.is-computer img {
  height: 81px;
}

@media (max-width: 480px) {
  .about .about-platformList .about-platformItem .about-platformIcon.is-computer img {
    height: 58px;
  }
}

.about .about-platformList .about-platformItem .about-platformIcon.is-phone img {
  height: 91px;
}

@media (max-width: 480px) {
  .about .about-platformList .about-platformItem .about-platformIcon.is-phone img {
    height: 72px;
  }
}

.about .about-platformList .about-platformItem .about-platformIcon.is-android img {
  height: 99px;
}

@media (max-width: 480px) {
  .about .about-platformList .about-platformItem .about-platformIcon.is-android img {
    height: 68px;
  }
}

.about .about-platformList .about-platformItem .about-platformIcon.is-get_app img {
  height: 87px;
}

@media (max-width: 480px) {
  .about .about-platformList .about-platformItem .about-platformIcon.is-get_app img {
    height: 64px;
  }
}

.about .about-platformList .about-platformItem .about-platformName {
  font-size: 16px;
  font-weight: normal;
  margin: 16px 0 0;
  padding: 0 24px;
  text-align: center;
}

.about .about-primaryButton,
.about .about-secondaryButton {
  max-width: 280px;
  margin: 24px auto 0;
}

.cookie-consent-bar {
  padding: 16px;
  text-align: left;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 13;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 901px) {
  .cookie-consent-bar {
    width: 100%;
    min-height: 87px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cookie-consent-bar .cookie-consent-bar-inner {
  max-width: 860px;
  margin: auto;
  position: relative;
}

@media screen and (min-width: 901px) {
  .cookie-consent-bar .cookie-consent-bar-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-text {
  width: 100%;
  margin: 0 40px 0 0;
  font-size: 12px;
  text-align: left;
}

@media screen and (min-width: 901px) {
  .cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-text {
    max-width: 585px;
  }
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-text a {
  color: #4098ff;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons {
  max-width: 280px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 900px) {
  .cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons {
    margin: 16px 0 0 auto;
  }
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-bar-error {
  width: 100%;
  margin: 0 0 8px;
  display: none;
  color: rgba(164, 0, 0, 0.85);
  font-size: 10px;
  text-align: center;
}

@media screen and (min-width: 901px) {
  .cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-bar-error {
    position: relative;
    top: 0;
    right: -60px;
  }
}

@media screen and (max-width: 900px) {
  .cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-bar-error {
    text-align: right;
  }
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-text-button {
  padding: 0;
  display: block;
  color: #4098ff;
  font-size: 12px;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-agree-button {
  max-width: 152px;
  width: 100%;
  margin: 0 0 0 24px;
  display: block;
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 16px !important;
  font-size: 14px;
  background: white;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-agree-button:hover {
  text-decoration: none;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-agree-button:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-agree-button.disabled {
  pointer-events: none;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-agree-button:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.cookie-consent-bar .cookie-consent-bar-inner .cookie-consent-bar-buttons .cookie-consent-agree-button.disabled {
  opacity: .4;
}

.cookie-consent-disagree {
  padding-bottom: 87px;
}

@media screen and (max-width: 900px) {
  .cookie-consent-disagree {
    padding-bottom: 142px;
  }
}

@media screen and (max-width: 480px) {
  .cookie-consent-disagree {
    padding-bottom: 180px;
  }
}

.recommended-game-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
}

.recommended-game-list li {
  width: 136px;
  height: auto;
  line-height: 18px;
  margin: 0 8px 16px;
}

.recommended-game-list li a {
  display: block;
  position: relative;
  background: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.recommended-game-list li a .img-wrapper {
  position: relative;
  height: 136px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.recommended-game-list li a .img-wrapper img {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.recommended-game-list li a .img-wrapper.large {
  height: 184px;
}

.recommended-game-list li a:hover {
  text-decoration: none;
  top: 2px;
}

.recommended-game-list li a:hover img {
  opacity: .7;
}

.recommended-game-list li a > p {
  text-align: center;
}

.recommended-game-list li a .title {
  font-size: 14px;
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 40px;
  padding: 2px 8px;
}

.recommended-game-list li a .discount-rate {
  font-size: 12px;
  font-weight: bold;
  color: #e60012;
  padding: 0 8px 2px;
}

.publishers .main-contents-wrapper {
  background: white;
  max-width: 624px;
  margin-top: 88px;
  padding: 56px 48px 48px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.publishers .main-contents-wrapper .main-title img {
  width: 318px;
  height: 96px;
}

.publishers .main-contents-wrapper .main-title h1 {
  font-size: 42px;
}

.publishers .main-contents-wrapper .main-text {
  margin: 40px 0 48px;
}

.publishers .main-contents-wrapper .main-text p:last-child {
  margin-top: 48px;
}

.publishers .main-contents-wrapper .btn-mail {
  width: 280px;
}

.publishers .main-contents-wrapper .btn-mail img,
.publishers .main-contents-wrapper .btn-mail svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: bottom;
}

.publishers .main-contents-wrapper .btn-mail img *,
.publishers .main-contents-wrapper .btn-mail svg * {
  fill: white;
}

.blue-divider {
  background: rgba(6, 30, 54, 0.5);
  border-top: 1px solid #045a89;
  display: block;
  height: 10px;
  width: 100%;
}

.gold-coin {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.index-age {
  margin-left: 10px;
}

.games .gameslist,
.games .dis-container,
.discounts .gameslist,
.discounts .dis-container {
  background: #04335b;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #04335b), color-stop(30%, #072340));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #04335b 0%, #072340 30%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#04335b), color-stop(30%, #072340));
  background: linear-gradient(to bottom, #04335b 0%, #072340 30%);
  /* W3C */
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$blue-gradient', endcolorstr='$htag2', gradienttype=0);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$blue-gradient', endcolorstr='$htag2', gradienttype=0);
  /* IE6-9 */
  padding: 40px 0;
}

.games .gameslist .error_img,
.games .dis-container .error_img,
.discounts .gameslist .error_img,
.discounts .dis-container .error_img {
  height: auto;
  padding: 15px;
  width: 100%;
}

.games .gameslist .dis-info,
.games .dis-container .dis-info,
.discounts .gameslist .dis-info,
.discounts .dis-container .dis-info {
  color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.games .gameslist .dis-info p.dis-text,
.games .dis-container .dis-info p.dis-text,
.discounts .gameslist .dis-info p.dis-text,
.discounts .dis-container .dis-info p.dis-text {
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 30px;
  word-wrap: break-word;
}

.games .gameslist .dis-info h2,
.games .dis-container .dis-info h2,
.discounts .gameslist .dis-info h2,
.discounts .dis-container .dis-info h2 {
  color: #e60012;
  font-size: 2.7em;
  margin-top: -10px;
  padding-bottom: 5px;
}

.games .gameslist .dis-info p.blue-text,
.games .dis-container .dis-info p.blue-text,
.discounts .gameslist .dis-info p.blue-text,
.discounts .dis-container .dis-info p.blue-text {
  color: #e60012;
  font-size: 2em;
  text-align: center;
  width: 100%;
}

.games .gameslist .dis-info p.blue-text .white-discounts,
.games .dis-container .dis-info p.blue-text .white-discounts,
.discounts .gameslist .dis-info p.blue-text .white-discounts,
.discounts .dis-container .dis-info p.blue-text .white-discounts {
  color: #fff;
}

.games .gameslist .dis-info .gold-store,
.games .dis-container .dis-info .gold-store,
.discounts .gameslist .dis-info .gold-store,
.discounts .dis-container .dis-info .gold-store {
  font-size: 1.2em;
  font-weight: 600;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 70px;
  padding-top: 11px;
  text-align: center;
  width: 180px;
}

.games .gameslist .dis-info .gold-store a,
.games .dis-container .dis-info .gold-store a,
.discounts .gameslist .dis-info .gold-store a,
.discounts .dis-container .dis-info .gold-store a {
  color: #fff;
  padding: 11px 16px;
}

.games .gameslist .dis-info .gold-store a:hover,
.games .dis-container .dis-info .gold-store a:hover,
.discounts .gameslist .dis-info .gold-store a:hover,
.discounts .dis-container .dis-info .gold-store a:hover {
  color: #9fceff;
}

.games .gameslist .jewel-box,
.games .dis-container .jewel-box,
.discounts .gameslist .jewel-box,
.discounts .dis-container .jewel-box {
  background-color: #061e36;
  border: 1px solid #04335b;
  color: #fff;
  display: block;
  font-size: 11.5px;
  margin: 0 auto;
  max-height: 460px;
  max-width: 650px;
  padding: 30px 70px;
  position: relative;
  text-align: center;
  width: 100%;
}

.games .gameslist .jewel-box img,
.games .dis-container .jewel-box img,
.discounts .gameslist .jewel-box img,
.discounts .dis-container .jewel-box img {
  height: 100%;
  width: 100%;
}

.games .gameslist .jewel-box p.jewel-text,
.games .dis-container .jewel-box p.jewel-text,
.discounts .gameslist .jewel-box p.jewel-text,
.discounts .dis-container .jewel-box p.jewel-text {
  margin-bottom: 20px !important;
}

.games .gameslist .save-jewel,
.games .dis-container .save-jewel,
.discounts .gameslist .save-jewel,
.discounts .dis-container .save-jewel {
  display: block;
  margin-left: 70%;
  margin-top: -130px;
  position: absolute;
  width: 154px;
}

.signup-confirm {
  padding: 50px 0 60px;
}

.signup-verification {
  padding: 50px 0 60px;
}

.signup-confirm #open-mail,
.signup-verification #open-mail {
  background: #7bd37d;
  color: #fff;
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 0 auto;
  padding: 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  width: 100%;
}

.signup-confirm .confirm-box,
.signup-verification .confirm-box {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  max-width: 700px;
  padding: 50px 60px;
  text-align: center;
  width: 100%;
}

.signup-confirm .confirm-box h1,
.signup-verification .confirm-box h1 {
  color: #e60012;
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  margin-bottom: 20px;
}

.signup-confirm .confirm-box h1 #email,
.signup-verification .confirm-box h1 #email {
  font-weight: 700;
  white-space: -moz-pre-wrap !important;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  white-space: -webkit-pre-wrap;
  white-space: normal;
  word-break: break-all;
  word-wrap: break-word;
}

.signup-confirm .confirm-box p,
.signup-verification .confirm-box p {
  color: #061e36;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.signup-confirm .confirm-box #open-mail,
.signup-verification .confirm-box #open-mail {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  border: 1px solid #4ddb7f;
  border-radius: 7px;
  font-size: 17px;
  line-height: 50px;
  margin-top: 40px;
  max-width: 450px;
}

.signup-confirm .confirm-box img,
.signup-verification .confirm-box img {
  margin-bottom: 10px;
  width: 70px;
}

.signup-confirm .resend-box,
.signup-verification .resend-box {
  font-size: 14px;
  font-weight: 900;
  margin: 50px auto 0;
  max-width: 580px;
  text-align: center;
  width: 90%;
}

.signup-confirm .resend-box p,
.signup-confirm .resend-box a,
.signup-verification .resend-box p,
.signup-verification .resend-box a {
  color: #033763;
}

.signup-confirm .resend-box a,
.signup-verification .resend-box a {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 7px;
  display: block;
  line-height: 50px;
  margin: 30px auto 0;
  max-width: 350px;
  width: 100%;
}

.signup-confirm.second,
.signup-verification.second {
  min-height: 709px;
  padding-top: 0;
}

.signup-confirm.second #open-mail,
.signup-verification.second #open-mail {
  border: none;
  font-size: 22px;
  line-height: 30px;
  padding: 15px 0;
}

.signup-confirm.second .confirm-box,
.signup-verification.second .confirm-box {
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  max-width: 430px;
  padding: 80px 0 0;
}

.signup-confirm.second .confirm-box h1,
.signup-verification.second .confirm-box h1 {
  margin-bottom: 20px;
}

.signup-confirm.second .confirm-box p,
.signup-verification.second .confirm-box p {
  font-size: 17px;
  font-weight: normal;
}

.signup-confirm.second .confirm-box p.caps-text,
.signup-verification.second .confirm-box p.caps-text {
  font-size: 14px;
  font-weight: 700;
}

.signup-confirm.second .confirm-box .gold,
.signup-verification.second .confirm-box .gold {
  display: block;
  height: 160px;
  margin: 20px auto 0;
  width: 160px;
}

.signup-confirm.second .confirm-box img,
.signup-verification.second .confirm-box img {
  width: 70px;
}

.signup-confirm.second .resend-box,
.signup-verification.second .resend-box {
  font-weight: 700;
  margin-top: 0;
  max-width: 500px;
}

.signup-confirm.second .resend-box a,
.signup-verification.second .resend-box a {
  background: #e60012;
  border: none;
  color: #fff;
  font-size: 17px;
}

.landing1 {
  background: url(../images/branded/landing-bg1.jpg) no-repeat center bottom;
  background-size: 100%;
  height: 900px;
  width: 100%;
}

.landing2 {
  background: url(../images/branded/landing2/bg.png) no-repeat center top;
  background-size: 100%;
  width: 100%;
}

.branded,
.branded2 {
  background-color: #eff5f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  text-align: center;
}

.branded h1,
.branded2 h1 {
  color: #061e36;
  font-size: 30px;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.branded h1.best-hentai,
.branded2 h1.best-hentai {
  color: #061e36;
  margin-bottom: 40px;
}

.branded h1 span.get-gold,
.branded2 h1 span.get-gold {
  color: #e60012;
}

.branded .layout,
.branded2 .layout {
  max-width: 960px !important;
  width: 100%;
}

.branded .layout input.submit-signup,
.branded2 .layout input.submit-signup {
  background-color: #e60012;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.1);
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 30px;
  font-weight: bold;
  height: 95px;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 30px;
  max-width: 655px;
  position: relative;
  width: 100%;
  z-index: 5;
}

.branded .layout input.submit-signup:hover,
.branded2 .layout input.submit-signup:hover {
  background-color: #ee4982;
}

.branded ul,
.branded2 ul {
  display: inline-block;
  width: 100%;
}

.branded ul.cards,
.branded2 ul.cards {
  margin-bottom: 220px;
  max-width: 1120px;
}

.branded ul li,
.branded2 ul li {
  -webkit-box-shadow: 11px 10px 48px -23px #878787;
  box-shadow: 11px 10px 48px -23px #878787;
  display: inline-block;
  height: 264px;
  list-style-type: none;
  margin: 23px;
}

.branded2 {
  margin-top: -50px;
  position: relative;
}

.branded2 .layout {
  margin-top: 50px;
}

.branded2 .layout .branded-header {
  margin-bottom: 0 !important;
  text-align: center;
  text-indent: -9999px;
}

.branded2 .layout .branded-header img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  border-radius: 2px;
  padding: 4px 8px;
}

form,
.white-box,
.messahe-seccuss {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
  padding: 40px;
  width: 100%;
}

form h2,
.white-box h2,
.messahe-seccuss h2 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

form .error-msg,
.white-box .error-msg,
.messahe-seccuss .error-msg {
  background: rgba(164, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}

form .success-msg,
.white-box .success-msg,
.messahe-seccuss .success-msg {
  background: rgba(164, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}

form sub,
.white-box sub,
.messahe-seccuss sub {
  font-size: 12px;
  font-weight: normal;
}

form .error-text,
.white-box .error-text,
.messahe-seccuss .error-text {
  display: none;
}

form .success-msg,
.white-box .success-msg,
.messahe-seccuss .success-msg {
  background: #81bd57;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}

form ul,
.white-box ul,
.messahe-seccuss ul {
  zoom: 1;
  list-style: none;
}

form ul::before,
.white-box ul::before,
.messahe-seccuss ul::before {
  content: '';
  display: block;
}

form ul::after,
.white-box ul::after,
.messahe-seccuss ul::after {
  clear: both;
  content: '';
  display: table;
}

form ul.noheight li,
.white-box ul.noheight li,
.messahe-seccuss ul.noheight li {
  height: auto;
  line-height: normal;
}

form ul.noheight li:nth-child(odd),
.white-box ul.noheight li:nth-child(odd),
.messahe-seccuss ul.noheight li:nth-child(odd) {
  text-align: right;
  width: 40%;
}

form ul.noheight li .submit,
.white-box ul.noheight li .submit,
.messahe-seccuss ul.noheight li .submit {
  width: 50%;
}

form ul.noheight li.delete-game,
.white-box ul.noheight li.delete-game,
.messahe-seccuss ul.noheight li.delete-game {
  text-align: center;
  width: 100%;
}

form ul li,
.white-box ul li,
.messahe-seccuss ul li {
  float: left;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  position: relative;
  width: 30%;
}

form ul li:nth-child(odd),
.white-box ul li:nth-child(odd),
.messahe-seccuss ul li:nth-child(odd) {
  text-align: right;
}

form ul li:nth-child(even),
.white-box ul li:nth-child(even),
.messahe-seccuss ul li:nth-child(even) {
  width: 50%;
}

form ul li:nth-child(even) a.delete-from-game,
.white-box ul li:nth-child(even) a.delete-from-game,
.messahe-seccuss ul li:nth-child(even) a.delete-from-game {
  display: block;
  margin: 0 auto;
  text-align: center;
}

form ul li input:not([type='radio']):not([type='checkbox']),
.white-box ul li input:not([type='radio']):not([type='checkbox']),
.messahe-seccuss ul li input:not([type='radio']):not([type='checkbox']) {
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: normal;
  border-radius: 2px;
  padding: 4px 8px;
}

form ul li input[type='checkbox'],
.white-box ul li input[type='checkbox'],
.messahe-seccuss ul li input[type='checkbox'] {
  margin-top: 18px;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}

form ul li input[type='text'],
form ul li input[type='password'],
.white-box ul li input[type='text'],
.white-box ul li input[type='password'],
.messahe-seccuss ul li input[type='text'],
.messahe-seccuss ul li input[type='password'] {
  width: 100%;
}

form ul li select,
.white-box ul li select,
.messahe-seccuss ul li select {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  padding: 4px 10px;
}

form .submit.insert,
.white-box .submit.insert,
.messahe-seccuss .submit.insert {
  margin: 20px 0;
}

form p,
.white-box p,
.messahe-seccuss p {
  text-align: center;
}

form .account-info,
.white-box .account-info,
.messahe-seccuss .account-info {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #393939;
  margin: 20px auto;
  padding: 20px;
  width: 70%;
}

form .account-info h2,
.white-box .account-info h2,
.messahe-seccuss .account-info h2 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

form .account-info ul li,
.white-box .account-info ul li,
.messahe-seccuss .account-info ul li {
  height: auto;
  line-height: normal;
  padding: 10px 7px;
}

form .account-info ul li:nth-child(even),
.white-box .account-info ul li:nth-child(even),
.messahe-seccuss .account-info ul li:nth-child(even) {
  color: #97a1b1;
}

form .account-text,
.white-box .account-text,
.messahe-seccuss .account-text {
  margin: 0 auto;
  text-align: left;
  width: 70%;
}

form .account-text p,
.white-box .account-text p,
.messahe-seccuss .account-text p {
  margin-bottom: 6px;
  text-align: left;
  width: 100%;
}

.gameslist .layout .errortext,
.dis-container .layout .errortext {
  color: #fff;
  display: block;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  margin-top: 170px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 100;
}

.gameslist .layout .codeerror,
.dis-container .layout .codeerror {
  font-size: 200px;
  font-weight: bold;
  line-height: 16px;
  opacity: .2;
}

.gameslist .layout .wizardtext,
.dis-container .layout .wizardtext {
  font-size: 28px;
  font-weight: bold;
}

.gameslist .layout .questtext,
.dis-container .layout .questtext {
  font-size: 14px;
}

.gameslist .layout a.gohome,
.dis-container .layout a.gohome {
  color: rgba(164, 0, 0, 0.85);
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
  width: 220px;
}

.gameslist .layout a.gohome:hover,
.dis-container .layout a.gohome:hover {
  color: #cb6f70;
}

.submit,
.submit-deletegame,
.submit-gohome,
.submit-support {
  width: 40%;
}

.confirm-butt {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  color: #393939;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin: 20px auto;
  padding: 12px 0;
  text-align: center;
  width: 30%;
}

.confirm-butt:hover {
  background: #fff;
  border-color: #e60012;
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.2);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.2);
  color: #e60012;
}

.info_error {
  font-size: 3em;
  padding-top: 3em;
  text-align: center;
}

.title-info {
  color: #e60012;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}

.submit-gohome {
  margin: 20px 0 20px 125px;
}

.submit-support {
  margin: 20px 0 20px 35%;
}

.confirmation {
  line-height: 170%;
  padding: 0 10px;
  width: 49% !important;
}

input[type='radio'] {
  display: inline-block;
  margin-left: 15px;
  position: relative;
  top: 2px;
}

.forget-pass {
  display: inline-block;
  line-height: 24px;
  padding-left: 5%;
}

.white-text {
  color: #fff;
  padding: 10px 23px;
  text-decoration: none;
}

.captcha {
  height: 60px;
  width: 300px;
}

.readmore {
  color: #dd437c;
  cursor: pointer;
  display: block;
  float: left;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-right: 5px;
  text-align: right;
}

.seemore,
.seemore-info {
  cursor: pointer;
  float: right;
  height: 11px;
  margin-left: 6px;
  margin-top: 6px;
  width: 10px;
}

.seemore-info {
  display: inline-block;
  float: none;
  margin-left: 6px;
}

.read-more {
  zoom: 1;
}

.read-more::before {
  content: '';
  display: block;
}

.read-more::after {
  clear: both;
  content: '';
  display: table;
}

.line-info,
.line-shopping {
  float: left;
  height: 15px;
  text-align: right;
}

.line-info {
  max-width: 300px;
  width: 100%;
}

.readmore {
  margin-bottom: 10px;
  max-width: 290px;
  width: 100%;
}

.privacy .privacy_content .privacy_main .terms_details li span.email-image {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 4px;
  padding-bottom: 0;
}

.privacy .privacy_content .privacy_main .terms_details li span.email-image img {
  margin-bottom: -4px;
}

.wisard {
  display: block;
  float: left;
  margin: 0 auto;
  margin-top: 10%;
  position: relative;
  text-align: center;
  width: 45%;
  z-index: 10;
}

.cicle {
  display: block;
  float: left;
  margin: 0 auto;
  margin-left: 21%;
  position: absolute;
  text-align: center;
  width: 60%;
  z-index: 5;
}

.warrior {
  display: block;
  float: right;
  margin: 0 auto;
  margin-top: 10%;
  text-align: right;
  z-index: 1;
}

/* 403 error */
.error-403,
.error-app {
  background-size: cover;
  height: 620px;
  padding-bottom: 50px;
}

.error-403 .layout,
.error-app .layout {
  text-align: center;
}

.error-403 a,
.error-app a {
  height: 60px;
  margin-top: 60px;
  padding-top: 20px;
  width: 310px;
}

.error-403 h1,
.error-app h1 {
  color: #e60012;
  font-size: 9em;
  line-height: 1em;
  padding-top: 100px;
  text-align: center;
}

.error-403 h1.dmm-logo,
.error-app h1.dmm-logo {
  padding-top: 0;
}

.error-403 h1.dmm-logo svg,
.error-app h1.dmm-logo svg {
  display: inline-block;
  max-width: 345px;
  width: 90% !important;
}

.error-403 p.forbidden,
.error-app p.forbidden {
  color: #5e5e70;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.error-403 p.redirect-text,
.error-app p.redirect-text {
  color: #5e5e70;
  font-size: 18px;
  font-weight: bold;
  padding-top: 20px;
  text-align: center;
}

.error-403 div,
.error-app div {
  text-align: center;
}

.error-403 div svg,
.error-app div svg {
  display: inline-block;
  height: 64px !important;
  margin-top: 30px;
  width: 64px !important;
}

.error-403 div .service-text,
.error-app div .service-text {
  display: inline-block;
  font-size: 16px;
  height: 64px;
  position: relative;
  vertical-align: middle;
}

.error-403 .go-dmm,
.error-app .go-dmm {
  font-size: 18px;
  height: 60px;
  line-height: 40px;
  max-width: 340px;
  padding-top: 11px;
  width: 90%;
}

.social-account {
  border: 1px solid;
  border-radius: 2px;
  color: #fff !important;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 26px;
  text-align: left;
  margin: 30px auto 7px;
  padding-left: 20px;
  padding-top: 4px;
  width: 300px;
  height: 36px;
}

.social-account i {
  display: block;
  float: left;
  height: 18px;
  margin: 4px 8px;
  width: 22px;
}

.social-account.facebook {
  background: #3b5997;
  border-color: #1c3770;
}

.social-account.facebook i {
  background-position: -44px -178px;
}

.social-account.twitter {
  background: #3cf;
  border-color: #40afd4;
}

.social-account.twitter i {
  background-position: -66px -178px;
}

.social-account.facebook-value {
  cursor: pointer;
  padding: 0 22%;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-icons .share, .social-icons .social-icon {
  width: 32px;
  height: 32px;
}

.social-icons .share img, .social-icons .share svg, .social-icons .social-icon img, .social-icons .social-icon svg {
  width: 100%;
}

.social-icons .share:hover, .social-icons .social-icon:hover {
  opacity: .6;
}

.social-icons .share {
  margin-right: 12px;
}

.social-icons .share:last-child {
  margin-right: 0;
}

@media (max-width: 1080px) {
  .about-us .about-head,
  .about-us .affiliate-heade {
    background-size: 1080px;
    max-width: 1080px;
  }
  .about-us .about-page-main {
    background-size: 95%;
    margin-top: -280px;
  }
  .about-us .layout-about,
  .about-us .layout-affiliate {
    max-width: 100%;
  }
  .about-us .layout-about .content-about,
  .about-us .layout-affiliate .content-about {
    padding: 0 20px;
  }
  .about-us .layout-about h2,
  .about-us .layout-about h3,
  .about-us .layout-affiliate h2,
  .about-us .layout-affiliate h3 {
    font-size: 24px;
  }
  .about-us .banner {
    background-size: 1124px;
    height: 200px;
    margin-top: -60px;
  }
  .about-us .banner .banner-text {
    font-size: 16px;
    max-width: 450px;
    padding-top: 125px;
  }
  .about-us .layout-affiliate .content-about {
    padding-top: 0;
  }
  .about-us .layout-affiliate .content-about h2 {
    padding-top: 20px;
  }
  .about-us .socials a {
    height: 15.4296875vw;
  }
}

@media (min-width: 801px) {
  .about-tablet {
    display: none;
  }
}

@media (max-width: 980px) {
  .gameslist .layout .codeerror {
    font-size: 170px;
  }
  .gameslist .layout .wizardtext {
    font-size: 22px;
  }
  .gameslist .layout .questtext {
    font-size: 12px;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 72%;
  }
  .warrior {
    width: 35%;
  }
}

@media (max-width: 908px) and (min-width: 801px) {
  .discounts .dis-container .save-jewel {
    margin-left: 74%;
  }
  .gameslist .layout .errortext {
    margin-top: 150px;
  }
  .gameslist .layout a.gohome {
    margin-top: 60px;
  }
}

@media (max-width: 880px) and (min-width: 801px) {
  .discounts .dis-container .save-jewel {
    margin-left: 76%;
  }
}

@media (max-width: 840px) and (min-width: 801px) {
  .gameslist .layout a.gohome {
    margin-top: 35px;
  }
}

@media (max-width: 768px) {
  .signup-express {
    background: url(../images/signup-express.jpg) #eff5f7 no-repeat 46% bottom;
  }
  .signup-express .layout {
    left: 10%;
    top: 8%;
  }
  .signup-express .layout h1 {
    margin-bottom: 16px;
  }
  .signup-express .layout p.error-msg {
    font-size: 20px;
  }
  .signup-express .layout form h1 {
    margin-bottom: 16px;
  }
  .signup-express .layout #singupSuccess.messahe-seccuss .submit-signup {
    font-size: 24px;
  }
}

@media (max-width: 740px) {
  .signup-express {
    background-image: none;
    height: 100vh;
    min-height: 620px;
  }
  .signup-express .layout {
    left: 0;
    top: 3%;
  }
}

@media (max-width: 680px) {
  .signup-express {
    background-image: none;
    height: 100vh;
    min-height: 620px;
  }
  .signup-express .layout {
    left: 0;
    top: 3%;
  }
}

@media (max-width: 640px) {
  .signup-verification {
    min-height: 400px !important;
    padding: 50px 0 60px;
  }
  .signup-express h1 {
    margin-bottom: 16px;
  }
  .signup-express .layout {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    max-width: 420px !important;
    padding: 0;
    position: relative;
  }
  .signup-express .layout form h1 {
    margin-bottom: 16px;
  }
}

@media (max-width: 540px) {
  .signup-verify.second {
    min-height: 450px;
  }
}

@media (max-width: 480px) {
  .signup-confirm .confirm-box {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 420px) {
  .signup-express .layout #singupSuccess.messahe-seccuss h1 {
    font-size: 26px;
  }
}

@media (max-width: 380px) {
  .signup-express .layout p.error-msg {
    font-size: 17px;
  }
  .signup-express .layout form h1 {
    font-size: 30px;
  }
  .signup-express .layout form ul li .info-centered {
    line-height: 22px;
  }
  .signup-express .layout #singupSuccess.messahe-seccuss {
    padding: 20px;
  }
  .signup-express .layout #singupSuccess.messahe-seccuss h1 {
    font-size: 22px;
  }
  .signup-express .layout #singupSuccess.messahe-seccuss .welcome-message {
    font-size: 20px;
  }
}

@media (max-width: 340px) {
  .signup-express .layout p,
  .signup-express .layout p.error-msg {
    font-size: 15px;
  }
  .signup-express .layout form#singupForm {
    padding: 20px;
  }
  .signup-express .layout form#singupForm ul li .submit-signup {
    font-size: 22px;
  }
}

.download-button-contents {
  margin: 32px 0 24px;
}

.download-button-contents .main-text {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.download-button-contents .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 16px 48px;
}

.download-button-contents .buttons a {
  max-width: 280px;
  margin-right: 12px;
}

.download-button-contents .buttons a:last-child {
  margin-right: 0;
}

.download-button-contents .buttons a img,
.download-button-contents .buttons a svg {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  vertical-align: sub;
}

.download-button-contents .buttons a img *,
.download-button-contents .buttons a svg * {
  fill: white;
}

.download-button-contents .sub-text {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

.download-button-contents .sub-text > a {
  color: #4098ff;
}

.app-modal .instructions {
  margin: 16px;
  margin-bottom: 0;
  padding: 0 64px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.app-modal .instructions:last-child {
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

.app-modal .instructions .main-text {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.app-modal .instructions .sub-text {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

.app-modal .instructions .sub-text a {
  display: block;
  color: #4098ff;
  margin-top: 8px;
}

.app-modal .instructions .qrcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app-modal .instructions .qrcode .sub-text {
  text-align: left;
  margin-left: 8px;
}

.app-modal .instructions .copy {
  text-align: center;
  margin-top: 8px;
}

.app-modal .instructions .copy input {
  width: 320px;
  padding: 8px;
}

.app-modal .instructions .copy button {
  width: auto;
  margin-left: 4px;
}

.app-modal .instructions .copy .copied-message {
  font-size: 10px;
  font-weight: normal;
  opacity: 0;
}

.support-new {
  position: relative;
  text-align: center;
}

.support-new .top {
  margin-bottom: -48px;
  padding: 40px 0 64px;
}

.support-new .top.faq {
  background: #e60012;
}

.support-new .top.faq .title-xl {
  color: white;
}

.support-new .top.support-index {
  padding-bottom: 56px;
}

.support-new .top.support-index .accordion {
  margin: 24px 0 40px;
}

.support-new .top.duplicate {
  margin-bottom: 0;
  padding: 0 0 30px;
}

.support-new .top.duplicate .title-large {
  font-size: 42px;
}

.support-new .top.duplicate .title-large + h2 {
  font-size: 17px;
  margin-top: 5px;
}

.support-new .content.error {
  padding-bottom: 50px;
}

.support-new .content.error .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.support-new .content.error .left_column,
.support-new .content.error .right_column {
  width: 50%;
}

.support-new .content.error .left_column {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding-right: 30px;
}

.support-new .content.error .left_column p {
  margin-bottom: 10px;
  max-width: 370px;
}

.support-new .content.error .left_column .trans_number {
  border: 2px solid rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-top: 15px;
  min-width: 250px;
  padding: 20px;
  width: 80%;
}

.support-new .content.error .left_column .trans_number p {
  margin-bottom: 5px;
}

.support-new .content.error .left_column .trans_number .transaction_number {
  color: #9494a7;
  font-size: 19px;
}

.support-new .content.error .right_column {
  padding-left: 30px;
}

.support-new .content.error form {
  margin: 0 auto;
}

.support-new .content.error form .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  margin-bottom: 15px;
}

.support-new .content.error form .item.message {
  display: block;
  text-align: center;
}

.support-new .content.error form .item.message textarea {
  height: 150px;
}

.support-new .content.error form .item label {
  padding: 0;
  width: 130px;
}

.support-new .content.error form .item input,
.support-new .content.error form .item input[type='text'] {
  -ms-flex-item-align: end;
  align-self: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  min-width: 180px;
  padding: 0 15px;
  width: 18.104167vw;
}

.support-new .content.error form .item input[type='text'] {
  background-color: #fff;
}

.support-new .content.error form .item input[type='text'][disabled], .support-new .content.error form .item input[type='text'][readonly] {
  background: #e4e3e3;
}

.support-new .content.error form .item input[type='email'],
.support-new .content.error form .item input[type='number'] {
  background-color: #e4e3e3;
}

.support-new .content.error form .item p {
  margin: 20px auto 5px;
}

.support-new .content.error form .item .mainbtn {
  max-width: 100%;
}

.support-new .content.error form .ValidationErrors {
  color: #df4949;
  display: block;
  font-size: 10px;
  line-height: 15px;
  text-align: right;
}

.support-new .content.error .error-msg {
  margin: 0 auto 20px;
}

.support-new .bottom.faq {
  background: none;
}

.support-new .bottom.faq .other-support {
  background: none;
}

.support-new .title-xl {
  font-size: 24px;
  font-weight: bold;
}

.support-new .title-large {
  font-size: 24px;
  font-weight: bold;
}

.support-new .single {
  margin: 0;
}

.support-new h2 {
  color: #e60012;
  margin-top: 40px;
}

.support-new .top-icon {
  height: 38px;
  width: 38px;
}

.support-new .top-icon path {
  fill: #e60012;
}

.support-new p.info {
  font-weight: normal;
  margin-top: 16px;
}

.support-new p.desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 550px;
}

.support-new p.normal {
  font-weight: 500;
}

.support-new .contact-element {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.support-new .contact-element-title {
  font-size: 16px;
  font-weight: bold;
  -ms-flex-preferred-size: 220px;
  flex-basis: 220px;
  text-align: left;
  padding: 8px 16px;
}

.support-new .contact-element-appended {
  display: none;
}

.support-new .contact-element-appended.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.support-new .contact-element-appended input[type='text'] {
  width: 74%;
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 0;
  min-height: 48px;
}

.support-new .contact-element select {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  width: 100%;
  min-height: 48px;
}

.support-new .contact-element input[type='text'] {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 0;
  min-height: 48px;
}

.support-new .contact-element input[type='radio'] {
  display: inline-block;
  margin: 0 10px 0 0;
  position: relative;
  top: 2px;
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.support-new .contact-element-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.support-new .contact-element-column-message {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 4px;
}

.support-new .contact-element-column .message-info {
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  margin-bottom: 12px;
}

.support-new .contact-element-column textarea {
  height: 250px;
  font-size: 16px;
  font-weight: normal;
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 16px;
  white-space: pre-wrap;
}

.support-new .contact-element-send {
  margin: 0 auto;
  max-width: 340px;
}

.support-new .support-select {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  width: auto;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: white;
}

.support-new .support-select.combobox {
  padding: 0;
  border: none;
}

.support-new .support-select select {
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: auto;
}

.support-new .support-select .select-arrow {
  position: relative;
  width: 8px;
  height: 19px;
  margin: auto;
  margin-right: 12px;
}

.support-new .support-select .select-arrow::before, .support-new .support-select .select-arrow::after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 0 4px 6px 4px;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
  position: absolute;
  content: '';
}

.support-new .support-select .select-arrow::after {
  top: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.support-new .support-radios {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.support-new form {
  background: none;
  border: none;
  margin: 48px auto 56px;
  max-width: 660px;
  padding: 0;
}

.support-new form .item {
  margin-bottom: 12px;
}

.support-new form .item.multiple-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.support-new form .item.multiple-btn .mainbtn-secondary-lv1 {
  -ms-flex-preferred-size: 39%;
  flex-basis: 39%;
}

.support-new form .item.multiple-btn .mainbtn-primary-lv1 {
  -ms-flex-preferred-size: 58%;
  flex-basis: 58%;
}

.support-new form .item .message-content {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 24px;
  margin-bottom: 16px;
}

.support-new form .item .message-content span {
  display: block;
  padding: 8px;
}

.support-new form .item .message-content span:nth-child(2n+1) {
  text-align: right;
  width: 33%;
}

.support-new form .item .message-content span:nth-child(2n) {
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
  width: 67%;
  word-break: break-word;
}

.support-new form.review {
  margin-bottom: 48px;
}

.support-new .other-support {
  background: #e60012;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 16px 0;
}

.support-new .support-item {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  font-size: 14px;
  font-weight: normal;
  background: white;
  color: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 24px 40px;
  width: 325px;
}

.support-new .support-item:hover {
  color: #e60012;
}

.support-new .support-item .support-icon {
  height: 72px;
  width: 72px;
}

.support-new .support-item .support-icon path {
  fill: #e60012;
}

.support-new .support-item .title {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin: 8px 0;
}

.support-new .faq .support-item {
  margin: 0 2% 0 0;
  width: 32%;
}

.support-new .faq .support-item:last-child {
  margin-right: 0;
}

.support-new .accordion {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  list-style: none;
  text-align: left;
}

.support-new .accordion li {
  font-size: 16px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
}

.support-new .accordion li .head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 12px 20px 12px 50px;
  position: relative;
}

.support-new .accordion li .head:last-child {
  border-bottom: none;
}

.support-new .accordion li .head::before {
  color: #e60012;
  content: '+';
  display: block;
  font-size: 30px;
  font-weight: 700;
  left: 15px;
  position: absolute;
  text-align: center;
  top: 12px;
  width: 20px;
}

.support-new .accordion li .items {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  padding: 40px 24px 40px 56px;
}

.support-new .accordion li .items a {
  color: white;
  display: block;
  margin-bottom: 40px;
}

.support-new .accordion li .items a:last-child {
  margin-bottom: 0;
}

.support-new .accordion li .items a.active {
  font-style: italic;
}

.support-new .accordion li.open {
  display: block;
}

.support-new .accordion li.open .head::before {
  content: '-';
  font-size: 45px;
  top: 8px;
}

.support-new .accordion li.open .items {
  display: block;
}

.support-new .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 64px;
}

.support-new .columns .column-left {
  margin-right: 6%;
  width: 60%;
}

.support-new .columns .column-right {
  width: 34%;
}

.support-new .columns .column-right .accordion li .items {
  font-size: 14px;
  font-weight: normal;
  line-height: 17px;
  padding-bottom: 16px;
  padding-top: 16px;
}

.support-new .columns .column-right .accordion li .items a {
  margin-bottom: 16px;
}

.support-new .columns .column-right .accordion li .items a:last-child {
  margin-bottom: 0;
}

.support-new .columns .details {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  font-size: 16px;
  font-weight: normal;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  height: 100%;
  line-height: 1.5;
  padding: 32px;
  text-align: left;
}

.support-new .columns .details h2 {
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.85);
  margin: 0 0 16px;
}

.support-new .columns .details a {
  color: #4098ff;
}

.support-new .columns .details table {
  max-width: 389px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin: 16px 0;
  font-size: 14px;
  font-weight: normal;
}

.support-new .columns .details table th, .support-new .columns .details table td {
  padding: 12px;
}

.support-new .columns .details table th.text-center, .support-new .columns .details table td.text-center {
  text-align: center;
}

.support-new .columns .details table th {
  border-top: none;
}

.support-new .columns .details table td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.support-new .columns .details .support-smail-text {
  font-size: 12px;
  font-weight: normal;
}

.support-new .columns .details .support-smail-text ul {
  padding-left: 16px;
}

.support-new .txt-back-faqtop {
  font-size: 16px;
  font-weight: normal;
  margin: 24px auto 0;
}

.support-new .confirm {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto 16px;
  max-width: 630px;
  padding: 32px;
  margin-bottom: 16px;
}

.support-new .confirm strong {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}

.support-new .confirm + .mainbtn-primary-lv1 {
  margin-bottom: 48px;
  max-width: 380px;
  width: 100%;
}

.support-new .error-msg {
  font-size: 14px;
  font-weight: bold;
  background: rgba(164, 0, 0, 0.85);
  color: white;
  margin: 24px auto -16px;
  max-width: 660px;
  padding: 8px 16px;
}

@media (max-width: 1050px) {
  .support-new .layout {
    padding: 0 16px;
  }
  .support-new .faq .other-support .support-item {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 800px) {
  .support-new form .item label {
    padding-left: 0;
    width: 40%;
  }
  .support-new form .item input[type=text],
  .support-new form .item select {
    width: 60%;
  }
  .support-new form .item.radios > label {
    margin-right: 16px;
  }
  .support-new .other-support .support-item {
    margin: 0 3% 0 0;
    width: 48.5%;
  }
  .support-new .other-support {
    zoom: 1;
    padding-left: 16px;
    padding-right: 16px;
  }
  .support-new .other-support::before {
    content: '';
    display: block;
  }
  .support-new .other-support::after {
    clear: both;
    content: '';
    display: table;
  }
  .support-new .other-support .support-item {
    height: auto;
    padding: 24px;
  }
  .support-new .columns .column-left {
    margin-right: 4%;
    width: 56%;
  }
  .support-new .columns .column-right {
    width: 40%;
  }
  .support-new .content.error .error-msg {
    width: 55%;
  }
  .support-new .content.error .layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .support-new .content.error .left_column,
  .support-new .content.error .right_column {
    border: none;
    padding: 0;
    width: 100%;
  }
  .support-new .content.error .left_column .trans_number {
    width: 54%;
  }
  .support-new .content.error .right_column {
    margin-top: 30px;
  }
  .support-new .content.error form .item input,
  .support-new .content.error form .item input[type='text'] {
    width: 52.104167vw;
  }
  .support-new .content.error form .item.message {
    text-align: center;
  }
  .support-new .content.error form .item.message textarea {
    min-width: 180px;
    width: 60%;
  }
}

@media (max-width: 640px) {
  .support-new .faq .other-support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .support-new .faq .other-support .support-item {
    margin: 0 0 16px;
    width: 100%;
  }
  .support-new .faq .other-support .support-item:last-child {
    margin-bottom: 0;
  }
  .support-new .faq .other-support .support-item .support-icon {
    float: left;
  }
  .support-new .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .support-new .columns .column-left {
    margin: 0 0 16px;
    width: 100%;
  }
  .support-new .columns .column-right {
    width: 100%;
  }
  .support-new .back {
    margin-top: 0;
  }
  .support-new .content.error form .item.message textarea {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .support-new .content.error form .item input,
  .support-new .content.error form .item input[type='text'] {
    width: 57.104167vw;
  }
  .support-new .contact-element {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .support-new .contact-element-title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: left;
    padding-left: 0;
  }
  .support-new .contact-element-appended input[type='text'] {
    width: 100%;
  }
  .support-new .support-radios {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .support-new .support-radios label {
    width: 42%;
    padding: 8px 0 8px 8%;
    text-align: left;
  }
  .support-new form .item label,
  .support-new form .item input[type=text],
  .support-new form .item select,
  .support-new form .item.radios .items {
    width: 100%;
  }
  .support-new form .item.appended label {
    display: none;
  }
  .support-new form .item .message-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .support-new form .item .message-content span {
    padding: 0;
  }
  .support-new form .item .message-content span:nth-child(2n+1) {
    width: 100%;
    text-align: left !important;
    padding-bottom: 8px;
  }
  .support-new form .item .message-content span:nth-child(2n) {
    padding-bottom: 24px;
  }
  .support-new form .item.multiple-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
    max-width: 320px;
  }
  .support-new form .item.multiple-btn .mainbtn-secondary-lv1, .support-new form .item.multiple-btn .mainbtn-primary-lv1 {
    margin-bottom: 12px;
  }
  .support-new .other-support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .support-new .other-support .support-item .support-icon {
    float: none !important;
  }
  .support-new .other-support .support-item {
    margin: 0 0 20px;
    width: 100%;
  }
  .support-new .other-support .support-item:last-child {
    margin-bottom: 0;
  }
  .support-new .columns .details {
    padding: 20px;
  }
}

.pagination {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.pagination a {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  color: #5e5e70;
  display: inline-block;
  margin: 0;
  padding: 10px 14px;
}

.pagination a.active {
  color: #dd437c;
  cursor: default;
  font-weight: bold;
}

.pagination a.active:hover {
  background: none !important;
  font-weight: bold;
}

.pagination a.dots {
  cursor: default !important;
}

.pagination a.dots:hover {
  background: none !important;
}

.pagination a:hover {
  background: #eff5f7;
}

.pagination a.last {
  border-right: 0 !important;
}

.footerLayout {
  max-width: 1080px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.footerContent {
  padding: 48px 0 24px;
}

.footerContent .footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  width: 100%;
}

.footerContent .footerLinks li {
  list-style: none;
}

.footerContent .footerLinks > li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footerContent .footerLinks > li ul:nth-child(2) {
  margin-top: 28px;
}

.footerContent .footerLinks > li li {
  font-size: 14px;
  margin-bottom: 7px;
}

.footerContent .footerLinks > li li.title {
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
}

.footerContent .footerLanguage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.footerContent .footerLanguage .social-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footerContent .footerLanguage .social-icons a {
  margin-right: 12px;
}

.footerMainContent {
  background: #f7f7f7;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footerMainContent .footerLayout {
  border-bottom-width: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  padding: 24px 0;
}

.footerMainContent a {
  color: rgba(0, 0, 0, 0.5);
}

.footerMainContent .logo-links .logo {
  display: block;
  width: 108px;
  height: 32px;
}

.footerMainContent .logo-links .logo img {
  width: 100%;
}

.footerMainContent .copyright-links a {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.footerMainContent .copyright-links a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 1080px) {
  .footerLayout {
    padding: 20px !important;
  }
}

@media (max-width: 900px) {
  .footerMainContent .footerLayout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .footerMainContent .logo-links .logo {
    margin: 0 auto 8px;
  }
  .footerMainContent .logo-links .warning-text {
    margin: 4px 0 8px;
  }
  .footerMainContent .copyright-links {
    display: block;
  }
  .footerMainContent .copyright-links p {
    margin-bottom: 8px;
  }
}

@media (min-width: 901px) {
  .footerMainContent .footerLayout > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footerMainContent .logo-links .warning-text {
    max-width: 390px;
    margin-left: 16px;
  }
  .footerMainContent .copyright-links {
    margin-left: auto;
  }
  .footerMainContent .copyright-links p {
    margin-right: 16px;
  }
  .footerMainContent .copyright-links a {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

@media (max-width: 660px) {
  .footerContent {
    display: block;
  }
  .footerContent .footerLinks, .footerContent .footerLanguage {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footerContent .footerLinks > li {
    max-width: 50%;
    margin-bottom: 20px;
  }
  .footerContent .footerLinks > li:nth-child(2n) {
    padding-right: 0;
  }
  .footerContent .footerLanguage {
    margin: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .footerContent .footerLanguage .social-icons a {
    width: 32px;
    height: 32px;
  }
  .footerContent .footerLanguage .social-icons a img, .footerContent .footerLanguage .social-icons a svg {
    width: 100%;
  }
}

.join-action {
  background: #202020;
  text-align: center;
  width: 100%;
  padding: 32px 0;
}

.join-action p:first-child {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.join-action p.signup-text {
  font-size: 18px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
}

.join-action p.signup-text .signup-mobile {
  display: none;
}

.join-action .signup-btn {
  margin: 16px auto 0;
  width: 288px;
}

@media (max-width: 800px) {
  .join-action {
    padding: 20px 10px;
  }
}

@media (max-width: 480px) and (min-width: 229px) {
  .join-action p:first-child {
    font-size: 18px;
    font-weight: bold;
    color: white;
  }
  .join-action p.signup-text {
    font-size: 16px;
    font-weight: bold;
  }
  .join-action p.signup-text .signup-pc {
    display: none;
  }
  .join-action p.signup-text .signup-mobile {
    display: block;
  }
}

.notice-area {
  display: none;
  position: relative;
  background: white;
  margin: 10px auto 0;
  padding: 19px 16px;
  border: 4px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  max-width: 1080px;
  width: 100%;
}

.notice-area.open {
  display: block;
}

.notice-area .closeButton {
  position: absolute;
  right: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.notice-area .closeButton span {
  background: rgba(0, 0, 0, 0.5);
  display: block;
  height: 2px;
  width: 16px;
}

.notice-area .closeButton span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.notice-area .closeButton span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.notice-area .notice {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.notice-area .notice .arrow {
  margin-right: 4px;
}

.notice-area .notice .arrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(0, 0, 0, 0.85);
  border-right: 2px solid rgba(0, 0, 0, 0.85);
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  margin: 0 0 3px 8px;
}

.notice-area .notice .title {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 3px;
}

.notice-area .notice .description {
  display: none;
  color: rgba(0, 0, 0, 0.5);
}

.notice-area .notice.open .arrow::before {
  border-top: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.85);
  border-right: none;
  border-left: 2px solid rgba(0, 0, 0, 0.85);
  margin-bottom: 0;
}

.notice-area .notice:last-child {
  margin-bottom: 0;
}

.notice-area .alert {
  zoom: 1;
  padding: 15px 0 20px;
}

.notice-area .alert::before {
  content: '';
  display: block;
}

.notice-area .alert::after {
  clear: both;
  content: '';
  display: table;
}

.notice-area .alert a {
  color: #e60012;
  font-weight: normal;
  text-decoration: underline;
}

.notice-area .alert a:hover {
  color: #9a000c;
}

.notice-area .alert .icon-close {
  cursor: pointer;
  display: block;
  float: right;
  margin-right: -10px;
  margin-top: 10px;
  padding: 9px;
}

.notice-area .alert .icon-close svg {
  height: 12px;
  width: 12px;
}

.notice-area .alert .icon-close svg path {
  fill: #a8acb0;
}

.notice-area .alert .icon-alert {
  float: left;
  height: 50px;
  margin-right: 15px;
  width: 50px;
}

.notice-area .alert .text {
  float: left;
  width: calc('100% - '90px);
}

.notice-area .alert .first-line {
  color: #e60012;
  font-size: 17px;
  font-weight: 700;
}

.notice-area .alert .second-line {
  font-size: 14px;
  font-weight: 700;
}

.notice-area-full-screen {
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  body {
    background-size: 60%;
    max-width: 800px;
  }
  .layout {
    zoom: 1;
    margin: 0 auto;
    position: relative;
    width: 100%;
  }
  .layout::before {
    content: '';
    display: block;
  }
  .layout::after {
    clear: both;
    content: '';
    display: table;
  }
  .info-features-text {
    display: none;
  }
  .submit-deletegame {
    margin: 0 auto 10px;
  }
  form.contact {
    background: none;
    border: none;
    position: relative;
  }
  form.contact .required {
    color: rgba(164, 0, 0, 0.85);
  }
  form.contact ul {
    margin-top: 20px;
  }
  form.contact ul li {
    height: auto;
    min-height: 50px;
    width: 50%;
  }
  form.contact ul li p {
    line-height: normal;
    margin: 0;
    text-align: right;
    width: 100%;
  }
  form.contact ul li p sub {
    display: inline-block;
    margin-top: 20px;
    width: 100%;
  }
  form.contact ul li:nth-child(even) {
    width: 67%;
  }
  form.contact ul li:nth-child(even) p {
    text-align: left;
  }
  form.contact ul li textarea {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    height: 200px;
    padding: 4px 10px;
    width: 98% !important;
  }
  form ul li,
  .white-box ul li {
    float: left;
    height: 50px;
    padding: 0 16px 0 8px;
    position: relative;
    width: 45%;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 77%;
  }
  .discounts .dis-container .dis-info p.dis-text {
    padding: 0 20px;
  }
  .white-box .account-info {
    width: 90%;
  }
  form ul li:nth-child(even) a,
  .white-box ul li:nth-child(even) a {
    float: none;
  }
  .text-login {
    margin-left: -20px;
    width: 100%;
  }
  .message-center .mc-container .mc-single .reply.reply textarea {
    width: 100%;
  }
  .message-center .mc-container .mc-single .reply p {
    width: 100%;
  }
  .message-center .mc-container .mc-single .reply .submit-gohome {
    margin-left: auto;
    margin-right: auto;
  }
  .profile .layout .games-played ul li {
    float: left;
    margin-bottom: 20px;
    margin-right: 15px;
    text-align: center;
    width: 30%;
  }
  .profile .layout .games-played h2 {
    margin-left: 20px;
  }
  .games .gameslist ul li {
    margin-bottom: 15%;
    width: 100%;
  }
  .games .gameslist ul li .game_details p {
    max-height: 58px;
  }
  .submit-support {
    margin-left: 33%;
  }
  .gameslist .layout .errortext {
    margin-top: 120px;
  }
  .gameslist .layout .codeerror {
    font-size: 120px;
  }
  .gameslist .layout .wizardtext {
    font-size: 18px;
  }
  .gameslist .layout .questtext {
    font-size: 11px;
  }
  .gameslist .layout a.gohome {
    margin-top: 6%;
  }
}

@media (max-width: 700px) and (min-width: 481px) {
  .privacy .privacy_content .privacy_main .privacy_details p,
  .privacy .privacy_content .privacy_main .privacy_details ol li {
    line-height: 24px;
  }
  .privacy .privacy_content .privacy_main .privacy_details,
  .privacy .privacy_content .privacy_main .terms_details {
    width: 45%;
  }
  .privacy .privacy_content .privacy_main .privacy_links {
    font-size: 14px;
    width: 45%;
  }
  .privacy .privacy_content .privacy_main .privacy_links .sub-menu {
    font-weight: 400;
    margin-left: 3px;
  }
  .discounts .dis-container .save-jewel img {
    height: auto;
    width: 90%;
  }
  .discounts .dis-container .jewel-box {
    padding: 30px 40px;
    width: 90%;
  }
}

@media (max-width: 700px) {
  form ul.noheight li:nth-child(even),
  form ul.noheight li:nth-child(odd) {
    height: auto !important;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 695px) and (min-width: 561px) {
  .gameslist .layout .errortext {
    margin-top: 100px;
  }
  .gameslist .layout .codeerror {
    font-size: 100px;
  }
  .gameslist .layout a.gohome {
    font-size: 14px;
  }
}

@media (max-width: 695px) and (min-width: 481px) {
  .discounts .dis-container .save-jewel {
    margin-left: 76%;
  }
}

@media (max-width: 660px) and (min-width: 481px) {
  .games .gameslist ul li .game_details {
    margin-top: 0;
  }
  .white-box ul li,
  .white-box ul li:nth-child(odd) {
    text-align: center;
  }
  form ul li input[type=text],
  form ul li input:not([type=radio]):not([type=checkbox]) {
    width: 80%;
  }
  .forget-pass {
    display: inline-block;
  }
  .border-less {
    border-bottom: 0 !important;
    line-height: 15px !important;
    margin-top: 6%;
    padding-right: 0 !important;
  }
  .message-center .mc-container .mc-single {
    padding: 300px 40px 40px;
  }
  .message-center .mc-container .mc-single img {
    top: 20px;
  }
  .message-center .mc-container .mc-single .reply-confirm h1 {
    text-align: center;
  }
  .message-center .mc-container .mc-single img {
    left: 23%;
  }
  form ul li:nth-child(2n+1) > span,
  .white-box ul li:nth-child(2n+1) > span {
    display: table;
    height: 50px;
    width: 100%;
  }
  form ul li:nth-child(2n+1) > span > span,
  .white-box ul li:nth-child(2n+1) > span > span {
    display: table-cell;
    height: 100%;
    line-height: 14px;
    text-align: right;
    vertical-align: middle;
  }
  form .error-msg,
  .white-box .error-msg {
    margin-top: 20px;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 80%;
    margin-top: -120px;
    width: 120px;
  }
  .discounts .dis-container .save-jewel img {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-us .layout-about h2,
  .about-us .layout-about h3 {
    font-size: 20px;
  }
  .about-us .layout-about .content-about p,
  .about-us .layout-about .list ul li {
    font-size: 14px;
    line-height: 1.875;
  }
  .about-us .layout-about .content-about .mainbtn {
    font-size: 16px;
    line-height: 50px;
    padding: 0 40px;
  }
  .about-us .banner {
    margin-top: -70px;
  }
  .about-us .list ul {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 628px) {
  .discounts .dis-container .save-jewel {
    margin-top: -120px;
  }
}

@media (max-width: 615px) and (min-width: 481px) {
  form ul li input[type=text],
  form ul li input:not([type=radio]):not([type=checkbox]) {
    width: 90%;
  }
  form ul {
    margin: 0 auto;
    width: 100%;
  }
  .captcha {
    height: 100%;
    width: 100%;
  }
  .privacy .privacy_content .privacy_main .privacy_links {
    float: left;
    width: 100%;
  }
  .privacy .privacy_content .privacy_main .privacy_details,
  .privacy .privacy_content .privacy_main .terms_details {
    float: right;
    width: 100%;
  }
  .privacy .privacy_content .privacy_main .terms_details {
    margin-top: 700px;
  }
  .privacy .privacy_content .privacy_main .privacy_details {
    margin-top: 380px;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 78%;
    margin-top: -120px;
  }
  .discounts .dis-container .save-jewel img {
    width: 95%;
  }
}

@media (max-width: 600px) and (min-width: 481px) {
  .gameslist .layout .errortext {
    margin-top: 80px;
  }
  .gameslist .layout .codeerror {
    font-size: 90px;
  }
  .gameslist .layout .wizardtext {
    font-size: 16px;
  }
  .gameslist .layout .questtext {
    font-size: 11px;
  }
}

@media (max-width: 585px) and (min-width: 481px) {
  form ul li.break-line:nth-child(even) {
    margin-bottom: 12px;
    padding-top: 0;
  }
  .submit,
  .submit-deletegame,
  .submit-gohome,
  .submit-support {
    width: 80% !important;
  }
  .profile .layout .games-played ul li {
    float: left;
    margin-bottom: 20px;
    margin-right: 10px;
    text-align: center;
    width: 45%;
  }
  .account-info,
  .white-box .account-info {
    width: 90%;
  }
  form .account-info,
  .white-box .account-info {
    width: 90%;
  }
  .break-line {
    line-height: 15px;
    line-height: 14px !important;
    padding-top: 12px;
  }
}

@media (max-width: 580px) {
  .discounts .dis-container .save-jewel {
    margin-top: -130px;
  }
}

@media (max-width: 560px) and (min-width: 429px) {
  .discounts .dis-container .save-jewel {
    margin-top: -110px;
  }
}

@media (max-width: 560px) and (min-width: 481px) {
  .discounts .dis-container .jewel-box {
    padding: 20px;
  }
  .discounts .dis-container .save-jewel img {
    width: 90%;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 76%;
  }
}

@media (max-width: 540px) and (min-width: 481px) {
  .discounts .dis-container .jewel-box {
    padding: 10px;
  }
  .discounts .dis-container .save-jewel {
    margin-top: -100px;
  }
  .games .mobileerror {
    height: 400px;
    padding-top: 10px;
  }
  .gameslist .layout .errortext {
    margin-top: 100px;
  }
  .gameslist .layout .wizardtext {
    font-size: 16px;
    line-height: 16px;
  }
  .gameslist .layout .questtext {
    font-size: 11px;
  }
  .gameslist .layout a.gohome {
    margin-top: 90px;
  }
}

@media (max-width: 519px) and (min-width: 481px) {
  .discounts .dis-container .save-jewel {
    margin-left: 75%;
  }
}

@media (max-width: 510px) and (min-width: 481px) {
  form ul li select {
    padding: 4px 6px;
  }
}

@media (max-width: 495px) {
  .discounts .dis-container .save-jewel {
    margin-left: 74%;
  }
}

@media (max-width: 480px) and (min-width: 229px) {
  body {
    background-size: 40%;
    max-width: 480px;
  }
  .layout {
    zoom: 1;
    margin: 0 auto;
    position: relative;
    width: 100%;
  }
  .layout::before {
    content: '';
    display: block;
  }
  .layout::after {
    clear: both;
    content: '';
    display: table;
  }
  .layout {
    zoom: 1;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    width: 100%;
  }
  .layout::before {
    content: '';
    display: block;
  }
  .layout::after {
    clear: both;
    content: '';
    display: table;
  }
  .games .gameslist .layout {
    margin-top: -40px !important;
  }
  .about-us .layout-about h3 {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 15px;
    padding-top: 40px;
  }
  .about-us .list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-us .list ul {
    margin: 0 30px 0 55px;
    width: 100%;
  }
  .about-us .socials {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 0;
    max-width: 85%;
  }
  .about-us .socials a {
    height: 24.6875vw;
    margin-bottom: 20px;
  }
  .about-us .socials a.facebook {
    width: 15.15625vw;
  }
  .about-us .socials a.twitter {
    width: 19.6875vw;
  }
  .about-us .socials a.instagram {
    width: 19.6875vw;
  }
  .about-us .socials a.youtube {
    width: 23.28125vw;
  }
  .about-us .socials a.snapchat {
    width: 21.09375vw;
  }
  .about-us .socials a.twitch {
    width: 20.15625vw;
  }
  .about-us .banner {
    background: #04335b;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #04335b), color-stop(30%, #072340));
    background: -webkit-linear-gradient(top, #04335b 0, #072340 30%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #04335b), color-stop(30%, #072340));
    background: linear-gradient(to bottom, #04335b 0, #072340 30%);
    background-image: none;
    -webkit-filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$blue-gradient', endcolorstr='$htag2', gradienttype=0);
    filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$blue-gradient', endcolorstr='$htag2', gradienttype=0);
    height: auto;
    margin-top: 40px;
  }
  .about-us .banner .banner-text {
    padding: 30px 10px;
  }
  .about-us .layout-about .content-about {
    padding-top: 0;
  }
  .info-features-text {
    display: none;
  }
  .submit-deletegame {
    margin: 0 auto;
    width: 80%;
  }
  form.contact {
    background: none;
    border: none;
    position: relative;
  }
  form.contact .required {
    color: rgba(164, 0, 0, 0.85);
  }
  form.contact ul {
    margin-top: 10px;
  }
  form.contact ul li {
    height: auto;
    min-height: 50px;
    width: 50%;
  }
  form.contact ul li p {
    line-height: normal;
    margin: 0;
    text-align: right;
    width: 100%;
  }
  form.contact ul li p sub {
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
  }
  form.contact ul li:nth-child(even) {
    width: 67%;
  }
  form.contact ul li:nth-child(even) p {
    text-align: left;
  }
  form ul li,
  .white-box ul li {
    color: #393939;
    float: left;
    height: 50px;
    line-height: 30px;
    padding: 0 20px 0 5px;
    position: relative;
    width: 30%;
  }
  form ul li.noshow,
  .white-box ul li.noshow {
    display: none;
  }
  .profile .layout .user-info {
    padding-top: 5px;
  }
  .profile .layout .user-info .avatar-container {
    float: left;
    position: relative;
  }
  .profile .layout .user-info .avatar-container img.avatar {
    border: 5px solid #5e5e70;
    border-radius: 75px;
    float: left;
    height: 150px;
    margin-right: 30px;
    width: 150px;
  }
  .profile .layout .user-info .avatar-container div {
    display: none;
  }
  .profile .layout .user-info .avatar-container:hover .change-avatar {
    background: rgba(255, 255, 255, 0.7);
    border: 5px solid #5e5e70;
    border-radius: 75px;
    cursor: pointer;
    display: block;
    height: 150px;
    position: relative;
    width: 150px;
    z-index: 2;
  }
  .profile .layout .user-info .avatar-container:hover .change-avatar span {
    display: block;
    height: 31px;
    margin: 30px auto 20px;
    width: 38px;
  }
  .profile .layout .user-info .avatar-container:hover .change-avatar p {
    color: #061e36;
    font-size: 16px;
    font-weight: bold;
    left: 30px;
    position: absolute;
    text-align: center;
    top: 70px;
  }
  .profile .layout .games-played {
    background: #fff;
    padding: 20px 40px;
  }
  .profile .layout .games-played h2 {
    color: #061e36;
    font-family: Arial, sans-serif;
    font-size: 24px;
  }
  .profile .layout .games-played ul {
    zoom: 1;
    list-style: none;
    margin-bottom: 40px;
    width: 100%;
  }
  .profile .layout .games-played ul::before {
    content: '';
    display: block;
  }
  .profile .layout .games-played ul::after {
    clear: both;
    content: '';
    display: table;
  }
  .profile .layout .games-played ul li {
    float: left;
    margin-right: 8px;
    text-align: center;
    width: 19%;
  }
  .profile .layout .games-played ul li a {
    color: #061e36;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 0;
  }
  .profile .layout .games-played ul li a img {
    width: 100%;
  }
  .profile .layout .games-played ul li a span {
    background: #9f3797;
    background: -webkit-linear-gradient(top, #9f3797 0%, #6e1483 100%, #57116b 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#9f3797), color-stop(100%, #6e1483), to(#57116b));
    background: linear-gradient(to bottom, #9f3797 0%, #6e1483 100%, #57116b 100%);
    border-radius: 3px;
    -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 1px 0 0 #d681f5, inset 1px 0 0 0 #b51eec, inset -1px 0 0 0 #b51eec, inset 0 -1px 0 0 #b51eec;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 1px 0 0 #d681f5, inset 1px 0 0 0 #b51eec, inset -1px 0 0 0 #b51eec, inset 0 -1px 0 0 #b51eec;
    color: #fff;
    display: block;
    -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#9f3797', endColorstr='#57116b', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#9f3797', endColorstr='#57116b', GradientType=0);
    font-family: Arial, sans-serif;
    font-weight: normal;
    height: 38px;
    line-height: 38px;
    margin: 8px auto 0;
    width: 136px;
  }
  .profile .layout .games-played ul li a span:hover {
    background: #ad3ca9;
    background: -webkit-linear-gradient(top, #ad3ca9 0%, #6e1483 100%, #66137c 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ad3ca9), color-stop(100%, #6e1483), to(#66137c));
    background: linear-gradient(to bottom, #ad3ca9 0%, #6e1483 100%, #66137c 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ad3ca9', endColorstr='#66137c', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ad3ca9', endColorstr='#66137c', GradientType=0);
  }
  .profile .layout .games-played.nogames p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  .profile .layout .games-played.nogames a {
    background: #9f3797;
    background: -webkit-linear-gradient(top, #9f3797 0%, #6e1483 100%, #57116b 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#9f3797), color-stop(100%, #6e1483), to(#57116b));
    background: linear-gradient(to bottom, #9f3797 0%, #6e1483 100%, #57116b 100%);
    border-radius: 3px;
    -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 1px 0 0 #d681f5, inset 1px 0 0 0 #b51eec, inset -1px 0 0 0 #b51eec, inset 0 -1px 0 0 #b51eec;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 1px 0 0 #d681f5, inset 1px 0 0 0 #b51eec, inset -1px 0 0 0 #b51eec, inset 0 -1px 0 0 #b51eec;
    color: #fff;
    display: block;
    -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#9f3797', endColorstr='#57116b', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#9f3797', endColorstr='#57116b', GradientType=0);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    height: 38px;
    line-height: 38px;
    margin: 20px auto;
    text-align: center;
    width: 136px;
  }
  .profile .layout .games-played.nogames a:hover {
    background: #ad3ca9;
    background: -webkit-linear-gradient(top, #ad3ca9 0%, #6e1483 100%, #66137c 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ad3ca9), color-stop(100%, #6e1483), to(#66137c));
    background: linear-gradient(to bottom, #ad3ca9 0%, #6e1483 100%, #66137c 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ad3ca9', endColorstr='#66137c', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ad3ca9', endColorstr='#66137c', GradientType=0);
  }
  form .error-msg,
  .white-box .error-msg {
    margin-top: 20px;
  }
  .signup-sec .layout form .error-msg {
    margin-top: 0;
  }
  .white-box .success-msg {
    font-size: 12px;
  }
  .discounts .dis-container {
    padding-top: 20px;
  }
  .discounts .dis-container .jewel-box {
    margin-top: 60px;
    padding: 0;
    padding-bottom: 10px;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 76%;
    margin-top: -100px;
    width: 100px;
  }
  .discounts .dis-container .save-jewel img {
    width: 100px;
  }
  .discounts .dis-container .dis-info p.dis-text {
    margin-top: 10px;
  }
  .discounts .dis-container .dis-info .gold-store {
    margin: 0 auto;
  }
  .white-box .account-info {
    width: 90%;
  }
  form ul li:nth-child(even) a,
  .white-box ul li:nth-child(even) a {
    float: none;
  }
  .text-login {
    margin-left: -20px;
    width: 100%;
  }
  .message-center .mc-container .mc-single .reply.reply textarea {
    width: 100%;
  }
  .message-center .mc-container .mc-single .reply p {
    width: 100%;
  }
  .message-center .mc-container .mc-single .reply .submit-gohome {
    margin-left: auto;
    margin-right: auto;
  }
  .submit,
  .submit-deletegame,
  .submit-gohome,
  .submit-support,
  .white-box .submit {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .break-line {
    line-height: 15px;
  }
  form ul li select {
    padding: 4px 2px;
  }
  .profile .layout .games-played ul li {
    float: left;
    margin-bottom: 20px;
    margin-left: 30px;
    text-align: center;
    width: 80%;
  }
  .profile .layout .games-played h2 {
    text-align: center;
  }
  .games .gameslist ul li {
    margin-bottom: 15%;
    width: 100%;
  }
  .games .gameslist ul li .game_details p {
    max-height: 58px;
  }
  form ul li input[type=text],
  .white-box ul li input[type=text],
  form ul li input[type=password],
  .white-box ul li input[type=password] {
    width: 90%;
  }
  form ul li:nth-child(odd),
  .white-box ul li:nth-child(odd) {
    line-height: 17px;
    width: 100%important;
  }
  form ul li:nth-child(odd) {
    width: 40% !important;
  }
  form ul li:nth-child(even) {
    line-height: 14px;
    width: 60% !important;
  }
  form ul li:nth-child(even) textarea {
    width: 100% !important;
  }
  form .account-info,
  .white-box .account-info {
    width: 100%;
  }
  .white-box ul li,
  .white-box ul li:nth-child(odd) {
    text-align: center;
  }
  form .submit,
  form .submit-gohome,
  form .submit-support {
    width: 90%;
  }
  .captcha {
    height: 100%;
    margin-bottom: 10px;
    width: 100%;
  }
  form ul li:nth-child(even).text-login {
    line-height: 12px;
  }
  .directory .directory-right ul li.children ul {
    margin-left: 0 !important;
  }
  .directory .directory-right ul li.children ul.letters li a {
    padding-right: 0;
  }
  .gameslist .layout::before {
    content: '';
    display: block;
  }
  .gameslist .layout::after,
  .gameslist .layout .codeerror::after {
    clear: both;
    content: '';
    display: table-cell;
  }
  .games .mobileerror {
    height: 450px;
    padding-top: 10px;
  }
  .gameslist .layout a.gohome {
    margin-top: 20px;
  }
  .gameslist .layout .codeerror {
    font-size: 90px;
    line-height: 1.2em;
  }
  .gameslist .layout .wizardtext::before {
    line-height: 16px !important;
  }
  .gameslist .layout .errortext {
    margin-top: 90px;
  }
  .socials-label {
    display: inline-block;
  }
  form ul li:nth-child(odd),
  .white-box ul li:nth-child(odd) {
    margin-top: 16px;
    margin-bottom: 8px;
    height: 20px;
    width: 100% !important;
    text-align: center;
  }
  .white-box ul li:nth-child(odd) {
    margin: 0 auto;
    padding: 0 20px;
  }
  form ul li:nth-child(even),
  .white-box ul li:nth-child(even) {
    height: auto;
    margin: 0 auto;
    padding: 0 16px;
    width: 100% !important;
  }
  form .account-info ul li:nth-child(even) {
    padding: 10px 20px;
  }
  form.contact ul li p {
    text-align: center !important;
  }
  form ul.noheight li .submit {
    width: 70%;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li .container,
  .profile .layout .box .profile_edit_content form .small-col ul li .containero {
    margin-top: 0;
  }
}

@media (max-width: 462px) {
  .discounts .dis-container .save-jewel {
    margin-top: -110px;
  }
}

/* ------------------------------------------------- */
@media (max-width: 440px) {
  .age-check .content .enter {
    margin-left: auto;
  }
  form ul li:empty {
    display: none;
  }
  .gameslist .layout .errortext {
    margin-top: 70px;
  }
  .about-us .banner .banner-text {
    font-size: 14px;
  }
}

/* ------------------------------------------------- */
@media (max-width: 410px) {
  .games .mobileerror {
    height: 420px;
  }
  .gameslist .layout .errortext {
    margin-top: 60px;
  }
}

/* ------------------------------------------------- */
@media (max-width: 400px) {
  form ul li select {
    margin: 0 auto;
    padding: 4px 0;
  }
  form ul li:nth-child(odd),
  .white-box ul li:nth-child(odd) {
    width: 100% !important;
    padding: 0;
  }
  .white-box ul li:nth-child(odd) {
    margin: 0 auto;
  }
  form ul li:nth-child(even),
  .white-box ul li:nth-child(even) {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .submit,
  .submit-gohome,
  .submit-support,
  .white-box .submit,
  textarea {
    width: 100%;
  }
  .submit-deletegame {
    margin: 0 auto 10px;
  }
  .signup h1 {
    clear: both;
    font-size: 22px;
    width: 100%;
  }
  form .submit,
  form .submit-deletegame,
  form .submit-gohome,
  form .submit-support {
    width: 80%;
  }
  .signup-sec .layout form ul li:nth-child(odd).space-login {
    display: none;
  }
  .games .gameslist ul li {
    margin-bottom: 15%;
    margin-top: 20px;
    width: 100%;
  }
  .profile .layout .games-played ul li {
    margin-left: 20px;
  }
  .message-center .mc-header {
    font-size: 11px;
    padding: 0 0 0 5px;
  }
  .message-center .mc-header .right-text {
    padding-right: 5px;
  }
  .message-center .mc-header ul li a {
    padding: 0 15px;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 74%;
    margin-top: -100px;
  }
  .discounts .dis-container .save-jewel img {
    width: 90px;
  }
}

@media (max-width: 390px) {
  .gameslist .layout .errortext {
    margin-left: -15px;
    margin-top: 40px;
  }
  .gameslist .layout .codeerror {
    line-height: 1em;
  }
  .games .mobileerror {
    height: 410px;
    padding-top: 20px;
  }
  .wisard,
  .warrior {
    display: none;
  }
  .cicle {
    margin-left: 0;
    position: relative;
    width: 100%;
  }
  .gameslist .layout .wizardtext {
    font-size: 20px;
  }
  .gameslist .layout a.gohome {
    margin-top: 50px;
  }
  .discounts .dis-container .jewel-box {
    margin-top: 50px;
  }
}

@media (max-width: 370px) {
  .privacy .privacy_content .privacy_main .terms_details {
    margin-top: 730px;
  }
  .privacy .privacy_content .privacy_main .privacy_details {
    margin-top: 420px;
  }
  .gameslist .layout .errortext {
    margin-top: 90px;
  }
  .gameslist .layout .wizardtext {
    font-weight: 500;
  }
  .gameslist .layout .codeerror {
    line-height: 20px;
  }
  .gameslist .layout a.gohome {
    margin-top: 70px;
  }
}

@media (max-width: 360px) {
  .privacy .privacy_content .privacy_main .terms_details {
    margin-top: 750px;
  }
  form {
    padding: 5px;
  }
  form .submit-login {
    margin-bottom: 60px;
  }
}

@media (max-width: 350px) {
  form .submit,
  form .submit-deletegame,
  form .submit-gohome,
  form .submit-support {
    width: 80%;
  }
  .white-box .success-msg {
    font-size: 11px;
  }
  .gameslist .layout .errortext {
    margin-left: -15px;
    margin-top: 70px;
  }
  .gameslist .layout .codeerror {
    font-size: 90px;
  }
  .gameslist .layout .codeerror {
    line-height: .9em;
  }
  .gameslist .layout .cicle {
    margin-left: 14%;
    width: 70%;
  }
  .gameslist .layout a.gohome {
    margin-top: 30px;
  }
}

@media (max-width: 340px) {
  .privacy .privacy_content .privacy_main .privacy_details {
    margin-top: 490px;
  }
  .discounts .dis-container .jewel-box {
    margin-top: 45px;
  }
  .discounts .dis-container .save-jewel {
    margin-top: -95px;
  }
  .discounts .dis-container .save-jewel img {
    width: 80px;
  }
  .white-box .error-msg {
    padding: 10px 5px;
  }
}

@media (max-width: 320px) {
  .message-center .mc-container .mc-list .mc-btn {
    margin: 0 0 20px 10px;
  }
  .gameslist .layout .codeerror {
    font-size: 80px;
    line-height: 1em;
  }
  .gameslist .layout .errortext {
    margin-top: 55px;
  }
  .discounts .dis-container .save-jewel {
    margin-left: 70%;
  }
  .white-box .error-msg {
    padding: 10px 0;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .directory .directory-right ul li.children ul {
    margin-left: 5px !important;
  }
  .directory .directory-right ul a {
    padding: 5px;
  }
  .directory .directory-right ul li.children ul li {
    margin-left: 5px;
  }
}

/* Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .directory .directory-right ul li.children ul {
    margin-left: 5px !important;
  }
  .directory .directory-right ul a {
    padding: 5px;
  }
  .directory .directory-right ul li.children ul li {
    margin-left: 5px;
  }
}

/* Portrait  4/4s */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2 / 3) and (orientation: portrait) {
  .directory .directory-right ul li.children ul {
    margin-left: -5px !important;
  }
  .directory .directory-right ul a {
    padding: 5px;
  }
}

/* only  4/4s */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2 / 3) and (orientation: landscape) {
  .directory .directory-right ul li.children ul {
    margin-left: -5px !important;
  }
  .directory .directory-right ul a {
    padding: 5px;
  }
}

.home-background .homepage > .layout {
  padding: 24px 16px 0;
}

@media (min-width: 1080px) {
  .home-background {
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .home-background .notice-area {
    margin-top: 0;
  }
  .home-background .skin {
    position: absolute;
    width: 100%;
    height: 1000px;
  }
  .home-background .skin:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 0)), to(#f7f7f7));
    background: -webkit-linear-gradient(rgba(247, 247, 247, 0), #f7f7f7);
    background: linear-gradient(rgba(247, 247, 247, 0), #f7f7f7);
  }
  .home-background .homepage > .layout {
    min-height: 936px;
  }
}

@media (max-width: 1080px) {
  .home-background {
    background-image: none !important;
  }
  .home-background .homepage > .layout {
    padding: 24px 20px 0;
  }
}

.homepage > .layout {
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
  margin-bottom: 64px;
}

@media (max-width: 1080px) {
  .homepage > .layout {
    padding: 24px 20px 0;
  }
}

.homepage .contents-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.homepage .contents-title .list-link {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  margin: auto;
  margin-right: 28px;
}

.homepage .contents-title .list-link:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.homepage .column-left {
  max-width: 772px;
}

.homepage .column-left > div:first-child {
  padding-top: 0;
}

.homepage .column-right {
  max-width: 268px;
  margin-left: auto;
}

.homepage .genre-name {
  display: block;
  position: absolute;
  left: 15px;
  bottom: 13px;
  color: white;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.85), 0 4px 4px rgba(0, 0, 0, 0.25), 0 -4px 4px rgba(0, 0, 0, 0.25), -4px 0 4px rgba(0, 0, 0, 0.25), 4px 0 4px rgba(0, 0, 0, 0.25);
}

.homepage .featured ul {
  zoom: 1;
  list-style: none;
}

.homepage .featured ul::before {
  content: '';
  display: block;
}

.homepage .featured ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .featured ul li a {
  display: block;
  position: relative;
}

.homepage .featured ul li a:hover {
  top: 2px;
}

.homepage .featured ul li a:hover img {
  opacity: .7;
}

.homepage .featured ul li a img {
  width: 100%;
}

.homepage .featured ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .featured ul li a:hover {
  text-decoration: none;
}

.homepage .featured ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .featured ul {
  margin: 0 -8px;
}

.homepage .featured ul li {
  width: 364px;
  height: auto;
  margin: 0 8px 8px;
}

.homepage .standard-list-contents {
  padding-top: 24px;
}

.homepage .standard-list-contents ul {
  zoom: 1;
  list-style: none;
}

.homepage .standard-list-contents ul::before {
  content: '';
  display: block;
}

.homepage .standard-list-contents ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .standard-list-contents ul li a {
  display: block;
  position: relative;
}

.homepage .standard-list-contents ul li a:hover {
  top: 2px;
}

.homepage .standard-list-contents ul li a:hover img {
  opacity: .7;
}

.homepage .standard-list-contents ul li a img {
  width: 100%;
}

.homepage .standard-list-contents ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .standard-list-contents ul li a:hover {
  text-decoration: none;
}

.homepage .standard-list-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .standard-list-contents ul {
  margin: 0 -8px;
}

.homepage .standard-list-contents ul li {
  width: 136px;
  height: auto;
  margin: 0 8px 16px;
}

.homepage .standard-list-contents ul li a {
  background: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  padding-bottom: 6px;
}

.homepage .standard-list-contents ul li a .img-wrapper {
  position: relative;
  height: 136px;
  overflow: hidden;
}

.homepage .standard-list-contents ul li a .img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 4px 4px 0 0;
}

.homepage .standard-list-contents ul li a .img-wrapper.large {
  height: 184px;
}

.homepage .standard-list-contents ul li a .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 40px;
  padding: 4px 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.homepage .top-ranking-contents {
  padding-top: 24px;
}

.homepage .top-ranking-contents ul {
  zoom: 1;
  list-style: none;
}

.homepage .top-ranking-contents ul::before {
  content: '';
  display: block;
}

.homepage .top-ranking-contents ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .top-ranking-contents ul li a {
  display: block;
  position: relative;
}

.homepage .top-ranking-contents ul li a:hover {
  top: 2px;
}

.homepage .top-ranking-contents ul li a:hover img {
  opacity: .7;
}

.homepage .top-ranking-contents ul li a img {
  width: 100%;
}

.homepage .top-ranking-contents ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .top-ranking-contents ul li a:hover {
  text-decoration: none;
}

.homepage .top-ranking-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .top-ranking-contents ul {
  margin: 0 -8px;
}

.homepage .top-ranking-contents ul li {
  width: 136px;
  height: auto;
  margin: 0 8px 16px;
}

.homepage .top-ranking-contents ul li a {
  background: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  padding-bottom: 6px;
}

.homepage .top-ranking-contents ul li a .img-wrapper {
  position: relative;
  height: 136px;
  overflow: hidden;
}

.homepage .top-ranking-contents ul li a .img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 4px 4px 0 0;
}

.homepage .top-ranking-contents ul li a .img-wrapper.large {
  height: 184px;
}

.homepage .top-ranking-contents ul li a .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 40px;
  padding: 4px 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.homepage .top-ranking-contents ul li .rank-badge {
  position: relative;
  max-height: 25px;
  margin-bottom: 6px;
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-top, .homepage .top-ranking-contents ul li .rank-badge .rank-badge-low {
  display: block;
  margin: auto;
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-top {
  width: 40px;
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-top img {
  width: 100%;
  margin-top: -5px;
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-low {
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-count {
  position: absolute;
  top: 1px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-count.top-2 {
  color: rgba(0, 0, 0, 0.5);
}

.homepage .top-ranking-contents ul li .rank-badge .rank-badge-count.top-3 {
  color: #CD742D;
}

.homepage .staff-picks-contents {
  padding-top: 24px;
}

.homepage .staff-picks-contents ul {
  zoom: 1;
  list-style: none;
}

.homepage .staff-picks-contents ul::before {
  content: '';
  display: block;
}

.homepage .staff-picks-contents ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .staff-picks-contents ul li a {
  display: block;
  position: relative;
}

.homepage .staff-picks-contents ul li a:hover {
  top: 2px;
}

.homepage .staff-picks-contents ul li a:hover img {
  opacity: .7;
}

.homepage .staff-picks-contents ul li a img {
  width: 100%;
}

.homepage .staff-picks-contents ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .staff-picks-contents ul li a:hover {
  text-decoration: none;
}

.homepage .staff-picks-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .staff-picks-contents ul {
  margin: 0 -8px;
}

.homepage .staff-picks-contents ul li {
  width: 364px;
  height: auto;
  margin: 0 8px 8px;
}

.homepage .staff-picks-contents .price-label {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 4px;
  font-weight: bold;
  color: white;
}

.homepage .staff-picks-contents .price-label .discount-rate, .homepage .staff-picks-contents .price-label .discount-price, .homepage .staff-picks-contents .price-label .discount-credits {
  font-size: 10px;
}

.homepage .staff-picks-contents .price-label .discount-rate {
  background: #e60012;
  padding: 3px;
}

.homepage .staff-picks-contents .price-label .discount-price, .homepage .staff-picks-contents .price-label .discount-credits {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  text-decoration: line-through;
}

.homepage .staff-picks-contents .price-label .discount-credits::before, .homepage .staff-picks-contents .price-label .result-credits::before {
  content: "";
  display: inline-block;
  background: url("/images/icon/virtual_currency.svg");
  background-size: cover;
}

.homepage .staff-picks-contents .price-label .discount-credits::before {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.homepage .staff-picks-contents .price-label .result-credits::before {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

.homepage .staff-picks-contents .price-label .owned:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #28a745;
  border-bottom: 2px solid #28a745;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 3px 3px 0;
}

.homepage .staff-picks-contents .price-label.temp-sale {
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.homepage .staff-picks-contents .price-label.temp-sale .discount-rate {
  padding: 0 3px;
  margin-right: 4px;
}

.homepage .staff-picks-contents .price-label.temp-sale .price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: center;
}

.homepage .staff-picks-contents .price-label.temp-sale .price-content .discount-price, .homepage .staff-picks-contents .price-label.temp-sale .price-content .discount-credits {
  display: block;
  line-height: normal;
}

.homepage .staff-picks-contents .price-label.temp-sale .price-content .discount-credits::before {
  vertical-align: bottom;
}

.homepage .staff-picks-contents .title {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
}

.homepage .staff-picks-contents .body {
  color: rgba(0, 0, 0, 0.5);
}

.homepage .recommended-contents {
  padding-top: 24px;
}

.homepage .recommended-contents ul {
  zoom: 1;
  list-style: none;
}

.homepage .recommended-contents ul::before {
  content: '';
  display: block;
}

.homepage .recommended-contents ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .recommended-contents ul li a {
  display: block;
  position: relative;
}

.homepage .recommended-contents ul li a:hover {
  top: 2px;
}

.homepage .recommended-contents ul li a:hover img {
  opacity: .7;
}

.homepage .recommended-contents ul li a img {
  width: 100%;
}

.homepage .recommended-contents ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .recommended-contents ul li a:hover {
  text-decoration: none;
}

.homepage .recommended-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .recommended-contents ul {
  margin: 0 -8px;
}

.homepage .recommended-contents ul li {
  width: 364px;
  height: auto;
  margin: 0 8px 8px;
}

.homepage .recommended-contents .price-label {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 4px;
  font-weight: bold;
  color: white;
}

.homepage .recommended-contents .price-label .discount-rate, .homepage .recommended-contents .price-label .discount-price, .homepage .recommended-contents .price-label .discount-credits {
  font-size: 10px;
}

.homepage .recommended-contents .price-label .discount-rate {
  background: #e60012;
  padding: 3px;
}

.homepage .recommended-contents .price-label .discount-price, .homepage .recommended-contents .price-label .discount-credits {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  text-decoration: line-through;
}

.homepage .recommended-contents .price-label .discount-credits::before, .homepage .recommended-contents .price-label .result-credits::before {
  content: "";
  display: inline-block;
  background: url("/images/icon/virtual_currency.svg");
  background-size: cover;
}

.homepage .recommended-contents .price-label .discount-credits::before {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.homepage .recommended-contents .price-label .result-credits::before {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

.homepage .recommended-contents .price-label .owned:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #28a745;
  border-bottom: 2px solid #28a745;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 3px 3px 0;
}

.homepage .recommended-contents .price-label.temp-sale {
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.homepage .recommended-contents .price-label.temp-sale .discount-rate {
  padding: 0 3px;
  margin-right: 4px;
}

.homepage .recommended-contents .price-label.temp-sale .price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: center;
}

.homepage .recommended-contents .price-label.temp-sale .price-content .discount-price, .homepage .recommended-contents .price-label.temp-sale .price-content .discount-credits {
  display: block;
  line-height: normal;
}

.homepage .recommended-contents .price-label.temp-sale .price-content .discount-credits::before {
  vertical-align: bottom;
}

.homepage .pre-regist-contents {
  padding-top: 24px;
}

.homepage .pre-regist-contents ul {
  zoom: 1;
  list-style: none;
}

.homepage .pre-regist-contents ul::before {
  content: '';
  display: block;
}

.homepage .pre-regist-contents ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .pre-regist-contents ul li a {
  display: block;
  position: relative;
}

.homepage .pre-regist-contents ul li a:hover {
  top: 2px;
}

.homepage .pre-regist-contents ul li a:hover img {
  opacity: .7;
}

.homepage .pre-regist-contents ul li a img {
  width: 100%;
}

.homepage .pre-regist-contents ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .pre-regist-contents ul li a:hover {
  text-decoration: none;
}

.homepage .pre-regist-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .pre-regist-contents ul {
  margin: 0 -8px;
}

.homepage .pre-regist-contents ul li {
  width: 364px;
  height: auto;
  margin: 0 8px 8px;
}

.homepage .retargeting-info-contents {
  padding-top: 24px;
}

.homepage .retargeting-info-contents ul {
  zoom: 1;
  list-style: none;
}

.homepage .retargeting-info-contents ul::before {
  content: '';
  display: block;
}

.homepage .retargeting-info-contents ul::after {
  clear: both;
  content: '';
  display: table;
}

.homepage .retargeting-info-contents ul li a {
  display: block;
  position: relative;
}

.homepage .retargeting-info-contents ul li a:hover {
  top: 2px;
}

.homepage .retargeting-info-contents ul li a:hover img {
  opacity: .7;
}

.homepage .retargeting-info-contents ul li a img {
  width: 100%;
}

.homepage .retargeting-info-contents ul li a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .retargeting-info-contents ul li a:hover {
  text-decoration: none;
}

.homepage .retargeting-info-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.homepage .retargeting-info-contents ul {
  margin: 0 -8px;
}

.homepage .retargeting-info-contents ul li {
  width: 136px;
  height: auto;
  margin: 0 8px 16px;
}

.homepage .retargeting-info-contents ul li a {
  background: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  padding-bottom: 6px;
}

.homepage .retargeting-info-contents ul li a .img-wrapper {
  position: relative;
  height: 136px;
  overflow: hidden;
}

.homepage .retargeting-info-contents ul li a .img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 4px 4px 0 0;
}

.homepage .retargeting-info-contents ul li a .img-wrapper.large {
  height: 184px;
}

.homepage .retargeting-info-contents ul li a .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 40px;
  padding: 4px 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.homepage .events-banner {
  margin-bottom: 24px;
}

.homepage .events-banner a {
  display: block;
  position: relative;
}

.homepage .events-banner a:hover {
  top: 2px;
}

.homepage .events-banner a:hover img {
  opacity: .7;
}

.homepage .events-banner a img {
  width: 100%;
}

.homepage .events-banner a img.img-banner {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.homepage .events-banner a:hover {
  text-decoration: none;
}

.homepage .events-banner.empty {
  margin-bottom: 0;
}

.homepage .events-banner .banner-link {
  width: 264px;
  height: auto;
}

.homepage .events-banner .banner-link.temp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.homepage .events-banner .banner-link.temp > p {
  position: absolute;
  width: 100%;
  text-align: center;
}

.homepage .events-banner .banner-link.temp > p span {
  display: block;
}

.homepage .events-banner .banner-link.temp > p .main {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.homepage .events-banner .banner-link.temp > p .sub {
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  padding: 4px 12px;
  background: white;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  width: 120px;
  margin: 8px auto 0;
}

.homepage .events-banner .banner-link.temp:hover {
  opacity: .7;
}

.homepage .events-banner .banner-link.temp:hover img {
  opacity: 1;
}

.homepage .events-banner .counter {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin: 2px 0 8px;
}

.homepage .events-banner .button-link {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 16px !important;
  font-size: 14px;
}

.homepage .events-banner .button-link:hover {
  text-decoration: none;
}

.homepage .events-banner .button-link:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.homepage .events-banner .button-link.disabled {
  pointer-events: none;
}

.homepage .events-banner .button-link:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.homepage .events-banner .button-link.disabled {
  opacity: .4;
}

.homepage .free-promotion {
  margin-bottom: 24px;
}

.homepage .free-promotion .banner-link {
  display: block;
  position: relative;
  margin-bottom: 8px;
}

.homepage .free-promotion .banner-link:hover {
  top: 2px;
}

.homepage .free-promotion .banner-link:hover img {
  opacity: .7;
}

.homepage .free-promotion .banner-link:last-child {
  margin-bottom: 0;
}

.homepage .free-promotion img {
  width: 264px;
  height: auto;
}

.homepage .follow-us > div {
  margin-bottom: 16px;
}

.homepage .follow-us > div:last-child {
  margin-bottom: 0;
}

.homepage .follow-us > div iframe {
  width: 268px !important;
}

.homepage .follow-us > div.youtube {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.homepage .follow-us > div.youtube a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 0;
}

.homepage .follow-us > div.youtube a img {
  display: block;
  width: 100px;
  height: 22px;
  margin: auto;
}

.homepage .follow-us > div.youtube a:hover {
  position: relative;
}

.homepage .follow-us > div.youtube a:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.profile {
  /*
    --- 以下、既存スタイル ---
    // TODO: 未使用Styleの削除
  */
}

.profile .header-bg {
  background-color: #202020;
  padding-top: 160px;
  margin-bottom: -116px;
}

.profile .profile-contents {
  padding: 0 16px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.profile .profile-contents-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.profile .profile-contents-subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.profile .user-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  margin-bottom: 48px;
}

.profile .user-infomation {
  width: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px 0 56px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.profile .user-infomation__image {
  margin: 0 auto 16px;
}

.profile .user-infomation__image img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  vertical-align: bottom;
  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.profile .user-infomation__name {
  font-size: 18px;
  font-weight: bold;
  width: 90%;
  margin: 0 auto 4px;
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}

.profile .user-infomation__user-id {
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.profile .user-menu {
  width: 738px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.profile .user-menu__section {
  padding: 48px 0 48px 90px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.profile .user-menu__section:last-child {
  padding-right: 102px;
}

.profile .user-menu__title {
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
}

.profile .user-menu__icon {
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 2px;
}

.profile .user-menu__icon svg * {
  fill: #8a8a8a;
}

.profile .user-menu__link {
  list-style-type: none;
  padding-left: 32px;
}

.profile .user-menu__link li {
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: normal;
}

.profile .user-menu__link li a {
  color: rgba(0, 0, 0, 0.5);
}

.profile .user-invitation {
  width: 100%;
  background-color: #202020;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  padding: 24px 0;
  margin-bottom: 48px;
}

.profile .user-invitation:before, .profile .user-invitation:after {
  position: absolute;
}

.profile .user-invitation:after {
  content: "";
  width: 152px;
  height: 124px;
  right: 0;
  bottom: 0;
  background: url(../images/page/profile/invitation_coin.png) no-repeat;
  background-position: left top;
  background-size: 204px auto;
}

.profile .user-invitation__text {
  width: 37%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 100px;
}

.profile .user-invitation__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.profile .user-invitation__description {
  color: rgba(255, 255, 255, 0.6);
}

.profile .user-invitation__description span {
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.profile .user-invitation__label {
  width: 63%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 128px 0 32px;
}

.profile .user-invitation__label input[type="text"] {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  border: 0;
  padding: 12px;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}

.profile .user-invitation-unverify {
  width: 100%;
  padding: 24px 12px;
  margin-bottom: 48px;
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  text-align: center;
  border-radius: 4px;
}

.profile .user-invitation-unverify .is-hide {
  display: none !important;
}

.profile .user-invitation-unverify__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.profile .user-invitation-unverify__description {
  font-size: 16px;
  font-weight: normal;
}

.profile .user-invitation-unverify__description span {
  display: block;
}

.profile .user-invitation-unverify__resendDescription {
  margin-top: 8px;
}

.profile .user-invitation-unverify__resendDescription > span {
  display: block;
}

.profile .user-invitation-unverify__resendDescription > span:last-child {
  margin-top: 32px;
}

.profile .user-invitation-unverify__resendDescription a {
  color: #4098ff;
}

.profile .user-invitation-unverify__link {
  margin-top: 16px;
}

.profile .user-invitation-unverify__link a {
  max-width: 280px;
}

.profile .mygames-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
}

.profile .mygames-category__list a {
  padding: 12px 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profile .mygames-category__list a span {
  font-size: 14px;
  font-weight: normal;
}

.profile .mygames-category__list--is-active a {
  padding: 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.profile .mygames-category__list--is-active a::after {
  width: 100%;
  height: 3px;
  display: block;
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  bottom: -2px;
}

.profile .mygames-category__list--is-active a span {
  font-size: 14px;
  font-weight: bold;
}

.profile .application-noresults {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 64px 0;
}

.profile .application-noresults-description {
  margin-bottom: 24px;
}

.profile .application-noresults-button {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}

.profile .application-games-list li {
  width: 192px;
  margin: 0 8px 16px;
}

.profile .application-games-seemore-link {
  display: block;
  padding: 0 0 12em;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 4px;
  position: relative;
}

.profile .application-games-seemore-img {
  width: 40px;
  display: block;
  margin: 0 auto;
  position: absolute;
  z-index: 20;
  top: 80px;
  left: 0;
  right: 0;
}

.profile .application-games-seemore-text {
  display: block;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  z-index: 20;
  top: 130px;
  left: 0;
  right: 0;
}

.profile .application-games-thumbnail-wrapper img {
  border-radius: 4px 4px 0 0;
}

.profile .mygames-content__profile-back {
  margin: 24px 0 4px;
}

.profile .mygames-content__profile-back a {
  font-size: 10px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
}

.profile .mygames-content__icon-backarrow {
  position: relative;
  width: 14px;
  height: 14px;
  vertical-align: bottom;
  display: inline-block;
}

.profile .mygames-content__icon-backarrow::before, .profile .mygames-content__icon-backarrow::after {
  content: "";
  display: block;
  position: absolute;
}

.profile .mygames-content__icon-backarrow::before {
  top: 3px;
  width: 11px;
  height: 2px;
  background: #7c7c7c;
}

.profile .mygames-content__icon-backarrow::after {
  top: -1px;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent transparent #7c7c7c #7c7c7c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.profile .mygames-content__title {
  font-size: 24px;
  font-weight: bold;
  color: #202020;
  margin-bottom: 24px;
}

.profile .mygames-content .application-games-list--full {
  max-width: 1056px;
}

.profile .mygames-content .application-games-list {
  margin: 0 auto 24px;
}

.profile .user-info--message {
  margin: 24px 0 0 !important;
  padding: 0 !important;
}

.profile .user-message__profile-back {
  margin: 0 0 4px;
}

.profile .user-message__profile-back a {
  font-size: 10px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
}

.profile .user-message__icon-backarrow {
  position: relative;
  width: 14px;
  height: 14px;
  vertical-align: bottom;
  display: inline-block;
}

.profile .user-message__icon-backarrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0px;
  width: 11px;
  height: 2px;
  background: #7c7c7c;
}

.profile .user-message__icon-backarrow::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent transparent #7c7c7c #7c7c7c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.profile .user-message__title {
  font-size: 24px;
  font-weight: bold;
}

.profile .profile-edit__init-spinner-wrap {
  position: relative;
  width: 247px;
  margin: 0 auto;
  height: 40px;
  background: #1777F2;
  border-radius: 5px;
}

.profile .profile-edit__init-spinner-wrap:hover {
  opacity: .8;
}

.profile .profile-edit__init-spinner {
  margin: 60px auto;
  font-size: 10px;
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  top: -48px;
  left: 0;
  right: 0;
  -webkit-animation: loading-fb-login 0.6s infinite linear;
  animation: loading-fb-login 0.6s infinite linear;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  border-left: 2px solid rgba(255, 255, 255, 0.6);
}

.profile .profile-edit__init-spinner, .profile .profile-edit__init-spinner::after {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.profile .profile-edit__disconnect-wrap {
  position: relative;
  width: 247px;
  margin: 0 auto;
  height: 40px;
  color: #fff;
  background: #1777F2;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.profile .profile-edit__disconnect-wrap:hover {
  opacity: .8;
}

@media (max-width: 800px) {
  .profile .header-bg {
    margin-bottom: -90px;
  }
  .profile .profile-contents__title {
    text-align: center;
  }
  .profile .user-profile {
    margin-bottom: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .profile .user-infomation {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 48px 0 16px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
  }
  .profile .user-infomation__image {
    position: absolute;
    z-index: 13;
    top: -44px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .profile .user-infomation__image img {
    width: 88px;
    height: 88px;
  }
  .profile .user-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .profile .user-menu__section {
    width: 50%;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
  }
  .profile .user-menu__section:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding-right: 0;
  }
  .profile .user-menu__title {
    color: rgba(0, 0, 0, 0.85);
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
    display: block;
    padding: 20px 0;
  }
  .profile .user-menu__icon svg * {
    fill: rgba(0, 0, 0, 0.85);
  }
  .profile .user-menu__link {
    display: none;
  }
  .profile .user-invitation {
    width: 100vw;
    margin: 0 -16px 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 24px 16px 32px;
  }
  .profile .user-invitation__text {
    width: 100%;
    padding-left: 0;
  }
  .profile .user-invitation__description {
    margin-bottom: 16px;
  }
  .profile .user-invitation__label {
    width: 100%;
    position: relative;
    z-index: 13;
    padding: 0;
  }
  .profile .user-invitation__label input[type="text"] {
    width: 80vw;
    background-color: #000;
  }
  .profile .mygames-category {
    border-bottom: none;
    margin-bottom: 48px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .profile .mygames-category::after {
    width: 100vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 1px;
    display: block;
    content: "";
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: -1px;
    left: -16px;
    z-index: 10;
  }
  .profile .mygames-category__list {
    width: 33.3%;
    text-align: center;
  }
  .profile .mygames-category__list a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
    text-align: center;
  }
  .profile .mygames-category__list a span {
    font-size: 12px;
    font-weight: normal;
  }
  .profile .mygames-category__list--is-active a span {
    font-size: 12px;
    font-weight: bold;
  }
  .profile .mygames-category__list--is-active a::after {
    z-index: 13;
  }
  .profile .mygames-content {
    padding: 0 16px !important;
  }
  .profile .mygames-content__profile-back {
    margin: 0;
    padding: 16px 0;
  }
  .profile .mygames-content__title {
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
  }
  .profile .mygames-content .application-games-list--full {
    width: 96vw;
  }
  .profile .mygames-content .application-games-list {
    margin: 0 -8px 24px;
  }
  .profile .user-message__profile-back {
    margin: 0;
    padding: 16px 16px 8px;
  }
  .profile .user-message__title {
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
  }
  .profile .buttons--message {
    width: 100%;
    padding: 0 24px;
  }
  .profile .buttons--message .btn-section {
    width: 50%;
    padding: 16px 0;
  }
  .profile .buttons--message .btn-section:first-child {
    padding-left: 0 !important;
  }
  .profile .buttons--message .btn-section:nth-child(2) {
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .profile .user-invitation__title {
    font-size: 18px;
    font-weight: bold;
  }
  .profile .user-invitation__description {
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.6);
  }
  .profile .user-invitation__description span {
    font-size: 14px;
    font-weight: bold;
    display: block;
  }
  .profile .user-invitation__label input[type="text"] {
    width: 100%;
  }
  .profile .application-games-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .profile .application-games-list li {
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%;
    margin: 0 2% 16px;
  }
  .profile .application-games-list .application-games-seemore {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0 0 32px 0;
  }
  .profile .application-games-list .application-games-seemore-link {
    width: 100vw;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px;
    color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 12px 0 12px;
    display: block;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    font-weight: normal;
  }
  .profile .application-games-list .application-games-seemore-img {
    display: none;
  }
  .profile .application-games-list .application-games-seemore-text {
    width: 100%;
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-weight: normal;
    position: relative;
    top: auto;
    left: 0;
    right: 0;
  }
  .profile .application-games-list .application-games-seemore-text::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px rgba(0, 0, 0, 0.5);
    border-right: solid 2px rgba(0, 0, 0, 0.5);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 24px;
    margin-top: -4px;
  }
}

@media (max-width: 374px) {
  .profile .mygames-category__list a {
    word-break: break-all;
  }
}

.profile .layout {
  zoom: 1;
  margin: 20px auto;
  /* end old profile layout */
}

.profile .layout::before {
  content: '';
  display: block;
}

.profile .layout::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .col-left {
  float: left;
  width: 27%;
}

.profile .layout .col-middle-full {
  float: left;
  padding-left: 15px;
  width: 73%;
}

.profile .layout .col-middle-full .empty {
  padding: 80px 0;
}

.profile .layout .user-info {
  margin: 0 40px;
  padding-top: 10px;
}

.profile .layout .user-info .user p {
  display: inline-block;
}

.profile .layout .user-info .user p:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
  color: #202020;
  margin-right: 12px;
}

.profile .layout .user-info .user p:nth-child(2) {
  color: rgba(0, 0, 0, 0.5);
}

.profile .layout .user-info .buttons {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile .layout .user-info .buttons .btn-section {
  position: relative;
  padding: 12px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.profile .layout .user-info .buttons .btn-section:first-child {
  padding-left: 16px;
}

.profile .layout .user-info .buttons .btn-section.active {
  pointer-events: none;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px 4px 0 0;
  padding: 12px 16px;
  top: 1px;
  z-index: 1;
}

.profile .layout .user-info .buttons .btn-section.active > a {
  color: rgba(0, 0, 0, 0.85);
}

.profile .layout .user-info .buttons .btn-section:nth-child(2) {
  margin: 0 24px;
}

.profile .layout .user-info .buttons .btn-section > a {
  color: #4098ff;
  font-size: 12px;
  font-weight: normal;
  margin: auto;
}

.profile .layout .user-info .buttons .btn-section span {
  background: #e60012;
  border-radius: 10px;
  color: white;
  font-size: 10px;
  font-weight: bold;
  line-height: 5px;
  padding: 5px;
  margin-left: 6px;
}

.profile .layout .box {
  zoom: 1;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.profile .layout .box::before {
  content: '';
  display: block;
}

.profile .layout .box::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .top {
  background: #f0f5f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  height: 40px;
}

.profile .layout .box .top span,
.profile .layout .box .top span h2 {
  color: #000;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  margin-top: 9px;
}

.profile .layout .box .top span h2 {
  font-weight: 200;
  line-height: 5px;
}

.profile .layout .box .top .tabs a {
  border-right: 1px solid #f0f5f8;
  color: #000;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  padding: 11px 28px;
}

.profile .layout .box .top .tabs a.selected {
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 2px solid #e60012;
  padding-bottom: 13px;
}

.profile .layout .box .top .tabs a.selected:first-child {
  border-left: none;
  padding-left: 29px;
}

.profile .layout .box .top .tabs a:hover:not(.selected) {
  color: #e60012;
}

.profile .layout .box .center {
  height: auto;
  text-align: center;
}

.profile .layout .box .center span h1 {
  font-size: 14px;
  font-weight: 100;
  max-width: 150px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile .layout .box .games-played {
  list-style: none;
  margin: 10% 0 0 10%;
  padding: 0;
}

.profile .layout .box .games-played li {
  zoom: 1;
  margin-bottom: 15px;
}

.profile .layout .box .games-played li::before {
  content: '';
  display: block;
}

.profile .layout .box .games-played li::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .games-played li:last-child {
  margin-bottom: 0;
}

.profile .layout .box .games-played {
  margin-bottom: 10%;
}

.profile .layout .box .games-played li img {
  float: left;
  margin-right: 15px;
  width: 40px;
}

.profile .layout .box .games-played li span {
  color: #061e36;
  display: block;
  font-size: 14px;
  line-height: 40px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile .layout .box .games-played.nogames {
  margin-left: 5%;
  margin-right: 5%;
}

.profile .layout .box .games-played.nogames p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.profile .layout .box .games-played.nogames a {
  background: #9f3797;
  background: -webkit-linear-gradient(top, #9f3797 0%, #6e1483 100%, #57116b 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#9f3797), color-stop(100%, #6e1483), to(#57116b));
  background: linear-gradient(to bottom, #9f3797 0%, #6e1483 100%, #57116b 100%);
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 1px 0 0 #d681f5, inset 1px 0 0 0 #b51eec, inset -1px 0 0 0 #b51eec, inset 0 -1px 0 0 #b51eec;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 1px 0 0 #d681f5, inset 1px 0 0 0 #b51eec, inset -1px 0 0 0 #b51eec, inset 0 -1px 0 0 #b51eec;
  color: #fff;
  display: block;
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#9f3797', endColorstr='#57116b', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#9f3797', endColorstr='#57116b', GradientType=0);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  height: 38px;
  line-height: 38px;
  margin: 20px auto;
  text-align: center;
  width: 136px;
}

.profile .layout .box .games-played.nogames a:hover {
  background: #ad3ca9;
  background: -webkit-linear-gradient(top, #ad3ca9 0%, #6e1483 100%, #66137c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ad3ca9), color-stop(100%, #6e1483), to(#66137c));
  background: linear-gradient(to bottom, #ad3ca9 0%, #6e1483 100%, #66137c 100%);
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ad3ca9', endColorstr='#66137c', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ad3ca9', endColorstr='#66137c', GradientType=0);
}

.profile .layout .box .viewAll {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
}

.profile .layout .box .news {
  list-style: none;
  margin: 15px 30px;
  padding: 0;
}

.profile .layout .box .news li {
  zoom: 1;
  border-bottom: 1px solid #e0e6e8;
  font-size: 12px;
  line-height: 30px;
  padding: 15px 0;
}

.profile .layout .box .news li::before {
  content: '';
  display: block;
}

.profile .layout .box .news li::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .news li:last-child {
  border-bottom: none;
}

.profile .layout .box .news li p {
  display: block;
  float: left;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.profile .layout .box .news li p img {
  border-radius: 15px;
  float: left;
  height: 100%;
  margin-right: 13px;
}

.profile .layout .box .news li p a {
  font-weight: 700;
}

.profile .layout .box .news li p a.normal-font {
  font-weight: 400;
}

.profile .layout .box .news li .date {
  color: #b4c0c6;
  display: block;
  float: right;
  font-size: 12px;
  text-align: right;
  width: 20%;
}

.profile .layout .box .news div.feed-img {
  float: left;
  min-width: 40px;
  width: 10%;
}

.profile .layout .box .news div.feed-info {
  float: left;
  width: 70%;
}

.profile .layout .box .news div.feed-info p.second-line {
  height: auto;
  line-height: 15px;
}

.profile .layout .box .news div.feed-date {
  float: left;
  width: 15%;
}

.profile .layout .box .news div.feed-date span {
  width: 100%;
}

.profile .layout .box .about-profile {
  zoom: 1;
}

.profile .layout .box .about-profile::before {
  content: '';
  display: block;
}

.profile .layout .box .about-profile::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .about-profile ul {
  zoom: 1;
  display: block;
  float: left;
  list-style: none;
  margin: 0;
  margin-right: 3%;
  padding: 0;
  width: 55%;
}

.profile .layout .box .about-profile ul::before {
  content: '';
  display: block;
}

.profile .layout .box .about-profile ul::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .about-profile ul li {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 30px;
  vertical-align: top;
}

.profile .layout .box .about-profile ul li:nth-child(odd) {
  color: #97a1b1;
  width: 40%;
}

.profile .layout .box .about-profile ul li:nth-child(even) {
  color: #061e36;
  height: auto;
  max-width: 200px;
  min-height: 20px;
  overflow-wrap: break-word;
  width: 60%;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.profile .layout .box .about-profile ul li i {
  display: inline-block;
  height: 15px;
  margin-bottom: -2px;
  margin-right: 10px;
  width: 15px;
}

.profile .layout .box .about-profile ul li i.gender {
  background-position: -390px -187px;
}

.profile .layout .box .about-profile ul li i.country {
  background-position: -405px -187px;
}

.profile .layout .box .about-profile ul li i.birthday {
  background-position: -420px -187px;
}

.profile .layout .box .about-profile ul li i.occupation {
  background-position: -390px -202px;
}

.profile .layout .box .about-profile ul li i.hobbies {
  background-position: -405px -202px;
}

.profile .layout .box .about-profile .about {
  float: left;
  font-size: 14px;
  width: 42%;
}

.profile .layout .box .about-profile .about p {
  color: #061e36;
  margin-bottom: 15px;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.profile .layout .box .about-profile .about .title {
  color: #acb8bd;
}

.profile .layout .box .about-profile .about .read-more {
  margin: 15px 0 0;
}

.profile .layout .box .about-profile .about .read-more .readmore {
  border-top: 1px solid #056690;
  margin: 0;
  max-width: 100%;
  padding: 3px 3px 0 0;
}

.profile .layout .box .about-profile {
  padding: 30px 20px 30px 40px;
}

.profile .layout .box .game-library a {
  display: block;
  float: left;
  margin-bottom: 15px;
  padding: 0 5px;
  text-align: center;
  width: 25%;
}

.profile .layout .box .game-library a img {
  border: 1px solid #061e36;
  max-width: 126px;
  width: 100%;
}

.profile .layout .box .game-library a span {
  color: #061e36;
  display: block;
  font: 700 22px/30px Arial, sans-serif;
  margin: 0 auto;
  max-width: 150px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile .layout .box .follow {
  text-align: center;
}

.profile .layout .box .follow ul {
  zoom: 1;
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.profile .layout .box .follow ul::before {
  content: '';
  display: block;
}

.profile .layout .box .follow ul::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .follow ul li {
  display: block;
  float: left;
  margin-bottom: 30px;
  text-align: center;
  width: 25%;
}

.profile .layout .box .follow ul li a {
  color: #000;
  display: block;
  font: normal 14px Arial, sans-serif;
  overflow: hidden;
  padding: 0 5%;
  text-overflow: ellipsis;
}

.profile .layout .box .follow ul li a img {
  border-radius: 47px;
  display: inline-block;
  width: 94px;
}

.profile .layout .box .follow ul li a:hover {
  color: #9a000c;
}

.profile .layout .box .follow ul li a:last-child {
  padding-top: 5px;
}

.profile .layout .box .follow .pagination {
  margin-bottom: 25px;
  margin-top: 5px;
}

.profile .layout .box .edit_nav {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 25%;
}

.profile .layout .box .edit_nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.profile .layout .box .edit_nav li a {
  color: #393939;
  display: block;
  line-height: 20px;
  padding: 15px 5% 15px 12%;
}

.profile .layout .box .edit_nav li.active {
  font-weight: 700;
}

.profile .layout .box .profile_edit_content {
  zoom: 1;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  float: left;
  min-height: 255px;
  width: 75%;
}

.profile .layout .box .profile_edit_content::before {
  content: '';
  display: block;
}

.profile .layout .box .profile_edit_content::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .profile_edit_content.center {
  text-align: center;
}

.profile .layout .box .profile_edit_content .white-box {
  border: none;
}

.profile .layout .box .profile_edit_content .white-box .content-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.profile .layout .box .profile_edit_content .white-box .content-title.single {
  margin-bottom: 40px;
}

.profile .layout .box .profile_edit_content .edit-pass {
  margin-top: 16px;
}

.profile .layout .box .profile_edit_content .edit-pass span:last-child {
  word-break: break-all;
  font-weight: bold;
  margin-left: 16px;
}

.profile .layout .box .profile_edit_content .notes-content > p {
  width: 80%;
  margin: auto;
}

.profile .layout .box .profile_edit_content .notes-content > p a {
  color: #4098ff;
}

@media (max-width: 800px) {
  .profile .layout .box .profile_edit_content .notes-content > p {
    width: auto;
  }
}

.profile .layout .box .profile_edit_content .link-change-email {
  display: block;
  text-align: center;
  color: #4098ff;
  margin-top: 16px;
}

.profile .layout .box .profile_edit_content .submit-profile {
  display: block;
  max-width: 340px;
  margin: 16px auto 0;
}

.profile .layout .box .profile_edit_content form {
  border: none;
}

.profile .layout .box .profile_edit_content form ul li.second-line,
.profile .layout .box .profile_edit_content form ul.no-email-edit li.second-line {
  margin-top: -25px;
}

.profile .layout .box .profile_edit_content form ul li textarea,
.profile .layout .box .profile_edit_content form ul.no-email-edit li textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  color: #393939;
  height: 150px;
  padding: 4px 10px;
}

.profile .layout .box .profile_edit_content form ul li .lighter,
.profile .layout .box .profile_edit_content form ul.no-email-edit li .lighter {
  color: #97a1b1;
}

.profile .layout .box .profile_edit_content form ul li.email-example,
.profile .layout .box .profile_edit_content form ul.no-email-edit li.email-example {
  font-size: 14px;
  font-weight: 700;
}

.profile .layout .box .profile_edit_content form ul li.email-example span,
.profile .layout .box .profile_edit_content form ul.no-email-edit li.email-example span {
  color: #f96666;
  font-weight: 400;
}

.profile .layout .box .profile_edit_content form ul li .svg,
.profile .layout .box .profile_edit_content form ul.no-email-edit li .svg {
  display: block;
  fill: #386f39;
  float: left;
  height: 20px;
  margin: 15px 10px 0 2px;
  width: 20px;
}

.profile .layout .box .profile_edit_content form ul li a,
.profile .layout .box .profile_edit_content form ul.no-email-edit li a {
  color: #5cb05d;
  display: inline-block;
  font-weight: 700;
  margin-right: 50px;
  text-decoration: underline;
}

.profile .layout .box .profile_edit_content form ul li i.eye-slash,
.profile .layout .box .profile_edit_content form ul.no-email-edit li i.eye-slash {
  background: url(../images/icon/eye-slash.svg) no-repeat center;
  background-size: contain;
  border-radius: 20px;
  display: none;
  height: 22px;
  position: absolute;
  right: 24px;
  top: 14px;
  width: 22px;
}

.profile .layout .box .profile_edit_content form ul li i.eye-slash.eye-shadow,
.profile .layout .box .profile_edit_content form ul.no-email-edit li i.eye-slash.eye-shadow {
  background: url(../images/icon/eye.svg) center no-repeat;
  height: 23px;
  top: 13px;
  width: 23px;
}

.profile .layout .box .profile_edit_content form ul li i.eye-slash.eye-animation,
.profile .layout .box .profile_edit_content form ul.no-email-edit li i.eye-slash.eye-animation {
  -webkit-animation: pulse 900ms ease-in-out;
  animation: pulse 900ms ease-in-out;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(179, 184, 188, 0.6);
    box-shadow: 0 0 0 0 rgba(179, 184, 188, 0.6);
  }
  25% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  75% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(179, 184, 188, 0.6);
    box-shadow: 0 0 0 0 rgba(179, 184, 188, 0.6);
  }
  25% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  75% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.profile .layout .box .profile_edit_content form ul.confirm-page li:nth-child(14), .profile .layout .box .profile_edit_content form ul.confirm-page li:nth-child(16),
.profile .layout .box .profile_edit_content form ul.no-email-edit.confirm-page li:nth-child(14),
.profile .layout .box .profile_edit_content form ul.no-email-edit.confirm-page li:nth-child(16) {
  height: auto;
  min-height: 50px;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.profile .layout .box .profile_edit_content form .small-col input[type='text'],
.profile .layout .box .profile_edit_content form .small-col select,
.profile .layout .box .profile_edit_content form .small-col textarea,
.profile .layout .box .profile_edit_content form .normal-col input[type='text'],
.profile .layout .box .profile_edit_content form .normal-col select,
.profile .layout .box .profile_edit_content form .normal-col textarea {
  width: 100%;
}

.profile .layout .box .profile_edit_content form .small-col {
  zoom: 1;
}

.profile .layout .box .profile_edit_content form .small-col::before {
  content: '';
  display: block;
}

.profile .layout .box .profile_edit_content form .small-col::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .profile_edit_content form .small-col ul {
  float: left;
  width: 65%;
}

.profile .layout .box .profile_edit_content form .small-col ul li:nth-child(2n+1) {
  width: 34%;
}

.profile .layout .box .profile_edit_content form .small-col ul li:nth-child(2n) {
  width: 66%;
}

.profile .layout .box .profile_edit_content form .small-col ul li.gen-birth input[type='radio'] {
  margin-left: 3px;
}

.profile .layout .box .profile_edit_content form .small-col ul li.gen-birth input[type='radio'] + label {
  margin-right: 15px;
}

.profile .layout .box .profile_edit_content form .normal-col {
  width: 100%;
}

.profile .layout .box .profile_edit_content form .normal-col ul li {
  height: auto;
  min-height: 50px;
}

.profile .layout .box .profile_edit_content form .normal-col ul li:nth-child(2n+1) {
  width: 22%;
}

.profile .layout .box .profile_edit_content form .normal-col ul li:nth-child(2n) {
  width: 78%;
}

.profile .layout .box .profile_edit_content form .avatar {
  float: right;
  padding-right: 4%;
  text-align: right;
  width: 35%;
}

.profile .layout .box .profile_edit_content form .avatar a {
  color: #393939;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 73%;
}

.profile .layout .box .profile_edit_content form .avatar a img {
  border-radius: 50%;
  display: block;
  margin-bottom: 5px;
  width: 100%;
}

.profile .layout .box .profile_edit_content form .avatar a:hover {
  color: #e60012;
}

.profile .layout .box .profile_edit_content form.notifications ul li {
  zoom: 1;
  border: 1px solid rgba(0, 0, 0, 0.15);
  float: none;
  height: 68px;
  line-height: normal;
  margin-top: 20px;
  padding: 0;
  padding-right: 20px;
  text-align: left;
  width: 100%;
}

.profile .layout .box .profile_edit_content form.notifications ul li::before {
  content: '';
  display: block;
}

.profile .layout .box .profile_edit_content form.notifications ul li::after {
  clear: both;
  content: '';
  display: table;
}

.profile .layout .box .profile_edit_content form.notifications ul li img {
  float: left;
  height: 100%;
  width: auto;
}

.profile .layout .box .profile_edit_content form.notifications ul li p {
  float: left;
  font-size: 20px;
  line-height: 68px;
  margin: 0 20px;
  width: auto;
}

.profile .layout .box .profile_edit_content form.notifications ul li .radios {
  float: right;
  padding-top: 20px;
  position: relative;
}

.profile .layout .box .profile_edit_content form.notifications ul li.noplay .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  height: 100%;
  left: 0;
  line-height: 68px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2;
}

.profile .layout .box .profile_edit_content form.facebook-form-log {
  border-top-color: #fff;
  height: 110px;
  margin: 0 auto;
  max-width: 370px;
  padding: 20px 10px;
  text-align: center;
}

.profile .layout .box .profile_edit_content form.facebook-form-log .facebook-account-i {
  border-color: #1c3770;
  display: block;
  float: left;
  height: 45px;
  max-width: 300px;
  position: absolute;
  width: 100%;
}

.profile .layout .box .profile_edit_content form.facebook-form-log .social-account.facebook-value-l {
  padding: 0 40px;
}

.profile .layout .box .profile_edit_content .white-box .facebook-connect {
  cursor: pointer;
  padding: 0 40px;
}

.profile .layout .box .profile_edit_content .white-box .facebook-disconnect {
  cursor: pointer;
  padding: 0 40px;
}

.profile .layout .box .profile_edit_content .pagination {
  background-color: #fff;
  display: inline-block;
  height: 45px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.profile .layout .box .profile_edit_content .pagination a {
  color: #000;
  line-height: 45px;
  padding: 0;
}

.profile .layout .box .profile_edit_content .pagination a:hover {
  background: #f0f5f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  max-height: 44px;
}

.profile .layout .box .profile_edit_content .pagination a.active {
  color: #dd437c;
  font-weight: bold;
}

.profile .layout .box.no-background {
  background: none;
  border: none;
  margin-top: 15px;
}

.profile .layout .box.no-background .top {
  background: none;
  border: none;
}

.profile .layout .box .empty {
  color: #acb7bb;
  text-align: center;
}

.profile .layout .invites {
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  padding: 10px 0;
  position: relative;
  text-align: center;
}

.profile .layout .invites span {
  display: block;
  font-weight: 700;
}

.profile .layout .invites span.title {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
}

.profile .layout .invites span.subtitle {
  color: #e60012;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 12px;
}

.profile .layout .invites span.info {
  color: #e60012;
  font-size: 11px;
  line-height: 11px;
  margin-bottom: 10px;
}

.profile .layout .invites input {
  background: #032848;
  border: 1px solid #035f8d;
  color: #fff;
  font: 0.4 Arial, sans-serif;
  height: 32px;
  margin-bottom: 10px;
  text-align: center;
  width: 65%;
}

.profile .layout .invites .gold-left,
.profile .layout .invites .gold-right {
  bottom: 0;
  height: 38px;
  position: absolute;
}

.profile .layout .invites .gold-left {
  background-position: -132px -37px;
  left: 0;
  width: 74px;
}

.profile .layout .invites .gold-right {
  background-position: -121px -37px;
  right: 0;
  width: 70px;
}

.profile .layout .unlock-referral {
  background: #86df88;
  border: 1px solid #386f39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-bottom: 15px;
  padding: 10px 5px;
  position: relative;
  text-align: center;
}

.profile .layout .unlock-referral .unlock-text {
  width: 100%;
  padding-left: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.profile .layout .unlock-referral .unlock-text p {
  margin-top: 5px;
}

.profile .layout .unlock-referral .unlock-text span.title {
  color: #386f39;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin: 10px auto;
}

.profile .layout .unlock-referral .unlock-text span.subtitle {
  color: #386f39;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.profile .layout .unlock-referral .unlock-text span.subtitle a {
  color: #386f39;
  text-decoration: underline;
}

.profile .layout .unlock-referral .unlock-text span.info {
  color: #49914a;
  font-size: 14px;
  line-height: 8px;
  margin-bottom: 10px;
}

.profile .layout .btn-follow {
  background: #00487e;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00487e), color-stop(100%, #04335b));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #00487e 0%, #04335b 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#00487e), to(#04335b));
  background: linear-gradient(to bottom, #00487e 0%, #04335b 100%);
  /* W3C */
  border: 1px solid #061e36;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 0 #075b9a, inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 0 0 #075b9a, inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  display: inline-block;
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$btn-gradient1', endcolorstr='$blue-gradient', gradienttype=0);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$btn-gradient1', endcolorstr='$blue-gradient', gradienttype=0);
  /* IE6-9 */
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 22px;
  padding: 9px 0;
  text-align: center;
  text-shadow: 2px 3px 15px #061e36;
  width: 180px;
}

.profile .layout .btn-follow:hover, .profile .layout .btn-follow.active {
  background: #0873ab;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0873ab), color-stop(100%, #09487d));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #0873ab 0%, #09487d 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#0873ab), to(#09487d));
  background: linear-gradient(to bottom, #0873ab 0%, #09487d 100%);
  /* W3C */
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0873ab', endColorstr='#09487d', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0873ab', endColorstr='#09487d', GradientType=0);
  /* IE6-9 */
}

.profile .layout .btn-blocked {
  background: rgba(164, 0, 0, 0.85);
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(164, 0, 0, 0.85)), color-stop(100%, #bf2d2d));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(164, 0, 0, 0.85) 0%, #bf2d2d 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(164, 0, 0, 0.85)), to(#bf2d2d));
  background: linear-gradient(to bottom, rgba(164, 0, 0, 0.85) 0%, #bf2d2d 100%);
  /* W3C */
  border: 1px solid #061e36;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 0 #075b9a, inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 0 0 #075b9a, inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  display: inline-block;
  -webkit-filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$accent-error', endcolorstr='$red-gradient', gradienttype=0);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr='$accent-error', endcolorstr='$red-gradient', gradienttype=0);
  /* IE6-9 */
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 22px;
  padding: 9px 0;
  text-align: center;
  text-shadow: 2px 3px 15px #061e36;
  width: 180px;
}

.profile .layout h1.titles-played-games {
  font-size: 14px;
  font-weight: 700;
}

.profile .layout .go-to-game {
  font-size: 14px;
  font-weight: 700;
  margin: 70px auto 170px;
  max-width: 580px;
  text-align: center;
  width: 90%;
}

.profile .layout .go-to-game p {
  font-weight: normal;
}

.profile .layout .go-to-game a {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  background: #e60012;
  border: none;
  border-radius: 7px;
  color: #fff;
  display: block;
  line-height: 50px;
  margin: 10px auto 0;
  max-width: 350px;
  width: 100%;
}

.profile .layout .go-to-game a:hover {
  background-color: #ee4982;
}

.application-profile-reset form {
  padding: 24px;
}

@media (max-width: 800px) {
  .application-profile-reset form {
    padding: 16px !important;
  }
}

.application-profile-reset form .small-col ul li,
.application-profile-reset form .normal-col ul li {
  margin: 16px 0 0;
}

.application-profile-reset form .small-col ul li input[type='text'],
.application-profile-reset form .normal-col ul li input[type='text'] {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 0;
  min-height: 48px;
}

.application-profile-reset form .small-col ul li input[type='checkbox'],
.application-profile-reset form .normal-col ul li input[type='checkbox'] {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 0;
  margin-left: 0;
}

.application-profile-reset form .small-col ul li input[type='radio'],
.application-profile-reset form .normal-col ul li input[type='radio'] {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.application-profile-reset form .small-col ul li select,
.application-profile-reset form .normal-col ul li select {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  width: auto;
  min-height: 48px;
}

.application-profile-reset form .small-col ul li {
  height: auto;
  padding: 4px 16px;
  display: inline-block;
  vertical-align: middle;
  float: none;
  line-height: initial;
}

.application-profile-reset form .small-col ul li.is-verticalTop {
  vertical-align: top;
}

@media (max-width: 800px) {
  .application-profile-reset form .small-col ul li {
    padding: 4px 0;
  }
}

.application-profile-reset form .small-col ul li:nth-child(2n) {
  width: 64% !important;
}

.application-profile-reset form .small-col ul li:nth-child(2n + 1) {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .application-profile-reset form .small-col ul li:nth-child(2n), .application-profile-reset form .small-col ul li:nth-child(2n + 1) {
    width: 100% !important;
    text-align: left;
  }
}

.application-profile-reset form .small-col ul li .profile-reset-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.application-profile-reset form .small-col ul li .profile-reset-select select {
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: auto;
}

.application-profile-reset form .small-col ul li .profile-reset-select .select-arrow {
  position: relative;
  width: 8px;
  height: 19px;
  margin: auto;
  margin-right: 12px;
}

.application-profile-reset form .small-col ul li .profile-reset-select .select-arrow::before, .application-profile-reset form .small-col ul li .profile-reset-select .select-arrow::after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 0 4px 6px 4px;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
  position: absolute;
  content: '';
}

.application-profile-reset form .small-col ul li .profile-reset-select .select-arrow::after {
  top: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.application-profile-reset form .small-col ul li.gen-birth .profile-reset-select-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.application-profile-reset form .small-col ul li.gen-birth .profile-reset-select-contents .profile-reset-select:not(:first-child) {
  margin: 0 0 0 8px;
}

.application-profile-reset form .small-col ul li .profile-settingDisplay {
  font-size: 12px;
  font-weight: normal;
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.5);
}

.application-profile-reset form .small-col ul li .profile-settingDisplay label {
  display: block;
  padding: 12px 12px 12px 4px;
}

.application-profile-reset form .normal-col ul li {
  min-height: auto !important;
  display: inline-block;
  vertical-align: middle;
  float: none;
  line-height: initial;
}

@media (max-width: 800px) {
  .application-profile-reset form .normal-col ul li {
    display: block;
  }
}

.application-profile-reset form .normal-col ul li:nth-child(2n) {
  width: 64% !important;
  padding: 4px 20px;
}

@media (max-width: 800px) {
  .application-profile-reset form .normal-col ul li:nth-child(2n) {
    width: 100% !important;
    padding: 4px 0;
  }
}

.application-profile-reset form .normal-col ul li:nth-child(2n + 1) {
  max-width: 162px;
  padding: 4px 16px;
}

@media (max-width: 800px) {
  .application-profile-reset form .normal-col ul li:nth-child(2n + 1) {
    max-width: initial;
    width: 100% !important;
    text-align: left;
    padding: 4px 0;
  }
}

.application-profile-reset form .profile-confirmHead {
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 8px;
}

.application-profile-reset form .profile-confirmList {
  max-width: 640px;
  margin: auto;
}

.application-profile-reset form .profile-confirmList li {
  height: auto;
  margin: 8px 0 0;
  padding: 4px 16px;
  display: inline-block;
  vertical-align: middle;
  line-height: initial;
  float: none;
}

@media (max-width: 480px) {
  .application-profile-reset form .profile-confirmList li {
    text-align: center;
  }
}

.application-profile-reset .profile-completeHead {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 16px;
}

.application-profile-reset .profile-completeButton {
  max-width: 340px;
  margin: auto;
}

.game-message .gm-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 48px 48px 64px;
}

.game-message .gm-contents .gm-gamename {
  text-align: center;
  width: 18%;
  min-width: 180px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 40px 0 16px;
}

.game-message .gm-contents .gm-gamename__thumbnail {
  margin-bottom: 8px;
}

.game-message .gm-contents .gm-gamename__thumbnail img {
  width: 100%;
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.game-message .gm-contents .gm-gamename__title {
  font-size: 14px;
  font-weight: bold;
}

.game-message .gm-contents .gm-article {
  width: 82%;
}

.game-message .gm-contents .gm-article-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.game-message .gm-contents .gm-article-head__icon {
  -ms-flex-preferred-size: 5%;
  flex-basis: 5%;
  min-width: 40px;
}

.game-message .gm-contents .gm-article-head__icon img {
  width: 100%;
  border-radius: 100%;
  vertical-align: bottom;
}

.game-message .gm-contents .gm-article-head__username {
  -ms-flex-preferred-size: 89%;
  flex-basis: 89%;
  padding-left: 16px;
  font-size: 24px;
  font-weight: bold;
}

.game-message .gm-contents .gm-article-head span {
  -ms-flex-preferred-size: 6%;
  flex-basis: 6%;
  min-width: 70px;
  display: inline-block;
}

.game-message .gm-contents .gm-article-body__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.game-message .gm-contents .gm-article-body__contents h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 16px 16px 0;
  -ms-flex-preferred-size: 85%;
  flex-basis: 85%;
}

.game-message .gm-contents .gm-article-body__contents data {
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
  min-width: 120px;
}

.game-message .gm-contents .gm-article-body__message {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.game-message .gm-contents .gm-article-body__button {
  width: 280px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .game-message .gm-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 12px 16px 32px;
  }
  .game-message .gm-contents .gm-gamename {
    width: auto;
    max-width: 50%;
    margin: 0 auto 16px;
  }
  .game-message .gm-contents .gm-article {
    width: 100%;
  }
  .game-message .gm-contents .gm-article-head__icon {
    min-width: 30px;
    margin-left: 8px;
  }
  .game-message .gm-contents .gm-article-head__username {
    padding-left: 12px;
    font-size: 18px;
    font-weight: bold;
  }
  .game-message .gm-contents .gm-article-body__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 16px;
  }
  .game-message .gm-contents .gm-article-body__contents h2 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 4px;
  }
  .game-message .gm-contents .gm-article-body__contents data {
    width: 100%;
    text-align: left;
    margin-bottom: 12px;
  }
  .game-message .gm-contents .gm-article-body__message {
    font-size: 12px;
    font-weight: normal;
    padding: 0 16px 12px;
    margin-bottom: 24px;
  }
}

/*
    --- 以下、既存スタイル ---
    game-message や Messageで利用されている
    TODO: 未使用Styleの削除
    TODO: .message-center以下のStyleを.game-messageセレクタ以下に移設
          エンハンス時にDOM及び、Styleのリファクタリングなどを行ったほうが良さそう
  */
.message-center {
  margin-top: -20px;
}

.message-center .layout {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.message-center .mc-annotationText {
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  margin: 24px 40px;
}

.message-center .mc-header {
  zoom: 1;
  line-height: 40px;
  margin: 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.message-center .mc-header::before {
  content: '';
  display: block;
}

.message-center .mc-header::after {
  clear: both;
  content: '';
  display: table;
}

.message-center .mc-header ul {
  float: left;
  list-style: none;
}

.message-center .mc-header ul li {
  display: inline-block;
}

.message-center .mc-header ul li:first-child {
  padding-right: 20px;
}

.message-center .mc-header ul li a {
  display: block;
  padding: 0 20px;
}

.message-center .mc-header ul li a.active {
  border-bottom: 4px solid #e60012;
  pointer-events: none;
}

.message-center .mc-header .mc-back {
  position: relative;
  float: left;
  margin-left: 20px;
  padding-left: 5px;
}

.message-center .mc-header .mc-back:before, .message-center .mc-header .mc-back:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.message-center .mc-header .mc-back:before {
  left: -15px;
  width: 8px;
  height: 8px;
  border-top: solid 2px rgba(0, 0, 0, 0.5);
  border-right: solid 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.message-center .mc-header .mc-back:after {
  width: 11px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  left: -14px;
}

.message-center .mc-header .right-text {
  float: right;
}

.message-center .mc-header .right-text a {
  padding: 10px;
}

.message-center .mc-header .right-text a.next:after, .message-center .mc-header .right-text a.previous:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
}

.message-center .mc-header .right-text a.next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 4px;
}

.message-center .mc-header .right-text a.previous:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin: 0 4px 1px 0;
}

.message-center .mc-header .right-text span {
  display: inline-block;
}

.message-center .mc-container {
  overflow: hidden;
}

.message-center .mc-container .mc-single-btns {
  margin: 0 auto;
  text-align: center;
}

.message-center .mc-container .mc-single-btns .mc-btn,
.message-center .mc-container .mc-single-btns .mc-btn-r {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 16px !important;
  font-size: 12px;
  width: auto;
  float: right;
  margin: 0 0 10px 20px;
}

.message-center .mc-container .mc-single-btns .mc-btn:hover,
.message-center .mc-container .mc-single-btns .mc-btn-r:hover {
  text-decoration: none;
}

.message-center .mc-container .mc-single-btns .mc-btn:hover:after,
.message-center .mc-container .mc-single-btns .mc-btn-r:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.message-center .mc-container .mc-single-btns .mc-btn.disabled,
.message-center .mc-container .mc-single-btns .mc-btn-r.disabled {
  pointer-events: none;
}

.message-center .mc-container .mc-single-btns .mc-btn:hover:after,
.message-center .mc-container .mc-single-btns .mc-btn-r:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.message-center .mc-container .mc-single-btns .mc-btn.disabled,
.message-center .mc-container .mc-single-btns .mc-btn-r.disabled {
  opacity: .4;
}

.message-center .mc-container .mc-list {
  padding: 20px 40px 40px;
}

.message-center .mc-container .mc-list .nomail {
  font-size: 20px;
  margin: 20px auto;
}

.message-center .mc-container .mc-list .options {
  zoom: 1;
}

.message-center .mc-container .mc-list .options::before {
  content: '';
  display: block;
}

.message-center .mc-container .mc-list .options::after {
  clear: both;
  content: '';
  display: table;
}

.message-center .mc-container .mc-list .selectAll {
  display: block;
  float: left;
  position: relative;
  margin-top: 10px;
}

.message-center .mc-container .mc-list .selectAll input[type='checkbox'] {
  margin-right: 15px;
}

.message-center .mc-container .mc-list .selectAll span {
  color: rgba(0, 0, 0, 0.5);
}

.message-center .mc-container .mc-list .selectAll label[for='allChecked'] {
  cursor: pointer;
}

.message-center .mc-container .mc-list table {
  zoom: 1;
  width: 100%;
}

.message-center .mc-container .mc-list table::before {
  content: '';
  display: block;
}

.message-center .mc-container .mc-list table::after {
  clear: both;
  content: '';
  display: table;
}

.message-center .mc-container .mc-list table tr:not(.head-label) {
  cursor: pointer;
}

.message-center .mc-container .mc-list table tr:not(.head-label):hover {
  background: rgba(0, 0, 0, 0.07);
}

.message-center .mc-container .mc-list table tr.unread {
  font-weight: bold;
}

.message-center .mc-container .mc-list table tr.unread .message {
  color: #e60012;
}

.message-center .mc-container .mc-list table td {
  padding: 10px;
}

.message-center .mc-container .mc-list table th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0;
  padding: 10px;
}

.message-center .mc-container .mc-list table .select {
  text-align: center;
  width: 4%;
}

.message-center .mc-container .mc-list table .message {
  max-width: 410px;
  width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-center .mc-container .mc-list table .message div {
  height: 100%;
  width: 100%;
}

.message-center .mc-container .mc-list table .game, .message-center .mc-container .mc-list table .username {
  width: 20%;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-center .mc-container .mc-list table .date {
  padding: 10px 5px;
  width: 20%;
}

@media (max-width: 1040px) {
  .message-center .mc-container .mc-list table .message {
    max-width: 350px;
    width: 30%;
  }
  .message-center .mc-container .mc-list table .username {
    max-width: 100px;
    width: 15%;
  }
  .message-center .mc-container .mc-list table .date {
    width: 25%;
  }
}

@media (max-width: 800px) {
  .message-center .mc-container .mc-list table .message {
    max-width: 200px;
    width: 20%;
  }
  .message-center .mc-container .mc-list table .username {
    max-width: 120px;
    width: 20%;
  }
  .message-center .mc-container .mc-list table .date {
    width: 30%;
  }
}

@media (max-width: 480px) {
  .message-center .mc-container .mc-list table .message {
    max-width: 125px;
  }
  .message-center .mc-container .mc-list table .game {
    max-width: 90px;
  }
}

@media (max-width: 640px) {
  .message-center .mc-container .mc-list table .username {
    display: none;
  }
}

@media (max-width: 370px) {
  .message-center .mc-container .mc-list table .game {
    display: none;
  }
}

.message-center .mc-container .mc-list .mc-bottom {
  margin-top: 40px;
  text-align: center;
}

.message-center .mc-container .mc-gamename {
  float: left;
  margin: auto;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  width: 25%;
}

.message-center .mc-container .mc-gamename p {
  font-weight: bold;
  margin-top: 5px;
}

.message-center .mc-container .mc-single {
  position: relative;
  padding: 40px;
}

.message-center .mc-container .mc-single .mc-btn,
.message-center .mc-container .mc-single .mc-btn-r {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 16px !important;
  font-size: 12px;
  width: auto;
  float: right;
}

.message-center .mc-container .mc-single .mc-btn:hover,
.message-center .mc-container .mc-single .mc-btn-r:hover {
  text-decoration: none;
}

.message-center .mc-container .mc-single .mc-btn:hover:after,
.message-center .mc-container .mc-single .mc-btn-r:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.message-center .mc-container .mc-single .mc-btn.disabled,
.message-center .mc-container .mc-single .mc-btn-r.disabled {
  pointer-events: none;
}

.message-center .mc-container .mc-single .mc-btn:hover:after,
.message-center .mc-container .mc-single .mc-btn-r:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.message-center .mc-container .mc-single .mc-btn.disabled,
.message-center .mc-container .mc-single .mc-btn-r.disabled {
  opacity: .4;
}

.message-center .mc-container .mc-single form {
  border: none;
  padding: 0;
  overflow: hidden;
}

.message-center .mc-container .mc-single form > input {
  display: block;
  width: 60%;
  margin: auto;
}

.message-center .mc-container .mc-single form > input.confirm {
  margin: 10px auto;
}

.message-center .mc-container .mc-single .warning {
  color: rgba(164, 0, 0, 0.85);
  font-weight: bold;
}

.message-center .mc-container .mc-single .message,
.message-center .mc-container .mc-single .reply,
.message-center .mc-container .mc-single .reply-confirm {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.message-center .mc-container .mc-single .message h1,
.message-center .mc-container .mc-single .reply h1,
.message-center .mc-container .mc-single .reply-confirm h1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #061e36;
  font-family: Arial, sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  padding-left: 50px;
}

.message-center .mc-container .mc-single .message h1.mc-ticket,
.message-center .mc-container .mc-single .reply h1.mc-ticket,
.message-center .mc-container .mc-single .reply-confirm h1.mc-ticket {
  padding-left: 0;
}

.message-center .mc-container .mc-single .message p,
.message-center .mc-container .mc-single .reply p,
.message-center .mc-container .mc-single .reply-confirm p {
  margin: 10px 0;
  width: auto;
}

.message-center .mc-container .mc-single .message p.date,
.message-center .mc-container .mc-single .reply p.date,
.message-center .mc-container .mc-single .reply-confirm p.date {
  color: #97a1b1;
  float: right;
  font-size: 10px;
  margin-top: 0;
  text-align: right;
  width: 12%;
}

.message-center .mc-container .mc-single .message.reply,
.message-center .mc-container .mc-single .reply.reply,
.message-center .mc-container .mc-single .reply-confirm.reply {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.message-center .mc-container .mc-single .message.reply h1,
.message-center .mc-container .mc-single .reply.reply h1,
.message-center .mc-container .mc-single .reply-confirm.reply h1 {
  border-bottom: none;
}

.message-center .mc-container .mc-single .message.reply .error-msg,
.message-center .mc-container .mc-single .reply.reply .error-msg,
.message-center .mc-container .mc-single .reply-confirm.reply .error-msg {
  width: 100%;
}

.message-center .mc-container .mc-single .message.reply textarea,
.message-center .mc-container .mc-single .reply.reply textarea,
.message-center .mc-container .mc-single .reply-confirm.reply textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  height: 100px;
  width: 80%;
}

.message-center .mc-container .mc-single .message.reply-confirm p,
.message-center .mc-container .mc-single .reply.reply-confirm p,
.message-center .mc-container .mc-single .reply-confirm.reply-confirm p {
  text-align: left;
  width: 100%;
}

.message-center .mc-container .mc-single.messages img {
  border-radius: 77px;
  left: 250px;
  position: absolute;
  top: 40px;
  width: 35px;
}

.message-center .mc-container .mc-single.messages.message img.avatar {
  border-radius: 77px;
  width: 35px;
}

.message-center .mc-container .mc-single.messages .play-game {
  -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  color: #393939;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 30px 0 0 20%;
  padding: 12px 0;
  text-align: center;
  width: 40%;
}

.message-center .mc-container .mc-single.messages .play-game:hover {
  border-color: #e60012;
  color: #e60012;
}

.message-center .mc-container .mc-single.confirm a {
  color: #4098ff;
}

.message-center .mc-container .mc-single.complete {
  float: none;
  padding-left: 40px;
}

.message-center .mc-container .mc-single.complete a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.profile .bottom-pag .pagination,
.message-center .bottom-pag .pagination {
  display: block;
  margin: 30px auto;
  text-align: center;
}

.profile .bottom-pag .pagination a,
.message-center .bottom-pag .pagination a {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  color: #5e5e70;
  display: inline-block;
  font-size: 12px;
  line-height: 43px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.profile .bottom-pag .pagination a.active,
.message-center .bottom-pag .pagination a.active {
  color: #9a000c;
  font-weight: 700;
}

.profile .bottom-pag .pagination a.active:hover, .profile .bottom-pag .pagination a.dots:hover,
.message-center .bottom-pag .pagination a.active:hover,
.message-center .bottom-pag .pagination a.dots:hover {
  background: none;
}

.profile .bottom-pag .pagination a.last,
.message-center .bottom-pag .pagination a.last {
  border: 0 !important;
}

.profile .bottom-pag .pagination a:hover,
.message-center .bottom-pag .pagination a:hover {
  background: #eff5f7;
}

.profile .bottom-pag .pagination .prev i,
.profile .bottom-pag .pagination .next i,
.message-center .bottom-pag .pagination .prev i,
.message-center .bottom-pag .pagination .next i {
  display: inline-block;
  height: 9px;
  width: 11px;
}

.profile .bottom-pag .pagination .prev i,
.message-center .bottom-pag .pagination .prev i {
  background-position: -366px -50px;
}

.profile .bottom-pag .pagination .next,
.message-center .bottom-pag .pagination .next {
  border-right: none;
}

.profile .bottom-pag .pagination .next i,
.message-center .bottom-pag .pagination .next i {
  background-position: -379px -50px;
}

.profile .layout .search-bottom,
.message-center .layout .search-bottom {
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

.profile .layout .search-bottom .pagination,
.message-center .layout .search-bottom .pagination {
  background-color: #fff;
  display: inline-block;
  height: 45px;
  margin: 0 auto;
}

.profile .layout .search-bottom .pagination a,
.message-center .layout .search-bottom .pagination a {
  color: #000;
  line-height: 45px;
  padding: 0;
}

.profile .layout .search-bottom .pagination a:hover,
.message-center .layout .search-bottom .pagination a:hover {
  background: #f0f5f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  max-height: 44px;
}

.profile .layout .search-bottom .pagination a.active,
.message-center .layout .search-bottom .pagination a.active {
  color: #dd437c;
  font-weight: bold;
}

.profile .layout .col-middle-full .search-bottom .pagination {
  width: 90%;
}

.profile + .games .grid .filtered-content {
  width: 100%;
}

.announcement {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(164, 0, 0, 0.85);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  margin: 15px 0;
  padding: 8px 15px;
}

.announcement img,
.announcement svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 24px;
  margin-right: 8px;
  width: 24px;
}

.announcement img .color-primary,
.announcement svg .color-primary {
  fill: #99312f;
}

@media (max-width: 1080px) {
  .announcement {
    margin: 15px;
  }
  .profile + .games .filtered-content .games-list li {
    margin-right: 2%;
  }
}

@media (max-width: 900px) {
  .profile + .games .filtered-content .games-list li {
    margin-right: 3%;
    width: 22.75%;
  }
  .profile + .games .filtered-content .games-list li:nth-child(4n) {
    margin-right: 0;
  }
  .profile + .games .filtered-content .games-list li:nth-child(5n) {
    margin-right: 3%;
  }
  .profile + .games .filtered-content .games-list.games-list-shorter li {
    height: 30vw;
  }
  .profile + .games .filtered-content .games-list.games-list-shorter li img {
    height: auto;
  }
}

@media (max-width: 680px) {
  .profile + .games .filtered-content .games-list li {
    width: 31.33%;
  }
  .profile + .games .filtered-content .games-list li:nth-child(3n) {
    margin-right: 0;
  }
  .profile + .games .filtered-content .games-list li:nth-child(3n+1), .profile + .games .filtered-content .games-list li:nth-child(3n+2) {
    margin-right: 3%;
  }
  .profile + .games .filtered-content .games-list.games-list-shorter li {
    height: 41vw;
  }
}

@media (max-width: 480px) {
  .profile + .games .filtered-content .games-list li {
    width: 48.5%;
  }
  .profile + .games .filtered-content .games-list li:nth-child(2n) {
    margin-right: 0;
  }
  .profile + .games .filtered-content .games-list li:nth-child(2n+1) {
    margin-right: 3%;
  }
  .profile + .games .filtered-content .games-list.games-list-shorter li {
    height: 59vw;
  }
}

@media (max-width: 1040px) {
  .profile .layout .box .profile_edit_content form.notifications ul li p {
    height: 68px;
    text-align: left;
    width: calc(100% - (66px + 40px + 115px));
  }
}

@media (min-width: 961px) {
  .message-center .mc-container .mc-single {
    padding-left: 0;
    float: right;
  }
}

@media (max-width: 960px) {
  .message-center .mc-container .mc-gamename {
    float: none;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
  }
  .message-center .mc-container .mc-gamename img {
    display: none;
  }
  .message-center .mc-container .mc-gamename p {
    float: left;
    font-size: 16px;
    margin-left: 40px;
  }
  .message-center .mc-container .mc-single.messages .play-game {
    margin: auto;
  }
  .message-center .mc-container .mc-single.messages .avatar-single img {
    top: 72px;
  }
  .message-center .mc-container .mc-single.confirm {
    padding-top: 0;
  }
  .profile .layout .box .profile_edit_content form.notifications ul li p {
    height: 68px;
    text-align: left;
    width: calc(100% - (66px + 40px + 115px));
  }
}

@media (max-width: 880px) {
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport,
  .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    width: 60%;
  }
  .message-center .mc-container .mc-single-btns {
    margin-bottom: 15px;
    width: 100%;
  }
  .message-center .mc-container .mc-single .mc-btn {
    margin: 0 0 10px 20px;
  }
  .message-center .mc-container .mc-single .mc-btn.del-ticket {
    float: right;
  }
  .message-center .mc-container .mc-single .message h1, .message-center .mc-container .mc-single .reply h1, .message-center .mc-container .mc-single .reply-confirm h1 {
    padding-left: 0;
  }
  .message-center .mc-container .mc-single.messages img {
    display: none;
  }
  .message-center .mc-container .mc-single.messages .avatar-single img {
    top: 57px;
  }
}

@media (max-width: 850px) {
  .profile .layout .box .profile_edit_content .pagination {
    width: 90%;
  }
}

@media (max-width: 800px) {
  .profile .layout .box .about-profile {
    padding: 30px 20px 20px 30px;
  }
  .profile .layout .box .about-profile ul,
  .profile .layout .box .about-profile .about {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .profile .layout .box .follow .pagination {
    margin-bottom: 0;
    width: 90%;
  }
}

@media (max-width: 800px) and (min-width: 481px) {
  .profile .layout .col-left {
    width: 33%;
  }
  .profile .layout .col-middle-full {
    padding: 0 0 0 15px;
    width: 67%;
  }
  .profile .layout .box .viewAll {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }
  .profile .layout .box .game-library a {
    width: 33%;
  }
  .profile .layout .box .follow ul li {
    width: 33%;
  }
}

@media (max-width: 700px) {
  .message-center .mc-container .mc-gamename {
    float: none;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
  }
  .message-center .mc-container .mc-gamename img {
    display: none;
  }
  .message-center .mc-container .mc-gamename p {
    float: left;
    font-size: 16px;
    margin-left: 40px;
  }
  .message-center .mc-container .mc-single {
    padding: 40px;
  }
  .message-center .mc-container .mc-single.messages .play-game {
    margin: auto;
  }
  .message-center .mc-container .mc-single.messages span.avatar-single img {
    top: 72px;
  }
}

@media (max-width: 680px) {
  form ul li.second-line {
    padding-right: 0;
  }
}

@media (max-width: 660px) {
  .profile .layout .box .profile_edit_content form .avatar {
    float: none;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }
  .profile .layout .box .profile_edit_content form .avatar a {
    width: 50%;
  }
  .profile .layout .box .profile_edit_content form .small-col ul {
    float: none;
    width: 100%;
  }
  .profile .layout .box .profile_edit_content form .normal-col ul li:nth-child(2n+1) {
    width: 34%;
  }
  .profile .layout .box .profile_edit_content form .normal-col ul li:nth-child(2n) {
    width: 66%;
  }
  .profile .layout .box .profile_edit_content form.notifications ul li p {
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin: 0 10px;
    width: calc(100% - (66px + 20px));
  }
  .profile .layout .box .profile_edit_content form.notifications ul li .radios {
    bottom: 10px;
    padding-top: 6px;
    position: absolute;
    right: 20px;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport,
  .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    width: 50%;
  }
}

@media (max-width: 649px) {
  .message-center .layout .search-bottom .pagination {
    width: 90%;
  }
}

@media (max-width: 640px) and (min-width: 481px) {
  .profile .layout .unlock-referral {
    padding: 10px;
  }
  .profile .layout .box .profile_edit_content form ul li.email-example span {
    display: block;
    margin-top: -30px;
  }
}

@media (max-width: 640px) {
  .profile .layout .unlock-referral .unlock-text span.title {
    font-size: 16px;
    margin: 10px auto;
  }
  .profile .layout .unlock-referral .unlock-text span.info {
    font-size: 13px;
    line-height: 15px;
  }
  .profile .layout .box .profile_edit_content form ul li.resend-email {
    margin-right: 0;
    padding: 0 !important;
    width: 70% !important;
  }
  .profile .layout .box .profile_edit_content form ul li.resend-email-empty {
    width: 30% !important;
  }
}

@media (max-width: 620px) and (min-width: 481px) {
  .profile .layout .box .top .tabs a {
    padding: 11px 20px;
  }
}

@media (max-width: 600px) {
  .message-center .mc-container .mc-single-btns {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) and (min-width: 481px) {
  .profile .layout .box .top .tabs a {
    padding-left: 14px;
    padding-right: 14px;
  }
  .profile .layout .box .game-library a {
    width: 50%;
  }
  .profile .layout .box .follow ul li {
    width: 50%;
  }
  .profile .layout .box .profile_edit_content {
    min-height: 320px;
  }
  .profile .layout .box .profile_edit_content form ul.email-edit li:nth-child(odd),
  .profile .layout .box .profile_edit_content form ul.no-email-edit li:nth-child(odd) {
    width: 40%;
  }
  .profile .layout .box .profile_edit_content form ul.email-edit li:nth-child(even),
  .profile .layout .box .profile_edit_content form ul.no-email-edit li:nth-child(even) {
    width: 50%;
  }
  .profile .layout .box .profile_edit_content form ul.password-form li:nth-child(odd) {
    padding: 17px 6px 0 0;
  }
  .profile .layout .box .profile_edit_content form ul.password-form li:nth-child(even) {
    width: 50%;
  }
  .message-center .mc-header .right-text span {
    display: none;
  }
  .message-center .mc-container .mc-list {
    padding: 20px;
  }
}

@media (max-width: 580px) and (min-width: 481px) {
  .profile .layout .box .about-profile {
    padding-left: 20px;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport,
  .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    width: 60%;
  }
}

@media (max-width: 580px) {
  .profile .layout .box .profile_edit_content form.facebook-form-log {
    max-width: 320px;
  }
  .profile .layout .box .profile_edit_content form.facebook-form-log .social-account.facebook-value-l {
    padding: 0 30px;
  }
  .profile .layout .box .profile_edit_content form.facebook-form-log .facebook-account-i {
    font-size: 10px;
    max-width: 240px;
  }
  .profile .layout .box .news div.feed-img {
    min-width: 35px;
  }
}

@media (max-width: 540px) {
  .profile .layout .box .profile_edit_content form ul li.resend-email {
    margin-right: 0;
    padding: 0 !important;
    width: 90% !important;
  }
  .profile .layout .box .profile_edit_content form ul li.resend-email-empty {
    width: 10% !important;
  }
}

@media (max-width: 520px) and (min-width: 481px) {
  .profile .layout .box .top .tabs a {
    padding: 11px 8px;
  }
}

@media (max-width: 500px) and (min-width: 481px) {
  .white-box ul li:nth-child(odd) {
    height: 10px;
    text-align: center;
    width: 100% !important;
  }
  .white-box ul li:nth-child(even) {
    height: 40px;
    margin: 0 auto 10px;
    padding: 0 20px;
    text-align: center;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .profile .layout {
    padding: 0;
  }
  .profile .layout .col-left,
  .profile .layout .col-middle-full {
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .profile .layout .user-info .user {
    text-align: center;
  }
  .profile .layout .user-info .user p {
    display: block;
  }
  .profile .layout .user-info .user p:nth-child(1) {
    margin-right: 0;
  }
  .profile .layout .user-info .buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .profile .layout .user-info .buttons .btn-section {
    min-width: 95px;
  }
  .profile .layout .user-info .buttons .btn-section span {
    position: absolute;
    top: 0;
    right: 0;
  }
  .profile .layout .user-info .buttons .btn-section:nth-child(2) {
    margin: 0 14px;
  }
  .profile .layout .user-info .buttons .btn-section.active {
    padding: 12px 6px;
  }
  .profile .layout .box .top .tabs a {
    padding-left: 15px;
    padding-right: 15px;
  }
  .profile .layout .box div.feed-img {
    min-width: 30px !important;
    width: 15% !important;
  }
  .profile .layout .box .viewAll {
    margin: 20px 0;
    text-align: center;
  }
  .profile .layout .box .about-profile {
    padding: 30px 20px 20px 30px;
  }
  .profile .layout .box .about-profile ul,
  .profile .layout .box .about-profile .about {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .profile .layout .box .game-library a {
    width: 50%;
  }
  .profile .layout .box .follow ul li {
    width: 50%;
  }
  .profile .layout .box .edit_nav {
    float: none;
    width: 100%;
  }
  .profile .layout .box .profile_edit_content {
    border: none;
    float: none;
    min-height: 0;
    width: 100%;
  }
  .profile .layout .box .profile_edit_content form {
    padding: 20px;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li.second-line:nth-child(2n+1) {
    display: none;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li.second-line:nth-child(2n) {
    margin-bottom: 20px;
    padding-left: 0;
  }
  .message-center .layout {
    padding: 0;
  }
  .message-center .mc-annotationText {
    margin-right: 16px;
    margin-left: 16px;
  }
  .message-center .mc-header {
    margin: 0 20px;
  }
  .message-center .mc-header ul {
    float: none;
    text-align: center;
  }
  .message-center .mc-header .right-text {
    display: none;
  }
  .message-center .mc-container .mc-gamename p {
    margin-left: 30px;
  }
  .message-center .mc-container .mc-list {
    padding: 20px;
  }
  .message-center .mc-container .mc-list .selectAll {
    float: none;
    padding-bottom: 20px;
    width: 40%;
    margin-top: 0;
  }
  .message-center .mc-container .mc-list .selectAll span {
    display: block;
  }
  .message-center .mc-container .mc-single {
    zoom: 1;
    padding: 30px;
  }
  .message-center .mc-container .mc-single::before {
    content: '';
    display: block;
  }
  .message-center .mc-container .mc-single::after {
    clear: both;
    content: '';
    display: table;
  }
  .message-center .mc-container .mc-single.messages img {
    left: 40px;
  }
  .message-center .mc-container .mc-single.messages .play-game {
    float: left;
    left: 50%;
    margin: 20px 0 5px -30%;
    position: relative;
    width: 60%;
  }
  .message-center .mc-container .mc-single.complete {
    padding-left: 30px;
  }
  .message-center .mc-container .mc-single .message {
    float: left;
    width: 100%;
  }
  .message-center .mc-container .mc-single .mc-btn {
    margin: 0 0 10px 5px;
  }
  form ul li.gen-birth {
    margin-bottom: 5px;
    padding-left: 8px;
  }
  .profile .layout .box .profile_edit_content form .normal-col ul li {
    min-height: 20px;
  }
  .profile .layout .box .profile_edit_content form .avatar {
    padding-right: 0;
  }
  .profile .layout .box .profile_edit_content form .avatar a span {
    margin-left: -2px;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport,
  .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    line-height: 30px;
    white-space: normal;
    width: 100px;
  }
  .message-center .mc-container .mc-single .message h1.mc-ticket {
    margin-top: 15px;
  }
  .message-center .mc-container .mc-single .mc-btn.del-ticket {
    float: none;
  }
  .message-center .mc-container .mc-single .mc-btn-r {
    float: left;
  }
  .message-center .mc-container .mc-single.messages .avatar-single img {
    top: 117px;
  }
  .profile .layout .box .profile_edit_content form ul li .svg,
  .profile .layout .box .profile_edit_content form ul.no-email-edit li .svg {
    display: inline-block;
    float: none;
    margin: 0 10px -5px 3px;
  }
}

@media (max-width: 440px) {
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport, .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    line-height: 35px;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport {
    margin-top: -9px;
  }
  .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    margin-top: -3px;
  }
  .profile .layout .box .profile_edit_content form ul li.resend-email {
    width: 100% !important;
  }
}

@media (max-width: 400px) {
  .profile .layout .box .profile_edit_content form.facebook-form-log .social-account.facebook-value-l {
    margin-left: 1%;
  }
}

@media (max-width: 380px) {
  .profile .layout .box .profile_edit_content i.facebook-i.conn-i {
    margin-left: 10px;
  }
  .profile .layout .box .profile_edit_content .white-box .social-account {
    font-size: 10px;
    width: 220px;
  }
  .profile .layout .box .profile_edit_content .white-box .facebook-connect {
    padding-left: 20px !important;
  }
  .profile .layout .box .profile_edit_content .white-box .facebook-disconnect {
    padding-left: 25px !important;
  }
}

@media (max-width: 370px) {
  .profile .layout .box .about-profile ul li:nth-child(4), .profile .layout .box .about-profile ul li:nth-child(8) {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .profile .layout .box .profile_edit_content i.facebook-i.conn-i {
    margin-left: 5px;
  }
  .profile .layout .box .profile_edit_content .white-box .social-account {
    font-size: 9px;
    width: 200px;
  }
}

@media (max-width: 370px) and (min-width: 350px) {
  .profile .layout .box .profile_edit_content i.facebook-i.conn-i {
    margin-left: 15px;
  }
}

@media (max-width: 360px) {
  .profile .layout .box .top .tabs a {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .profile .layout .box .viewAll {
    margin: 20px 0 15px 11%;
    text-align: left;
  }
  .profile .layout .box .about-profile ul li:nth-child(2n+1) {
    width: 50%;
  }
  .profile .layout .box .about-profile ul li:nth-child(2n) {
    width: 50%;
  }
  .profile .layout .profile_edit_content form ul li.email-example span {
    display: block;
    line-height: 20px;
  }
  .profile .layout .invites span.title {
    font-size: 20px;
  }
  .profile .layout .invites span.subtitle {
    font-size: 12px;
  }
  .profile .layout .invites input {
    width: 85%;
  }
  .message-center .mc-container .mc-list {
    padding: 20px 0;
  }
  .message-center .mc-container .mc-list table tr th,
  .message-center .mc-container .mc-list table tr td {
    padding: 8px;
  }
  .message-center .mc-container .mc-single-btns {
    margin-bottom: 0;
  }
  .message-center .mc-container .mc-single-btns .mc-btn {
    margin: 0 0 10px 10px;
  }
  .message-center .mc-container .mc-single.messages .avatar-single img {
    top: 90px;
  }
}

@media (max-width: 340px) {
  .profile .layout .box .profile_edit_content form.facebook-form-log .social-account.facebook-value-l {
    margin-left: -5%;
  }
}

@media (max-width: 310px) {
  .profile .layout .box .profile_edit_content form .small-col ul li .viewport,
  .profile .layout .box .profile_edit_content form .small-col ul li .viewporto {
    white-space: nowrap;
  }
}

.application-mygame-titles {
  font-size: 24px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 32px;
  text-align: center;
}

.application-mygame .application-no-results {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.application-mygame .application-no-results .application-no-results-description {
  color: #061e36;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}

.application-games .application-sort {
  width: 206px;
  margin: 0 0 16px auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  position: relative;
}

.application-games .application-sort .application-sort-current {
  padding: 12px;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.application-games .application-sort .application-sort-current .application-sort-arrow {
  width: 8px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
}

.application-games .application-sort .application-sort-current .application-sort-arrow::before, .application-games .application-sort .application-sort-current .application-sort-arrow::after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 0 4px 6px 4px;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
  position: absolute;
  left: 0;
  content: '';
}

.application-games .application-sort .application-sort-current .application-sort-arrow::after {
  top: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.application-games .application-sort .application-sort-dropdown {
  width: 136px;
  display: none;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top: none;
  position: absolute;
  top: 45px;
  right: -1px;
  z-index: 100;
  border-radius: 0 0 2px 2px;
}

.application-games .application-sort .application-sort-dropdown li {
  list-style-type: none;
  text-align: left;
}

.application-games .application-sort .application-sort-dropdown li a {
  padding: 12px;
  display: block;
}

.application-games .application-filters-overlay {
  width: 216px;
  height: 100%;
  display: none;
  position: absolute;
  z-index: 1;
  background: rgba(240, 245, 248, 0.5);
}

.application-games .application-games-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 24px 0;
}

.application-games .application-filters {
  width: 216px;
  position: relative;
}

.application-games .application-filters .application-filter-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  color: #061e36;
  padding: 15px 0;
}

.application-games .application-filters .application-filter-box:nth-of-type(1) {
  padding-top: 0;
}

.application-games .application-filters .application-filter-box .application-filter-category {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 8px 0;
  position: relative;
}

.application-games .application-filters .application-filter-box .application-filter-content {
  position: relative;
}

.application-games .application-filters .application-filter-box .application-filter-content ul {
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  max-height: 174px;
  overflow: hidden;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li label {
  width: 100%;
  padding: 4px 0 4px 44px;
  cursor: pointer;
  display: block;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li label:hover {
  background: rgba(0, 0, 0, 0.07);
}

.application-games .application-filters .application-filter-box .application-filter-content ul li .checkbox,
.application-games .application-filters .application-filter-box .application-filter-content ul li select {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li .checkbox {
  width: 18px;
  height: 18px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 5%;
  bottom: 0;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li .checkbox::before, .application-games .application-filters .application-filter-box .application-filter-content ul li .checkbox::after {
  margin: auto;
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li .checkbox::before {
  width: 16px;
  height: 16px;
  top: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4098ff;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li .checkbox::after {
  width: 8px;
  height: 4px;
  border: 2px solid #e6e6e6;
  border-right: none;
  border-top: none;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.application-games .application-filters .application-filter-box .application-filter-content ul li input[type=checkbox] {
  visibility: hidden;
  position: absolute;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li input[type=checkbox]:checked + .checkbox {
  border: 1px solid #4098ff;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li input[type=checkbox]:checked + .checkbox::before, .application-games .application-filters .application-filter-box .application-filter-content ul li input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.application-games .application-filters .application-filter-box .application-filter-content ul li input[type=checkbox]:checked + .checkbox + label {
  background: rgba(0, 0, 0, 0.07);
}

.application-games .application-filters .application-filter-box .application-filter-content ul li select {
  font-size: 14px;
  margin-left: 13px;
  padding: 6px 12px;
  width: 195px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-arrow {
  width: 8px;
  height: 19px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-arrow::before, .application-games .application-filters .application-filter-box .application-filter-content .application-filter-arrow::after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 0 4px 6px 4px;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
  position: absolute;
  content: '';
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-arrow::after {
  top: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand {
  padding: 4px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: rgba(0, 0, 0, 0.5);
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand:hover {
  background: rgba(0, 0, 0, 0.07);
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand .application-filter-expand-arrow {
  width: 8px;
  height: 8px;
  margin: 0 20px 0 16px;
  content: '';
  display: inline-block;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand .application-filter-expand-label-more {
  display: block;
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand .application-filter-expand-label-less {
  display: none;
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand.expanded .application-filter-expand-arrow {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand.expanded .application-filter-expand-label-more {
  display: none;
}

.application-games .application-filters .application-filter-box .application-filter-content .application-filter-expand.expanded .application-filter-expand-label-less {
  display: block;
}

.application-games .application-games-filtered {
  max-width: 816px;
  width: 100%;
  margin: 0 0 0 48px;
}

.application-games .application-games-filtered .pagination {
  background-color: #fff;
  display: inline-block;
  height: 45px;
  margin: 0 auto;
}

.application-games .application-games-filtered .pagination a {
  color: #000;
  line-height: 45px;
  padding: 0;
}

.application-games .application-games-filtered .pagination a:hover {
  background: #f0f5f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  max-height: 44px;
}

.application-games .application-games-filtered .pagination a.active {
  color: #dd437c;
  font-weight: bold;
}

.application-games .application-games-filtered .application-no-results {
  padding: 60px 0;
  text-align: center;
}

.application-games .application-games-filtered .application-no-results.is-error {
  display: none;
}

.application-games .application-games-filtered .application-no-results .application-no-results-title {
  color: #061e36;
  font-size: 30px;
  font-weight: 700;
}

.application-games .application-games-filtered .application-no-results .application-no-results-description {
  color: #061e36;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}

@media (min-width: 801px) {
  .application-games .layout {
    margin: 29px auto 0;
  }
  .application-games .application-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .application-games .application-category li {
    width: 236px;
  }
  .application-games .application-category li a {
    padding: 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .application-games .application-category li a svg path {
    fill: rgba(0, 0, 0, 0.5);
  }
  .application-games .application-category li a svg.category-icon.is-free {
    width: 19px;
  }
  .application-games .application-category li a svg.category-icon.is-download {
    width: 16px;
    height: 19px;
  }
  .application-games .application-category li a svg.category-icon.is-mobile {
    width: 18px;
    height: 20px;
  }
  .application-games .application-category li a span {
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 0 14px;
  }
  .application-games .application-category li.is-selected a {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    position: relative;
  }
  .application-games .application-category li.is-selected a::after {
    width: 100%;
    height: 1px;
    display: block;
    content: '';
    background-color: #f7f7f7;
    position: absolute;
    bottom: -1px;
  }
  .application-games .application-category li.is-selected a svg path {
    fill: rgba(0, 0, 0, 0.85);
  }
  .application-games .application-category li.is-selected a span {
    color: rgba(0, 0, 0, 0.85);
    font-weight: bold;
  }
}

@media (max-width: 800px) {
  .application-games .layout {
    margin: 0;
  }
  .application-games .application-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .application-games .application-category li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background-color: #fff;
  }
  .application-games .application-category li a {
    width: 100%;
    padding: 10% 16px;
    text-align: center;
  }
  .application-games .application-category li a svg {
    margin: auto;
    display: block;
  }
  .application-games .application-category li a svg path {
    fill: rgba(0, 0, 0, 0.5);
  }
  .application-games .application-category li a svg.category-icon.is-free {
    width: 19px;
  }
  .application-games .application-category li a svg.category-icon.is-download {
    width: 16px;
    height: 19px;
  }
  .application-games .application-category li a svg.category-icon.is-mobile {
    width: 18px;
    height: 20px;
  }
  .application-games .application-category li a span {
    margin: 8px 0 0;
    display: block;
    color: rgba(0, 0, 0, 0.5);
  }
  .application-games .application-category li.is-selected {
    background-color: #f7f7f7;
  }
  .application-games .application-category li.is-selected a svg path {
    fill: rgba(0, 0, 0, 0.85);
  }
  .application-games .application-category li.is-selected a span {
    color: rgba(0, 0, 0, 0.85);
    font-weight: bold;
  }
  .application-games .application-category li:first-child.is-selected {
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: none;
  }
  .application-games .application-category li:nth-child(2).is-selected {
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: none;
  }
  .application-games .application-category li:nth-child(3).is-selected {
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: none;
  }
}

.commonModal .mainContents {
  padding: 0 16px;
}

.application-game-play {
  margin: 30px 0;
  overflow-x: hidden;
  position: relative;
}

.application-game-play .notice-area {
  margin: 0 auto 16px;
}

.application-game-play .notice-area .alert .notice-close-icon {
  width: 15px;
  height: 15px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  cursor: pointer;
}

.application-game-play .notice-area .alert .notice-close-icon::before, .application-game-play .notice-area .alert .notice-close-icon::after {
  width: 3px;
  height: 15px;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #a8acb0;
}

.application-game-play .notice-area .alert .notice-close-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.application-game-play .notice-area .alert .notice-close-icon::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.application-game-play .application-game-play-frame {
  position: relative;
  text-align: center;
}

.application-game-play .application-game-play-frame > iframe {
  margin: 0 auto;
}

.application-game-play .application-game-play-layout {
  max-width: 1280px !important;
  margin: auto;
  text-align: center;
}

.application-game-play .application-game-play-layout .application-game-play-help {
  zoom: 1;
  background: #fff;
  border: 1px solid #ced9de;
  height: auto;
  margin-top: 20px;
}

.application-game-play .application-game-play-layout .application-game-play-help::before {
  content: '';
  display: block;
}

.application-game-play .application-game-play-layout .application-game-play-help::after {
  clear: both;
  content: '';
  display: table;
}

.application-game-play .application-game-play-layout .application-game-play-help .application-game-play-section {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  float: left;
  height: 150px;
  padding: 20px;
  text-align: left;
  width: 20%;
}

.application-game-play .application-game-play-layout .application-game-play-help .application-game-play-section h3 {
  font-size: 16px;
  font-weight: bold;
}

.application-game-play .application-game-play-layout .application-game-play-help .application-game-play-section a {
  display: block;
}

.application-game-play .application-game-play-layout .application-game-play-help .application-game-play-section a:not(:first-child) {
  margin: 8px 0 0;
}

.application-game-play .application-game-play-layout .application-game-play-help .application-game-play-section.last {
  border-right: 0;
}

.application-game-play .application-game-play-layout .application-game-play-help a.back-to-top {
  cursor: pointer;
  float: right;
  line-height: 150px;
  margin-right: 20px;
}

.application-game-play .application-game-play-recommended {
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 130px;
  z-index: 1;
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-title {
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #000;
  padding: 10px 20px;
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-games {
  display: block;
  margin: 10px auto;
  width: 110px;
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-games img {
  display: block;
  margin: 5px auto;
  width: 70%;
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-games span {
  font-size: 12px;
  font-weight: normal;
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-arrow {
  width: 20px;
  height: 75px;
  padding: 28px 0;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 2;
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-arrow::after {
  content: '>';
}

.application-game-play .application-game-play-recommended .application-game-play-recommended-arrow.is-closed::after {
  content: '<';
}

.application-game-play-frame-full {
  position: relative;
}

.application-game-play-frame-full .application-game-play-frame {
  bottom: 0;
  height: 100%;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.application-game-play-frame-full .application-game-play-frame iframe {
  border: 0;
  height: 100%;
  padding: 0;
  width: 100%;
}

@media (max-width: 791px) {
  .application-game-play .application-game-play-layout .application-game-play-help .application-game-play-section {
    height: 190px;
  }
}

@media (max-width: 1450px) and (min-width: 1300px) {
  .application-game-play .application-game-play-recommended {
    right: -130px;
  }
  .application-game-play .application-game-play-recommended .application-game-play-recommended-arrow::after {
    content: '<';
  }
}

@media (max-width: 1300px) {
  .application-game-play .application-game-play-recommended {
    right: -150px !important;
  }
  .application-game-play .application-game-play-recommended .application-game-play-recommended-arrow::after {
    content: '<';
  }
}

.application-guest-modal-wrapper {
  padding: 15% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.application-guest-modal-wrapper .application-guest-modal {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.application-guest-modal .signup-sec {
  padding-bottom: 0;
}

.application-guest-modal .signup-sec__title {
  margin-top: 0;
}

.application-guest-modal .signup-sec .layout {
  max-width: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.application-guest-modal .signup-sec .layout form {
  margin-top: 0;
}

.application-guest-modal .application-guest-modal-inner {
  padding: 40px 24px;
}

.application-guest-modal .application-guest-modal-inner .application-guest-modal-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}

.application-guest-modal .application-guest-modal-inner .application-guest-modal-caption {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.application-guest-modal .application-guest-modal-inner .application-guest-modal-caption img {
  width: 24px;
  margin-left: 8px;
}

.application-guest-modal .application-guest-modal-inner .application-guest-modal-caption span {
  font-size: 12px;
  font-weight: bold;
}

.application-guest-modal .application-guest-modal-inner .application-guest-modal-button {
  max-width: 340px;
  margin: 0 auto;
}

.application-guest-modal .application-guest-modal-inner .application-guest-modal-button .close {
  margin-top: 32px;
}

.credits-store {
  overflow-x: hidden;
  position: relative;
  text-align: center;
}

.credits-store .title {
  font-size: 24px;
  font-weight: bold;
  font-size: 32px;
  margin-top: 48px;
}

.credits-store .purchaseType-text {
  font-size: 14px;
  font-weight: normal;
  margin: 16px 0 0;
  color: rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.credits-store .purchaseType-text span {
  padding-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.credits-store .purchaseType-text img {
  margin-right: 8px;
  vertical-align: bottom;
}

.credits-store .sale-information {
  position: relative;
  display: inline-block;
  max-width: 95%;
  margin: 24px 0 8px;
  color: #f2a700;
}

.credits-store .sale-information::before, .credits-store .sale-information::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 24px;
  background: #f2a700;
}

.credits-store .sale-information::before {
  left: 0;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.credits-store .sale-information::after {
  right: 0;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.credits-store .sale-information-text {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  padding: 0 16px;
  color: #f2a700;
}

.credits-store .creditsList {
  list-style: none;
  margin: 0 auto 64px;
  max-width: 960px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.credits-store .creditsList-item {
  position: relative;
  width: 224px;
  margin: 0 8px 24px;
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.credits-store .creditsList-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 32px;
}

.credits-store .creditsList-item a:hover {
  text-decoration: none;
}

.credits-store .creditsList-item .credits-info {
  width: 100%;
}

.credits-store .creditsList-item .credits-text {
  font-size: 32px;
  font-weight: bold;
}

.credits-store .creditsList-item .credits-text::before {
  content: '';
  margin-right: 4px;
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url(/images/icon/virtual_currency.svg) no-repeat;
  background-size: cover;
  vertical-align: text-bottom;
}

.credits-store .creditsList-item .price-btn {
  width: 70%;
  margin: 8px auto 0;
}

.credits-store .creditsList-item.limited-offer .credits-text {
  color: #e60012;
}

.credits-store .creditsList-item.limited-offer .bonus-text {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
}

.credits-store .creditsList-item.first-purchase {
  background: rgba(255, 228, 32, 0.3);
  border: 3px solid #f2a700;
}

.credits-store .creditsList-item.first-purchase .price-btn {
  background: white;
  color: #e60012;
  width: auto;
}

.credits-store .creditsList-item.first-purchase .price-btn .old {
  font-size: 12px;
  font-weight: normal;
}

.credits-store .icon {
  position: relative;
  top: -20px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: block;
  height: 204px;
  margin-bottom: -50px;
  width: 100%;
}

.credits-store .icon.val-1 {
  background-image: url(../images/page/credits/img_xs.png);
}

.credits-store .icon.val-2 {
  background-image: url(../images/page/credits/img_s.png);
}

.credits-store .icon.val-3 {
  background-image: url(../images/page/credits/img_s.png);
}

.credits-store .icon.val-4 {
  background-image: url(../images/page/credits/img_m.png);
}

.credits-store .icon.val-5 {
  background-image: url(../images/page/credits/img_m.png);
}

.credits-store .icon.val-6 {
  background-image: url(../images/page/credits/img_l.png);
}

.credits-store .icon.val-7 {
  background-image: url(../images/page/credits/img_l.png);
}

.credits-store .icon.val-8 {
  background-image: url(../images/page/credits/img_xl.png);
}

.credits-store .badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
}

.credits-store .badge img, .credits-store .badge svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.credits-store .badge .badge-text {
  position: absolute;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.credits-store .badge.badge-first svg * {
  fill: #e60012;
}

.credits-store .badge.badge-sale svg * {
  fill: #28a745;
}

.credits-store .badge.badge-popular svg * {
  fill: rgba(164, 0, 0, 0.85);
}

@media (min-width: 801px) {
  .credits-store .creditsList-item {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .credits-store .creditsList-item:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .credits-store .creditsList-item .credits-info .accessory {
    display: none;
  }
  .credits-store .badge .badge-text {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.2;
  }
  .credits-store .badge.badge-first {
    top: -16px;
    left: -16px;
    width: 88px;
    height: 88px;
  }
  .credits-store .badge.badge-first .discount-text .discount {
    display: block;
    font-size: 24px;
    font-weight: bold;
  }
  .credits-store .badge.badge-first .discount-text .discount span {
    font-size: 12px;
  }
  .credits-store .badge.badge-first .discount-text .accessory {
    display: inline-block;
    width: 64px;
    font-size: 12px;
    line-height: 1;
  }
}

@media (max-width: 800px) {
  .credits-store .layout {
    padding: 0 16px;
  }
  .credits-store .title {
    margin-top: 24px;
    font-size: 24px;
  }
  .credits-store .purchaseType-text {
    margin-top: 12px;
  }
  .credits-store .purchaseType-text img {
    width: 32px;
    height: 32px;
  }
  .credits-store .sale-information {
    margin: 16px 0 12px 0;
  }
  .credits-store .sale-information::before, .credits-store .sale-information::after {
    height: 32px;
  }
  .credits-store .sale-information::before {
    left: 8px;
  }
  .credits-store .sale-information::after {
    right: 8px;
  }
  .credits-store .sale-information-text {
    font-size: 12px;
    font-weight: bold;
    padding: 0 20px;
  }
  .credits-store .creditsList-item {
    width: 100%;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    text-align: left;
  }
  .credits-store .creditsList-item a {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 16px;
    padding-left: 24px;
  }
  .credits-store .creditsList-item:last-child {
    border-bottom: none;
  }
  .credits-store .creditsList-item .credits-info .accessory {
    color: #e60012;
    font-size: 12px;
    font-weight: bold;
    margin-left: 28px;
  }
  .credits-store .creditsList-item .credits-text {
    font-size: 18px;
    font-weight: bold;
  }
  .credits-store .creditsList-item .credits-text::before {
    width: 24px;
    height: 24px;
    vertical-align: middle;
  }
  .credits-store .creditsList-item .price-btn {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 4px;
    line-height: 1.5;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #e60012;
    color: white;
    border: none !important;
    padding: 8px 16px !important;
    font-size: 12px;
    margin: 0;
    margin-left: 16px;
    width: auto;
    min-width: 120px;
  }
  .credits-store .creditsList-item .price-btn:hover {
    text-decoration: none;
  }
  .credits-store .creditsList-item .price-btn:hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .credits-store .creditsList-item .price-btn.disabled {
    pointer-events: none;
  }
  .credits-store .creditsList-item .price-btn:hover:after {
    background: white;
    opacity: .1;
  }
  .credits-store .creditsList-item .price-btn.disabled {
    opacity: .2;
  }
  .credits-store .creditsList-item.limited-offer .bonus-text {
    font-size: 12px;
    font-weight: normal;
  }
  .credits-store .creditsList-item.first-purchase {
    border: 2px solid #f2a700;
    border-radius: 4px;
  }
  .credits-store .creditsList-item.first-purchase .price-btn .old {
    display: block;
    font-size: 10px;
    font-weight: normal;
  }
  .credits-store .creditsList-item .icon {
    display: none;
  }
  .credits-store .badge {
    top: 0;
    left: 0;
    width: 74px;
    height: 50px;
    overflow: hidden;
  }
  .credits-store .badge svg, .credits-store .badge img {
    display: none;
  }
  .credits-store .badge .badge-text {
    right: 20px;
    top: 10px;
    text-align: center;
    font-size: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .credits-store .badge.badge-first .badge-text {
    background: #e60012;
  }
  .credits-store .badge.badge-first .discount-text .accessory {
    display: none;
  }
  .credits-store .badge.badge-sale .badge-text {
    background: #28a745;
  }
  .credits-store .badge.badge-popular .badge-text {
    background: rgba(164, 0, 0, 0.85);
  }
}

.credits-store-complete .complete-box {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 64px 0;
}

.credits-store-complete .complete-box-icon {
  position: relative;
  width: 64px;
  margin: 0 auto;
}

.credits-store-complete .complete-box-icon::before {
  position: absolute;
  content: '';
  bottom: 11px;
  right: -7px;
  width: 24px;
  height: 24px;
  background: url(/images/page/credits/completed_check.svg) no-repeat;
}

.credits-store-complete .complete-box-price {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: bold;
}

.credits-store-complete .complete-box-title {
  font-size: 18px;
  font-weight: bold;
}

.credits-store-complete .complete-box-text-caution {
  font-size: 14px;
  font-weight: normal;
  color: rgba(164, 0, 0, 0.85);
  margin-bottom: 24px;
}

.credits-store-complete .complete-box-text {
  font-size: 14px;
  font-weight: normal;
}

.credits-store-complete .mainbtn-secondary-lv1 {
  max-width: 280px;
  width: 100%;
  margin: 12px 0 24px;
}

.credits-store-complete .complete-box-helpAnchor {
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin: 0 auto;
  color: #4098ff;
}

.credits-store-error {
  padding-top: 104px;
  text-align: center;
}

.credits-store-error .error-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 48px;
}

.credits-store-error .error-text {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}

.credits-store-error .error-proposal-text {
  font-size: 14px;
  font-weight: normal;
  margin: 50px 0 8px;
}

.credits-store-error .mainbtn-primary-lv1 {
  display: block;
  width: 327px;
  margin: 0 auto 8px;
}

.credits-store-error .mainbtn-secondary-lv1 {
  display: block;
  width: 327px;
  margin: 0 auto 45px;
}

.credits-store-error .support-anchor {
  display: inline-block;
  color: #4098ff;
  margin-bottom: 104px;
  font-size: 16px;
  font-weight: normal;
}

.credits-store-lockError {
  padding-top: 104px;
  text-align: center;
}

.credits-store-lockError .error-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.credits-store-lockError .error-text {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 48px;
}

.credits-store-lockError .mainbtn-secondary-lv1 {
  display: block;
  width: 280px;
  margin: 0 auto 104px;
}

.credits-store-lockError .support-anchor {
  display: inline-block;
  color: #4098ff;
  margin-bottom: 104px;
}

@media (max-width: 800px) {
  .credits-store-error {
    padding-top: 48px;
    text-align: center;
  }
  .credits-store-error .error-title {
    font-size: 18px;
    font-weight: bold;
  }
  .credits-store-error .error-text {
    font-size: 14px;
    font-weight: normal;
  }
  .credits-store-error .support-anchor {
    margin-bottom: 64px;
  }
  .credits-store-error-lock {
    padding-top: 48px;
    text-align: center;
  }
  .credits-store-error-lock .error-title {
    font-size: 18px;
    font-weight: bold;
  }
  .credits-store-error-lock .error-text {
    font-size: 14px;
    font-weight: normal;
  }
  .credits-store-error-lock .support-anchor {
    margin-bottom: 64px;
  }
}

.games .games-list li a .device-label {
  background: #e60012;
}

.footer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  margin-top: 10px;
  padding: 30px 0;
}

.footer-copyright {
  background-color: #f0f5f8;
  line-height: normal;
  width: 100%;
}

.copydiv {
  background-color: #f0f5f8;
  margin: 0 auto;
  max-width: 1080px;
  min-height: 120px;
  padding-top: 20px;
  width: 100%;
}

.copytext {
  color: rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 1080px;
  text-align: left;
}

.copytext a {
  font-size: 9px;
  padding-right: 30px;
}

.copytext .copyright {
  color: #072340;
  font-size: 11px;
}

.copyright-links .logo img,
.copyright-links .logo svg {
  max-height: 48px;
  max-width: 162px;
}

.social-icon {
  display: inline-block !important;
  height: 32px;
  width: 32px;
}

.social-icon img,
.social-icon svg {
  height: 100%;
  width: 100%;
}

@media (max-width: 800px) and (min-width: 481px) {
  .footer {
    background: #f0f5f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1em;
    margin: left;
    margin: auto;
    margin-bottom: 20px;
    padding: 30px 10px 30px 20px;
    width: 100%;
  }
  .copytext {
    max-width: 1080px;
    width: 100%;
  }
}

@media (max-width: 755px) and (min-width: 481px) {
  .copytext {
    margin: 0 auto;
    text-align: center;
  }
  .copytext a {
    padding: 0 10px;
    text-align: center;
  }
}

@media (max-width: 660px) and (min-width: 481px) {
  .copytext a {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .footer .copydiv {
    background-color: #f0f5f8;
    margin: 0 auto;
    max-width: 1080px;
    min-height: 120px;
    padding-top: 20px;
    width: 100%;
  }
  .footer .copyright-links {
    text-align: center;
  }
  .footer .copyright-links .logo img,
  .footer .copyright-links .logo svg {
    max-height: 48px;
    max-width: 162px;
  }
  .footer .copytext {
    color: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: center;
  }
  .footer .copytext a {
    font-size: 12px;
    padding: 0 15px;
  }
  .footer .copytext .copyright {
    color: #072340;
    font-size: 12px;
  }
  .copytext {
    max-width: 480px;
    width: 100%;
  }
}

.age-check .content {
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  width: 55%;
  padding: 32px 0;
  margin: 80px 0 0 auto;
}

.age-check .content__ttl {
  font-size: 30px;
  text-align: center;
}

.age-check .content__description {
  padding: 24px;
}

.age-check .content__description p {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}

.age-check .content__link {
  padding: 0 24px;
}

.age-check .content__link .link_enter {
  margin-bottom: 24px;
}

.age-check .content__link .link_enter span {
  font-size: 24px;
  display: block;
}

.age-check .content__link .link_cancel {
  font-size: 16px;
  font-weight: bold;
  display: block;
  text-align: center;
}

@media (max-width: 480px) {
  .age-check .content {
    width: 95%;
  }
}

.age-check[class$='_bg'] {
  zoom: 1;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  height: 880px;
}

.age-check[class$='_bg']::before {
  content: '';
  display: block;
}

.age-check[class$='_bg']::after {
  clear: both;
  content: '';
  display: table;
}

.age-check[class$='_bg'] .layout {
  padding: 0;
}

.age-check[class$='_bg'] .content {
  color: #061e36;
  float: right;
  padding: 25px 10px 25px 0;
  text-align: center;
  width: 50%;
}

@media (max-width: 670px) {
  .age-check[class$='_bg'] {
    height: auto;
  }
  .age-check[class$='_bg'] .layout {
    padding-top: 65vw;
  }
  .age-check[class$='_bg'] .content {
    float: none;
    width: 70%;
  }
  .age-check[class$='_bg'] .content__ttl, .age-check[class$='_bg'] .content__tagline {
    display: none;
  }
}

@media (max-width: 480px) {
  .age-check[class$='_bg'] {
    padding-top: 0;
  }
  .age-check[class$='_bg'] .content {
    margin: 0 auto;
    padding: 0 0 25px;
    width: 90%;
  }
}

@-webkit-keyframes loading-fb-login {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading-fb-login {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.signup h1,
.login h1 {
  font-size: 24px;
  font-weight: bold;
  padding: 24px 0;
  text-align: center;
}

.signup p a,
.login p a {
  color: #4098ff;
}

.signup p a:hover,
.login p a:hover {
  text-decoration: underline;
}

.signup-sec,
.login-sec {
  padding-bottom: 40px;
  overflow: hidden;
}

.signup-sec .is-inactive,
.login-sec .is-inactive {
  display: none;
}

.signup-sec .ValidationErrors,
.login-sec .ValidationErrors {
  font-size: 12px;
  font-weight: normal;
  color: rgba(164, 0, 0, 0.85);
  display: block;
  text-align: right;
  padding-top: 4px;
}

.signup-sec .error-msg,
.login-sec .error-msg {
  background: #e60012;
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin-top: 16px;
  padding: 12px 16px;
  text-align: center;
}

.signup-sec__title,
.login-sec__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 32px;
  padding-top: 48px;
  text-align: center;
}

.signup-sec__title .link,
.login-sec__title .link {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.signup-sec__title .link a,
.login-sec__title .link a {
  color: #4098ff;
}

@media (max-width: 480px) {
  .signup-sec__title,
  .login-sec__title {
    padding-top: 24px;
  }
}

.signup-sec__input-field--login,
.login-sec__input-field--login {
  padding: 32px 48px 48px;
}

.signup-sec__input-field--signup,
.login-sec__input-field--signup {
  padding: 24px 48px 48px;
}

@media (max-width: 480px) {
  .signup-sec__input-field--login,
  .login-sec__input-field--login {
    padding: 16px 24px 56px;
  }
  .signup-sec__input-field--signup,
  .login-sec__input-field--signup {
    padding: 24px 24px 48px;
  }
}

.signup-sec__input,
.login-sec__input {
  margin-bottom: 12px;
  position: relative;
}

.signup-sec__input i,
.login-sec__input i {
  display: none;
  position: absolute;
  margin: auto;
  top: -2px;
  right: 30px;
  bottom: 2px;
  width: 10px;
}

.signup-sec__input img, .signup-sec__input svg,
.login-sec__input img,
.login-sec__input svg {
  position: absolute;
  top: 12px;
  left: 18px;
  margin: auto;
}

.signup-sec__input img *, .signup-sec__input svg *,
.login-sec__input img *,
.login-sec__input svg * {
  fill: rgba(0, 0, 0, 0.5);
}

.signup-sec__input input,
.login-sec__input input {
  width: 100%;
  height: 48px;
  background-color: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  padding-left: 56px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  vertical-align: bottom;
  font-size: 16px;
  font-weight: normal;
}

.signup-sec__input input.SuccessField ~ i:not(.eye-slash),
.login-sec__input input.SuccessField ~ i:not(.eye-slash) {
  display: block;
}

.signup-sec__input input.SuccessField ~ i:not(.eye-slash)::before,
.login-sec__input input.SuccessField ~ i:not(.eye-slash)::before {
  content: '';
  position: absolute;
  top: 2px;
  right: -3px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 3px;
  border-left: 3px solid #28a745;
  border-bottom: 3px solid #28a745;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.signup-sec__input input.ErrorField ~ i:not(.eye-slash),
.login-sec__input input.ErrorField ~ i:not(.eye-slash) {
  display: block;
  bottom: 16px;
}

.signup-sec__input input.ErrorField ~ i:not(.eye-slash)::after, .signup-sec__input input.ErrorField ~ i:not(.eye-slash)::before,
.login-sec__input input.ErrorField ~ i:not(.eye-slash)::after,
.login-sec__input input.ErrorField ~ i:not(.eye-slash)::before {
  content: '';
  width: 3px;
  height: 1px;
  background: rgba(164, 0, 0, 0.85);
  margin: auto;
  position: absolute;
  top: 20px;
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: auto;
  border: none;
  height: 12px;
}

.signup-sec__input input.ErrorField ~ i:not(.eye-slash)::after,
.login-sec__input input.ErrorField ~ i:not(.eye-slash)::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.signup-sec__input input.SuccessField ~ .eye-slash,
.signup-sec__input input.ErrorField ~ .eye-slash,
.signup-sec__input input i.eye-slash,
.login-sec__input input.SuccessField ~ .eye-slash,
.login-sec__input input.ErrorField ~ .eye-slash,
.login-sec__input input i.eye-slash {
  background: url(/images/icon/eye-slash.svg) no-repeat center;
  background-size: contain;
  border-radius: 20px;
  display: none;
  height: 22px;
  position: absolute;
  right: 45px;
  top: 14px;
  bottom: auto;
  width: 22px;
}

.signup-sec__input input.SuccessField ~ .eye-slash.show-icon,
.signup-sec__input input.ErrorField ~ .eye-slash.show-icon,
.signup-sec__input input i.eye-slash.show-icon,
.login-sec__input input.SuccessField ~ .eye-slash.show-icon,
.login-sec__input input.ErrorField ~ .eye-slash.show-icon,
.login-sec__input input i.eye-slash.show-icon {
  display: block;
}

.signup-sec__input input.SuccessField ~ .eye-slash.eye-shadow,
.signup-sec__input input.ErrorField ~ .eye-slash.eye-shadow,
.signup-sec__input input i.eye-slash.eye-shadow,
.login-sec__input input.SuccessField ~ .eye-slash.eye-shadow,
.login-sec__input input.ErrorField ~ .eye-slash.eye-shadow,
.login-sec__input input i.eye-slash.eye-shadow {
  background-image: url(/images/icon/eye.svg);
}

.signup-sec__input input.SuccessField ~ .eye-slash.eye-animation,
.signup-sec__input input.ErrorField ~ .eye-slash.eye-animation,
.signup-sec__input input i.eye-slash.eye-animation,
.login-sec__input input.SuccessField ~ .eye-slash.eye-animation,
.login-sec__input input.ErrorField ~ .eye-slash.eye-animation,
.login-sec__input input i.eye-slash.eye-animation {
  -webkit-animation: pulse 900ms ease-in-out;
  animation: pulse 900ms ease-in-out;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(179, 184, 188, 0.6);
    box-shadow: 0 0 0 0 rgba(179, 184, 188, 0.6);
  }
  25% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  75% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.signup-sec__init-spinner-wrap,
.login-sec__init-spinner-wrap {
  position: relative;
  width: 247px;
  margin: 0 auto;
  height: 40px;
  background: #1777F2;
  border-radius: 5px;
}

.signup-sec__init-spinner-wrap:hover,
.login-sec__init-spinner-wrap:hover {
  opacity: .8;
}

.signup-sec__init-spinner,
.login-sec__init-spinner {
  margin: 60px auto;
  font-size: 10px;
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  top: -48px;
  left: 0;
  right: 0;
  -webkit-animation: loading-fb-login 0.6s infinite linear;
  animation: loading-fb-login 0.6s infinite linear;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  border-left: 2px solid rgba(255, 255, 255, 0.6);
}

.signup-sec__init-spinner, .signup-sec__init-spinner::after,
.login-sec__init-spinner,
.login-sec__init-spinner::after {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.signup-sec__request,
.login-sec__request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.signup-sec__request-auto-login,
.login-sec__request-auto-login {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.signup-sec__request-auto-login input,
.login-sec__request-auto-login input {
  vertical-align: bottom;
}

.signup-sec__request-forget-pass,
.login-sec__request-forget-pass {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.signup-sec__captch,
.login-sec__captch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.signup-sec__captch input,
.login-sec__captch input {
  width: 100%;
  height: 48px;
  background-color: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  vertical-align: bottom;
  font-size: 16px;
  font-weight: normal;
}

.signup-sec__captcha-refresh,
.login-sec__captcha-refresh {
  width: 100px;
  margin: 16px auto 8px;
  font-size: 12px;
  font-weight: normal;
}

.signup-sec__recaptch-image,
.login-sec__recaptch-image {
  margin-bottom: 24px;
}

.signup-sec__recaptch-image img,
.login-sec__recaptch-image img {
  margin-bottom: 16px;
}

.signup-sec__select-line,
.login-sec__select-line {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
}

.signup-sec__select-line::before,
.login-sec__select-line::before {
  content: '';
  width: 420px;
  position: absolute;
  z-index: 3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  left: -24px;
  top: 42%;
}

.signup-sec__select-login,
.login-sec__select-login {
  position: relative;
  z-index: 5;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.15);
}

.signup-sec__select-login span,
.login-sec__select-login span {
  position: absolute;
  display: inline-block;
  left: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
}

.signup-sec__button,
.login-sec__button {
  width: 100%;
}

.signup-sec__button--login,
.login-sec__button--login {
  margin-bottom: 24px;
}

.signup-sec__button--signup,
.login-sec__button--signup {
  margin-top: 24px;
}

@media (max-width: 480px) {
  .signup-sec__button--signup,
  .login-sec__button--signup {
    margin-top: 12px;
  }
}

.signup-sec__checkbox,
.login-sec__checkbox {
  text-align: left;
}

.signup-sec__checkbox .label-input-wrapper,
.login-sec__checkbox .label-input-wrapper {
  height: 40px;
  padding-right: 8px;
}

.signup-sec__checkbox .label-input-wrapper input,
.login-sec__checkbox .label-input-wrapper input {
  vertical-align: middle;
  margin: 0;
}

.signup-sec__checkbox .label-input-text,
.login-sec__checkbox .label-input-text {
  display: inline-block;
  padding: 10px 4px 8px 0;
}

@media (max-width: 480px) {
  .signup-sec__checkbox .label-input-wrapper,
  .login-sec__checkbox .label-input-wrapper {
    height: 48px;
  }
  .signup-sec__checkbox .label-input-text,
  .login-sec__checkbox .label-input-text {
    padding: 14px 4px 14px 0;
  }
}

.signup-sec__terms,
.login-sec__terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.signup-sec__terms .label-input-wrapper,
.login-sec__terms .label-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.signup-sec__terms span,
.login-sec__terms span {
  display: inline-block;
}

.signup-sec__terms span a,
.login-sec__terms span a {
  color: #4098ff;
  margin-right: 4px;
  padding-left: 8px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.signup-sec__terms span a:first-child,
.login-sec__terms span a:first-child {
  padding-left: 0;
  border-left: none;
}

.signup-sec__terms span a:last-child,
.login-sec__terms span a:last-child {
  margin-right: 0;
}

.signup-sec .layout,
.login-sec .layout {
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  max-width: 420px !important;
  padding: 0;
}

.signup-sec .layout form,
.login-sec .layout form {
  border: none;
  background: none;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.signup-sec .layout form p.header-msg,
.login-sec .layout form p.header-msg {
  background-color: #f0f5f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #5e5e70;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
}

.signup-sec .layout form p.error-msg,
.login-sec .layout form p.error-msg {
  margin-bottom: 0;
}

.signup-sec .layout form ul,
.login-sec .layout form ul {
  padding: 24px;
  padding-bottom: 0;
}

.signup-sec .layout form ul li,
.login-sec .layout form ul li {
  color: rgba(0, 0, 0, 0.5);
  margin: 4px 0 12px;
  padding: 0px;
  height: auto;
  width: 100%;
  position: relative;
}

.signup-sec .layout form ul li.text-captcha,
.login-sec .layout form ul li.text-captcha {
  text-align: center;
}

.signup-sec .layout form ul li.text-captcha img,
.login-sec .layout form ul li.text-captcha img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.signup-sec .layout form ul li input[type=text],
.signup-sec .layout form ul li input[type=password],
.signup-sec .layout form ul li input[type=email],
.login-sec .layout form ul li input[type=text],
.login-sec .layout form ul li input[type=password],
.login-sec .layout form ul li input[type=email] {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border-radius: 4px;
}

.signup-sec .layout form ul li input[type=text]:focus,
.signup-sec .layout form ul li input[type=password]:focus,
.signup-sec .layout form ul li input[type=email]:focus,
.login-sec .layout form ul li input[type=text]:focus,
.login-sec .layout form ul li input[type=password]:focus,
.login-sec .layout form ul li input[type=email]:focus {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.signup-sec .layout form ul li.align-left,
.login-sec .layout form ul li.align-left {
  margin-top: 20px;
  padding-top: 0;
  position: relative;
  text-align: left;
}

.signup-sec .layout form ul li.newsletter,
.login-sec .layout form ul li.newsletter {
  margin-top: 0;
}

.signup-sec .layout form ul li.policy,
.login-sec .layout form ul li.policy {
  margin-bottom: 20px;
  margin-top: -20px;
}

.signup-sec .layout form#singupForm ul li.newsletter,
.login-sec .layout form#singupForm ul li.newsletter {
  text-align: center;
  margin-bottom: 16px;
}

.signup-sec .layout form#singupForm ul li.newsletter input,
.login-sec .layout form#singupForm ul li.newsletter input {
  margin-right: 8px;
}

.signup-sec .layout form#loginForm ul li.policy,
.login-sec .layout form#loginForm ul li.policy {
  line-height: 30px;
  margin-top: 0;
  min-height: 30px;
  padding-top: 0;
}

.signup-sec .layout form .text-login,
.login-sec .layout form .text-login {
  text-align: center;
}

.signup-sec .layout form.facebook-form-log,
.login-sec .layout form.facebook-form-log {
  padding: 0 32px 16px;
  margin-top: 0;
}

.signup-sec .layout form.facebook-form-log .facebook-account-i,
.login-sec .layout form.facebook-form-log .facebook-account-i {
  font-size: 16px;
  font-weight: bold;
  background: #3b5997 url(/images/icon/facebook.svg) 3% center no-repeat;
  background-size: 20px;
  border-color: #1c3770;
  border-radius: 4px;
  color: white;
  width: 100%;
}

.signup-sec .layout form.facebook-form-log .social-account.facebook-value-l,
.login-sec .layout form.facebook-form-log .social-account.facebook-value-l {
  margin-top: 16px;
  padding: 0;
  text-align: center;
  height: 50px;
  line-height: 50px;
}

.signup-sec .layout form.facebook-form-log hr,
.login-sec .layout form.facebook-form-log hr {
  height: 30px;
  margin: 0 auto 8px;
  padding-top: 16px;
  position: relative;
}

.signup-sec .layout form.facebook-form-log hr::before,
.login-sec .layout form.facebook-form-log hr::before {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  content: '';
  display: block;
  height: 1px;
  left: 0;
  top: 0;
  width: 100%;
}

.signup-sec .layout form.facebook-form-log hr::after,
.login-sec .layout form.facebook-form-log hr::after {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  color: #97a1b1;
  content: 'OR';
  font-size: 12px;
  left: 50%;
  line-height: 28px;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 28px;
}

.login {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.login .submit {
  margin-top: 40px;
}

.login .submit + * {
  margin-top: 40px;
}

.login.locked {
  margin-bottom: 100px;
}

.login.locked + .footer-links {
  border-top: none;
}

.login.locked h2 {
  margin-bottom: 12px;
}

@media (max-width: 1281px) {
  .login {
    height: auto;
  }
}

@media (max-width: 1050px) {
  .login {
    background-size: 120%;
  }
}

.login.password-reset .submit-login {
  width: 40%;
  margin: 16px 0 16px 40px;
}

@media (max-width: 800px) {
  .login.password-reset .submit-login {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 800px) {
  .signup-sec__input input, .login-sec__input input {
    padding-left: 40px;
  }
  .signup-sec__input svg, .signup-sec__input img, .login-sec__input svg, .login-sec__input img {
    left: 10px;
  }
  .signup-sec__input i, .login-sec__input i {
    right: 16px;
  }
  .signup-sec__input input.SuccessField ~ .eye-slash,
  .signup-sec__input input.ErrorField ~ .eye-slash, .login-sec__input input.SuccessField ~ .eye-slash,
  .login-sec__input input.ErrorField ~ .eye-slash {
    right: 30px;
  }
  .signup-sec .layout form .error-msg {
    margin-top: 0;
  }
}

@media (max-width: 480px) and (min-width: 229px) {
  .layout .signup {
    display: none;
  }
  .signup-sec .layout {
    width: 95%;
    padding: 0;
  }
  .signup-sec .layout--simpleLogin {
    padding-bottom: 32px;
  }
  .signup-sec .layout form p.header-msg {
    padding: 15px;
  }
  .signup-sec .layout form ul li.newsletter {
    margin-bottom: -10px;
    z-index: 3;
  }
  .signup-sec .layout form ul li.policy {
    margin-bottom: 20px;
    margin-top: 1px;
    padding-top: 0;
    z-index: 0;
  }
  .signup-sec .layout form ul li:empty {
    display: none;
  }
}

@media (max-width: 390px) {
  .signup-sec .layout form ul li.policy {
    margin-bottom: 40px;
  }
}

@media (max-width: 350px) {
  .signup-sec .layout form ul li input[type=radio] {
    margin-left: 10px;
    margin-right: 5px;
  }
}

@media (max-width: 320px) {
  .signup-sec .layout form ul li select {
    margin: 0 2px;
  }
}

.white-box.delete-profile {
  margin: 0 auto;
  width: 75%;
}

.white-box.delete-profile p {
  text-align: left;
  width: 100%;
}

.white-box.delete-profile p.center {
  margin-top: 16px;
  text-align: center;
}

.white-box.delete-profile textarea {
  margin: 8px 0;
  height: 100px;
  resize: none;
  width: 100%;
}

.white-box.delete-profile ul {
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin: 16px auto;
}

.white-box.delete-profile ul li {
  font-weight: bold;
  height: auto;
  width: 40%;
}

.white-box.delete-profile ul li:nth-child(even) {
  border-left: 1px solid #ccd7dc;
  width: 60%;
  text-align: left;
}

.white-box.delete-profile ul li:nth-child(even) span {
  color: rgba(164, 0, 0, 0.85);
}

@media (max-width: 755px) and (min-width: 481px) {
  form.delete-profile .submit {
    width: 60%;
  }
}

@media (max-width: 800px) {
  .white-box.delete-profile ul li {
    width: 100% !important;
    border-left: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 16px;
    text-align: center !important;
    line-height: inherit;
  }
}

@media (max-width: 480px) {
  .white-box.delete-profile ul li:nth-child(odd) {
    padding: 8px 16px;
  }
  form.delete-profile,
  .white-box.delete-profile {
    width: 90% !important;
  }
}

@media (max-width: 360px) {
  form.delete-profile {
    padding: 40px;
  }
}

.application-directory h1 {
  color: #5e5e70;
  font-size: 30px;
  font-weight: normal;
  margin: 20px 0;
  text-align: center;
}

.application-directory .application-directory-left {
  float: left;
  width: 20%;
}

@media (max-width: 1080px) {
  .application-directory .application-directory-left {
    float: none;
    width: 100%;
    padding: 0 16px;
  }
}

.application-directory .application-directory-left ul {
  font-size: 18px;
  list-style: none;
}

.application-directory .application-directory-left ul li {
  font-weight: bold;
}

.application-directory .application-directory-left ul li:first-child {
  margin: 0 0 16px;
}

.application-directory .application-directory-left ul a {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.85);
}

.application-directory .application-directory-left ul a.active {
  font-weight: bold;
}

.application-directory .application-directory-right {
  float: right;
  width: 76%;
}

@media (max-width: 1080px) {
  .application-directory .application-directory-right {
    float: none;
    width: 100%;
    margin: 16px 0 0;
    padding: 0 16px;
  }
}

.application-directory .application-directory-right a {
  font-size: 16px;
  font-weight: bold;
}

.application-directory .application-directory-right ul {
  zoom: 1;
  list-style: none;
}

.application-directory .application-directory-right ul::before {
  content: '';
  display: block;
}

.application-directory .application-directory-right ul::after {
  clear: both;
  content: '';
  display: table;
}

.application-directory .application-directory-right ul a {
  font-size: 12px;
  font-weight: normal;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000;
  padding: 5px 20px;
}

.application-directory .application-directory-right ul .header-location {
  font-size: 12px;
  font-weight: normal;
}

.application-directory .application-directory-right ul li {
  clear: both;
  float: left;
  margin-left: 8px;
  padding: 20px 0 20px 40px;
  position: relative;
}

.application-directory .application-directory-right ul li::before, .application-directory .application-directory-right ul li::after {
  width: 40px;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.application-directory .application-directory-right ul li::before {
  height: calc(82% + .75em);
  border-left: 1px solid #dbdbdb;
}

.application-directory .application-directory-right ul li::after {
  height: 1px;
  margin: auto;
  bottom: 0;
  border-bottom: 1px solid #dbdbdb;
}

.application-directory .application-directory-right ul li:last-child::before {
  height: calc(2.5em - .35em);
}

.application-directory .application-directory-right ul li:last-child::after {
  top: 29px;
  bottom: auto;
}

.application-directory .application-directory-right ul li.children ul {
  margin-left: 20px;
  margin-top: 3px;
}

.application-directory .application-directory-right ul li.children ul li {
  background: none;
  border: none;
  clear: none;
  margin-left: 20px;
  padding: 20px 0;
}

.application-directory .application-directory-right ul li.children ul li::before, .application-directory .application-directory-right ul li.children ul li::after {
  content: none;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters {
  position: relative;
  width: 100%;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li {
  position: static;
  width: 98px;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li::before, .application-directory .application-directory-right ul li.children ul.application-directory-letters li::after {
  content: none;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li a {
  display: block;
  padding-right: 40px;
  position: relative;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li a .arrow {
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: -2px;
  right: 20px;
  bottom: 0;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  border-top: 2px solid rgba(0, 0, 0, 0.85);
  border-right: 2px solid rgba(0, 0, 0, 0.85);
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li.active a {
  font-weight: bold;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li.active ul {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  height: auto;
  left: 0;
  margin-bottom: 20px;
  margin-top: 18px;
  padding: 20px;
  position: absolute;
  width: 90%;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li.active ul li {
  margin-left: 0;
  padding: 0;
  width: auto;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li.active ul li a {
  background: none;
  border: none;
}

.application-directory .application-directory-right ul li.children ul.application-directory-letters li.active + li {
  clear: left;
}

.application-directory .application-directory-right ul li .cover {
  height: 100%;
  left: -1px;
  position: absolute;
  top: 31px;
  width: 41px;
}

.application-email-reset .layout .user-info {
  margin: 0 40px 0;
}

.application-email-reset .application-email-reset-error .error-msg {
  margin: 0 0 24px;
  padding: 8px 16px;
  line-height: 2;
  border-radius: 4px;
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-error .error-msg {
    text-align: left;
  }
}

.application-email-reset .application-email-reset-box {
  padding: 40px;
  display: block;
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-box {
    padding: 20px;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li {
  width: 85%;
  height: auto;
  margin: 0 auto 24px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  line-height: initial;
  text-align: left;
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li:not(:first-child) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li:last-child {
  margin: 0 auto;
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-verify-address {
  margin: 0 24px 0 0;
  color: rgba(164, 0, 0, 0.85);
}

@media (max-width: 480px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-verify-address {
    width: 100%;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-verify-link {
  margin-right: 0 !important;
  color: #4098ff !important;
  text-decoration: none !important;
}

@media (max-width: 480px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-verify-link {
    width: 100%;
    margin: 8px 0 0;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-form-label {
  width: 20%;
  margin: 0 24px 0 0;
}

@media (max-width: 1080px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-form-label {
    width: 25%;
  }
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-form-label {
    width: 100%;
    height: auto;
    margin: 0 0 8px;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-form-set-address {
  word-break: break-all;
  font-weight: bold;
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-form-set-address {
    height: auto;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input {
  font-size: 16px;
  font-weight: normal;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 0;
  min-height: 48px;
  width: 80%;
}

@media (max-width: 1080px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input {
    width: 75%;
  }
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input {
    width: 100%;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.25);
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input::-moz-placeholder {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.25);
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.25);
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input::-ms-input-placeholder {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.25);
}

.application-email-reset .application-email-reset-box .application-email-reset-box-list li .application-email-reset-input::placeholder {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.25);
}

.application-email-reset .application-email-reset-box .application-email-reset-notice-text,
.application-email-reset .application-email-reset-box .application-email-reset-complete-text {
  margin: 24px 0;
  text-align: center;
  line-height: 2;
}

@media (max-width: 800px) {
  .application-email-reset .application-email-reset-box .application-email-reset-notice-text,
  .application-email-reset .application-email-reset-box .application-email-reset-complete-text {
    text-align: left;
  }
}

.application-email-reset .application-email-reset-box .application-email-reset-complete-head {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.application-email-reset .application-email-reset-box .application-email-reset-invalid-text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.application-email-reset .application-email-reset-button {
  max-width: 340px;
  margin: 24px auto 0;
}

.application-email-reset .application-email-reset-button a,
.application-email-reset .application-email-reset-button input {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 12px 16px !important;
  font-size: 16px;
}

.application-email-reset .application-email-reset-button a:hover,
.application-email-reset .application-email-reset-button input:hover {
  text-decoration: none;
}

.application-email-reset .application-email-reset-button a:hover:after,
.application-email-reset .application-email-reset-button input:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.application-email-reset .application-email-reset-button a.disabled,
.application-email-reset .application-email-reset-button input.disabled {
  pointer-events: none;
}

.application-email-reset .application-email-reset-button a:hover:after,
.application-email-reset .application-email-reset-button input:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.application-email-reset .application-email-reset-button a.disabled,
.application-email-reset .application-email-reset-button input.disabled {
  opacity: .4;
}

.application-notfound .notfound {
  position: relative;
}

.application-notfound .notfound p {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.application-notfound .notfound p:first-child {
  font-size: 112px;
}

.application-notfound .notfound p:nth-child(2) {
  font-size: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.application-notfound .notfound.is-adult {
  padding: 8px 0 48px;
  background-color: white;
}

.application-notfound .notfound.is-adult p:nth-child(2) {
  bottom: 48px;
}

.application-notfound .notfound-home-button {
  max-width: 340px;
  margin: 48px auto;
  padding: 0 6px;
}

.application-notfound .notfound-home-button a {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 12px 16px !important;
  font-size: 16px;
}

.application-notfound .notfound-home-button a:hover {
  text-decoration: none;
}

.application-notfound .notfound-home-button a:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.application-notfound .notfound-home-button a.disabled {
  pointer-events: none;
}

.application-notfound .notfound-home-button a:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.application-notfound .notfound-home-button a.disabled {
  opacity: .4;
}

.application-notfound .notfound-message {
  margin: 96px 0 64px;
  padding: 0 20px;
}

.application-notfound .notfound-message > p {
  text-align: center;
}

.application-notfound .notfound-message > p:first-child {
  font-size: 24px;
  font-weight: bold;
}

.application-notfound .notfound-message > p:nth-child(2) {
  font-size: 16px;
  font-weight: normal;
}

.application-notfound .recommended-game-list {
  margin-top: 48px;
}

.application-notfound .notfound-transparent-box {
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
}

.application-sign-verification {
  padding: 60px 0;
}

.application-sign-verification .application-sign-verification-box {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.application-sign-verification .application-sign-verification-box h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 24px;
}

.application-sign-verification .application-sign-verification-box .application-sign-verification-failed-icon {
  width: 32px;
  margin: 0 0 8px;
}

.application-sign-verification .application-sign-verification-box .application-sign-verification-credits-icon {
  width: 70px;
}

.application-sign-verification .application-sign-verification-text {
  font-size: 14px;
  font-weight: bold;
}

.application-sign-verification .application-sign-verification-button {
  max-width: 340px;
  margin: 30px auto 0;
  padding: 0 16px;
}

.application-sign-verification .application-sign-verification-button a {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e60012;
  color: white;
  border: none !important;
  padding: 12px 16px !important;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.application-sign-verification .application-sign-verification-button a:hover {
  text-decoration: none;
}

.application-sign-verification .application-sign-verification-button a:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.application-sign-verification .application-sign-verification-button a.disabled {
  pointer-events: none;
}

.application-sign-verification .application-sign-verification-button a:hover:after {
  background: white;
  opacity: .1;
}

.application-sign-verification .application-sign-verification-button a.disabled {
  opacity: .2;
}

.game-news-wrapper {
  margin-top: 24px;
}

.game-news-wrapper .contents-header {
  background: #202020;
  padding: 24px 32px;
}

.game-news-wrapper .contents-header a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

.game-news-wrapper .contents-header a:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 8px;
}

.game-news-wrapper .contents-header .title {
  font-size: 24px;
  font-weight: bold;
  color: white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.game-news-wrapper .content-container {
  zoom: 1;
  background: white;
  margin-bottom: 24px;
}

.game-news-wrapper .content-container::before {
  content: '';
  display: block;
}

.game-news-wrapper .content-container::after {
  clear: both;
  content: '';
  display: table;
}

.game-news-wrapper .content-container ul {
  list-style: none;
}

.game-news-wrapper .content-container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.game-news-wrapper .content-container ul li .list-content {
  padding-right: 16px;
}

.game-news-wrapper .content-container ul li .list-content .title {
  font-size: 18px;
  font-weight: bold;
}

.game-news-wrapper .content-container ul li .list-content .date {
  font-size: 12px;
  font-weight: normal;
}

.game-news-wrapper .content-container ul li .list-content .description {
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 24px;
}

.game-news-wrapper .content-container ul li .button-read-more {
  min-width: 170px;
  width: auto;
  margin-left: auto;
}

.game-news-wrapper .content-container .info-content {
  padding: 24px 32px;
}

.game-news-wrapper .content-container .info-content .title {
  font-size: 18px;
  font-weight: bold;
}

.game-news-wrapper .content-container .info-content .date {
  font-size: 12px;
  font-weight: normal;
}

.game-news-wrapper .content-container .info-content .description {
  min-height: 270px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 24px;
}

.game-news-wrapper .content-container .info-content .description > a {
  color: #4098ff;
}

.game-news-wrapper .content-container .error-text {
  font-size: 24px;
  font-weight: bold;
  padding: 88px 0;
  text-align: center;
}

.game-news-wrapper .content-container .button-back-index {
  display: block;
  margin: 0 auto 24px;
  width: 300px;
}

.game-news-wrapper .paginator-wrapper {
  margin-bottom: 24px;
  text-align: center;
}

.game-news-wrapper .recommended-game-list-contents {
  margin-bottom: 24px;
  overflow: hidden;
}

.game-news-wrapper .recommended-game-list-contents .contents-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.game-blocked .game-blocked-message {
  text-align: center;
}

.game-blocked .game-blocked-message .title {
  font-size: 24px;
  font-weight: bold;
  margin: 88px 0;
}

.game-blocked .game-blocked-message .sub {
  font-size: 16px;
  font-weight: normal;
}

.game-blocked .recommended-game-list {
  margin-top: 24px;
  padding: 0 20px;
}

.game-blocked .link-button {
  display: block;
  margin: 24px auto 0;
  width: 300px;
}

.game-discontinue .discontinued-message {
  text-align: center;
  margin: 88px 0;
}

.game-discontinue .discontinued-message .title {
  font-size: 24px;
  font-weight: bold;
}

.game-discontinue .recommended-game-list-contents .contents-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.game-discontinue .recommended-game-list-contents .recommended-game-list {
  margin-top: 24px;
  padding: 0 24px;
}

.game-discontinue .link-button {
  display: block;
  margin: 24px auto 0;
  width: 300px;
}

.privacy_ttl {
  background-color: #e60012;
  color: white;
  padding: 24px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.privacy_content {
  width: 100%;
  margin: 0 auto;
  padding: 24px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.85);
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.privacy_content a {
  color: #4098ff;
  text-decoration: none;
}

.privacy_content a:hover {
  text-decoration: underline;
}

.privacy_details {
  width: 60%;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.privacy_details p {
  margin-bottom: 24px;
}

.privacy_details p.sub-title {
  font-size: 14px;
  font-weight: bold;
}

.privacy_details .privacy_details_ttl {
  font-size: 18px;
  font-weight: bold;
  color: #e60012;
  padding-bottom: 12px;
}

.privacy_details .email-image img {
  vertical-align: bottom;
  height: 24px;
}

.privacy_details .doted-list {
  padding-left: 16px;
  margin-bottom: 12px;
}

.privacy_details .doted-list li {
  margin-bottom: 8px;
}

.privacy_details table {
  width: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
}

.privacy_details table th,
.privacy_details table td {
  padding: 8px;
  vertical-align: top;
}

.privacy_details table th {
  background: rgba(0, 0, 0, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.privacy_details table th:first-child {
  border-left: none;
}

.privacy_details table td {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.privacy_details table td:last-child {
  border-right: none;
}

.privacy_links {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.privacy_links .privacy_links_menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
  list-style-type: none;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.privacy_links .privacy_links_menu li {
  padding-left: 16px;
}

.privacy_links .privacy_links_menu li a {
  color: rgba(0, 0, 0, 0.85);
}

.privacy_links .privacy_links_menu li.active_page {
  font-size: 16px;
  font-weight: bold;
  padding-left: 0;
  padding-bottom: 8px;
}

.privacy_links .privacy_links_menu li.active_page a {
  color: #e60012;
}

@media (min-width: 1080px) {
  .privacy_content {
    max-width: 1080px;
  }
}

@media (max-width: 480px) {
  .privacy_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    padding-bottom: 24px;
  }
  .privacy_details {
    width: 100%;
    padding-top: 16px;
    padding-right: 0;
  }
  .privacy_details_table-scroll {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 24px;
  }
  .privacy_details_table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .privacy_details_table-scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .privacy_details_table-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .privacy_links {
    width: 100%;
  }
  .privacy_links .terms_links_menu {
    padding: 16px;
    position: initial;
  }
}

.terms_ttl {
  background-color: #e60012;
  color: white;
  padding: 24px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.terms_content {
  width: 100%;
  margin: 0 auto;
  padding: 24px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.85);
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.terms_content a {
  color: #4098ff;
  text-decoration: none;
}

.terms_content a:hover {
  text-decoration: underline;
}

.terms_details {
  width: 60%;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.terms_details p {
  margin-bottom: 24px;
}

.terms_details p.sub-title {
  font-size: 14px;
  font-weight: bold;
}

.terms_details .terms_details_ttl {
  font-size: 18px;
  font-weight: bold;
  color: #e60012;
  padding-bottom: 12px;
}

.terms_details .doted-list {
  padding-left: 16px;
  margin-bottom: 12px;
}

.terms_details .doted-list li {
  margin-bottom: 8px;
}

.terms_details .decimal-list {
  list-style-type: decimal;
  padding-left: 16px;
  margin-bottom: 12px;
}

.terms_details .decimal-list li {
  margin-bottom: 8px;
}

.terms_details .email-image img {
  vertical-align: bottom;
  height: 24px;
}

.terms_links {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.terms_links .terms_links_menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
  list-style-type: none;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.terms_links .terms_links_menu li {
  padding-left: 16px;
}

.terms_links .terms_links_menu li a {
  color: rgba(0, 0, 0, 0.85);
}

.terms_links .terms_links_menu li.active_page {
  font-size: 16px;
  font-weight: bold;
  padding-left: 0;
  padding-bottom: 8px;
}

.terms_links .terms_links_menu li.active_page a {
  color: #e60012;
}

@media (min-width: 1080px) {
  .terms_content {
    max-width: 1080px;
  }
}

@media (max-width: 480px) {
  .terms_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    padding-bottom: 24px;
  }
  .terms_details {
    width: 100%;
    padding-top: 16px;
    padding-right: 0;
  }
  .terms_links {
    width: 100%;
  }
  .terms_links .terms_links_menu {
    padding: 16px;
    position: initial;
  }
}

.press {
  padding-bottom: 64px;
}

.press .press-header {
  text-align: center;
  background-color: #e60012;
  margin-bottom: 48px;
}

.press .press-header__title {
  color: white;
  padding: 48px 0;
  font-size: 24px;
  font-weight: bold;
}

.press .layout {
  padding: 0 16px;
}

.press .press-contents {
  margin-bottom: 64px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}

.press .press-contents__article {
  background-color: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 64px 32px 48px;
}

.press .press-contents__article time {
  font-size: 14px;
  font-weight: bold;
  display: block;
  color: #e60012;
  margin-bottom: 8px;
}

.press .press-contents__article h2 {
  font-size: 24px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 24px;
}

.press .press-contents__article p {
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.press .press-contents__article:hover {
  position: relative;
  top: 2px;
}

.press .press-contents__article:hover a {
  display: block;
  opacity: .6;
  text-decoration: none;
}

.press .press-contents__link {
  font-size: 12px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
  position: relative;
  display: block;
  padding-right: 16px;
}

.press .press-contents__link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.press .press-contents-detail {
  max-width: 640px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.press .press-contents-detail__backLink {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.press .press-contents-detail__backLink span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: normal;
  padding-left: 16px;
}

.press .press-contents-detail__backLink:before, .press .press-contents-detail__backLink:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.press .press-contents-detail__backLink:before {
  width: 6px;
  height: 6px;
  border-top: solid 2px rgba(0, 0, 0, 0.5);
  border-right: solid 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.press .press-contents-detail__backLink:after {
  width: 10px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  left: 1px;
}

.press .press-contents-detail__article {
  margin-bottom: 48px;
}

.press .press-contents-detail__article time {
  font-size: 14px;
  font-weight: bold;
  display: block;
  color: #e60012;
  margin-bottom: 8px;
}

.press .press-contents-detail__article > h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 48px;
}

.press .press-contents-detail__inner {
  font-size: 16px;
}

.press .press-contents-detail__inner h1 {
  margin: 32px 0;
  font-size: 18px;
}

.press .press-contents-detail__inner hr {
  border: 1px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.15);
}

.press .press-contents-detail__inner em {
  font-style: normal;
}

.press .press-contents-detail__inner ul, .press .press-contents-detail__inner ol {
  padding-left: 2em;
}

.press .press-contents-detail__inner table {
  border-collapse: collapse;
}

.press .press-contents-detail__inner td, .press .press-contents-detail__inner th {
  border: 1px solid #D9D9D9;
  padding: .5em 1em;
}

.press .press-contents-detail__inner th {
  background-color: rgba(0, 0, 0, 0.07);
}

.press .press-contents-detail__inner a {
  color: #4098ff;
  word-break: break-all;
}

.press .press-contents-detail__inner img {
  max-width: 100%;
}

.press__mainErrorText {
  text-align: center;
  margin: 104px 0 48px;
}

.press__mainErrorText p:first-child {
  font-size: 24px;
  font-weight: bold;
}

.press__mainErrorText p:nth-child(2) {
  font-size: 16px;
  font-weight: normal;
  margin-top: 16px;
}

.press__listErrorText {
  text-align: center;
  margin-bottom: 48px;
}

.press__listErrorText.hide {
  display: none;
}

.press__listErrorText p:first-child {
  font-size: 16px;
  font-weight: bold;
}

.press__listErrorText p:nth-child(2) {
  margin-top: 16px;
}

.press__linkBtn {
  width: 280px;
  display: block;
  margin: 0 auto;
}

.press__linkBtn.hide {
  display: none;
}

@media (max-width: 800px) {
  .press .press-header {
    margin-bottom: 16px;
  }
  .press .press-header--detail {
    margin-bottom: 24px;
  }
  .press .press-contents {
    margin-bottom: 48px;
    grid-template-columns: repeat(1, 1fr);
  }
  .press .press-contents__article {
    padding: 16px;
  }
  .press .press-contents__article time {
    font-size: 12px;
    font-weight: bold;
  }
  .press .press-contents__article h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .press .press-contents__article p {
    margin-bottom: 16px;
  }
}

.application-notifications {
  padding: 16px 0;
}

.application-notifications .application-notifications-head {
  font-size: 16px;
  font-weight: normal;
}

.application-notifications .application-notifications-text {
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 16px;
  text-align: center;
}

.application-notifications .application-notifications-content {
  max-width: 664px;
  margin: 24px auto;
}

.application-notifications .application-notifications-content .application-notifications-list {
  margin: 0 -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item {
  width: 150px;
  height: auto;
  margin: 0 8px 16px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  float: none;
  line-height: initial;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-thumbnail-wrapper {
  width: 100%;
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-thumbnail-wrapper {
    min-height: 130px;
  }
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-thumbnail-wrapper .application-notifications-thumbnail .svg {
  width: 100%;
  height: auto;
  margin: 0;
  float: none;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-thumbnail-wrapper .application-notifications-thumbnail img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info {
  width: 100%;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-info-title {
  width: 100%;
  padding: 8px;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-info-title p {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  height: 2.5rem;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-select label {
  width: 50%;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-select label:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-select label input {
  margin: 0;
  top: 0;
}

.application-notifications .application-notifications-content .application-notifications-list .application-notifications-item .application-notifications-info .application-notifications-select label span {
  margin: 0 0 0 8px;
  font-size: 14px;
  font-weight: bold;
}

.application-notifications .application-notifications-submit {
  max-width: 340px;
  margin: auto;
}

.application-notifications .application-notifications-submit input,
.application-notifications .application-notifications-submit a {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
  padding: 12px 16px !important;
  font-size: 16px;
}

.application-notifications .application-notifications-submit input:hover,
.application-notifications .application-notifications-submit a:hover {
  text-decoration: none;
}

.application-notifications .application-notifications-submit input:hover:after,
.application-notifications .application-notifications-submit a:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.application-notifications .application-notifications-submit input.disabled,
.application-notifications .application-notifications-submit a.disabled {
  pointer-events: none;
}

.application-notifications .application-notifications-submit input:hover:after,
.application-notifications .application-notifications-submit a:hover:after {
  background: rgba(0, 0, 0, 0.85);
  opacity: .04;
}

.application-notifications .application-notifications-submit input.disabled,
.application-notifications .application-notifications-submit a.disabled {
  opacity: .4;
}

@media (max-width: 480px) {
  .application-notifications .application-notifications-content {
    max-width: 276px;
  }
  .application-notifications .application-notifications-content .application-notifications-list .application-notifications-item {
    width: 130px !important;
  }
}

.cookie-usage .cookie-usageContentsScroll {
  padding: 0 16px;
}

@media (max-width: 374px) {
  .cookie-usage .cookie-usageContentsScroll {
    max-height: 280px;
    overflow-y: auto;
  }
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageDescription {
  text-align: left;
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageDescription a {
  color: #4098ff;
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents {
  margin: 16px 0 0;
  padding: 0;
  border: none;
  text-align: left;
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents .cookie-usageContentsItem {
  margin: 16px 0 0;
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents .cookie-usageContentsItem label {
  font-size: 16px;
  font-weight: bold;
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents .cookie-usageContentsItem label input[type='checkbox'] {
  margin: 0 8px 0 0;
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents .cookie-usageContentsItem.is-required label {
  color: rgba(0, 0, 0, 0.5);
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents .cookie-usageContentsItem.is-required label input {
  pointer-events: none;
}

.cookie-usage .cookie-usageContentsScroll .cookie-usageContents .cookie-usageContentsItem p {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
}

.cookie-usage .cookie-usageErrorText {
  margin: 16px 0;
  display: none;
  text-align: center;
  color: rgba(164, 0, 0, 0.85);
}

.cookie-usage .cookie-usageSaveButton {
  max-width: 280px;
  margin: 16px auto 0;
}

@media (max-width: 480px) {
  .cookie-usage .cookie-usageSaveButton {
    padding: 0 16px;
  }
}

.events .layout {
  padding: 0 10px;
}

.events .layout .titles {
  margin: 15px 0;
}

.events .layout .events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  list-style-type: none;
}

.events .layout .events-list li {
  margin-bottom: 20px;
  margin-right: 5%;
  text-align: center;
  width: 30%;
}

.events .layout .events-list li a {
  display: block;
}

.events .layout .events-list li a img {
  width: 100%;
}

.events .layout .events-list li a:hover img {
  opacity: .7;
}

.events .layout .events-list li p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.events .layout .events-list li .counter {
  color: #e60012;
}

.events .layout .events-list li:nth-child(3n) {
  margin-right: 0;
}

.events .layout .notification_text {
  margin: 10px 0;
  text-align: center;
}

.events .layout .notification_text p a {
  color: #4098ff;
}

.events .layout .notification_text p:first-child {
  font-size: 18px;
  font-weight: bold;
}

.events .layout .notification_text + a {
  display: block;
  max-width: 300px;
  margin: 48px auto 0;
}

.events .title-empty {
  color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 900px) {
  .events .layout .events-list {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .events .layout .events-list li {
    margin-right: 0;
    width: 47%;
  }
}

@media (min-width: 480px) {
  .events .layout .title-empty {
    margin: 192px 0;
  }
}

@media (max-width: 480px) {
  .events .layout .events-list {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .events .layout .events-list li {
    width: 96%;
  }
  .events .layout .title-empty {
    margin: 48px 0;
  }
}
/*# sourceMappingURL=pcMaps/platform-mainstream.css.map */
