@charset "UTF-8";

html h1 {
  font-family: "NotoSans", sans-serif;
}

html div, html span, html h2, html h3, html h4, html h5, html p, html ul, html li, html a {
  font-family: "NotoSans", sans-serif;
}

html div.light, html span.light, html h2.light, html h3.light, html h4.light, html h5.light, html p.light, html ul.light, html li.light, html a {
  font-weight: 100;
}

html[lang='ja'] h1 {
  font-family: "NotoSansCJKjp", "NotoSans", sans-serif;
}

html[lang='ja'] div, html[lang='ja'] span, html[lang='ja'] h2, html[lang='ja'] h3, html[lang='ja'] h4, html[lang='ja'] h5, html[lang='ja'] p, html[lang='ja'] ul, html[lang='ja'] li,html[lang='ja'] a  {
  font-family: "NotoSansCJKjp", "NotoSans", sans-serif;
}

html[lang='zh-CN'] div, html[lang='zh-CN'] span, html[lang='zh-CN'] h1, html[lang='zh-CN'] h2, html[lang='zh-CN'] h3, html[lang='zh-CN'] h4, html[lang='zh-CN'] h5, html[lang='zh-CN'] p, html[lang='zh-CN'] ul, html[lang='zh-CN'] li, html[lang='zh-CN'] a {
  font-family: "NotoSansCJKsc", STXihei, SimHei, "NotoSans", sans-serif;
}

/*
 *
 * common components goes here
 *
 */

/* colors */
.kov-black {
  color: #404040;
}

.kov-dark-gray {
  color: #717171;
}

.kov-note-gray {
  color: #9f9f9f;
}

.kov-red {
  color: #f28063;
}

.kov-orange {
  color: #faaa5a;
}

.kov-yellow {
  color: #ffd663;
}

.kov-green {
  color: #56bf68;
}

.kov-blue {
  color: #55c5d9;
}

.kov-purple {
  color: #6f92d9;
}

.kov-red12 {
  color: #f28063;
}

.kov-yellow40 {
  color: #ffeec5;
}

.kov-green20 {
  color: #def2e2;
}

.kov-navy {
  color: #32539C;
}

.kov-deep-navy {
  color: #314663;
}

.kov-white {
  color: #ffffff;
}

.bg-kov-snow {
  background-color: #f9f9f9;
}

.bg-kov-sand {
  background-color: #f1f1f1;
}

.bg-kov-cloudy {
  background-color: #eef4f5;
}

.bg-kov-sunny {
  background-color: #edf6f8;
}

.bg-kov-white {
  background-color: #ffffff;
}

.bg-kov-red {
  background-color: #f28063;
}

.bg-kov-orange {
  background-color: #faaa5a;
}

.bg-kov-yellow {
  background-color: #ffd633;
}

.bg-kov-green {
  background-color: #56bf68;
}

.bg-kov-blue {
  background-color: #55c5d9;
}

.bg-kov-purple {
  background-color: #6f92d9;
}

/* responsive width */
.inner {
  margin: auto;
  width: 940px;
}
@media screen and (max-width: 1200px) {
  .inner {
    width: 730px;
  }
}
@media screen and (max-width: 991px) {
  .inner {
    width: 725px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .inner {
    width: 100%;
    padding: 0 15px;
  }
}

p:not(.bold) {
  font-weight: 100;
}

/* font-sizes */
.huge-font {
  font-size: 30px;
}

.large-font {
  font-size: 26px;
}

.medium-font {
  font-size: 19px;
}

.small-font {
  font-size: 17px;
  line-height: 2.1em;
  letter-spacing: 1px;
}

.link-font {
  font-size: 15px;
}

.p-font {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 1px;
}

.tiny-font {
  font-size: 12px;
}

/* kov-btns */
.kov-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  margin-right: 1rem;
  margin-left: 1rem;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0px 0px 0.8px rgba(0, 0, 0, 0.12);
}

.kov-btn > .kov-btn-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.kov-btn.disabled {
  cursor: not-allowed !important;
  border: none !important;
  box-shadow: none !important;
}

.kov-btn.disabled.shadow {
  box-shadow: none !important;
}

.kov-btn.disabled.shadow:hover {
  box-shadow: none !important;
}

.kov-btn.disabled {
  background-color: #e0e0e0 !important;
  color: #ffffff !important;
}

.kov-btn.disabled:hover {
  background-color: #e0e0e0;
}

.kov-btn.yellow {
  background-color: #ffd663;
  color: #314663;
}

.kov-btn.yellow:hover {
  background-color: #ffdc8d;
}

.kov-btn.green {
  background-color: #70b77a;
  color: #ffffff;
}

.kov-btn.green:hover {
  background-color: #80c481;
}

.kov-btn.deep-navy {
  background-color: #314663;
  color: #ffffff;
}

.kov-btn.deep-navy:hover {
  background-color: #37597c;
}

.kov-btn.navy {
  background-color: #32539C;
  color: #ffffff;
}

.kov-btn.navy:hover {
  background-color: #5285af;
}

.kov-btn.white {
  color: #32539C;
  background-color: #ffffff;
  border: 1px solid #32539C;
}

.kov-btn.white:hover {
  color: #5285af;
  border: 1px solid #5285af;
}

.kov-btn.light-gray {
  color: #314663;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
}

.kov-btn.light-gray:hover {
  color: #5285af;
  border: 1px solid #5285af;
}

.kov-btn.massive {
  height: 56px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 16px;
}

.kov-btn.huge {
  height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
}

.kov-btn.big {
  height: 36px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 13px;
}

.kov-btn.large {
  height: 32px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 12px;
}

.kov-btn.tiny {
  height: 30px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 12px;
}

.kov-btn.small {
  height: 24px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 12px;
}

.kov-btn:hover {
  box-shadow: none;
}

.modal-btn:hover {
  pointer: cursor;
}

.kov-link {
  color: #32539C;
}

.kov-link:hover {
  cursor: pointer;
  color: #5285af;
  border-bottom: 1px solid #5285af;
}

/*
 *
 * end of common components
 *
 */

body {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

.ui.header {
  font-family: inherit;
}

.big-font {
  /*line-height: 1em;
  font-size: 2.7rem;*/
}

@media screen and (max-width: 767px) {
  .big-font {
    /*font-size: 2rem;*/
  }
}

.big-font.ui.header {
  /*line-height: 1.2em;*/
  /*font-size: 2.7rem;*/
}

@media screen and (max-width: 767px) {
  .big-font.ui.header {
    /*font-size: 2rem;*/
  }
}

@media screen and (max-width: 767px) {
  .fluid-width > .container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.flr {
  float: right;
}

.display-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-xs {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  .visible-xsa {
    display: inline-block !important;
  }
}

.clearfix {
  display: block;
}

.clearfix:after, .clearfix:before {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

.shape-circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

.play-icon {
  cursor: pointer;
}

.play-icon i {
  margin-left: 5px;
}

img {
  max-width: 100%;
}

.middle-vertical {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.height-1 {
  height: 1rem;
}

.height-2 {
  height: 2rem;
}

.height-3 {
  height: 3rem;
}

.height-4 {
  height: 4rem;
}

.height-5 {
  height: 5rem;
}

.height-6 {
  height: 6rem;
}

.height-7 {
  height: 7rem;
}

.height-8 {
  height: 8rem;
}

.height-9 {
  height: 9rem;
}

.height-10 {
  height: 10rem;
}

@media screen and (max-width: 991px) {
  .section-title.ui.header {
    /*font-size: 2rem;*/
  }
}

/*.ui.basic.blue.buttons .button, .ui.basic.blue.button {
  color: #4f7eac !important;
  box-shadow: 0px 0px 0px 1px #4f7eac inset !important;
}*/

.ui.btn-fluid-width.button {
  width: 100%;
  display: block;
  font-weight: normal;
  /*box-shadow: 2px 2px #EAEAEA;*/
}

@media screen and (min-width: 431px) {
  .ui.btn-fluid-width.button {
    /*font-size: 1.5rem;*
    /*padding: 2rem;*/
  }
}

.ui.btn-fluid-width.button.blue {
  /*background: #aebfdb;*/
}

.ui.btn-fluid-width.button.teal {
  /*background: #8ad3e0;*/
}

.ui.btn-fluid-width.button > .icon:not(.button) {
  /*height: 1em;*/
  display: inline-block;
  vertical-align: middle;
}

.bdn {
  border: none !important;
}

.main-header {
  height: 85px;
}

@media screen and (max-width: 1200px) {
  .main-header {
    height: 80px;
  }
}

.main-header .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .logo img {
  max-width: 115px;
}

@media screen and (max-width: 767px) {
  .main-header .logo img {
    max-width: 90px;
  }
}

.main-header .page-title {
  margin: 0 5px;
  color: #717171;
  /*margin: 0 0 0 .3em;*/
}

@media screen and (max-width: 767px) {
  .main-header .page-title {
    /*font-size: 1.2rem;*/
  }
}

.get-language-data {
  /*background: #EAEAEA;*/
}

.main-header .user-name {
  display: block;
  text-align: center;
  /*color: #32539C;*/
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 140px;
  /*font-size: 0.85rem;*/
  /*margin: 0 0 .3rem;*/
}

.outer {
  width: 1127px;
  margin: auto;
}

@media screen and (max-width: 1200px) {
  .outer {
    width: 931px;
  }
}
@media screen and (max-width: 991px) {
  .outer {
    width: 725px;
  }
}
@media screen and (max-width: 767px) {
  .outer {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .outer {
    width: 100%;
    padding: 0 15px;
  }
}


.ui.secondary.menu {
  /* clear fix */
  margin: 0;
}

.main-header .ui.secondary.menu .computer.only .ui.dropdown.item {
  padding: 0;
}

.main-header .ui.secondary.menu .computer.only .header.item {
  padding-left: 0;
}

.main-header .ui.secondary.menu .computer.only .right.menu .get-language-data .ui.grey.basic.button, .main-header .ui.secondary.menu .computer.only .right.menu .member-info-nav .ui.grey.basic.button {
  /*color: #7F7F7F !important;*/
  /*padding-right: 1rem;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .choose-language, .main-header .ui.secondary.menu .computer.only .right.menu .choose-info {
  /*margin: .1em 0 0;*/
  border: 0;
  /*box-shadow: 0px 1px 1px #d6d6d6;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .choose-language .item, .main-header .ui.secondary.menu .computer.only .right.menu .choose-info .item {
  /*font-size: 0.8125rem !important;*/
  /*padding: 1em 1.5em !important;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .choose-language .item ~ .item, .main-header .ui.secondary.menu .computer.only .right.menu .choose-info .item ~ .item {
  /*border-top: 1px solid #ececec;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .choose-language .item a, .main-header .ui.secondary.menu .computer.only .right.menu .choose-info .item a {
  color: inherit;
}

.main-header .ui.secondary.menu .computer.only .right.menu .product-info-nav {
  margin: 0;
  /*padding-left: .3rem;*/
  border: 0;
  background: none;
}

.main-header .ui.secondary.menu .computer.only .right.menu .product-info-nav > .button {
  /*background: #ffd663;*/
  margin: 0;
  /*padding: 1em 1.5em;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .product-info-nav .item {
  /*font-size: 0.8125rem !important;
  padding: 1em 1.5em !important;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .product-info-nav .item ~ .item {
  /*border-top: 1px solid #ececec;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .product-info-nav .item a {
  color: inherit;
}

.main-header .ui.secondary.menu .computer.only .right.menu .item {
  margin: 0;
  background: none;
  /*padding: 0 .2rem;*/
}

.main-header .ui.secondary.menu .computer.only .right.menu .item:hover {
  background: none;
}

.main-header .ui.secondary.menu .computer.only .right.menu .item .button-login {
  /*padding: 0.7em 1.5em;*/
  /*font-size: 0.75rem;*/
  border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.main-header .ui.secondary.menu .computer.only .right.menu .item .button-register {
  /*font-size: 0.75rem;*/
  /*padding: 0.7em 1.5em;*/
  /*background: #32539C !important;*/
  /*color: #ffffff !important;*/
  /*box-shadow: 0px 0px 0px 1px #32539C inset !important;*/
  border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.main-header .ui.secondary.menu .computer.only .right.menu .icon-dropdown {
  /*font-size: 2.5em;*/
  line-height: 0;
  position: relative;
  top: 9px;
}

.main-header .ui.secondary.menu .computer.only .left.menu .item.koov-nav {
  background: none;
  /*color: #7F7F7F;*/
  /*font-size: 1.143rem;*/
  /*padding: .5em .4em;*/
}

.main-header .ui.secondary.menu .computer.only .left.menu .item.koov-nav [class^="icon-"] {
  /*font-size: 2.3em;*/
}

.main-header .ui.secondary.menu .computer.only .ui.dropdown.active .get-language-data > .ui.button, .main-header .ui.secondary.menu .computer.only .ui.dropdown.active .member-info-nav > .ui.button {
  /*background: #4f7eac;*/
  /*color: #ffffff;*/
}

.main-header .ui.secondary.menu .computer.only .get-language-data > .user-name + .ui.button, .main-header .ui.secondary.menu .computer.only .member-info-nav > .user-name + .ui.button {
  /*padding: .6em .5em .7em 1em;
  font-size: .8rem;*/
}

.main-header .ui.secondary.menu .computer.only .get-language-data > .user-name + .ui.button .icon-dropdown, .main-header .ui.secondary.menu .computer.only .member-info-nav > .user-name + .ui.button .icon-dropdown {
  top: 8px;
}

.main-header .ui.secondary.menu .computer.only .get-language-data > .ui.button, .main-header .ui.secondary.menu .computer.only .member-info-nav > .ui.button {
  /*background: #e7e7e7;*/
  /*color: #32539C;*/
  /*font-size: .9rem;*/
  /*padding: .5em .5em .6em 1em;*/
  margin: 0;
  transition: all 0.3s ease 0s, visibility 0s ease 0s;
  -ms-transition: all 0.3s ease 0s, visibility 0s ease 0s;
  -webkit-transition: all 0.3s ease 0s, visibility 0s ease 0s;
  -moz-transition: all 0.3s ease 0s, visibility 0s ease 0s;
  border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.main-header .ui.secondary.menu .computer.only .get-language-data > .ui.button > .icon:not(.button), .main-header .ui.secondary.menu .computer.only .member-info-nav > .ui.button > .icon:not(.button) {
  /*margin: 0 0 0 0.3em;*/
}

@media screen and (max-width: 767px) {
  .main-header .ui.secondary.menu .tablet.mobile.only > .header.item {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
}

.main-header .ui.secondary.menu .tablet.mobile.only .ui.dropdown.item {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .main-header .ui.secondary.menu .tablet.mobile.only .ui.dropdown.item {
    margin: 0;
  }
}

.main-header .ui.secondary.menu .tablet.mobile.only .get-language-data > .button, .main-header .ui.secondary.menu .tablet.mobile.only .member-info-nav > .button {
  /*padding: 0.2em 0.5em 0.2em 1em !important;*/
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  /*color: #32539C;*/
  /*background: #eaeaea;*/
  font-weight: normal;
  /*font-size: 0.9rem;*/
}

.main-header .ui.secondary.menu .tablet.mobile.only .get-language-data > .button span[class^="icon-"], .main-header .ui.secondary.menu .tablet.mobile.only .member-info-nav > .button span[class^="icon-"] {
  /*font-size: 2em;*/
}

.main-header .ui.secondary.menu .tablet.mobile.only .choose-language, .main-header .ui.secondary.menu .tablet.mobile.only .choose-info {
  border: 0;
  /*box-shadow: 0px 1px 1px #d6d6d6;*/
}

.main-header .ui.secondary.menu .tablet.mobile.only .choose-language .item, .main-header .ui.secondary.menu .tablet.mobile.only .choose-info .item {
  /*color: #32539C !important;*/
  /*font-size: 0.8125rem !important;*/
  /*padding: 1em 1.5em !important;*/
}

@media screen and (max-width: 767px) {
  .main-header .ui.secondary.menu .tablet.mobile.only .menu.item.open-sidebar {
    margin: 0;
    padding-right: 0;
  }
}

.main-header .ui.secondary.menu .tablet.mobile.only .menu.item.open-sidebar:hover, .main-header .ui.secondary.menu .tablet.mobile.only .menu.item.open-sidebar:active {
  background: none;
  outline: 0;
}

.main-header .ui.secondary.menu .tablet.mobile.only .menu.item.open-sidebar .icon-hamburger {
  /*font-size: 1.8em;*/
  /*color: #7f7f7f;*/
}

.ui.left.sidebar,
.ui.right.sidebar {
  /*padding: 1rem 1.5rem;*/
}

.ui.left.sidebar .item,
.ui.right.sidebar .item {
  /*color: #7F7F7F;*/
  /*font-size: 0.75rem;*/
  padding-left: 0;
  padding-right: 0;
}

.ui.left.sidebar .item:before,
.ui.right.sidebar .item:before {
  background: transparent;
}

.ui.left.sidebar .item.active,
.ui.right.sidebar .item.active {
  background: none;
}

.ui.left.sidebar .button,
.ui.right.sidebar .button {
  /*margin: 1rem 0 0;*/
  width: 100%;
}

.ui.left.sidebar .button-login,
.ui.right.sidebar .button-login {
  /*font-size: 0.75rem;
  padding: 1.1em 1.5em;*/
  border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.ui.left.sidebar .button-register,
.ui.right.sidebar .button-register {
  /*font-size: 0.75rem;
  padding: 1.1em 1.5em;*/
  /*background: #32539C !important;*/
  /*color: #ffffff !important;*/
  /*box-shadow: 0px 0px 0px 1px #32539C inset !important;*/
  border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.support-page.support-detail-page .main-header .header.item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.support-page.support-detail-page .main-header .logo {
  max-width: none;
}

.support-page.support-detail-page .main-header .logo > a {
  display: inline-block;
  vertical-align: middle;
}

.support-page.support-detail-page .main-header .logo .page-title {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .support-page .main-header .header.item {
    display: none;
  }
}

#main-footer .footer-row, #main-footer .footer-nav-box-row {
  /*margin-left: -.5rem;*/
  /*margin-right: -.5rem;*/
  display: block;
  position: relative;
}

#main-footer .footer-row:after, #main-footer .footer-nav-box-row:after, #main-footer .footer-row:before, #main-footer .footer-nav-box-row:before {
  display: table;
  content: "";
}

#main-footer .footer-row:after, #main-footer .footer-nav-box-row:after {
  clear: both;
}

#main-footer .footer-row .footer-nav-box, #main-footer .footer-row .footer-logo-box, #main-footer .footer-nav-box-row .footer-nav-box-left, #main-footer .footer-nav-box-row .footer-nav-box-right {
  /*padding-left: .5rem;*/
  /*padding-right: .5rem;*/
}

#main-footer .nav-top, #main-footer .social-box {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

#main-footer .nav-top li, #main-footer .social-box li {
  display: inline-block;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .support-page #main-footer .helper-box .button {
    width: 100%;
    /*padding: 1rem .3rem;*/
    /*font-size: 0.7rem;*/
  }
}

.support-page #main-footer .copyright {
  /*margin: 0 0 1rem;*/
}

#main-footer {
  border-top: 1px solid #e7e7e7;
}

#main-footer .footer-row {
  padding: 40px 0 30px;
}

#main-footer .ui.dropdown {
  /*margin: 0 0 1rem;*/
}

#main-footer .ui.dropdown .get-language-data .ui.grey.basic.button {
  /*padding-right: 1rem;*/
}

#main-footer .ui.dropdown .get-language-data > .ui.button {
  /*background: #e7e7e7;*/
  /*color: #32539C;*/
  /*font-size: .9rem;*/
  /*padding: .8em .5em .8em 1em;*/
  margin: 0;
  transition: all 0.3s ease 0s, visibility 0s ease 0s;
  -ms-transition: all 0.3s ease 0s, visibility 0s ease 0s;
  -webkit-transition: all 0.3s ease 0s, visibility 0s ease 0s;
  -moz-transition: all 0.3s ease 0s, visibility 0s ease 0s;
  border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

#main-footer .ui.dropdown .get-language-data > .ui.button > .icon:not(.button) {
  /*margin: 0 0 0 0.3em;*/
}

#main-footer .ui.dropdown .icon-dropdown {
  /*font-size: 2em;*/
  line-height: 0;
  position: relative;
  top: 7px;
}

#main-footer .ui.dropdown .choose-language {
  /*margin: .1em 0 0;*/
  width: 100%;
  border: 0;
  /*box-shadow: 0px 1px 1px #d6d6d6;*/
}

#main-footer .ui.dropdown .choose-language .item {
  /*font-size: 0.8125rem !important;
  padding: 1em 1.5em !important;*/
}

#main-footer .ui.dropdown .choose-language .item ~ .item {
  /*border-top: 1px solid #ececec;*/
}

#main-footer .ui.dropdown .choose-language .item a {
  color: inherit;
}

#main-footer .logo {
  /*margin: 0 0 1rem;*/
}

@media screen and (max-width: 767px) {
  #main-footer .logo {
    display: none;
  }
}

#main-footer .logo img {
  max-width: 120px;
}

#main-footer .copyright {
  color: #9f9f9f;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  #main-footer .copyright {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

#main-footer .footer-row .footer-nav-box {
  float: right;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #main-footer .footer-row .footer-nav-box {
    width: calc(100% - 150px);
  }
}

#main-footer .footer-row .footer-logo-box {
  /*padding-top: .5rem;*/
  width: 150px;
  float: left;
}

@media screen and (max-width: 767px) {
  #main-footer .footer-row .footer-logo-box {
    width: 100%;
  }
}

#main-footer .footer-nav-box-row .footer-nav-box-left {
  float: right;
  width: 210px;
}

@media screen and (max-width: 767px) {
  #main-footer .footer-nav-box-row .footer-nav-box-left {
    width: 100%;
  }
}

#main-footer .footer-nav-box-row .footer-nav-box-right {
  text-align: center;
  float: left;
  /*position: relative;*/
  /*padding-top: .5rem;*/
  width: calc(1127px - 360px);
}

@media screen and (max-width: 1200px) {
  #main-footer .footer-nav-box-row .footer-nav-box-right {
    width: calc(931px - 360px);
  }
}

@media screen and (max-width: 991px) {
  #main-footer .footer-nav-box-row .footer-nav-box-right {
    width: calc(725px - 360px);
  }
}

@media screen and (max-width: 767px) {
  #main-footer .footer-nav-box-row .footer-nav-box-right {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .nav-top li {
    display: block;
  }
}

#main-footer .nav-top li:first-child a {
  border-left: 1px solid #e0e0e0;
}

@media screen and (max-width: 767px) {
  #main-footer .nav-top li:first-child a {
    border: 0;
  }
}

#main-footer .nav-top a {
  color: #717171;
  display: block;
  font-size: 12px;
  border-right: 1px solid #e0e0e0;
  line-height: 15px;
  padding: 0px 10px;
}

@media screen and (max-width: 767px) {
  #main-footer .nav-top a {
    border: 0;
    font-size: 17px;
    padding: 15px 10px;
  }
}

@media screen and (max-width: 400px) {
  #main-footer .nav-top a {
    border: 0;
    font-size: 12px;
    padding: 15px 10px;
    font-weight: 100;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .social-box {
    position: absolute;
    top: calc(100% + 70px);
    left: 0;
    right: 0;
  }
}

#main-footer .social-box a {
  /*color: #808080;*/
  /*font-size: 2em;*/
}

#main-footer .helper-box {
  text-align: center;
}

@media screen and (max-width: 767px) {
  #main-footer .helper-box {
    margin: 0 0 50px;
  }
}

#main-footer .helper-box span {
  display: block;
  /*color: #32539C;*/
  /*font-size: 0.7rem;
  margin: 0 0 .2rem;*/
}

#main-footer .helper-box .kov-btn {
  width: 100%;
  font-size: 15px;
  font-weight: normal;
  width: 210px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #main-footer .helper-box .kov-btn {
    width: 500px;
    max-width: 100%;
    padding: 20px;
    font-size: 17px;
    margin: auto;
  }
}

@media screen and (max-width: 400px) {
  #main-footer .helper-box .kov-btn {
    width: 500px;
    max-width: 100%;
    padding: 20px;
    font-size: 12px;
    margin: auto;
  }
}

#main-footer .helper-box .kov-btn:hover {
  box-shadow: none;
}

.ui.container.wrap-dropdown {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (min-width: 1367px) {
  .ui.container.wrap-dropdown {
    min-width: 1300px;
  }
}

.wrap-breadcrumb {
  border-bottom: 2px solid #e4e4e4;
  /*margin: 0 0 5rem;*/
}

.wrap-page-description {
  /*background: #f5fbfb;*/
  /*padding: 3.8rem 0;*/
}

@media screen and (max-width: 767px) {
  .wrap-page-description {
    /*padding: 2rem 0;*/
  }
}

.wrap-page-description span {
  display: block;
  /*color: #60c2d1;*/
  /*font-size: 1.8em;
  line-height: 1.4em;*/
}

@media screen and (max-width: 767px) {
  .wrap-page-description span {
    /*font-size: 1.3em;
    line-height: 1.2em;*/
  }
}

.violet.wrap-page-title {
  /*background: #9fb3da;*/
}

.violet.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.teal.wrap-page-title {
  /*background: #61c2d1;*/
}

.teal.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.green-light.wrap-page-title {
  /*background: #81BD86;*/
}

.green-light.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.green.wrap-page-title {
  /*background: #69bd78;*/
}

.green.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.orange.wrap-page-title {
  /*background: #f49f2d;*/
}

.orange.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.yellow.wrap-page-title {
  /*background: #f2c85d;*/
}

.yellow.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.thin-orange.wrap-page-title {
  /*background: #e49e52;*/
}

.thin-orange.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.purple.wrap-page-title {
  /*background: #acb9d9;*/
}

.purple.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.bluesky.wrap-page-title {
  /*background: #75c1c9;*/
}

.bluesky.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.thin-gray.wrap-page-title {
  /*background: #f6f6f6;*/
}

.thin-gray.wrap-page-title .ui.page-title {
  /*color: #75c1c9;*/
}

.grayblue.wrap-page-title {
  /*background: #95bbcd;*/
}

.grayblue.wrap-page-title .ui.page-title {
  /*color: #ffffff;*/
}

.cigarette.wrap-page-title {
  /*background: #f3f3f3;*/
}

.cigarette.wrap-page-title:before {
  opacity: .3;
}

.cigarette.wrap-page-title .ui.page-title {
  /*color: #60c0cf;*/
}

.ui.breadcrumb {
  display: block;
  text-align: left;
  /*padding: 1.5rem 0;*/
}

@media screen and (max-width: 767px) {
  .ui.breadcrumb {
    /*padding: 1rem 0;*/
  }
}

.ui.breadcrumb img {
  max-width: 20px;
}

.ui.breadcrumb .section {
  /*color: #8e8d8d;*/
  vertical-align: middle;
}

.ui.breadcrumb .section:hover {
  /*color: #010101;*/
}

.ui.breadcrumb .section.active {
  /*color: #010101;*/
}

.wrap-page-title {
  /*padding: 4rem 0 3.3rem;*/
  /*background: #e4e4e4;*/
  position: relative;
}

.wrap-page-title:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .1;
  background: url(../images/new/new/bg-page-title.png);
}

@media screen and (max-width: 767px) {
  .wrap-page-title {
    /*padding: 2.5rem 0 2rem;*/
  }
}

.wrap-page-title .ui.page-title {
  /*color: #60c3d2;*/
  /*font-size: 2.563rem;*/
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .wrap-page-title .ui.page-title {
    /*font-size: 2rem;*/
  }
}

.support-category-content {
  padding: 80px 0;
}

@media screen and (max-width: 1200px) {
  .support-category-content {
    padding: 70px 0;
  }
}

@media screen and (max-width: 991px) {
  .support-category-content {
    padding: 60px 0;
  }
}

@media screen and (max-width: 400px) {
  .support-category-content {
    padding: 30px 0;
  }
}

.support-category-content.category {
  padding: 50px 0;
}

@media screen and (max-width: 400px) {
  .support-category-content.category {
    padding: 25px 0;
  }
}

.support-category-content.category  .box-content {
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .support-category-content.category  .box-content {
    padding: 36px 0;
  }
}

@media screen and (max-width: 400px) {
  .support-category-content.category  .box-content {
    padding: 18px 0;
  }
}

.support-category-content.category .box-content .support-page-title {
  margin: 0;
  padding: 40px 0 25px;
  font-size: 20px;
  color: #404040;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .support-category-content.category .box-content .support-page-title {
    padding: 36px 0 50px;
  }
}

@media screen and (max-width: 400px) {
  .support-category-content.category .box-content .support-page-title {
    padding: 18px 0 25px;
    font-size: 18px;
  }
}

.support-category-content.category .box-content .support-page-content {
  padding: 0 0 10px;
}

@media screen and (max-width: 400px) {
  .support-category-content.category .box-content .support-page-content {
    font-size: 12px;
    font-weight: 100;
  }
}

.support-category-content hr {
  border: 0;
  width: 30px;
  background: #eaeaea;
  height: 3px;
  margin-left: 0;
}

.support-category-content .box-title, .support-detail-page-content .box-title.style-1 {
  color: #404040;
  font-weight: normal;
  font-size: 27px;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 400px) {
  .support-category-content .box-title, .support-detail-page-content .box-title.style-1 {
    font-size: 22px;
  }
}

.support-category-content .style-1.box-title, .support-detail-page-content .style-1.box-title {
  text-align: left;
}

/*.support-category-content .style-1.box-title:after, .support-detail-page-content .style-1.box-title:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  background: #eaeaea;
  margin: 2.3rem 0 0;
}*/

/*.support-category-content .style-2.box-title, .support-detail-page-content .style-2.box-title.style-1 {
  margin-bottom: 4.2rem;
}*/

.support-category-content .entry-content > a, .faq-older-post .entry-content > a {
  color: #32539C;
  display: block;
  font-weight: normal;
  font-size: 15px;
}

@media screen and (max-width: 400px) {
  .support-category-content .entry-content > a, .faq-older-post .entry-content > a {
    font-size: 12px;
  }
}

.support-page .search-box {
  width: 100%;
  text-align: center;
  /*padding: 2rem 0 0;*/
}

@media screen and (max-width: 767px) {
  .support-page .search-box {
    padding: 0;
  }
}

.support-page .search-box {
  padding: 0 0 70px;
}

@media screen and (max-width: 767px) {
  .support-page .search-box {
    padding: 0 0 50px;
  }
}

@media screen and (max-width: 400px) {
  .support-page .search-box {
    padding: 0 0 25px;
  }
}

.support-page .search-box .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .support-page .search-box .logo-box {
    display: none;
  }
}

.support-page .search-box .page-title {
  margin: 0 0 0 5px;
  font-weight: bold;
  color:#717171;
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .support-page .search-box .page-title {
    display: none;
  }
}

.support-page .ui.form.search-box-form {
  /*padding: 2.3rem 0 5rem;*/
}

@media screen and (max-width: 767px) {
  .support-page .ui.form.search-box-form {
    /*padding: 1rem 0 3rem;*/
  }
}

.support-page .ui.form.search-box-form input[type="text"] {
  height: 45px;
  width: 333px;
  color: #404040;
  /*font-size: 1rem;*/
  /*margin: 0 .3em 0 0;*/
  border-radius: 0;
  -ms-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.support-page .ui.form.search-box-form .inline.field {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.support-page .ui.form.search-box-form .submit.button {
  /*color: #ffffff;*/
  /*background: #32539C;*/
  height: 45px;
  width: 113px;
  font-weight: normal;
  /*font-size: 1rem;*/
}

.support-page .wrap-breadcrumb {
  background: #E9F3F3;
  border: 0;
  border-top: 1px solid #e8e8e8;
  margin: 0;
  padding: 20px;
}

.support-page .wrap-breadcrumb .icon-breadcrumb-list_home {
  color: #9f9f9f;
  font-size: 20px;
}

.support-page .wrap-breadcrumb .ui.breadcrumb {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -50px;
  /*padding: 1.3rem 0;*/
}

.support-page .wrap-breadcrumb .ui.breadcrumb i {
  margin: 0 7px 0 0;
  color: #9f9f9f;
  font-size: 12px;
}

.support-page .wrap-breadcrumb .ui.breadcrumb a {
  color: #404040;
  font-weight: bold;
  font-size: 12px;
}

.support-page .wrap-breadcrumb .ui.breadcrumb a:focus {
  outline: 0;
}

.support-page .wrap-breadcrumb .ui.breadcrumb a:not(:first-child) {
  margin: 0 7px 0 0;
}

.support-category-content .box-content {
  padding: 70px 0 0;
}

@media screen and (max-width: 1200px) {
  .support-category-content .box-content {
    padding: 45px 0;
  }
}

@media screen and (max-width: 991px) {
  .support-category-content .box-content {
    padding: 25px 0;
  }
}

.support-category-content .entry-item {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .support-category-content .entry-item:not(:first-child) .entry-content {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .support-category-content.category .entry-item .entry-content {
    display: block;
  }
}

.support-category-content .entry-title {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .support-category-content .entry-title {
    text-align: center;
  }
}

.support-category-content .entry-content {
  display: block;
  /*margin: 0 -1rem 2rem;*/
}

.support-category-content .entry-content:after, .support-category-content .entry-content:before {
  display: table;
  content: "";
}

.support-category-content .entry-content:after {
  clear: both;
}

.support-category-content .entry-content > a {
  width: 50%;
  float: left;
  padding: 0 20px 15px 0;
  display: block;
}

.support-category-content .entry-content > a:after, .support-category-content .entry-content > a:before {
  display: table;
  content: "";
}

.support-category-content .entry-content > a:after {
  clear: both;
}

.support-category-content .entry-content > a:nth-child(2n+1) {
  clear: left;
}

@media screen and (max-width: 767px) {
  .support-category-content .entry-content > a {
    width: 100%;
  }
}

.customer-support-box {
  background: #f9f9f9;
}

.customer-support-box {
  padding: 80px 0;
}

@media screen and (max-width: 1200px) {
  .customer-support-box {
    padding: 70px 0;
  }
}

@media screen and (max-width: 991px) {
  .customer-support-box {
    padding: 60px 0;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-box {
    padding: 30px 0;
  }
}

.customer-support-box .box-title {
  font-weight: normal;
  text-align: center;
  color: #404040;
  font-size: 27px;
  margin: 0;
}

@media screen and (max-width: 400px) {
  .customer-support-box .box-title {
    font-size: 22px;
  }
}

.customer-support-box .box-content {
  padding: 45px 0 0;
  text-align: center;
  display: block;
}

@media screen and (max-width: 400px) {
  .customer-support-box .box-content {
    padding: 20px 0 0;
  }
}

.customer-support-box .box-content:after, .customer-support-box .box-content:before {
  display: table;
  content: "";
}

.customer-support-box .box-content:after {
  clear: both;
}

@media screen and (min-width: 768px) {
  .customer-support-box .box-content .box-left, .customer-support-box .box-content .box-right {
    width: 50%;
    float: left;
    padding: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .customer-support-box .box-content .box-right {
    border-left: 1px solid #e0e0e0;
  }
}

@media screen and (max-width: 767px) {
  .customer-support-box .box-content .box-right {
    padding: 45px 0 0;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-box .box-content .box-right {
    padding: 20px 0 0;
  }
}

.customer-support-box .box-content p {
  color: #777777;
  font-size: 17px;
  margin: 0 0 1.2rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .customer-support-box .box-content p {
    text-align: left;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-box .box-content p {
    font-size: 12px;
    font-weight: 100;
  }
}

.customer-support-box .box-content .ui.basic {
  margin: 0;
  color: #32539C !important;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  background: #ffffff !important;
}

@media screen and (max-width: 767px) {
  .customer-support-box .box-content .ui.basic {
    width: 500px;
    max-width: 100%;
    padding: 20px;
    font-size: 17px;
    margin: auto;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-box .box-content .ui.basic {
    font-size: 12px;
  }
}

.support-page-help-box {
  background: #E9F3F3;
  padding: 70px 0 80px;
}

@media screen and (max-width: 1200px) {
  .support-page-help-box {
    padding: 70px 0;
  }
}

@media screen and (max-width: 767px) {
  .support-page-help-box {
    padding: 50px 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .support-page-help-box {
    padding: 25px 0 30px;
  }
}

.support-page-help-box .box-title {
  color: #404040;
  font-weight: normal;
  font-size: 27px;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 400px) {
  .support-page-help-box .box-title {
    font-size: 22px;
  }
}


.support-page-help-box .box-title span {
  display: block;
  color: #404040;
  font-size: 16px;
  margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-title span {
    margin: 28px 0 0;
  }
}

@media screen and (max-width: 400px) {
  .support-page-help-box .box-title span {
    margin: 14px 0 0;
    font-weight: 100;
  }
}

.support-page-help-box .box-content {
  padding: 25px 0 0;
  display: block;
}

@media screen and (max-width: 1200px) {
  .support-page-help-box .box-content {
    padding: 24px 0 0;
  }
}

@media screen and (max-width: 400px) {
  .support-page-help-box .box-content {
    padding: 12px 0 0;
  }
}

.support-page-help-box .box-content:after, .support-page-help-box .box-content:before {
  display: table;
  content: "";
}

.support-page-help-box .box-content:after {
  clear: both;
}

.support-page-help-box .box-content > .help-box-detail {
  display: block;
  float: left;
  width: 50%;
  padding: 20px calc((25% - 220px) / 2) 0;
}

@media screen and (max-width: 1200px) {
  .support-page-help-box .box-content > .help-box-detail {
    padding: 14px calc((25% - 170px) / 2) 0;
  }
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content > .help-box-detail {
    padding: 26px calc((50% - 170px) / 2) 0;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content > .help-box-detail {
    padding: 13px 6.5px;
  }
}

@media screen and (max-width: 400px) {
  .support-page-help-box .box-content > .help-box-detail {
    padding: 6px 6.5px;
  }
}

@media screen and (max-width: 400px) {
  .support-page-help-box .box-content > .help-box-detail {
    width: 100%;
  }
}

.support-page-help-box .box-content > .help-box-detail:nth-child(4n+1) {
  clear: left;
}

.support-page-help-box .box-content > .help-box-detail.fluid-width {
  width: 100%;
}

.support-page-help-box .box-content > .help-box-detail.fluid-width .entry-item {
  min-height: auto;
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content > .help-box-detail.fluid-width .entry-item {
    /*padding-top: 1rem;*/
  }
}

@media screen and (min-width: 481px) {
  .support-page-help-box .box-content > .help-box-detail.fluid-width .entry-item {
    min-height: auto;
    /*padding-top: 3rem;*/
  }
}

.support-page-help-box .box-content .entry-item {
  background-repeat: no-repeat;
  background-position: center 22px;
  background-size: 130px auto;
  background-color: #ffffff;
  display: block;
  position: relative;
  height: 100px;
  width: 100%;
  padding: 20px;
}

@media screen and (max-width: 1200px) {
  .support-page-help-box .box-content .entry-item {
    background-position: center 15px;
    background-size: 116px auto;
    padding: 32px;
  }
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content .entry-item {
    background-position: center 14px;
    background-size: 92px auto;
    padding: 0px;
    padding-top: 10px;
    width: 100%;
    height: 60px;
  }
}

.support-page-help-box .box-content .fluid-width .entry-item {
  width: 100%;
  height: 110px;
}

.support-page-help-box .box-content .entry-item:focus, .support-page-help-box .box-content .entry-item:active {
  outline: 0;
}

.support-page-help-box .box-content img {
  max-width: 150px;
  max-height: 120px;
}

.support-page-help-box .box-content img[src=""] {
  visibility: hidden;
}

/*@media screen and (max-width: 991px) {
  .support-page-help-box .box-content img {
    height: 100px;
  }
}*/

/*@media screen and (min-width: 481px) {
  .support-page-help-box .box-content img {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    margin: 0 auto;
  }
}*/

.support-page-help-box .box-content .entry-title {
  display: block;
  color: #32539C;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  font-weight: normal;
}

@media screen and (max-width: 1200px) {
  .support-page-help-box .box-content .entry-title {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content .entry-title {
    font-size: 14px;
  }
}


.support-page-help-box .box-content .entry-title.has-icon {
  display: inline-block;
  position: relative;
  padding: 0 150px 39px;
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content .entry-title.has-icon {
    width: 90%;
    padding: 0 0 39px;
  }
}

.support-page-help-box .box-content .entry-title.has-icon:before, .support-page-help-box .box-content .entry-title.has-icon:after {
  content: "";
  display: block;
  width: 120px;
  height: 90px;
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .support-page-help-box .box-content .entry-title.has-icon:before, .support-page-help-box .box-content .entry-title.has-icon:after {
    width: 90px;
    height: 68px;
  }
}

.support-page-help-box .box-content .entry-title.has-icon:before {
  left: 0;
  background-image: url(../images/support-page/icon_support_category09%401.5x.png);
}

.support-page-help-box .box-content .entry-title.has-icon:after {
  right: 0;
  background-image: url(../images/support-page/icon_support_category10%401.5x.png);
}

.support-detail-page-content {
  border-bottom: 1px solid #e8e8e8;
  padding: 70px 0 0;
}

@media screen and (max-width: 400px) {
  .support-detail-page-content {
    padding: 50px 0 0;
  }
}

.support-detail-page-content hr {
  border: 0;
  width: 30px;
  background: #eaeaea;
  height: 3px;
  margin-left: 0;
}

.support-detail-page-content .box-title {
  padding: 0 0 30px;
}

.support-detail-page-content .box-content {
  padding: 30px 0 0;
}

.support-detail-page-content .page-content-inner {
  text-align: left;
  /*margin: 0 -1rem;*/
  display: block;
}

.support-detail-page-content .page-content-inner:after, .support-detail-page-content .page-content-inner:before {
  display: table;
  content: "";
}

.support-detail-page-content .page-content-inner:after {
  clear: both;
}

.support-detail-page-content .support-detail {
  padding-right: 30px;
  float: left;
  width: 70%;
  /*padding: 0 1.8rem;*/
}

@media screen and (max-width: 991px) {
  .support-detail-page-content .support-detail {
    width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .support-detail-page-content .support-detail {
    padding-right: 0px;
    width: 100%;
  }
}

.support-detail-page-content .other-faq {
  width: 30%;
  float: left;
  /*padding: 1.5rem 1.8rem;*/
}

@media screen and (max-width: 991px) {
  .support-detail-page-content .other-faq {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .support-detail-page-content .other-faq {
    display: none;
  }
}

.support-detail-page-content .box-content {
  color: #717171;

  /*font-size: 1.063rem;
  font-size: 1.25rem;
  margin: 0 0 1.5rem;*/
}

.support-detail-page-content .box-content h4 {
  font-weight: normal;
  color: #404040;
}

.support-detail-page-content .box-content a {
  color: #32539C;
}

.support-detail-page-content .box-content p {
  color: inherit;
  font-size: inherit;
}

.support-detail-page-content .steps-box {
  margin: 0;
  list-style: none;
  padding: 30px 0 0;
}

.support-detail-page-content .steps-box > li {
  counter-increment: item;
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 50px;
}

.support-detail-page-content .steps-box > li:before {
  margin-right: 20px;
  content: '0'counter(item);
  border-radius: 100%;
  width: 30px;
  display: block;
  float: left;
  color: #5FC0CF;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
}

.faq-tags {
  color: #7F7F7F;
  margin: 0 0 70px;
  font-size: 12px;
}

.faq-tags a {
  color: inherit;
  background: #f9f9f9;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  -ms-border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}

.faq-tags a:focus, .faq-tags a:active {
  outline: 0;
}

.faq-like-box {
  position: relative;
  margin: 40px 0 50px;
  font-size: 17px;
  color: #7f7f7f;
}

.faq-like-box:before {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  background: #eaeaea;
  margin: 0 0 10px;
}

.faq-like-box .like-btn {
  display: inline-block;
  color: #32539C !important;
  font-size: 16px;
  padding: 7px;
  font-weight: normal !important;
}

.faq-like-box .like-btn.on {
  background: #32539C;
  color: #ffffff !important;
}

.faq-list {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  -ms-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding:  20px 20px 10px;
}

.faq-list ul {
  list-style: none;
  margin: 0;
}

.faq-list > ul {
  padding: 0;
}

.faq-list > ul > li {
  margin: 0 0 10px;
}

.faq-list > ul ul {
  padding: 0 0 0 20px;
}

.faq-list > ul ul a {
  color: #32539C;
  font-size: 12px;
}

.faq-list a {
  color: #717171;
  font-size: 15px;
}

.faq-older-post {
  padding: 50px 0;
}

.faq-older-post .box-title {
  text-align: left;
  color: #404040;
  font-size: 16px;
  margin: 0 0 20px;
}

.faq-older-post .box-content {
  text-align: left;
}

.faq-older-post .entry-content > a {
  padding: 5px 0;
}

.faq-older-post .button-navigation {
  color: #32539C;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  margin: 30px 0 0;
}

.faq-block {
  padding: 30px 30px;
  margin: 0 0 30px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 400px) {
  .faq-block {
    padding: 15px 20px;
  }
}

@media screen and (min-width: 768px) {
  .faq-block + .faq-block {
    margin-bottom: 50px;
  }
}

.faq-block p {
  font-size: inherit;
  margin: 0 0 10px;
  color: #717171;
}

.faq-block strong {
  color: #F0784D;
  margin: 0 0 10px;
  font-weight: normal;
}

.faq-block a {
  color: #32539C;
}

.faq-block h6 {
  color: #404040;
  font-weight: normal;
  font-size: 15px;
  margin: 0 0 10px;
}

.faq-notify {
  background: #fdf8f0;
}

.faq-notice {
  background: #f6f6f6;
}

.item-links {
  padding: 0;
  list-style: none;
  margin: 40px 0;
}

.item-links a {
  color: #32539C;
  font-size: 17px;
}

.customer-support-result .box-content {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .customer-support-result .box-content {
    padding: 50px 0;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-result .box-content {
    padding: 25px 0;
  }
}

.customer-support-result .support-result-title {
  font-weight: normal;
  font-size: 30px;
  padding: 0 0 40px;
  color: #404040;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .customer-support-result .support-result-title {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-result .support-result-title {
    padding: 0 0 15px;
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .customer-support-result .support-result-title {
    /*font-size: 1.5rem;*/
  }
}

.customer-support-result .entry-item {
  /*margin: 0 0 4.4rem;*/
}

.customer-support-result .entry-item hr {
  border: 0;
  width: 30px;
  background: #eaeaea;
  height: 3px;
  margin-left: 0;
}

.customer-support-result .entry-title {
  font-weight: normal;
  color: #32539C;
  position: relative;
  font-size: 20px;
  margin: 0;
  padding: 30px 0 0;
}

@media screen and (max-width: 400px) {
  .customer-support-result .entry-title {
    font-size: 13px;
    padding: 15px 0 0;
  }
}

.customer-support-result .entry-title:before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  position: absolute;
  /*background: #eaeaea;*/
  top: 0;
  left: 0;
}

.customer-support-result .entry-title a {
  color: inherit;
  font-weight: normal;
}

.customer-support-result .entry-category {
  padding: 20px 0 0;
}

@media screen and (max-width: 400px) {
  .customer-support-result .entry-category {
    padding: 15px 0 0;
  }
}

.customer-support-result .entry-category > span {
  display: inline-block;
  color: #808080;
  font-size: 12px;
}

@media screen and (max-width: 400px) {
  .customer-support-result .entry-category > span {
    font-size: 10px;
  }
}

.customer-support-result .entry-category > span:after {
  content: "/";
  margin: 0 5px 0;
}

.customer-support-result .entry-category > span:last-child:after {
  display: none;
}

.customer-support-result .entry-content {
  padding: 26px 0 60px;
  font-size: 17px;
  line-height: 1.8;
  color: #717171;
}

@media screen and (max-width: 1200px) {
  .customer-support-result .entry-content {
    padding: 26px 0 30px;
  }
}

@media screen and (max-width: 400px) {
  .customer-support-result .entry-content {
    padding: 18px 0 15px;
    font-size: 13px;
    font-weight: 100;
  }
}

.result-pagination {
  text-align: center;
  list-style: none;
  border-top: 2px solid #e0e0e0;
  padding: 30px 0;
  margin: 0;
}

.result-pagination > li {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .result-pagination > li {
    /*font-size: 1.2rem;*/
  }
}

.result-pagination > li a, .result-pagination > li span {
  display: block;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .result-pagination > li a, .result-pagination > li span {
    padding: 8px 15px;
  }
}

.result-pagination > li a {
  color: #32539C;
}

.result-pagination > li span {
  color: #E8E8E8;
}

.result-pagination > li i {
  /*font-size: 2.3rem;*/
}

/*# sourceMappingURL=application.css.map */
