@charset "UTF-8";
/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}


button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

body {
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main { 
  margin-top:65px;
  min-height:65vh;
}
@media screen and (max-width: 767px) {
    main {
        margin-top: 55px
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

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

a:visited {
  color: #9358B0;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
}

input:not([type="checkbox"]) {
  outline: none;
}

input:not([type="checkbox"]):focus {
  border: 1px solid rgba(206, 40, 91, 1);
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
    border: 1px solid rgba(206, 40, 91, 1)!important;
  	z-index:2;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid rgba(206, 40, 91, 1);
}

.content-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .content-container {
    padding: 0;
    width: 90%;
  }
}

.content-container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

.container-divider{
  padding-bottom:40px;
}
@media (max-width:767px){
  .container-divider{
    padding-bottom:20px;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
}

.error-page h2{
	padding-bottom:1rem;
}

.error-page a{
  margin-top:1rem;
  display:block;
  width:auto;
  color:#c70752 !important;
  padding-right:1rem;
}
.error-page a::after{
	content:'>' ;
}

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** Buttons *****/
.button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link {
  background-color: transparent;
  border: 1px solid rgba(206, 40, 91, 1);
  border-radius: 4px;
  color: rgba(206, 40, 91, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link {
    width: auto;
  }
}

.button:visited, .split-button button:visited, .section-subscribe button:visited, .article-subscribe button:visited, .community-follow button:visited, .requests-table-toolbar .organization-subscribe button:visited, .subscriptions-subscribe button:visited, .pagination-next-link:visited, .pagination-prev-link:visited, .pagination-first-link:visited, .pagination-last-link:visited, .button:hover, .split-button button:hover, .section-subscribe button:hover, .article-subscribe button:hover, .community-follow button:hover, .requests-table-toolbar .organization-subscribe button:hover, .subscriptions-subscribe button:hover, .pagination-next-link:hover, .pagination-prev-link:hover, .pagination-first-link:hover, .pagination-last-link:hover, .button:active, .split-button button:active, .section-subscribe button:active, .article-subscribe button:active, .community-follow button:active, .requests-table-toolbar .organization-subscribe button:active, .subscriptions-subscribe button:active, .pagination-next-link:active, .pagination-prev-link:active, .pagination-first-link:active, .pagination-last-link:active, .button:focus, .split-button button:focus, .section-subscribe button:focus, .article-subscribe button:focus, .community-follow button:focus, .requests-table-toolbar .organization-subscribe button:focus, .subscriptions-subscribe button:focus, .pagination-next-link:focus, .pagination-prev-link:focus, .pagination-first-link:focus, .pagination-last-link:focus, .button.button-primary, .split-button button.button-primary, .section-subscribe button.button-primary, .section-subscribe button[data-selected="true"], .article-subscribe button.button-primary, .article-subscribe button[data-selected="true"], .community-follow button.button-primary, .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected="true"], .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected="true"], .button-primary.pagination-next-link, .button-primary.pagination-prev-link, .button-primary.pagination-first-link, .button-primary.pagination-last-link {
  background-color: rgba(206, 40, 91, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.button.button-primary:hover, .split-button button:hover, .section-subscribe button.button-primary:hover, .section-subscribe button:hover[data-selected="true"], .article-subscribe button.button-primary:hover, .article-subscribe button:hover[data-selected="true"], .community-follow button.button-primary:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button:hover[data-selected="true"], .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button:hover[data-selected="true"], .button-primary.pagination-next-link:hover, .button-primary.pagination-prev-link:hover, .button-primary.pagination-first-link:hover, .button-primary.pagination-last-link:hover, .button.button-primary:focus, .split-button button.button-primary:focus, .section-subscribe button.button-primary:focus, .section-subscribe button:focus[data-selected="true"], .article-subscribe button.button-primary:focus, .article-subscribe button:focus[data-selected="true"], .community-follow button.button-primary:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button:focus[data-selected="true"], .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button:focus[data-selected="true"], .button-primary.pagination-next-link:focus, .button-primary.pagination-prev-link:focus, .button-primary.pagination-first-link:focus, .button-primary.pagination-last-link:focus, .button.button-primary:active, .split-button button.button-primary:active, .section-subscribe button.button-primary:active, .section-subscribe button:active[data-selected="true"], .article-subscribe button.button-primary:active, .article-subscribe button:active[data-selected="true"], .community-follow button.button-primary:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button:active[data-selected="true"], .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button:active[data-selected="true"], .button-primary.pagination-next-link:active, .button-primary.pagination-prev-link:active, .button-primary.pagination-first-link:active, .button-primary.pagination-last-link:active {
  background-color: #791735;
  border-color: #791735;
}

.button[data-disabled], .split-button button[data-disabled], .section-subscribe button[data-disabled], .article-subscribe button[data-disabled], .community-follow button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .subscriptions-subscribe button[data-disabled], .pagination-next-link[data-disabled], .pagination-prev-link[data-disabled], .pagination-first-link[data-disabled], .pagination-last-link[data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  cursor: pointer;
  background-color: rgba(206, 40, 91, 1);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large, input[type="submit"] {
    width: auto;
  }
}

.button-large:hover, .button-large:active, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: #791735;
}

.button-large[disabled], input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #333;
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(0, 0, 0, 1);
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

/***** Split button *****/
.split-button {
  display: flex;
}

.split-button button {
  background-color: rgba(206, 40, 91, 1);
  border: 0;
  color: #FFFFFF;
  height: 32px;
  line-height: 16px;
  outline-color: rgba(206, 40, 91, 1);
}

[dir="rtl"] .split-button button:not(:only-child):first-child {
  border-left: 1px solid #FFFFFF;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

[dir="ltr"] .split-button button:not(:only-child):first-child {
  border-right: 1px solid #FFFFFF;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}

[dir="rtl"] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

[dir="ltr"] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: #333;
  font-size: 13px;
  text-align: left;
}

[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
/*   max-width: 650px; */
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid rgba(206, 40, 91, 1);
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
    -webkit-appearance: none;
}

.form-field input[type="text"]:focus {
  border: 1px solid rgba(206, 40, 91, 1);
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid rgba(206, 40, 91, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(206, 40, 91, 1);
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}

.form-field .optional {
  color: #333;
  margin-left: 4px;
}

.form-field p {
  color: #333;
  font-size: 12px;
  margin: 5px 0;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: #333;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #9358B0;
}

/***** Header *****/
.header {
  margin: 0 auto;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
  flex-flow:column;
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 55px;
  min-width: auto;
  top:0;
}

@media (min-width: 768px) {
  .header {
    padding: 0;
      height: 102px;
  }
}

.logo img {
  vertical-align: middle;
  width: 105px;
}

.logo span {
  margin: 0 10px;
  color: rgba(206, 40, 91, 1);
}

.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo a:hover, .logo a:focus, .logo a:active {
  text-decoration: none;
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"] > a {
  display: block;
  margin: 20px;
}

.user-nav[aria-expanded="true"] > .user-nav-list li {
  display: block;
}

.user-nav[aria-expanded="true"] > .user-nav-list a {
  display: block;
  margin: 20px;
}

.user-nav-list {
  display: block;
  list-style: none;
}

.user-nav-list > li {
  display: inline-block;
}

@media (max-width: 767px) {
  .nav-wrapper-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav-wrapper-desktop {
    display: flex;
    align-items:center;
    height:70px;
    justify-content: center;
  }
}

[dir="rtl"] .nav-wrapper-desktop a {
  padding: 0 0 0 20px;
}

.nav-wrapper-desktop a:hover, .nav-wrapper-desktop a:focus, .nav-wrapper-desktop a:active {
  background-color: transparent;
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}
.nav-wrapper-mobile{
  margin-right:-10px;
}
@media (min-width: 768px) {
  .nav-wrapper-mobile {
    display: none;
  }
}

.nav-wrapper-mobile .menu-button-mobile {
	background: none;
  border: 0;
  width: auto;
  min-width: auto;
  cursor: pointer;
  padding: 16px;
  box-sizing: content-box;
}

.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  background-size: contain;
}


.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background-color: #efeeee;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 55px;
  z-index: 2;
}

.nav-wrapper-mobile .menu-list-mobile[aria-expanded="false"] {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile[aria-expanded="true"] {
  display: block;
}

.menu-button-mobile[aria-expanded="false"] .icon-menu{
	background-image:url(/hc/theming_assets/01HZH7HMVXKB3E5ANBQJG11ACA);
}
.menu-button-mobile[aria-expanded="true"] .icon-menu{
  background-image:url(/hc/theming_assets/01HZH7HQQQXDND5YQA4RSY8SXF);
}

.nav-wrapper-mobile .menu-list-mobile-items .item {
  margin: 4px 0;
}

.nav-wrapper-mobile .menu-list-mobile-items li:empty:not(.nav-divider) {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile-items .nav-divider {
  border-bottom: 0.1px solid #ddd;
  padding: 0;
}

.nav-wrapper-mobile .menu-list-mobile-items .nav-divider:last-child {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile-items button {
  background: none;
  border: none;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
  text-align: start;
}

.nav-wrapper-mobile .menu-list-mobile-items button:active, .nav-wrapper-mobile .menu-list-mobile-items button:focus, .nav-wrapper-mobile .menu-list-mobile-items button:hover {
  background-color: #f3f3f3;
  text-decoration: underline;
}

.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 1);
}

.nav-wrapper-mobile .menu-list-mobile-items a:active, .nav-wrapper-mobile .menu-list-mobile-items a:focus, .nav-wrapper-mobile .menu-list-mobile-items a:hover {
  background-color: #f3f3f3;
}

.nav-wrapper-mobile .menu-list-mobile-items .my-profile {
  display: flex;
  line-height: 1.5;
}

.nav-wrapper-mobile .menu-list-mobile-items .my-profile .my-profile-tooltip {
  font-size: 12px;
  color: #68737D;
}

.nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}

[dir="rtl"] .nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  margin-right: 0;
  margin-left: 8px;
}

.skip-navigation {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  font-size: 14px;
  justify-content: center;
  left: -999px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  position: absolute;
  top: auto;
  z-index: -999;
}

[dir="rtl"] .skip-navigation {
  left: initial;
  right: -999px;
}

.skip-navigation:focus, .skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}

[dir="rtl"] .skip-navigation:focus, [dir="rtl"] .skip-navigation:active {
  left: initial;
  right: auto;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > button {
  border: 0;
  color: rgba(0, 0, 0, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > button:hover, .user-info > button:focus {
  color: rgba(0, 0, 0, 1);
  background-color: transparent;
}

.user-info > button::after {
  color: rgba(0, 0, 0, 1);
  padding-right: 15px;
}

[dir="rtl"] .user-info > button::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent {
  color: rgba(206, 40, 91, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: #FFFFFF;
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/
.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
}

.footer a {
  color: #333;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-language-selector button {
  color: #333;
  display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
  color: #333;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs li {
  color: #333;
  display: inline;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a:visited {
  color: rgba(0, 0, 0, 1);
}

/***** Search field *****/
.search-container {
  position: relative;
}

.search {
  border-color: #ddd;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
}

.search:focus-within {
  border-color: rgba(206, 40, 91, 1);
}

.search input[type="search"],
.search .clear-button {
  background-color: #fff;
  border-radius: 30px;
  border: none;
}

.search-full input[type="search"],
.search-full .clear-button {
  border-color: #fff;
}

.search input[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #666;
  flex: 1 1 auto;
  height: 40px;
  width: 100%;
}

.search input[type="search"]:focus {
  color: #555;
}

.search-container .search input[type="search"] {
  padding-left:3rem;
}
.search-container .search input[type="search"]:focus {
  outline:0;
}

.search input[type="search"]::-webkit-search-decoration, .search input[type="search"]::-webkit-search-cancel-button, .search input[type="search"]::-webkit-search-results-button, .search input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search input[type="search"]:-webkit-autofill, .search input[type="search"]:-webkit-autofill:hover, .search input[type="search"]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.search .clear-button {
  align-items: center;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  display: none;
  flex: none;
  justify-content: center;
  padding: 0 15px;
}

.search .clear-button:hover {
  background-color: rgba(206, 40, 91, 1);
  color: #fff;
}

.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(206, 40, 91, 1);
}

.search-has-value .clear-button {
  display: flex;
}

[dir="ltr"] .search input[type="search"] {
  padding-left: 40px;
  padding-right: 20px;
}

[dir="ltr"] .search-has-value input[type="search"] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir="ltr"] .search-has-value input[type="search"]:focus {
  border-right-color: rgba(206, 40, 91, 1);
}

[dir="ltr"] .search .clear-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}

[dir="ltr"] .search .clear-button:focus {
  border-left-color: rgba(206, 40, 91, 1);
}

[dir="rtl"] .search input[type="search"] {
  padding-left: 20px;
  padding-right: 40px;
}

[dir="rtl"] .search-has-value input[type="search"] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}

[dir="rtl"] .search-has-value input[type="search"]:focus {
  border-left-color: rgba(206, 40, 91, 1);
}

[dir="rtl"] .search .clear-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir="rtl"] .search .clear-button:focus {
  border-right-color: rgba(206, 40, 91, 1);
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #777;
  pointer-events: none;
}

[dir="rtl"] .search-icon {
  left: auto;
  right: 15px;
}

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01HZH7HZ1A5TT8K7FH2PX7XHAX);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}


.page-header-description {
  font-style: initial;
  word-break: break-word;
}

@media (min-width: 768px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin-bottom: 55px;
}

@media (min-width: 768px) {
  .sub-nav {
    flex-direction: row;
  }
}

.sub-nav .breadcrumbs {
  margin: 0;
}

.sub-nav .search-container {
  max-width: 300px;
  width: 100%;
}

@media (min-width: 768px) {
  .sub-nav .search-container {
    flex: 0 1 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

.blocks-item {
  border: 1px solid rgba(206, 40, 91, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(206, 40, 91, 1);
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: rgba(206, 40, 91, 1);
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: rgba(0, 0, 0, 1);
}

.blocks-item-link {
  color: rgba(206, 40, 91, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

.blocks-item-link:visited, .blocks-item-link:hover, .blocks-item-link:active {
  color: inherit;
  text-decoration: none;
}

.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(206, 40, 91, 1);
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
}

.blocks-item-description {
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Homepage *****/
.section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

.home-section h2 {
  margin-bottom: 10px;
  text-align: center;
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* Three columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.promoted-articles-item .icon-lock {
  vertical-align: baseline;
}

.promoted-articles-item:last-child a {
  border: 0;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  margin-top: 32px;
  background-image: url(/hc/theming_assets/01HZH7HZAADK8ZTEWF75JZH555);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.community a:visited {
  color: #9358B0;
}

.community a:hover, .community a:active, .community a:focus {
  color: #0F3554;
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
  font-weight: 600;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
}

.recent-activity-item-meta {
  color: rgba(0, 0, 0, 1);
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  display: inline-block;
  font-size: 13px;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-controls {
  padding-top: 15px;
}

.recent-activity-controls a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.recent-activity-controls a:visited {
  color: #9358B0;
}

.recent-activity-controls a:hover, .recent-activity-controls a:active, .recent-activity-controls a:focus {
  color: #0F3554;
}

.recent-activity-accessibility-label {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: rgba(206, 40, 91, 1);
  width: 16px;
  height: 16px;
}

.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
  margin-left: 3px;
}

[dir="rtl"] .recent-activity-comment-icon:after {
  margin-left: 0;
  margin-right: 3px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.section-tree-title a {
  color: rgba(0, 0, 0, 1);
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
}

.article-list-item a {
  color: rgba(0, 0, 0, 1);
}

.icon-star {
  color: rgba(206, 40, 91, 1);
  font-size: 18px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-list {
  margin: 40px 0;
}

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: rgba(0, 0, 0, 1);
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  display: none;
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
}

.article-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}

.article-avatar {
  margin-right: 10px;
}

.article-author {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */
  }
}

.article-title .icon-lock {
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role="button"] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  vertical-align: middle;
}

.article-body a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.article-body a:visited {
  color: #9358B0;
}

.article-body a:hover, .article-body a:active, .article-body a:focus {
  color: #0F3554;
}

.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul, [dir="rtl"]
.article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul > ul,
.article-body ol > ol,
.article-body ol > ul,
.article-body ul > ol,
.article-body li > ul,
.article-body li > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #333;
  font-style: italic;
  padding: 0 15px;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}

.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.article-comment-count {
  color: #333;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(206, 40, 91, 1);
  width: 18px;
  height: 18px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
  }
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 30px 0 10px 0;
  margin-top: 60px;
  gap:20px;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
    gap:0;
  }
}
.recent-articles ul>li, .related-articles ul>li{
  margin-bottom:0;
}


.recent-articles ul>li>a, .related-articles ul>li>a{
 	font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .recent-articles ul>li>a, .related-articles ul>li>a{
		display: block;
    color: #5b5b5b;
    font-size: 15px;
    line-height: 2.27;
    letter-spacing: -0.15px;
  }
}

.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

.article-relatives > *:last-child {
  padding: 0;
}

@media (min-width: 768px) {
  .article-relatives > * {
    padding-right: 20px;
  }
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-more-questions a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.article-more-questions a:visited {
  color: #9358B0;
}

.article-more-questions a:hover, .article-more-questions a:active, .article-more-questions a:focus {
  color: #0F3554;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: rgba(0, 0, 0, 1);
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top-icon {
  transform: rotate(0.5turn);
}

.sidenav-title {
  font-size: 15px;
  position: relative;
  font-weight: 600;
}

.sidenav-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 16px;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}
.recent-articles-title, .related-articles-title{
	  font-size: 14px;
  	margin-bottom:10px!important;
}

@media (min-width: 768px) {
	.recent-articles-title, .related-articles-title{
	  margin-bottom:20px!important;
    font-size:16px;
	}
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item .attachment-icon {
  color: rgba(0, 0, 0, 1);
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item .attachment-icon {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #333;
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share li {
  height: 25px;
  width: 25px;
}

.share a {
  color: #333;
}

.share a:hover {
  text-decoration: none;
  color: rgba(206, 40, 91, 1);
}

.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading, .recent-articles-title, .related-articles-title {
  font-size: 14px;
  font-weight: 600;
}
@media (min-width:768px){
  .comment-heading, .recent-articles-title, .related-articles-title {
      margin-bottom: 5px;
      margin-top: 0;
      font-size: 16px;
      font-weight: 600;
    }
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #333;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.comment-callout a:visited {
  color: #9358B0;
}

.comment-callout a:hover, .comment-callout a:active, .comment-callout a:focus {
  color: #0F3554;
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: #333;
  font-size: 13px;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid rgba(206, 40, 91, 1);
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: rgba(206, 40, 91, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

.comment-body a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.comment-body a:visited {
  color: #9358B0;
}

.comment-body a:hover, .comment-body a:active, .comment-body a:focus {
  color: #0F3554;
}

.comment-body img {
  height: auto;
  max-width: 100%;
}

.comment-body ul,
.comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .comment-body ul, [dir="rtl"]
.comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.comment-body ul > ul,
.comment-body ol > ol,
.comment-body ol > ul,
.comment-body ul > ol,
.comment-body li > ul,
.comment-body li > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #333;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.vote a:active, .vote a:hover, .vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #333;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up svg {
  transform: scale(1, -1);
}

.vote-up:hover,
.vote-down:hover {
  color: rgba(206, 40, 91, 1);
}

.vote-up, .vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(206, 40, 91, 1);
}

.vote-voted:hover {
  color: #791735;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01HZH7HZ54SME2ADT8K010J4JH);
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.community-featured-posts .title {
  font-size: 18px;
  font-weight: 600;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header .title {
  margin-bottom: 0;
  font-size: 16px;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow button {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow button {
    width: auto;
  }
}

.community-follow button:hover {
  background-color: rgba(206, 40, 91, 1);
}

.community-follow button:hover::after, .community-follow button:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.community-follow button[data-selected="true"] {
  background-color: rgba(206, 40, 91, 1);
  color: #FFFFFF;
}

.community-follow button[data-selected="true"]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.community-follow button[data-selected="true"]:hover {
  background-color: #791735;
  border-color: #791735;
}

.community-follow button::after {
  border-left: 1px solid rgba(206, 40, 91, 1);
  content: attr(data-follower-count);
  color: rgba(206, 40, 91, 1);
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow button::after {
    position: static;
  }
}

[dir="rtl"] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(206, 40, 91, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: rgba(0, 0, 0, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: #9358B0;
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #333;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(0, 0, 0, 1);
    display: block;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #038153;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover, .status-label:active, .status-label:focus {
  text-decoration: none;
}

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: rgba(206, 40, 91, 1);
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #333;
}

.status-label-pending, .status-label-pending-moderation {
  background-color: #1f73b7;
  text-align: center;
}

.status-label-open {
  background-color: #c72a1c;
}

.status-label-solved {
  background-color: #68737d;
}

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

.status-label-hold {
  background-color: #000;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .post-info {
  padding-right: 0;
  padding-left: 20px;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

.post-body a {
  color: rgba(0, 0, 0, 1);
  text-decoration: underline;
}

.post-body a:visited {
  color: #9358B0;
}

.post-body a:hover, .post-body a:active, .post-body a:focus {
  color: #0F3554;
}

.post-body img {
  height: auto;
  max-width: 100%;
}

.post-body ul,
.post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .post-body ul, [dir="rtl"]
.post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.post-body ul > ul,
.post-body ol > ol,
.post-body ol > ul,
.post-body ul > ol,
.post-body li > ul,
.post-body li > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #333;
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #333;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: rgba(206, 40, 91, 1);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/***** Community Badges *****/
/* Styles labels used next to the authors of article comments, community posts, and community comments */
.community-badge-title {
  background-color: #04444d;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 8px;
  vertical-align: top;
  white-space: nowrap;
  display: inline-flex;
  line-height: 18px;
  vertical-align: middle;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}

.community-badge-container-achievements {
  display: flex;
}

.community-badge-container-achievements > .community-badge-titles {
  margin-left: calc(28px - 0.5em);
}

[dir="rtl"] .community-badge-container-achievements > .community-badge-titles {
  margin-right: calc(28px - 0.5em);
}

.community-name-and-title-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badge {
  margin: 2px;
}

.community-badge-achievements {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}

.profile-info .community-badge-achievements {
  height: 40px;
  width: 40px;
}

.community-title-badges {
  flex-basis: 100%;
  margin-top: 15px;
}

.community-badge-achievements-rest {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}

.community-badge-achievements img {
  width: 100%;
  height: 100%;
}

.community-badge-titles img {
  width: 20px;
  height: 20px;
}

.profile-info .community-badge-achievements-rest {
  line-height: 40px;
  font-size: 20px;
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav {
    flex-direction: row;
  }
}

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle-icon {
  display: none;
}

.collapsible-nav-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

.collapsible-nav-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(206, 40, 91, 1);
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: rgba(0, 0, 0, 1);
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: rgba(0, 0, 0, 1);
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a:not([aria-current="page"]) {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li:not([aria-selected="true"]),
.collapsible-nav-list li:not(.current) {
  display: none;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:not([aria-selected="true"]),
  .collapsible-nav-list li:not(.current) {
    display: block;
  }
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"],
.collapsible-nav-list li.current {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(206, 40, 91, 1);
    order: 1;
  }
}

.collapsible-nav-list li[aria-selected="true"] a,
.collapsible-nav-list li.current a {
  color: rgba(0, 0, 0, 1);
}

.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block;
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(45px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle-icon {
  display: none;
}

.collapsible-sidebar-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(206, 40, 91, 1);
}

.collapsible-sidebar-body {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  margin-bottom: 30px;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-subscribe button {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #333;
  font-size: 13px;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #333;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: #333;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid rgba(206, 40, 91, 1);
}

.request-main .form-field.comment-ccs > input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid rgba(206, 40, 91, 1);
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

.request-sidebar h2 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h2 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: #333;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt, .request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination-next, .pagination-prev, .pagination-first, .pagination-last {
  display: inline-block;
}

.pagination-first-link, .pagination-last-link {
  padding: 0 10px;
}

.pagination-first-text, .pagination-last-text {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.pagination-next-link {
  padding-right: 10px;
}

.pagination-next-text {
  margin-right: 10px;
}

[dir="rtl"] .pagination-next-link {
  padding-left: 10px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 10px;
}

.pagination-prev-link {
  padding-left: 10px;
}

.pagination-prev-text {
  margin-left: 10px;
}

[dir="rtl"] .pagination-prev-link {
  padding-right: 10px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 10px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group-opposite {
  float: right;
}

[dir="rtl"] .meta-group-opposite {
  float: left;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #333;
  font-size: 13px;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .content-container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .content-container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 80px;
  height: 80px;
}

.profile-avatar .icon-agent {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
  line-height: 25px;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.user-profile-actions {
  width: 100%;
  margin-bottom: 15px;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #333;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(206, 40, 91, 1);
  border-radius: 4px;
  color: rgba(206, 40, 91, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #333;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-badges-items {
  margin-top: 25px;
}

.profile-badges-item {
  border-top: 1px solid #ddd;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}

.profile-badges-item > div {
  padding-right: 12px;
  padding-left: 12px;
}

.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}

.profile-badges-item-image img {
  max-height: 40px;
}

[dir="rtl"] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}

.profile-badges-item-title, .profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}

.profile-badges-item-title {
  font-weight: 600;
}

.profile-badges-item-description, .profile-badges-item-metadata-description {
  color: #333;
  font-size: 13px;
  margin: 0;
}

.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}

[dir="rtl"] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-icon {
  left: 0;
  position: absolute;
  color: #ccc;
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-icon {
  right: 0;
}

.profile-contribution-icon svg {
  vertical-align: middle;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.private-activity-icon {
  margin-right: 10px;
}

[dir="rtl"] .private-activity-icon {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity-icon {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  text-align: center;
  color: #ccc;
}

[dir="rtl"] .profile-activity-icon {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity-icon {
    left: -14px;
  }
  [dir="rtl"] .profile-activity-icon {
    right: -14px;
  }
}

.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}

.search-results-sidebar {
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}

.search-results-sidebar .sidenav-item {
  border-radius: 4px;
  padding: 10px 36px;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 1);
}

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #666;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(0, 0, 0, 1);
}

.search-results-sidebar .see-all-filters[aria-hidden="true"] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: ' \2304';
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-results-list > li h2 {
  margin-bottom: 0;
}

.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
}

@media (min-width: 1024px) {
  .search-results .meta-group {
    display: flex;
  }
}

.search-results .meta-group > li {
  display: block;
}

@media (min-width: 1024px) {
  .search-results .meta-group > li {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .search-results .meta-group li:first-child {
    flex: 1;
  }
}

.search-results .meta-group .meta-data {
  color: inherit;
}

[dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-right: 20px;
}

[dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-left: 20px;
}

.search-results .meta-group .meta-data::after {
  content: none;
}

.search-results-description {
  margin-top: 10px;
  word-break: break-word;
}

.search-result-title {
  font-size: 16px;
  display: inline-block;
}

[dir="ltr"] .search-result-icons {
  float: right;
}

[dir="rtl"] .search-result-icons {
  float: left;
}

.search-result-votes, .search-result-meta-count {
  color: #333;
  display: inline-block;
  font-size: 13px;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(206, 40, 91, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs {
    display: table-row;
  }
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */
html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow;
}

/***** Notifications *****/
.notification {
  border: 1px solid;
  display: table;
  font-family: sans-serif;
  font-size: 12px;
  padding: 13px 15px;
  transition: height .2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
}

.notification-icon, .notification-text, .notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  padding: 0 15px;
  width: 100%;
}

.notification + .notification {
  margin-bottom: -1px;
  position: relative;
  top: -1px;
}

/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon::before, .notification-error .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}

/* Notice */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon::before, .notification-notice .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon::before, .notification-alert .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon::before, .notification-inline.notification-error::before {
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

/* Dismiss button */
.notification-dismiss, a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: .6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}

.notification-dismiss:hover {
  opacity: 1;
}

/* Inline notifications */
.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

[dir="rtl"] .notification-inline {
  text-align: right;
}

.notification-inline[aria-hidden="true"] {
  display: none;
}

.notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
  margin: -2px 5px 0 0;
}

[dir="rtl"] .notification-inline.notification-error::before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
  color: #cc3340;
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

.notification-left-aligned {
  text-align: left;
  padding-left: 0;
}

html[dir="rtl"] .notification-left-aligned {
  text-align: right;
  padding-left: auto;
  padding-right: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
}

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}

.dropdown-menu [role="menuitem"] {
  color: #333;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover, .dropdown-menu [role="menuitem"]:focus {
  background: #f3f3f3;
  text-decoration: none;
  color: #333;
}

.dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role="menuitem"][hidden], .dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}

[dir="rtl"] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}

/* style source 시작 -소프트퍼즐 */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-width: 1200px
    font-family: 'LGSmHaR', sans-serif;
}

@media screen and (max-width: 767px) {

    html,
    body {
        min-width: auto
    }

    html *,
    body * {
        box-sizing: border-box
    }
}

form,
input,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0
}

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

img {
    border: 0;
    vertical-align: top
}

table {
    border-collapse: collapse;
    border-spacing: 0 !important
}

th,
td {
    padding: 0
}

textarea {
    padding: 0;
    margin: 0
}

fieldset {
    display: block;
    border: none;
    padding: 0;
    margin: 0
}

legend,
caption {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important
}

.fl {
    float: left !important
}

.fr {
    float: right !important
}

.cb {
    clear: both !important
}

.ac {
    text-align: center !important
}

.al {
    text-align: left !important
}

.ar {
    text-align: right !important
}

.vt {
    vertical-align: top !important
}

.vm {
    vertical-align: middle !important
}

.vb {
    vertical-align: bottom !important
}

.oh {
    overflow: hidden !important
}

.cp {
    cursor: pointer !important
}

.di {
    display: inline !important
}

.dib {
    display: inline-block;
    display: -moz-inline-box
}

.dn {
    display: none !important
}

.db {
    display: block !important
}

.vv {
    visibility: visible !important
}

.vh {
    visibility: hidden !important
}

.bbn,
.bbn th,
.bbn td {
    border-bottom: none !important
}

.brn {
    border-right: none !important
}

.bln {
    border-left: none !important
}

.bn,
.bn td,
.bn th {
    border: none !important
}

.bgn,
.bgn td,
.bgn th {
    background: none !important
}

.fb {
    font-weight: bold !important
}

.fn {
    font-weight: normal !important;
    font-family: NanumGothic, "³ª´®°íµñ", nGothic, dotum, gulim !important
}

.fs {
    font-size: 12px !important
}

.fixed {
    table-layout: fixed
}

.pr {
    position: relative
}

.pan {
    padding: 0 !important
}

* {
    font-family: 'LGSmHaR', nGothic, "占쏙옙占쏙옙", dotum, gulim , sans-serif;
}

#skipMenu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 200
}

#skipMenu a {
    position: absolute;
    left: 0;
    top: -50px;
    display: block;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    z-index: 200;
    background: #ca165c
}

#skipMenu a:active,
#skipMenu #skipMenu a:focus {
    top: 0
}

#wrapper {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column
}



#util {
    position: relative;
    height: 32px;
    padding: 0 20px;
    margin: 0 auto;
    background: #b2b2b2;
  	width:100%;
}

#util .topBanner {
    float: left;
    height: 20px;
    padding: 3px 0 0 20px;
    margin-top: 4px;
    background: url(../images/designContest/ico_bann-png) no-repeat 0 0;
    color: #000;
    font-weight: bold;
    letter-spacing: -1px
}

#util .topBanner a {
    color: #000
}

#util .topBannerEvent {
    float: left;
    height: 20px;
    padding: 3px 0 0 30px;
    margin-top: 4px;
    background: url($assets-ico_bannEvent-png) no-repeat 0 0;
    color: #000;
    font-weight: bold;
    letter-spacing: -1px
}

#util .topBannerEvent a {
    color: #000
}

#util .topBanner2 {
    float: left;
    height: 20px;
    padding: 3px 0 0 27px;
    margin-top: 4px;
    background: url($assets-ico_caution3-png) no-repeat 0 0;
    color: #000;
    letter-spacing: -1px
}

#util .topBanner2 a {
    color: #000
}

#util .topBanner3 {
    float: left;
    height: 20px;
    padding: 3px 0 0 23px;
    margin-top: 4px;
    background: url($assets-ico_caution4-png) no-repeat 0 0;
    color: #000;
    letter-spacing: -1px
}

#util .topBanner3 a {
    color: #000
}

#util .utilCont {
    display: flex;
    align-items: center;
    height: 32px;
    justify-content: end
}

#util .imgBanner {
    float: left;
    height: 20px;
    padding: 3px 0 0 0px;
    margin-top: 2px
}

#util ul {
    display: flex;
    align-items: center;
    padding: 0 16px 0 0;
    flex: 0 0 auto
}

#util ul li {
    display: flex;
    align-items: center;
    padding-left: 6px;
    margin-left: 6px;
    font-size: 12px;
    line-height: 13px;
    background: url(/hc/theming_assets/01HZH7HD5P6JW1SBSNVRXKZCB6) 0px 6px no-repeat;
    flex: 0 0 auto
}

#util ul li.not-list-style {
    background: none
}

#util ul li a {
    color: #000;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    text-decoration: none
}

#util .srch .txt {
    float: left;
    width: 114px;
    height: 22px;
    padding: 0 5px;
    line-height: 22px;
    border: none;
    background: #e6e6e6
}

@media screen and (max-width: 767px) {
    #util {
        display: none
    }
}

#gnbArea {
    margin: 0 auto;
    background: #666;
    height: 70px;
  	width:100%;
}
#gnbArea .content-container{
}

#gnbArea .logo {
    float: left;
    width: 180px;
    height: 49px;
    padding: 21px 0 0 0
}

@media screen and (max-width: 767px) {
    #gnbArea {
        height: 55px
    }

    #gnbArea .logo {
        float: none;
        padding: 0;
        width: auto;
        height: auto
    }
  	#gnbArea .content-container{
    	display:flex;
      align-items:center;
      justify-content:space-between;
      height:100%;
      min-width:auto;
  	}
}

#gnb {
    height: 70px
}

#gnb>li {
    float: left
}

#gnb>li.gnb1 {
    margin-right: 52px
}

#gnb>li.gnb2 {
    margin-right: 52px
}

#gnb>li.gnb3 {
    margin-right: 52px
}

#gnb>li.gnb4 {
    margin-right: 22px
}

#gnb>li.gnb5 {
    margin-right: 35px
}

#gnb>li a {
    font-family: "LG Smart"
}

#gnb>li>a {
    position: relative;
    display: block;
    width: 117px;
    height: 70px;
    font-size: 16px;
    line-height: 70px;
    color: #fff;
    font-family: "LG Smart";
    text-align: center;
  	text-decoration:none;
}

#gnb>li>a span {
    display: block;
    width: 117px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
  	font-size:16px;
}

#gnb>li>a span.kor {
    height: 0px;
    width: 0px;
    overflow: hidden
}

#gnb li.on>a {
    background: #c70752
}

#gnb li.on>a span.eng {
    height: 0px;
    width: 0px;
    overflow: hidden
}

#gnb li.on>a span.kor {
    height: auto;
    width: auto
}

@media screen and (max-width: 767px) {
    #gnb {
        float: none;
        width: 70vw;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;
        background: #8b8b8b;
        display: none
    }

    #gnb::before {
        content: "전체메뉴";
        display: block;
        padding: 1rem;
        font-size: 22px;
        font-weight: 700;
        background: #4b4b4b;
        color: #fff;
        text-align: center
    }

    #gnb>li {
        float: none;
        margin-right: 0 !important;
        border-bottom: 1px solid #666
    }

    #gnb>li>a {
        width: auto;
        padding: 10px 1rem 13px;
        height: auto;
        line-height: normal;
        font-size: 16px
    }

    #gnb>li>a span {
        width: auto;
        height: auto;
        line-height: 1.5;
        text-align: left
    }

    #gnb>li.has-treeview>a::before {
        content: "";
        display: block;
        background: url(/hc/theming_assets/01HZH7HVM9MEDBJ88YNBATKEEW);
        width: 25px;
        height: 25px;
        background-size: contain;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%)
    }

    #gnb>li.has-treeview.active .subMenuArea {
        display: block !important
    }
}

.subMenuArea {
    display: none;
    position: absolute;
    width: 100%;
    top: 102px;
    left: 0px;
    border-bottom: 1px solid #dcdcdc;
    background: #fff;
}

.subMenuArea>div.body {
    position: relative;
    width: 1180px;
    margin: 0 auto;
    padding: 40px 10px 110px;
    min-height: 190px;
    display: flex
}

.subMenuArea>div.body:after {
    content: "";
    display: block;
    clear: both
}

.subMenuArea .titArea {
    position: relative;
    flex: 0 0 246px
}

.subMenuArea .titArea>strong.tit {
    color: #c70752;
    font-size: 30px;
    line-height: 32px;
    height: 42px;
    font-family: LG Smart;
    font-weight: bold;
    letter-spacing: -1px
}

.subMenuArea .titArea>p.txt {
    font-size: 14px;
    color: #5a5a5a;
    padding-top: 8px;
    line-height: 18px;
    font-family: LG Smart
}

.subMenuArea .banner {
    position: absolute;
    left: 20px;
    bottom: 40px
}

.subMenuArea .contArea {
    float: left;
    width: 914px;
    position: relative;
}

.subMenuArea .contArea:after {
    content: "";
    display: block;
    clear: both
}

.subMenuArea .bannerArea {
    position: absolute;
    right: 20px;
    bottom: 10px
}

.subMenuArea .bannerArea img {
    vertical-align: bottom
}

.subMenuArea .slideArea {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding-top: 165px;
    width: 162px;
    height: 20px;
    text-align: center
}

.subMenuArea .slideArea strong {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 8px;
    font-size: 8px
}

.subMenuArea .slideArea strong a {
    display: block;
    width: 14px;
    height: 14px;
    line-height: 8px;
    font-size: 8px;
    text-indent: -3000em;
    background: url(/hc/theming_assets/01HZH7HHKDFZY87DEH00V5BY12) no-repeat 0 0
}

.subMenuArea .slideArea strong.on a {
    background: url(/hc/theming_assets/01HZH7HM2SHT1F3YTCDZG0NJ57) no-repeat 0 0
}

.subMenuArea .slideArea div.section img.new {
    position: absolute;
    top: 0px;
    left: 5px
}

.subMenuArea .slideArea div.section {
    position: absolute;
    left: 0px;
    top: 0px;
    display: none
}

@media screen and (max-width: 767px) {
    .subMenuArea {
        position: static;
        border-bottom: 0
    }

    .subMenuArea>div.body {
        width: auto;
        display: block;
        min-height: auto;
        padding: 0 !important
    }

    .subMenuArea .titArea {
        display: none
    }

    .subMenuArea .contArea {
        float: none;
        width: auto
    }
}

.subTypeA ul {
    float: left;
    width: 227px;
    border-left: 1px solid #dcdcdc
}

.subTypeA ul li {
    padding: 5px 0 5px 20px;
    line-height: 16px;
    font-family: LG Smart
}

.subTypeA ul li:first {
    padding: 0px 0 5px 20px
}

@media screen and (max-width: 767px) {
    .subTypeA ul {
        float: none;
        width: auto;
        border-left: 0
    }

    .subTypeA ul li {
        padding: .75rem 1rem;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        float: left;
        width: 50%
    }
}

.subTypeB ul.menuList::after {
    content: "";
    display: block;
    clear: both
}

.subTypeB ul.menuList .nextLine {
    margin-left: 246px
}

.subTypeB ul.menuList>li {
    float: left;
    width: 113px;
    border-left: 1px solid #dcdcdc
}

.subTypeB ul.menuList>li strong {
    padding-left: 10px;
    font-size: 15px;
    color: #333;
    line-height: 20px;
    font-weight: normal;
  	white-space: nowrap;
}

.subTypeB ul.menuList>li strong a {
    color: #333
}

.subTypeB ul.menuList>li ul {
    padding-top: 10px
}

.subTypeB ul.menuList>li ul li {
    padding: 4px 0 4px 10px;
    font-size: 13px;
    line-height: 16px
}

@media screen and (max-width: 767px) {
    .subTypeB ul.menuList>li {
        float: none;
        width: auto !important;
        height: auto !important;
        line-height: 1.5 !important;
        position: static !important
    }

    .subTypeB ul.menuList>li strong {
        padding: 0;
        line-height: 1.5;
        display: block
    }
}

.gnb3 .subTypeB ul.menuList>li {
    width: 151px
}

.gnb3 .subTypeB ul.menuList>li.last {
    padding-top: 20px
}

.gnb3 .subMenuArea>div.body {
    padding: 40px 10px 40px
}

.gnb4 .subTypeB ul.menuList>li {
    width: 151px
}

.gnb4 .subMenuArea>div.body {
    padding-bottom: 50px
}

.gnb4 .subMenuArea .quickBoard {
    padding-top: 45px;
    clear: both;
}

.gnb4 .subMenuArea .quickBoard::after {
    content: "";
    display: block;
    clear: both
}

.gnb4 .subMenuArea .quickBoard .section {
    width: 425px;
    border-top: 1px solid #dcdcdc
}

.gnb4 .subMenuArea .quickBoard .section.fr {
    width: 445px
}

.gnb4 .subMenuArea .quickBoard .section strong.tit {
    display: inline-block;
    margin-top: -1px;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    border-top: 2px solid #000
}

.gnb4 .subMenuArea .quickBoard .section .cont {
    display: block;
    position: relative;
    padding-top: 15px
}

.gnb4 .subMenuArea .quickBoard .section .cont div.thum {
    position: absolute;
    left: 0px;
    top: 15px
}

.gnb4 .subMenuArea .quickBoard .section.fl a.cont {
    padding-left: 209px
}

.gnb4 .subMenuArea .quickBoard .section.fl a.cont div.thum {
    background: #fefefe;
    width: 189px;
    height: 122px
}

.gnb4 .subMenuArea .quickBoard .section.fl a.cont div.thum img {
    width: 189px;
    height: 122px
}

.gnb4 .subMenuArea .quickBoard .section.fl a.cont strong {
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 22px
}

.gnb4 .subMenuArea .quickBoard .section.fl a.cont p {
    padding-top: 10px;
    font-size: 13px;
    line-height: 18px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont {
    padding-left: 155px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont div.thum {
    background: #fefefe;
    width: 133px;
    height: 133px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont div.thum img {
    width: 133px;
    height: 133px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont strong {
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 22px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont strong span {
    display: block;
    font-size: 14px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont ul {
    padding-top: 10px
}

.gnb4 .subMenuArea .quickBoard .section.fr div.cont ul li {
    padding-left: 7px;
    background: url($assets-blt3-gif) no-repeat 0 7px;
    line-height: 20px;
    font-size: 13px
}

.gnb4 .subMenuArea .quickBoard .section.event a.cont {
    padding-left: 210px
}

.gnb5 .subTypeB ul.menuList>li {
    width: 151px
}

.gnb5 .subMenuArea>div.body {
    min-height: 0px;
    padding-bottom: 70px
}

.gnb5 .subMenuArea>div.body .contArea {
    position: static
}

.gnb5 .subMenuArea .quickBoard {
    padding-top: 80px;
    clear: both;
}

.gnb5 .subMenuArea .quickBoard::after {
    content: "";
    display: block;
    clear: both
}

.gnb5 .subMenuArea .quickBoard .section {
    float: left;
    width: 334px;
    margin-right: 50px;
    border-top: 1px solid #dcdcdc
}

.gnb5 .subMenuArea .quickBoard .section.ads {
    width: 165px
}

.gnb5 .subMenuArea .quickBoard .section.event {
    float: rght;
    width: 315px;
    margin-right: 0px
}

.gnb5 .subMenuArea .quickBoard .section strong.tit {
    display: inline-block;
    margin-top: -1px;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    border-top: 2px solid #000
}

.gnb5 .subMenuArea .quickBoard .section .cont {
    display: block;
    position: relative;
    padding-top: 15px
}

.gnb5 .subMenuArea .quickBoard .section .cont div.thum {
    position: absolute;
    left: 0px;
    top: 15px
}

.gnb5 .subMenuArea .quickBoard .section.pressRelease a.cont {
    padding-left: 170px
}

.gnb5 .subMenuArea .quickBoard .section.pressRelease a.cont div.thum {
    background: #fefefe;
    width: 151px;
    height: 98px
}

.gnb5 .subMenuArea .quickBoard .section.pressRelease a.cont div.thum img {
    width: 151px;
    height: 98px
}

.gnb5 .subMenuArea .quickBoard .section.pressRelease a.cont strong {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 18px
}

.gnb5 .subMenuArea .quickBoard .section.pressRelease a.cont p {
    padding-top: 5px;
    font-size: 13px;
    line-height: 18px
}

.gnb5 .subMenuArea .quickBoard .section.ads a.cont {
    color: #000
}

.gnb5 .subMenuArea .quickBoard .section.ads a.cont div.thum {
    position: static;
    width: 100%;
    height: 80px;
    background: #000;
    text-align: center
}

.gnb5 .subMenuArea .quickBoard .section.ads a.cont div.thum img {
    height: 80px
}

.gnb5 .subMenuArea .quickBoard .section.ads a.cont strong {
    display: block;
    font-size: 13px;
    line-height: 20px;
    padding: 2px 5px 0;
    text-align: center
}

.gnb5 .subMenuArea .quickBoard .section.event a.cont {
    padding-left: 170px
}

.gnb5 .subMenuArea .quickBoard .section.event a.cont div.thum {
    background: #fefefe;
    width: 151px;
    height: 98px
}

.gnb5 .subMenuArea .quickBoard .section.event a.cont strong {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 18px
}

.gnb5 .subMenuArea .quickBoard .section.event a.cont dl {
    padding-top: 5px;
    font-size: 13px;
    line-height: 18px
}

.gnb5 .subMenuArea .quickBoard .section.event a.cont dl dt {
    padding-top: 5px;
    font-size: 13px;
    color: #1765d5
}

.gnb5 .subMenuArea .quickBoard .section.event a.cont dl dd {
    padding-bottom: 3px;
    color: #666;
    font-size: 12px;
    line-height: 16px
}

.gnb6 .subTypeB ul.menuList>li {
    width: 181px
}

.gnb6 .subMenuArea .bannerArea {
    position: absolute;
    right: 20px;
    bottom: 40px
}

.gnb6 .subMenuArea .menuList li.sort1 {
    height: 225px
}

.gnb6 .subMenuArea .menuList li.sort2 {
    position: absolute;
    left: 0px;
    top: 45px
}

.gnb6 .subMenuArea .menuList li.sort3 {
    position: absolute;
    left: 0px;
    top: 90px
}

.gnb6 .subMenuArea .menuList li.sort4 {
    position: absolute;
    left: 0px;
    top: 135px
}

.gnb6 .subMenuArea .menuList li.sort5 {
    position: absolute;
    left: 0px;
    top: 180px
}

.gnb6 .subMenuArea .menuList li.sort6 {
    position: absolute;
    left: 0px;
    top: 225px
}

.locationArea {
    z-index: 1
}

#location {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    position: relative
}

#location::after {
    content: "";
    clear: both;
    display: block;
    width: 0;
    height: 0;
    visibility: hidden
}

#location>li+li::before {
    color: #d7d7d7;
    content: var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='5px' height='8px' viewBox='0 0 6 10' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon-arrow-next-gray-5' fill='%23939393' fill-rule='nonzero'%3E%3Cpolygon id='Path' points='0 0.577 4.757 4.999 0 9.423 0.62 10 6 4.999 0.62 0'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E"));
    padding: 0 .3rem 0 .75rem
}

#location li a {
    color: #000
}

#location li.home {
    width: 16px;
    height: 16px;
    padding: 0;
    background: url(/hc/theming_assets/01HZH7HTR04DZ73DG5KXJ2Q1AW) center
}

#location li.home a:first-child {
    display: block;
    width: 15px;
    height: 15px
}

#location li p {
    display: inline-block;
    height: 20px;
    font-size: 13px;
    line-height: 15px;
    color: #a9a9a9
}

#location li p a {
    display: inline-block;
    padding-right: 25px;
    background: url(../images/icon-breadcrumb-dropdown-svg) no-repeat 100% 0;
    height: 16px
}

#location li div {
    display: none;
    border: 1px solid #c70752;
    position: absolute;
    height: auto;
    padding-top: 21px;
    margin-top: 4px;
    width: 152px;
    background-color: #fff
}

#location li div::before {
    content: "";
    border-color: #c70752 transparent;
    border-style: solid;
    border-width: 0 6px 8px 6.5px;
    display: block;
    left: 20%;
    position: absolute;
    top: -8px;
    width: 0;
    z-index: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #c70752
}

#location li div::after {
    border-style: solid;
    content: "";
    border-width: 0 6px 8px 6.5px;
    display: block;
    left: 20%;
    position: absolute;
    top: -7px;
    width: 0;
    z-index: 1;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff
}

#location li div.on {
    display: block
}

#location li p.fb a {
    color: #000;
    font-weight: bold
}

#location li ul {
    padding-bottom: 25px;
    background: url($assets-bg_location_bot-png) no-repeat 0 100%
}

#location li ul li {
    width: 112px;
    padding: 0 20px;
    margin: 0;
    color: #000;
    line-height: 24px;
    vertical-align: top
}

#location li ul li.on,
#location li #location li ul li.over,
#location li ul li.on a,
#location li #location li ul li.over a {
    color: #c70752
}

#location li ul li a {
    display: block;
    font-size: 13px;
    line-height: 24px
}

#location .lh {
    line-height: 16px
}

#container {
    flex-grow: 1;
    height: auto;
    width: 100%;
}

#container::after {
    content: "";
    display: block;
    clear: both
}

#contArea {
    float: left;
/*     width: 900px */
}

#contArea h2 {
    padding: 12px 0 15px;
    font-weight: bold;
    font-size: 22px;
    color: #454545;
    background: url($assets-bg_tit-gif) no-repeat left top
}

#sidebar {
    float: right;
    width: 205px
}

#sidebar .article {
    margin-bottom: 60px
}

#sidebar .article p.tit {
    height: 32px;
    line-height: 32px;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    text-align: center
}

#sidebar .article p.tit strong {
    color: #252525
}

#sidebar .article p.text {
    min-height: 67px;
    padding: 15px 0 10px 74px;
    font-size: 12px;
    line-height: 18px
}

#sidebar .article p.banner {
    padding: 15px 0 0;
    text-align: center
}

#sidebar .article p.btn {
    padding-top: 15px;
    text-align: center
}

.newProArea {
    position: relative;
    margin: 15px 0;
    overflow: hidden
}

.newProArea .slideCont {
    width: 190px;
    height: 245px;
    margin: 0 auto;
    text-align: center
}

.newProArea .slideCont p.txt {
    padding-top: 15px;
    font-size: 13px;
    color: #555;
    line-height: 18px
}

.newProArea li {
    width: 190px;
    z-index: 5 !important
}

.newProArea li img {
    width: 190px;
    height: 190px
}

.newProArea .prev {
    position: absolute;
    left: 0;
    top: 77px;
    z-index: 5;
    width: 19px;
    height: 53px;
    background: url($assets-btn/btn_prev2-png) no-repeat left top;
    overflow: hidden
}

.newProArea .next {
    position: absolute;
    right: 0;
    top: 77px;
    z-index: 5;
    width: 19px;
    height: 53px;
    background: url($assets-btn/btn_next2-png) no-repeat left top;
    overflow: hidden
}

.sidebarStory ul li {
    position: relative;
    padding: 0 0 0 20px;
    font-size: 13px;
    line-height: 20px;
    background: url($assets-blt4-gif) no-repeat 10px 50%
}

.sidebarStory ul li a {
    font-size: 12px;
    color: #454545
}

.sidebarStory ul li span.date {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    font-size: 11px;
    color: #757575
}

.sidebarRight1 p.text {
    background: url($assets-ico_sidebar1-gif) no-repeat 0 15px
}

.sidebarRight1 a.detailBtn {
    display: inline-block;
    font-size: 11px;
    color: #c70752
}

.sidebarRight1 a.detailBtn:hover {
    border-bottom: 1px solid #c70752
}

.sidebarRight2 p.text {
    background: url($assets-ico_sidebar2-gif) no-repeat 0 15px
}

.sidebarRight2 a.detailBtn {
    display: inline-block;
    font-size: 11px;
    color: #c70752
}

.sidebarRight2 a.detailBtn:hover {
    border-bottom: 1px solid #c70752
}

.sidebarManage1 .cont {
    width: 192px;
    margin: 0 auto;
    padding: 15px 0 10px
}

.sidebarManage1 .cont a {
    display: block
}

.sidebarManage1 .cont p.thumb {
    width: 192px;
    height: 121px
}

.sidebarManage1 .cont p.thumb img {
    width: 100%;
    height: 100%
}

.sidebarManage1 .cont strong {
    display: inline-block;
    color: #252525;
    line-height: 28px
}

.sidebarManage1 .cont span {
    display: inline-block;
    font-size: 12px;
    color: #757575;
    line-height: 18px
}

.sidebarManage1 .cont span.detailBtn {
    display: inline;
    padding-top: 10px;
    font-size: 11px;
    color: #c70752
}

.sidebarManage1 .cont span.detailBtn:hover {
    text-decoration: underline
}

.sidebarManage2 p.text {
    background: url($assets-ico_sidebar3-gif) no-repeat 0 15px
}

.sidebarManage2 a.detailBtn {
    display: inline;
    font-size: 11px;
    color: #c70752
}

.sidebarManage2 a.detailBtn:hover {
    text-decoration: underline
}

.sidebarIr p.text {
    background: url($assets-ico_sidebar4-gif) no-repeat 0 15px
}

.sidebarIr a.detailBtn {
    display: inline;
    font-size: 11px;
    color: #c70752
}

.sidebarIr a.detailBtn:hover {
    text-decoration: underline
}

.sidebarRecruit p.text {
    background: url($assets-ico_sidebar5-gif) no-repeat 0 15px
}

.sidebarRecruit a.detailBtn {
    display: inline;
    font-size: 11px;
    color: #c70752
}

.sidebarRecruit a.detailBtn:hover {
    text-decoration: underline
}

.sidebarIconnect p.text {
    background: url($assets-ico_sidebar6-gif) no-repeat 0 15px
}

.sidebarIconnect ul {
    border-top: 1px solid #f4f4f4
}

.sidebarIconnect ul li {
    padding: 0 0 0 20px;
    font-size: 13px;
    line-height: 27px;
    border-bottom: 1px solid #f4f4f4;
    background: url($assets-blt5-gif) no-repeat 10px 50%
}

#footer {
    width: 100%;
    background: #333
}

#footer .footCont {
    position: relative;
    width: 1160px;
    height: 235px;
    margin: 0 auto;
    overflow: hidden
}

#footer .footCont .wa {
    position: absolute;
    top: 139px;
    right: 0
}

#footer .logo {
    float: left;
    width: 180px;
    padding: 64px 0 0 0
}

#footer .content {
    float: left;
    width: 700px;
    padding-top: 30px
}

#footer .content * {
    color: #afafaf;
    font-size: 12px;
    line-height: 13px
}

#footer .nav {
    height: 30px
}

#footer .nav li {
    float: left;
    padding-right: 8px;
    margin-right: 6px;
    background: url(/hc/theming_assets/01HZH7HVG411H6XJ2JSWHTX6G2) no-repeat 100% 6px
}

#footer .nav li * {
    font-size: 16px;
    color: #e5e5e5;
    line-height: 20px
}

#footer .nav li.color a {
    font-size: 16px;
    font-weight: bold;
    color: #C7004C;
    line-height: 20px;
    font-family: nGothicB
}

#footer .nav li.cps {
    margin-left: 237px;
    background: none
}

#footer .company {
    height: 85px;
    overflow: hidden
}

#footer .company address {
    height: 22px;
    font-style: normal;
  	margin-bottom:0;
}

#footer .company dl {
    height: 22px;
  	margin-bottom:0;
}

#footer .company dl:after {
    content: "";
    display: block;
    clear: both
}

#footer .company dt {
    float: left
}

#footer .company dd {
    float: left;
    padding-right: 10px;
    margin-right: 8px;
    background: url(/hc/theming_assets/01HZH7HVG411H6XJ2JSWHTX6G2) no-repeat 100% 3px
}

#footer .company dd.bgn {
    padding-right: 0;
    margin-right: 0
}

#footer .company p {
    height: 20px;
    overflow: hidden
}

#footer .copy {
    font-size: 12px;
    line-height: 33px;
}

#footer .goTop {
    position: absolute;
    right: 0;
    top: 32px
}

#footer .goTop strong {
    display: inline-block;
    padding-left: 20px;
    font-size: 16px !important;
    line-height: normal;
    color: #dcdcdc;
    background: url(/hc/theming_assets/01HZH7HTKEGMXBFM33G49YPGVW) no-repeat 0 50%
}

#footer .customercenter {
    padding-left: 15px;
    padding-top: 30px
}

#footer .customercenter::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 300px;
    width: 1px;
    height: 150px;
    background: #6a6a6a
}

#footer .customercenter p {
    font-size: 16px;
    color: #e5e5e5
}

#footer .customercenter strong {
    display: block;
    font-size: 23px;
    font-weight: 600;
    color: #e5e5e5;
    padding: 10px 0
}

#footer .customercenter span {
    font-size: 13px;
    color: #e5e5e5;
    line-height: 22px
}

#footer .customercenter span>span {
    display: inline-block;
    width: 6%
}

@media screen and (max-width: 767px) {
    #footer {
        padding: 1.5rem 1rem
    }
    #footer .customercenter > div{
      margin-top:1rem;
    }
    #footer .logo {
        float: none;
        padding: 0;
        margin-bottom: 1.25rem
    }

    #footer .logo img {
        width: 100px
    }

    #footer .goTop {
        top: 0
    }

    #footer .wa {
        display: none
    }

    #footer .nav {
        display: none
    }

    #footer .footCont {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column
    }

    #footer .content {
        order: 2;
        float: none;
        width: auto
    }

    #footer .content p {
        line-height: 1.4
    }

    #footer .customercenter {
        order: 1;
        display: flex;
        padding: 0;
        justify-content: space-between
    }

    #footer .customercenter::before {
        display: none
    }

    #footer .customercenter strong {
        font-size: 18px
    }

    #footer .customercenter span>span {
        width: 80px
    }

    #footer .customercenter>div+div {
        padding-left: 2rem
    }
}

.footHead {
    background: #b2b2b2;
    border-bottom: 1px solid #4b4b4b
}

.footHead .bgWrap {
    position: relative;
    margin: 0 auto
}

.footHead .bgWrap .tabs {
    display: flex;
    align-items: center;
    max-width: 1160px;
    margin: auto;
    height: 37px
}
.footHead .bgWrap .tabs h2{
    font-size: 16px;
    margin-bottom: 0;
}

.footHead .bgWrap .tabs h2 span {
    display: inline-block;
    padding: 0 55px;
    font-size: 16px;
    line-height: 37px
}

.footHead .bgWrap .tabs h2 a {
    color: #000 !important;
    height: 37px;
    display: block
}

.footHead .bgWrap .tabs h2.on {
    background: #333
}

.footHead .bgWrap .tabs h2.on a {
    color: #afafaf !important
}

.footHead .bgWrap .tabs h2.on span {
    display: inline-block;
    margin-right: 25px;
    padding-right: 30px;
    background: url(/hc/theming_assets/01HZH7H4FQRZ0C45KA0XWTZFTT) no-repeat 100% 50%
}

.footHead .bgWrap .tabgroup {
    background: #333
}

.footHead .bgWrap .tabgroup .footTabSection {
    display: none;
    width: 100%;
    padding: 40px 0 60px;
    max-width: 1160px;
    margin: auto
}

@media screen and (max-width: 767px) {
    .footHead {
        display: none
    }
}

.footTabSection::after {
    content: "";
    display: block;
    clear: both
}

.footTabSection .acticle {
    position: relative
}

.footTabSection .acticle strong.tit {
    display: block;
    height: 60px;
    font-size: 30px;
    color: #fff;
    line-height: 32px
}

.footTabSection .acticle a {
    color: #e5e5e5
}

.footTabSection .footListTypeA ul {
    position: absolute;
    width: 50%;
    top: 60px
}

.footTabSection .footListTypeA ul li {
    font-size: 15px;
    line-height: 25px
}

.footTabSection .footListTypeB>ul {
    position: relative
}

.footTabSection .footListTypeB>ul>li {
    position: absolute;
    width: 50%;
    top: 0px;
    padding-bottom: 10px
}

.footTabSection .footListTypeB>ul>li strong {
    display: block;
    font-size: 17px;
    line-height: 25px;
    color: #fff
}

.footTabSection .footListTypeB>ul>li strong a {
    color: #fff
}

.footTabSection .footListTypeB>ul>li ul {
    padding-top: 5px
}

.footTabSection .footListTypeB>ul>li ul li {
    font-size: 13px;
    line-height: 22px
}

.footTabSection .footListTypeB>ul>li.last {
    left: 191px !important;
    top: 394px !important
}

@media screen and (max-width: 767px) {
    .footTabSection .footListTypeB>ul>li {
        position: static !important
    }
}

#brandAll .acticle {
    float: left;
    width: 33%
}

#sitemap>ul {
    position: relative;
}

#sitemap>ul:after {
    content: "";
    display: block;
    clear: both
}

#sitemap>ul>li {
    float: left;
    width: 12%
}

#sitemap>ul>li.wide {
    width: 13%
}

#sitemap>ul>li>a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    line-height: 22px;
    font-family: nGothic, "ï¿½ï¿½ï¿½ï¿½"
}

#sitemap>ul>li>ul {
    padding-top: 10px
}

#sitemap>ul>li>ul>li {
    padding: 2px 0
}

#sitemap>ul>li>ul>li>a {
    font-size: 13px;
    color: #e5e5e5;
    line-height: 22px
}

#sitemap>ul>li>ul>li>ul {
    margin-left: -4px;
    padding-bottom: 10px
}

#sitemap>ul>li>ul>li>ul>li {
    padding-left: 9px;
    background: url(/hc/theming_assets/01HZH7HQF2VGY3Z2S7NY9P1QNX) no-repeat 0 11px;
    line-height: 20px
}

#sitemap>ul>li>ul>li>ul>li>a {
    font-size: 12px;
    color: #afafaf
}

#sitemap>ul>li.sm_healthy {
    position: absolute;
    left: 0px;
    top: 60px
}

#sitemap>ul>li.sm_refreshing {
    position: absolute;
    left: 0px;
    top: 120px
}

#sitemap>ul>li.sm_review {
    position: absolute;
    left: 0px;
    top: 180px
}

#sitemap>ul>li.sm_i-connect {
    padding-top: 40px
}

#famliySite>ul {
    position: relative;
}

#famliySite>ul:after {
    content: "";
    display: block;
    clear: both
}

#famliySite>ul>li {
    display: inline;
    float: left;
    width: 200px;
    vertical-align: top
}

#famliySite>ul>li>strong {
    display: block;
    min-height: 56px;
    font-size: 24px;
    color: #fff;
    line-height: 26px
}

#famliySite>ul>li>ul>li>a {
    font-size: 15px;
    color: #fff;
    line-height: 28px
}

#famliySite>ul>li.wide {
    width: 360px
}

#famliySite>ul>li.wide>ul {
    float: left;
    width: 180px
}

#famliySite>ul>li.sm_site {
    position: absolute;
    left: 0;
    top: 178px
}

.fontSize {
    position: absolute;
    right: 0;
    top: 9px
}

.fontSize span {
    display: inline-block;
    text-indent: -10000em
}

.fontSize button {
    display: inline-block;
    float: left;
    width: 25px;
    height: 25px;
    margin-left: 10px;
    padding: 0;
    border: none;
    background: url($assets-ico_size-gif) no-repeat left top;
    vertical-align: middle;
    cursor: pointer
}

.fontSize button.size_reduce {
    background-position: -25px 0
}

.subIndex .locationArea,
.bodyDetail .locationArea {
    display: none
}

.proBodyDetail .locationArea {
    display: block
}

.proBodyDetail .proDetailWrap {
    padding-top: 87px
}

.main {
    background-color: #fafafa
}

#content {
    min-height: 100%;
    padding-bottom: 100px;
    width: 100%;
    height: auto;
    margin: auto;
    box-sizing: border-box
}

@media screen and (max-width: 767px) {
    #content {
        padding-bottom: 30px
    }
}

#cusSidebar {
    border: 1px solid #e8e8e8;
    padding: 35px 0;
    width: 100%;
    flex: 0 0 240px;
    box-sizing: border-box
}

#cusSidebar .dep1>li>a {
    color: #2d2d2d;
    font-size: 16px;
    letter-spacing: -0.16px;
    padding: 17px 0 15px 35px;
    display: inline-block;
    font-weight: bolder;
    position: relative
}

#cusSidebar .dep1>li>a.active {
    color: #c70752
}

#cusSidebar .dep1>li>a.active::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #c70752;
    border-radius: 50%;
    display: inline-block;
    right: -8px;
    top: 12px
}

.accordion-item {
    display: none;
  	border:0!important;
}

.accordion-item li a {
    font-size: 14px;
    letter-spacing: -0.14px;
    padding: 13px 0 11px 35px;
    display: block;
  	font-weight: 600
}
.menu-list-mobile-items .accordion-item{
   background:#f7f7f7;
}

.menu-list-mobile-items .accordion-item a{
  font-weight:400;
}

#cusSidebar+.contArea {
    margin-left: -1px;
  	flex: 0 0 calc(100% - 240px);
}

@media screen and (max-width: 767px) {
    #cusSidebar {
        display: none
    }
    #cusSidebar+.contArea {
        flex: 0 0 100%;
    }
}

@CHARSET "euc-kr";

@font-face {
    font-family: 'LGSmHaR';
  	font-weight:normal;
  	font-weight:400;
    src: local('LGSmHaR'), url('/hc/theming_assets/01HZH7HV5VF2QXK6D02753DG9C') format("woff");
}

@font-face {
    font-family: 'LGSmHaR';
    font-weight: bold;
    font-weight: 600;
    src: local('LGSmHaR'), url('/hc/theming_assets/01HZH7HDH8BPKQ235JE4PH9VTZ') format("woff");
}

@font-face {
    font-family: 'LGSmHaR';
    font-weight: 500;
    src: local('LGSmHaR'), url('/hc/theming_assets/01HZH7HV5VF2QXK6D02753DG9C') format("woff");
}

/* @font-face {
    font-family: 'LGSmHaR';
    src: local('LGSmHaR'), url('//lghnhhelp.zendesk.com/hc/ko/LGSmHanR-woff'));
}

@font-face {
    font-family: 'LGSmHaR';
    font-weight: bold;
    font-weight: 600;
    src: local('LGSmHaR'), url('//lghnhhelp.zendesk.com/hc/ko/LGSmHanB.woff')) format("woff");
}

@font-face {
    font-family: 'LGSmHaR';
    font-weight: 500;
    src: local('LGSmHaR'), url('//lghnhhelp.zendesk.com/hc/ko/LGSmHanB.woff') format("woff");
} */


@font-face {
    font-family: nGothic;
    font-style: normal;
    font-weight: normal;
    src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.eot);
    src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.eot?#iefix) format("embedded-opentype"), url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.ttf) format("truetype")
}

@font-face {
    font-family: nGothicB;
    font-style: normal;
    font-weight: normal;
    src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.eot);
    src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.eot?#iefix) format("embedded-opentype"), url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.woff2) format("woff2"), url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.woff) format("woff"), url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.ttf) format("truetype")
}

td,
div,
p,
li,
dt,
dd,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5 {
    font-family: 'LGSmHaR', nGothic, "µ¸¿ò", dotum, gulim, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #666
}

a:link {
    color: #666;
    text-decoration: none
}

a:visited {
    color: #666;
    text-decoration: none
}

a:hover {
    color: #c70752;
    text-decoration: none
}

a:focus {
    color: #c70752;
    text-decoration: none
}

a:active {
    color: #666;
    text-decoration: none
}

select {
    height: 33px;
    line-height: 33px;
    border: 1px solid #dadada;
    vertical-align: middle
}

input.txt {
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: middle;
    background: #fff
}

input[type=text],
input[type=password],
input[type=file] {
    height: 33px;
    padding: 0 5px;
    line-height: 33px;
    border: 1px solid #dadada;
    background: #fff;
    vertical-align: middle
}

input.rdo,
input.chk,
input[type=radio],
input[type=checkbox] {
    width: 14px;
    height: 14px;
    padding: 0;
    margin: 0;
    vertical-align: middle
}

textarea {
    border: 1px solid #dbdbdb;
    border-top-color: #999;
    border-left-color: #999;
    padding: 0;
    margin: 0;
    line-height: 20px;
    background: #fff
}

textarea,
.scr {
    scrollbar-face-color: #fff;
    scrollbar-highlight-color: #d0d0d0;
    scrollbar-3dlight-color: #fff;
    scrollbar-shadow-color: #d0d0d0;
    scrollbar-darkshadow-color: #fff;
    scrollbar-track-color: #fff;
    scrollbar-arrow-color: #968a7c;
    overflow-x: hidden;
    overflow-y: auto
}

.ip {
    padding: 0 5px;
    border: 1px solid #dadada;
    background: #fff
}

span.ip {
    display: inline-block
}

.ip input[type=text],
.ip input[type=password],
.ip input[type=tel],
.ip input[type=number],
.ip textarea {
    width: 100%;
    padding: 0;
    border: none
}

a,
button,
input,
textarea {
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s
}

.eui_defaultSelect {
    display: inline-block;
    *display: inline;
    position: relative;
    margin-right: 4px;
    z-index: 10;
    text-align: left;
    font-weight: normal;
    vertical-align: middle
}

.eui_defaultSelect .euiSelectMain {
    height: 33px;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid #dadada;
    cursor: pointer;
    line-height: normal;
    background: #fff url($assets-btn_arrow-gif) no-repeat right top
}

.eui_defaultSelect .euiSelectMain .euiSelectTitle {
    float: left;
    padding: 0 33px 0 5px;
    margin: 0;
    height: auto;
    display: inline;
    font-size: 13px;
    color: #c70752;
    line-height: 33px
}

.eui_defaultSelect .euiSelectList {
    display: none;
    position: absolute;
    width: 100%;
    padding: 4px 0;
    top: 33px;
    border: 1px solid #dadada;
    background: #fff;
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto
}

.eui_defaultSelect .euiSelectList li {
    padding: 3px 0 3px 5px !important;
    cursor: pointer;
    clear: both;
    width: 100%;
    text-align: left;
    font-size: 13px;
    color: #666
}

.eui_defaultSelect .euiSelectList li span {
    display: none
}

.eui_defaultSelect .euiSelectList li a {
    height: auto !important
}

strong,
em,
.fb {
    font-style: normal;
    font-weight: normal
}

.hideDesc {
    position: absolute;
    left: 0;
    top: -10000px;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1px !important;
    line-height: 1px !important;
    overflow: hidden
}

.fontTypeW {
    color: #fff !important
}

.fontType1 {
    color: #d6179b !important
}

.fontType2 {
    color: #d41818 !important
}

.fontType3 {
    color: #1765d5 !important
}

.fontType4 {
    color: #c70752 !important
}

.fontType5 {
    color: #252525 !important
}

.fontType6 {
    color: #333 !important
}

.fontType7 {
    color: #000 !important
}

.fontType8 {
    color: #7f2347 !important
}

.fontType9 {
    color: #757575 !important
}

.fontType10 {
    color: #aaa !important
}

.fontType11 {
    color: #bf0051 !important
}

.bgFontType {
    padding: 0 2px;
    color: #fff !important;
    background: #c70752 !important
}

.bgFontType1 {
    padding: 0 2px;
    color: #fff !important;
    background: #d6179b !important
}

.bgFontType2 {
    padding: 0 2px;
    color: #fff !important;
    background: #d41818 !important
}

.bgFontType3 {
    padding: 0 2px;
    color: #fff !important;
    background: #1765d5 !important
}

.pt0 {
    padding-top: 0 !important
}

.pdt05 {
    padding-top: 0 !important
}

.pdt20 {
    padding-top: 20px
}

.pdt70 {
    padding-top: 70px
}

.pdt100 {
    padding-top: 100px
}

.pdr15 {
    padding-right: 15px
}

.pdr25 {
    padding-right: 25px
}

.pdr35 {
    padding-right: 35px
}

.pdr40 {
    padding-right: 40px
}

.pdb05 {
    padding-bottom: 5px
}

.pdb50 {
    padding-bottom: 50px
}

.pdb65 {
    padding-bottom: 65px
}

.pl40 {
    padding-left: 40px !important
}

.pt20 {
    padding-top: 20px !important
}

.pt80 {
    padding-top: 80px !important
}

.mt20 {
    margin-top: 20px !important
}

.mt50 {
    margin-top: 50px !important
}

.mr45 {
    margin-right: 45px !important
}

.mb40 {
    margin-bottom: 40px !important
}

.btnArea {
    padding-top: 40px;
    text-align: center;
}

.hbtnType {
    height: 48px !important;
    padding: 0 50px !important;
    line-height: 48px !important
}

.btnType1 {
    display: inline-block;
    height: 21px;
    padding: 0 15px;
    font-size: 11px;
    color: #454545 !important;
    line-height: 21px;
    border: 1px solid #dcdcdc;
    background: #f9f9f9;
    text-align: center
}

.btnType1 span {
    display: block;
    padding: 0 20px 0 4px;
    background: url(/hc/theming_assets/01HZH7HS7EMG7DYT891CXR6J07) no-repeat 100% 50%
}

.btnType1:hover,
.btnType1:focus,
.btnType1:active {
    color: #fff !important;
    background: #c70752
}

.btnType1:hover span,
.btnType1:focus span,
.btnType1:active span {
    background-image: url(/hc/theming_assets/01HZH7HRW8P8WR5HRRKQ96ZS86)
}

.btnType2 {
    display: inline-block;
    height: 21px;
    padding: 0 10px;
    font-size: 13px;
    color: #c70752 !important;
    line-height: 21px;
    border: 1px solid #ca165c;
    background: #fff !important;
    text-align: center
}

.btnType2:hover {
    color: #c70752
}

.btnType3 {
    display: inline-block;
    height: 48px;
    padding: 0 18px;
    font-size: 16px;
    color: #333 !important;
    line-height: 48px;
    background: #dcdcdc;
    border: 1px solid silver
}

.btnType3:hover {
    color: #333
}

.btnType3.inputSize {
    height: 33px;
    line-height: 33px;
    padding: 0 20px;
    font-size: 14px
}

.btnType4 {
    display: block;
    min-width: 160px;
    width: 40%;
    height: 50px;
    margin: 10px auto;
    background: #c70752;
    font-size: 16px;
    color: #fff !important;
    text-align: center;
    line-height: 50px;
    box-sizing: border-box
}

.btnType4:hover {
    color: #fff
}

.btnType4.bigSize {
    height: 48px;
    line-height: 48px;
    padding: 0 40px
}

.btnType5 {
    display: inline-block;
    height: 32px;
    min-width: 62px;
    padding: 0 6px;
    text-align: center;
    line-height: 32px;
    background: #535353;
    color: #fff !important;
    box-sizing: border-box
}

.btnType5:hover {
    color: #fff
}

.downBtn {
    display: inline-block;
    height: 15px;
    padding: 0 15px 0 0;
    font-size: 11px;
    color: #454545 !important;
    line-height: 15px;
    background: url($assets-ico_down-gif) no-repeat 100% 1px
}

.downBtn2 {
    display: inline-block;
    height: 21px;
    overflow: hidden
}

.downBtn2:hover img,
.downBtn2:focus img,
.downBtn2:active img {
    margin-top: -21px
}

.moreBtn {
    display: inline-block;
    height: 22px;
    overflow: hidden
}

.moreBtn:hover img,
.moreBtn:focus img,
.moreBtn:active img {
    margin-top: -22px
}

.resultBtn {
    display: inline-block;
    height: 28px;
    padding: 0 15px;
    line-height: 28px;
    border: 1px solid #e1e1e1;
    background: #ebebeb
}

.resultBtn span {
    display: block;
    padding: 0 20px 0 5px;
    font-size: 13px;
    color: #454545;
    background: url($assets-ico_arrow5-gif) no-repeat 100% 50%
}

.btnImgType {
    display: inline-block;
    height: 21px;
    overflow: hidden
}

.btnImgType:hover img,
.btnImgType:focus img,
.btnImgType:active img {
    margin-top: -21px
}

.tabTypeA {
    padding-bottom: 60px;
}

.tabTypeA:after {
    content: "";
    display: block;
    clear: both
}

.tabTypeA li {
    position: relative;
    float: left;
    height: 44px
}

.tabTypeA li a {
    display: block;
    height: 28px;
    padding-top: 10px;
    margin: 0 4px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    text-align: center;
    line-height: 17px;
    color: #454545
}

.tabTypeA li strong {
    font-family: nGothic, "µ¸¿ò";
    font-weight: normal;
    font-size: 13px;
    color: #454545
}

.tabTypeA li.first a {
    margin-left: 0;
    border-left: 1px solid #dcdcdc
}

.tabTypeA li.last a {
    margin-right: 0;
    border-right: 1px solid #dcdcdc
}

.tabTypeA li.committee a {
    margin-right: 0;
    border-right: 1px solid #dcdcdc
}

.tabTypeA li.on a {
    height: 27px;
    border-bottom: 3px solid #c90652;
    color: #c70752
}

.tabTypeA li.on span {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 3px;
    height: 3px;
    background: url($assets-ico_tab_on-gif) no-repeat 0 0
}

.tabTypeA li ul {
    margin: 3px 4px 0;
    padding: 10px 0;
}

.tabTypeA li ul:after {
    content: "";
    display: block;
    clear: both
}

.tabTypeA li ul li {
    width: 49.5% !important;
    height: auto !important
}

.tabTypeA li ul li a {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 13px;
    color: #757575 !important;
    line-height: 13px !important;
    border: none !important
}

.tabTypeA li ul li.on a {
    height: auto !important;
    color: #252525 !important
}

.tabTypeB:after {
    content: "";
    display: block;
    clear: both
}

.tabTypeB li {
    position: relative;
    float: left
}

.tabTypeB li a {
    display: block;
    height: 100%;
    padding: 10px;
    text-align: center;
    color: #252f2c;
    font-size: 15px;
    border: 1px solid #dcdcdc
}

.tabTypeB li.on a {
    border: 1px solid #c70752;
    color: #c70752
}

.tabNum2 li {
    width: 50%
}

.tabNum3 li {
    width: 33.3%
}

.tabNum4 li {
    width: 25%
}

.tabNum5 li {
    width: 20%
}

.tabNum6 li {
    width: 16.6%;
    vertical-align: top
}

.tabNum6 li.last {
    width: 16.8%
}

.tabNum7 li {
    width: 14.2%
}

.tabNum7 li.last {
    width: 14.6%
}

.tabNum8 li {
    width: 13%
}

.tabNum8 li.last {
    width: 9%
}

.tabNum9 li {
    width: 11.1%
}

.tabNum9 li.last {
    width: 11.2%
}

.tabNum8.H095 li.first {
    width: 12%
}

.tabNum8.H095 li.last {
    width: 10%
}

.tabNum8.H095 li a {
    padding: 10px 0px 0;
    margin-left: -2px
}

.tabNum9 li a {
    padding: 10px 11px 0 10px
}

.tabNum9.H095 li a {
    padding: 10px 10px 0
}

.tabNum9.H121 li a {
    padding: 10px 19px 0
}

.tabNum10 li a {
    padding: 10px 3px 0 4px
}

.paging {
    padding-top: 50px;
  	display: flex;
    align-items: center;
    justify-content: center;
}

.paging li {
    display: inline-block;
    *display: inline;
    margin: 0 4px;
    padding:0;
}

.paging li span,
.paging li strong {
    display: inline-block;
    height: 25px;
    padding: 0 8px;
    line-height: 25px
}

.paging li span {
    color: #000;
    border: 1px solid #dedede;
    background: #fff
}

.paging li span.on,
.paging li strong,
.paging li a:hover span,
.paging li a:focus span {
    color: #fff;
    border: 1px solid #c70752;
    background: #c70752
}

.paging li.btn {
    font-size:inherit;
}

.paging p{
  display:flex;
  align-items:center;
}

.paging li.btn span,
.paging li.btn a span {
    color: #000;
    border: 1px solid #dedede;
    background: #e9e9e9
}

.list {
    width: 100%;
    border-top: 1px solid #c70752;
    border-bottom: 1px solid #bcbcbc;
    table-layout: fixed
}

.list thead th {
    padding: 13px 0;
    border-bottom: 1px solid silver;
    border-right: 1px solid #dcdcdc;
    font-size: 15px;
    line-height: 18px;
    color: #333;
    font-family: nGothic, "µ¸¿ò", dotum, gulim;
    font-weight: normal
}

.list thead th .fs {
    font-size: 12px;
    font-weight: normal;
    font-family: nGothic, "µ¸¿ò"
}

.list thead th.al {
    padding-left: 15px
}

.list tbody th {
    padding: 11px 0 11px 0;
    font-size: 13px;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    text-align: center;
    font-weight: normal
}

.list tbody th.left {
    text-align: left
}

.list tbody th.black {
    color: #000;
    font-size: 15px;
    padding: 20px 0;
    font-weight: bold;
    border-bottom: 0
}

.list tbody td {
    padding: 11px 0;
    font-size: 13px;
    line-height: 20px;
    border-top: 1px solid #ebebeb;
    border-right: 1px solid #dcdcdc;
    text-align: center
}

.list tbody td.tit,
.list tbody th.al,
.list tbody td.al {
    padding-left: 15px;
    text-align: left
}

.list tbody td.ar {
    padding-right: 15px
}

.list tbody tr.bg th,
.list tbody tr.bg td,
.list tbody tr td.bg {
    background: #fdf7fa
}

.list tbody .bg2 {
    background: #fafafa
}

.list tbody .total th,
.list tbody .total td {
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    color: #333;
    background: #fdf7fa
}

.list tr:first-child td {
    border-top: none
}

.list tr.none td {
    border-right: none;
    text-align: center
}

.list2 {
    width: 100%;
    table-layout: fixed
}

.list2 thead th {
    padding: 14px 0 12px 25px;
    color: #000;
    font-weight: 500;
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #e7e7e7;
    background-color: #f9f9f9;
    text-align: left
}

.list2 tbody td {
    padding: 14px 0 12px 25px;
    font-size: 13px;
    line-height: 18px;
    border-bottom: 1px solid #cfcfcf;
    text-align: left;
    vertical-align: top
}

.list2 tbody td p {
    padding-bottom: 10px;
    font-size: 13px;
    line-height: 18px
}

.list2 tbody td p.last {
    padding-bottom: 0
}

.list3 {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    table-layout: fixed
}

.list3 thead th {
    padding: 18px 0 15px;
    color: #333;
    border-bottom: 1px solid gray;
    font-weight: normal;
    background: url($assets-division2-gif) no-repeat 0 50%
}

.list3 thead th:first-child {
    background: none
}

.list3 tbody th {
    padding: 15px 0;
    font-size: 13px;
    border-top: 1px solid #ebebeb
}

.list3 tbody td {
    padding: 15px 0;
    font-size: 13px;
    text-align: center;
    border-top: 1px solid #ebebeb
}

.list3 tbody tr:first-child th,
.list3 tbody tr:first-child td {
    border-top: none
}

.list3 tbody td.tit {
    padding-left: 25px;
    text-align: left
}

.list3 tbody td.tit a:link {
    color: #454545
}

.list3 td.none {
    text-align: center
}

.listTypeA {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000
}

.listTypeA li {
    position: relative;
    padding: 30px 0;
    border-top: 1px solid #ebebeb;
}

.listTypeA li:first-child {
    border-top: none
}

.listTypeA li:after {
    content: "";
    display: block;
    clear: both
}

.listTypeA li p.thumb {
    float: left;
    width: 255px;
    height: 159px;
    border: 1px solid #ebebeb
}

.listTypeA li p.thumb img {
    width: 100%;
    height: 100%
}

.listTypeA li h3 {
    padding: 0 0 0;
    font-size: 20px;
    color: #252525;
    line-height: 24px
}

.listTypeA li h3 span.bgFontType1,
.listTypeA li h3 span.bgFontType2,
.listTypeA li h3 span.bgFontType3 {
    display: inline-block;
    min-width: 95px;
    margin-right: 12px;
    padding: 0 5px;
    font-size: 13px !important;
    line-height: 20px !important;
    vertical-align: middle;
    text-align: center
}

.listTypeA li h3 .tit {
    display: inline-block;
    *display: inline;
    width: 525px;
    font-size: 18px;
    color: #252525;
    line-height: 1.4em;
    vertical-align: middle
}

.listTypeA li div.cont {
    float: right
}

.listTypeA li div.cont h3 {
    font-size: 22px;
    line-height: 26px
}

.listTypeA li p.text {
    padding: 10px 0 20px;
    line-height: 22px
}

.listTypeA li p.info strong {
    display: inline-block;
    font-weight: normal;
    font-family: nGothic, "µ¸¿ò", dotum, gulim;
    font-size: 13px;
    color: #333
}

.listTypeA li p.info strong.date {
    margin-left: 45px
}

.listTypeA li p.info span {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 13px;
    color: #757575;
    background: url($assets-division2-gif) no-repeat 0 50%
}

.listTypeA li p.btn {
    position: absolute;
    right: 0;
    bottom: 20px
}

.listTypeA li.none {
    text-align: center
}

.listTypeA li div.cont-thumb {
    width: 595px;
    padding: 10px 0 0
}

.listTypeA li p.date {
    padding: 15px 0 0
}

.listTypeA li p.date strong {
    color: #454545
}

.listTypeA li p.date span {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 13px;
    color: #757575;
    background: url($assets-division2-gif) no-repeat 0 50%
}

.listTypeA li p.date span.ing {
    width: 64px;
    height: 20px;
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    background: #c70752;
    text-align: center
}

.listTypeA li p.date span.end {
    width: 64px;
    height: 20px;
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    background: #ebebeb;
    text-align: center
}

.form {
    width: 100%;
    table-layout: fixed;
    padding-bottom:60px;
}

.form th,
.form td {
    border-top: 1px solid #dcdcdc
}

.form tr:first-child th {
    width: 155px
}

.form tr:first-child th,
.form tr:first-child td {
    border-top: none
}

.form th {
    padding: 18px 0 17px 20px;
    color: #333;
    vertical-align: top;
    text-align: left;
    font-weight: normal
}

.form td {
    padding: 9px 0 8px 0
}

.form td input[type=text] {
    width: 643px;
    height: 33px;
    padding: 0 5px;
    line-height: 33px;
    border: 1px solid #dadada
}

.form td input[type=image] {
    vertical-align: top
}

.form td p.file {
    width: 655px
}

.form td input[type=file] {
    width: 100%;
    padding: 0
}

.form td textarea {
    width: 643px;
    height: 235px;
    padding: 5px;
    line-height: 33px;
    border: 1px solid #dadada
}

.form td select {
    width: 185px
}

.form td.blank {
    padding: 0 !important;
    border: none !important
}

.form td label {
    display: inline-block;
    margin: 0 20px 0 5px
}


.form td ul:after {
    content: "";
    display: block;
    clear: both
}

.form td ul li {
    float: left;
    width: 49.9%;
    font-size: 13px;
    color: #454545;
    line-height: 35px
}

.form td ul li label {
    margin: 0 0 0 5px
}

.form td ul.clear li {
    width: 100%
}

.form td ul.clear li span {
    display: inline-block;
    width: 155px
}

.form td ul.clear li input[type=text] {
    height: 23px;
    line-height: 23px
}

.form td p.unit {
    padding: 0 21px 10px 0
}

.checkTypeA {
    margin: 20px 0
}

.checkTypeB {
  	/*display: flex;
    justify-content: flex-end;*/
  	text-align: right;
}

.checkTypeB span {
  	margin-right: 3px;
}

.checkTypeA label, .checkTypeB label {
    cursor: pointer;
    font-weight: 600;
    font-size: 15px
}

.thumbListTypeA li {
    position: relative;
    min-height: 155px;
    padding: 50px 0 50px 320px;
    border-top: 1px solid #ececec
}

.thumbListTypeA li:first-child {
    border-top: none
}

.thumbListTypeA li h2 {
    margin-top: 10px;
    font-size: 20px
}

.thumbListTypeA li h2 .btn {
    display: inline-block;
    margin: -8px 0 0 10px;
    vertical-align: middle
}

.thumbListTypeA li h2 .btn .btnType4 {
    height: 21px;
    padding: 0 15px;
    font-size: 11px;
    line-height: 21px
}

.thumbListTypeA li p.text {
    line-height: 22px
}

.thumbListTypeA li p.thumb {
    position: absolute;
    left: 0;
    top: 50px
}

.thumblistTypeB:after {
    content: "";
    display: block;
    clear: both
}

.thumblistTypeB li {
    float: left;
    width: 50%;
    margin-bottom: -1px
}

.thumblistTypeB li.first div.cont {
    margin-left: 0
}

.thumblistTypeB li.last div.cont {
    margin-right: 0
}

.thumblistTypeB li div.cont {
    position: relative;
    min-height: 111px;
    margin: 0 15px;
    padding: 30px 0 30px 102px;
    border: 1px solid #dcdcdc;
    border-left: 0;
    border-right: 0
}

.thumblistTypeB li h3 {
    padding: 5px 0 15px;
    font-size: 16px;
    color: #333
}

.thumblistTypeB li p.ico {
    position: absolute;
    left: 0;
    top: 30px
}

.thumblistTypeB li p.text {
    font-size: 13px;
    line-height: 20px
}

#contArea .viewArea h2 {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 0 270px 10px 0;
    font-size: 28px;
    font-weight: normal;
    line-height: 32px;
    color: #252525;
    background: none
}

.winnerList #contArea .viewArea h2 {
    width: 900px;
    word-wrap: break-word;
    padding: 0 0 10px 0
}

#contArea .viewArea h2 span {
    display: inline-block;
    min-width: 95px;
    margin-right: 12px;
    padding: 0 5px;
    font-size: 13px !important;
    line-height: 20px !important;
    vertical-align: middle;
    text-align: center
}

.viewArea {
    position: relative
}

.viewHead {
    height: 35px;
    padding: 0 10px;
    line-height: 35px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ebebeb;
}

.viewHead:after {
    content: "";
    display: block;
    clear: both
}

.viewHead p.fl {
    font-size: 13px;
    line-height: 35px
}

.viewHead p.fr {
    line-height: 35px
}

.viewHead p strong,
.viewHead2 p strong {
    display: inline-block;
    font-weight: normal;
    font-family: nGothic, "µ¸¿ò", dotum, gulim;
    font-size: 13px;
    color: #333
}

.viewHead p span.date {
    margin-right: 45px
}

.viewHead p span,
.viewHead2 p span {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 13px;
    color: #757575;
    background: url($assets-division2-gif) no-repeat 0 50%
}

.viewHead-bn {
    height: auto !important;
    padding: 0 !important;
    line-height: 14px !important;
    border: none !important
}

.viewHead2 {
    border-top: 1px solid #000
}

.viewHead2 li {
    min-height: 35px;
    padding: 0 10px;
    line-height: 35px;
    border-bottom: 1px solid #ebebeb;
}

.viewHead2 li:after {
    content: "";
    display: block;
    clear: both
}

.viewHead2 li strong {
    display: inline-block;
    width: 128px;
    vertical-align: middle
}

.viewHead2 p span {
    vertical-align: middle
}

.viewHead2 li p.fr strong {
    width: auto !important
}

.viewCont {
    padding: 30px 10px;
    line-height: 22px;
    border-bottom: 3px solid #000
}

.viewCont img {
    max-width: 880px
}

.viewCont div.cont {
    padding: 30px 0 0
}

.movieViewContArea {
    padding: 30px 12px
}

.movieViewContArea.viewCont #videoContent {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 876px;
    height: 495px
}

.movieViewContArea.viewCont #videoContent object#imovie {
    position: absolute;
    left: -2px;
    top: 0px
}

.viewFoot {
    position: relative;
    margin-top: -1px;
    padding: 30px 30px 50px 155px;
    border-top: 1px solid #959595;
    border-bottom: 1px solid #000
}

.viewFoot strong.tit {
    position: absolute;
    left: 0;
    top: 30px;
    display: inline-block;
    width: 100px;
    height: 20px;
    color: #454545;
    line-height: 20px;
    text-align: center
}

.viewFoot div.cont {
    color: #757575;
    line-height: 22px
}

.social {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.social a {
    display: inline-block;
    width: 44px;
    height: 44px;
    overflow: hidden
}

.social a img {
    margin-top: 0
}

.social a:hover img {
    margin-top: -44px
}

.srchArea {
    position: relative;
    padding: 0 0 10px
}

.srchArea p.btn {
    position: absolute;
    right: 0;
    top: 0
}

.srchArea p.btn a.btnType4 {
    width: 192px;
    padding: 0 !important
}

.srchForm {
    display: inline-block;
    *display: inline;
    position: relative;
    width: 198px;
    vertical-align: middle
}

.srchForm p.ip {
    height: 33px;
    padding: 0 33px 0 10px;
    border: 1px solid #dadada
}

.srchForm input[type=text] {
    width: 100%;
    height: 32px;
    line-height: 32px;
    border: none
}

.srchForm input[type=image] {
    position: absolute;
    right: 1px;
    top: 1px
}

.slide {
    position: relative;
    overflow: hidden
}

.slideCont {
    overflow: hidden
}

.slideCont ul {
    position: relative;
    width: 20000px !important
}

.slide .prev {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 48;
    margin: -42px 0 0 7px;
    width: 39px;
    height: 85px;
    background: url($assets-btn_prev-png) no-repeat left top;
    overflow: hidden;
    cursor: pointer
}

.slide .next {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 49;
    margin: -42px 10px 0 0;
    width: 39px;
    height: 85px;
    background: url($assets-btn_next-png) no-repeat left top;
    overflow: hidden;
    cursor: pointer
}

.prnt {
    padding-top: 90px;
}

.prnt:after {
    content: "";
    display: block;
    clear: both
}

.prnt .prev {
    float: left;
    width: 430px;
    padding: 10px 0 15px;
    border-top: 3px solid #000;
    border-bottom: 1px solid #e2e2e2
}

.prnt .next {
    float: right;
    width: 430px;
    padding: 11px 0 14px;
    border-top: 3px solid #000;
    border-bottom: 1px solid #e2e2e2;
    text-align: right
}

.prnt .next .cont {
    text-align: left
}

.prnt p.tit {
    font-size: 16px;
    color: #252525;
    line-height: 18px
}

.prnt p.tit span {
    display: inline-block;
    width: 17px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    color: #707070;
    border: 1px solid #dedede;
    background: #e9e9e9;
    text-align: center;
    vertical-align: top
}

.prnt .cont {
    position: relative;
    height: 80px;
    margin-top: 20px;
    padding-left: 145px;
    overflow: hidden
}

.prnt .cont p.thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 117px;
    height: 73px
}

.prnt .cont .text {
    font-size: 13px;
    line-height: 18px
}

.prnt .cont p.none {
    margin-left: -145px !important
}

.prnt .cont-text {
    height: 65px !important;
    padding: 0 !important
}

.prnt .cont-text dl dt {
    padding-bottom: 10px;
    font-family: nGothic, "µ¸¿ò", dotum, gulim;
    color: #454545
}

.prnt .cont-text dl dd {
    font-size: 13px;
    line-height: 18px
}

.faqTypeB {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000
}

.faqTypeB li {
    border-top: 1px solid #ebebeb
}

.faqTypeB li:first-child {
    border-top: none
}

.faqTypeB li a {
    display: block;
    margin: 0 12px;
    padding: 15px 0;
    background: url($assets-ico_arrow3-gif) no-repeat 100% 50%
}

.faqTypeB li.on a {
    background-image: url($assets-ico_arrow3_on-gif)
}

.faqTypeB li a strong {
    display: inline-block;
    width: 16px;
    height: 20px;
    font-size: 0 !important;
    line-height: 0 !important;
    padding-right: 30px;
    color: #454545;
    background: url($assets-ico_question-gif) no-repeat 0 0;
    vertical-align: top
}

.faqTypeB li div.answer {
    display: none;
    padding: 30px 12px;
    border-top: 1px solid #ebebeb;
}

.faqTypeB li div.answer:after {
    content: "";
    display: block;
    clear: both
}

.faqTypeB li div.answer strong {
    display: inline-block;
    float: left;
    width: 16px;
    height: 20px;
    font-size: 0 !important;
    line-height: 0 !important;
    padding-right: 30px;
    color: #454545;
    background: url($assets-ico_answer-gif) no-repeat 0 0;
    vertical-align: top
}

.faqTypeB li div.answer .answerCont {
    float: right;
    width: 775px;
    font-size: 13px;
    line-height: 20px
}

.faqTypeB li.none {
    padding: 15px 0;
    text-align: center
}

.dateTypeA {
    display: inline-block;
    *display: inline;
    width: 48px;
    height: 43px;
    margin-right: 13px;
    padding: 5px 0 0;
    font-size: 24px;
    line-height: 24px !important;
    text-align: center;
    border: 1px solid #dcdcdc;
    vertical-align: middle
}

.dateTypeA span.day {
    display: block;
    font-size: 10px
}

.dateTypeB {
    display: inline-block;
    *display: inline;
    width: 55px;
    height: 50px;
    margin-right: 13px;
    padding: 5px 0 0;
    font-size: 27px;
    text-align: center;
    border: 1px solid #dcdcdc;
    vertical-align: middle
}

.dateTypeB span.day {
    display: block;
    min-width: 0 !important;
    font-size: 11px
}

ul.blt li,
p.blt {
    padding: 0 0 0 12px;
    background: url($assets-blt4-gif) no-repeat left 5px
}

ul.blt li ul li {
    padding: 0 !important;
    background: none !important
}

#commentArea {
    margin-top: 90px
}

.flashMovie {
    position: relative
}

.flashMovie .control .play,
.flashMovie .control .stop {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -44px 0 0 -44px
}

.flashMovie .control .on {
    display: block;
    z-index: 2
}

.flashMovie .control .hideBtn {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important
}

.tbType1 {
    width: 100%;
    border-top: 1px solid #c70752;
    border-bottom: 1px solid silver;
    table-layout: fixed
}

.tbType1 thead th {
    padding: 13px 0;
    border-bottom: 1px solid silver;
    border-right: 1px solid #dcdcdc;
    font-size: 15px;
    line-height: 18px;
    color: #333;
    font-weight: normal
}

.tbType1 tbody th,
.tbType1 tbody td {
    padding: 11px 0;
    font-size: 13px;
    line-height: 20px;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    text-align: center
}

.tbType1 tbody td:last-child {
    border-right: none
}

.tbType1 thead th:last-child {
    border-right: none
}

.tbType1 tbody .year,
.tbType1 tbody .ar {
    padding-right: 15px;
    text-align: right
}

.tbType1 tbody .txt,
.tbType1 tbody .al {
    padding-left: 15px;
    text-align: left
}

.tbType1 .bg {
    color: #252525;
    background: #fdf7fa
}

.tbType1 .bg2 {
    background: #fafafa;
    text-align: center
}

.tbType1 tbody .total th,
.tbType1 tbody .total td {
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    color: #333;
    background: #fdf7fa
}

.tbType1-al td {
    padding-left: 15px !important;
    text-align: left !important
}

p.unit {
    padding-top: 10px;
    overflow: hidden
}

p.unit span {
    display: inline-block;
    font-size: 12px
}

.privacyCont .section * {
    color: #333
}

.privacyCont .section .title {
    margin: 40px 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
  	padding-bottom:20px;
  
}

.privacyCont .section .content {
    max-height: 250px;
    padding: 18px;
    box-sizing: border-box;
    overflow-y: auto;
    border: 1px solid #c9c9c9;
    line-height: 24px
}

.privacyCont .section p:not(.title), .privacyCont .section p:not(.checkTypeA){
  padding-top:1rem;
}

.privacyCont .section table {
    width: 100%;
    border: 1px solid #c9c9c9
    padding-bottom:1rem!important;
    
}

.privacyCont .section table th {
    padding: 12px 0;
    background: #ccc
}

.privacyCont .section table td {
    padding: 30px 6px;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    border: 1px solid #e5e5e5
}
  .privacyCont .section table th.first, .privacyCont .section table td.first{
  		width:20%;
	}
@media screen and (max-width:767px) {
  .privacyCont .section table th.first, .privacyCont .section table td.first{
  		width:7%;
	}
}


.privacyCont .section table+p {
    margin-top: 10px
}

.privacyCont .checkTypeA {
    text-align: right;
  	padding-bottom:20px;
}

.privacyCont .checkTypeA *, .privacyCont .checkTypeB * {
    font-weight: 600
}

.hide {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
    width: 1px;
    height: 1px
}

.hero-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 610px;
    margin: 0 auto;
    text-align: center
}

.hero {
    height: 400px;
    background: url(/hc/theming_assets/01HZH7HZ1A5TT8K7FH2PX7XHAX) no-repeat center;
    background-size: cover
}

@media screen and (max-width: 767px) {
    .hero {
        width: 100%;
        margin-bottom:0;
      height:260px;
    }
}

.breadcrumbs li+li::before {
    content: var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='5px' height='8px' viewBox='0 0 6 10' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon-arrow-next-gray-5' fill='%23939393' fill-rule='nonzero'%3E%3Cpolygon id='Path' points='0 0.577 4.757 4.999 0 9.423 0.62 10 6 4.999 0.62 0'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E"));
    padding: 0 .6rem;
    margin: 0
}
@media screen and (max-width: 767px) {
  .breadcrumbs li+li::before {
    padding: 0 0.4rem 0 0.2rem;
  }
}

.breadcrumbs li:last-child {
    font-weight: bold
}

.sub-nav {
    align-items: baseline;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px 30px;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 25px;
    width: auto
}

.main-container .sub-nav {
    position: absolute;
    padding-top: 36px
}

@media(min-width: 768px) {
    .sub-nav {
        flex-direction: row;
        margin-bottom: 25px
    }
}

.content-container {
    max-width: 1180px;
    padding: 0 10px;
    margin: auto;
    box-sizing: border-box
}

@media screen and (max-width: 767px) {
    .content-container {
        max-width: none
    }
}

.d-flex {
    display: flex
}

.align-items-center {
    align-items: center
}

.justify-content-center {
    justify-content: center
}

.justify-content-end {
    justify-content: end
}

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

[class^=icon-] {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.icon-quick-home {
    width: 22px;
    height: 18px;
    background-image: url(/hc/theming_assets/01HZH7HEKDNP8NV5319F7F97JM)
}

.icon-quick-top {
    width: 14px;
    height: 16px;
    background-image: url(/hc/theming_assets/01HZH7H61SFCHH427KAPVY4NA5)
}

.icon-main-step {
    width: 48px;
    height: 41px;
    background-image: url(/hc/theming_assets/01HZH7HQYN6VGT1B61BDR4M7SV)
}

.icon-main-solution {
    width: 50px;
    height: 41px;
    background-image: url(/hc/theming_assets/01HZH7HT1VVT2B96TTK8NC11J0)
}

.icon-main-notice {
    width: 52px;
    height: 41px;
    background-image: url(/hc/theming_assets/01HZH7HTCES6V2TWHY6JMQ2Z19)
}

.icon-client-question {
    width: 60px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HSSE4J2PZ8AH80Z2PZ3B)
}

.icon-client-consulting {
    width: 60px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HNH1K0CFN7FSQJTZBES3)
}

.icon-client-compliment {
    width: 60px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HSNFFWPWFXJQKWCFP4RC)
}

.icon-client-reservation {
    width: 60px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HND8YFE7QVHJNC37GNKN)
}

.icon-client-contact {
    width: 60px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HS0CJ8Q13B62D4NPWKPM)
}

.icon-step-01 {
    width: 42px;
    height: 48px;
    background-image: url(/hc/theming_assets/01HZH7HQV1KVYWZ8XSA45V9908)
}

.icon-step-02 {
    width: 42px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HTG0JZJXJS3CDB2VEDXJ)
}

.icon-step-03 {
    width: 50px;
    height: 50px;
    background-image: url(/hc/theming_assets/01HZH7HA1CTQ5KHBK9RBG7NYP3)
}

.icon-step-04 {
    width: 62px;
    height: 46px;
    background-image: url(/hc/theming_assets/01HZH7HP822D0Q2GPKE7QRHNGM)
}

.icon-product-cosmetic {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HVCR4RZFBSB1XJ478T6W)
}

.icon-product-teeth {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HQJSR0DB3HXG6EVWHM52)
}

.icon-product-hair {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HSHBAQNZK5AX34F7BWPZ)
}

.icon-product-skin {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HK0TKCNP86RYXYTJGFMQ)
}

.icon-product-baby {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7H9BGBAPD9R5WGRP4TMQF)
}

.icon-product-laundry {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HB8V9RFH1KV0NC6THZS9)
}

.icon-product-living {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7H6F4GP4P6J4ERG7V9D6G)
}

.icon-product-food {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HEFQTZMK967BQ87729GH)
}

.icon-product-etc {
    width: 125px;
    height: 84px;
    background-image: url(/hc/theming_assets/01HZH7HD2E7N65Y21XCHR4T17S)
}

.icon-search {
    width: 20px;
    height: 20px;
    background-image: url(/hc/theming_assets/01HZH7HT53PEJHW72FAE0CPTM3)
}

.icon-more {
    width: 26px;
    height: 26px;
    background-image: url(/hc/theming_assets/01HZH7HCYH46PG89Y8BHMVYVCC)
}

.icon-play {
    width: 39px;
    height: 39px;
    background-image: url(/hc/theming_assets/01HZH7HPH8RRH4Q9WPRD1Q16V8)
}

.icon-file {
    width: 13px;
    height: 15px;
    background-image: url(/hc/theming_assets/01HZH7HTVPGZ6CZY88SC27TJGJ)
}

.icon-answer {
    width: 14px;
    height: 14px;
    background-image: url(/hc/theming_assets/01HZH7HK8EVZ9N48GDXZRHB255)
}

.icon-breadcrumb-home {
    width: 16px;
    height: 16px;
    background-image: url(/hc/theming_assets/01HZH7HTR04DZ73DG5KXJ2Q1AW);
    vertical-align: text-bottom;
}

.icon-post-review {
    width: 70px;
    height: 70px;
    background-image: url(/hc/theming_assets/01HZH7HN30A7H7FYR51BBXVW93);
}

.icon-post-qna {
    width: 70px;
    height: 70px;
    background-image: url(/hc/theming_assets/01HZH7H75DRHE0C2SW1SKW4N6Z);
}

.icon-post-mypage {
    width: 70px;
    height: 70px;
    background-image: url(/hc/theming_assets/01HZH7HDV7SVQ3M60HCXVM2MQ7);
}

.card {
    background: #fff;
    border: 1px solid #e8e8e8
}

.quickWrap {
    position: fixed;
    height: 417px;
    top: 194px;
    z-index: 1;
    width: 150px;
    right: 50%;
    margin-right: -757px
}

.quickWrap .quickMenu {
    width: 100%;
    padding-left: 0;
}

.quickWrap .quickMenu li {
    display: block;
    border: 1px solid #e8e8e8;
    background: #fff
}

.quickWrap .quickMenu li b {
    color: #2d2d2d;
    display: block
}

.quickWrap .quickMenu li>a {
    padding: 18px 0;
    display: block;
    text-align: center;
    background: #fff
}

.quickWrap .quickMenu li>a * {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px
}

.quickWrap .quickMenu li.active a {
    background: #bd1549
}

.quickWrap .quickMenu li.active a b {
    color: #fff
}

.quickWrap .quickMenu li.active a b+b {
    margin-top: 10px
}

.quickWrap .quickMenu li.active a p {
    color: #d7d7d7;
    margin-top: 4px
}

.quickWrap .quickMenu li+li {
    margin-top: -1px
}

.quickWrap .quickMenu .service-information {
    padding: 18px 15px
}

.quickWrap .quickMenu .service-information .service__title {
    font-size: 14px;
    letter-spacing: -0.14px
}

.quickWrap .quickMenu .service-information .service__number {
    margin-top: 4px;
    font-size: 17px;
    letter-spacing: -0.17px
}

.quickWrap .quickMenu .service-information .service__hour {
    margin-top: 10px;
    padding-bottom: 2px;
    font-size: 14px;
    letter-spacing: -0.14px
}

.quickWrap .quickMenu .service-information .service__hour-information {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5b5b5b;
    font-size: 12px;
    letter-spacing: -0.13px
}

.quickWrap .quickMenu .quick-btn-wrap {
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.quickWrap .quickMenu .quick-btn-wrap>* {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center
}

.quickWrap .quickMenu .quick-btn-wrap .quickBtn__home {
    color: #2d2d2d;
    font-size: 13px;
    font-weight: bold;
    width: 101px;
    height: 40px;
    line-height: 32px
}

.quickWrap .quickMenu .quick-btn-wrap .quickBtn__home i {
    margin-right: 8px
}

.quickWrap .quickMenu .quick-btn-wrap .quickBtn__top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px
}

.main-container .quickWrap {
    top: 400px
}

@media screen and (max-width: 767px) {
    .quickWrap {
        display: none
    }
}

main .contArea {
    width: 100%;
    padding: 47px 41px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-sizing: border-box
}

@media screen and (max-width: 767px) {
    main .contArea {
        padding: 30px 20px
    }
}

.contents-area {
    display: flex;
    height: 100%;
    align-items: stretch !important;
}

.search-group {
    border-radius: 30px;
    display: flex;
    width: 490px;
    justify-content: center;
    padding: 0 10px;
    margin: 42px auto 0 auto;
}

.search-group select {
    background: #fff url(/hc/theming_assets/01HZH7HS42XRJWSH7BYP1V259H) no-repeat 92% center;
    padding: .25rem 1.75rem .25rem 2.2rem;
    height: 50px;
    appearance: none;
    flex: 0 0 160px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 0;
    box-sizing: border-box;
    border: 1px solid #e8e8e8
    
}

.search-group .input-group {
    position: relative;
    flex: 0 0 auto;
    height: 50px;
    width: 100%
}

.search-group .input-group a {
    line-height: 1;
    position: absolute;
    background: transparent;
    border: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 5px
}

.search-group .search-input {
    width: 100%;
    height: 50px;
    margin-left: -1px;
    border: 1px solid #e8e8e8;
  border-radius:30px!important;
/*     border-top-right-radius: 30px!important;
    border-bottom-right-radius: 30px!important; */
/*     border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important; */
    box-sizing: border-box;
    padding: .25rem 50px .25rem 1.25rem;
  	box-shadow:none!important;
  	 -webkit-appearance: none;
}

@media screen and (max-width: 767px) {
    .search-group {
        width: 100%;
        padding:0;
    }
    .search-group .search-input::placeholder
    {
        font-size:11px;
    }

    .search-group select {
        flex: 0 0 30%;
        width: auto;
        padding: .25rem 1.75rem;
        font-size:11px;
    }

    .search-group .input-group {
        flex: 0 0 auto;
        width: 100%
    }
}

.page-header {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 14px
}

.page-header h1 {
    font-size: 22px;
    letter-spacing: -0.22px;
    color: #000;
    font-weight: bold
}

.page-header .page-header-description {
    color: #5b5b5b;
    margin-top: 14px;
}

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

@media screen and (max-width: 767px) {
  .page-header h1 {
        font-size: 16px;
    }
    .page-header.notice {
        flex-direction: column;
        align-items: baseline
    }
    .page-header .page-header-description{
      font-size:12px;
      margin-top:8px;
    }

    .page-header.notice span {
        margin-top: 10px;
      	font-size:12px;
    }
}

.sub-title {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: -0.26px;
    color: #000
}

@media screen and (max-width: 767px) {
    .sub-title {
        font-size: 16px
    }
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.btn-check+label {
    padding: 10px 22px;
    border-radius: 30px;
    background-color: #efefef;
    color: #5b5b5b;
    font-weight: bold;
    letter-spacing: -0.14px;
    font-size: 15px;
    box-sizing: border-box;
    margin: 4px;
    display: inline-block;
    cursor: pointer
}

.btn-check:checked+label {
    background-color: #2d2d2d;
    color: #fff
}

.search-container {
    position: relative
}

@media screen and (max-width: 767px) {
    .search-container {
        display: none
    }
}

.swiper-pagination-bullet-active {
    background: #c70752!important;
}

.swiper-pagination-bullet {
    background: #000
}

@media screen and (max-width: 767px) {
    .paging li {
        margin: 0 2px;
    }
}

a.btn,
button.btn,
input.btn {
    min-width: 120px;
    margin: 0;
    border: 0;
    height: 44px;
    width: auto;
    line-height: 38px;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    padding: .25rem .75rem;
    box-sizing: border-box
}

a.btn.btn-secondary,
button.btn.btn-secondary,
input.btn.btn-secondary {
    background: #5b5b5b;
    color: #fff !important
}

a.btn.btn-primary,
button.btn.btn-primary,
input.btn.btn-primary {
    background: #c70752;
    color: #fff !important;
}

a.btn+.btn,
button.btn+.btn,
input.btn+.btn {
    margin-left: 7px
}

@media screen and (max-width: 767px) {

    a.btn,
    button.btn,
    input.btn {
        height: 36px;
        width: auto;
        line-height: 30px;
        padding: .25rem .5rem
    }
}

.text-left {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.response-step-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 13px
}

.response-step-wrap .response-step-list {
    background: #f5f5f5;
    padding: 36px 0 33px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    margin-top: 40px;
    min-height: 310px;
    box-sizing: border-box;
    position: relative
}

.response-step-wrap .response-step-list i {
    margin: 0 auto
}

.response-step-wrap .response-step-list>div {
    text-align: center;
    max-width: 126px;
    word-break: keep-all
}

.response-step-wrap .response-step-list .num {
    font-size: 33px;
    line-height: .97;
    letter-spacing: -0.33px;
    font-weight: bold;
    color: #000
}

.response-step-wrap .response-step-list .title {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: -0.18px;
    margin-top: 11px;
    color: #000
}

.response-step-wrap .response-step-list .desc {
    margin-top: 25px;
    line-height: 1.47;
    letter-spacing: -0.15px;
    font-size: 15px;
    font-weight: bold;
    color: #5b5b5b
}

.response-step-wrap .response-step-list .sub-desc {
    font-size: 12px;
    color: #5b5b5b;
    margin-top: 8px;
    line-height: 20px
}

.response-step-wrap .response-step-list:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    background: url(/hc/theming_assets/01HZH7HGXCCGMY50DC9M170M4G) no-repeat center;
    top: 50%;
    right: -25px;
    z-index: 1;
    transform: translateY(-50%)
}

@media screen and (max-width: 767px) {
    .response-step-wrap {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px
    }

    .response-step-wrap .response-step-list {
        padding: 30px 0;
        margin-top: 0px;
        min-height: 250px
    }

    .response-step-wrap .response-step-list .num {
        font-size: 22px
    }

    .response-step-wrap .response-step-list .title {
        margin-top: 8px
    }

    .response-step-wrap .response-step-list .desc {
        margin-top: 25px;
        line-height: 1.47;
        letter-spacing: -0.15px;
        font-size: 14px;
        font-weight: bold;
        color: #5b5b5b
    }

    .response-step-wrap .response-step-list .sub-desc {
        font-size: 12px;
        color: #5b5b5b;
        margin-top: 8px;
        line-height: 20px
    }

    .response-step-wrap .response-step-list:not(:last-child)::after {
        content: "";
        position: absolute;
        width: 36px;
        height: 36px;
        background: url(/hc/theming_assets/01HZH7HGXCCGMY50DC9M170M4G) no-repeat center;
        bottom: -9%;
        left: 50%;
        top: auto;
        right: auto;
        z-index: 1;
        transform: translateX(-50%) rotate(90deg)
    }
}
.response-complaints {
    margin-top: 60px
}

.response-complaints .page-header {
    border: 0;
    margin-bottom: 30px
}
.response-complaints table{
  min-width:500px;
}
.response-complaints table th {
    height: 45px;
    background: #f6f6f6;
    border: 2px solid #39352c;
    border-right-width: 1px;
    border-left-width: 1px;
  	text-align:center;
}

.response-complaints table td {
    padding: 20px;
    border: 1px solid #39352c;
    color: #4c4c4c;
    font-size: 16px
}

.response-complaints table td:first-child {
    vertical-align: top
}

.response-complaints table td b {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600
}

.response-complaints table td div {
    color: #666;
    font-size: 14px
}

.response-complaints table td li {
    position: relative;
    padding-left: 10px;
    font-size: 16px;
    line-height: 22px
}

.response-complaints table td li:before {
    content: "·";
    position: absolute;
    left: 0
}

.response-complaints table .dashCont li:before {
    content: "-";
    position: absolute;
    left: 0
}

.response-complaints table th:first-child,
.response-complaints table td:first-child {
    border-left: 0
}

.response-complaints table th:last-child,
.response-complaints table td:last-child {
    border-right: 0
}

.response-complaints table .borderC {
    border-bottom: 2px solid #39352c
}

.response-complaints table .footnote {
    padding: 10px 0;
    letter-spacing: -0.25px;
    line-height: 1.6
}

@media screen and (max-width: 767px) {
  .response-complaints table{
    min-width:500px;
  }
  .response-complaints table th, .response-complaints table td{
    padding:10px;
  }
  .response-complaints table td b{
    font-size:12px;
  }
  .response-complaints table td div, .response-complaints table td{
    font-size:12px;
  }
  .response-complaints table td li{
   	font-size:12px;
    line-height: 18px;
  }
}


.faq-product {
    margin-top: 52px
}

.faq-product .faq-product-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 30px
}

.faq-product .faq-product-list li {
    position: relative
}
.faq-product .faq-product-list li a{
  display:block;
}
@media screen and(max-width:767px){
  min-height:280px;
}

.faq-product .faq-product-list li .icon-wrap {
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 28px 35px;
    box-sizing: border-box;
  	height:140px;
}

.faq-product .faq-product-list li .icon-wrap i {
    display: none;
}

.faq-product .faq-product-list li .icon-wrap b {
    min-width: 80px;
    text-align: center;
    font-size: 16px;
    color: #000
}

.faq-product .faq-product-list li .text-wrap {
    opacity: 0;
    position: absolute;
    height: 140px;
    width: 100%;
    background-color: #c70752;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    box-sizing: border-box;
    align-items: center;
    top: 0
}

.faq-product .faq-product-list li .text-wrap p {
    color: #fff;
    flex: 0 0 auto;
    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.16px;
    font-size: 16px
}

.faq-product .faq-product-list li:hover .text-wrap {
    opacity: 1
}

@media screen and (max-width: 767px) {
    .faq-product {
        margin-top: 20px
    }

    .faq-product .swiper-container {
       margin-top: 20px;
      padding-bottom: 40px;
      overflow: hidden;
      position: relative;
    }

    .faq-product .faq-product-list {
        display: flex;
        margin-top: 0;
        gap: 0;
        align-items: stretch;
        height: fit-content;
        background-color: #fafafa
    }

    .faq-product .faq-product-list li {
        min-height: 200px;
        position: relative;
        background-color: #fafafa;
       	height: auto;
    }

    .faq-product .faq-product-list li .icon-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 20px 0 0 0;
        box-sizing: border-box;
      	height:auto;
    }

    .faq-product .faq-product-list li .icon-wrap i {
        width: 60px;
        height: 42px;
        background-size: contain
    }

    .faq-product .faq-product-list li .icon-wrap b {
        margin-top: 10px;
      	font-size:14px;
    }

    .faq-product .faq-product-list li .text-wrap {
        opacity: 1;
        position: static;
        height: auto;
        background-color: #fafafa;
        padding: 10px;
        box-sizing: border-box
    }

    .faq-product .faq-product-list li .text-wrap p {
        color: #000;
        font-size: 12px
    }

    .faq-product .faq-product-list li:hover .text-wrap {
        opacity: 1
    }
}

.faq-sort {
    margin-top: 70px
}

.faq-sort .sub-title {
    margin-bottom: 30px
}

.faq-sort .sort-btn-area {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
    max-width: 680px
}

.faq-sort .sort-btn-area .swiper-slide {
    width: auto
}

@media screen and (max-width: 767px) {
    .faq-sort {
        margin-top: 40px
    }
  
    .faq-sort .swiper-container{
        overflow:hidden;
    }

    .faq-sort .sort-btn-area {
        flex-wrap: nowrap
    }
}

.faq-video {
    margin-top: 60px
}

.faq-video .faq-video-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 13px
}

.faq-video .faq-video-list .play-thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%
}

.faq-video .faq-video-list .play-thumb img {
    width: 100%;
    object-fit: contain
}

.faq-video .faq-video-list .play-thumb::before {
    content: "";
    background: #00000047;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 56.25%
}

.faq-video .faq-video-list .play-thumb::after {
    content: "";
    position: absolute;
    background: url(/hc/theming_assets/01HZH7HPH8RRH4Q9WPRD1Q16V8) no-repeat center;
    width: 39px;
    height: 39px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.faq-video .faq-video-list .title {
    margin-top: 14px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: -0.15px;
    color: #000
}

.faq-video .faq-video-list .desc {
    margin-top: 8px;
    letter-spacing: -0.15px;
    color: #5b5b5b;
    max-width: 160px;
    word-break: keep-all;
    line-height: 1.47
}

@media screen and (max-width: 767px) {
    .faq-video {
        margin-top: 40px
    }

    .faq-video .faq-video-list {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px
    }

    .faq-video .faq-video-list .title {
        font-size: 14px
    }

    .faq-video .faq-video-list .desc {
        margin-top: 8px;
        margin-bottom: 10px;
      	font-size:12px;
    }
}

.faq-list {
    margin-bottom: 0;
    margin-top: 40px
}

.clearfix::after {
    content: "";
    display: table;
    clear: both
}

.faq-list .tabMenu {
    font-size: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.faq-list .tabMenu li {
    width: 100%
}

.faq-list .tabMenu li a {
    display: block;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: #efefef
}

.faq-list .tabMenu li.on a {
    font-weight: 600;
    background: #bf0051;
    color: #fff
}

@media screen and (max-width: 767px) {
    .faq-list .tabMenu {
        gap: 0
    }

    .faq-list .tabMenu li {
        width: 100%
    }

    .faq-list .tabMenu li a {
        font-size: 16px;
        text-align: center;
      	padding: 12px;
    }

    .faq-list .tabMenu li.on a {
        font-weight: 600;
        background: #bf0051;
        color: #fff
    }
}

.faq-list .listCont {
    margin-top: 30px;
    display: none
}

.faq-list .listCont b {
    font-weight: 600
}

.faq-list .top {
    padding: 20px 0;
    border-bottom: 2px solid #2d2d2d
}

.faq-list .top * {
    font-size: 15px
}

.faq-list .top .fr b,
.faq-list .list li .fr span {
    display: inline-block;
    width: 120px;
    text-align: center
}
.faq-list .list li .fr span.date{
  width:150px;
}
.faq-list .top .fr .date{
  width:150px;
}

.faq-list .list li {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8
}

.faq-list .list li .fl {
    width: 550px;
    font-size: 15px
}

.faq-list .list li .fl b {
    vertical-align: top
}

.faq-list .list li .fl span {
    display: inline-block
}

.faq-list .list li .fl span a {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 410px
}

.faq-list .list li .fl:hover * {
    color: #bf0051
}

@media screen and (max-width: 767px) {
    .faq-list .listCont {
        margin-top: 0
    }

    .faq-list .top {
        padding: 25px 0 10px 0;
        float: none
    }

    .faq-list .top * {
        font-size: 13px;
        line-height: 1.4
    }

    .faq-list .top .fl {
        width: 100%
    }

    .faq-list .top .fr {
			display:none;
    }

    .faq-list .top .fr a {
        width: auto;
        padding: 0 15px;
        background: url(/hc/theming_assets/01HZH7HS42XRJWSH7BYP1V259H) no-repeat 106% center
    }

    .faq-list .list li .fl {
        width: 100%;
        float: none !important;
        font-size: 13px;
        display: flex;
        flex-wrap: wrap
    }

    .faq-list .list li .fl b {
        width: 100%;
        margin-bottom: 6px
    }

    .faq-list .list li .fl span a {
        word-wrap: normal;
        overflow: auto;
        text-overflow: inherit;
        white-space: inherit;
        display: block;
        width: auto;
      	font-size:15px;
    }

    .faq-list .list li .fr {
        display: flex;
        float: none !important;
        margin-top: 10px
    }

    .faq-list .list li .fr span {
        width: auto!important;
    }

    .faq-list .list li .fr span+span {
        margin-left: 10px
    }
}

.faq-list .selfList .list li {
    display: flex;
    align-items: center
}

.faq-list .selfList .list li .thum {
    width: 100%;
    flex: 0 0 180px
}

.faq-list .selfList .list li>div {
    display: flex;
    width: 100%;
    justify-content: space-between
}

.faq-list .selfList .list li>div>span {
    padding: 0 20px;
    box-sizing: border-box
}

.faq-list .selfList .list li>div>div span {
    width: 120px;
    display: inline-block;
    text-align: center
}

@media screen and (max-width: 767px) {
    .faq-list .selfList .list li .thum {
        flex: 0 0 40%
    }

    .faq-list .selfList .list li .thum img {
        width: 100%
    }

    .faq-list .selfList .list li>div {
        width: 60%;
        flex-direction: column;
        padding: 0 10px;
        box-sizing: border-box
    }

    .faq-list .selfList .list li>div>span {
        width: 100%;
        padding: 0
    }

    .faq-list .selfList .list li>div>div {
        width: auto
    }

    .faq-list .selfList .list li>div>div span {
        margin-top: 10px;
        width: auto
    }
}

.qna-wrap .form {
    margin: 40px 0
}

.qna-wrap .form footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 60px
}

.upload-dropzone input[type=file] {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    height: 100%;
    width: 100%
}

.upload-dropzone {
    border: 1px solid #ddd;
    font-size: 12px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 10px
}

.upload-dropzone span a {
    font-weight: bold;
    color: #000
}

.form-field p {
    font-size: 12px;
    margin: 5px 0 57px 0;
    color: #5b5b5b;
    font-weight: bold;
    letter-spacing: -0.12px
}

.form-field~.form-field {
    margin-top: 22px
}

.faq-detail {
    padding: 50px 0 30px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #e8e8e8
}

.faq-detail .title {
    font-size: 16px;
    line-height: 2;
    letter-spacing: -0.16px;
    color: #000;
    font-weight: bold
}

.faq-detail .desc {
    margin-top: 40px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: -0.15px;
    min-height: 270px;
    color: #2d2d2d
}

.faq-detail .desc img, .qna-contents .contents img{
		margin-top:1rem;
}

.faq-detail .faq-quistion-wrap {
    display: flex;
    justify-content: flex-end;
      margin-top: 4rem;
}

.faq-detail .faq-quistion-wrap span {
    font-size: 14px;
    letter-spacing: -0.14px;
    color: #5b5b5b;
    margin-right: 10px
}

.faq-detail .faq-quistion-wrap a {
    color: #000;
    font-size: 14px;
    font-weight: bold
}

@media screen and (max-width: 767px) {
    .faq-detail {
        padding: 30px 0
    }

    .faq-detail .title {
        font-size: 14px;
        line-height: 1.5
    }

    .faq-detail .desc {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.5;
        min-height: 170px;
        margin-bottom: 60px
    }
  .faq-detail .desc img, .qna-contents .contents img{
		height: 100%;
    width: 100%;
    margin-top:1rem;
  }
  .faq-detail .faq-quistion-wrap{
    margin-top:1rem;
  }
}

.faq-solution {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #000;
    margin-bottom: 52px
}

.faq-solution p {
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 600;
    color: #39352c;
    text-align: center
}

.faq-solution p span {
    font-size: 16px;
    font-weight: normal
}

.faq-solution .evaluation {
    max-width: 250px;
    margin: 3.5rem auto 0 auto;
    font-size: 0;
    width: auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.faq-solution .evaluation li{
  	display:flex;
   	flex-direction:column;
      align-items: center;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
}

.faq-solution .evaluation li img{
  	width:44px;
  	height:44px;
  	margin:0 auto 1.25rem auto;
}
  
.faq-solution > .related-articles > .related-articles-title{display:none;} 

.faq-solution .related-articles ul {
		gap: 8px;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.faq-solution .related-articles ul li {
    min-height: 106px;
    padding: 20px;
    background: #f6f6f6;
    vertical-align: middle;
    box-sizing: border-box;
    text-align: center;
    flex : 1 1 auto;
  	max-width:100%;
}

.faq-solution .related-articles ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    word-break: break-all;
  	display: -webkit-flex;
  	-webkit-justify-content: center; 
  	-webkit-align-items: center;
  	vertical-align:middle;
}
@media screen and (max-width:767px){
  .faq-solution .related-articles ul{
    grid-template-columns: 1fr;
  }
  .faq-solution .related-articles ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    	display: -webkit-flex;
  	-webkit-justify-content: center; 
  	-webkit-align-items: center;
  	vertical-align:middle;
  }
}

.faq-solution .faq-evaluation-btn-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.faq-solution .faq-evaluation-btn-wrap p {
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px
}

@media screen and (max-width: 767px) {
    .faq-solution {
        padding: 30px 0;
        margin-bottom: 25px
    }

    .faq-solution p {
        margin-bottom: 20px;
        font-size: 20px
    }

    .faq-solution p span {
        font-size: 14px
    }

    .faq-solution .evaluation span {
        display: block;
        font-size: 12px;
        color: #39352c;
        margin: 10px 0
    }

    .faq-solution .relatedQ {
        grid-template-columns: 1fr;
      	margin-top:1rem;
    }

    .faq-solution .relatedQ li a {
        line-height: 1.5
    }

    .faq-solution .faq-evaluation-btn-wrap p {
        font-size: 14px
    }
}

.faq-question-wrap {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.faq-question-wrap img {
    width: 100%
}

@media screen and (max-width: 767px) {
    .faq-question-wrap {
        margin-top: 50px;
        grid-template-columns: 1fr;
        gap: 10px
    }
}

.thumbnail {
    position: relative;
    padding-top: 56%;
    width: 100%;
    height: 0;
    margin-top: 20px
}

.thumbnail img,
.thumbnail iframe, .thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  	width:100%;
  	margin-top:1rem;
}

.my-qna-list-wrap {
    margin-top: 50px
}

.my-qna-list-wrap .desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #5b5b5b
}

.my-qna-list-wrap .desc b {
    color: #000
}

.my-qna-list-wrap>div:not(.desc) {
    margin-top: 60px
}

@media screen and (max-width: 767px) {
    .my-qna-list-wrap {
        margin-top: 40px
    }

    .my-qna-list-wrap .desc {
        font-size: 13px;
        margin-bottom: 10px
    }

    .my-qna-list-wrap>div:not(.desc) {
        margin-top: 30px
    }
}

.custom-table {
    width: 100%;
    border-top: 2px solid #000;
    border-bottom: 1px solid #e8e8e8
}

.custom-table th,
.custom-table td {
    font-size: 15px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center
}

.custom-table th {
    font-weight: bold;
    letter-spacing: -0.3px;
    color: #000
}

.custom-table td {
    letter-spacing: -0.3px;
    color: #5b5b5b
}

.custom-table a {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    max-width: 360px;
  	min-width: 300px;
}

.custom-table thead tr {
    background-color: #fafafa
}

.custom-table tbody tr {
    border-top: 1px solid #e8e8e8
}

@media screen and (max-width: 767px) {

    .custom-table th,
    .custom-table td {
        font-size: 13px;
        padding: 10px
    }

    .custom-table .subject {
        width: 80%
    }

    .custom-table .date {
        width: 20%
    }

    .custom-table .hits,
    .custom-table .add-file,
    .custom-table .num,
    .custom-table .sort,
    .custom-table .answer {
        display: none
    }

    .custom-table a {
        max-width: none;
        white-space: initial;
        overflow: auto;
       	word-break: break-all;
      	min-width:auto;
    }
}

.qna-detail {
    padding: 40px 0 50px 0
}

.file-wrap {
    display: flex;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8e8e8;
    box-sizing: border-box;
    flex-wrap: wrap
}

.file-wrap label {
    font-size: 15px;
    margin-right: 30px;
    color: #2d2d2d;
    font-weight: 600;
    flex: 0 0 60px
}

.file-wrap .file-icon-wrap a {
    font-size: 15px;
    color: #d7d7d7;
    display: inline-block
}

.qna-detail .title {
    font-size: 15px;
    margin-bottom: 14px;
    display: block
}

.qna-detail .contents {
    font-size: 15px;
    line-height: 30px
}

.qna-detail .qna-contents {
    margin-top: 40px
}

.qna-detail .answer-contents {
    margin-top: 30px;
    padding: 31px 16px 36px 16px;
    box-sizing: border-box;
    background: #fafafa;
    display: flex
}

.qna-detail .answer-contents .contents-wrap {
    margin-left: 10px
}

@media screen and (max-width: 767px) {
    .qna-detail {
        padding: 10px 0 20px 0
    }

    .file-wrap {
        padding-bottom: 10px
    }

    .file-wrap label {
        font-size: 13px;
        margin-right: 10px
    }

    .file-wrap .file-icon-wrap a {
        font-size: 13px
    }

    .qna-detail .title {
        font-size: 14px;
        margin-bottom: 10px
    }

    .qna-detail .contents {
        font-size: 14px;
        line-height: 1.5
    }

    .qna-detail .qna-contents {
        margin-top: 20px
    }

    .qna-detail .answer-contents {
        margin-top: 20px;
        padding: 15px
    }

    .qna-detail .answer-contents i {
        display: none
    }

    .qna-detail .answer-contents .contents-wrap {
        margin-left: 0
    }
}

.qna-prt {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border-top: 1px solid #e8e8e8;
    padding: 30px 0 40px 0;
    box-sizing: border-box
}

.qna-prt>div>a {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block
}

.qna-prt>div>ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 86px
}

.qna-prt>div>ul li {
    box-sizing: border-box
}

.qna-prt>div>ul li a {
    display: block;
    color: #5b5b5b;
    font-size: 15px;
    line-height: 2.27;
    letter-spacing: -0.15px
}

@media screen and (max-width: 767px) {
    .qna-prt {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px 0
    }

    .qna-prt>div {
        display: flex
    }

    .qna-prt>div>a {
        font-size: 14px;
        margin-bottom: 0;
        flex: 0 0 auto;
        margin-right: 8px
    }

    .qna-prt>div>ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: auto
    }

    .qna-prt>div>ul li {
        box-sizing: border-box
    }

    .qna-prt>div>ul li a {
        font-size: 13px;
        line-height: 1.5
    }

    .qna-prt>div>ul li+li {
        margin-top: 5px
    }

    .qna-prt>div.next-wrap {
        border-top: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
        padding: 10px 0
    }
}
 .login-wrap {
    margin-top: 74px;
}


.login-wrap .inputWarp_new {
    position: relative;
    padding-top: 40px;
    margin: 40px auto;
    width: 740px
}

.login-wrap .inputBox_new input[type=text],
.login-wrap .inputBox_new input[type=password] {
    width: 100%;
    margin-bottom: 10px;
    display: block;
    box-sizing: border-box
}

.login-wrap h1 {
    margin-bottom: 17px;
    font-size: 34px;
    color: #000;
    font-weight: 700;
    text-align: center
}

.login-wrap input {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border: 1px solid #dfdfdf;
    color: #999
}

.login-wrap .titText_new {
    text-align: center;
    font-size: 14px;
    color: #000
}

.login-wrap .condition_new {
    padding: 0 0 10px
}

.login-wrap .condition_new label {
    font-size: 14px
}

.login-wrap input[type=radio] {
    height: auto;
    border: 0
}

.login-wrap a {
    text-decoration: none
}

.login-wrap label,
#wrapper.newJoin #container.login input {
    vertical-align: middle
}

.login-wrap #loginWrap_new {
    padding: 50px 40px 20px
}

.login-wrap .inputWarp_new:after {
    content: "";
    display: block;
    clear: both
}

.login-wrap .inputBox_new:after {
    content: "or";
    position: absolute;
    top: 36%;
    right: -63px;
    margin-top: -12px;
    padding: 2px 5px 5px;
    font-size: 14px;
    color: #d9d9d9;
    background: #fff
}

.login-wrap .inputBox_new>span input {
    vertical-align: middle;
    margin-right: 5px
}

.login-wrap .inputBox_new>span input[type=checkbox] {
    border: 0;
    width: auto;
    height: auto;
    padding: 0;
    line-height: normal
}

.login-wrap .inputBox_new>span label {
    color: #333;
    vertical-align: middle;
    font-size: 14px
}

.login-wrap .btnBox_new li {
    margin-bottom: 10px
}

.login-wrap .btnBox_new li a .login-wrap .btnBox_new li.mgN {
    margin: 0
}

.login-wrap .footBtn_new {
    padding-top: 18px;
    border-top: 1px solid #f1f1f1;
    text-align: center
}

.login-wrap .footBtn_new li {
    display: inline-block;
    *display: inline
}

.login-wrap .footBtn_new li.on a {
    font-weight: 700
}

.login-wrap .footBtn_new li a {
    display: inline-block;
    position: relative;
    padding: 0 16px 0 13px;
    font-size: 12px;
    color: #333
}

.login-wrap .footBtn_new li a:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    width: 1px;
    height: 8px;
    margin-top: -4px;
    background: #9f9f9f
}

.login-wrap .footBtn_new li.last a:after {
    display: none
}

.login-wrap .cautionText {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px
}

.login-wrap .btnTypeNA {
    display: block;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    background: #c8145d
}

.login-wrap .btnTypeNB {
    position: relative;
    display: block;
    padding-left: 51px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    z-index: 1
}

.login-wrap .btnTypeNB:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 51px;
    height: 42px;
    z-index: 2
}

.login-wrap .btnTypeNB.naver {
    background: #00c63b;
    color: #000
}

.login-wrap .btnTypeNB.naver:after {
    background: url(/hc/theming_assets/01HZH7HN9PG94YJ7GM22B2NGMV) no-repeat 0 0
}

.login-wrap .btnTypeNB.facebook {
    background: #0054a6;
    color: #fff
}

.login-wrap .btnTypeNB.facebook:after {
    background: url($assets-ico_facebook-gif) no-repeat 0 0
}

.login-wrap .btnTypeNB.kakao {
    background: #f3e02a;
    color: #3c1c1d
}

.login-wrap .btnTypeNB.kakao:after {
    background: url($assets-ico_kakao-gif) no-repeat 0 0
}

 .login-wrap .btn-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: auto;
    max-width: 300px;
}
 .login-wrap .btn-wrap .btn {
        margin: 0!important;
   height:50px;
   line-height:43px;
}
.login-wrap .login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 100px
}

.login-wrap .login-container .inputBox_new {
    position: relative
}

.login-wrap .login-container .inputBox_new>span {
    margin: 20px 0;
    display: block
}

.login-wrap .login-container .inputBox_new::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 149px;
    background-color: #e8e8e8;
    right: -51px
}

.login-wrap .login-container .cautionText {
    grid-column: 1/span 2
}

@media screen and (max-width: 767px) {
  .login-wrap{
     margin: 80px 0 40px 0;
  }
    .login-wrap .btn-wrap {
        gap: 16px;
        max-width:none;
    }

    .login-wrap .btn-wrap .btn {
        margin: 0;
    }

    .login-wrap .inputWarp_new {
        padding-top: 0;
        width: 100%
    }

    .login-wrap .login-container {
        grid-template-columns: 1fr;
        grid-column-gap: 20px
    }

    .login-wrap .login-container .inputBox_new>span {
        margin: 20px 0;
        display: block
    }

    .login-wrap .login-container .inputBox_new::before,
    .login-wrap .login-container .inputBox_new::after {
        display: none
    }

    .login-wrap .login-container .btnBox_new {
        order: 3
    }

    .login-wrap .login-container .cautionText {
        grid-column: 1/span 1
    }
}

.myCare #container {
    padding-top: 60px
}

.myCare #contArea {
    float: none;
    width: 100%
}

.myCare h3 {
    padding: 0 0 10px 20px;
    font-family: nGothicB;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    line-height: 30px
}

.myCareList li strong {
    font-size: 22px;
    line-height: 24px;
    color: #333
}

.myCareList li p {
    font-size: 13px;
    line-height: 20px;
    color: #666
}

.myCareList li p.text {
    padding-left: 30px;
    word-break: keep-all
}

.myCareList li p.btn {
    padding-top: 40px;
    font-size: 16px
}

.myCareList li.part4 p.btn.idea {
    padding-top: 20px
}

.myCareList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px
}

.myCareList li h3 {
    font-weight: bold;
    font-size: 24px;
    color: #333;
    line-height: 30px;
    margin-bottom: 20px
}

.myCareList li>div {
    display: flex;
    margin-top: 1rem;
    gap: 30px
}

.myCareList li>div i {
    flex: 0 0 70px
}

.myCareList .btnType1 {
    padding: .5rem 1.25rem;
    height: auto
}

@media screen and (max-width: 767px) {
    .myCareList {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .myCareList li h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px
    }

    .myCareList li>div {
        flex-direction: column;
        align-items: center;
        gap: 10px
    }

    .myCareList li>div i {
        flex: 0 0 auto
    }

    .myCareList li p.text {
        padding-left: 0;
        width: 80%;
        text-align: center;
    }

    .myCareList li p.btn {
        text-align: center;
      	width:100%;
      	padding:20px 0 0 0;
    }
}

.main #content section:not(.section.hero) {
    margin-top: 60px
}

@media screen and (max-width: 767px) {
    .main #content section:not(.section.hero) {
        margin-top: 30px
    }
}

.head-text p {
    font-size: 16px;
    font-weight: bold;
    color: #2d2d2d;
}

.head-text h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2d2d2d;
     margin-top:16px;
}

@media screen and (max-width: 767px) {
    .head-text p {
        font-size: 14px;
        margin-bottom: 12px
    }

    .head-text h1 {
        font-size: 20px;
    }
}

.main-link-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.main-link-wrap .main-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    width: 100%;
    padding: 0 30px;
    flex-direction: row;
}

.main-link-wrap .main-link b {
    color: #000;
    font-size: 18px
}

@media screen and (max-width: 767px) {
    .main-link-wrap {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .main-link-wrap .main-link {
        height: auto;
        padding: 20px
    }

    .main-link-wrap .main-link b {
        font-size: 16px
    }
}

.main-notice-wrap {
    padding: 41px
}

.main-notice-wrap ul {
    margin-top: 30px
}

.main-notice-wrap ul li {
    padding: 16px 0
}

.main-notice-wrap ul li a {
    display: flex;
    width: 100%;
    font-size: 15px;
    letter-spacing: -0.15px
}

.main-notice-wrap ul li a:hover {
    transition: none
}

.main-notice-wrap ul li a>div {
    display: flex
}

.main-notice-wrap ul li .num {
    min-width: 50px;
    display: inline-block;
    text-align: center
}

.main-notice-wrap ul li .sort {
    min-width: 200px;
    display: inline-block;
    text-align: center
}

.main-notice-wrap ul li .notice-title {
    width: 100%;
    color: #5b5b5b
}

@media screen and (max-width: 767px) {
    .main-notice-wrap {
        padding: 20px
    }

    .main-notice-wrap ul {
        margin-top: 20px
    }

    .main-notice-wrap ul li {
        padding: 8px 0
    }

    .main-notice-wrap ul li a {
        display: flex;
        width: 100%;
        line-height: 1.6;
        font-size: 13px
    }

    .main-notice-wrap ul li a>div {
        display: inline
    }

    .main-notice-wrap ul li .num {
        min-width: 30px;
        text-align: left
    }

    .main-notice-wrap ul li .sort {
        min-width: auto
    }

    .main-notice-wrap ul li .notice-title {
        width: auto
    }
}

.main-client-wrap {
    padding: 41px
}

.main-client-wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 30px
}

.main-client-wrap ul li {
    word-break: keep-all
}

.main-client-wrap ul li a {
    display: block;
    text-align: center
}

.main-client-wrap ul li a .title {
    margin-top: 16px;
    font-weight: bold;
    color: #111;
    font-size: 16px
}

.main-client-wrap ul li a .desc {
    margin-top: 14px;
    color: #5b5b5b;
    line-height: 1.6
}

@media screen and (max-width: 767px) {
    .main-client-wrap {
        padding: 20px
    }

    .main-client-wrap ul {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px
    }
}


*{
    margin:0; padding:0;
}
ol, ul, h1, h2, h3, h4, h5, h6, p {
    padding-left: 0!important;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0!important;
    margin-right: 0;
}

.btn{border-radius:0!important;}
.card{border-radius:0!important;}


.article-vote-up, .article-vote-down{
    border: 0;
    outline: 0;
    background: #f6f6f6;
    width: 110px;
    display: inline-block;
    padding: 0.45rem 1.25rem;
    border-radius: 30px;
    vertical-align: middle;
}
.article-vote-up[aria-pressed="true"], .article-vote-down[aria-pressed="true"]{
  	background:#111;
  	color:#fff;
}
.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle{
  border-color:#c70752!important;
  box-shadow: 0 0 0 0.25rem rgb(253 49 108 / 30%)!important;
}

.privacyCont table th{
  text-align:center;
}

.form-field input[type="text"], .form-field input[type="date"]{
	width:100%!important;
  appearance:none!important;
  -webkit-appearance: none;
  height:33px;
  background:#fff;
}

.nesty-input:after{
  top:30%;
}
input.datepicker{
  width:100%!important;
  appearance:none!important;
}


/* 20220803 컨택어스 스타일 추가 */

.contactUsPart {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 52px
}

.contactUsPart li {
    padding: 28px 0 0 100px;
    min-height: 130px;
    flex: 0 0 45%;
    border-top: 1px solid #000
}

.contactUsPart li strong {
    font-size: 20px;
    line-height: 24px;
    color: #333
}

.contactUsPart li p {
    padding-top: 15px;
    font-size: 13px;
    line-height: 20px;
    color: #666
}

.contactUsPart li.part1 {
    background: url(/hc/theming_assets/01HZH7HC2WMQ3YB45AM6MJE8QM) no-repeat 15px 28px
}

.contactUsPart li.part2 {
    background: url(/hc/theming_assets/01HZH7HCSHZKF0EH4MFE5K9X1W) no-repeat 15px 28px
}

.contactUsPart li.part2 strong+a {
    display: inline-block;
    height: 30px;
    padding: 0 18px;
    line-height: 30px;
    color: #fff;
    background: #c70752;
      margin-left: 13px;
}

.contactUsPart li.part3 {
    background: url(/hc/theming_assets/01HZH7HMZ19SWKMVXMQAVM2C0Q) no-repeat 15px 28px;
    border-bottom: 1px solid #dcdcdc;
  	padding-bottom: 30px;
}

.contactUsPart li.part4 {
    background: url(/hc/theming_assets/01HZH7HTZ6H14Z5A9SAAVCY2C4) no-repeat 15px 28px;
    border-bottom: 1px solid #dcdcdc;
  	padding-bottom: 30px;
}

.contactUsTel {
    margin-top: 60px;
    padding: 43px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f8f8
}

.contactUsTel strong {
    font-size: 20px;
    color: #333;
    display: block
}

.contactUsTel ul {
    padding-top: 15px
}

.contactUsTel ul:after {
    content: "";
    display: block;
    clear: both
}

.contactUsTel ul li {
    float: left;
    margin-left: 45px;
    font-size: 13px;
    color: #666;
    padding-left: 10px;
    background: url(/hc/theming_assets/01HZH7HA4R2KA3ENR2KWQQGPW5) no-repeat left 6px;
    letter-spacing: -1px
}

.contactUsTel ul li:first-child {
    margin-left: 0
}

@media screen and (max-width: 767px) {
  .contactUsPart {
    gap:10px;
  }
    .contactUsPart li {
        flex: 1 0 100%;
        border-bottom: 0 !important;
        padding: 28px 0 0 80px
    }

    .contactUsPart li strong {
        font-size: 14px
    }

    .contactUsPart li:nth-child(1) {
        background-size: 50px 50px !important
    }

    .contactUsPart li:not(:first-child, :last-child) {
        background-size: 50px 43px !important
    }

    .contactUsPart li:nth-child(4) {
        background-size: 50px 40px !important
    }

    .contactUsTel {
        padding: 25px;
      	margin-top:20px;
    }

    .contactUsTel strong {
        font-size: 16px
    }

    .contactUsTel ul li {
        margin-left: 0;
        padding-bottom: 8px;
      	font-size: 12px;
    }
}
/* 20220803 컨택어스 스타일 끝 */

div.required label::after{
  content:"*";
  color: #d6179b !important;
}

/* 20221102 추가 */
img{max-width:100%}