@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}

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

/* @media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
} */

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: #0072EF;
  text-decoration: none;
}

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

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

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out;
}

input:focus {
  border: 1px solid rgba(66, 66, 66, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(https://theme.zdassets.com/theme_assets/9253820/27f536d448438fdd88b4004a3223bcc153fb621d.svg) 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(66, 66, 66, 1);
}

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(66, 66, 66, 1);
}

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

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

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

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

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

/* @media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
} */

.dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  text-align: initial;
}

.dropdown-toggle:focus {
  outline: 0;
  text-decoration: underline;
}

.dropdown-toggle::after {
  color: inherit;
}

/***** Buttons *****/
/* .button, [role="button"] {
  border: 1px solid rgba(66, 66, 66, 1);
  border-radius: 4px;
  color: rgba(66, 66, 66, 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, [role="button"] {
    width: auto;
  }
} */

.button::after, [role="button"]::after {
  color: rgba(66, 66, 66, 1);
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: rgba(66, 66, 66, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, [role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

.button[data-disabled], [role="button"][data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  background-color: rgba(66, 66, 66, 1);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  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: #0f0f0f;
}

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

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

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

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
}

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

.table th,
.table th a {
  color: #757575;
  font-size: 13px;
  font-weight: 300;
  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(66, 66, 66, 1);
}

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

.form-field input[type="text"]:focus {
  border: 1px solid rgba(66, 66, 66, 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(66, 66, 66, 1);
  text-decoration: none;
}

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

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

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

.form-field.required > label::after {
  content: "*";
  color: #f00;
  margin-left: 2px;
}

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

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

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url(https://theme.zdassets.com/theme_assets/9253820/6aae8ce36967837f706ac36deff4b753e43977a4.gif) 99% 50% no-repeat;
  background-size: 16px 16px;
}

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

.form footer a {
  color: #757575;
  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: #004189;
}

/***** Header *****/
.header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

/* @media (min-width: 1160px) {
  .header {
    padding: 0;
    width: 90%;
  }
} */

.logo img {
  max-height: 37px;
}

.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;
}

.nav-wrapper a {
  border: 0;
  color: #0072EF;
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

/* @media (min-width: 768px) {
  .nav-wrapper a {
    display: inline-block;
  }
} */

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

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: #0072EF;
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
}

.nav-wrapper .icon-menu {
  border: 0;
  color: #0072EF;
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

/* @media (min-width: 768px) {
  .nav-wrapper .icon-menu {
    display: none;
  }
} */

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

.nav-wrapper .icon-menu:hover, .nav-wrapper .icon-menu:focus, .nav-wrapper .icon-menu:active {
  background-color: transparent;
  color: #0072EF;
}

/***** 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 > [role="button"] {
  border: 0;
  color: #0072EF;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
  color: #0072EF;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #0072EF;
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="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::before {
  background-color: rgba(66, 66, 66, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #FFFFFF;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

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

.footer a {
  color: #757575;
}

.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 {
  color: #757575;
  display: inline-block;
  font-weight: 300;
}

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

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

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

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

.breadcrumbs li a:visited {
  color: #0072EF;
}

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

.search input[type="search"] {
  border: 1px solid #f4f6f8;
  margin-top: 350px;
  border-radius: 10px;
  box-sizing: border-box;
  color: #f4f6f8;
  height: 60px;
  padding-left: 50px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}

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

.search input[type="search"]:focus {
  border: 1px solid #557ffe;
  color: #555;
}

.search::before {
  position: relative;
  top: 93%;
  transform: translateY(-50%);
  background-color: #f4f6f8;
  color: #557ffe;
  content: "\1F50D";
  font-size: 18px;
  position: absolute;
  left: 20px;
}

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

.search-full input[type="search"] {
  border: 1px solid #f4f6f8;
  background-color:#f4f6f8;
}

/***** Hero component *****/
.hero {
  background-image: url(https://theme.zdassets.com/theme_assets/9253820/fc64b3be0b85fa3b10f2863aed620f80f892fea8.jpg);
  background-position: center;
  background-size: cover;
  background-color: #fff;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-outer {
  background-color: #FFF;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 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: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

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

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px;
}

/* @media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
  }
} */

/* @media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 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(66, 66, 66, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(66, 66, 66, 1);
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  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(66, 66, 66, 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::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

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

.blocks-item-link {
  color: rgba(66, 66, 66, 1);
  padding: 20px 30px;
}

.blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
}

.blocks-item-description {
  font-weight: 300;
  margin: 0;
}

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

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

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

.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%;
  }
  [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;
  color: rgba(66, 66, 66, 1);
}

.promoted-articles-item .icon-lock::before {
  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;
  background-image: url(https://theme.zdassets.com/theme_assets/9253820/e58c5e8c3ebf94cbbc4d3669def0adbd7d0ff479.svg);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.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;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: rgba(66, 66, 66, 1);
  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;
  font-weight: 300;
}

.recent-activity-item-meta {
  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 {
  color: #757575;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.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-item-comment span::before {
  color: rgba(66, 66, 66, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

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

/***** 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%;
  }
} */

.section-tree-title {
  margin-bottom: 0;
}

.section-tree-title a {
  color: rgba(66, 66, 66, 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(66, 66, 66, 1);
}

.article-list-item .icon-lock::before {
  vertical-align: baseline;
}

.icon-star::before {
  color: rgba(66, 66, 66, 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-subscribe .dropdown-toggle::after {
  display: none;
}

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

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none;
}

.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(66, 66, 66, 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%;
  }
} */

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  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 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 a:visited {
  color: #004189;
}

.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: #757575;
  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: #757575;
  font-weight: 300;
}

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

.article-comment-count .icon-comments {
  color: rgba(66, 66, 66, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.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: 20px 0;
}

/* @media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
} */

.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 {
  background: transparent;
  border: 1px solid rgba(66, 66, 66, 1);
  color: rgba(66, 66, 66, 1);
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 10px;
}

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
}

.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: rgba(66, 66, 66, 1);
}

.article-vote:hover {
  background-color: rgba(66, 66, 66, 1);
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: #FFFFFF;
}

.article-vote-up::before {
  content: "\2713";
}

.article-vote-down::before {
  content: "\2715";
}

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

.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(66, 66, 66, 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-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: rgba(66, 66, 66, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

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

.sidenav-item {
  border-radius: 4px;
  color: rgba(66, 66, 66, 1);
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: rgba(66, 66, 66, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** 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::before {
  color: rgba(66, 66, 66, 1);
  content: "\1F4CE";
  font-size: 15px;
  left: 0;
  position: absolute;
  top: 5px;
}

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

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

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

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

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

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: #757575;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

.share a:hover {
  text-decoration: none;
}

.share a:hover::before {
  color: rgba(66, 66, 66, 1);
}

.share-twitter::before {
  content: "\e901";
}

.share-facebook::before {
  content: "\e903";
}

.share-linkedin::before {
  content: "\e900";
}

.share-googleplus::before {
  content: "\e902";
}

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

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

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

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

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

.comment-callout a {
  color: rgba(66, 66, 66, 1);
}

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

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

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

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

.comment-wrapper.comment-official {
  border: 1px solid rgba(66, 66, 66, 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(66, 66, 66, 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 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 a:visited {
  color: #004189;
}

.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: #757575;
  font-style: italic;
  padding: 0 15px;
}

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

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

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

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

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

.vote-up:hover::before,
.vote-down:hover::before {
  color: rgba(66, 66, 66, 1);
}

.vote-up::before, .vote-down::before {
  color: #757575;
  font-size: 24px;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: rgba(66, 66, 66, 1);
}

.vote-voted:hover::before {
  color: #0f0f0f;
}

/***** 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 .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #757575;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  background-image: url(https://theme.zdassets.com/theme_assets/9253820/ea0fc49e94c74884940bd530924916ea87035a5f.svg);
  margin-bottom: 10px;
}

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

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

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

.community-header h4 {
  margin-bottom: 0;
}

.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 .dropdown {
  width: 100%;
}

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

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

.community-follow [role="button"]:hover {
  background-color: rgba(66, 66, 66, 1);
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: rgba(66, 66, 66, 1);
  color: #FFFFFF;
}

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

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

.community-follow [role="button"]::after {
  border-left: 1px solid rgba(66, 66, 66, 1);
  content: attr(data-follower-count);
  color: rgba(66, 66, 66, 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 [role="button"]::after {
    position: static;
  }
} */

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid rgba(66, 66, 66, 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: #0072EF;
  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: #004189;
}

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

.striped-list-count {
  color: #757575;
  font-weight: 300;
  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 {
  font-weight: 300;
  text-align: center;
}

/* @media (min-width: 768px) {
  .striped-list-number {
    color: rgba(66, 66, 66, 1);
    display: block;
    font-weight: 400;
  }
} */

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #1eb848;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  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(66, 66, 66, 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-pending, .status-label-not-planned {
  background-color: #eee;
  color: #757575;
}

.status-label-pending {
  text-align: center;
}

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

.status-label-closed {
  background-color: #ddd;
}

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

.status-label-new {
  background-color: #ffd12a;
}

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

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold, .status-label-answered {
  text-transform: lowercase;
}

/***** 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 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 a:visited {
  color: #004189;
}

.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: #757575;
  font-style: italic;
  padding: 0 15px;
}

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

.post-comment-count {
  color: #757575;
  font-weight: 300;
}

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

.post-comment-count .icon-comments {
  color: rgba(66, 66, 66, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.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 h5 {
  font-weight: 600;
}

/* @media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
} */

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

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

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

/* @media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
} */

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

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

.collapsible-nav-list li {
  color: rgba(66, 66, 66, 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(66, 66, 66, 1);
  display: block;
}

/* @media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
} */

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

/* @media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid rgba(66, 66, 66, 1);
    order: 1;
    padding: 15px 0 11px 0;
  }
} */

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

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

/* @media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
} */

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

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

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* 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[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

/* @media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
} */

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

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

/* @media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
} */

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

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

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

/* @media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
} */

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: rgba(66, 66, 66, 1);
}

.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;
  }
} */

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

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

.requests-table-toolbar .organization-unsubscribe {
  background-color: rgba(66, 66, 66, 1);
  color: #FFFFFF;
}

.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 */
.subscriptions-unsubscribe a {
  background: rgba(66, 66, 66, 1);
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

/* @media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
} */

.subscriptions-unsubscribe a:hover {
  background-color: #0f0f0f;
  text-decoration: none;
}

.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: #757575;
  font-size: 13px;
  font-weight: 300;
}

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

.no-activities {
  color: #757575;
}

/***** 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: #757575;
  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(66, 66, 66, 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(66, 66, 66, 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 h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

/* @media (min-width: 1024px) {
  .request-sidebar h5 {
    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: #757575;
  font-weight: 300;
  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 * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
} */

/* @media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
} */

/* [dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: rgba(66, 66, 66, 1);
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: #757575;
  padding: 10px 12px;
} */

/* @media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
} */

/* .pagination-current {
  background-color: rgba(66, 66, 66, 1);
}

.pagination-current a, .pagination-current span {
  color: #FFFFFF;
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last {
  border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
} */

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

.meta-group * {
  display: inline;
}

.meta-data {
  color: #757575;
  font-size: 13px;
  font-weight: 300;
}

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

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

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

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

/* @media (min-width: 768px) {
  .profile-header .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: 65px;
  height: 65px;
}

.profile-avatar .icon-agent::before {
  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;
}

.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;
  }
} */

.profile-header .options [data-action="edit-profile"] {
  background-color: rgba(66, 66, 66, 1);
  border: 0;
  color: #FFFFFF;
  line-height: normal;
  padding: 8px 20px;
  outline-color: rgba(66, 66, 66, 1);
}

.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: #757575;
  font-weight: 300;
  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(66, 66, 66, 1);
  border-radius: 4px;
  color: rgba(66, 66, 66, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

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

.profile-nav {
  background-color: #f2f2f2;
  border: 0;
  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: #757575;
  font-weight: 300;
  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-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-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
  line-height: 25px;
}

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

.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;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
  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::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 1);
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
}

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

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

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 35px;
}

/***** 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 45%;
  }
} */

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

.search-results-list > li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

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

.search-result-description {
  margin-top: 15px;
  word-break: break-word;
}

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

.search-result-votes::before, .search-result-meta-count::before {
  color: rgba(66, 66, 66, 1);
}

[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-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

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

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

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}

/* Don't display CJK results in italic */
/* Add a yellow background instead */
html[lang|="zh"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em {
  font-style: normal;
  background: yellow;
}

/* Customize */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap');

body{margin:0 auto;min-width:1200px;font-family:'Pretendard', 'Noto Sans KR','Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', dotum, 돋움, sans-serif;background:#fff;}
.blind{width:0px; height:0px; position:absolute; overflow:hidden; font-size:0px; line-height:0px; z-index:-1; visibility:hidden;}

#header .h-inner {
	margin: 0 auto;
	position: relative;
	width: 1200px;
	height:80px;
}
#header h1 {
	width: 150px; 
	height: 40px;
	float:left;
	margin:20px 30px 0 0;
	padding:0 !important;
}
#header h1 a {
	background: url('https://air.tourvis.com/resource_pc/images/common/h1_logo.png') center no-repeat;
	background: url('https://air.tourvis.com/resource_pc/images/common/h1_logo.svg') center no-repeat, linear-gradient(transparent, transparent);
	background-size: 150px auto; 
	display: block;
	height: 100%;
	width: 100%;
}
#header .util-menu {
	font-size: 13px;
    line-height: 14px;
    position: absolute;
    right:0;/*style update*/
    top: 30px;
}

#header .h-inner ul.nav-gnb {float: left; margin-top:30px;}
#header .h-inner ul.nav-gnb li { float: left;  }
#header .h-inner ul.nav-gnb li:before { content:""; display:inline-block; width:1px; height:15px; background:#ccc; margin:0 10px; vertical-align:-1px;}
#header .h-inner ul.nav-gnb li:first-child:before { content:none;}
#header .h-inner ul.nav-gnb li a span { font-size:19px; color:#333; transition:all 0.2s;}
/* #header .h-inner ul.nav-gnb li.on a span { color:#0085c9;} */
#header .h-inner ul.nav-gnb li.on:hover a span {color: rgba(0, 133, 201, 0.7); }
#header .h-inner ul.nav-gnb li:hover a span  { color:rgba(51,51,51,0.7); }
#header .h-inner ul.nav-gnb li a:hover  { text-decoration: none; }

#header .util-menu a {
	float: left;
	margin-top: 5px;
	color: rgba(51, 51, 51, 1);
	transition: all 0.2s;
  margin-left: 30px;
} 

#header .util-menu a:first-child{margin-left:0;}

#header .util-menu a:hover {
	color: rgba(51, 51, 51, 0.7);  
}

#header .util-menu a span {
	float: left;
}
h1, h2, h3, h4, h5, h6{font-family:'Pretendard', 'Noto Sans KR','Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', dotum, 돋움, sans-serif;}
#header .util-menu a.login {padding-left: 18px; height: 14px;border:0;font-size:13px;line-height:14px;position:relative;}
#header .util-menu a.login:before {content: ''; display: block; position: absolute; width: 9px; height: 11px; left: 0; top: 3px; background: url('https://air.tourvis.com/resource_pc/images/common/ico_login.png') 0 0 no-repeat; background-size: 9px 11px; -webkit-background-size: 9px 11px;}

#header .user-info{margin-left:30px;padding-left:30px;}
#header .user-avatar{position:absolute;left:0;top:0;}
#user #user-name{line-height:14px;}
#header .user-info > [role="button"]{line-height:14px;margin-top:3px;}


#header .profile {
	float: left;
	margin-left: 20px;
	overflow: hidden;
	position: relative;
}
#header .profile-name {
	float: left;
	margin-top: 5px;
	margin-left: 5px;
}

#footer {
	margin: 0 auto;
	padding-bottom: 60px;
	position: relative;
	width: 1200px;
}
.footer-wrap .footer-container .footer-util {
    overflow: visible;
    background: #0584ca;
    border-radius: 7px;
    height: 40px;
}
.footer-wrap .footer-container .footer-util .inner-link {
    float: left;
    margin-left: 30px;
}
.footer-wrap .footer-container .footer-util .outer-link {
    float: right;
	margin-right: 30px;
	position: relative;
	overflow: visible;
}
.footer-wrap .footer-container .footer-util .inner-link > a,
.footer-wrap .footer-container .footer-util .outer-link > a {
    font-weight: 500;
    font-size: 14px;
    color: #e5ecf5;
    padding: 10px;
    line-height: 300%;
	text-decoration: none;
	transition: all 0.2s;
}
.footer-wrap .footer-container .footer-util .outer-link > a {
	position: absolute;
	display: block;
	width: 104px;
	top: 0;
	right: 0;
	padding: 0;
	z-index:10;
}
.footer-wrap .footer-container .footer-util .inner-link > a:hover {
    text-decoration: none;
    color: #fff;
}
.footer-wrap .footer-container .footer-util .outer-link > a:hover {
    text-decoration: none;
	color: #0584ca;
	cursor: default;
}
.footer-wrap .footer-container .footer-util .outer-link .family-box {
	position: absolute;
	top: 0;
	right: -10px;
	width: 130px;
	padding-top: 40px;
	padding-bottom:10px;
	background: #fff;
	border-radius: 4px;
	z-index: 9;
	display: none;
	box-shadow: 0 2px 2px 2px rgba(0,0,0,0.2);
}
.footer-wrap .footer-container .footer-util .outer-link .family-box:hover + a {
	color: #0584ca;
}
.footer-wrap .footer-container .footer-util .outer-link:hover .family-box {
	display: block;
}
.footer-wrap .footer-container .footer-util .outer-link .family-box a {
	display: block;
	padding:5px 15px;
	text-decoration: none;
	color: #0584ca !important;
	transition: all 1s;
  font-size: 14px; 
}
.footer-wrap .footer-container .footer-util .outer-link .family-box a:hover {
    color: #00a6ff !important;
}
.footer-wrap .footer-container .footer-util a.personal-info {
    color: #e5ec59;
}
.footer-wrap .footer-container .footer-util a:hover.personal-info {
    color: #ffff00;
}
.footer-wrap .footer-container .footer-info {
    overflow: hidden;
    margin: 30px 0 50px 0;
    line-height: 170%;
}
.footer-wrap .footer-container .footer-info .info-box {
    float: left;
}
.footer-wrap .footer-container .footer-info .info-box span {
    display: inline-block;
    margin-right: 15px;
    font-weight: 400;
    font-size: 13px;
    color: #888;
}
.footer-wrap .footer-container .footer-info .info-box span.company {
    color: #545454;
}
.footer-wrap .footer-container .footer-info .info-box span.copyright {
    font-size: 12px;
    line-height: 250%;
}
.footer-wrap .footer-container .footer-info .footer-site-id {
    float: right;
}
.footer-wrap .footer-container .footer-info .footer-site-id img {
    width: 120px;
    height: 25.8834px;
    margin-top: 15px;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-sizing: border-box;
  height: 55px;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 38px;
  color: #999999;
  display: block;
    height: 51px;
    line-height: 51px;
    margin: 0;
    font-weight: 500;
    box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: '';
  position: absolute;
  display: block;
  top: 17px;
  right: 16px;
  width: 17px;
  height: 10px;
  background: url('../../images/common/btn_up.png') 0 0 no-repeat; background: url('../../images/common/btn_up.svg') 0 0 no-repeat, linear-gradient(transparent, transparent); background-size: 17px 10px; -webkit-background-size: 17px 10px;
  
}

.selectric-focus .selectric {
  outline: none;
  border: 2px solid #0186cb;

  padding: 0;
      box-sizing: border-box;
}

.selectric-hover .selectric {
  padding-left: 20px;
  outline: none;
  border: 2px solid #0186cb;

  padding: 0;
    box-sizing: border-box;
}


.selectric-hover .selectric .label{
  line-height: 49px; margin-left: -1px;
}
.selectric-hover.selectric-focus .selectric .label{
  line-height: 51px; margin-left: 0;
}


.selectric-hover .selectric .button {
  color: #a2a2a2;

}


.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
    right: 15px;
    top: 16px;
}

.selectric-hover.selectric-open .selectric .button:after {
    right: 16px;
    top: 17px;
}


/**/
.selectric-above.selectric-focus .selectric .label,
.selectric-below.selectric-focus .selectric .label{
  color: #333333;
  line-height: 49px;
  margin-left: -1px
}


.selectric-above.selectric-focus .selectric .button:after,
.selectric-below.selectric-focus .selectric .button:after {
  border-top-color: #a2a2a2;
    right: 15px;
    top: 16px;
}

.selectric-open.selectric-focus .selectric .label{
  line-height: 51px;
  margin-left: 0;
}

.selectric-open.selectric-hover .selectric .label{
  line-height: 51px;
  margin-left: 0;
}

.selectric-open.selectric-focus .selectric .button:after {
  border-top-color: #a2a2a2;
    right: 16px;
    top: 17px;
}


.selectric-open {
  color:#333333;
  z-index: 99;
}

.selectric-open .selectric .label {
  color: #333333; line-height: 51px; margin-left: 0;
}
.selectric-open .selectric {
  background: #ffffff;
  color: #333333;
  border: 1px solid #333;

}

.selectric-open .selectric-items {
  display: block;
}



.selectric-open .selectric .button:after {
  border-top-color: #a2a2a2;
    /*right: 15px;*/
    /*top: 16px;*/
}



.selectric-disabled {
  /*filter: alpha(opacity=50);*/
  /*opacity: 0.5;*/
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-disabled .selectric { background-color: #f4f4f4;
}

.selectric-disabled .selectric .label.checked { color: #999999;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #333;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items.selectric-above,
.selectric-items.selectric-below,
 {
  border-top: 0 none;
}

.selectric-items.selectric-above {
  border-bottom: 0 none;
}

.selectric-items .selectric-scroll {
  height: 100%;
  max-height: 236px;
  overflow-x: auto;
  overflow-y: scroll;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #333333;
  cursor: pointer;
  padding-left: 15px;
}

.nation .selectric-items li:nth-child(6) {
  margin-top: 10px; padding-top: 15px; border-top: 1px solid #dddddd;
}

.selectric-items li.selected {
  /*background: #557ffe;
  color: #ffffff;*/
}

.selectric-items li.highlighted {
  background: #557ffe;
  color: #ffffff;
}

.selectric-items li:hover {
  background: #557ffe;
  color: #ffffff;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}
.powered-by-zendesk{display:none;}

.mg-auto { margin:auto;}
.tx-center { text-align:center;}
.pb-100 { padding-bottom:100px;}
.table.tp2 tr th { min-width:100px;}
.table.tp2 tr th.required label:after {content: "*"; color: #f00; margin-left: 2px; }
.table.tp2 tr td .radio-wrap span { width:87px;}
.table.tp2 tr td span.radio-box { display:inline-block; margin:3px 0 3px 10px;}
.table.tp2 tr td span.radio-box.air { width:87px;}
.table.tp2 tr td span.radio-box input { position:absolute; width:0; height:0;}
.table.tp2 tr td span.radio-box label { margin-bottom:0; position:relative; padding-left:20px;}
.table.tp2 tr td span.radio-box label .check-point { position:absolute; width:13px; height:13px; left:1px; top:50%; margin-top:-5.5px; }
.table.tp2 tr td span.radio-box label .check-point em { display:block; width:100%; height:100%; position:relative;}
.table.tp2 tr td span.radio-box label .check-point em:before { content:''; position:absolute; left:0; top:0; display:inline-block; width: 13px; height: 13px; border-radius: 100px; border: 1px solid #979797; box-sizing:border-box; background: none; transition: all .2s;}
.table.tp2 tr td span.radio-box input[type="radio"]:checked+label .check-point em:before {border-color: #557ffe; background: #557ffe; }
.table.tp2 tr td span.radio-box input[type="radio"]:checked+label .check-point em:after { content: ''; display: block; width: 7px; height: 7px; border-radius: 100px; background: #fff; position: absolute; top:0; left:0; right:0; bottom:0; margin:auto;}
.table.tp2 tr td.qList h3 { font-size:13px; color:#757575; font-weight:300; margin-top:10px; }
.table.tp2 tr td.qList h3 a { float:right; font-size:12px;}
.table.tp2 tr td.qList h3 a:hover { text-decoration:none;}
.table.tp2 tr td.qList h3 a i { vertical-align:-1px;}
.table.tp2 tr td.qList ol { padding-inline-start: 15px; }
.table.tp2 tr td.qList ol li { font-size:13px; color:#757575; font-weight:300; margin:3px 0;}
.table.tp2 tr td .form-field.optional { margin-left:0;}
.table.tp2 tr td .validation-txt { color:#D0021B; font-size:12px;}

.insertbox { margin-top:10px; text-align:right;}
.insertbox .check-block { position:relative; display:inline-block; }
.insertbox .check-block label {color: #999999; font-weight: 500; cursor: pointer;  transition:all 0.2s;}
.insertbox .check-block input { position:absolute; top:0; left:0; opacity:0; width:0; height:0; }
.insertbox .check-block input[type="checkbox"]+label:before {font-size: 16px; content:"";display:inline-block;width:16px; height:16px; vertical-align:-4px; border:1px solid #ddd; background:#eee; margin-right:7px; box-sizing:border-box;  transition:all 0.2s;}
.insertbox .check-block input[type="checkbox"]:checked+label {color: #333333; font-weight: 500; }
.insertbox .check-block input[type="checkbox"]:checked+label:before {background:#000 url(//theme.zdassets.com/theme_assets/9253820/533ac17bfef6a966d68800a9b64e88323081a3a9.svg) no-repeat center; border-color:#000; background-size:11px auto; }

.no-page { width:1200px; margin:auto; text-align:center; padding-bottom:50px;}

.flex{display:flex;justify-content:center;}
.btn-club .lbttn-st1{margin-left:10px;}
.lbttn-st1 {display: inline-block;width: 367px;position: relative;font-size: 16px;background-color: #fff;height:60px;line-height:58px;border: 1px solid #cacdd4;border-radius: 4px;position: relative;cursor: pointer;text-align:center;color:#000;}
.lbttn-st1:hover{text-decoration:none;border-color:#557ffe;color:#557ffe;}
.ico-chatbot{display:inline-block;width:36px;height:29px;background: url(https://theme.zdassets.com/theme_assets/9253820/ee202dcf8d08b3f6e25ef31b09f02e4371fbdffa.png)no-repeat;vertical-align:middle;}

 .bg-tour{background:#557ffe !important;}
.popup{position:fixed;width:100%;height:100%;top:0;left:0;z-index:10;display:none;}
.popup .dim{position:fixed;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,0.6);z-index:2;}
.popup-cont{position:relative;width:100%;height:100%;padding:0 20px;box-sizing:border-box;display:flex;align-items:center;justify-content:center;z-index:3;}
.popup-cont .popup-inner{width:100%;max-width:400px;background:#fff;border-radius:4px;padding:30px 16px;position:relative; box-shadow: 0 1px 3px rgba(0, 0, 0, .1);}
.popup-cont .popup-inner.size-md {max-width: 770px}
.popup-cont .popup-inner h3{font-size:14px;color:#8d9199;font-weight:400;text-align:center;}
.popup-cont .popup-inner .btn-wrap{margin-top:20px;}
.popup-cont .btn-wrap .btn {display:inline-block;padding:0 31px;height:42px;line-height:42px;border-radius:24.5px;transition:background 0.2s;text-align:center;}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.btn-wrap{display:flex;align-items:center;justify-content:center;}
.btn-wrap a{text-decoration:none;}
.btn-wrap .btn + .btn{margin-left:10px;}
/* .btn{display:inline-block;padding:0 31px;height:42px;line-height:42px;border-radius:24.5px;transition:background 0.2s;text-align:center;} */
.btn.md{min-width:160px;font-size:14px;color:#fff;}    
.btn.bg-tour:hover{background:#3861db !important;}
.popup .btn-close{background: url(https://theme.zdassets.com/theme_assets/9253820/6b090e914dddc21dfe6b701d096243607625dcd7.svg) no-repeat #fff;position:absolute;width:14px;height:14px;right:20px;top:22px;}

/*플로팅 배너*/
.pgs-floating{position:fixed;bottom:40px;right:20px;z-index:30;box-shadow: 1px 4px 5px rgb(0 0 0 / 10%);border-radius:18px;}
.pgs-floating > div{width:68px;height:68px;border-radius:18px;position:relative;overflow:hidden;transition:width 0.2s;}
.pgs-floating > div span.img{position:absolute;right:0;display:inline-block;width:68px;height:68px;border-radius:18px;z-index:1;}
.pgs-floating > div span.txt{font-size:18px;line-height:68px;color:#000;display:inline-block;padding:0 25px;position:absolute;right:0;top:0;width:370px;height:68px;z-index:0;transform:translateX(370px);transition:all 0.4s;}
.pgs-floating > div span.txt em{font-style:normal;}
.pgs-floating > div:hover{width:370px;transition:width 0.4s;}
.pgs-floating > div:hover span.txt{transform:translateX(0);}
.pgs-chatbot span.img{background:url(https://cdns.tourvis.com/new/pc/images/ic-chatbot.svg)right center no-repeat;}
.pgs-chatbot span{background-color:#f9e000;border-radius:18px;}
.btn-tlink-st5{display:inline-block;position:relative;padding-right:15px;font-weight:400;}
.btn-tlink-st5:after{display:block;content:'';position:absolute;top:50%;right:0;margin-top:-4px;border:solid #000;border-width: 0 1px 1px 0;padding:4px;transform:rotate(-45deg);}


/*--------------------------------------------------------------------------------------------------------------
 css 추가 시작
 *--------------------------------------------------------------------------------------------------------------*/
/* 리셋 보완 */
.header-sec, .footer-sec,
.header-sec header, .footer-sec header,
.header-sec div, .footer-sec div,
.header-sec nav, .footer-sec nav,
.header-sec p, .footer-sec p,
.header-sec strong, .footer-sec strong,
.header-sec small, .footer-sec small,
.header-sec span, .footer-sec span {margin: 0;padding: 0;font-family: 'Pretendard', 'Noto Sans KR','Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', dotum, 돋움, sans-serif;}
.header-sec ul, .footer-sec ul, 
.header-sec li, .footer-sec li,
.header-sec dl, .footer-sec dl,
.header-sec dd, .footer-sec dd,
.header-sec dt, .footer-sec dt,
.header-sec em, .footer-sec em {list-style:none;margin: 0;padding: 0;}
.header-sec h1, .footer-sec h1, .header-sec h2, .footer-sec h2 {font-size:100%;margin: 0;padding: 0;}
.header-sec em, .footer-sec em {font-style:normal;font-weight:normal;}
.header-sec a, .header-sec a:link, .footer-sec a, .footer-sec a:link{text-decoration:none;color:inherit;margin: 0;padding: 0;} 
.header-sec a:visited,.footer-sec a:visited{text-decoration:none}
.header-sec a:hover, .footer-sec a:focus,.footer-sec a:hover, .footer-sec a:focus{ text-decoration:none;color:inherit}
.header-sec a:active,.footer-sec a:active{text-decoration:none} 
.header-sec *,.header-sec *:before,.header-sec *:after,
.footer-sec *,.footer-sec *:before,.footer-sec *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing: border-box;font-size: 14px;line-height: 1.5;}

/*--------------------------------------------------------------------------------------------------------------
 ************************ common ************************
 *  css naming : s- for Section, b- for Button, ly- for Layout, u- for UI, c- for Components, o- for Object
 *--------------------------------------------------------------------------------------------------------------*/
/* hidden read */
.header-sec .a11y, .footer-sec .a11y {overflow:hidden;position:absolute;clip:rect(0 0 0 0);width:1px;height:1px;margin:-1px;border:0;padding:0;}
.header-sec .a11y.focusable:focus, .footer-sec .a11y.focusable:focus {overflow:visible;position:static;clip:auto;width:auto;height:auto;margin:0;}

/*--------------------------------------------------------------------------------------------------------------
 ************************ common - layout ************************
 *--------------------------------------------------------------------------------------------------------------*/
.header-sec .ly-inner, .footer-sec .ly-inner {max-width:1200px;width:100%;margin:0 auto;position:relative;}

/*--------------------------------------------------------------------------------------------------------------
 ************************  common - background ************************
 *--------------------------------------------------------------------------------------------------------------*/
.c-btn-toppos,
.footer-sec .fs-logo .set-flink .tit:after,
.footer-sec .fs-logo > a,
.footer-sec .fs-sns li a:before,
.footer-sec .fs-sns li a:after,
.header-sec .nav-util .l1 a:before,
.header-sec .hs-logo a {background-image: url(https://theme.zdassets.com/theme_assets/9253820/59591dc1b981e433a35ba0f57af62d59c880d496.png);background-repeat: no-repeat;}


/*--------------------------------------------------------------------------------------------------------------
 ************************ common - header ************************
 *--------------------------------------------------------------------------------------------------------------*/
.header-sec {position: relative;z-index: 10;background-color: #fff;}
.header-sec .hs-inner {border-bottom: 1px solid #e5e5e5;}
.header-sec .hs-inner .ly-inner {position: relative;height: 100px;padding-top: 40px;}
.header-sec .hs-inner .ly-inner:after {content: '';display: block;clear: both;}
/*.header-sec .hs-inner .ly-inner:before {content: '';display: block;width: 100%;height: 1px;background-color: #e5e5e5;position: absolute;bottom: 0;left: 0;}*/
.header-sec .hs-logo {float: left;}
.header-sec .hs-logo a {display: block;width: 133px;height: 34px;background-position: 0 -44px;}
.header-sec #gnb-sec {float: left;margin-left: 50px;padding-top: 1px;}
.header-sec #gnb-sec .list:after {content: '';display: block;clear: both;}
.header-sec #gnb-sec .list li {float: left;margin-right: 30px;position: relative;}
.header-sec #gnb-sec .list li .s-badge{position:absolute;top:-2px;left:96px;width:43px;height:17px;background:url(https://cdns.tourvis.com/new/pc/images/ic-live.svg)center center no-repeat;}
.header-sec #gnb-sec .list li .s-badge.top{top: -17px; left: 5px;}
/* #49179 */
.header-sec #gnb-sec .list li .d-badge{position:absolute; top:-19px; line-height: 15px; padding: 0 5px 1px; font-family: 'Roboto'; font-weight: 500; color: #fff; background-color: #FF632C; border-radius: 3px; letter-spacing: -1px; white-space: nowrap;}
.header-sec #gnb-sec .list li .d-badge::after{content: ''; position: absolute; left: 0; bottom: -2px; display: block; width: 0px; height: 0px; border-top: 2px solid transparent; border-left: 5px solid #FF632C; border-bottom: 2px solid transparent;}
.header-sec #gnb-sec .list li .d-badge.bg-red{background-color: #EA4754;}
.header-sec #gnb-sec .list li .d-badge.bg-red::after{border-left-color: #EA4754;}
.header-sec #gnb-sec .list li .d-badge.bg-yellow{height: 19px; line-height: 19px; background-color: #FFC81C; color:#000; font-size: 12px;}
.header-sec #gnb-sec .list li .d-badge.bg-yellow::after{border-left-color: #FFC81C;}
/* //#49179 */
.header-sec #gnb-sec .list li .d-badge .tx11 {font-size: 11px;}
.header-sec #gnb-sec .list li .d-badge .tx12 {font-size: 12px; font-weight: 400;}
.header-sec #gnb-sec .list li a {display: block;position: relative;padding: 0 5px;font-size:18px;color: #000;transition: color 0.3s;}
.header-sec #gnb-sec .list li a:hover {color: #557ffe;}
.header-sec #gnb-sec .list .on:before {content: '';display: block;width: 100%;height: 1px;background-color: #0078b5;position: absolute;bottom: -33px;left: 0;}
.header-sec #gnb-sec .list .on a {color: #557ffe;}
.header-sec #gnb-sec .list .on a:before {opacity: 0;}
.header-sec #gnb-sec .list .on a:after {opacity: 1;}
.header-sec .nav-util {float: right;}
.header-sec .nav-util .list:after {content: '';display: block;clear: both;}
.header-sec .nav-util .list li {float: left;margin-left: 30px;}
.header-sec .nav-util .list li a {font-size:12px;color: #000;transition: color 0.3s;}
.header-sec .nav-util .list li a:hover {color: #557ffe;}
.header-sec .nav-util .list .user-name {font-size: 12px;color: #000;margin-right: 8px;}
.header-sec .nav-util .list .user-name strong {font-size: 12px;}
.header-sec .nav-util .list .l1 a {padding-left: 20px;position: relative;}
.header-sec .nav-util .l1 a:before {content: '';display: block;width: 11px;height: 14px;position: absolute;top: 2px;left: 0;background-position: -238px -24px;}
/* 투명배경, 흰색 아이콘 스타일 */
.header-sec.hs-sty2 {background-color: transparent;}
.header-sec.hs-sty2 .hs-inner {border: 0;}
.header-sec.hs-sty2 .hs-inner .ly-inner:before {content: '';display: block;width: 100%;height: 1px;background-color: #e5e5e5;position: absolute;bottom: -1px;left: 0;}
.header-sec.hs-sty2 .hs-inner .ly-inner:before {background-color: #fff;opacity: 0.2;}
.header-sec.hs-sty2 .hs-logo a {background-position: 0 0;}
.header-sec.hs-sty2 #gnb-sec .list li a {color: #fff;}
.header-sec.hs-sty2 #gnb-sec .list .on:before {background-color: #fff;}
.header-sec.hs-sty2 #gnb-sec .list .on a {color: #fff;}
.header-sec.hs-sty2 .nav-util .list li a {color: #fff;}
.header-sec.hs-sty2 .nav-util .list .user-name {color: #fff;}
.header-sec.hs-sty2 .nav-util .l1 a:before {background-position: -238px 0;}
/* fix 모드 */
#header-sec.fixed {position: relative;}
#header-sec.fixed .header-sec {position: fixed;width: 100%;top: 0;left: 0;background-color: #fff;z-index:20;}
#header-sec.fixed .header-sec .hs-inner {border-bottom: 1px solid #e5e5e5;}
#header-sec.fixed .header-sec .hs-inner .ly-inner {height: 60px;padding-top: 15px;}
/*#header-sec.fixed .header-sec .hs-inner .ly-inner:before {display: none;}*/
#header-sec.fixed .nav-util {padding-top: 4px;}
#header-sec.fixed #gnb-sec .list .on:before {bottom: -18px;}
#header-sec.fixed .hs-sty2 .hs-logo a {background-position: 0 -44px;}
#header-sec.fixed .hs-sty2 .hs-logo a {background-position: 0 -44px;}
#header-sec.fixed .hs-sty2 #gnb-sec .list li a {color: #000;}
#header-sec.fixed .hs-sty2 #gnb-sec .list li a:hover {color: #557ffe;}
#header-sec.fixed .hs-sty2 #gnb-sec .list .on:before {background-color: #0078b5;}
#header-sec.fixed .hs-sty2 #gnb-sec .list .on a {color: #557ffe;}
#header-sec.fixed .hs-sty2 .nav-util .list .user-name,
#header-sec.fixed .hs-sty2 .nav-util .list li a {color: #000;}
#header-sec.fixed .hs-sty2 .nav-util .l1 a:before {background-position: -238px -24px;}

/*--------------------------------------------------------------------------------------------------------------
 ************************ common - footer ************************
 *--------------------------------------------------------------------------------------------------------------*/
.footer-sec {background-color: #fff;border-top: 1px solid #e4e4e4;margin-top: 100px;}
.footer-sec .fs-inner {position: relative;padding-top: 50px;padding-bottom: 50px;}
.footer-sec .nav-fnb:after {content: '';display: block;clear: both;}
.footer-sec .nav-fnb li {float: left;margin-left: 35px;}
.footer-sec .nav-fnb li:first-child {margin-left: 0;}
.footer-sec .nav-fnb li a {font-size: 14px;color: #000;transition: color 0.3s;}
.footer-sec .nav-fnb li a:hover {color: #557ffe;}
.footer-sec .nav-fnb li em {color: #557ffe;transition: color 0.3s;}
.footer-sec .nav-fnb li a:hover em {color: #3861db;}
.footer-sec .fs-info {margin-top: 10px;}
.footer-sec .fs-info p {font-size: 14px;color: #666;line-height: 26px !important;}
.footer-sec .fs-info strong {font-weight: 700;}
.footer-sec .fs-copyright {margin-top: 20px;}
.footer-sec .fs-copyright small {font-size: 12px;color: #999;}
.footer-sec .fs-sns {position: absolute;top: 58px;right: 0;}
.footer-sec .fs-sns:after {content: '';display: block;clear: both;}
.footer-sec .fs-sns li {float: left;margin-left: 25px;margin-left: 20px;}
.footer-sec .fs-sns li a {display: block;position: relative;}
.footer-sec .fs-sns li a:hover:before {opacity: 0;}
.footer-sec .fs-sns li a:hover:after {opacity: 1;}
.footer-sec .fs-sns li a:before,
.footer-sec .fs-sns li a:after {content: '';display: block;position: absolute;width: 100%;height: 100%;top:3px;left: 0;transition: opacity 0.3s;}
.footer-sec .fs-sns li a:after {opacity: 0;}
.footer-sec .fs-sns .l1 a {width: 21px;height: 20px;}
.footer-sec .fs-sns .l2 a {width: 18px;height: 18px;}
.footer-sec .fs-sns .l3 a {width: 18px;height: 18px;}
.footer-sec .fs-sns .l4 a {width: 18px;height: 18px;}
.footer-sec .fs-sns .l1 a:before {background-position: -143px -87px;}
.footer-sec .fs-sns .l1 a:after {background-position: -143px -117px;}
.footer-sec .fs-sns .l2 a:before {background-position: -184px -87px;}
.footer-sec .fs-sns .l2 a:after {background-position: -184px -117px;}
.footer-sec .fs-sns .l3 a:before {background-position: -222px -87px;}
.footer-sec .fs-sns .l3 a:after {background-position: -222px -117px;}
.footer-sec .fs-sns .l4 a:before {background-position: -260px -87px;}
.footer-sec .fs-sns .l4 a:after {background-position: -260px -117px;}
.footer-sec .fs-logo {position: absolute;bottom: 51px;right: 0;}
.footer-sec .fs-logo > a {display: inline-block;width: 118px;height: 31px;background-position: 0 -88px;vertical-align: middle;}
.footer-sec .fs-logo .set-flink * {transition: all 0.1s;}
.footer-sec .fs-logo .set-flink {display: inline-block;width: 170px;margin-left: 20px;position: relative;}
.footer-sec .fs-logo .set-flink .tit {display: block;background-color: #fff;padding: 10px 15px 9px 20px; border: 1px solid #cacdd4;border-radius: 4px;position: relative;cursor: pointer;text-align: left;}
.footer-sec .fs-logo .set-flink .tit:after {content: '';display: block;width: 14px;height: 9px;position: absolute;top: 15px;right: 20px;background-position: -266px 1px;}
.footer-sec .fs-logo .set-flink:hover .tit {border: 1px solid #557ffe;}
.footer-sec .fs-logo .set-flink:hover .tit:after {background-position: -266px -19px;}
.footer-sec .fs-logo .set-flink:hover .list {opacity: 1;visibility: visible;}
.footer-sec .fs-logo .set-flink .list {position: absolute;width: 100%;bottom: 42px;opacity: 0;visibility: hidden;
	border-radius: 4px;border-radius: 4px;overflow: auto;
	-webkit-box-shadow: 3.1px 9.5px 29px 0 rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 3.1px 9.5px 29px 0 rgba(0, 0, 0, 0.14);
	box-shadow: 3.1px 9.5px 29px 0 rgba(0, 0, 0, 0.14);
}
.footer-sec .fs-logo .set-flink .list a {padding: 10px 15px 9px 20px;font-size: 14px;color: #000;line-height: 1.4;text-decoration: none;display: block;overflow: hidden;cursor: default;background-color: #fff;bottom: 42px;text-align: left;}
.footer-sec .fs-logo .set-flink .list a:hover {background: #f3fafc;}

.c-btn-toppos {position: fixed;left:50%;margin-left:640px;bottom:50px;display:block;width:48px;height:48px;background-position: -144px 0;z-index:29;font-size:0;text-indent:-20000px;}
/*--------------------------------------------------------------------------------------------------------------
 ************************ common - contents ************************
 *--------------------------------------------------------------------------------------------------------------*/
/* ------------- Overwrite */
body {min-width: inherit;}
.hero {width: 100%;}
.container {max-width: 1200px;width: 100%;}
.section.hero-outer {margin-bottom: 115px;}

.search input[type="search"] {font-size: 18px;padding-left: 28px;color: #000;}
.search::before {content: '';width: 26px;height: 26px;left: auto;right:27px;background: url(https://theme.zdassets.com/theme_assets/9253820/dc7b6bc2c697d4aa5f4b3f27ec5c469522604c84.png) 0 0 no-repeat;}
.breadcrumbs li + li:before {content: '';display: inline-block;width: 6px;height: 12px;background: url(https://theme.zdassets.com/theme_assets/9253820/91ac8b2465ee2cdbe2d89bc728677fadad2ae649.png
) 0 0 no-repeat;margin: 0 6px;}

.pagination {margin-top: 20px;margin-bottom: 50px;}
.pagination ul {display: flex; justify-content: center;}
.pagination li {float: none; width: 25px; height: 25px; border-radius: 50%; aspect-ratio: 1/1}
.pagination a, .pagination span {display:flex; align-items: center; justify-content: center; width: 100%; height: 100%; text-align: center; font-size:14px; padding: 0; color: #000;}
.pagination-current {background-color: #557ffe;}
.pagination .pagination-current span {color: #fff;}
.pagination-prev {background-color: #fff;border:1px solid #e3e3e3;}
.pagination-prev:hover {background-color: #fff !important;}
.pagination-prev a {font-size:30px;position: relative;text-align: center;font-size: 0;}
.pagination-prev a:before {content: ''; display: inline-block; width: 6px; height: 10px; background: url(https://theme.zdassets.com/theme_assets/9253820/d00dca7e4f25a4eec4abb4efa4bdccb1388e071a.png) 0 0 no-repeat; background-size: 6px;}
.pagination-next {background-color: #fff;border:1px solid #e3e3e3; border-radius: 50%;}
.pagination-next:hover {background-color: #fff !important;}
.pagination-next a {font-size:30px;position: relative;text-align: center;font-size: 0;}
.pagination-next a:before {content: '';display: inline-block;width: 6px;height: 10px;background: url(https://theme.zdassets.com/theme_assets/9253820/ce39ca9b0ff20838308bdbb6db9dddf109ce91cb.png) 0 0 no-repeat; background-size: 6px;}
@media (max-width: 376px) {
  .pagination li {width: 20px; height: 20px;}
}

.blocks-item {border:1px solid #557ffe;display: inline-block;margin: 0;}
.blocks-item:hover, .blocks-item:focus, .blocks-item:active {background-color: inherit;}
.blocks-item .blocks-item-link {font-size:16px;color: #557ffe;padding: 13px 30px;display: block;}

/* ------------- format align style */
.a-vat {vertical-align: top !important;}
.a-vam {vertical-align: middle!important;}
.a-vab {vertical-align: bottom !important;}
.a-center {text-align: center !important;}
.a-right {text-align: right !important;}
.a-left {text-align: left !important;}

/* ------------- contents */
.section-box {border-top: 1px solid #e4e4e4;padding-top: 75px;margin-top: 20px;}
.title-st1 {display: block;font-size: 24px;color: #000;margin-bottom: 30px;}
/* ly-list-st1 */
.ly-list-st1 {overflow: hidden;}
.ly-list-st1:after {content: ' ';display: block;clear: both;}
.ly-list-st1 > li {float: left;width: 50%;margin-bottom: 50px;}
/* list-st1 */
.list-st1 {margin: 0;}
.list-st1 dd {margin: 0;}
.list-st1 a {color: #000;}
.list-st1 .tit {display: block;font-size: 18px;font-weight: 500;margin-bottom: 25px;}
.list-st1 .tit em {font-weight: 400;font-style: normal;}
.list-st1 .list li {margin-top: 10px;padding-right: 10px;padding-left: 10px;position: relative;}
.list-st1 .list li:first-child {margin-top: 0;}
.list-st1 .list li:before {content: '·';display: inline-block;position: absolute;top: 0;left: 0;}
.list-st1 .list li:nth-of-type(n+6) { display: none; }
.list-st1 .list a {font-size: 15px;display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.list-st1 .more {display: block;color: #557ffe;margin-top: 20px;position: relative;}
.list-st1 .more:after {content: '';display: inline-block;width: 6px;height: 12px;background: url(https://theme.zdassets.com/theme_assets/9253820/fb56c516c366fe1bcb002de14912fd9b0ddfa1cf.png) 0 0 no-repeat;margin-left: 6px;}
/* ly-list-st2 */
.ly-list-st2 {overflow: hidden;}
.ly-list-st2:after {content: '';display: block;clear: both;}
.ly-list-st2 > li {float: left;width: 20%;margin-bottom: 50px;}
/* list-st2 */
.list-st2 {margin: 0;}
.list-st2 dd {margin: 0;}
.list-st2 a {color: #000;}
.list-st2 .tit {display: block;font-size: 16px;font-weight: 500;margin-bottom: 25px;}
.list-st2 .list li {margin-top: 10px;padding-right: 10px;}
.list-st2 .list li:first-child {margin-top: 0;}
.list-st2 .list a {font-size: 15px;}
/* list-st3 */
.list-st3 {overflow: hidden;}
.list-st3 li:nth-child(n+15) {display: none;}
.list-st3:after {content: '';display: block;clear: both;}
.list-st3 li {float: left;width: 50%;margin-bottom: 10px;padding-right: 10px;padding-left: 10px;position: relative;}
.list-st3 li:before {content: '·';display: inline-block;position: absolute;top: 0;left: 0;}
.list-st3 a {font-size: 15px;color: #000;display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
/* list-st4 */
.list-st4 {border-top: 1px solid #000; width:100;}
.list-st4 li {border-bottom: 1px solid #e4e4e4;}
.list-st4 a {display: block; padding: 10px 5px;}
.list-st4 a:hover {color: inherit;}
.list-st4 dl {margin: 0;}
.list-st4 dt {font-size: 14px;color: #000;}
.list-st4 dd {font-size: 14px;color: #666;margin-left: 0;display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;margin-top: 10px;}
/* lselect-st1 */
.lselect-st1 {display: inline-block;position: relative;z-index: 1;}
.lselect-st1 * {transition: all 0.1s;}
.lselect-st1 {display: inline-block;width: 367px;position: relative;}
.lselect-st1 .ls-tit {display: block;padding-bottom: 10px;}
.lselect-st1 .txt {display: block;font-size: 16px;background-color: #fff;padding: 17px 15px 17px 20px;border: 1px solid #cacdd4;border-radius: 4px;position: relative;cursor: pointer;text-align: center;}
/* .lselect-st1 .txt:after {content: '';display: inline-block;width: 13px;height: 7px;background: url(https://theme.zdassets.com/theme_assets/9253820/0cad0656a029ba5fae5df909cb0460793ceac789.png) 0 0 no-repeat;margin-left: 6px;position: relative;top:-2px;} */
.lselect-st1:hover .txt {border: 1px solid #557ffe;color: #557ffe;}
.lselect-st1:hover .txt:after {background-position: 0 -17px;}
.lselect-st1:hover .list {opacity: 1;visibility: visible;}
.lselect-st1 .list {position: absolute;width: 100%;top: 70px;opacity: 0;visibility: hidden;
	border-radius: 4px;border-radius: 4px;overflow: auto;
	-webkit-box-shadow: 3.1px 9.5px 29px 0 rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 3.1px 9.5px 29px 0 rgba(0, 0, 0, 0.14);
	box-shadow: 3.1px 9.5px 29px 0 rgba(0, 0, 0, 0.14);
}
.lselect-st1 .list a {padding: 10px 15px 9px 20px;font-size: 14px;color: #000;line-height: 1.4;text-decoration: none;display: block;overflow: hidden;cursor: default;background-color: #fff;bottom: 42px;text-align: left;}
.lselect-st1 .list a:hover {background: #f3fafc;}

/* lyaout - sub-nav */
.area-sub-nav {margin-top: 20px;display: block;padding-bottom: 0;margin-bottom: 0;}
.area-sub-nav .search {width: 400px;}
.area-sub-nav .search input[type="search"] {margin-top: 0;font-size: 16px;border:0;background-color: #f4f6f8;padding-left: 24px;height: 45px;}
.area-sub-nav .search:before {top: 22px;}
.area-sub-nav .breadcrumbs {margin-top: 50px;}
.area-sub-nav .breadcrumbs {color: #666;font-size: 14px;}
.area-sub-nav .breadcrumbs a, .area-sub-nav .breadcrumbs a:visited {color: #557ffe !important;}

/* lyaout - main, common */
.msec03 .list-st3 {margin-bottom: 50px;}
.msec04 {text-align: center;}
.area-mgs {text-align: center;margin-top: 80px;}
.area-mgs .exp1 {display: block;font-size: 20px;color: #000;}
.area-mgs .blocks-item {width: 300px;margin-top: 50px;margin-bottom: 70px;}
.new-badge {display:inline-block; padding:0 12px; border:1px solid #557ffe; border-radius:20px; font-size:12px; color:#557ffe; height:21px; line-height:21px; margin-left:10px; vertical-align:1px; box-sizing:border-box }

/* lyaout - container */
.area-sub-container .msec01 {border: 0;padding-top: 0;margin-top: 15px;}

/* lyaout - article */
.asc-article .article-container {margin-top: 10px;}
.asc-article .article {padding-left: 0;flex: 1 0 77%;max-width: 77%;}
.asc-article .article-header {margin-bottom: 0;}
.asc-article .article-title {font-size: 24px;color: #000;padding-bottom: 25px;border-bottom: 1px solid #000;margin: 0;}
.asc-article .article-body {font-size: 14px;}
.asc-article .article-sidebar {flex: 0 0 23%;}
.asc-article .sidenav-title {font-size: 16px;font-weight: 400;padding-top: 19px;}
.asc-article .sidenav-item {font-size: 14px;color: #000;background-color: #f0f1f2;border:1px solid #f0f1f2;padding: 10px 12px;transition: color, background-color, border 0.3s;}
.asc-article .sidenav-item:hover {color: #557ffe;background-color: #fff;border:1px solid #557ffe;}
.asc-article .sidenav-item.current-article {color: #557ffe;background-color: #fff;border:1px solid #557ffe;}

/* lyaout - search */
.asc-search {margin-top: 10px;}
.asc-search .page-header-description {font-size: 24px;font-style: normal;color: #000;margin-bottom: 25px;}
.asc-search .search-results {flex-direction:column;}
.asc-search .search-results-list {margin-bottom: 0;border-top: 1px solid #000;}
.asc-search .search-results-list em {color: #557ffe;font-style: normal;}
.asc-search .search-results-list .search-result {border-bottom: 1px solid #e4e4e4;}
.asc-search .search-result-link {font-size: 18px;color: #000;}
.asc-search .search-result .breadcrumbs li a {font-size: 12px;color: #666 !important;}
.asc-search .search-result .breadcrumbs li + li:before {content: '>';background: none;margin: 0 4px;display: inline;}
.asc-search .search-result .search-result-description {font-size: 14px;color: #666;}
.asc-search .search-result .search-result-description em {background: none;color: #557ffe;}
.asc-search .am-search-no .exp1 {padding-top: 170px;background: url(https://theme.zdassets.com/theme_assets/9253820/3d73375f810d4ba0bb1b6bbb2c46055cf7d0b0d1.jpg) 50% 0 no-repeat;}

/*--------------------------------------------------------------------------------------------------------------
 ************************ mobile ************************
 *--------------------------------------------------------------------------------------------------------------*/
.cm-pop,
#header,
.list-st3 + .more,
#nav,
.head-cmain,
#new-footer {display: none;}

/* @media all and (max-width:950px) { */
@media all {
  .header-sec #gnb-sec .list li {margin-right:15px;}
}

/* @media all and (max-width:900px) {  */
@media all {
	.header-sec,
 	.footer-sec {display: none;}
	body {min-width: 320px;overflow-x:hidden;}
	
	/* header */
	.n-header{position:relative;z-index:100;}
	.n-header .n-gnb{position:absolute; width:18px; padding:20px; top:50%; -webkit-transform:translate(0, -50%); transform:translate(0, -50%); right:0; text-align:right; font-size:0;box-sizing: content-box;} 
	.n-header .n-gnb span{display:inline-block; width:100%; height:1px; background:#fff; margin:2.5px 0; border-radius:5px; line-height:normal;}
	.n-header .n-gnb span:last-child{ width:13px;}
	.n-header .n-gnb.black span{background:#000;}
	.n-header .btn-ico{background-repeat:no-repeat;background-position:center;}
	.n-header .btn-ico.back{position:absolute; z-index:1; padding:20px; width:9px; background-image:url(https://mair.tourvis.com/new/mo/images/btn-back.svg);  top:50%; -webkit-transform:translate(0, -50%); transform:translate(0, -50%); left:0;}
	.n-header .btn-ico.back.white{background-image:url(https://mair.tourvis.com/new/mo/images/btn-back-white.svg);}
/*   .n-header .btn-ico.back.hide{display: none;} */
	.n-header .ico-heart{background-image:url(https://mair.tourvis.com/new/mo/images/icn-heart-white.svg); width:21px; height:17px;}
	.n-header .ico-share{background-image:url(https://mair.tourvis.com/new/mo/images/icn-share-white.svg); width:17px; height:22px;}
	.head-cmain{display: block;background:#fff;}
	.head-cmain .logo{display:inline-block; width:101px; height:26px; background:url(https://mair.tourvis.com/new/mo/images/logo-navy.svg)no-repeat center center; background-size:100%; vertical-align:middle; -webkit-transition:all 0.2s; transition:all 0.2s;}
	.head-cmain .n-gnb span{background:#34446e !important;}
	.head-cmain.fix-style .logo{width:78px; height:20px;}
	.head-cmain.fix-style .content-top-info{padding:18px 20px;border-bottom:1px solid #ebeef3;}
	.content-top-info{background:#fff; padding:11px 53px 8px 49px; width:100%; box-sizing:border-box; position:relative; border-bottom:1px solid #e7e9ee; box-sizing:border-box;}
	.content-top-info .info-bottom > div{max-width:calc(100% - 21px);}
	.content-top-info .info-top span{font-size:14px; font-weight:700; display:inline-block; vertical-align:middle;}
	.content-top-info .info-top span.bridge{margin:0 5px;}
	.content-top-info .info-top i{margin:0 6px 0 8px; }
	.content-top-info .info-bottom > div span{font-size:12px; display:inline-block;  white-space: nowrap; margin-left:15px; position:relative;}
	.content-top-info .info-bottom > div span:first-child{margin-left:0;}
	.content-top-info .info-bottom > div span:after{content:''; width:1px; height:9px; background:#797cd3; position:absolute; right:-7px; top:5px;}
	.content-top-info .info-bottom > div span:last-child:after{content:none;}
	.content-top-info.v-2{background:transparent; padding:16px 20px; border-bottom:0; position:relative;}
	.content-top-info.v-2 h3{text-align:center; color:#fff; font-size:15px; font-weight:500; line-height:2;}
	.content-top-info.v-2 .ico-btn-back{left:0;}
	.content-top-info.v-2 .ic-box{position: absolute;top: 50%; -webkit-transform: translate(0, -50%);transform: translate(0, -50%); right:20px;}
	.content-top-info.v-2 .ic-box a{display:inline-block;margin-left:28px;}
	.content-top-info.v-3{padding:25px 20px;border-bottom:0;-webkit-transition:all 0.1s ease-in-out; transition:all 0.1s ease-in-out; text-align: center;}
	.fix-item{position:fixed; width:100%; top:0; left:0; box-sizing:border-box;}
    .blind{width:0px; height:0px; position:absolute; overflow:hidden; font-size:0px; line-height:0px; z-index:-1; visibility:hidden;}
	.dim{position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; background: rgba(0, 0, 0, 0.7); z-index: 800;}
  .btn-wrap{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;}
  .btn-wrap .btn + .btn{margin-left:0;margin-top:10px;}
	/* header sub */
	#header {
    	display: block;
		width: 100%;
		height: 50px;
		position: fixed;
		top: 0;
		left: 0;
		background: #fff;
		z-index: 100;
		border-bottom: 1px solid #e5e5e5;
	}
	#header h1 {
		height: 41px;
		margin: 0 auto;
		padding-top: 48px;
		width: 155px;
	}
	#header h1.logo {
		border: none;
	}
	#header h1 a {
		background: url('https://mair.tourvis.com/images_tourvis_m/common/h1_logo_sub.svg') 0 0 no-repeat;
		background-size: 155px auto;
		border: none;
		display: block;
		height: 100%;
		width: 100%;
	}
	#header.sub h1 {
		box-sizing: border-box;
		color: #333333;
		font-size: 15px;
		font-weight: 500;
		height: 55px;
		/* line-height: 48px; 2019.02.19 업데이트*/
		padding: 0;
		text-align: center;
		width: 100%;
      	display: block;
	}
    #header button {
		border: 0 none;
		background-color: transparent;
	}
  
	.header-back-btn {
		position: absolute;
		top: 0;
		left: 0;
		width: 40px;
		height: 50px;
	}
	.header-back-btn i {
		color: #666666;
		font-size: 14px;
	}
  
	[class*=" xi-"], [class^=xi-] {
		font-family: xeicon!important;
		display: inline-block;
		speak: none;
		font-style: normal;
		font-weight: 400;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.xi-angle-left:before {
		content: "\e93b";
	}
  
/* 	#nav{background-color:#fff;height:100%;overflow-y:auto;position:fixed;right:-100%;top: 0;transition:right 0.2s ease;width:300px;z-index:9990; display:none;}
	#nav.active{box-shadow: -1px 0 30px #666;right:0;}
	#nav .nav-wrap{height:100%;position:relative;}
	#nav .nav-wrap .user-check .util-menu{border-bottom:0.5px solid #ddd;box-sizing: border-box;padding: 60px 0 20px;margin:0 25px;}
	#nav .nav-wrap .user-check .util-menu .user-name {display:block;color: #333333;font-size: 20px;font-weight: 400;position: relative;margin-bottom:32px;}
	#nav .nav-wrap .user-check .util-menu .user-email {color: #999;display: block;font-size: 11px;letter-spacing: 0;line-height: 12px;padding: 3px 0;}
  #nav .nav-wrap .user-check .util-menu .user-info a{font-size:13px;display:inline-block;padding:0 0 0 23px; color: #000;}
	#nav .nav-wrap .user-check .util-menu .user-info a + a{margin-left:68px;padding-left:23px;}
	#nav .nav-wrap .user-check .util-menu .user-info a.my-info{background:url(https://cdns.tourvis.com/new/mo/images/icn-mypage-info.svg)no-repeat left center;}
	#nav .nav-wrap .user-check .util-menu .user-info a.my-coupon{background:url(https://cdns.tourvis.com/new/mo/images/icn-mypage-coupon.svg)no-repeat left center;}
	#nav .nav-wrap .user-check .gnb {border-bottom: 0.5px solid #ddd;padding:10px 0; margin:0 25px;}
	#nav .nav-wrap .user-check .gnb li a {display:block; width:100%; color: #333333;font-size: 16px; padding:10px 0;}
  #nav .nav-wrap .user-check .gnb li .s-badge{display:inline-block;width:43px;height:17px;background:url(https://cdns.tourvis.com/new/pc/images/ic-live.svg)center center no-repeat;vertical-align:-3px;margin-left:4px;}
  #nav .nav-wrap .user-check .gnb li .d-badge{position:relative; padding: 1px 5px; margin-left: 4px; font-family: 'Roboto'; font-size: 13px; color: #fff; background-color: #FF632C; border-radius: 3px; letter-spacing: -1px; vertical-align: 2px;}
#nav .nav-wrap .user-check .gnb li .d-badge::after{content: ''; position: absolute; left: 0; bottom: -2px; display: block; width: 0px; height: 0px; border-top: 2px solid transparent; border-left: 5px solid #FF632C; border-bottom: 2px solid transparent;}
#nav .nav-wrap .user-check .gnb li .d-badge.bg-red{background-color: #EA4754;}
#nav .nav-wrap .user-check .gnb li .d-badge.bg-red::after{border-left-color: #EA4754;}
#nav .nav-wrap .user-check .gnb li .d-badge.bg-yellow{background-color: #FFC81C; color: #000}
#nav .nav-wrap .user-check .gnb li .d-badge.bg-yellow::after{border-left-color: #FFC81C;}
	#nav .nav-wrap .area-terms {padding: 20px 0 !important;}
	#nav .nav-wrap .area-terms li {margin-bottom:15px;line-height:1.3;}
	#nav .nav-wrap .area-terms li:last-child {margin-bottom:0;}
	#nav .nav-wrap .area-terms li a {color: #999;font-size: 12px;}
	#nav .nav-wrap .area-terms li a.blue {color: #557ffe;}
	#nav .nav-wrap .btn-login {position: relative; padding-left: 0; line-height:30px; font-size: 20px; color: #557ffe; font-weight: 700;}
	#nav .nav-wrap .btn-close {position: absolute; display: block; right: 10px; top: 10px; padding: 6px 9px; box-sizing: border-box;}
	#nav .nav-wrap .btn-close span {display: block; width: 20px; height: 2px; background-color: #999999; margin: 5px 0; border-radius: 1px;}
	#nav .nav-wrap .btn-close span:first-child {-webkit-transform: rotate(-45deg) translate(0, 3px); transform: rotate(-45deg) translate(-5px, 7px); }
	#nav .nav-wrap .btn-close span:last-child {-webkit-transform: rotate(45deg) translate(-2px, -5px); transform: rotate(45deg) translate(2px, 0px); }
	#nav .nav-wrap .user-check .gnb:last-child{border-bottom:0;}
	#nav .nav-wrap .user-check .gnb .subtitle {font-size: 12px;color: #b0b0b0;padding:10px 0 0;}
	#nav .nav-wrap .area-terms {padding: 10px 0;margin: 0 25px;border-bottom: 1px solid #e3e3e3;} */
	.m-bnr-area ul li{font-size:0;}
  .m-bnr-area ul li img{width:100%;}
  
	/* footer */
	#new-footer {display: block; position:relative; /*z-index:10;*/ font-family: 'Pretendard', 'Noto Sans KR','Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', dotum, 돋움, sans-serif; background:#f5f7fb;margin-top: 50px;}
	#new-footer .footer-in { padding:20px 0 25px; text-align:center;}
	#new-footer .footer-in .btn-top{ display:inline-block; padding:2px 14px 3px 24px; border-radius:14px; font-size:12px; color:#747880; border:1px solid #c4c7cd; background:#fff url(https://mair.tourvis.com/new/mo/images/icn-top-gray.svg)no-repeat 12px 5px;}
	#new-footer .footer-terms{margin-top:20px;}
	#new-footer .footer-terms ul{font-size:0; margin:0; padding:0;}
	#new-footer .footer-terms ul li{display:inline-block; position:relative;}
	#new-footer .footer-terms ul li:before{content:''; position:absolute; width:1px; height:10px; background:#c4c7cd; top:50%; -webkit-transform:translate(0, -50%); transform:translate(0, -50%);left:0;}
	#new-footer .footer-terms ul li:first-child:before{content:none;}
	#new-footer .footer-terms ul li a{font-size:12px; color:#8d9199; padding:0 8px; display:block;}
	#new-footer .toggle-info{margin-top:20px;}
	#new-footer .toggle-info > a { font-size:13px; color:#747880; position:relative;}
	#new-footer .toggle-info > a:after{content:''; position:absolute; width:10px; height:100%; background:url(https://mair.tourvis.com/new/mo/images/icn-open-small-gray.svg)no-repeat center center; background-size:10px 5px; top:0; right:-16px;  -ms-transform:rotate(180deg); transform:rotate(180deg); -webkit-transition:all 0.2s; transition:all 0.2s;}
	#new-footer .toggle-info.on > a:after{ -webkit-transform:rotate(0deg); transform:rotate(0deg);}
	#new-footer .toggle-info dl{margin:10px 0 27px 0; display:none;}
	#new-footer .toggle-info dl dd { font-size:12px; color:#8d9199; line-height:normal;}
	#new-footer .toggle-info dl dd span{display:inline-block; margin-right:7px; font-weight:500;}
	#new-footer .footer-cs{margin-top:15px;}
	#new-footer .footer-cs span{font-size:13px; color:#8d9199; margin:0 8px;}
	#new-footer .footer-cs .cs-num{font-weight:500; position:relative;}
	#new-footer .footer-cs .cs-num:before{content:''; width:1px; height:10px; background:#c4c7cd; position:absolute; left:-8px; top:50%; -webkit-transform:translate(0, -50%); transform:translate(0, -50%); }
	#new-footer .cright{font-size:11px; color:#d0d3d8; margin-top:7px;}

    /*terms-pop*/
	.cm-pop{background-color:#f2f2f2;width:100%;height:100%;position:fixed;z-index:9990;left:0;top:0; display:none; transition: 0.3s; transform: translateX(100%);}
	.cm-pop.active{transform: translateX(0); transition: 0.3s;}
	.cm-pop .layer-wrap{height:100%;position:relative;}
	.cm-pop .layer-wrap h2{border-bottom:1px solid #e3e3e3;box-sizing:border-box;color:#333;font-size:20px;font-weight:500;line-height:20px;padding:20px;}
	.cm-pop .layer-wrap .con-wrap{height: calc(100% - 61px);overflow-y:auto;}
	.cm-pop .layer-wrap h2 + .con-wrap .tab-slide{border-top:none;}
	.cm-pop .con-scroll{height: calc(100% - 61px);overflow-y:scroll;}
	.cm-pop .cm-agree-cont{box-sizing:border-box;height:100%;padding:0 20px 20px;}
	.cm-pop .cm-agree-cont .box-dt{color:#333;font-size:18px;padding-top:20px;}
	.cm-pop .cm-agree-cont .box-dd{color:#333;font-size:14px;font-weight:400;padding-bottom:5px;padding-top:20px;}
	.cm-pop .cm-agree-cont p{color:#666;font-size:12px;letter-spacing:0;line-height:24px;}
	.cm-pop .cm-agree-cont ul li{font-size:12px;color:#666;letter-spacing:0;line-height:24px;text-indent:-1em;padding-left:1em;}
	.cm-pop .cm-privacy-box{box-sizing:border-box;height:100%;padding:20px;}
	.cm-pop .cm-privacy-box .box-dt{color:#333;font-size:18px;padding-bottom:15px;}
	.cm-pop .cm-privacy-box .box-dd{color:#333;font-size:18px;font-weight:500;padding-bottom:15px;}
	.cm-pop .cm-privacy-box .table-wrap{padding-bottom:25px;padding-top:5px;}
	.cm-pop .cm-privacy-box .table-wrap td{font-size:14px;}
	.cm-pop .cm-privacy-box .line-box{border:1px solid #ddd;margin:5px 0;padding:10px;}
	.cm-pop .cm-privacy-box p{color:#666;font-size:14px;letter-spacing:0;line-height:22px;padding-bottom:15px;}
	.cm-pop .cm-privacy-box ul{padding-bottom:15px;}
	.cm-pop .cm-privacy-box ul li{color:#666;font-size:14px;letter-spacing:0;line-height:22px;padding-left:20px;position:relative;}
	.cm-pop .cm-privacy-box li span.num{display:block;left:0;position:absolute;}
	.cm-pop .cm-privacy-box li span.con{display:block;}
	.cm-pop .cm-privacy-box ol{padding-bottom:15px;}
	.cm-pop .cm-privacy-box ol li{color:#666;font-size:14px;letter-spacing:0;line-height:22px;padding-left:20px;position:relative;}
	.cm-pop .cm-privacy-box ol li:before{content:'•';display:block;font-size:12px;left:0;position:absolute;}
	.cm-pop .cm-privacy-box ol.ico-style li:before{content:'◑';display:block;font-size:12px;left:0;position:absolute;}
	.cm-pop .btn-close {position: absolute; display: block; right: 10px; top: 10px; padding: 6px 9px; box-sizing: border-box;}
	.cm-pop .btn-close span {display: block; width: 26px; height: 2px; background-color: #999999; margin: 5px 0; border-radius: 1px;}
	.cm-pop .btn-close span:first-child {-webkit-transform: rotate(-45deg) translate(0, 3px); transform: rotate(-45deg) translate(-5px, 7px); }
	.cm-pop .btn-close span:last-child {-webkit-transform: rotate(45deg) translate(-2px, -5px); transform: rotate(45deg) translate(2px, 0px); }

	/* ------------- Overwrite */
	.hero {background-image: url(https://theme.zdassets.com/theme_assets/9253820/4071ed3990961ac88144f31599495ba48a3624c6.png);background-size: 375px;background-repeat: no-repeat;height: auto; }
	.hero-inner {top: 0;transform: none;max-width:none;}
	.container {padding: 0 20px;}
	.section.hero-outer {margin-bottom: 30px;}
	
	.search input[type="search"] {font-size: 14px;padding-left: 15px;height: 45px;border-radius:6px;margin-top:260px;}
	.search::before {width: 20px;height: 21px;right:15px;background: url(https://theme.zdassets.com/theme_assets/9253820/de3689e392e3721a5b03a5012b56f3010a847112.png) 0 0 no-repeat;background-size: 20px;}
	.breadcrumbs li + li:before {width: 7px;height: 11px;background: url(https://theme.zdassets.com/theme_assets/9253820/d23b85e8f6e94ff7c0ca84612f5e189a21c9b808.png) 0 0 no-repeat;background-size: 7px;}
	
/* 	.pagination {margin-top: 20px;margin-bottom: 50px;}
	.pagination li {margin-left: 10px;}
	.pagination-prev a:before {background: url(https://theme.zdassets.com/theme_assets/9253820/b447d6eee6c65d2d72f97f955c7545f81a61d468.png) 0 0 no-repeat;background-size: 8px;margin-top: 11px;}
	.pagination-next a:before {background: url(https://theme.zdassets.com/theme_assets/9253820/b545a2063861079ab591fdfbea9cefd118d22bab.png) 0 0 no-repeat;background-size: 8px;margin-top: 11px;} */
	
	.blocks-item {border:1px solid #557ffe;display: inline-block;margin: 0;}
	.blocks-item:hover, .blocks-item:focus, .blocks-item:active {background-color: inherit;}
	.blocks-item .blocks-item-link {font-size:16px;color: #557ffe;padding: 13px 30px;display: block;}

	/* ------------- contents */
	.section-box {border-top: 1px solid #e4e4e4;padding-top: 25px;margin-top: 30px;}
	.title-st1 {font-size: 20px;margin-bottom: 20px;}
	/* ly-list-st1 */
	.ly-list-st1 > li {float: none;width: 100%;margin-bottom: 30px;}
	.ly-list-st1 > li:last-child {margin-bottom: 0;}
	/* list-st1 */
	.list-st1 .tit {font-size: 16px;margin-bottom: 10px;}
	.list-st1 .list li {padding-right: 0;}
	.list-st1 .list a {font-size: 14px;}
	.list-st1 .more {margin-top: 10px;}
	.list-st1 .more:after {width: 7px;height: 11px;background: url(https://theme.zdassets.com/theme_assets/9253820/b8937f2bd74c5f4576da8c73bf85fa5282325169.png) 0 0 no-repeat;background-size: 7px;}
	/* ly-list-st2 */
	.ly-list-st2 > li {float: none;width: 100%;margin-bottom: 0;}
	/* list-st2 */
	.list-st2 {margin: 0;}
	.list-st2 dd {margin: 0;display: none;}
	.list-st2 dd {background-color: #f5f7fb;border-radius: 8px;padding: 15px;}
	.list-st2 .tit {font-size: 14px;margin-bottom: 0;padding: 19px 0;border-bottom: 1px solid #f5f7f9;position: relative;}
	.list-st2 .tit:before {content: '';display: block;width: 10px;height: 4px;background: url(https://theme.zdassets.com/theme_assets/9253820/881e855a54cfb6ec687f5d9b2320e921e9c2fc1a.png) 0 0 no-repeat;background-size: 10px;position: absolute;top: 28px;right: 0;}
	.list-st2 .list li {margin-top: 10px;padding-right: 10px;}
	.list-st2 .list li:first-child {margin-top: 0;}
	.list-st2 .list a {font-size: 14px;display: block;}
	.list-st2.on dd {display: block;}
	.list-st2.on .tit:before {transform: rotate(-180deg);}
	/* list-st3 */
	.list-st3 li {float: none;width: 100%;padding-right: 0;position: relative;}
	.list-st3 li:nth-child(n+6) {display: none;}
	.list-st3 a {font-size: 14px;}
	.list-st3 + .more {display: block;color: #557ffe;position: relative;}
	.list-st3 + .more:after {content: '';display: inline-block;width: 7px;height: 11px;background: url(https://theme.zdassets.com/theme_assets/9253820/b8937f2bd74c5f4576da8c73bf85fa5282325169.png) 0 0 no-repeat;background-size: 7px;margin-left: 6px;}
	/* lselect-st1 */
	.lselect-st1 {width: 100%;}
	.lselect-st1 .ls-tit {padding-bottom: 0;}
	.lselect-st1 .txt {padding: 11px 10px 11px 15px;border: 1px solid #575757;}
	.lselect-st1 .txt:after {width: 13px;height: 7px;background: url(https://theme.zdassets.com/theme_assets/9253820/0cad0656a029ba5fae5df909cb0460793ceac789.png) 0 0 no-repeat;}
	.lselect-st1:hover .txt:after {background-position: 0 -17px;}
	.lselect-st1 .list {top: 60px;}

	/* lyaout - sub-nav */
/* 	.area-sub-nav {margin-top: 70px;} */
	.area-sub-nav .search {width: 100%;}
	.area-sub-nav .search input[type="search"] {font-size: 14px;}
	.area-sub-nav .breadcrumbs {margin-top: 40px;}
	.area-sub-nav .breadcrumbs {font-size: 13px;}

	/* lyaout - main, common */
	.msec03 .title-st1 {margin-bottom: 10px;}
	.msec03 .list-st3 {margin-bottom: 0px;}
	.msec04 {text-align: center;}
	.msec04 .title-st1 {margin-bottom: 20px;}
	.area-mgs {margin-top: 20px;}
	.area-mgs .exp1 {font-size: 16px;}
	.area-mgs .blocks-item {width: 100%;margin-top: 30px;margin-bottom: 30px;}

	/* lyaout - container */
	.area-sub-container .msec01 {border: 0;padding-top: 0;margin-top: 15px;}

	/* lyaout - article */
	.asc-article .article-container {margin-top: 0;}
	.asc-article .article {flex: 1 0 100%;max-width: 100%;}
	.asc-article .article-title {font-size: 20px;width: 100%;}
    .asc-article .article-content { margin: 20px 0;}
	
	.asc-article .article-sidebar {flex: 0 0 100%;border-bottom: 0;margin-bottom: 0;}
	.asc-article .article-sidebar .collapsible-sidebar {max-height: none;padding: 0;}
	.asc-article .sidenav-title {padding-top: 25px;font-weight: 500;}
	.asc-article .sidenav-title:after {display: none;}
	.asc-article .sidenav-item {font-size: 14px;color: #000;background-color: #fff;border:0;padding: 0;display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left: 10px;position: relative;}
  	.asc-article .sidenav-item:before {content: '·';display: inline-block;position: absolute;top: 0;left: 0;}
	.asc-article .sidenav-item:hover {color: #000;background-color: #fff;border:0;}
	.asc-article .sidenav-item.current-article {color: #000;background-color: #fff;border:0;}

	/* lyaout - search */
	.asc-search {margin-top: 0;}
	.asc-search .page-header-description {font-size: 20px;margin-bottom: 15px;}
	.asc-search .search-results {flex-wrap:nowrap;}
	.asc-search .search-result-link {font-size: 16px;display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
	.asc-search .search-result .breadcrumbs li a {font-size: 11px;}
	.asc-search .search-result .search-result-description {display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
	.asc-search .am-search-no .exp1 {padding-top: 114px;background: url(https://theme.zdassets.com/theme_assets/9253820/1975a471629ca45b84ca8b9aea45bae682b32ffb.jpg) 50% 0 no-repeat;background-size: 202px;}
  
  .flex{flex-wrap:wrap;}
  .btn-club .lbttn-st1{margin-left:0;margin-top:10px;}
  .lbttn-st1{width:100%;border:1px solid #575757;height:48px;line-height:46px;}
  
   /*플로팅 배너*/
  .pgs-floating{bottom:20px;right:20px;}
  .pgs-floating > div{width:57px;height:57px;}
  .pgs-floating > div span.img{width:57px;height:57px;}
  .pgs-floating > div span.txt{display:none;}
  .pgs-floating > div:hover{width:57px;}
  .pgs-chatbot span.img{background:url(https://cdns.tourvis.com/new/pc/images/ic-chatbot.svg)right center no-repeat;background-size:57px auto;}
}
.pt30{padding-top:30px !important;}

.header-top-bnr .top-bnr-inner .top-bnr-close {background-image: url(https://cdns.tourvis.com/new/pc/images/sp-layout.png);background-repeat: no-repeat;}
.header-top-bnr .top-bnr-inner{max-width:1200px;margin:auto;position:relative;}
.header-top-bnr .top-bnr-inner a{display:block;width:100%;height:100%;font-size:0;}
.header-top-bnr .top-bnr-inner a img{max-width: 600px; width: 100%;}
.header-top-bnr .top-bnr-inner .top-bnr-close{position:absolute;width:17px;height:17px;background-position:-205px 0px;top:15px;right:0;}
/* @media (max-width: 900px) { */
@media {
  #header-sec { display: none; }
}

.login-pop .popup-cont .popup-inner .btn-wrap.mo {display: none;}
/* @media (max-width: 900px) { */
@media {
  .login-pop .popup-cont .popup-inner .btn-wrap {margin: 0 -5px 0}
  .login-pop .popup-cont .popup-inner .btn-wrap .btn {margin: 10px 5px 0;}
  .login-pop .popup-cont .popup-inner .btn-wrap.pc {display: none;}
  .login-pop .popup-cont .popup-inner .btn-wrap.mo {display: flex;}
}


/* @media (max-width: 1570px) { */
@media {
	.c-btn-toppos.chat {bottom: 50px;left: auto;right: 100px;}
}
/* @media (max-width: 900px) { */
@media {
	.c-btn-toppos.chat {display: none !important; bottom: 25px; right: 90px;}
}

/* 숙박대전 플로팅 */
.lb-floating {position:fixed;bottom:123px;right:20px;z-index:30; border-radius:18px;}
.lb-floating a{display: block; line-height: 0;}
.lb-floating a .lb-box {padding-top: 23px;}
.lb-floating a .lb-box::before {content: ''; position: absolute; top: 0; z-index: 1; display: block; width: 100%; height: 36px; background:url(https://cdns.tourvis.com/new/pc/images/ic-lodge-battle-img.svg) center bottom no-repeat; background-size: 100%;}
.lb-floating a .lb-box .img {display:inline-block;width:68px;height:68px; border-radius:18px;z-index:1; background:url(https://cdns.tourvis.com/new/pc/images/ic-lodge-battle.svg) center bottom no-repeat; background-size: 100%; box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.1 );}
/* @media (max-width: 900px) { */
@media {
  .lb-floating {bottom: 85px;}
  .lb-floating a .lb-box {padding-top: 12px;}
  .lb-floating a .lb-box::before {height: 25px;}
  .lb-floating a .lb-box .img {width: 57px; height:57px;}
}

/* DT-979 ---------- */
.header-top-bnr .top-bnr-inner .top-bnr-close {top: 50%; transform: translateY(-50%);}

.header-top-bnr.half {position: relative;}
.header-top-bnr.half .top-bnr-inner {z-index: 1;}
.header-top-bnr.half .top-bnr-inner a:not(.top-bnr-close) {float: left; width: 50%;}
.header-top-bnr.half .top-bnr-inner::after { content: ''; clear:both; display: block;}
.header-top-bnr.half .half-bg-area {position: absolute; top: 0; left: 0; right: 0; bottom: 0;}
.header-top-bnr.half .half-bg-area::after { content: ''; clear:both; display: block;}
.header-top-bnr.half .half-bg-area span {float: left; width: 50%; height: 100%;}
/* DT-979 ---------- */

/* DT-1684 추가 ---------- */
.header-sec .hs-logo a {background: url(https://cdns.tourvis.com/new/pc/images/logo_tourvis_new.svg) no-repeat; background-size: contain;}
/* @media all and (max-width:900px) {  */
@media all {
  .head-cmain .logo {background: url(https://cdns.tourvis.com/new/pc/images/logo_tourvis_new.svg) no-repeat; background-size: contain;}
}
/* //DT-1684 추가 ---------- */
main {padding-bottom: 50px}
@media (min-width: 751px) {
  .container-divider { border-top: 0; }
  .area-sub-nav { margin-top: 20px; }
  .head-cmain.fix-item { right: 0; max-width: 500px; margin: 0 auto; border: 1px solid #ebeef3; border-width: 0 1px;}
  main { max-width: 750px; width: 100%; margin: 0 auto; border: 1px solid #ebeef3;}
  footer#new-footer { max-width: 500px; margin: 0 auto;}
  bottom-tab-bar-widget { display: none; }
}

.article-body table {max-width: 100%;}




.collapsible-sidebar-title + .collapsible-sidebar-body {
  margin-top: 15px;
}

/***** CSS : loader *****/
.loader {
	position: fixed;
	z-index: 99999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	opacity: 0;
	background-color: #fff;
	justify-content: center;
	align-items: center;
}

.loader.fade {
	display: flex;
}

.loader.show {
	opacity: 1;
}

.loader-con {
	position: relative;
	display: flex;
	width: 200px;
	justify-content: space-between;
	align-items: center;
}

.loader-con .box {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	transform-origin: -50% center;
	border-radius: 15%;
}

.loader-con .box:after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	content: '';
	border-radius: 15%;
	background-color: lightblue;
	box-shadow: 0 0 10px 0 rgba(255, 32, 234, .4);
}

.loader-con .box:nth-child(1) {
	-webkit-animation: slide 1.5s ease-in-out infinite alternate;
	animation: slide 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(1):after {
	-webkit-animation: color-change 1.5s ease-in-out infinite alternate;
	animation: color-change 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(2) {
	-webkit-animation: flip-1 1.5s ease-in-out infinite alternate;
	animation: flip-1 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(2):after {
	-webkit-animation: squidge-1 1.5s ease-in-out infinite alternate;
	animation: squidge-1 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(3) {
	-webkit-animation: flip-2 1.5s ease-in-out infinite alternate;
	animation: flip-2 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(3):after {
	-webkit-animation: squidge-2 1.5s ease-in-out infinite alternate;
	animation: squidge-2 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(4) {
	-webkit-animation: flip-3 1.5s ease-in-out infinite alternate;
	animation: flip-3 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(4):after {
	-webkit-animation: squidge-3 1.5s ease-in-out infinite alternate;
	animation: squidge-3 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(5) {
	-webkit-animation: flip-4 1.5s ease-in-out infinite alternate;
	animation: flip-4 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(5):after {
	-webkit-animation: squidge-4 1.5s ease-in-out infinite alternate;
	animation: squidge-4 1.5s ease-in-out infinite alternate;
}

.loader-con .box:nth-child(2):after {
	background-color: #53b5fc;
}

.loader-con .box:nth-child(3):after {
	background-color: #dc8be8;
}

.loader-con .box:nth-child(4):after {
	background-color: #ff24e9;
}

.loader-con .box:nth-child(5):after {
	background-color: #ed22ea;
}

@-webkit-keyframes slide {
	0% {
		transform: translatex(0);
		background-color: #ff4a20;
	}

	100% {
		transform: translatex(208.75px);
		background-color: #fd9982;
	}
}

@keyframes slide {
	0% {
		transform: translatex(0);
		background-color: #ff4a20;
	}

	100% {
		transform: translatex(208.75px);
		background-color: #fd9982;
	}
}

@-webkit-keyframes color-change {
	0% {
		background-color: #756afb;
	}

	100% {
		background-color: #ed22ea;
	}
}

@keyframes color-change {
	0% {
		background-color: #756afb;
	}

	100% {
		background-color: #ed22ea;
	}
}

@-webkit-keyframes flip-1 {
	0%, 15% {
		transform: rotate(0);
	}

	35%, 100% {
		transform: rotate(-180deg);
	}
}

@keyframes flip-1 {
	0%, 15% {
		transform: rotate(0);
	}

	35%, 100% {
		transform: rotate(-180deg);
	}
}

@-webkit-keyframes squidge-1 {
	5% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	15% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	25%, 20% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	55%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	40% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@keyframes squidge-1 {
	5% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	15% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	25%, 20% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	55%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	40% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@-webkit-keyframes flip-2 {
	0%, 30% {
		transform: rotate(0);
	}

	50%, 100% {
		transform: rotate(-180deg);
	}
}

@keyframes flip-2 {
	0%, 30% {
		transform: rotate(0);
	}

	50%, 100% {
		transform: rotate(-180deg);
	}
}

@-webkit-keyframes squidge-2 {
	20% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	30% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	40%, 35% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	70%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	55% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@keyframes squidge-2 {
	20% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	30% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	40%, 35% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	70%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	55% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@-webkit-keyframes flip-3 {
	0%, 45% {
		transform: rotate(0);
	}

	65%, 100% {
		transform: rotate(-180deg);
	}
}

@keyframes flip-3 {
	0%, 45% {
		transform: rotate(0);
	}

	65%, 100% {
		transform: rotate(-180deg);
	}
}

@-webkit-keyframes squidge-3 {
	35% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	45% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	55%, 50% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	85%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	70% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@keyframes squidge-3 {
	35% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	45% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	55%, 50% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	85%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	70% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@-webkit-keyframes flip-4 {
	0%, 60% {
		transform: rotate(0);
	}

	80%, 100% {
		transform: rotate(-180deg);
	}
}

@keyframes flip-4 {
	0%, 60% {
		transform: rotate(0);
	}

	80%, 100% {
		transform: rotate(-180deg);
	}
}

@-webkit-keyframes squidge-4 {
	50% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	60% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	70%, 65% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	100%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	85% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

@keyframes squidge-4 {
	50% {
		transform: scalex(1) scaley(1);
		transform-origin: center bottom;
	}

	60% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center bottom;
	}

	70%, 65% {
		transform: scalex(.8) scaley(1.4);
		transform-origin: center bottom;
	}

	100%, 100% {
		transform: scalex(1) scaley(1);
		transform-origin: center top;
	}

	85% {
		transform: scalex(1.3) scaley(.7);
		transform-origin: center top;
	}
}

/* 젠데스크 기본 테이블 형식 추가 */
.article-body th, .article-body td{border: 1px solid #e0e0e2; letter-spacing: -.3px}
.article-body tr th:first-child {border-left: 0;}
.article-body tr td:first-child {border-left: 0;}
.article-body tr th:last-child {border-right: 0;}
.article-body tr td:last-child {border-right: 0;}
.article-body tr:first-child td {color: #10234d; background-color: #f8f9fd}
.article-body td { color: #5c5542; }

/* 추가 */
.sub-page-tit-area {
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 20px;
  padding: 0 20px;
  border-bottom: 1px solid #ebebeb;
  background-color: #fff;
}
.sub-page-tit-area .logo{
    display: inline-block;
    width: 88px;
    height: 24px;
    background: url(https://cdns.tourvis.com/common/dist/images/logo-tourvis.svg) center no-repeat;
    background-size: contain;
}
.sub-page-tit{
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-right: auto;
}
.sub-page-tit.center{
    margin: 0 auto;
    padding-right: 40px;
}
@media (min-width: 981px) {
  .sub-page-tit-area {
    display: none;
  }
}

.zen-notice-etc {
  	font-size: 16px;
    font-weight: 600;
}
@media (max-width: 640px) {
  .zen-notice-etc {
    span {
      display:block;
      font-size: 14px;
      font-weight: 400;
    }
  }
}

.area-title	{
  margin-top: 40px;
	margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.zen-list.arrow-link li a::after,
.zen-list.arrow-link li button::after{
  content: '';
	width: 16px;
  height: 16px;
  margin-top: 4px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-arrow.svg) center no-repeat;
}
.zen-list li {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.zen-list li > a, .zen-list li > button, .zen-list li > div {
  display: flex;
  width: 100%;
  gap: 8px;
  padding: 12px 0;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 640px) {
  .zen-list li > a, .zen-list li > button, .zen-list li > div {
    font-size: 14px;
  }
}
.zen-list li > a span,  .zen-list li > button span {
  line-height: 24px;
  flex-grow: 1;
}
.zen-list li > div span {
  line-height: 24px;
}
.icon-zen-price::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-price.svg) center no-repeat;
}
.icon-zen-flight::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-flight.svg) center no-repeat;
}

.icon-zen-flight-cancle::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-flight-cancle.svg) center no-repeat;
}
.icon-zen-flight-cancle.new {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: #324268;
  border-radius: 8px;
}
.icon-zen-flight-cancle.new:after {
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-flight-cancle-white.svg) center no-repeat !important;
}
.icon-zen-btn-area {
  color: #fff;
}
.icon-zen-btn-area-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.icon-zen-btn-area-text {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.icon-zen-refresh::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-refresh.svg) center no-repeat;
}
.icon-zen-door-sign::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-door-sign.svg) center no-repeat;
}
.icon-zen-check-in::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-check-in.svg) center no-repeat;
}
.icon-zen-car::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-car.svg) center no-repeat;
}
.icon-zen-chat::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-chat.svg) center no-repeat;
}
.icon-zen-tnt-chat::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(/hc/theming_assets/01KN6NPAK37P43Q5B4NAC7GMZP) center no-repeat;
}
.icon-zen-inquiry::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-inquiry.svg) center no-repeat;
}
.icon-zen-call::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-call.svg) center no-repeat;
}
.zen-line {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background-color: #EBEBEB;
}
.zen-call-center-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.zen-call-center-top p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.zen-call-center-top .bar {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #B3B3B3;
}
@media (max-width: 640px) {
  .zen-call-center-top {
    display: block;
  }
  .zen-call-center .bar {
    display: none;
  }
  .zen-call-center-top p {
    display: flex;
  }
}
.zen-call-center .etc {
  color: #757575;
}

.zen-section .title-st1 {
  padding: 12px 0;
  margin: 0;
	font-size: 16px;
  font-weight: 700;
}
.zen-section .list-st2 .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  margin: 0;
	font-size: 16px;
  font-weight: 400;
  border: 0;
}
@media (max-width: 640px) {
  .zen-section .list-st2 .tit {
    font-size: 14px;
  }
}
.zen-section .list-st2 .tit::before {
  content: none;
}
.zen-section .list-st2 .tit::after {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-arrow.svg) center no-repeat;
  transform: rotate(90deg);
}
.zen-section .list-st2.on .tit::after {
  transform: rotate(-90deg);
}

.zen-section .list-st3 li {
  padding-left: 0;
  margin: 0;
}
.zen-section .list-st3 li::before {
  content: none;
}
.zen-section .list-st3 li a {
  padding: 12px 0;
  font-size: 16px;
}
@media (max-width: 640px) {
  .zen-section .list-st3 li a {
    font-size: 14px;
  }
}
.zen-section .list-st3 + .more {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  color: #0184FD;
}
.zen-section .list-st3 + .more::after {
  width: 16px;
  height: 16px;
  margin: 0;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-arrow-blue.svg) center no-repeat;
}

.zen-modal-section {
 	margin-top: 30px;
}
.zen-modal-radio + .zen-modal-radio {
  margin-top: 24px;
}
.zen-modal-area .zen-modal-radio {
  display: block;
}
.zen-modal-radio .text{
  display: block;
  width: 100%;
  padding: 32px 16px;
  border: 1px solid #EBEBEB;
  border-radius: 4px;
}
.zen-modal-radio input[type=radio]:checked + .text{
  border-color: #01C5FD;
}
.zen-modal-title {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
}
.zen-modal-title2{
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0184fd;
}
@media (max-width: 750px) {
  .zen-modal-area {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .zen-modal-area .zen-reservation-none {
  	flex-grow: 1;
  }
  .zen-modal-title {
    margin-bottom: 16px;
  }
}
.zen-reservation-area {
  display: flex;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}
.zen-reservation-area:not(.skeleton) {  
  cursor: pointer;
}
.zen-reservation-area.selected {
  border-color: #01C5FD;
}
.zen-reservation-area.selected .zen-box-radio::before {
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-radio-on.svg) center center no-repeat;
}

.zen-box-radio {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  &::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-radio-off.svg) center center no-repeat;
  }
}

.zen-reservation-area + .zen-reservation-area {
  margin-top: 24px;
}

.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-route-list {
  width: 100%
}
.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-route-list li > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
	animation: skeleton-bg 1.8s infinite ease-out;
  height: 20px;
	background-image: linear-gradient(90deg,#e1e4e8 0,#f5f7fb 100%);
	background-color: #f5f7fb;
	background-size: 300%;
	border-radius: 4px;
  text-indent: -9999px;
}
.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-route-list li + li {
  margin-top: 4px;
}
.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-route-list li > *:not(.logo) {
  width: 100%;
}
.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-route-list li .type {
  width: 37px;
}
.zen-reservation-area .my-travel-detail-box .logo {
  flex-shrink: 0;
}
.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-list li > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
	animation: skeleton-bg 1.8s infinite ease-out;
  height: 20px;
	background-image: linear-gradient(90deg,#e1e4e8 0,#f5f7fb 100%);
	background-color: #f5f7fb;
	background-size: 300%;
	border-radius: 4px;
  text-indent: -9999px;
}
.zen-reservation-area.skeleton .my-travel-detail-box .my-travel-detail-list li .text{
  flex-grow: 1;
}
.my-travel-detail-cont {
  width: 100%;
}
.zen-reservation-area .my-travel-detail-cont.wrap .my-travel-detail-box {padding: 0 0 16px;}
.zen-reservation-area .my-travel-detail-cont.wrap .my-travel-detail-box + .my-travel-detail-box{padding: 16px 0 0; border: 0; border-top: 1px solid #ebebeb;}
.zen-reservation-area .my-travel-detail-cont.wrap .my-travel-detail-box-in .text{
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .img-box::before {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
	animation: skeleton-bg 1.8s infinite ease-out;
	background-image: linear-gradient(90deg,#e1e4e8 0,#f5f7fb 100%);
	background-color: #f5f7fb;
	background-size: 300%;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .text {
  width: 100%;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-box-in .text::before, 
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-box-in .text::after {
  content: '';
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 287px;
  height: 20px;
	animation: skeleton-bg 1.8s infinite ease-out;
	background-image: linear-gradient(90deg,#e1e4e8 0,#f5f7fb 100%);
	background-color: #f5f7fb;
	background-size: 300%;
  border-radius: 4px;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-box-in .text::after {
  margin-top: 8px;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-list > li .tit {
  width: 80px;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-list > li:nth-child(-n+2) .text{
  max-width: 400px;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-list > li:nth-child(3) .text {
  max-width: 200px;
}
.zen-reservation-area.skeleton .my-travel-detail-cont.wrap .my-travel-detail-list > li:nth-child(4) .text {
  max-width: 80px;
}
@media (min-width: 751px) {
  .btn-base.round {
    border-radius: 4px;
  }
  .zen-reservation-area {
    display: flex;
    width: 100%;
    padding: 24px 16px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
  }
  .my-travel-detail-cont:not(.wrap) {
    display: flex;
    gap: 16px;
  }
  .zen-reservation-area .my-travel-detail-box {padding: 0;}
  .zen-reservation-area .my-travel-detail-box.first {width: 240px;}
  .zen-reservation-area .my-travel-detail-box.last {flex-grow: 1;}
  .zen-reservation-area .my-travel-detail-box + .my-travel-detail-box{padding-left: 16px; border: 0; border-left: 1px solid #ebebeb;}
  .zen-reservation-area .my-travel-detail-list li {line-height: 160%;}
  .zen-my-travel-modal .modal-footer button {max-width: 335px; border-radius: 4px;}
}
.zen-reservation-none {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 205px;
}
.zen-reservation-none p {
  margin-top: 16px;
  font-size: 16px;
  text-align: center;
}
.zen-reservation-none:before {
  content : '';
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-error.svg) center no-repeat;
}

.zen-modal-footer-inquiry {
  display: none;
}
.zen-modal-footer-inquiry.show {
  display: block;
}
.toast.show {
  z-index: 1050;
}

.zen-air-cancle-guide-list {
  margin-top: 30px;
}

.zen-air-cancle-guide-list li + li {
  margin-top: 32px;
}
.zen-air-cancle-guide-list li .left {
  flex-shrink: 0;
}
.zen-air-cancle-guide-list li .left p {
  display: inline-block;
  height: 22px;
  padding: 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #0184FD;
  background-color: #E5F9FE;
}
.zen-air-cancle-guide-list li .right {
  flex-grow: 1;
}
.zen-air-cancle-guide-list li .right .text{
  line-height: 22px;
  font-weight: 700;
}
.zen-air-cancle-guide-list li .right .img {
  margin-top: 16px;
}
@media (min-width: 751px) {
  .zen-air-cancle-guide-list li {
    display: flex;
    gap: 16px;
  }
}
@media (max-width: 750px) {  
  .zen-air-cancle-guide-list li .left p {
    margin-bottom: 8px;
  }
}

.zen-mytravel-footer {
  display: flex;
  gap: 10px;
}
.zen-mytravel-footer.step .btn-zen-blue{
  display: none;
}
.btn-zen-inquiry {  
  font-size: 16px;
}
.btn-footer-zen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  height: 48px;
  border-radius: 4px;
}
.btn-zen-close {
  border: 1px solid #DBDBDB;
  background-color: #fff;
}
.btn-zen-blue {
  color: #fff;
  background-color: #0184FD;
}
@media (min-width: 751px) {
  .zen-mytravel-footer {
    gap: 16px;
  }
  .zen-mytravel-footer.step {
    justify-content: center;
  }
  .zen-mytravel-footer.step .btn-footer-zen {
    order: 0;
  }
  .zen-mytravel-footer.step .btn-zen-inquiry {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    font-size: 16px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
  	background-color: #0184FD;
  }
  .zen-mytravel-footer:not(.step) .btn-zen-inquiry {
    flex-grow: 1;
    font-weight: 700;
    text-align: left;
    text-decoration: underline;
  }
  .btn-footer-zen {
    max-width: 220px;
  }
}
@media (max-width: 750px) {
  .btn-zen-close {
    display: none;
  }
  .zen-mytravel-footer.step .btn-zen-inquiry {
    width: 100%;
    color: #fff;
  	background-color: #0184FD;
  }
  .zen-mytravel-footer.step .btn-zen-inquiry span {
    display: none;
  }
  .btn-zen-inquiry {
    flex-shrink: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
  	background-color: #fff;
  }
}

.zen-error-box {
  margin-top: 40px;
  font-size: 16px;
}
.zen-error-tit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  margin-bottom: 16px;
  color: #EA4754;
  font-weight: 700;
	background-color: #FAF6F9;
}
.zen-error-tit::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-zendesk-error-red.svg) center no-repeat;
}

.zen-modal-tab {
  position: relative;
}
.zen-modal-tab .tab-list {
  position: sticky;
  top: 0;
}
@media (max-width: 750px) {
  .zen-modal-tab .tab-list{
    margin: 0 -20px;
  }
}

.ai-chat {
  position: sticky;
  top: 142px;
  z-index: 2;
  background-color: #fff;
}
@media (max-width: 750px) {
  .ai-chat {
    top: 54px;
    z-index: 1050;
  }
  .area-title {
    margin-top: 30px;
  }
}

.ai-chat-box {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  height: 62px;
  padding: 10px 20px;
  border-bottom: 1px solid #EBEBEB;
}
.ai-chat-box.open .ai-chat-btn-toggle::before {
  transform: rotate(180deg);
}
.ai-chat-write {
  min-height: 42px;
  max-height: 100px;
  padding: 10px 16px;
  border-radius: 8px;
  border-color: #EBEBEB;
  background-color: #f4f6f8;
}
.ai-chat-write:focus {
  border-color: #01c5fd;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}
.ai-chat-btn-send {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content : center;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #01c5fd;
  border-radius: 50%;
}
.ai-chat-btn-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #EBEBEB;
  background-color: #fff;
}
.ai-chat-btn-toggle::before {
  content: '';
  width: 12px;
  height: 12px;
  background: url(https://cdns.tourvis.com/common/dist/images/svg/ico-arrow-down-grey.svg) center no-repeat;
}
.ai-chat-cont {
  position: absolute;
  top: 100%;
  width: 100%;  
}
.ai-chat-cont:not(.hidden) {
  background-color: #fff;
  border-bottom: 1px solid #EBEBEB;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .05);  
}
.ai-chat-cont.hidden .ai-chat-view {
  display: none;
}
.ai-chat-view {
  overflow: auto;
  min-height: 200px;
  height: calc(100vh - 147.67px - 62px - 20px);
  max-height: 600px;
  padding: 10px 20px;
}
@media (max-width: 750px) {
  .ai-chat-box {    
  	padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .ai-chat-cont {
    display: flex;
    flex-direction: column;
  }
  .ai-chat-view {
    height: calc(var(--real-vh, 1vh) * 100 - 116px);
    max-height: none;
    scrollbar-width: none;
  }
  .ai-chat-view::-webkit-scrollbar {
    display: none;
  }
/*   .ai-chat-cont:not(.hidden) .ai-chat-btn-toggle {
  	top: auto;
    left: auto;
    right: 0;
    bottom: calc(constant(safe-area-inset-bottom) + 10px);
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #EBEBEB;
  } */
}

@keyframes aiChatSlideIn {
  from { 
    opacity: 0; 
    transform: translateY(10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}
.ai-chat-view .msg {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: aiChatSlideIn 0.4s ease-out forwards;
}

.ai-chat-view .msg-area {
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 85%;
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.4;
  font-size: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ai-chat-view .user .msg-area {
  background: #0184FD;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  word-break: break-all;
}

.ai-chat-view .bot .msg-area {
  background: white;
  border: 1px solid #e1e5e9;
  align-self: flex-start;
  min-height: 20px;
  transition: all 0.2s ease-out;
  border-bottom-left-radius: 6px;
}
.ai-chat-view .dot-list li {
  margin-top: 5px;
}
.ai-chat-view a {
  color: #0072EF;
}
.ai-chat-view .msg-feedback {
  justify-content: center;
}
.ai-chat-view .msg-timestamp {
  font-size: 11px;
  color: #6c757d;
  margin-top: 4px;
  align-self: flex-end;
}

.ai-chat-view .user .msg-timestamp {
  align-self: flex-end;
}

.ai-chat-view .bot .msg-timestamp {
  align-self: flex-start;
}
.ai-chat-view .msg-sources a{
  color: #0c0c0c;
}
.ai-chat-view .typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ai-chat-view .typing-indicator span {
  width: 6px;
  height: 6px;
  background: #007bff;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.ai-chat-view .typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-chat-view .typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
}

.zen-search .search input[type="search"]{
  margin-top: 0;
}
.zen-search .search::before {
  top: 50%;
  transform : translateY(-50%);
}