@charset "UTF-8";
@keyframes bounce_readmore {
  from, to {
    transform: translateY(-50%) scale(1, 1);
  }
  25% {
    transform: translateY(-50%) scale(0.9, 1.2);
  }
  50% {
    transform: translateY(-50%) scale(1.2, 0.9);
  }
  75% {
    transform: translateY(-50%) scale(0.9, 1.1);
  }
}
@keyframes bounce {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.2);
  }
  50% {
    transform: scale(1.2, 0.9);
  }
  75% {
    transform: scale(0.9, 1.1);
  }
}
@keyframes appearUp {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes _rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.button-rounded {
  display: inline-block;
  font-size: 14px;
  border: 2px solid #0b0b0b;
  border-radius: 8px;
  line-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}
.button-rounded i {
  margin-right: 5px;
}
.button-rounded.full {
  width: 100%;
}
.button-rounded.half {
  width: 50%;
}
.button-rounded.size1 {
  width: 225px;
}
.button-rounded.hover {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button-rounded.hover:hover {
  border-color: #f29500;
  color: #f29500;
}
.button-rounded.green {
  background-color: #0091a7;
  border-color: #0091a7;
  color: white;
}
.button-rounded.green.alt {
  color: #0091a7;
}
.button-rounded.green.alt.hover:hover {
  background-color: white;
  color: rgb(216.5, 133.2995867769, 0);
  border-color: #f29500;
}
.button-rounded.green.hover:hover {
  background-color: #f29500;
  border-color: #f29500;
  color: white;
}
.button-rounded.alt {
  background: white;
}

.input-box {
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  width: 100%;
  border-radius: 0;
}
.input-box[readonly] {
  border-color: #E1E6F9;
  background-color: #F6F8FF;
  cursor: not-allowed;
}
.input-box[disabled] {
  border-color: #e8e8e8;
  background-color: #fbfbfb;
  color: rgb(155.5, 155.5, 155.5);
  cursor: not-allowed;
}

.select-box {
  height: 40px;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
}

input[type=checkbox].checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=checkbox].checkbox-box + label {
  vertical-align: middle;
}
input[type=checkbox].checkbox-box + label .label-box {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  border: 1px solid #BBC1E1;
  transition: border-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), background-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  font-size: 12px;
  vertical-align: text-bottom;
  background: white;
}
input[type=checkbox].checkbox-box + label .label-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  color: white;
  display: block;
}
input[type=checkbox].checkbox-box + label:hover .label-box {
  border-color: #275EFE;
}
input[type=checkbox].checkbox-box + label .checkbox-message {
  margin-left: 10px;
}
input[type=checkbox].checkbox-box:checked + label .label-box {
  background: #275EFE;
  border-color: #275EFE;
}
input[type=checkbox].checkbox-box:checked + label .label-box i {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

input[type=radio].checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=radio].checkbox-box + label {
  vertical-align: middle;
}
input[type=radio].checkbox-box + label .label-box {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid #BBC1E1;
  transition: border-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), background-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  font-size: 12px;
  vertical-align: text-bottom;
  background: white;
}
input[type=radio].checkbox-box + label .label-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  color: white;
  display: block;
}
input[type=radio].checkbox-box + label:hover .label-box {
  border-color: #275EFE;
}
input[type=radio].checkbox-box + label .checkbox-message {
  margin-left: 10px;
}
input[type=radio].checkbox-box:checked + label .label-box {
  background: #275EFE;
  border-color: #275EFE;
}
input[type=radio].checkbox-box:checked + label .label-box i {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

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

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
  font-family: inherit;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

@font-face {
  font-family: "and";
  src: url("and/fonts/and.eot?4s50q1");
  src: url("and/fonts/and.eot?4s50q1#iefix") format("embedded-opentype"), url("and/fonts/and.ttf?4s50q1") format("truetype"), url("and/fonts/and.woff?4s50q1") format("woff"), url("and/fonts/and.svg?4s50q1#and") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i[class^=and] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "and" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.and-kakao3:before {
  content: "\e922";
}

.and-kakao2:before {
  content: "\e91f";
}

.and-naver2:before {
  content: "\e920";
}

.and-google:before {
  content: "\e921";
}

.and-facebook:before {
  content: "\e91b";
}

.and-instagram:before {
  content: "\e91c";
}

.and-naver:before {
  content: "\e91d";
}

.and-youtube:before {
  content: "\e91e";
}

.and-arrow1-bottom:before {
  content: "\e900";
}

.and-arrow1-left:before {
  content: "\e901";
}

.and-arrow1-right:before {
  content: "\e902";
}

.and-arrow1-top:before {
  content: "\e903";
}

.and-arrow2-bottom:before {
  content: "\e904";
}

.and-arrow2-left:before {
  content: "\e905";
}

.and-arrow2-right:before {
  content: "\e906";
}

.and-arrow2-top:before {
  content: "\e907";
}

.and-arrow3-bottom:before {
  content: "\e908";
}

.and-arrow3-left:before {
  content: "\e909";
}

.and-arrow3-right:before {
  content: "\e90a";
}

.and-arrow3-top:before {
  content: "\e90b";
}

.and-arrow4-bottom:before {
  content: "\e90c";
}

.and-arrow4-left:before {
  content: "\e90d";
}

.and-arrow4-right:before {
  content: "\e90e";
}

.and-arrow4-top:before {
  content: "\e90f";
}

.and-clip:before {
  content: "\e910";
}

.and-download:before {
  content: "\e911";
}

.and-hand:before {
  content: "\e912";
}

.and-home:before {
  content: "\e913";
}

.and-human:before {
  content: "\e914";
}

.and-login:before {
  content: "\e915";
}

.and-paper:before {
  content: "\e916";
}

.and-people:before {
  content: "\e917";
}

.and-search1:before {
  content: "\e918";
}

.and-search2:before {
  content: "\e919";
}

.and-search3:before {
  content: "\e91a";
}

/*!
 * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("fontawesome/webfonts/fa-solid-900.eot");
  src: url("fontawesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("fontawesome/webfonts/fa-solid-900.woff") format("woff"), url("fontawesome/webfonts/fa-solid-900.ttf") format("truetype"), url("fontawesome/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fontawesome/webfonts/fa-brands-400.eot");
  src: url("fontawesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("fontawesome/webfonts/fa-brands-400.woff") format("woff"), url("fontawesome/webfonts/fa-brands-400.ttf") format("truetype"), url("fontawesome/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

body {
  line-height: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Montserrat", "Noto Sans KR", sans-serif;
  word-break: keep-all;
  letter-spacing: -0.057em;
  color: #0b0b0b;
  font-size: 16px;
  min-width: 320px;
  margin: 0;
  padding: 0;
}
body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  letter-spacing: inherit;
}

input {
  font-size: 16px;
}

label {
  cursor: pointer;
}

::-moz-placeholder {
  font-size: 12px;
  transform: translate3d(0, -2px, 0);
}

::placeholder {
  font-size: 12px;
  transform: translate3d(0, -2px, 0);
}

.is-empty {
  font-size: 14px;
  color: rgba(11, 11, 11, 0.3);
  padding: 40px 0;
  text-align: center;
}

.smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

.hidden,
.readonly {
  display: none !important;
}

.unselectable {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.clear::after {
  content: "";
  display: table;
  clear: both;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
  clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
  white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.unselectable, label {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.show-bounce {
  animation: bounce 0.5s;
}

.button-bounce:hover {
  animation: bounce 0.5s;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
  margin: 0 auto;
}

.inner-container {
  width: 100%;
}

.header .header-bracker {
  position: relative;
  padding-left: 310px;
}
.header .logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 250px;
  transform: translateY(-50%);
}
.header .logo img {
  width: 100%;
}

.header-top {
  border-bottom: 1px solid #bebebe;
}

.header-top-content {
  padding-top: 20px;
}

.header-bar {
  float: right;
}

.header-search {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header-search input {
  width: 100%;
  height: 44px;
  padding: 0 10px;
  border: none;
  background: transparent;
}
.header-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
}
.header-search button i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #0091a7;
}
.header-search button:hover i {
  color: rgb(0, 100.7185628743, 116);
}

.header-member {
  float: left;
}
.header-member a {
  display: inline-block;
  line-height: 48px;
  font-size: 14px;
}
.header-member a.loggedin span {
  position: relative;
  padding-left: 0;
}
.header-member a span {
  position: relative;
  padding-left: 40px;
}
.header-member a i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #0091a7;
  font-size: 30px;
}
.header-member a + a {
  position: relative;
  margin-left: 20px;
  padding-left: 21px;
}
.header-member a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1px;
  height: 80%;
  background: #c2c2c2;
  transform: translateY(-50%);
}
.header-member a:hover i {
  color: rgb(0, 100.7185628743, 116);
}

.header-row + .header-row {
  margin-top: 20px;
}

.depth1 {
  font-size: 18px;
  font-weight: 500;
}

.gnb-wrap {
  display: flex;
  flex-flow: row nowrap;
  flex: 1;
  min-width: 0;
}

.gnb-col {
  flex-flow: column nowrap;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  border-left: 1px dashed transparent;
  border-right: 1px dashed transparent;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.gnb-col.gnb-col-sub.current:hover, .gnb-col.gnb-col-sub.current.active {
  border-color: transparent;
}
.gnb-col.gnb-col-sub:hover, .gnb-col.gnb-col-sub.active {
  background: rgba(0, 145, 167, 0.1);
}

.depth1-li {
  padding-bottom: 10px;
}
.depth1-li a {
  position: relative;
}
.depth1-li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #80cfcb;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.depth1-li a:hover::before {
  opacity: 1;
}

.depth1-li.current {
  color: #0091a7;
}
.depth1-li.current a::before {
  background: #0091a7;
  opacity: 1;
}

.depth1-li-a {
  display: inline-block;
  padding: 10px 15px;
  white-space: nowrap;
}

.header-bottom {
  color: #727272;
  font-size: 16px;
  box-shadow: 0px 30px 30px -30px rgba(0, 0, 0, 0.2);
}
.header-bottom .gnb-col {
  padding: 20px 0;
}
.header-bottom .gnb-col.current {
  background: #0091a7;
  color: #d1e6e8;
}
.header-bottom .gnb-col.current .depth2-li-a:hover {
  color: white;
}
.header-bottom .gnb-col.current .depth2-li-a:hover::before {
  background: white;
}
.header-bottom .gnb-col .depth2-li-a:hover {
  color: #0b0b0b;
}

.depth2-li {
  padding: 0 15px;
}
.depth2-li + .depth2-li {
  margin-top: 10px;
}
.depth2-li.current .depth2-li-a::before {
  opacity: 1;
}

.depth2-li-a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 10px;
}
.depth2-li-a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d1e6e8;
  opacity: 0;
  transform-origin: center left;
}

.submenu-bracket {
  position: relative;
  z-index: 1000;
}

.header-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: rgba(255, 255, 255, 0.9);
}
.subpage-cover {
  background: #f6f6f6;
  margin-bottom: 70px;
}
.subpage-cover .container-inner {
  position: relative;
  padding: 70px 0;
}
.subpage-cover .container-inner .breadcrumbs {
  position: absolute;
  top: 0;
  right: 0;
}

.subpage-title {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  display: inline-block;
}
.subpage-title .title-content {
  position: relative;
  display: inline-block;
}
.subpage-title .title-small {
  position: relative;
  display: inline-block;
}
.subpage-title small {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  margin-left: 5px;
  color: #5f5f5f;
}
.subpage-title small::before {
  content: "(";
}
.subpage-title small::after {
  content: ")";
}
.subpage-title .cross {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.subpage-title .cross.green .cross-inner {
  position: absolute;
  top: -0.2em;
  left: 0.5em;
  line-height: 0;
}
.subpage-title .cross.orange .cross-inner {
  position: absolute;
  top: -0.4em;
  left: 1em;
  line-height: 0;
}
.subpage-title .cross img {
  animation: _rotate 3s linear infinite;
}

.subpage-container {
  padding-bottom: 70px;
}

.breadcrumbs {
  padding: 15px 0;
}
.breadcrumbs li {
  position: relative;
  float: left;
  font-size: 12px;
  white-space: nowrap;
}
.breadcrumbs li.home a {
  transition: color 0.2s ease;
}
.breadcrumbs li.home a:hover {
  color: #f29500;
}
.breadcrumbs li.sub {
  padding-left: 7px;
  margin-left: 14px;
}
.breadcrumbs li.sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5px;
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 50%;
  background: #727272;
  transform: translateY(-50%);
  opacity: 0.2;
}
.breadcrumbs li.sub::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5px;
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 50%;
  background: white;
  transform: translateY(-50%);
  opacity: 0.2;
}
.breadcrumbs li.sub.sub-more .bc-a {
  position: relative;
  padding-right: 25px;
}
.breadcrumbs li .bc-a {
  position: relative;
  float: left;
  display: inline-block;
  padding: 10px 0;
  padding-left: 7px;
  border-bottom: 1px solid transparent;
  font-weight: 400;
  color: #c2c2c2;
  z-index: 2;
}
.breadcrumbs li .bc-a.last-child {
  color: #0091a7;
  font-weight: 500;
}
.breadcrumbs li .bc-a i {
  float: left;
}
.breadcrumbs li .icon-more {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  margin-bottom: -1px;
  font-size: 10px;
}
.breadcrumbs li .icon-more i {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.breadcrumbs li .icon-more .do-open {
  color: #bebebe;
}
.breadcrumbs li .icon-more .do-close {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  color: #f29500;
  margin-top: -2px;
}
.breadcrumbs li:hover .icon-more {
  z-index: 2;
}
.breadcrumbs li:hover .icon-more .do-open {
  transform: translateY(-100%);
  opacity: 0;
}
.breadcrumbs li:hover .icon-more .do-close {
  transform: translateY(-100%);
  opacity: 1;
}

.breadcrumbs-home {
  margin-right: 5px;
}

.sub-more > .bc-a {
  transition: color 0.5s ease, border-color 0.5s ease;
}
.sub-more .breadcrumbs-sub-list {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sub-more:hover > .bc-a {
  color: #f29500;
}
.sub-more:hover .breadcrumbs-sub-list {
  pointer-events: auto;
  opacity: 1;
}

.breadcrumbs-sub-list {
  position: absolute;
  top: 100%;
  left: -7px;
  padding: 0 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: #fff;
  border: 1px solid #c2c2c2;
  backface-visibility: hidden;
  perspective: 0;
  z-index: 2;
  margin-top: 5px;
}
.breadcrumbs-sub-list::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: 20px;
}
.breadcrumbs-sub-list li {
  float: left;
  width: 100%;
}
.breadcrumbs-sub-list a {
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 25px;
  color: black;
  transition: color 0.2s ease;
}
.breadcrumbs-sub-list a:hover {
  color: #f29500;
}

.breadcrumbs-sub-list {
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.01);
}
.breadcrumbs-sub-list li.current {
  cursor: not-allowed;
}
.breadcrumbs-sub-list li.current a {
  pointer-events: none;
  color: #bebebe;
  opacity: 0.5;
}
.breadcrumbs-sub-list li.not-current a:hover::before {
  opacity: 1;
}

.bookmark {
  background: #80cfcb;
  padding: 60px 0 60px 0;
}
.bookmark .container-inner {
  position: relative;
}
.bookmark .swiper-slide-arrows {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
}
.bookmark .swiper-slide-arrow {
  pointer-events: auto;
  line-height: 50px;
  width: 50px;
  text-align: center;
  opacity: 0.2;
  font-size: 30px;
  cursor: pointer;
  transform: scale(0.8, 0.8);
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bookmark .swiper-slide-arrow:hover {
  transform: scale(1, 1);
  opacity: 0.9;
  color: #0077cc;
}
.bookmark .swiper-slide-arrow.prev {
  float: left;
  transform: translateX(-150%);
}
.bookmark .swiper-slide-arrow.next {
  float: right;
  transform: translateX(150%);
}

.bookmark-item a:hover .bookmark-banner img {
  transform: scale(1.1, 1.1);
}
.bookmark-item a:hover .bookmark-title {
  color: #0091a7;
}

.bookmark-banner {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bookmark-banner img {
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bookmark-title {
  font-size: 16px;
  text-align: center;
  color: white;
}

.footer {
  padding: 40px 0;
  background: #363636;
}

.footer-row {
  margin-left: -40px;
}

.footer-col {
  float: left;
  padding-left: 40px;
}

.footer-logo {
  width: 310px;
}
.footer-logo img {
  max-width: 270px;
  width: 100%;
}

.footer-content {
  font-size: 16px;
}

.footer-link {
  margin-bottom: 30px;
}
.footer-link a {
  color: white;
}
.footer-link a::after {
  content: " ";
  letter-spacing: 2em;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1px' height='12px' viewBox='0 0 1 12' style='enable-background:new 0 0 1 12;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23787979;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Crect class='st0' width='1' height='12'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
}
.footer-link a:hover {
  color: #f29500;
}

.footer-info {
  color: #9b9b9b;
  line-height: 1.45;
}
.footer-info div + div {
  margin-top: 10px;
}

.footer-contact span::after {
  content: " ";
  letter-spacing: 2em;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1px' height='12px' viewBox='0 0 1 12' style='enable-background:new 0 0 1 12;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23787979;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Crect class='st0' width='1' height='12'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
}
.footer-contact span a:hover {
  color: #f29500;
}

.footer .container-inner {
  position: relative;
}

.social-link {
  position: absolute;
  top: 0;
  right: 0;
}
.social-link ul {
  margin-left: -10px;
}
.social-link li {
  float: left;
  padding-left: 10px;
}
.social-link li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: #9b9b9b;
  border-radius: 8px;
  font-size: 25px;
  color: #363636;
}
.social-link li a:hover {
  color: white;
}
.social-link li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.social-link li.facebook a:hover {
  background: #4966aa;
}
.social-link li.instagram a:hover {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1);
}
.social-link li.youtube a:hover {
  background: #e62117;
}
.social-link li.naver a:hover {
  background: #16bb69;
}

.popup-bracket .container-inner {
  position: relative;
}
.popup-bracket .container-inner #hd_pop {
  z-index: 999;
}

.main-piece.top {
  padding-top: 20px;
  padding-bottom: 40px;
}
.main-piece.middle {
  padding-bottom: 80px;
}
.main-piece.bottom {
  padding-top: 40px;
  padding-bottom: 80px;
}
.main-piece .swiper-container {
  border-radius: 20px;
}
.main-piece .swiper-container .slide-image img {
  width: 100%;
}

.banner-controller {
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 1;
  line-height: 1;
  padding-right: 25px;
}
.banner-controller .swiper-pagination {
  position: static;
  float: left;
}
.banner-controller .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #0b0b0b;
  opacity: 1;
}
.banner-controller .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}
.banner-controller .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0091a7;
}

.slide-action {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.slide-action button {
  background: transparent;
  border: none;
  font-size: 12px;
  width: 10px;
  text-align: center;
}

.run-play {
  display: none;
}

.paused .run-play {
  display: block;
}
.paused .run-pause {
  display: none;
}

.main-piece .swiper-slide-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}
.main-piece .swiper-slide-arrow {
  pointer-events: auto;
  line-height: 50px;
  width: 50px;
  text-align: center;
  opacity: 0.2;
  font-size: 40px;
  cursor: pointer;
  transform: scale(0.8, 0.8);
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main-piece .swiper-slide-arrow:hover {
  transform: scale(1, 1);
  opacity: 0.9;
  color: #0077cc;
}
.main-piece .swiper-slide-arrow.prev {
  float: left;
  margin-left: 30px;
}
.main-piece .swiper-slide-arrow.next {
  float: right;
  margin-right: 30px;
}

.main-row {
  position: relative;
  padding-right: 530px;
}

.main-col.col2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 495px;
  height: 343.437px;
}

.section-header {
  position: relative;
}
.section-header h2 {
  display: inline-block;
  font-size: 25px;
  color: #5f5f5f;
  font-weight: 600;
  padding: 20px 0;
}
.section-header .read-more {
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
}
.section-header .read-more:hover {
  animation: bounce_readmore 0.5s;
}
.section-header .read-more:hover::before, .section-header .read-more:hover::after {
  background: #0091a7;
}
.section-header .read-more::before, .section-header .read-more::after {
  content: "";
  position: absolute;
  background: #f29500;
  border-radius: 3px;
  transition: background-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.section-header .read-more::before {
  top: 50%;
  left: 0;
  width: 26px;
  height: 6px;
  transform: translateY(-50%);
}
.section-header .read-more::after {
  top: 0;
  left: 50%;
  width: 6px;
  height: 26px;
  transform: translateX(-50%);
}

.section-recents.type1 .recent-content {
  padding-right: 91px;
}
.section-recents.type2 .recent-content {
  padding-right: 303px;
}
.section-recents + .section-recents {
  margin-top: 40px;
}

.recent-content {
  position: relative;
  line-height: 40px;
  height: 40px;
  padding-right: 230px;
}
.recent-content .recnet-right {
  position: absolute;
  top: 0;
  right: 0;
}

.recent-category {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}
.recent-category::before {
  content: "[";
}
.recent-category::after {
  content: "]";
}

.recent-title {
  font-size: 17px;
  font-weight: 500;
}

.recent-date {
  font-size: 14px;
  color: #727272;
  font-weight: 500;
}

.recent-status.button-rounded {
  width: 125px;
  margin-left: 20px;
}

.recent-list {
  border-top: 1px solid #c2c2c2;
  min-height: 274px;
}
.recent-list li {
  padding: 14.19px 0;
  border-bottom: 1px solid #c2c2c2;
}
.recent-list li:hover .recent-title {
  color: #0091a7;
}

.section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 65px;
}
.section-video .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-video .video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.main-piece.main-box {
  background: #f6f6f6;
}

.main-platform-row {
  display: flex;
}

.main-platform-col {
  width: 26.662%;
}
.main-platform-col.col2, .main-platform-col.col3 {
  width: 36.669%;
  padding-left: 20px;
}

.main-platform-rect {
  width: 100%;
  height: 100%;
  background: white;
}
.main-platform-rect a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 25px;
}
.main-platform-rect a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #c2c2c2;
}
.main-platform-rect a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 10px solid #0091a7;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main-platform-rect a:hover::after {
  opacity: 1;
}

.main-platform-rect-inner {
  font-size: 16px;
  line-height: 1.8;
  height: 100%;
  position: relative;
  padding-bottom: 75px;
}
.main-platform-rect-inner h3 {
  font-weight: 500;
  color: #0091a7;
  margin-bottom: 1.5em;
  word-break: keep-all;
}
.main-platform-rect-inner p {
  color: #727272;
  margin-bottom: 2em;
  word-break: keep-all;
}

.section-main-platform {
  margin-top: 80px;
}

.main-platform-rect-icon {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-sns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-sns .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-sns .video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.sns-header img {
  width: 100%;
}

.main-box .main-col.col2 {
  padding-top: 740px;
  background: white;
}

.sns-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sns-wrapper .fb_iframe_widget {
  width: 100%;
  height: 100%;
}
.sns-wrapper .fb_iframe_widget span {
  display: block;
  height: 100% !important;
}
.sns-wrapper .fb_iframe_widget span iframe {
  height: 100% !important;
}

.register #fregister h2 {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  padding-left: 0;
  padding-right: 0;
  border-color: #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
}

#sns_register,
#fregister section {
  position: relative;
  border-radius: 0;
  border-color: #c2c2c2;
  border: none;
  margin: 10px 0;
}

#fregister p {
  border-radius: 0;
  border: 1px solid #c2c2c2;
  background: #f6f6f6;
  color: #363636;
  font-size: inherit;
  font-weight: 500;
  text-align: left;
  padding: 10px 10px;
  line-height: 1.8;
}
#fregister p i {
  color: #f29500;
  margin-right: 5px;
}
#fregister p::before {
  display: none;
}

#fregister textarea {
  display: block;
  padding: 20px;
  width: 100%;
  height: 150px;
  font-size: 14px;
  line-height: 1.8;
}

.register-checkbox {
  position: absolute;
  top: 20px;
  right: 0;
}
.register-checkbox .selec_chk:checked ~ label .label-icon::before {
  background: #80cfcb;
}
.register-checkbox label .label-icon {
  position: relative;
  display: block;
  float: left;
  width: 15px;
  height: 15px;
  border: 1px solid #363636;
  margin-top: 1px;
  margin-right: 10px;
}
.register-checkbox label .label-icon::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 2px;
  left: 2px;
  background: transparent;
}
.register-checkbox label .label-text {
  float: left;
  font-size: 14px;
}

.register-checkbox-all {
  position: relative;
  padding: 20px 0;
  margin-bottom: 15px;
  text-align: right;
  font-weight: 500;
}
.register-checkbox-all::after {
  content: "";
  display: table;
  clear: both;
}
.register-checkbox-all .register-checkbox-all-inner {
  float: right;
}
.register-checkbox-all .selec_chk:checked ~ label .label-icon::before {
  background: #80cfcb;
}
.register-checkbox-all label .label-icon {
  position: relative;
  display: block;
  float: left;
  width: 15px;
  height: 15px;
  border: 1px solid #363636;
  margin-top: 1px;
  margin-right: 10px;
}
.register-checkbox-all label .label-icon::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 2px;
  left: 2px;
  background: transparent;
}
.register-checkbox-all label .label-text {
  float: left;
  font-size: 14px;
}

#fregister .register-overflow-scroll {
  padding: 20px 0;
}
#fregister .register-overflow-scroll textarea {
  border: 1px solid #c2c2c2;
  background: #f6f6f6;
}

.register-policy .register-table {
  padding: 20px 0;
  background: #fff;
}
.register-policy .register-table table td, .register-policy .register-table table th {
  line-height: 1.45;
}
.register-policy .register-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 2px solid #9b9b9b;
  font-size: 16px;
  text-align: left;
}
.register-policy .register-table table caption {
  display: none;
}
.register-policy .register-table table thead th {
  font-size: 16px;
}
.register-policy .register-table table th,
.register-policy .register-table table td {
  padding: 20px 10px;
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
}
.register-policy .register-table table th:first-child,
.register-policy .register-table table td:first-child {
  border-left: none;
}
.register-policy .register-table table th:last-child,
.register-policy .register-table table td:last-child {
  border-right: none;
}
.register-policy .register-table table th {
  font-size: 16px;
  font-weight: 500;
}
.register-policy .register-table table td {
  font-size: 14px;
}

.register-overflow-scroll + .register-table {
  padding-top: 0;
}

.btns-register {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.btns-register-inner {
  margin-left: -15px;
}
.btns-register-inner .btn-item {
  float: left;
  width: 50%;
  padding-left: 15px;
}
.btns-register-inner .btn-item a,
.btns-register-inner .btn-item button {
  width: 100%;
}
.btns-register-inner .btn-item a:hover,
.btns-register-inner .btn-item button:hover {
  background: #f3f3f3;
}
.btns-register-inner .btn-item a.button-register,
.btns-register-inner .btn-item button.button-register {
  background: #80cfcb;
  border-color: #80cfcb;
  color: white;
}

#sns_register h2 {
  height: auto;
  line-height: inherit;
}

#sns_register .sns-wrap {
  width: 100%;
  padding: 20px 0;
  line-height: 1;
  height: auto;
}

#sns_register .sns-icon {
  float: left;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  margin: 0;
}
#sns_register .sns-icon + .sns-icon {
  margin-left: 10px;
}
#sns_register .sns-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

#sns_register .sns-kakao {
  background: #FEE500;
  color: black;
}
#sns_register .sns-kakao.sns-icon i {
  font-size: 20px;
}

#register-form {
  font-size: 18px;
}
#register-form input, #register-form textarea {
  font-size: 16px;
}

.wrap-register-form {
  margin-top: 50px;
}

.register-item + .register-item {
  margin-top: 20px;
}

.register-item-head {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #c2c2c2;
  margin-bottom: 20px;
}

.register-item-content {
  padding: 15px 10px;
}
.register-item-content.deafult + .extend {
  border-top: 1px solid #c2c2c2;
}
.register-item-content.extend {
  padding-bottom: 35px;
  border-bottom: 1px solid #c2c2c2;
}

.form-item {
  padding: 10px 0;
}
.form-item + .form-item {
  margin-top: 10px;
}
.form-item.required .form-title .form-label {
  position: relative;
  padding-right: 15px;
}
.form-item.required .form-title .form-label::before {
  content: "*";
  color: red;
  position: absolute;
  top: 0;
  right: 0;
}

.form-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.form-content .frm_label {
  display: none;
}
.form-content .sns-wrap {
  text-align: left;
}

.form-hint {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.45;
}
.form-hint.red {
  color: red;
}
.form-hint.dark {
  color: #0b0b0b;
}
.form-hint.blue {
  color: #0091a7;
}

.list-checkbox {
  font-size: 14px;
  margin-top: -10px;
  margin-left: -20px;
}
.list-checkbox.division-3 li {
  width: 33.333333%;
}
.list-checkbox.division-2 li {
  width: 50%;
}
.list-checkbox li {
  float: left;
  width: 100%;
  padding-left: 20px;
  padding-top: 20px;
  white-space: nowrap;
}
.list-checkbox .input-shape {
  font-size: 18px;
}

.form-postcode {
  position: relative;
  max-width: 320px;
  padding-right: 98.81px;
}
.form-postcode button {
  position: absolute;
  top: 1px;
  right: 0;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  padding: 12px 15px;
  line-height: 1;
  font-size: 14px;
  overflow: hidden;
  border: none;
  border-radius: 8px;
}

.form-content-row {
  position: relative;
}
.form-content-row + .form-content-row {
  margin-top: 10px;
}

#daum_juso_pagemb_zip {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9999;
}

.form-checkbox-item {
  position: relative;
}

.icon-tooltip {
  position: relative;
  width: 17px;
  height: 17px;
  margin-left: 5px;
  border: none;
  border-radius: 10px;
  background: #0b0b0b;
  line-height: 17px;
  vertical-align: top;
  color: #fff;
  font-size: 10px;
  text-align: center;
}
.icon-tooltip::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  transform: translateY(calc(-50% - 0.4px));
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #0b0b0b;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.icon-tooltip .tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  transform: translateY(calc(-50% - 0.4px));
  min-width: 320px;
  width: 100%;
  padding: 10px;
  background: #0b0b0b;
  font-size: 14px;
  margin-left: 5px;
  border-radius: 3px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  line-height: 1.45;
}
.icon-tooltip.show::before, .icon-tooltip.show .tooltip {
  opacity: 1;
}

.do-register {
  margin-top: 40px;
}

.register-social .input-row {
  background: #fafafa;
  margin-top: 20px;
  border: 1px solid #c2c2c2;
}
.register-social .email_msg {
  margin-top: 10px;
  font-size: 14px;
  color: #f29500;
}
.register-social .announcement-row {
  background: #fafafa;
  padding: 20px;
  border: 1px solid #c2c2c2;
}
.register-social .announcement-row + .announcement-row {
  border: 1px solid #c2c2c2;
  margin-top: 20px;
}
.register-social .terms-content {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.register-social .agree-all-term {
  margin-top: 20px;
  text-align: center;
}
.register-social .register-announcement {
  border-top: none;
}
.register-social .input-row.exist-account {
  margin-top: 50px;
}

.member-container {
  line-height: 1.45;
  margin-top: 50px;
}
.member-container .strong {
  margin-bottom: 10px;
}
.member-container .strong strong {
  font-weight: 700;
}
.member-container .member {
  width: 100%;
}

.list-reg-result-info {
  padding: 20px;
  background: #f6f6f6;
  margin: 30px 0;
}
.list-reg-result-info li + li {
  margin-top: 10px;
}

.list-reg-result-tip li {
  position: relative;
  padding-left: 1em;
}
.list-reg-result-tip li::after {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.list-reg-result-tip li + li {
  margin-top: 10px;
}

.reg-result-bottom {
  font-size: 14px;
  margin-bottom: 30px;
}

.list-table {
  margin-top: 30px;
  border-bottom: 1px solid #c2c2c2;
}

.table-part {
  float: left;
  width: 50%;
  padding: 20px 0;
  border-top: 1px solid #c2c2c2;
  line-height: 30px;
}
.table-part.full {
  width: 100%;
}
.table-part dt, .table-part dd {
  float: left;
  padding: 0 20px;
}
.table-part dt {
  width: 120px;
  font-size: 500;
  font-size: 18px;
}
.table-part dd {
  position: relative;
  font-size: 14px;
}
.table-part dd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #c2c2c2;
}

.register-finished {
  display: block;
  width: 280px;
  margin: 0 auto;
}

.form-row + .form-row {
  margin-top: 20px;
}

.wrap-input {
  position: relative;
}

.label-placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.focused ~ .label-placeholder,
.filled ~ .label-placeholder {
  transform: translateY(-100%);
  opacity: 0;
}

.valid.invalid {
  border-color: #f29500;
}
.valid.invalid + label {
  color: #f29500;
}

.input-login {
  font-size: 16px;
  width: 100%;
  height: 56px;
  border: none;
  border-bottom: 1px solid black;
}
.input-login[readonly] {
  background: #bebebe;
  color: #0b0b0b;
}

.wrap-login p {
  font-size: 14px;
  line-height: 1.8;
  color: #5f5f5f;
  padding: 20px;
  border-radius: 4px;
  background: #f6f6f6;
  margin-bottom: 40px;
}
.wrap-login p strong {
  font-weight: 500;
  display: block;
}
.wrap-login p .red {
  color: red;
}

span.input-login {
  display: block;
  line-height: 56px;
}
span.input-login span {
  color: #0091a7;
}

.member-container {
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}

.btns-login {
  margin-top: 50px;
}
.btns-login button {
  width: 100%;
}

#login a.button.member,
#login button.member,
#login input[type=button].member,
#login input[type=submit].member {
  width: 100%;
}
#login .form-hint {
  line-height: 1.45;
  margin-bottom: 20px;
}

.login-opts {
  line-height: 30px;
  font-size: 12px;
  color: #727272;
  margin: 10px 0;
}

.keep-info {
  float: left;
}

.find-info {
  float: right;
}

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

#sns_login .sns-wrap a {
  border-radius: 8px;
  overflow: hidden;
  border-bottom: none;
}
#sns_login .sns-wrap a .txt {
  font-size: 14px;
  font-weight: normal;
}

.section-login-register {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #c2c2c2;
}
.section-login-register p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.login-comments {
  margin-bottom: 20px;
  line-height: 1.45;
  font-size: 14px;
  color: #0b0b0b;
  text-align: center;
}

#sns_login .sns-icon {
  position: relative;
  display: inline-block;
  margin: 0;
  margin-top: 10px;
  background-image: none;
  font-size: 18px;
}
#sns_login .sns-icon .ico {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 1;
}
#sns_login .sns-icon .ico i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#sns_login .sns-kakao {
  font-size: 20px;
}

#sns_login .txt {
  border-color: rgba(0, 0, 0, 0.08);
}

.register-next-inner {
  margin-left: -15px;
}
.register-next-inner .register-btn-col {
  float: left;
  width: 50%;
  padding-left: 15px;
}

.loaded .appear-up {
  animation: appearUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.appear-blank {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
}

.appear-up {
  transform: translateY(110%);
  opacity: 0;
}

.animation-delay-02 {
  animation-delay: 0.2s !important;
}

.animation-delay-04 {
  animation-delay: 0.4s !important;
}

.animation-delay-06 {
  animation-delay: 0.6s !important;
}

.animation-delay-08 {
  animation-delay: 0.8s !important;
}

.animation-delay-10 {
  animation-delay: 1s !important;
}

.section-default + .section-default {
  margin-top: 70px;
}
.section-default h3 {
  line-height: 1;
  font-size: 25px;
  font-weight: 500;
  color: #0b0b0b;
  margin-bottom: 30px;
}
.section-default h3.line {
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 20px;
}

.grid-row {
  display: flex;
  margin-left: -15px;
  margin-top: -15px;
}
.grid-row .grid-col {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding-left: 15px;
  padding-top: 15px;
}
.grid-row .grid-col .grid-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #0091a7;
  line-height: 1.8;
  padding: 25px;
  word-break: keep-all;
  border-radius: 8px;
}
.grid-row .grid-col .grid-inner strong {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  word-break: keep-all;
}
.grid-row .grid-col .grid-inner p {
  word-break: keep-all;
}

.div-table.border {
  border-top: 1px solid #0b0b0b;
}

.div-table-row {
  display: flex;
  flex-flow: row nowrap;
  flex: 1;
  padding: 20px 0;
  border-bottom: 1px solid #c2c2c2;
}

.div-table-col {
  flex-flow: column nowrap;
  flex: 1;
  min-width: 0;
  line-height: 1.8;
  line-height: 32px;
}
.div-table-col.title {
  flex-basis: 260px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  max-width: 260px;
}
.div-table-col.content {
  color: #5f5f5f;
}
.div-table-col ul li {
  display: inline;
  white-space: nowrap;
}
.div-table-col ul li::before {
  content: "•";
  margin-right: 5px;
}
.div-table-col ul li::after {
  content: " ";
  letter-spacing: 2em;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1px' height='12px' viewBox='0 0 1 12' style='enable-background:new 0 0 1 12;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23787979;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Crect class='st0' width='1' height='12'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
}

.paragraph {
  line-height: 1.8;
  color: #5f5f5f;
}

.summary {
  display: block;
  font-size: 18px;
  line-height: 1.8;
}
.summary strong {
  color: #0091a7;
}

.table-list .tr {
  display: table;
  table-layout: fixed;
  width: 100%;
  color: #5f5f5f;
}
.table-list .th {
  font-weight: 500;
  color: #0b0b0b;
}
.table-list .th,
.table-list .td {
  display: table-cell;
  text-align: center;
  padding: 15px 10px;
  text-align: center;
  font-size: 16px;
  vertical-align: middle;
}
.table-list .th a:hover,
.table-list .td a:hover {
  color: #0091a7;
}
.table-list .th > span,
.table-list .td > span {
  display: inline-block;
  width: 100%;
}
.table-list .th.col-1,
.table-list .td.col-1 {
  width: 230px;
}
.table-list .th.col-2,
.table-list .td.col-2 {
  width: 150px;
}
.table-list .th.col-full,
.table-list .td.col-full {
  width: 100%;
}
.table-list .th.col-left,
.table-list .td.col-left {
  text-align: left;
}
.table-list .th.subject,
.table-list .td.subject {
  font-weight: 500;
  color: #0b0b0b;
}
.table-list .th.summary,
.table-list .td.summary {
  color: #5f5f5f;
  font-size: 14px;
}
.table-list-head .tr {
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  background: #f6f6f6;
}

.table-list-body .tr {
  border-bottom: 1px solid #c2c2c2;
}
.table-list-body .is-empty {
  border-bottom: 1px solid #c2c2c2;
}

.search-result-summary {
  margin-bottom: 40px;
  padding: 20px;
  background: #f6f6f6;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 8px;
}
.search-result-summary .blue {
  color: #0091a7;
}
.search-result-summary .keyword {
  font-weight: 500;
  color: #0077cc;
}
.search-result-summary .keyword::before {
  content: '"';
}
.search-result-summary .keyword::after {
  content: '"';
}
.search-result-summary .search-result-summary-page {
  color: #5f5f5f;
}

.search-pagination {
  margin-top: 40px;
}

.platform-summary2 {
  display: block;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 70px;
}
.platform-summary2 strong {
  color: #0091a7;
}

.center-vision-row {
  position: relative;
  padding-left: 420px;
}
.center-vision-row + .center-vision-row {
  margin-top: 40px;
}

.center-vision-col.title {
  position: absolute;
  top: 0;
  left: 0;
}
.center-vision-col.content {
  border-top: 1px solid #c2c2c2;
  padding: 20px 0;
  line-height: 1.45;
}
.center-vision-col.content p {
  font-size: 18px;
  font-weight: 500;
}
.center-vision-col.content ul {
  margin-top: 10px;
}
.center-vision-col.content ul li {
  position: relative;
  padding-left: 1em;
}
.center-vision-col.content ul li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}
.center-vision-col.content ul li span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.center-vision-col.content ul li + li {
  margin-top: 10px;
}

.center-vision-box {
  display: table;
  width: 380px;
  height: 230px;
  background: #f6f6f6;
}

.center-vision-box-inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.center-vision-icon {
  position: relative;
  padding-right: 150px;
  display: inline-block;
}
.center-vision-icon strong {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  color: #0091a7;
  line-height: 2;
}
.center-vision-icon strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #0091a7;
}
.center-vision-icon img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 90px;
  transform: translateY(-50%);
}

.center-parent {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.parent-logo {
  display: table-cell;
  width: 230px;
  text-align: center;
  vertical-align: top;
}

.parent-description {
  display: table-cell;
  width: 100%;
  vertical-align: top;
  line-height: 1.8;
}
.parent-description strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.parent-description p {
  margin-bottom: 20px;
}
.parent-description a {
  font-weight: 500;
  color: #0077cc;
}

#ci .summary {
  margin-bottom: 70px;
}

.ci-conainer {
  padding: 20px 0;
}

.ci-image {
  text-align: center;
}
.ci-image img {
  max-width: 277px;
  width: 100%;
}

.ci-info {
  margin-top: 40px;
  padding-top: 41px;
  border-top: 1px dotted #c2c2c2;
}

.ci-colors {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.ci-color {
  float: left;
  width: 80px;
  height: 70px;
}

.ci-color-row {
  position: relative;
  padding-left: 80px;
}
.ci-color-row .ci-color {
  position: absolute;
  top: 0;
  left: 0;
}

.color .ci-color-row.fst .ci-color {
  background: #0091a7;
}
.color .ci-color-row.scd .ci-color {
  background: #f39800;
}
.color .ci-color-row.trd .ci-color {
  background: #bce1d6;
}
.color .ci-color-row + .ci-color-row {
  margin-top: 20px;
}

.solid .ci-color-row.fst .ci-color {
  background: #403a3a;
}
.solid .ci-color-row.scd .ci-color {
  background: #898989;
}
.solid .ci-color-row.trd .ci-color {
  background: #dcdddd;
}
.solid .ci-color-row + .ci-color-row {
  margin-top: 20px;
}

.ci-text {
  float: left;
  width: 100%;
  padding: 6.5px 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.45;
}

.ci-text-label,
.ci-text-content {
  float: left;
}

.ci-text-label {
  font-weight: 500;
  width: 80px;
}

.ci-text-row.ci-rgb {
  margin-bottom: 5px;
}

.ci-download {
  margin-top: 70px;
  text-align: center;
}
.ci-download .button-rounded {
  margin: 0 auto;
}

.map-wrap {
  position: relative;
  padding-top: 59%;
}
.map-wrap #map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes markerJump {
  0% {
    transform: translate3d(0, 5px, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes markerShadow {
  0%, 100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: blur(0.5px);
  }
  50% {
    transform: scale(1.2) translate3d(0, 0, 0);
    filter: blur(1px);
  }
}
#customMarker:hover svg {
  fill: #0077cc;
}
#customMarker svg {
  fill: #0091a7;
  animation: markerJump 1.5s ease-in-out infinite;
  transition: fill 0.2s ease-in-out;
}
#customMarker img {
  animation: markerJump 1.5s ease-in-out infinite;
  transition: fill 0.2s ease-in-out;
}
#customMarker .shadow {
  background-color: #abc3c9;
  width: 15px;
  height: 5.25px;
  border-radius: 50%;
  margin: 0 auto;
  animation: markerShadow 1.5s ease-in-out infinite;
}

.div-table.contact .div-table-row {
  padding: 40px 0;
}
.div-table.contact .div-table-col.title {
  flex-basis: 100px;
  text-align: left;
}
.div-table.contact ol {
  counter-reset: section;
  list-style-type: none;
}
.div-table.contact ol li::before {
  counter-increment: section;
  content: counters(section, ". ") ". ";
}

.section-row {
  position: relative;
  padding-left: 370px;
}
.section-row::after {
  content: "";
  display: table;
  clear: both;
}
.section-row + .section-row {
  margin-top: 70px;
}

.section-col.label {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  border-top: 1px solid #0091a7;
}
.section-col.label a {
  cursor: pointer;
}
.section-col.label small {
  font-size: 16px;
}
.section-col.label small::before {
  content: "(";
}
.section-col.label small::after {
  content: ")";
}
.section-col.content {
  width: 100%;
}
.section-col h3 {
  padding-top: 0.8em;
  white-space: nowrap;
  font-size: 25px;
  color: #0091a7;
  font-weight: 500;
}

.btns-business {
  margin-top: 70px;
  text-align: right;
}
.btns-business .button-rounded {
  width: 225px;
}
.btns-business .button-rounded + .button-rounded {
  margin-left: 10px;
}

.no-business {
  padding: 50px 0;
  background: #f6f6f6;
}
.bbs-list-thumbnail .bbs-list-body {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -60px;
}
.bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
  padding-bottom: 60px;
}

.bbs-list-thumbnail.bbs-list-thumbnail-nothing .bbs-list-body {
  margin: 0;
  display: block;
}
.bbs-list-thumbnail.bbs-list-thumbnail-nothing .bbs-list-body .is-empty {
  border: none;
}

.bbs-thumbnail-item a:hover .bbs-thumbnail-banner {
  border-color: #0091a7;
}

.bbs-thumbnail-item-inner {
  position: relative;
}

.bbs-thumbnail-admin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  line-height: 21px;
  z-index: 1;
  pointer-events: none;
}
.bbs-thumbnail-admin a, .bbs-thumbnail-admin label {
  pointer-events: auto;
  cursor: pointer;
}
.bbs-thumbnail-admin a {
  font-size: 14px;
  color: #0091a7;
}
.bbs-thumbnail-admin a:hover {
  color: #f29500;
}

.bbs-thumbnail-admin-item {
  float: right;
}
.bbs-thumbnail-admin-item:first-child {
  float: left;
}

.bbs-thumbnail-banner {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6f6f6;
}
.bbs-thumbnail-banner img {
  width: 100%;
}

.bbs-thumbnail-title {
  text-align: center;
}

.bbs-admin-thumbnail {
  margin-top: 40px;
  background: #f6f6f6;
}

.bbs-thumbnail-item-inner > a:hover .bbs-thumbnail-title {
  color: #0091a7;
}

.write-file-remover input[type=checkbox] {
  position: absolute;
  top: 0;
  left: -20px;
}

.member-social-register .sns_tbl caption {
  font-size: 18px;
  font-weight: 500;
  color: #0b0b0b;
}
.member-social-register .title-name input[type=checkbox] {
  margin-right: 5px;
}
.member-social-register .right_i {
  font-size: 14px;
  background: #0091a7;
  border-color: rgb(0, 122.8592814371, 141.5);
}
.member-social-register .mbskin .toggle {
  border-color: #c2c2c2;
}
.member-social-register .sns_tbl label {
  font-weight: 500;
}

.social-confirm {
  margin-top: 40px;
  margin-bottom: 70px;
}
.social-confirm .button-rounded {
  width: 100%;
}

.member_connect2 {
  padding: 20px;
  background: #f6f6f6;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 8px;
}
.member_connect2 .strong {
  font-size: 16px;
  margin-bottom: 15px;
}
.member_connect2 button {
  max-width: 200px;
}

.button-bbs {
  display: inline-block;
  font-size: 14px;
  border: 2px solid #0b0b0b;
  line-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
  background: white;
  min-width: 80px;
}
.button-bbs i {
  margin-right: 5px;
}
.button-bbs.size1 {
  width: 225px;
}
.button-bbs.alt.black {
  background: white;
  color: #0b0b0b;
}
.button-bbs.alt.green {
  background: white;
  color: #0091a7;
}
.button-bbs.alt.orange {
  background: white;
  color: #f29500;
}
.button-bbs.alt.orange.hover:hover {
  background-color: white;
  color: rgb(0, 122.8592814371, 141.5);
  border-color: #0091a7;
}
.button-bbs.alt.hover {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button-bbs.alt.hover:hover {
  background-color: white;
  color: rgb(216.5, 133.2995867769, 0);
  border-color: #f29500;
}
.button-bbs.hover {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button-bbs.hover:hover {
  background-color: #f29500;
  color: white;
  border-color: #f29500;
}
.button-bbs.hover.orange:hover {
  background-color: #0091a7;
  color: white;
  border-color: #0091a7;
}
.button-bbs.black {
  background-color: #0b0b0b;
  border-color: black;
  color: white;
}
.button-bbs.green {
  background-color: #0091a7;
  border-color: #0091a7;
  color: white;
}
.button-bbs.orange {
  background-color: #f29500;
  border-color: #f29500;
  color: white;
}
.button-bbs.rounded {
  border-radius: 8px;
}

.input-bbs {
  height: 40px;
  padding: 0 10px;
  border: 1px solid #c2c2c2;
  width: 100%;
  border-radius: 0;
}
.input-bbs:focus {
  border-color: #0091a7;
}
.input-bbs[readonly] {
  border-color: #E1E6F9;
  background-color: #F6F8FF;
  cursor: not-allowed;
}
.input-bbs[disabled] {
  border-color: #e8e8e8;
  background-color: #fbfbfb;
  color: rgb(155.5, 155.5, 155.5);
  cursor: not-allowed;
}

.select-bbs {
  height: 40px;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #c2c2c2;
}
.select-bbs:focus {
  border-color: #0091a7;
}

.bbs-category {
  margin-bottom: 70px;
}

.category-list {
  display: flex;
  width: 100%;
}
.category-list li {
  border: 1px solid #c2c2c2;
  margin-top: -1px;
  margin-left: -1px;
  background: #f6f6f6;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.category-list li.active {
  z-index: 1;
  border-color: rgb(0, 122.8592814371, 141.5);
  background: #0091a7;
  color: white;
}
.category-list li.active a:hover {
  background: #0091a7;
}
.category-list li a {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 18px;
  height: 60px;
  text-align: center;
  justify-content: center;
}
.category-list li a:hover {
  background: #ebf6f3;
}

.category-list li.active {
  position: relative;
}
.category-list li.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border-bottom: 1px solid rgb(0, 122.8592814371, 141.5);
  border-right: 1px solid rgb(0, 122.8592814371, 141.5);
  background: #0091a7;
}

.bbs-header {
  padding-bottom: 20px;
}
.bbs-header .bbs-search {
  float: right;
}

.bbs-list-info {
  line-height: 40px;
  font-size: 14px;
  color: #5f5f5f;
}
.bbs-list-info span {
  color: #0091a7;
  font-weight: 500;
}

.bbs-search-type {
  float: left;
  margin-right: 10px;
}
.bbs-search-type select {
  min-width: 80px;
}
.bbs-search-type select:focus {
  border-color: #0091a7;
}

.bbs-search-keyword {
  position: relative;
  float: left;
  padding-right: 90px;
}
.bbs-search-keyword input {
  max-width: 250px;
}
.bbs-search-keyword input:focus {
  border-color: #0091a7;
}
.bbs-search-keyword button {
  position: absolute;
  top: 0;
  right: 0;
}

.bbs-foot {
  position: relative;
  padding: 4px 0;
  margin-top: 40px;
  min-height: 40px;
}
.bbs-foot .button-bbs {
  position: absolute;
  top: 0;
  right: 0;
}

.paging {
  width: 100%;
  text-align: center;
  color: #5f5f5f;
  letter-spacing: 0;
  font-size: 0;
}
.paging .paging-inner {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.paging .btn-paging {
  display: inline-block;
  line-height: 30px;
  font-size: 16px;
}
.paging .btn-paging.btn-current {
  position: relative;
  font-weight: 900;
  color: #0091a7;
}
.paging .btn-paging.btn-current::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0091a7;
}
.paging .btn-paging:hover {
  color: #0091a7;
  border-color: #0091a7;
}
.paging .btn-paging + .btn-paging {
  margin-left: 5px;
}
.paging .ctrl-number {
  padding: 0 10px;
}
.paging .ctrl-page {
  width: 32px;
  border: 1px solid #c2c2c2;
}

.subpage-bbs .bbs-admin .tr {
  display: flex;
  align-items: center;
  color: #5f5f5f;
}
.subpage-bbs .bbs-admin .td {
  display: flex;
  align-items: center;
  min-width: 80px;
  padding: 15px 10px;
  text-align: left;
  justify-content: left;
}
.subpage-bbs .bbs-admin .td button,
.subpage-bbs .bbs-admin .td a {
  display: inline;
  font-size: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: inherit;
  line-height: 1;
  vertical-align: baseline;
  color: #5f5f5f;
}
.subpage-bbs .bbs-admin .td button + button, .subpage-bbs .bbs-admin .td button + a,
.subpage-bbs .bbs-admin .td a + button,
.subpage-bbs .bbs-admin .td a + a {
  margin-left: 20px;
}
.subpage-bbs .bbs-admin .td button:hover,
.subpage-bbs .bbs-admin .td a:hover {
  color: #0091a7;
}
.subpage-bbs .bbs-admin .td.admin {
  position: relative;
  min-width: 50px;
  text-align: center;
  justify-content: center;
}
.subpage-bbs .bbs-admin .td.admin {
  position: relative;
  min-width: 50px;
}

.subpage-bbs .tr {
  display: table;
  width: 100%;
  table-layout: fixed;
  color: #5f5f5f;
}
.subpage-bbs .tr.notice {
  color: #0b0b0b;
  background: #ebf6f3;
}
.subpage-bbs .th {
  font-weight: 500;
}
.subpage-bbs .th,
.subpage-bbs .td {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 15px 10px;
  text-align: center;
}
.subpage-bbs .th a:hover,
.subpage-bbs .td a:hover {
  color: #0091a7;
}
.subpage-bbs .th > span,
.subpage-bbs .td > span {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.subpage-bbs .th.admin,
.subpage-bbs .td.admin {
  position: relative;
  width: 50px;
}
.subpage-bbs .th.number,
.subpage-bbs .td.number {
  width: 80px;
}
.subpage-bbs .th.category,
.subpage-bbs .td.category {
  width: 120px;
}
.subpage-bbs .th.category a::before,
.subpage-bbs .td.category a::before {
  content: "[";
}
.subpage-bbs .th.category a::after,
.subpage-bbs .td.category a::after {
  content: "]";
}
.subpage-bbs .th.title,
.subpage-bbs .td.title {
  width: 100%;
}
.subpage-bbs .th.author,
.subpage-bbs .td.author {
  width: 240px;
}
.subpage-bbs .th.date,
.subpage-bbs .td.date {
  width: 150px;
}
.subpage-bbs .th.range,
.subpage-bbs .td.range {
  width: 240px;
}
.subpage-bbs .th.status,
.subpage-bbs .td.status {
  width: 150px;
}
.subpage-bbs .th.confirm,
.subpage-bbs .td.confirm {
  width: 150px;
}
.subpage-bbs .th.confirm .do-chagen-status,
.subpage-bbs .td.confirm .do-chagen-status {
  display: inline;
  border: none;
  background: transparent;
  vertical-align: middle;
  cursor: pointer;
}
.subpage-bbs .th.confirm .do-confirm,
.subpage-bbs .td.confirm .do-confirm {
  color: red;
}
.subpage-bbs .th.confirm .do-cancel,
.subpage-bbs .td.confirm .do-cancel {
  color: #0091a7;
  display: none !important;
}
.subpage-bbs .th.confirm.confirmed .do-confirm,
.subpage-bbs .td.confirm.confirmed .do-confirm {
  display: none !important;
}
.subpage-bbs .th.confirm.confirmed .do-cancel,
.subpage-bbs .td.confirm.confirmed .do-cancel {
  display: inline !important;
}
.subpage-bbs .th.col-left,
.subpage-bbs .td.col-left {
  text-align: left;
}
.subpage-bbs .td {
  font-size: 14px;
}
.subpage-bbs .td.author .sv_member {
  color: inherit;
}
.subpage-bbs .td.title {
  text-align: left;
  justify-content: left;
  font-size: 16px;
}
.subpage-bbs .td.title a {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.subpage-bbs .td.title .bbs-list-secret {
  color: #815BA6;
  margin-right: 5px;
}
.subpage-bbs .td.title .bbs-list-attatch {
  color: #5054A5;
  margin-right: 5px;
}
.subpage-bbs .td.title .bbs-list-new {
  color: #3881FF;
  margin-left: 5px;
  font-size: 10px;
  font-weight: 500;
  vertical-align: top;
}
.subpage-bbs .td.title .bbs-list-hot {
  color: #AE0D3A;
  margin-left: 5px;
  font-size: 10px;
  font-weight: 500;
  vertical-align: top;
}
.subpage-bbs .td.title .bbs-list-comments {
  color: #624B6D;
  font-size: 12px;
  margin-right: 5px;
  vertical-align: middle;
}
.subpage-bbs .td.title .bbs-list-comments::before {
  color: #3881FF;
  content: "(";
}
.subpage-bbs .td.title .bbs-list-comments::after {
  color: #3881FF;
  content: ")";
}

.bbs-list-head .tr {
  border-top: 1px solid #0b0b0b;
  border-bottom: 1px solid #c2c2c2;
  background: #f6f6f6;
}

.bbs-list-body .tr {
  border-bottom: 1px solid #c2c2c2;
}
.bbs-list-body .is-empty {
  border-bottom: 1px solid #c2c2c2;
}

.bbs-list-reply {
  color: #0091a7;
  background: rgba(0, 145, 167, 0.1);
  margin-right: 5px;
}

.subpage-bbs .td.status {
  padding: 8px 10px;
}
.subpage-bbs .td.status select {
  height: 30px;
  border-radius: 0;
  border: 1px solid #c2c2c2;
  padding: 0 10px;
}
.subpage-bbs .td.status span {
  border-color: #f29500;
  background: #f29500;
  color: white;
}
.subpage-bbs .td.status.complete span {
  border-color: #0091a7;
  color: #0091a7;
  background: white;
}
.subpage-bbs .td.status.complete select {
  color: #0091a7;
  border-color: #0091a7;
}
.subpage-bbs .td.status.cancel span {
  border-color: #f29500;
  color: #f29500;
  background: white;
}
.subpage-bbs .td.status.cancel select {
  color: #f29500;
  border-color: #f29500;
}
.subpage-bbs .td.status.request span {
  border-color: red;
  color: red;
  background: white;
}
.subpage-bbs .td.status.request select {
  color: red;
  border-color: red;
}

.write-form-item {
  padding: 20px 0;
}
.write-form-item:last-child {
  padding-bottom: 0;
}
.write-form-item.required .write-form-label::after {
  content: "*";
  color: #ff0101;
  margin-left: 5px;
  display: inline;
}
.write-form-item .tooltip-wrapper {
  position: relative;
}
.write-form-item .tooltip_icon {
  display: inline-block;
  vertical-align: baseline;
  color: #b3b5b8;
  border: 0;
  font-size: 1em;
  background: transparent;
  cursor: pointer;
}
.write-form-item .tooltip {
  display: none;
  position: absolute;
  max-width: 400px;
  white-space: nowrap;
  padding: 10px 20px;
  margin-left: 15px;
  margin-top: 0;
  background: #000;
  line-height: 1.7;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  z-index: 9;
  border-radius: 5px;
}

.write-form-item-multiple + .write-form-item-multiple {
  border-top: 1px solid #f6f6f6;
}

.write-form-item-inner {
  position: relative;
}
.write-form-item-inner::after {
  content: "";
  display: table;
  clear: both;
}

.write-form-label {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  width: 170px;
  font-weight: 500;
  line-height: 40px;
  font-size: 18px;
}

.write-form-content {
  float: left;
  width: 100%;
  padding-left: 180px;
}
.write-form-content::after {
  content: "";
  display: table;
  clear: both;
}

.write-form-text {
  height: 40px;
  padding: 0 10px;
  border: 1px solid #c2c2c2;
  width: 100%;
  border-radius: 0;
}
.write-form-text[readonly] {
  border-color: #E1E6F9;
  background-color: #F6F8FF;
  cursor: not-allowed;
}
.write-form-text[disabled] {
  border-color: #e8e8e8;
  background-color: #fbfbfb;
  color: rgb(155.5, 155.5, 155.5);
  cursor: not-allowed;
}
.write-form-text:focus {
  border-color: #0091a7;
}

.category-select {
  position: relative;
  float: left;
  width: 300px;
  margin-right: 30px;
}
.category-select.focus .fake-select, .category-select:focus .fake-select {
  opacity: 1;
  pointer-events: auto;
}
.category-select.focus .select-arrows, .category-select:focus .select-arrows {
  position: absolute;
  top: 0;
  right: 0;
}
.category-select.focus .select-arrows .close, .category-select:focus .select-arrows .close {
  opacity: 1;
  transform: none;
}
.category-select.focus .select-arrows .open, .category-select:focus .select-arrows .open {
  opacity: 0;
  transform: translateY(20px);
}
.category-select .selected-value {
  padding: 10px;
  background: #f4f4f4;
  font-size: 14px;
  font-weight: 400;
}
.category-select select {
  width: 100%;
}

.list-write-option {
  margin-bottom: 20px;
}
.list-write-option::after {
  content: "";
  display: table;
  clear: both;
}
.list-write-option li {
  float: left;
}
.list-write-option li + li {
  margin-left: 20px;
}

#wr_content, .bbs-textarea {
  display: block;
  padding: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 111px;
  min-height: 70px;
  max-height: 222px;
  background: white;
  line-height: 1.6em;
  font-size: 16px;
  box-shadow: none;
  border: 1px solid #c2c2c2;
  border-radius: 0;
}
#wr_content:focus, .bbs-textarea:focus {
  border-color: #0091a7;
}

.write-form-guide,
#char_count_desc {
  font-size: 14px;
  margin-bottom: 6px;
  color: #0191d1;
  line-height: 1.45;
  font-weight: 100;
  letter-spacing: -0.02em;
}
.write-form-guide strong,
#char_count_desc strong {
  font-weight: 400;
}
.write-form-guide.green,
#char_count_desc.green {
  color: #0191d1;
}
.write-form-guide.red,
#char_count_desc.red {
  color: red;
}

.write-form-guide {
  position: relative;
  color: #5f5f5f;
  font-weight: normal;
  padding-left: 0.8em;
}
.write-form-guide strong {
  color: #f29500;
}
.write-form-guide::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.write-form-guide a {
  color: #0091a7;
}

#char_count_wrap {
  font-size: 14px;
  margin-top: 15px;
  color: #0191d1;
  line-height: 1.35;
  font-weight: 100;
  letter-spacing: -0.02em;
}

.write-form-file-row {
  font-size: 14px;
}
.write-form-file-row::after {
  content: "";
  display: table;
  clear: both;
}
.write-form-file-row + .write-form-file-row {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f6f6f6;
}

.write-form-file-col {
  position: relative;
  float: left;
  width: 50%;
  width: 100%;
}
.write-form-file-col::after {
  content: "";
  display: table;
  clear: both;
}
.write-form-file-col + .write-form-file-col {
  margin-top: 10px;
  padding-left: 0;
}

.write-form-file {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 200px;
  text-align: left;
  background: #fff;
  border-radius: 3px;
}
.write-form-file .write-form-text .checkbox-fake {
  line-height: 20px;
}
.write-form-file .write-form-text .checkbox-fake-text {
  font-size: 12px;
  color: #888;
}
.write-form-file.attatched .write-file-label {
  color: #0191d1;
  opacity: 1;
}
.write-form-file.attatched .write-file-trigger {
  background: #0191d1;
  color: #fff;
}

.write-form-file-desc .write-form-text {
  padding: 0 10px;
  background: #f4f4f4;
}

.write-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.write-file-trigger {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 8px;
  background: #f4f4f4;
  border-radius: 2px;
  cursor: pointer;
}

.write-file-label {
  color: #0a0a0a;
  white-space: nowrap;
  opacity: 0.3;
}

.write-file-remover {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 2;
}
.write-file-remover input[type=checkbox].checkbox-box + label .label-box,
.write-file-remover input[type=checkbox].checkbox-box + label .checkbox-message {
  vertical-align: middle;
}
.write-file-remover input[type=checkbox].checkbox-box + label .checkbox-message span {
  font-weight: 500;
  color: #f29500;
}

.write-form-btns {
  float: right;
}
.write-form-btns .button-bbs + .button-bbs {
  margin-left: 10px;
}

.bbs-date-range {
  margin-left: -10px;
  margin-top: -10px;
}
.bbs-date-range .bbs-date-range-col {
  float: left;
  width: 50%;
  padding-left: 10px;
  padding-top: 10px;
}
.bbs-date-range .bbs-date-range-col input {
  cursor: pointer;
}

.bbs-col-wrapper {
  margin-left: -10px;
  margin-top: -10px;
}
.bbs-col-wrapper .bbs-col-item {
  float: left;
  width: 100%;
  padding-left: 10px;
  padding-top: 10px;
}
.bbs-col-wrapper .bbs-col-item input {
  cursor: pointer;
}
.bbs-col-wrapper .bbs-col-item select {
  width: 100%;
}
.bbs-col-wrapper .bbs-col-item.half {
  width: 50%;
}
.bbs-col-wrapper .bbs-col-item.trio {
  width: 33.333333%;
}

.address-wrapper {
  position: relative;
}
.address-wrapper #buttonAddress {
  position: absolute;
  top: 5px;
  right: 5px;
  line-height: 26px;
  border-radius: 3px;
}
.address-wrapper #daum_juso_pagewr_5 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 10;
}

.wirte-form-title-wrapper {
  position: relative;
}
.wirte-form-title-wrapper .btn_frmline {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  width: auto;
  padding: 0 10px;
  background: #434a54;
  border: none;
  border-radius: 3px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
}
.wirte-form-title-wrapper #autosave_pop {
  display: none;
  z-index: 10;
  position: absolute !important;
  top: 34px;
  right: 0;
  width: 100%;
  height: auto !important;
  height: 180px;
  max-height: 180px;
  border: 1px solid #ebebeb;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
}
.wirte-form-title-wrapper #autosave_pop:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 45px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #ebebeb transparent;
}
.wirte-form-title-wrapper #autosave_pop ul {
  padding: 15px;
  list-style: none;
  overflow-y: scroll;
  height: 130px;
  border-bottom: 1px solid #e8e8e8;
}
.wirte-form-title-wrapper #autosave_pop li {
  padding: 8px 10px;
  border-bottom: 1px solid #fff;
  background: #eee;
  zoom: 1;
}
.wirte-form-title-wrapper #autosave_pop strong {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.wirte-form-title-wrapper #autosave_pop a {
  font-size: 14px;
}
.wirte-form-title-wrapper #autosave_pop span {
  display: block;
  float: right;
  font-size: 12px;
  font-weight: 500;
  color: #888;
}
.wirte-form-title-wrapper #autosave_pop li:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.wirte-form-title-wrapper #autosave_pop button {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 300;
}
.wirte-form-title-wrapper #autosave_pop button.autosave_del {
  background: url(./img/close_btn.png) no-repeat 50% 50%;
  text-indent: -999px;
  overflow: hidden;
  height: 20px;
  width: 20px;
  margin-left: 10px;
  cursor: pointer;
}
.wirte-form-title-wrapper #autosave_pop div {
  text-align: center;
  margin: 0 !important;
}
.wirte-form-title-wrapper .autosave_close {
  cursor: pointer;
  width: 100%;
  height: 30px;
  background: none;
  font-size: 14px;
}

.mobile-last-btns {
  display: none;
  margin-left: -10px;
  margin-top: 30px;
}

.mobile-last-btns-inner {
  float: left;
  width: 50%;
  padding-left: 10px;
}

.mobile-go-article,
.mobile-go-list {
  display: inline-block;
  height: 35px;
  width: 100%;
  line-height: 35px;
  text-align: center;
  border-radius: 1px;
  font-size: 14px;
  padding: 0 20px;
  border: 1px solid #0a0a0a;
  font-size: 14px;
  position: relative;
}
.mobile-go-article i,
.mobile-go-list i {
  color: #0191d1;
  margin-right: 10px;
}

.cke_sc {
  position: relative;
  margin: 0 0 5px;
  text-align: right;
}

.btn_cke_sc {
  display: inline-block;
  width: 100%;
  padding: 0 10px;
  height: 30px;
  border: 1px solid #ebebeb;
  background: #f4f4f4;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  line-height: 1.35;
  vertical-align: middle;
  cursor: pointer;
}

.cke_sc_def {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 20px;
  padding-bottom: 30px;
  padding-top: 0;
  margin-top: -1px;
  border: 1px solid #ebebeb;
  border-top: none;
  background: #f4f4f4;
  text-align: center;
}

.cke_sc_def dl {
  font-size: 14px;
  text-align: left;
  zoom: 1;
  border-top: 1px solid #ebebeb;
}

.cke_sc_def dl:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.cke_sc_def dt,
.cke_sc_def dd {
  float: left;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
}

.cke_sc_def dt {
  width: 20%;
}

.cke_sc_def dd {
  width: 30%;
}

.cke_sc_def .btn_cke_sc_close {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.bbs-view-head {
  border-top: 1px solid #0b0b0b;
}
.bbs-view-head h1 {
  font-size: 25px;
  text-align: center;
  line-height: 1.45;
  padding: 20px;
}

.bbs-view-info {
  padding: 11.5px 20px;
  background: #f6f6f6;
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  text-align: center;
  font-size: 16px;
  line-height: 1.45;
}
.bbs-view-info dt {
  font-weight: 500;
  margin-right: 5px;
}
.bbs-view-info dd {
  color: #5f5f5f;
}
.bbs-view-info .bbs-view-info-item {
  display: inline;
  white-space: nowrap;
}
.bbs-view-info .bbs-view-info-item::after {
  content: " ";
  letter-spacing: 2em;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1px' height='12px' viewBox='0 0 1 12' style='enable-background:new 0 0 1 12;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%235f5f5f;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Crect class='st0' width='1' height='12'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.bbs-view-info .bbs-view-info-item dt,
.bbs-view-info .bbs-view-info-item dd {
  display: inline;
}

.bbs-view-body {
  padding: 50px 0;
}

.bbs-view-element + .bbs-view-element {
  margin-top: 50px;
}

.view-images {
  text-align: center;
}
.view-images .bbs-view-content + .bbs-view-content {
  margin-top: 30px;
}
.view-images img {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
}

.view-contents {
  line-height: 1.8;
}

.view-sign {
  text-align: right;
  font-weight: 100;
  color: #5f5f5f;
  line-height: 1.8;
  font-size: 14px;
}

.view-files .bbs-view-content,
.view-links .bbs-view-content,
.view-biz .bbs-view-content {
  position: relative;
  padding-left: 150px;
  line-height: 20px;
}

.view-files,
.view-links {
  margin-top: 50px;
  padding-top: 51px;
  border-top: 1px solid #eeeeee;
}

.view-confirm .view-confirm-container {
  text-align: center;
}
.view-confirm .do-cancel {
  display: none !important;
}
.view-confirm.confirmed .do-confirm {
  display: none !important;
}
.view-confirm.confirmed .do-cancel {
  display: inline-block !important;
}

.view-video {
  width: 100%;
  margin: 0 auto;
}
.view-video .bbs-view-content {
  position: relative;
  padding-top: 56.25%;
}
.view-video .bbs-view-content .view-video-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.view-video .bbs-view-content .view-video-content iframe {
  width: 100%;
  height: 100%;
}

.bbs-view-etc-label {
  position: absolute;
  top: 0;
  left: 0;
}

.bbs-view-label-style {
  font-size: 18px;
  font-weight: 500;
}

.bbs-view-etc-list li + li {
  margin-top: 10px;
}

.bbs-view-etc-item {
  position: relative;
  padding-right: 100px;
}
.bbs-view-etc-item a:hover {
  color: #0091a7;
}
.bbs-view-etc-item i {
  color: #0091a7;
  margin-right: 5px;
}

.bbs-view-etc-info {
  position: absolute;
  top: 0;
  right: 0;
}

.bbs-view-etc-fired-count {
  color: #5f5f5f;
  font-weight: 100;
}
.bbs-view-etc-fired-count strong {
  font-weight: 500;
  color: #0091a7;
}

.bbs-view-file-size {
  font-size: 14px;
  color: #5f5f5f;
  opacity: 0.8;
}

.bbs-view-foot {
  padding-top: 50px;
  border-top: 1px solid #c2c2c2;
}
.bbs-view-foot .bbs-view-others {
  float: left;
}
.bbs-view-foot .bbs-view-others .button-bbs-page {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #c2c2c2;
  text-align: center;
  line-height: 38px;
  color: #c2c2c2;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bbs-view-foot .bbs-view-others .button-bbs-page + .button-bbs-page {
  margin-left: 10px;
}
.bbs-view-foot .bbs-view-others .button-bbs-page:hover {
  color: #0091a7;
  border-color: #0091a7;
}
.bbs-view-foot .bbs-view-ineterface {
  float: right;
}
.bbs-view-foot .bbs-view-ineterface .go-list-wrapper {
  display: inline-block;
}
.bbs-view-foot .bbs-view-ineterface .button-bbs {
  float: left;
}
.bbs-view-foot .bbs-view-ineterface .button-bbs + .button-bbs {
  margin-left: 10px;
}
.bbs-view-foot .bbs-view-ineterface .button-bbs + .go-list-wrapper {
  margin-left: 10px;
}

.bbs-view-comments {
  margin-top: 50px;
  border-top: 1px solid #c2c2c2;
}

.comment-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}
.comment-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.comments-head .is-empty {
  border-bottom: 1px solid #eeeeee;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 50px 0;
  background: rgba(246, 246, 246, 0.3);
}
.comments-head .not-empty {
  position: relative;
  border-bottom: 1px solid #eeeeee;
  display: inline-block;
  width: 100%;
  padding: 50px 0;
}

.comment-top {
  position: relative;
  min-height: 60px;
}

.comment-bottom::after {
  content: "";
  display: table;
  clear: both;
}

.comment-image {
  position: absolute;
  top: 0;
  left: 0;
}

.comment-image-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.comment-image-inner::after {
  content: "";
  display: table;
  clear: both;
}
.comment-image-inner img {
  width: 100%;
  float: left;
}

.comment-info {
  line-height: 30px;
}
.comment-info::after {
  content: "";
  display: table;
  clear: both;
}

.comment-name {
  float: left;
}

.comment-more {
  float: right;
  font-size: 14px;
  color: #888;
}
.comment-more + .comment-more-date {
  margin-left: 30px;
}

.comments-body {
  padding-top: 30px;
  border-bottom: 1px solid #c2c2c2;
}

.comment-name {
  font-size: 18px;
  font-weight: 500;
}

.comment-content {
  font-size: 14px;
  padding: 20px 0;
  line-height: 1.7;
}
.comment-content i {
  color: #815BA6;
  margin-right: 5px;
}
.comment-content .s_cmt span {
  display: inline-block;
  border-radius: 8px;
  font-size: 14px;
  color: #0091a7;
}

.comment-reply-depth {
  display: none;
  color: #0191d1;
  font-weight: 500;
  margin-right: 5px;
}

.comment-btns::after {
  content: "";
  display: table;
  clear: both;
}

.list-comments-btns {
  display: inline-block;
  float: right;
}
.list-comments-btns li {
  float: left;
}
.list-comments-btns li + li {
  margin-left: 10px;
}
.list-comments-btns a {
  font-size: 14px;
}

.comment-submit {
  float: right;
}

.comment-form-row + .comment-form-row {
  margin-top: 10px;
}

.comment-form-row-inner {
  position: relative;
}

.comment-guest-only {
  margin-left: -10px;
  margin-top: -10px;
}

.comment-form-col {
  width: 50%;
  float: left;
  padding-top: 10px;
  padding-left: 10px;
}
.comment-form-col .comment-form-type-text {
  width: 100%;
}

.comment-captcha {
  float: left;
}
.comment-captcha::after {
  content: "";
  display: table;
  clear: both;
}

.btns-comment-submit {
  margin-left: 20px;
}

.comment-form-title {
  margin-bottom: 20px;
}

.comment-form-inner {
  margin-top: 30px;
}

.comment-more-ip {
  margin-right: 10px;
}

.comment-container .comment-form-inner {
  border-top: 1px solid #eeeeee;
  padding-top: 30px;
}

.not-empty-inner {
  position: relative;
}
.not-empty-inner strong {
  font-weight: 500;
  color: #0091a7;
}

.comment-collapse {
  position: absolute;
  top: 0;
  right: 0;
}

.comment-collapse-inner .comment-opened {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
}
.comment-collapse-inner .comment-opened,
.comment-collapse-inner .comment-closed {
  cursor: pointer;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #0091a7;
}
.comment-collapse-inner .comment-opened i,
.comment-collapse-inner .comment-closed i {
  margin-left: 10px;
}

.bbs-view-comments.hide .comments-body {
  display: none;
}
.bbs-view-comments.hide .comment-closed {
  opacity: 0;
  transform: translateY(-100%);
}
.bbs-view-comments.hide .comment-opened {
  opacity: 1;
  transform: translateY(-100%);
}

.view_image img {
  max-width: 100%;
}

@media all and (max-width: 1024px) {
  .comment-name {
    font-size: 16px;
  }
  .comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .comment-content {
    padding: 15px 0;
  }
  .comment-info {
    line-height: 20px;
  }
}
@media all and (max-width: 640px) {
  .comment-name {
    font-size: 14px;
  }
  .list-comments-btns a {
    font-size: 12px;
  }
  .comment-item:last-child {
    padding-bottom: 15px;
  }
}
.business-view::before {
  content: "";
  display: table;
  clear: both;
}

.business-view-head {
  margin-bottom: 20px;
}
.business-view-head span {
  font-size: 20px;
  color: #0091a7;
}
.business-view-head span + h3 {
  margin-left: 10px;
}
.business-view-head h3 {
  display: inline-block;
  font-size: 20px;
}

.no-poster .business-view-row .business-view-col {
  display: block;
}
.no-poster .business-view-row .business-view-col.info {
  width: 100%;
}

.business-view-body {
  border-top: 1px solid #0b0b0b;
  padding: 20px 0;
}

.business-view-row {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.business-view-row .bbs-view-body {
  padding: 0;
}
.business-view-row .business-view-col {
  display: table-cell;
  vertical-align: top;
}
.business-view-row .business-view-col.poster {
  width: 100%;
  padding-right: 40px;
}
.business-view-row .business-view-col.poster img {
  width: 100%;
}
.business-view-row .business-view-col.info {
  width: 665px;
}
.business-view-row .view-biz + .view-biz {
  margin-top: 20px;
  border-top: 1px solid #c2c2c2;
  padding-top: 21px;
}
.business-view-row .bbs-view-etc-label {
  line-height: 28px;
}
.business-view-row .content .bbs-view-etc-content {
  color: inherit;
}
.business-view-row .bbs-view-etc-content {
  line-height: 1.8;
  color: #5f5f5f;
}

.poster .business-inquiry {
  text-align: center;
  margin-bottom: 30px;
}

.business-inquiry {
  margin-top: 20px;
}

.bbs-type-bookmark .bbs-list-thumbnail .bbs-list-body {
  margin-left: -20px;
}
.bbs-type-bookmark .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
  padding-left: 20px;
  width: 20%;
}
.bbs-type-bookmark .bbs-thumbnail-banner {
  border-radius: 8px;
}
.bbs-type-bookmark .bbs-thumbnail-banner img {
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bbs-type-bookmark .bbs-thumbnail-item-inner > a:hover .bbs-thumbnail-banner img {
  transform: scale(1.1, 1.1);
}

.publication.confirm {
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
}
.publication.confirm .do-chagen-status {
  display: inline;
  border: none;
  background: transparent;
  vertical-align: middle;
  cursor: pointer;
}
.publication.confirm .do-confirm {
  color: red;
}
.publication.confirm .do-cancel {
  color: #0091a7;
  display: none !important;
}
.publication.confirm.confirmed .do-confirm {
  display: none !important;
}
.publication.confirm.confirmed .do-cancel {
  display: inline !important;
}

.bbs-type-grid .bbs-list-thumbnail .bbs-list-body {
  margin-left: -84px;
  padding-top: 40px;
}
.bbs-type-grid .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
  width: 25%;
  padding-left: 84px;
}
.bbs-type-grid .bbs-header {
  border-bottom: 1px solid #0b0b0b;
  padding-bottom: 40px;
}
.bbs-type-grid .bbs-foot-inner {
  position: relative;
}
.bbs-type-grid .bbs-foot {
  border-top: 1px solid #c2c2c2;
  padding-top: 40px;
}
.bbs-type-grid .bbs-thumbnail-admin {
  left: auto;
  right: 0;
  width: auto;
}
.bbs-type-grid .bbs-thumbnail-banner {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.bbs-type-grid .bbs-thumbnail-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1, 1.1);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bbs-type-grid .bbs-thumbnail-hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0091a7;
  text-align: center;
}
.bbs-type-grid .bbs-thumbnail-hover-content span {
  display: block;
  margin-top: 0.5em;
}
.bbs-type-grid .bbs-thumbnail-item-inner > a:hover .bbs-thumbnail-hover {
  transform: scale(1, 1);
  opacity: 1;
}

.bbs-grid-notice {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.bbs-grid-notice span {
  display: inline-block;
  border-radius: 8px;
  background: red;
  font-size: 12px;
  padding: 7px 10px;
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.08);
}

.view-pdf .bbs-view-content {
  position: relative;
  padding-top: 65%;
}
.view-pdf .bbs-view-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.bbs-view-head-publication {
  padding: 20px 0;
  border-top: 1px solid #0b0b0b;
  border-bottom: 1px solid #c2c2c2;
}
.bbs-view-head-publication .no-info .bbs-view-head-info {
  padding-bottom: 0;
}
.bbs-view-head-publication .bbs-view-head-info {
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
  padding-bottom: 90px;
}
.bbs-view-head-publication h1 {
  font-size: 25px;
  line-height: 1.45;
}
.bbs-view-head-publication .bbs-view-head-file {
  position: absolute;
  bottom: 0;
  left: 0;
}
.bbs-view-head-publication .bbs-view-head-file p {
  margin-bottom: 10px;
}
.bbs-view-head-publication .bbs-view-head-file-btns a {
  float: left;
  width: 120px;
}
.bbs-view-head-publication .bbs-view-head-file-btns a + a {
  margin-left: 10px;
}

.bbs-view-head-info-wrapper {
  display: flex;
  width: 100%;
}

.bbs-view-head-thumbnail {
  order: 1;
  padding-right: 40px;
}

.bbs-view-head-info {
  order: 2;
}

.bbs-view-browser {
  color: #0091a7;
  padding: 20px;
  border: 1px solid #c2c2c2;
  background: #f6f6f6;
  font-size: 14px;
  text-align: center;
  line-height: 1.45;
}

.sharing-section h3, .sharing-section h4 {
  font-size: 25px;
  font-weight: 500;
}
.sharing-section h3 + .carlendar-wrapper, .sharing-section h4 + .carlendar-wrapper {
  margin-top: 40px;
}
.sharing-section strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
}
.sharing-section p {
  margin-top: 20px;
}
.sharing-section ul {
  font-size: 16px;
  color: #5f5f5f;
  margin-top: 10px;
}
.sharing-section ul li {
  position: relative;
  padding-left: 0.8em;
  line-height: 1.8;
}
.sharing-section ul li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}
.sharing-section + .sharing-section {
  margin-top: 65px;
}
.sharing-section ul.list-rect {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -70px;
  margin-left: -70px;
  margin-top: 40px;
}
.sharing-section ul.list-rect li {
  width: 20%;
  float: left;
  padding-left: 70px;
  padding-bottom: 70px;
}
.sharing-section ul.list-rect li::before {
  display: none;
}
.sharing-section ul.list-rect li + li .sharing-box {
  position: relative;
}
.sharing-section ul.list-rect li + li .sharing-box::before {
  content: "\e90a";
  color: #0b0b0b;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: -45px;
  transform: translateY(-50%);
  display: block;
  font-family: "and" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sharing-section ul.list-rect .sharing-box {
  display: flex;
  align-items: center;
  padding: 70px 20px;
  border: 1px solid #c2c2c2;
  text-align: center;
  justify-content: center;
  height: 100%;
  color: #0091a7;
  border-radius: 8px;
}
.sharing-section ul.list-rect .sharing-box.green {
  background: #0091a7;
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.sharing-section.pr {
  position: relative;
}
.sharing-section.pr .pr-image {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.sharing-section.pr .pr-image img {
  width: 100%;
}
.sharing-section.pr > img {
  width: 100%;
}
.sharing-section.pr .sharing-section-column.img {
  position: absolute;
  top: 0;
  right: 0;
  width: 478px;
  padding-top: 20.6%;
  overflow: hidden;
}
.sharing-section.pr .sharing-section-column.img img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.sharing-btns {
  text-align: center;
}
.sharing-btns .button-rounded {
  max-width: 320px;
  width: 100%;
}

.sharing-agree {
  padding: 20px;
  line-height: 1.8;
  border: 1px solid #c2c2c2;
  margin-top: 20px;
}
.sharing-agree ol > li + li {
  margin-top: 10px;
}
.sharing-agree h5 {
  font-size: 18px;
}
.sharing-agree p, .sharing-agree ul {
  color: #5f5f5f;
  margin-top: 0;
}

.sharing-action {
  position: relative;
  margin-top: 20px;
}

.sharing-action-item {
  float: left;
}
.sharing-action-item + .sharing-action-item {
  margin-left: 40px;
}

.sharing-agree-wrapper {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #c2c2c2;
}

.sharing-checkbox-wrapper {
  line-height: 40px;
}

.sharing-checkbox-item {
  float: left;
}
.sharing-checkbox-item + .sharing-checkbox-item {
  margin-left: 20px;
}

.sharing-view {
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
}

.sharing-view-item {
  position: relative;
  padding-left: 250px;
}
.sharing-view-item::after {
  content: "";
  display: table;
  clear: both;
}
.sharing-view-item + .sharing-view-item {
  margin-top: 10px;
  border-top: 1px solid #eeeeee;
}

.sharing-view-label,
.sharing-view-content {
  padding-top: 10px;
}

.sharing-view-label {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
}

.sharing-view-content select {
  height: 30px;
  border-radius: 0;
  border: 1px solid #c2c2c2;
  padding: 0 10px;
  font-size: 16px;
}
.sharing-view-content .complete {
  color: #0091a7;
}
.sharing-view-content .cancel {
  color: #f29500;
}
.sharing-view-content .request {
  color: red;
}
.sharing-view-content span {
  display: none;
}
.sharing-view-content span.normal {
  display: block;
}
.sharing-view-content.complete span.complete {
  display: block;
}
.sharing-view-content.complete span.normal {
  display: none;
}
.sharing-view-content.cancel span.cancel {
  display: block;
}
.sharing-view-content.cancel span.normal {
  display: none;
}
.sharing-view-content.request span.request {
  display: block;
}
.sharing-view-content.request span.normal {
  display: none;
}

.bbs-sharing.subpage-bbs-view .bbs-view-info {
  text-align: left;
}

.sharing-images {
  margin-left: -20px;
  margin-bottom: -20px;
  margin-top: 30px;
}

.half .sharing-image-item {
  width: 50%;
}

.sharing-image-item {
  float: left;
  padding-left: 20px;
  padding-bottom: 20px;
}
.sharing-image-item img {
  width: 100%;
}

.sharing-agree {
  padding: 30px;
}

.agree-section h5 {
  font-weight: 500;
  margin-bottom: 20px;
}
.agree-section table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 1px solid #0b0b0b;
  font-size: 14px;
}
.agree-section tbody tr:first-child th, .agree-section tbody tr:first-child td {
  border-top: 1px solid #0b0b0b;
}
.agree-section th {
  width: 300px;
  font-weight: 500;
}
.agree-section th, .agree-section td {
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #c2c2c2;
  text-align: left;
}
.agree-section + .agree-section {
  margin-top: 30px;
}

.agree-raw {
  text-align: center;
  font-weight: 500;
  margin-top: 30px;
}

.sharing-action {
  float: right;
}

#captcha #captcha_key {
  border-radius: 0 !important;
  border-color: #e8e8e8 !important;
}
#captcha #captcha_key:focus {
  border-color: #0091a7 !important;
}

.calendar_date {
  text-align: center;
  margin-bottom: 30px;
}

table.calendar {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #c2c2c2;
}

td.calendar-day {
  min-height: 80px;
  font-size: 11px;
  position: relative;
}

td.calendar-day-ne {
  background: #fff;
  position: relative;
}
td.calendar-day-ne::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
}

td.calendar-day-head {
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  border: none;
}

a.day-number {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 30px;
  line-height: 30px;
  width: 100%;
  text-align: right;
  padding: 0 10px;
  z-index: 1;
}

.day-badge {
  position: absolute;
  top: 6px;
  left: 10px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 3px;
  padding: 3px 5px;
  background: #0091a7;
  color: #fff;
  line-height: 1;
}

/* shared */
td.calendar-day {
  position: relative;
  padding: 30px 10px 20px 10px;
  font-size: 14px;
  text-align: center;
  height: 120px;
  border: 1px solid #c2c2c2;
  vertical-align: top;
}
td.calendar-day p {
  position: relative;
  word-break: break-all;
  line-height: 1.45;
  text-align: left;
  display: block;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
td.calendar-day p.type-a {
  background: #f39800;
  border: 1px solid rgb(217.5, 136.049382716, 0);
}
td.calendar-day p.type-b {
  background: #4EC2C1;
  border: 1px solid rgb(63.1785714286, 183.3214285714, 182.2857142857);
}
td.calendar-day p:hover {
  border-color: #0091a7;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
td.calendar-day p > span {
  position: relative;
  display: block;
}
td.calendar-day p > span .time-range {
  font-family: "Montserrat", "Noto Sans KR", sans-serif;
  font-size: 14px;
  margin-right: 3px;
  font-weight: 500;
}
td.calendar-day p > span a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 2px 10px;
}
td.calendar-day p + p {
  margin-top: 5px;
}

.calendar-row .calendar-day:first-child {
  background: #f6f6f6;
}
.calendar-row .calendar-day:last-child {
  background: #f6f6f6;
}

.saturday {
  background: #f6f6f6;
}
.saturday .day-number {
  color: #0091a7;
}

.sunday {
  background: #f6f6f6;
}
.sunday .day-number {
  color: #ff0101;
}

.cld-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 30px;
  color: #0091a7;
}

.cld-head {
  margin-bottom: 30px;
}
.cld-head::after {
  content: "";
  display: table;
  clear: both;
}

.cld-foot {
  margin-top: 30px;
}
.cld-foot::after {
  content: "";
  display: table;
  clear: both;
}

.cld-ui-move {
  float: left;
}

.carlendar-select {
  float: left;
  height: 40px;
  width: 100px;
  border-radius: 0;
  border: 1px solid #c2c2c2;
  font-size: 18px;
  font-weight: 500;
  margin-right: 10px;
  padding: 0 10px;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.carlendar-select:hover {
  border-color: #00a4d9;
}

.carlendar-move {
  float: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
  padding: 0 20px;
  border: 1px solid #c2c2c2;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.carlendar-move:hover {
  background: #0091a7;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}
.carlendar-move:hover i {
  color: #fff;
}
.carlendar-move + .carlendar-move {
  margin-left: 10px;
}

.cld-ui-default {
  float: right;
}

.carlendar-move {
  position: relative;
}
.carlendar-move i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: color 0.2s ease;
}

.move-prev,
.move-search,
.move-current {
  padding-left: 35px;
}
.move-prev i,
.move-search i,
.move-current i {
  color: #c2c2c2;
  left: 15px;
}

.move-next {
  padding-right: 35px;
}
.move-next i {
  color: #c2c2c2;
  right: 15px;
}

.fill-day {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.schedule-item {
  position: relative;
  padding-right: 40px;
}
.schedule-item h3 {
  font-size: 18px;
  font-weight: 500;
}

.schedule-content {
  line-height: 1.8;
  font-size: 16px;
}

.admin-modify {
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1.7;
  color: #0091a7;
}

.carlendar-wrapper .register-item .schedule-item {
  position: relative;
  background: #f6f6f6;
  padding: 20px;
}
.carlendar-wrapper .register-item + .register-item {
  margin-top: 20px;
}

.carlendar-subject {
  display: block;
}

#calendar {
  margin-top: 40px;
}

@media all and (max-width: 800px) {
  .carlendar-select {
    font-size: 16px;
    padding: 0 20px;
    -moz-text-align-last: right;
         text-align-last: right;
    direction: rtl;
  }
  .carlendar-move {
    font-size: 16px;
    padding: 0 10px;
    text-align: center;
  }
  .move-prev,
  .move-search,
  .move-current {
    padding-left: 25px;
  }
  .move-next {
    padding-right: 25px;
  }
  .move-prev i,
  .move-search i,
  .move-current i {
    left: 10px;
  }
  .move-next i {
    right: 10px;
  }
  td.calendar-day-head {
    padding: 10px;
  }
  a.day-number {
    height: 20px;
    line-height: 20px;
  }
  .day-badge {
    top: 3px;
    padding: 1px 5px;
  }
  td.calendar-day {
    padding: 20px 10px 10px 10px;
    height: 80px;
  }
  td.calendar-day p {
    position: relative;
    font-size: 12px;
    line-height: 1.35;
    z-index: 1;
  }
  td.calendar-day p::before {
    top: 6.5px;
  }
  .schedule-empty {
    font-size: 16px;
  }
  .schedule-item h3.size-20 {
    font-size: 18px;
  }
}
@media all and (max-width: 640px) {
  td.calendar-day-head {
    font-size: 16px;
  }
  .cld-ui-move {
    width: 100%;
    margin-bottom: 2%;
  }
  .cld-ui-move #selectYear,
  .cld-ui-move #selectButton {
    width: 33%;
  }
  .cld-ui-move #selectYear,
  .cld-ui-move #selectMonth {
    margin-right: 2%;
  }
  .cld-ui-move #selectMonth {
    width: 30%;
  }
  .calendar-details .cld-ui-default .move-current {
    width: 100%;
  }
  .cld-ui-default {
    width: 100%;
  }
  .cld-ui-default .carlendar-move + .carlendar-move {
    margin-left: 0;
  }
  .cld-ui-default .move-prev,
  .cld-ui-default .move-next {
    width: 33%;
  }
  .cld-ui-default .move-prev,
  .cld-ui-default .move-current {
    margin-right: 2%;
  }
  .cld-ui-default .move-current {
    width: 30%;
  }
  a.day-number {
    height: 100%;
  }
  .day-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 5px;
  }
  td.calendar-day {
    height: 50px;
    padding: 0;
  }
  td.calendar-day p {
    display: none;
  }
  .carlendar-move {
    font-size: 14px;
  }
  .schedule-day .cld-ui-default .move-current {
    width: 33%;
    float: right;
    margin: 0;
  }
}
.docs-article {
  line-height: 1.8;
  color: #363636;
}
.docs-article strong {
  font-weight: 500;
  color: #f29500;
}
.docs-article ol, .docs-article ul {
  padding-left: 1em;
}
.docs-article table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 1px solid #0b0b0b;
  font-size: 14px;
}
.docs-article tbody tr:first-child th, .docs-article tbody tr:first-child td {
  border-top: 1px solid #0b0b0b;
}
.docs-article th {
  width: 300px;
  font-weight: 500;
}
.docs-article th, .docs-article td {
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #c2c2c2;
  text-align: left;
}
.docs-article .no-left {
  padding: 0 !important;
}
.docs-article ul + h4 {
  margin-top: 2em;
}
.docs-article h4 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  color: #0b0b0b;
}
.docs-article h5 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 2em;
  color: #0b0b0b;
}
.docs-article h5 + p {
  margin-top: 0.5em;
}
.docs-article p.p-big {
  font-size: 17px;
}
.docs-article p + p {
  margin-top: 0.5em;
}
.docs-article ul {
  margin-top: 2em;
}
.docs-article ul li + li {
  margin-top: 0.5em;
}
.docs-article ul ol, .docs-article ul ul {
  margin-top: 0.5em;
}
.docs-article ol {
  margin-top: 2em;
}
.docs-article ol ol, .docs-article ol ul {
  margin-top: 0.5em;
}
.docs-article table {
  margin-top: 2em;
}
.docs-article .ul-dash > li {
  position: relative;
  padding-left: 1em;
}
.docs-article .ul-dash > li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.docs-article .ol-number {
  list-style-type: decimal;
  padding-left: 1em;
}
.docs-article .ul-dot {
  list-style-type: disc;
  padding-left: 1em;
}
.docs-article .ol-circle > li {
  position: relative;
  padding-left: 1.2em;
}
.docs-article .ol-circle > li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.docs-article .ol-circle > li:nth-child(1)::before {
  content: "①";
}
.docs-article .ol-circle > li:nth-child(2)::before {
  content: "②";
}
.docs-article .ol-circle > li:nth-child(3)::before {
  content: "③";
}
.docs-article .ol-circle > li:nth-child(4)::before {
  content: "④";
}
.docs-article .ol-circle > li:nth-child(5)::before {
  content: "⑤";
}
.docs-article .ol-circle > li:nth-child(6)::before {
  content: "⑥";
}
.docs-article .ol-circle > li:nth-child(7)::before {
  content: "⑦";
}
.docs-article .ol-circle > li:nth-child(8)::before {
  content: "⑧";
}
.docs-article .ol-circle > li:nth-child(9)::before {
  content: "⑨";
}
.docs-article .ol-circle > li:nth-child(10)::before {
  content: "⑩";
}
.docs-article .ol-korean > li {
  position: relative;
  padding-left: 1.4em;
}
.docs-article .ol-korean > li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.docs-article .ol-korean > li:nth-child(1)::before {
  content: "가)";
}
.docs-article .ol-korean > li:nth-child(2)::before {
  content: "나)";
}
.docs-article .ol-korean > li:nth-child(3)::before {
  content: "다)";
}
.docs-article .ol-korean > li:nth-child(4)::before {
  content: "라)";
}
.docs-article .ol-korean > li:nth-child(5)::before {
  content: "마)";
}
.docs-article .ol-korean > li:nth-child(6)::before {
  content: "바)";
}
.docs-article .ol-korean > li:nth-child(7)::before {
  content: "사)";
}
.docs-article .ol-korean > li:nth-child(8)::before {
  content: "아)";
}
.docs-article .ol-korean > li:nth-child(9)::before {
  content: "자)";
}
.docs-article .ol-korean > li:nth-child(10)::before {
  content: "차)";
}
.docs-article > ul > li + li {
  margin-top: 3em;
}

@media all and (max-width: 640px) {
  .summary {
    font-size: 16px;
  }
}
@media all and (max-width: 800px) {
  .bookmark-title {
    font-size: 14px;
  }
}
@media all and (max-width: 1024px) {
  .recent-list {
    min-height: auto;
  }
}
@media all and (max-width: 800px) {
  .section-header h2 {
    font-size: 20px;
  }
}
@media all and (max-width: 640px) {
  .recent-category {
    font-size: 14px;
  }
  .recent-title {
    font-size: 15px;
  }
  .main-platform-rect-inner {
    font-size: 14px;
  }
}
@media all and (max-width: 800px) {
  .form-title {
    font-size: 17px;
  }
}
@media all and (max-width: 640px) {
  .form-hint {
    font-size: 12px;
  }
  #captcha #captcha_info {
    font-size: 12px !important;
  }
  .register #fregister h2 {
    font-size: 18px;
  }
  #sns_login .sns-wrap a .txt {
    font-size: 12px;
  }
  .register-policy .register-table table thead th {
    font-size: 14px;
  }
  .register-policy .register-table table td {
    font-size: 12px;
  }
  .register-item-head {
    font-size: 18px;
  }
}
@media all and (max-width: 640px) {
  .subpage-title {
    font-size: 25px;
  }
}
@media all and (max-width: 512px) {
  .subpage-title {
    font-size: 22px;
  }
}
@media all and (max-width: 640px) {
  .center-vision-icon strong {
    font-size: 22px;
  }
  .section-default h3 {
    font-size: 22px;
  }
  .center-vision-col.content p,
  .grid-row .grid-col .grid-inner strong,
  .div-table-col.title {
    font-size: 16px;
  }
  .parent-description strong {
    font-size: 16px;
  }
}
@media all and (max-width: 640px) {
  .ci-text {
    font-size: 14px;
  }
}
@media all and (max-width: 640px) {
  .div-table.contact .div-table-row {
    padding: 20px 0;
  }
}
@media all and (max-width: 1280px) {
  .platform-manager-body p {
    font-size: 16px;
  }
}
@media all and (max-width: 1024px) {
  .platform-head-text {
    font-size: 35px;
    white-space: nowrap;
  }
  .platform-summary {
    font-size: 25px;
  }
  .platform-item-text {
    font-size: 22px;
  }
}
@media all and (max-width: 800px) {
  .platform-head-text {
    font-size: 30px;
  }
  .platform-item-text {
    font-size: 18px;
  }
}
@media all and (max-width: 640px) {
  .platform-head-text {
    font-size: 25px;
  }
  .platform-summary {
    font-size: 18px;
  }
  .platform-small {
    font-size: 16px;
  }
  .platform-item-icon {
    margin-bottom: 10px;
  }
  .platform-item-text {
    font-size: 16px;
  }
  .agree-section h5 {
    font-size: 16px;
  }
  .agree-section table {
    font-size: 12px;
  }
}
@media all and (max-width: 512px) {
  .platform-head-text {
    font-size: 20px;
  }
  .manager-head-content {
    font-size: 16px;
  }
  .platform-manager-body p {
    font-size: 14px;
  }
  .mb-remove {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .sharing-section ul.list-rect .sharing-box {
    font-size: 15px;
  }
}
@media all and (max-width: 800px) {
  .carlendar-subject,
  td.calendar-day p > span .time-range {
    font-size: 12px;
  }
}
@media all and (max-width: 640px) {
  .platform-summary2 {
    font-size: 16px;
  }
  .sharing-section h3,
  .sharing-section h4 {
    font-size: 22px;
  }
  .sharing-section strong {
    font-size: 18px;
  }
  .sharing-section ul.list-rect .sharing-box {
    font-size: 14px;
  }
}
@media all and (max-width: 640px) {
  .sharing-view-label {
    font-size: 16px;
  }
  .sharing-view-content {
    font-size: 14px;
  }
}
@media all and (max-width: 640px) {
  .category-list li a {
    font-size: 14px;
  }
  .subpage-bbs .td.title {
    font-size: inherit;
  }
  .bbs-view-head h1 {
    font-size: 22px;
  }
  .bbs-view-info {
    font-size: 14px;
  }
  .write-form-label {
    font-size: 16px;
  }
  .write-form-guide {
    font-size: 12px;
  }
}
@media all and (max-width: 512px) {
  .category-list li a {
    font-size: 12px;
  }
}
@media all and (max-width: 480px) {
  .subpage-bbs .th {
    font-size: 12px;
  }
  .subpage-bbs .td {
    font-size: 12px !important;
  }
  .subpage-bbs .td.title {
    font-size: 13px !important;
  }
}
@media all and (max-width: 640px) {
  .bbs-type-bookmark .bbs-thumbnail-admin a {
    font-size: 12px;
  }
}
@media all and (max-width: 1280px) {
  .section-col h3 {
    font-size: 22px;
  }
}
@media all and (max-width: 640px) {
  .section-col h3 {
    font-size: 18px;
  }
  .table-list .th,
  .table-list .td {
    font-size: 14px;
  }
}
@media all and (max-width: 640px) {
  .business-view-head span,
  .business-view-head span + h3 {
    font-size: 18px;
  }
  .bbs-view-label-style {
    font-size: 16px;
  }
}
@media all and (max-width: 1024px) {
  .section-default h3 {
    font-size: 22px;
  }
  .docs-article p.p-big {
    font-size: 16px;
  }
}
@media all and (max-width: 640px) {
  .section-default h3 {
    font-size: 18px;
  }
  .docs-article p.p-big {
    font-size: 14px;
  }
  .docs-article table {
    font-size: 12px;
  }
  .docs-article h4 {
    font-size: 16px;
  }
  .docs-article h5 {
    font-size: 15px;
  }
}
@media all and (max-width: 640px) {
  .wrap-login p {
    font-size: 12px;
  }
  .wrap-login p strong {
    font-size: 14px;
  }
  .search-result-summary {
    font-size: 12px;
  }
}
@media all and (max-width: 640px) {
  .member-social-register .sns_tbl caption {
    font-size: 16px;
  }
  .member_connect2 .strong {
    font-size: 14px;
  }
}
@media all and (min-width: 1025px) {
  .mb-only {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .fixed .main {
    pointer-events: none;
  }
  .pc-only {
    display: none;
  }
  body {
    font-size: 14px;
  }
  body input[type=text],
  body input[type=password],
  body input[type=email],
  body input[type=tel],
  body input[type=number],
  body textarea {
    font-size: 16px;
    -webkit-appearance: none;
    border-radius: 0;
  }
  body select {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 98% 50%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0;
  }
}
@media all and (max-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}
@media all and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .wrap {
    padding-top: 80px;
  }
}
@media all and (max-width: 800px) {
  .container {
    padding: 0 20px;
  }
}
@media all and (max-width: 640px) {
  .button-rounded {
    line-height: 32px;
  }
}
.header-mb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1097;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px, rgba(0, 0, 0, 0.05) 0px 1px 4px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
}

.header-mb-inner {
  height: 80px;
  padding: 0 80px;
}
.header-mb-inner h1 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0, -50%);
}
.header-mb-inner h1 img {
  height: 45px;
}

.btn-hamburg {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 1100;
}
.btn-hamburg:hover .hamburger .opener .bar {
  background: #0091a7;
}
.btn-hamburg .hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 23px;
  height: 18.4px;
  backface-visibility: hidden;
}
.btn-hamburg .hamburger .opener .bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0b0b0b;
  backface-visibility: hidden;
}
.btn-hamburg .hamburger .opener .bar.top {
  top: 0;
}
.btn-hamburg .hamburger .opener .bar.mid {
  top: 50%;
  transform: translateY(-50%);
}
.btn-hamburg .hamburger .opener .bar.bot {
  bottom: 0;
}
.btn-hamburg .hamburger .closer .bar {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
}
.btn-hamburg .hamburger .closer .bar.left {
  transform: translateY(-50%) rotate(-45deg);
}
.btn-hamburg .hamburger .closer .bar.right {
  transform: translateY(-50%) rotate(45deg);
}
.btn-hamburg .hamburger .closer .bar .bar-inner {
  display: block;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  backface-visibility: hidden;
}

.hamburger .opener .bar {
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hamburger .opener .bar.top {
  transition-delay: 0.2s;
}
.hamburger .opener .bar.mid {
  transition-delay: 0.25s;
}
.hamburger .opener .bar.bot {
  transition-delay: 0.3s;
}

.hamburger .closer .bar .bar-inner {
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hamburger .closer .bar.left .bar-inner {
  transition-delay: 0;
  opacity: 0;
  transform: translateX(10px);
}
.hamburger .closer .bar.right .bar-inner {
  transition-delay: 0.05s;
  opacity: 0;
  transform: translateX(-10px);
}

.navi-opened .hamburger .opener .bar.top {
  transform: translateX(-10px);
  opacity: 0;
  transition-delay: 0;
}
.navi-opened .hamburger .opener .bar.mid {
  transform: translateX(5px) translateY(-50%);
  opacity: 0;
  transition-delay: 0.05s;
}
.navi-opened .hamburger .opener .bar.bot {
  transform: translateX(-5px);
  opacity: 0;
  transition-delay: 0.1s;
}
.navi-opened .hamburger .closer .bar.left .bar-inner {
  transform: none;
  opacity: 1;
  transition-delay: 0.2s;
}
.navi-opened .hamburger .closer .bar.right .bar-inner {
  transform: none;
  opacity: 1;
  transition-delay: 0.25s;
}

.canvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 320px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 8px 0px, rgba(0, 0, 0, 0.05) 0px 1px 8px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
  z-index: 1099;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.navi-opened .canvas {
  transform: none;
}

.canvas-head {
  position: relative;
  z-index: 1;
}

.canvas-logo {
  padding-right: 50px;
  height: 80px;
}

.canvas-logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  text-align: right;
}
.canvas-logo-inner a {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.canvas-logo-inner img {
  height: 50px;
  width: auto;
}

.canvas-area {
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  padding: 10px 15px 20px 15px;
  background: #f6f6f6;
}

.canvas-guest {
  position: relative;
  padding: 10px 0 15px 0;
}

.canvas-member {
  padding: 10px 0;
}
.canvas-member.canvas-member-admin .canvas-member-inner span {
  width: 33.333333%;
}

.canvas-member-inner {
  margin-left: -5px;
}

.canvas-member-inner a {
  display: inline-block;
  width: 100%;
}
.canvas-member-inner span {
  float: left;
  width: 33.333333%;
}

.btn-canvas-login {
  line-height: 36px;
  font-size: 14px;
  color: #0b0b0b;
  padding: 10px 0;
}
.btn-canvas-login i {
  color: #0091a7;
  margin-right: 5px;
}

.btn-canvas-guest {
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-block;
  padding: 10px 10px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  text-align: center;
  background: #0091a7;
  color: white;
}

.btn-canvas-member {
  padding-left: 5px;
}
.btn-canvas-member a {
  display: inline-block;
  padding: 10px 10px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  text-align: center;
}
.btn-canvas-member.blue a {
  background: #0091a7;
  color: white;
}
.btn-canvas-member.white a {
  background: white;
  border-color: #c2c2c2;
}
.btn-canvas-member.ornage a {
  background: #f29500;
  color: white;
}

.canvas-search-area .header-search {
  float: none;
  width: 100%;
  padding-right: 40px;
}
.canvas-search-area .header-search input {
  height: 40px;
}
.canvas-search-area .header-search button {
  width: 40px;
  height: 40px;
}

.canvas-body {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 217px;
  width: 100%;
  height: 100%;
  line-height: 1.45;
}

.gnb-mb {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.gnb-mb .depth1-li {
  border-bottom: 1px solid #c2c2c2;
  padding: 0;
}
.gnb-mb .depth1-li.current .depth1-li-a {
  color: #0091a7;
}
.gnb-mb .depth1-li.current .depth1-li-a .depth1-li-a-content::before {
  opacity: 1;
}
.gnb-mb .depth1-li.actived {
  border-color: rgb(0, 122.8592814371, 141.5);
}
.gnb-mb .depth1-li.actived .collapse-arrow {
  transform: translateY(100%);
}
.gnb-mb .depth1-li.actived .collapse-arrow .arrow-up {
  opacity: 1;
}
.gnb-mb .depth1-li.actived .collapse-arrow .arrow-down {
  opacity: 0;
}
.gnb-mb .depth1-li.actived .depth2 {
  border-color: rgb(0, 122.8592814371, 141.5);
}
.gnb-mb .depth1-li-a {
  position: relative;
  display: block;
  font-size: 18px;
  padding: 14px 30px;
}
.gnb-mb .depth1-li-a .depth1-li-a-content {
  position: relative;
}
.gnb-mb .depth1-li-a .depth1-li-a-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #0091a7;
  opacity: 0;
}
.gnb-mb .depth1-li-a-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.gnb-mb .collapse-arrow {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 14px;
  line-height: 26px;
  color: #727272;
  transition: transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gnb-mb .arrow-up {
  position: absolute;
  bottom: 100%;
  right: 0;
  opacity: 0;
  color: #0091a7;
}
.gnb-mb .arrow-down {
  opacity: 1;
}
.gnb-mb .depth2-wrapper {
  height: 0;
  transition: height 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
}
.gnb-mb .arrow-wrapper {
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gnb-mb .depth2 {
  border-top: 1px solid #c2c2c2;
  background: #0091a7;
  padding: 20px 35px;
}
.gnb-mb .depth2-li {
  position: relative;
  padding-left: 10px;
  color: #def1f3;
}
.gnb-mb .depth2-li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #80cfcb;
  opacity: 0;
}
.gnb-mb .depth2-li.current::before {
  opacity: 1;
}
.gnb-mb .depth2-li.current .depth2-li-a {
  color: white;
}
.gnb-mb .depth2-li + li {
  margin-top: 5px;
}
.gnb-mb .depth2-li-a {
  display: block;
  font-size: 16px;
}

.offcanvas-closer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1098;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.navi-opened .offcanvas-closer {
  opacity: 1;
  pointer-events: auto;
}

@media all and (max-width: 1280px) {
  .header .header-bracker {
    padding-left: 0;
    padding-top: 40px;
  }
  .header .header-bottom .header-bracker {
    padding-top: 0;
  }
  .header .logo {
    top: 25px;
    transform: none;
  }
  .header-row + .header-row {
    margin-top: 30px;
  }
  .header-search {
    width: 250px;
  }
}
@media all and (max-width: 640px) {
  .header-mb-inner h1 {
    left: 20px;
  }
  .header-mb-inner h1 img {
    height: 40px;
  }
}
@media all and (max-width: 1024px) {
  .footer {
    padding: 30px 0;
  }
  .footer-row {
    margin: 0;
  }
  .footer-col {
    width: 100%;
    padding-left: 0;
  }
  .footer-col + .footer-col {
    margin-top: 40px;
  }
}
@media all and (max-width: 640px) {
  .footer {
    padding: 20px 0;
  }
  .footer-logo img {
    max-width: 200px;
  }
  .footer-content {
    font-size: 14px;
  }
  .social-link {
    position: static;
    display: block;
    width: 190px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .social-link ul::after {
    content: "";
    display: table;
    clear: both;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-contact span span {
    white-space: nowrap;
  }
  .footer-col + .footer-col {
    margin-top: 30px;
  }
  .footer-link {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  .footer .container {
    padding: 0 10px;
  }
}
.bookmark {
  padding: 40px 0;
}

@media all and (max-width: 1024px) {
  .bookmark {
    padding: 30px 0;
  }
}
@media all and (max-width: 800px) {
  .bookmark-banner {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 640px) {
  .bookmark {
    padding: 20px 0;
  }
}
@media all and (max-width: 1024px) {
  .breadcrumbs {
    padding: 10px 0;
  }
  .breadcrumbs li {
    font-size: 12px;
  }
  .sub-more > a {
    pointer-events: none;
  }
}
@media all and (max-width: 640px) {
  .breadcrumbs li.sub {
    padding-left: 0px;
    margin-left: 10px;
  }
  .breadcrumbs li.sub.sub-more .bc-a {
    padding-right: 15px;
  }
  .breadcrumbs li .icon-more {
    right: 0;
  }
}
.main-platform-horizontal {
  display: none;
}
.main-platform-horizontal img {
  max-width: 306px;
  width: 100%;
}

@media all and (max-width: 1280px) {
  .section-main-platform {
    margin-top: 28px;
  }
  .main-platform-horizontal {
    display: block;
  }
  .main-platform-vertical {
    display: none;
  }
  .main-platform-row {
    flex-wrap: wrap;
    margin-left: -20px;
  }
  .main-platform-col.col1 {
    width: 100%;
    padding-left: 20px;
    padding-bottom: 20px;
  }
  .main-platform-col.col2, .main-platform-col.col3 {
    width: 50%;
  }
}
@media all and (max-width: 1024px) {
  .main-piece.top {
    padding-top: 0;
  }
  .main-piece.top .container {
    padding: 0;
  }
  .main-piece.top .swiper-container {
    border-radius: 0;
  }
  .main-row {
    padding: 0;
  }
  .main-col.col2 {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 57.813%;
  }
  .section-video {
    padding-top: 0;
    margin-top: 40px;
  }
  .main-box .main-col.col1 {
    margin-bottom: 40px;
  }
  .main-box .main-col.col2 {
    background: transparent;
  }
  .sns-wrapper {
    width: 495px;
    margin: 0 auto;
    position: relative;
  }
  .main-box .main-col.col2 {
    padding-top: 400px;
  }
}
@media all and (max-width: 800px) {
  .main-piece.bottom {
    padding-bottom: 40px;
  }
  .recent-status.button-rounded {
    line-height: 18px;
    border-radius: 5px;
    width: 80px;
    font-size: 12px;
  }
  .section-recents.type1 .recent-content {
    line-height: 22px;
    height: 22px;
  }
  .recent-content.type2 {
    line-height: 22px;
  }
}
@media all and (max-width: 640px) {
  .section-recents.type2 .recent-content {
    width: 100%;
    height: auto;
    padding-right: 0;
    line-height: 22px;
  }
  .section-recents.type2 .recent-content .recent-left {
    margin-bottom: 0.5em;
  }
  .recent-status.button-rounded {
    float: left;
    width: 90px;
    margin: 0;
  }
  .section-recents.type2 .recnet-right {
    position: static;
  }
  .recent-date {
    float: right;
  }
  .main-platform-row {
    margin-left: -10px;
  }
  .main-platform-col.col1 {
    padding-left: 10px;
    padding-bottom: 10px;
  }
  .main-platform-col.col2,
  .main-platform-col.col3 {
    margin-top: 20px;
    width: 100%;
    padding-left: 10px;
  }
  .main-platform-horizontal {
    margin: 0 auto;
  }
  .main-platform-rect a {
    padding: 15px;
  }
  .main-platform-rect-inner h3 {
    margin-bottom: 1em;
  }
  .main-platform-rect-inner p {
    margin-bottom: 1em;
  }
  .main-platform-rect-inner {
    padding-bottom: 65px;
  }
  .register-policy .register-table table th,
  .register-policy .register-table table td {
    padding: 10px 5px;
  }
}
@media all and (max-width: 512px) {
  .main-piece.top {
    padding-bottom: 20px;
  }
  .main-piece.bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-box .main-col.col1 {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 640px) {
  .fb-page,
  .fb-page span,
  .fb-page span iframe[style] {
    width: 100% !important;
  }
}
@media all and (max-width: 800px) {
  .subpage-container {
    padding-bottom: 50px;
  }
  .subpage-cover {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 640px) {
  .subpage-container {
    padding-bottom: 40px;
  }
  .subpage-cover {
    margin-bottom: 40px;
  }
  .breadcrumbs {
    padding-bottom: 0;
  }
  .subpage-cover .container-inner .breadcrumbs {
    right: auto;
    left: 0;
  }
  .subpage-title {
    width: 100%;
    text-align: center;
  }
  .subpage-cover .container-inner {
    padding: 73px 0 50px 0;
  }
}
@media all and (max-width: 512px) {
  .subpage-cover .container-inner {
    padding: 63px 0 40px 0;
  }
}
@media all and (max-width: 480px) {
  .subpage-cover .container {
    padding: 0 10px;
  }
}
@media all and (max-width: 1024px) {
  #captcha.m_captcha {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #captcha.m_captcha audio {
    display: inline-block;
  }
  #captcha.m_captcha #captcha_img {
    margin: 0 auto;
  }
}
@media all and (max-width: 800px) {
  .btns-login {
    margin-top: 40px;
  }
  .section-login-register {
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media all and (max-width: 640px) {
  .register-item-content {
    padding-top: 0;
  }
  .form-item:first-child {
    padding-top: 0;
  }
  .form-row + .form-row {
    margin-top: 10px;
  }
  .btns-login {
    margin-top: 30px;
  }
  .section-login-register {
    margin-top: 30px;
    padding-top: 30px;
  }
  #sns_register .sns-wrap,
  #fregister .register-overflow-scroll {
    padding: 20px 0 0 0;
  }
  .register-overflow-scroll + .register-table {
    margin-top: 20px;
  }
  #fregister .register-overflow-scroll textarea {
    padding: 10px;
  }
  .register-checkbox-all {
    padding-top: 0;
  }
  .register-item-head {
    padding-top: 0;
  }
  .register-item-content {
    padding-left: 0;
    padding-right: 0;
  }
  .form-item + .form-item {
    margin-top: 0;
  }
  .register-item + .register-item {
    margin-top: 10px;
  }
  .list-checkbox li {
    padding-top: 10px;
  }
  .wrap-register-form .do-register {
    margin-top: 20px;
  }
}
@media all and (max-width: 1024px) {
  .section-default + .section-default {
    margin-top: 50px;
  }
  .center-vision-row {
    padding-left: 320px;
  }
  .center-vision-box {
    width: 300px;
  }
}
@media all and (max-width: 800px) {
  .section-default + .section-default {
    margin-top: 35px;
  }
  .center-vision-row {
    padding: 0;
  }
  .center-vision-col.title {
    position: static;
  }
  .center-vision-box {
    width: 100%;
  }
  .center-vision-col.content {
    border: none;
  }
  .center-vision-row + .center-vision-row {
    margin-top: 20px;
  }
  .grid-row {
    flex-wrap: wrap;
  }
  .grid-row .grid-col {
    flex-basis: 100%;
  }
  .section-default h3 {
    margin-bottom: 20px;
  }
  .div-table-col.title {
    flex-basis: 120px;
    max-width: 120px;
    text-align: left;
  }
}
@media all and (max-width: 640px) {
  .center-vision-box {
    height: 200px;
  }
  .div-table-row {
    flex-wrap: wrap;
    border-color: rgb(233.25, 233.25, 233.25);
  }
  .div-table-row:last-child {
    border: none;
    padding-bottom: 0 !important;
  }
  .div-table-col.title {
    flex-basis: 100%;
    max-width: 100%;
  }
  .div-table-col.content {
    flex-basis: 100%;
    max-width: 100%;
  }
  .parent-description strong,
  .parent-description p {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 640px) and (min-width: 513px) {
  .parent-logo {
    width: 200px;
  }
}
@media all and (max-width: 512px) {
  .center-parent {
    display: block;
  }
  .parent-logo,
  .parent-description {
    display: block;
    width: 100%;
  }
  .parent-description {
    margin-top: 10px;
  }
  .center-vision-box {
    height: 180px;
  }
}
@media all and (max-width: 1024px) {
  #ci .summary {
    margin-bottom: 50px;
  }
  .ci-download {
    margin-top: 50px;
  }
}
@media all and (max-width: 800px) {
  #ci .summary {
    margin-bottom: 35px;
  }
  .ci-download {
    margin-top: 35px;
  }
}
@media all and (max-width: 640px) {
  .grid-row .grid-col .grid-inner {
    padding: 15px;
  }
  .ci-info {
    margin-top: 20px;
    padding-top: 21px;
  }
  .ci-color-row {
    padding-left: 50px;
  }
  .ci-color {
    width: 50px;
    height: 51px;
  }
  .ci-text-label {
    width: 50px;
  }
  .ci-text {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px;
  }
}
@media all and (max-width: 1440px) {
  .manager-head-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
}
@media all and (max-width: 1280px) {
  .manager-head-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
  .specific-column .platform-container {
    padding: 50px 30px;
  }
  .platform-manager-head {
    text-align: center;
    font-weight: 500;
  }
}
@media all and (max-width: 1024px) {
  .manager-head-icon {
    display: none;
  }
  .manager-head-content {
    padding: 0;
  }
  .platform-head-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .platform-link .platform-container {
    padding: 30px;
  }
  .specific-column .platform-container {
    padding: 30px 20px;
  }
  .platform-item-icon span {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
  .platform-list {
    margin-left: -20px;
    margin-bottom: -20px;
  }
  .platform-list li {
    padding-left: 20px;
    padding-bottom: 20px;
  }
}
@media all and (max-width: 800px) {
  .platform-head-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .platform-list {
    margin-left: -10px;
    margin-bottom: -10px;
  }
  .platform-list li {
    width: 50%;
    padding-left: 10px;
    padding-bottom: 10px;
  }
  .bbs-date-range .bbs-date-range-col {
    width: 100%;
  }
  .sharing-checkbox-wrapper {
    margin-left: -20px;
  }
  .sharing-checkbox-wrapper .sharing-checkbox-item {
    width: 50%;
    margin: 0;
    padding-left: 20px;
  }
}
@media all and (max-width: 640px) {
  .platform-head-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .platform-head {
    margin-bottom: 20px;
  }
  .platform-summary {
    margin-bottom: 0.4em;
  }
  .platform-neck {
    margin-bottom: 20px;
  }
  .platform-link .platform-container {
    padding: 25px;
  }
  .platform-item-icon span {
    width: 120px;
    height: 120px;
    line-height: 120px;
  }
  .platform-manager-head {
    margin-bottom: 20px;
  }
  .platform-manager-body p {
    line-height: 1.4;
  }
  .platform-manager-body p + p {
    margin-top: 10px;
  }
}
@media all and (max-width: 512px) {
  .platform-item-icon span {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .platform-head-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .platform-link .platform-container {
    padding: 20px 10px;
  }
  .specific-column .platform-container {
    padding: 20px 20px;
  }
}
@media all and (max-width: 1024px) {
  .sharing-section + .sharing-section {
    margin-top: 50px;
  }
  .sharing-section ul.list-rect .sharing-box {
    padding: 20px 20px;
  }
  .sharing-section ul.list-rect {
    margin-bottom: -50px;
    margin-left: -50px;
  }
  .sharing-section ul.list-rect li {
    padding-left: 50px;
    padding-bottom: 50px;
  }
  .sharing-section ul.list-rect li + li .sharing-box::before {
    left: -35px;
    font-size: 15px;
  }
  .platform-summary2 {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 800px) {
  .sharing-section strong {
    margin-top: 20px;
  }
  .sharing-section + .sharing-section {
    margin-top: 35px;
  }
  .calendar-day-head span {
    display: none;
  }
  .platform-summary2 {
    margin-bottom: 35px;
  }
  .sharing-agree {
    padding: 20px;
  }
  .agree-section th {
    width: 240px;
  }
  .bbs-col-wrapper .bbs-col-item.half {
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .platform-summary {
    margin-bottom: 0.4em;
  }
  .half .sharing-image-item {
    width: 100%;
  }
  .sharing-section ul.list-rect {
    margin-bottom: -35px;
    margin-left: -35px;
    margin-top: 20px;
  }
  .sharing-section ul.list-rect li {
    padding-left: 35px;
    padding-bottom: 35px;
    width: 100%;
  }
  .sharing-section ul.list-rect .sharing-box {
    padding: 10px;
  }
  .sharing-section ul.list-rect li + li .sharing-box::before {
    top: -18.5px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #calendar {
    margin-top: 20px;
  }
  .cld-title,
  .cld-head {
    margin-bottom: 20px;
  }
  .agree-section h5 {
    margin-bottom: 10px;
  }
  .agree-section th {
    width: 180px;
  }
  .agree-section + .agree-section {
    margin-top: 20px;
  }
  .agree-raw {
    margin-top: 20px;
  }
  .sharing-agree-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media all and (max-width: 512px) {
  .sharing-agree {
    padding: 10px;
  }
  .agree-section th {
    width: 130px;
  }
}
@media all and (max-width: 480px) {
  .sharing-agree {
    padding: 10px;
  }
}
@media all and (max-width: 1024px) {
  .category-list li {
    flex-basis: 50%;
    max-width: 50%;
  }
  .subpage-bbs .td.status select {
    padding-right: 20px;
  }
  .sharing-view-item + .sharing-view-item {
    padding-left: 180px;
  }
  .sharing-view-content select {
    width: 100px;
    margin-top: 5px;
  }
}
@media all and (max-width: 800px) {
  .subpage-bbs .th.status,
  .subpage-bbs .td.status {
    width: 100px;
  }
  .subpage-bbs .td.status span.button-rounded {
    line-height: 18px;
    border-radius: 5px;
    font-size: 12px;
  }
}
@media all and (max-width: 640px) {
  .subpage-bbs .th.author,
  .subpage-bbs .td.author {
    display: none;
  }
  .sharing-view-item {
    padding: 0;
  }
  .sharing-view-label {
    position: static;
  }
  .sharing-view {
    padding: 0;
  }
  .sharing-view-label {
    padding-top: 15px;
  }
  .sharing-view-item + .sharing-view-item {
    margin-top: 15px;
    padding-left: 0;
  }
  .sharing-view-content {
    padding-top: 0;
  }
}
@media all and (max-width: 1024px) {
  .bbs-category {
    margin-bottom: 50px;
  }
  .category-list {
    flex-wrap: wrap;
  }
  .category-list li a {
    height: 60px;
  }
  .bbs-view-body {
    padding: 40px 0;
  }
  .bbs-view-etc-item {
    word-break: break-all;
  }
  .write-file-remover {
    position: relative;
    display: block;
    margin-top: 1.5em;
    line-height: 1.45;
  }
  .write-file-remover input[type=checkbox] {
    position: static;
    float: left;
    margin-right: 10px;
    margin-top: 3px;
    vertical-align: middle;
  }
}
@media all and (max-width: 640px) {
  .bbs-category {
    margin-bottom: 30px;
  }
  .category-list li a {
    height: 40px;
  }
  .bbs-foot {
    margin-top: 20px;
  }
  .bbs-header .bbs-search {
    position: relative;
    float: none;
    padding-left: 119px;
  }
  .bbs-search-type select {
    position: absolute;
    top: 0;
    left: 0;
  }
  .bbs-search-keyword {
    width: 100%;
  }
  .bbs-search-keyword input {
    max-width: 100%;
  }
  .bbs-header {
    padding-bottom: 0;
  }
  .bbs-foot {
    text-align: right;
  }
  .bbs-foot::after {
    content: "";
    display: table;
    clear: both;
  }
  .bbs-foot .button-bbs {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }
  .subpage-bbs .th, .subpage-bbs .td {
    padding: 15px 5px;
  }
  .subpage-bbs .bbs-admin .td.admin {
    min-width: 30px;
  }
  .subpage-bbs .th.admin,
  .subpage-bbs .td.admin {
    width: 30px;
  }
  .subpage-bbs .th.number,
  .subpage-bbs .td.number {
    width: 50px;
  }
  .subpage-bbs .th.category,
  .subpage-bbs .td.category {
    width: 70px;
  }
  .subpage-bbs .th.date,
  .subpage-bbs .td.date {
    width: 80px;
  }
  .bbs-admin-thumbnail {
    margin-top: 20px;
  }
  .bbs-view-head h1 {
    padding: 10px 0;
  }
  .bbs-view-info {
    padding: 10px 5px;
    text-align: left;
  }
  .bbs-view-info .bbs-view-info-item::after {
    letter-spacing: 1em;
  }
  .bbs-view-foot .bbs-view-others {
    width: 100%;
    margin-top: 10px;
  }
  .bbs-view-foot .bbs-view-others::after {
    content: "";
    display: table;
    clear: both;
  }
  .bbs-view-foot .bbs-view-others .prev {
    float: left;
  }
  .bbs-view-foot .bbs-view-others .next {
    float: right;
  }
  .view-sign {
    font-size: 12px;
  }
  .bbs-view-body {
    padding: 30px 0;
  }
  .bbs-view-comments {
    margin-top: 30px;
  }
  .write-form-item {
    padding: 10px 0;
  }
  .write-form-label {
    position: static;
  }
  .write-form-content {
    padding-left: 0;
  }
  .write-form-guide, #char_count_desc {
    margin-bottom: 0.5em;
  }
  .bbs-col-wrapper .bbs-col-item.trio {
    width: 100%;
  }
  .subpage-bbs-write .category-select {
    width: 100%;
  }
  .category-select select {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .bbs-header .bbs-search {
    padding: 0;
  }
  .bbs-search-type {
    margin: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .bbs-search-type select {
    position: static;
    width: 100%;
  }
  .subpage-bbs .th, .subpage-bbs .td {
    padding: 10px 3px;
  }
  .subpage-bbs .th.number,
  .subpage-bbs .td.number {
    width: 35px;
  }
  .subpage-bbs .th.category,
  .subpage-bbs .td.category {
    width: 60px;
  }
  .subpage-bbs .th.date,
  .subpage-bbs .td.date {
    width: 60px;
  }
}
@media all and (max-width: 1024px) {
  .bbs-type-bookmark .category-list li {
    flex-basis: 20%;
  }
  .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    padding-bottom: 30px;
  }
  .bbs-type-bookmark .bbs-foot {
    padding-top: 30px;
  }
  .bbs-type-bookmark .bbs-thumbnail-admin {
    position: static;
    padding: 0;
  }
}
@media all and (max-width: 800px) {
  .bbs-type-bookmark .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    width: 33.333333%;
  }
}
@media all and (max-width: 640px) {
  .bbs-type-bookmark .bbs-list-thumbnail .bbs-list-body {
    margin-left: -10px;
  }
  .bbs-type-bookmark .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    padding-left: 10px;
  }
}
@media all and (max-width: 1400px) {
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body {
    margin-left: -60px;
    margin-bottom: -80px;
  }
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    padding-left: 60px;
    padding-bottom: 80px;
  }
}
@media all and (max-width: 1280px) {
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body {
    margin-left: -40px;
    margin-bottom: -60px;
  }
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    padding-left: 40px;
    padding-bottom: 60px;
  }
}
@media all and (max-width: 1024px) {
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body {
    margin-left: -20px;
    margin-bottom: -40px;
    padding-top: 20px;
  }
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    padding-left: 20px;
    padding-bottom: 40px;
  }
  .bbs-type-grid .bbs-header {
    padding-bottom: 20px;
  }
}
@media all and (max-width: 800px) {
  .bbs-view-head-thumbnail {
    padding-right: 20px;
  }
}
@media all and (max-width: 640px) {
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body {
    margin-left: -10px;
    margin-bottom: -20px;
  }
  .bbs-type-grid .bbs-list-thumbnail .bbs-list-body .bbs-thumbnail-item {
    width: 50%;
    padding-left: 10px;
    padding-bottom: 20px;
  }
  .bbs-type-grid .bbs-header {
    padding-bottom: 0;
  }
  .bbs-view-head-publication .bbs-view-head-info-wrapper {
    flex-wrap: wrap;
  }
  .bbs-view-head-publication .bbs-view-head-info {
    flex-basis: 100%;
    order: 1;
    margin-bottom: 20px;
    padding-bottom: 0;
  }
  .bbs-view-head-publication .bbs-view-head-thumbnail {
    flex-basis: 100%;
    order: 2;
    padding: 0;
    text-align: center;
  }
  .bbs-view-head-publication .bbs-view-head-file {
    position: static;
    float: right;
    margin-top: 10px;
  }
}
@media all and (max-width: 1440px) {
  .section-row {
    padding-left: 300px;
  }
  .section-col.label {
    width: 260px;
  }
}
@media all and (max-width: 1280px) {
  .section-row {
    padding-left: 260px;
  }
  .section-col.label {
    width: 230px;
  }
}
@media all and (max-width: 1024px) {
  .section-row {
    padding-left: 0;
  }
  .section-col.label {
    position: static;
    width: 100%;
    border-top: none;
  }
  .section-col h3 {
    padding-top: 0;
    padding-bottom: 0.8em;
  }
  .section-row + .section-row {
    margin-top: 50px;
  }
  .btns-business {
    margin-top: 50px;
  }
}
@media all and (max-width: 800px) {
  .section-row + .section-row {
    margin-top: 35px;
  }
  .table-list .th.col-1, .table-list .td.col-1 {
    width: 170px;
  }
  .table-list .th.col-2, .table-list .td.col-2 {
    width: 100px;
  }
  .col-2.status .button-rounded {
    line-height: 18px;
    border-radius: 5px;
    font-size: 12px;
  }
  .btns-business {
    margin-top: 30px;
    display: flex;
  }
  .btns-business a {
    flex-grow: 1;
    flex-basis: 0;
  }
}
@media all and (max-width: 640px) {
  .table-list .th.col-1, .table-list .td.col-1 {
    width: auto;
  }
  .table-list .td.col-1.subject {
    text-align: left;
  }
  .table-list .th,
  .table-list .td {
    padding: 15px 5px;
  }
  .table-list .th.col-summary,
  .table-list .td.col-summary {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .table-list .th.col-2,
  .table-list .td.col-2 {
    width: 70px;
  }
  .table-list .th,
  .table-list .td {
    padding: 10px 3px;
  }
}
@media all and (max-width: 1024px) {
  .subpage-bbs .th.category,
  .subpage-bbs .td.category {
    width: 85px;
  }
  .subpage-bbs .th.date,
  .subpage-bbs .td.date {
    width: 110px;
  }
  .subpage-bbs .th.range,
  .subpage-bbs .td.range {
    width: 180px;
  }
  .business-view-row {
    display: block;
  }
  .business-view-row .business-view-col {
    display: block;
  }
  .business-view-row .business-view-col.poster {
    padding-right: 0;
  }
  .business-view-row .business-view-col.poster img {
    max-width: 575px;
  }
  .business-poster {
    text-align: center;
  }
  .business-view-row .business-view-col.info {
    width: 100%;
  }
  .business-view-row .content .bbs-view-etc-content {
    overflow: auto;
  }
  .bbs-view-foot .bbs-view-ineterface .go-list-wrapper {
    display: block;
    text-align: right;
  }
  .bbs-view-foot .bbs-view-ineterface .go-list-wrapper .button-bbs.go-list {
    float: none;
    margin-top: 10px;
  }
  .business-view-row .view-biz.intro {
    margin-top: 20px;
    border-top: 1px solid #c2c2c2;
    padding-top: 21px;
  }
  .view-biz .bbs-view-etc-item {
    padding-right: 0;
    word-break: break-all;
  }
}
@media all and (max-width: 800px) {
  .subpage-bbs .th.category,
  .subpage-bbs .td.category {
    width: 75px;
  }
  .subpage-bbs .th.date,
  .subpage-bbs .td.date {
    width: 90px;
  }
  .subpage-bbs .th.range,
  .subpage-bbs .td.range {
    width: 165px;
  }
}
@media all and (max-width: 640px) {
  .subpage-bbs .th.date,
  .subpage-bbs .td.date {
    display: none;
  }
  .subpage-bbs .th.category,
  .subpage-bbs .td.category {
    display: none;
  }
  .subpage-bbs .th.range,
  .subpage-bbs .td.range {
    width: 155px;
  }
  .subpage-bbs .th.category,
  .subpage-bbs .td.category {
    width: 70px;
  }
  .view-files .bbs-view-content,
  .view-links .bbs-view-content,
  .view-biz .bbs-view-content {
    padding-left: 0;
  }
  .bbs-view-etc-label {
    position: static;
    margin-bottom: 0.5em;
  }
  .bbs-view-foot {
    padding-top: 20px;
  }
  .bbs-view-foot .bbs-view-ineterface {
    width: 100%;
  }
  .go-list-admin {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
  .bbs-view-foot .bbs-view-ineterface .button-bbs + .go-list-wrapper {
    margin-left: 0 !important;
  }
  .go-list {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}
@media all and (max-width: 480px) {
  .subpage-bbs .th.range,
  .subpage-bbs .td.range {
    width: 122px;
  }
  .bbs-view-foot .bbs-view-ineterface .button-bbs {
    width: 100% !important;
  }
  .bbs-view-foot .bbs-view-ineterface .button-bbs + .button-bbs {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}
@media all and (max-width: 1024px) {
  .subpage-bbs .th.confirm,
  .subpage-bbs .td.confirm {
    width: 70px;
  }
  .subpage-bbs .th.author,
  .subpage-bbs .td.author {
    width: 100px;
  }
}
@media all and (max-width: 640px) {
  .subpage-bbs .th.confirm,
  .subpage-bbs .td.confirm {
    width: 25px;
  }
  .subpage-bbs .th.confirm span,
  .subpage-bbs .td.confirm span {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  .status-de::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #0b0b0b;
  }
  .status-po::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0091a7;
  }
  .status-ne::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: red;
  }
  .status-content:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
@media all and (max-width: 640px) {
  .docs-article h5 {
    margin-top: 1em;
  }
  .docs-article table {
    margin-top: 1em;
  }
  .docs-article > ul > li + li {
    margin-top: 1.5em;
  }
  .docs-article th {
    width: 180px;
  }
}
@media all and (max-width: 512px) {
  .docs-article th {
    width: 130px;
  }
}
@media all and (max-width: 640px) {
  .wrap-login p,
  .search-result-summary {
    padding: 10px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1024px) {
  .social-confirm {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
@media all and (max-width: 800px) {
  .social-confirm {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 640px) {
  .member_connect2 {
    text-align: center;
  }
  .member_connect2 .strong {
    margin-bottom: 5px;
  }
  .member_connect2 button {
    width: 100%;
    max-width: 100%;
  }
}
.center-vision p.slogan {
  margin-bottom: 50px;
  line-height: 2;
  font-size: 18px;
  border: 1px solid #c2c2c2;
  padding: 1em;
  text-align: center;
}
.center-vision p.slogan span {
  font-weight: 500;
}

.header-row.search-row {
  display: flex;
  justify-content: flex-end;
}

.header-bar {
  float: none;
  display: flex;
}

.header-socials {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header-socials ul {
  display: flex;
  margin-left: -10px;
}
.header-socials li {
  padding-left: 10px;
}
.header-socials li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #9b9b9b;
  border-radius: 7px;
  font-size: 20px;
  color: #fff;
}
.header-socials li a:hover {
  color: white;
}
.header-socials li a i {
  margin-right: 1px;
}
.header-socials li.facebook a {
  background: #4966aa;
}
.header-socials li.instagram a {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1);
}
.header-socials li.youtube a {
  background: #e62117;
}
.header-socials li.naver a {
  background: #16bb69;
}

.header-search input {
  height: 32px;
}

.header-search button {
  width: 32px;
  height: 32px;
}

.header-search button i {
  font-size: 20px;
}

.search-container {
  position: relative;
  float: left;
  width: 250px;
  padding-right: 46px;
  border: 2px solid #80cfcb;
  border-radius: 8px;
  background: white;
}

.canvas-search-area .header-search {
  padding: 0;
}
.canvas-search-area .search-container {
  width: 100%;
}

.update2025 .sharing-section ul {
  margin-top: 20px;
}
.update2025 .sharing-section h3 {
  margin-bottom: 30px;
}
.update2025 .sharing-section article + article {
  margin-top: 65px;
}
.update2025 .sharing-section article h4 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
}
.update2025 .sharing-section article h4 span.dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
.update2025 .sharing-section article h4 span.dot.type1 {
  background: #ff7f50;
}
.update2025 .sharing-section article h4 span.dot.type2 {
  background: #d6a9d2;
}

.sharing-section ul li {
  line-height: 1.8;
  font-size: 16px;
}

.sharing-section ul li + li {
  margin-top: 15px;
}

.sharing-section h4.subtitle {
  margin-bottom: 30px;
  font-size: 21px;
}

.sharing-section .subcontent {
  padding-left: 1em;
}

.sharing-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 65px;
}

.sharing-col {
  flex: 0 0 100%;
}
.sharing-col .subcontent {
  background: #f6f6f6;
  padding: 1.5em 1em;
  border-radius: 10px;
}
.sharing-col .sharing-section ul {
  margin-top: 0;
}
.sharing-col .sharing-section ul + strong {
  margin-top: 30px;
}
.sharing-col .sharing-section ul li + li {
  margin-top: 5px;
}
.sharing-col .sharing-section strong {
  margin: 0;
  margin-bottom: 20px;
}
.sharing-col .sharing-section, .sharing-col .subcontent {
  height: 100%;
}

@media all and (max-width: 800px) {
  .update2025 .sharing-section article + article {
    margin-top: 35px;
  }
}
@media all and (max-width: 640px) {
  .sharing-col .subcontent {
    padding: 1.5em 1em;
  }
  .sharing-col .sharing-section strong {
    margin-bottom: 10px;
  }
  .sharing-col .sharing-section ul + strong {
    margin-top: 20px;
  }
  .sharing-section h4.subtitle {
    margin-bottom: 20px;
  }
  .sharing-col .sharing-section strong {
    font-size: 16px;
  }
  .sharing-col .sharing-section ul li {
    font-size: 14px;
  }
}
.venue-contact {
  color: #5f5f5f;
  font-variant-numeric: tabular-nums;
}
.venue-contact i {
  margin-right: 0.4em;
}
.venue-contact a {
  color: #0091a7;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
}

.cld-hint {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.cld-hint-item {
  display: flex;
  gap: 0.4em;
  align-items: center;
}

.cld-hint-item.type1 .hint-circle {
  background: #ff7f50;
  border-color: rgba(0, 0, 0, 0.3);
}

.cld-hint-item.type2 .hint-circle {
  background: #d6a9d2;
  border-color: rgba(0, 0, 0, 0.3);
}

.hint-circle {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.badge-wrapper {
  color: #fff;
  display: flex;
  gap: 5px;
  max-width: 75px;
  margin-right: 30px;
}

.badge-wrapper .badge {
  display: flex;
  font-weight: 500;
  font-size: 12px;
  border-radius: 3px;
  padding: 3px 5px;
  line-height: 1;
  background: #80cfcb;
  border-color: rgba(0, 0, 0, 0.3);
}

.badge-wrapper .badge.type1 {
  background: #ff7f50;
  border-color: rgba(0, 0, 0, 0.3);
}

.badge-wrapper .badge.type2 {
  background: #d6a9d2;
  border-color: rgba(0, 0, 0, 0.3);
}

td.calendar-day p.type1 {
  background: #ff7f50;
  border-color: rgba(0, 0, 0, 0.3);
}

td.calendar-day p.type2 {
  background: #d6a9d2;
  border-color: rgba(0, 0, 0, 0.3);
}

a.day-number .list-day {
  margin-left: auto;
}

a.day-number {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 30px;
  line-height: 30px;
  width: 100%;
  text-align: right;
  padding: 0 10px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.update2025 td.calendar-day p.type-a {
  background: #80cfcb;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.center-self {
  font-size: 80%;
  display: inline-block;
  padding: 0.1em 0.3em;
  background: #d7f2f1;
  color: black;
  border-radius: 0.3em;
  margin-right: 0.4em;
  font-size: 12px;
}

td.calendar-day p {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
}

@media all and (max-width: 800px) {
  .carlendar-select {
    font-size: 16px;
    padding: 0 20px;
    -moz-text-align-last: right;
         text-align-last: right;
    direction: rtl;
  }
  .carlendar-move {
    font-size: 16px;
    padding: 0 10px;
    text-align: center;
  }
  .move-prev,
  .move-search,
  .move-current {
    padding-left: 25px;
  }
  .move-next {
    padding-right: 25px;
  }
  .move-prev i,
  .move-search i,
  .move-current i {
    left: 10px;
  }
  .move-next i {
    right: 10px;
  }
  td.calendar-day-head {
    padding: 10px;
  }
  a.day-number {
    height: 20px;
    line-height: 20px;
  }
  .day-badge {
    top: 3px;
    padding: 1px 5px;
  }
  td.calendar-day {
    padding: 20px 10px 10px 10px;
    height: 80px;
  }
  td.calendar-day p {
    position: relative;
    font-size: 12px;
    line-height: 1.35;
    z-index: 1;
  }
  td.calendar-day p::before {
    top: 6.5px;
  }
  .schedule-empty {
    font-size: 16px;
  }
  .schedule-item h3.size-20 {
    font-size: 18px;
  }
}
@media all and (max-width: 640px) {
  td.calendar-day-head {
    font-size: 16px;
  }
  .cld-ui-move {
    width: 100%;
    margin-bottom: 2%;
  }
  .cld-ui-move #selectYear,
  .cld-ui-move #selectButton {
    width: 33%;
  }
  .cld-ui-move #selectYear,
  .cld-ui-move #selectMonth {
    margin-right: 2%;
  }
  .cld-ui-move #selectMonth {
    width: 30%;
  }
  .calendar-details .cld-ui-default .move-current {
    width: 100%;
  }
  .cld-ui-default {
    width: 100%;
  }
  .cld-ui-default .carlendar-move + .carlendar-move {
    margin-left: 0;
  }
  .cld-ui-default .move-prev,
  .cld-ui-default .move-next {
    width: 33%;
  }
  .cld-ui-default .move-prev,
  .cld-ui-default .move-current {
    margin-right: 2%;
  }
  .cld-ui-default .move-current {
    width: 30%;
  }
  a.day-number {
    height: 100%;
  }
  .day-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 5px;
  }
  td.calendar-day {
    height: 50px;
    padding: 0;
  }
  td.calendar-day p {
    display: none;
  }
  .carlendar-move {
    font-size: 14px;
  }
  .schedule-day .cld-ui-default .move-current {
    width: 33%;
    float: right;
    margin: 0;
  }
  a.day-number {
    flex-direction: column;
    align-items: flex-end;
    position: static;
    padding: 0 5px 5px 5px;
  }
  a.day-number .list-day {
    order: 1;
  }
  a.day-number .badge-wrapper {
    order: 2;
    margin: 0;
    flex-wrap: wrap;
    gap: 2px;
    flex: 1 1 100%;
    justify-content: center;
  }
  a.day-number .badge-wrapper .badge {
    flex: 0 1 calc(50% - 1px);
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 10px;
  }
  .schedule-item-header {
    font-size: 14px;
  }
  .schedule-item h3.size-20 {
    font-size: 16px;
  }
  .cld-hint {
    gap: 20px;
    margin: 0;
  }
  .cld-hint-item {
    margin-top: 20px;
  }
}
.form-placeholder {
  font-size: 14px;
  color: #5f5f5f;
  line-height: 40px;
}

.select-bbs[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type=checkbox].checkbox-box[disabled],
input[type=checkbox].checkbox-box[disabled] ~ label {
  opacity: 0.5;
  cursor: not-allowed;
}

.schedule-item-header {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 16px;
}

.room-name {
  font-weight: 500;
  color: #fff;
  background: #80cfcb;
  border-color: rgba(0, 0, 0, 0.3);
  padding: 0.3em 0.3em;
  border-radius: 0.4em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08);
}

.room-name.type1 {
  background: #ff7f50;
  border-color: rgba(0, 0, 0, 0.3);
}

.room-name.type2 {
  background: #d6a9d2;
  border-color: rgba(0, 0, 0, 0.3);
}

.update2025 .sharing-section .schedule-item-header h3 {
  margin: 0;
}

.date-time {
  background: rgba(255, 255, 255, 0.5);
  padding: 1em;
  border-radius: 7px;
  font-size: 14px;
  color: #555;
}
.date-time i {
  display: inline-block;
  width: 14px;
  color: #0091a7;
}

.date-time-row {
  display: flex;
}
.date-time-row + .date-time-row {
  margin-top: 0.5em;
}
.date-time-row i {
  margin-right: 0.4em;
}
.date-time-row .label {
  flex: 0 0 80px;
}
.date-time-row .content {
  flex: 1 1 0;
  color: #0077cc;
  font-variant-numeric: tabular-nums;
}

.close-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 상단 라벨 + 제목 */
.close-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}

.close-title-label {
  font-size: 16px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.close-title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding-left: 14px;
  line-height: 1;
}

.close-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #108a9e; /* 포인트 컬러 */
}

/* 마감 핵심 문구 */
.close-highlight {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  background: #f6f6f6;
  padding: 1em;
  border-radius: 10px;
}

.close-highlight strong {
  font-weight: 700;
}

.close-highlight-main {
  font-weight: 700;
  color: #c75000;
}

/* 본문 */
.close-content {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  word-break: keep-all;
}
.close-content strong {
  color: #108a9e;
}
.close-content.center {
  text-align: center;
}

/* 하단 구분선 + 푸터 */
.close-divider {
  margin: 26px 0 18px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.close-footer {
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 768px) {
  .close-highlight {
    font-size: 14px;
    word-break: keep-all;
  }
  .close-highlight br {
    display: none;
  }
}
.platform-head {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fbff 0%, #e9f7f0 35%, #fef9f4 70%, #f6f3ff 100%);
  border-radius: 10px;
}

.platform-head-content {
  position: static;
  transform: none;
  text-align: center;
  padding: 86px 0;
}

.platform-head-text {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  text-shadow: none;
  color: #016877;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
  text-shadow: 2px 2px 0 #fff;
}