/* Masangsoft Inc CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css');
@import url('https://fonts.googleapis.com/earlyaccess/notosanskr.css');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans|Quicksand|Lato|Roboto|Raleway|Playfair Display');

/* ///////////////////////*/
/*      START-PUBLIC     */
/* //////////////////////*/
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR','Roboto', sans-serif;
  color: #333;
  font-size: 16px;
}

1em {
  font-size: 16px;
}

* {
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

a {
  outline: none;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.clearfix {
  display: block;
}

.content {
  /* position: relative; */
  margin-top: 28px; /* 32px; */
  width: 100%;
  min-height: calc(100vh - 180px);
  min-height: -webkit-calc(100vh - 180px);
  height: 100%;
  z-index: 0;
  overflow-y: auto;
  background: #eeeeee;
}

.minheight {
  min-height: 700px;
}

.pos_mid {
  margin: 0px auto;
  align-content: center;
  /*text-align: center;*/
  transition: all .3s;
}

/* START-GNB */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
  z-index: 99;
  text-align: center;
  transition: .5s;
}

#nav_main {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: rgba(255, 255, 255, 0.9);
}

nav #nav_menu {
  top: 0;
  display: inline-block;
  height: 80px;
  margin: 0px;
  padding: 0px auto;
  position: relative;
}

nav li {
  list-style: none;
  position: relative;
  margin: 0px auto;
  height: 80px;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: block;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
}

nav #nav_menu li:hover {
  background: rgba(255, 255, 255, 0.5);
}

nav ul li:hover>ul {
  display: block;
}

nav ul li:hover>.menu_link {
  color: #526bbe;
}

nav ul li {
  float: left;
  vertical-align: middle;
}

nav #nav_menu li {
  border-left: 1px solid rgba(100, 100, 100, 0.1);
}

.menu_link {
  width: 150px;
  height: inherit;
  display: inline-block;
  color: #222;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 2.3em;
  text-decoration: none;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  box-sizing: border-box;
}

/* sub menu */
nav ul li ul {
  display: none;
  position: absolute;
  text-align: center;
  width: 110px;
  margin: 0;
  top: 100%;
  padding: 0px auto;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .1);
  text-align: center;
}

nav>ul>li>ul>li {
  height: 50px;
  display: block;
  width: 150px;
  border-bottom: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  left: -42px;
  top: -1px;
}

nav>ul>li>ul>li:hover {
  background: rgba(255, 255, 255, 1) !important;
}

nav>ul>li>ul>li>a {
  display: flex;
  text-align: center;
  font-weight: 700;
  line-height: 25px;
  height: 40px;
  position: relative;
  margin: 0.8em .5em 0 1.8em;
  color: #444;
  font-size: 0.9em;
  font-weight: 700;
}

nav>ul>li>ul>li:hover>a {
  color: #526bbe;
}

nav .menu_current .menu_link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  opacity: 0;
  background: #526bbe;
  -webkit-transform: scale3d(0, 1, 1);
  -moz-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: -webkit-transform 0s 0.2s, opacity 0.2s;
  -moz-transition: -webkit-transform 0s 0.2s, opacity 0.2s;
  transition: transform 0s 0.2s, opacity 0.2s;
}

nav .menu_current span {
  color: #4960aa;
}

nav .menu_current .menu_link::before {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -moz-transition: -webkit-transform 0.2s, opacity 0.1s;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.1s;
  transition: transform 0.2s, opacity 0.1s;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
  -moz-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.menu_link {
  display: block;
  padding: 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu_link:hover,
.menu_link:focus {
  outline: none;
}

nav .current_line {
  display: block;
  pointer-events: none;
}

nav .menu_current .current_line {
  -webkit-animation: anim_menu 0.6s forwards;
  animation: anim_menu 0.6s forwards;
}

@-webkit-keyframes anim_menu {
  50% {
    opacity: 0;
    color: #111;
    -moz-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  51% {
    opacity: 0;
    color: #111;
    -moz-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  75% {
    opacity: 1;
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    opacity: 1;
    color: #4960aa;
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes anim_menu {
  50% {
    opacity: 0;
    color: #111;
    -moz-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  51% {
    opacity: 0;
    color: #111;
    -moz-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  75% {
    opacity: 1;
    -moz-transform: translate3d(5px, 0, 0);
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    opacity: 1;
    color: #526bbe;
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fa_bar {
  float: left;
  position: relative;
  display: none;
  height: 80px;
  width: 80px;
  background: transparent;
}

.fa_bar:before {
  content: "\f0c9";
  font-family: 'fontAwesome';
  color: #222;
  font-size: 2.5em;
  line-height: 80px;
}

.fa_bar:hover:before {
  color: #526bbe;
}

#nav_widget {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  height: 80px;
  margin: 0;
  padding: 0 .5em 0 .5em;
  margin-left: -5px;
  border-left: 1px solid rgba(100, 100, 100, 0.1);
  /*  background:rgba(10,10,10,0.1); */
  overflow-wrap: hidden;
}

#nav_widget li {
  margin: 0 .75em;
}

#nav_widget li a {
  display: inline-block;
  color: #222;
  font-weight: 700;
  font-size: .9em;
  padding: 28px .2em;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

#nav_widget li a:hover {
  color: #526bbe;
}

nav ul li #account_widget {
  width: 100px;
  left: -1.3em;
}

nav ul li #account_widget li {
  margin: 0;
}

nav ul li #account_widget li a {
  margin: .8em 1em 0 0.8em;
  padding: 0;
  font-size: 1em;
}

nav ul li #account_widget li a:hover {
  color: #526bbe;
}

/* footer */
#footer {
  display: block;
  margin: 0px auto;
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.6);
}

#footer .wrapper {
  max-width: 1100px;
  position: relative;
  display: block;
  clear: both;
  bottom: 0;
  margin: 0 auto;
  padding: 0px auto;
  padding-top: 2em;
  padding-bottom: 1em;
  transition: 0.5s;
}

#footer img {
  float: left;
  width: 110px;
  margin: 0 20px;
}

#footer address {
  display: block;
  float: left;
  font-size: 0.9em;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #ddd;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
  z-index: 0;
}

/* Family Site */
#footer .familysite {
  float: right;
  right: 0px;
  font-size: 0.9em;
  font-family: 'roboto';
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin-top: -10px;
  z-index: 9999;
  z-index: 1000
}

.familysite p {
  display: block;
  background: #fff;
}

.familysite p a,
.familysite p.up a {
  color: #444;
  width: 140px;
  display: block;
  border: 1px solid #222;
  text-decoration: none;
  height: 20px;
  line-height: 20px;
  padding: 5px 10px;
  text-align: left;
  background: url('../images/familysite_bg.png') no-repeat right bottom;
}

.familysite p.up a {
  background: url('../images/familysite_bg.png') right top no-repeat;
}

.familysite a:hover,
.familysite li:hover {
  opacity: .9;
}

.familysite ul {
  display: block;
  right: 0;
  margin-top: -127px;
  padding: 0;
  border: 1px solid #222;
}

.familysite ul>li {
  top: 0;
  display: block;
  background: rgba(255, 255, 255, 1);
  width: 140px;
  height: 30px;
  line-height: 30px;
  color: #444;
  margin: 0;
  padding: 5px 10px;
  opacity: 0.8;
}

.familysite>ul>li>a {
  display: block;
  width: 130px;
  color: #444;
  padding: 3px;
  text-align: left;
}

ul.display_no {
  display: none;
}

.container {
  /* position: absolute;
  width: 100%;
  height: 100%; */
  margin: 0px auto;
}

.page_name {
  position: absolute;
  left: 50%;
  margin-top: 44px !important;
  margin-left: -598px;
  width: 178px;
  height: 73px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  line-height: 25px;
  padding-top: 10px;
  box-sizing: border-box;
  font-size: 2em;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 4px solid #333;
  color: #333;
  z-index: 10;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all 0.3s;
}

.lnb {
  padding-top: 110px !important;
}

.page_name_w {
  color: #eee;
  border-color: #eee
}


/* //////////////// */
/* LOGIN PAGE START */
/* //////////////// */

.float_box {
  display: block;
  position: absolute;
  top: 20%;
  left: 50%;
  max-width: 650px;
  margin: auto;
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0.6);
  padding: 1em 1.5em;
  transition: .5s;
  transform: translateX(-50%);
  border-radius: 5px;
}

.float_box .line {
  width: 90%;
  height: 1px;
  border-top: 1px dotted #aaa;
  margin: 20px auto;
}

.float_box h1,
.float_box h3 {
  display: block;
  text-align: center;
  font-family: 'Roboto';
  font-weight: 700;
  color: #eee;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.float_box h1 {
  font-size: 3em;
  line-height: 1em;
  transition: .3s ease;
}

.float_box h3 {
  font-size: 2em;
}

.float_box h4 {
  color: #fff;
  font-size: 1.1em;
  margin-top: 2.5em;
  margin-bottom: 0;
  text-align: center;
}

.login_btn,
#signup_btn {
  width: 200px;
  height: 50px;
  margin: 20px 25px;
  color: rgba(255, 255, 255, 0.8);
  background: #526bbe;
  font-family: 'Roboto', sans-serif;
  margin: 1em .5em;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.6em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.login_btn a {
  color: #eee;
  text-transform: uppercase;
  font-size: 1.5em;
}

.login_btn i,
#signup_btn i {
  margin-right: .5em;
}

.login_btn:hover,
#signup_btn:hover {
  opacity: .9;
}

#scrollup {
  cursor: pointer;
  position: fixed;
  display: inline-block;
  right: 40px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  border: 1px solid #526bee;
  border-radius: 50%;
  background: rgba(82, 107, 190, 0.7);
  color: #fff;
  font-size: 1.5em;
  text-align: center;
  line-height: 45px;
  z-index: 9999;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
  transition: 0.2s ease-out;
  z-index: 91999;
}

#scrollup:hover {
  background: rgba(82, 107, 190, 1);
  transform: translateY(-30%);
  transition: 0.2s ease-in
}

#bg_sky,
#bg_flight,
#bg_pattern,
#bg_white {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: background-image 2s;
}

#bg_sky {
  height: 100%;
  background: url('http://web-files-cdn.masangsoft.com/common/20190221/1550739941/images/732570/338/748/af2eed03d7f6ceed8062f410278ef38e.jpg') 0px 0px no-repeat;
}

#bg_flight {
  background: url('http://web-files-cdn.masangsoft.com/common/20190221/1550732823/images/732570/338/748/275f30ed9b6f0954f491a2e2f2609a7c.png') 105px -50px no-repeat;
}

#bg_pattern {
  z-index: -1;
  background: transparent url('../images/pattern.png') top left repeat;
}

#bg_white {
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.8);
}

#nav {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  padding: 0;

}

.logo {
  display: inline-block;
  position: relative;
  width: 130px;
  height: 80px;
  margin: 0px auto;
  margin-left: 2em;
  vertical-align: top;
  background: url('../images/masang_logo.png') center center no-repeat;
  background-size: contain;
  content: '';
}



/* LOGIN */
.input_field {
  position: relative;
  display: block;
  padding: 0.8em;
  width: 90%;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  color: #aaa;
  font-weight: bold;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
}

.input_field:focus {
  outline: none;
}

.input_label {
  display: inline-block;
  padding: 0 1em;
  width: 40%;
  color: #bfd6ff;
  font-weight: bold;
  font-size: 70.25%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input_label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%;
}

.login_input {
  position: relative;
  z-index: 1;
  margin: 1em;
  vertical-align: top;
  overflow: hidden;
  width: 90%;
}

.input_field {
  margin-top: 1em;
  padding: 0.85em 0.15em;
  width: 100%;
  background: transparent;
  color: #bfd6ff;
}

.input_label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0.25em;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
}

.input_label-content {
  position: absolute;
}

.input_label::before,
.input_label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  border-bottom: 1px solid #B9C1CA;
}

.input_label::after {
  margin-top: 0px;
  border-bottom: 4px solid white;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  border-color: #526bbe;
}

.input_field:focus+.input_label::after,
.input--filled .input_label::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.input_field:focus+.input_label .input_label-content,
.input--filled .input_label-content {
  -webkit-animation: anim 0.3s forwards;
  animation: anim 0.3s forwards;
}

@-webkit-keyframes anim {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }

  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -40%, 0);
    transform: translate3d(-1em, -40%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }
}

@keyframes anim {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }

  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -40%, 0);
    transform: translate3d(-1em, -40%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }
}

button {
  outline: none;
  border: none;
  color: #141414;
}

.login_wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  float: left;
  text-align: center
}

.login_sns {
  float: right;
  position: relative;
  color: #eee;
  height: 400px;
  width: 25%;
  border-left: 1px dotted #000;
  padding: 0 2em;
  text-align: center;
  margin: 0;
}

.signup_sep {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: .3em auto;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0 2em .1em;
  border-radius: 5px;
  border: 1px solid #000
}

.signup_sep .login_sns {
  height: 250px;
}

.login_sns a {
  display: inline-block;
  font-family: 'FontAwesome', sans-serif;
  font-size: 1.5em;
  text-decoration: none;
  color: white;
  width: 100%;
  padding: 0.55em 0.1em;
  clear: both;
  text-align: center;
  margin: 0.5em 0.1em;
  -moz-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  border-radius: 0.1em;
}

.login_sns a.facebook {
  background: #3a589a;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.login_sns a.facebook:hover {
  background: rgba(58, 88, 154, 0.8);
}

.login_sns a.twitter {
  background: #4099ff;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.login_sns a.twitter:hover {
  background: rgba(64, 153, 255, 0.8);
}

.login_sns a.google-plus {
  background: #e9544f;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.login_sns a.google-plus:hover {
  background: rgba(233, 84, 79, 0.8);
}

.login {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  display: block;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25), -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.login.inactive {
  opacity: 0;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.inactive {
  display: none
}

.login_form {
  width: 100%;
  margin: 0 auto;
}

.login_input {
  display: inline-block;
  width: 100%;
  font-size: 1em;
  margin: 5px auto;
  background: none;
}

.login_submit {
  width: 100%;
  height: 50px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.8);
  background: #526bbe;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
  border-radius: 0.1em;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
  transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

.login_submit:after {
  content: "";
  position: absolute;
  margin-left: -2.2rem;
  margin-top: -2rem;
  width: 4rem;
  height: 4rem;
  border: 3px dotted #fff;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  -webkit-transition: opacity 0.1s 0.4s;
  transition: opacity 0.1s 0.4s;
  opacity: 0;
}

.login_submit.processing {
  border-radius: 3rem;
  width: 90px;
  height: 90px;
  font-size: 0;
}

.login_submit.processing:after {
  opacity: 1;
  -webkit-animation: rotate 0.5s 0.4s infinite linear;
  animation: rotate 0.5s 0.4s infinite linear;
}

.login_submit.success {
  -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  -webkit-transform: scale(30);
  transform: scale(30);
  opacity: 0.9;
}

.login_submit.success:after {
  -webkit-transition: opacity 0.1s 0s;
  transition: opacity 0.1s 0s;
  opacity: 0;
  -webkit-animation: none;
  animation: none;
}

.login_submit:hover {
  opacity: 0.9;
}

.login_signup {
  display: inline-block;
  width: 100%;
  padding: 5px auto;
  position: relative;
  font-size: 1em;
  color: #eee;
}

.login_signup a {
  color: #fff;
  text-transform: uppercase
}

.login_signup a:hover {
  opacity: 0.7;
}

/* .login .snslogin {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding: 4px;
  margin: 0 5px;
  width: 140px;
  border: 1px solid #eee;
  border-bottom: 0px
}

.login .snslogin:nth-of-type(3) {
  border-bottom: 1px solid #eee
}

.login .snslogin:hover {
  opacity: 0.7
} */

.login .login_button_sns {
  margin-bottom: 10px;
}

.login .login_button_sns p {
  margin: 4px 0 0;
  padding: 0;
}

.login .login_button_sns .snslogin {
  display: block;
  width:100%;
  line-height: 40px;
  background-color: #fff;
  text-align: left;
}

.login .login_button_sns .snslogin img {
  vertical-align: middle;
  margin-left: 15px;
}

.afterlogin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  opacity: 0;
  display: none;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.inanctive {
  display: none;
}

.afterlogin.active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.afterlogin.active .afterlogin_user-photo {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.afterlogin.active .afterlogin_meeting {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.afterlogin.active .afterlogin_logout {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.afterlogin_top {
  position: relative;
  margin-top: -20px;
  margin-bottom: -20x;
  height: 28rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 6rem 1.5rem 0rem;
  text-align: center;
}

.afterlogin_bot {
  position: relative;
  height: 25rem;
  background: #fff;
}

.afterlogin_menu-btn {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  width: 1.8rem;
  height: 1.7rem;
  cursor: pointer;
}

.afterlogin_menu-btn span,
.afterlogin_menu-btn:before,
.afterlogin_menu-btn:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.afterlogin_menu-btn span {
  top: 0.8rem;
}

.afterlogin_menu-btn:before {
  content: "";
  top: 0;
}

.afterlogin_menu-btn:after {
  content: "";
  bottom: 0;
}

.afterlogin_icon {
  position: absolute;
  top: 2rem;
}

.afterlogin_icon.search {
  right: 1.5rem;
  stroke-dasharray: 61.847137451171875;
  stroke-dashoffset: 61.847137451171875;
  -webkit-animation: animatePath 0.5s 0.5s forwards;
  animation: animatePath 0.5s 0.5s forwards;
}

.afterlogin_hello {
  font-size: 2.2rem;
  color: #fff;
  font-weight: normal;
  margin-bottom: 3rem;
}

.afterlogin_user {
  position: relative;
  display: inline-block;
  width: 9rem;
  height: 9rem;
  margin-bottom: 3rem;
}

.afterlogin_user-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
  transition: -webkit-transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
  transition: transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
  transition: transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55), -webkit-transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.afterlogin_user-notif {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  line-height: 3rem;
  text-align: center;
  background: #50D2C2;
  color: #fff;
  font-size: 1.5rem;
}

.afterlogin_meeting-name {
  color: #000;
  font-size: 1.3rem;
}

.afterlogin_meeting-info {
  color: #949498;
  font-size: 1.1rem;
}

.afterlogin_logout {
  float: right;
  width: 150px;
  height: 50px;
  margin: 70px 20px 0px 0px;
  color: #222;
  background: #eee;
  font-family: 'Audiowide', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: bottom 0.4s 0.1s, right 0.4s 0.1s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s, transform 0.4s 0.4s, opacity 0.1s 0.7s, background-color 0.1s 0.7s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s, transform 0.4s 0.4s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
  -webkit-transform: scale(0);
  transform: scale(0);

}

.afterlogin_logout:after {
  content: "";
  position: absolute;
  margin-left: -2rem;
  margin-top: -2rem;
  width: 4rem;
  height: 4rem;
  border: 3px dotted #fff;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  -webkit-transition: all 0.1s 0.4s;
  transition: all 0.1s 0.4s;
  opacity: 0;
}

.afterlogin_logout:hover {
  color: #fff;
  border: 5px solid #eee;
  background: transparent;
}

.afterlogin_logout.clicked {
  bottom: 50%;
  right: 50%;
  -webkit-transform: scale(0.1) !important;
  transform: scale(0.1) !important;
  opacity: 0.9;
}

.afterlogin_logout.clicked svg {
  opacity: 0;
}

.ripple {
  position: absolute;
  width: 15rem;
  height: 15rem;
  margin-left: -7.5rem;
  margin-top: -7.5rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: animRipple 0.4s;
  animation: animRipple 0.4s;
  border-radius: 50%;
}

@-webkit-keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
    transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
    transform: scale(3.5);
    opacity: 0;
  }
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}

page_games @keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}

/* END--LOGIN PAGE */


/* BUTTON */

.btn {
  text-decoration: none !important;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 3px 1em;
  margin: 0;
  font-family: 'NotoSansKRBold', sans-serif;
  font-size: 14px;
  line-height: 24px;
  height: auto;
  color: #fff;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  overflow: visible;
  background-color: #333;
  border: 1px solid #222;
  box-sizing: content-box;
  transition: .5s;
  text-transform: uppercase;
}

.btn:hover {
  color: #222;
  background: transparent;
  border: 1px solid #333;
}

/* SIZE 
@media screen and (max-width: 1400px){
  #bg_sky{ background-size: auto 120%;  }
  #bg_flight{  background:url('http://web-files-cdn.masangsoft.com/common/20190221/1550732823/images/732570/338/748/275f30ed9b6f0954f491a2e2f2609a7c.png') 30% center no-repeat; background-size: cover; }
  .pos_mid{  margin:4.5em auto 0;transition: all .5s}
  #nav_widget{float:right;}
   .page_name{margin-left:0; left:50%; top:0; font-size: 1.7em; transition: all .5s; }
}
@media screen and (max-width: 1000px){
  .fa_bar{display:inline-block; float:left; z-index:5; }
  .fa_bar button{outline:0; border:0; list-style: none;display:inline-block; text-decoration: none; }
  .overlay{ display: none;  position: absolute; left: 0px; top:0; width:100%; height:100vh;background:rgba(0,0,0,0.7); transition: 2s; z-index: 1;}
  nav .menu_current .menu_link::before {display: none}
  nav .menu_link{  border-bottom:1px solid #ddd; }
  nav .menu_current:first-of-type{border-top:1px solid #ddd;}
  nav #nav_menu{ top:60px; left:-120%; transform:none; height:100vh; width:151px; background: rgba(255,255,255,0.9); padding:0; transition: left 0.5s;box-sizing:border-box;	z-index:2;}
  nav ul li ul{left:150px; top:0;}
  nav ul li ul a{left:-0.4em; float:left; text-align:left;}
  nav #nav_menu.panel-open{position: absolute; top:0; left: 0px; float:left; padding-top:80px; transition: left 0.5s; z-index: 6;}
  nav#nav_menu.hidden-panel {left:-151px; transition: left 0.5s; }
  ul #nav_menu{ height:100%; }
  #nav_menu li, #nav_menu li a{  display:block; clear:left; text-align:left  }
  nav .logo{ position:absolute;  left:43%;  transform:translateX(-50%);  float:initial; cursor:pointer; }
  #nav_widget span{display:none; visibility: hidden;}
 #nav_widget > li > ul{ float:right; top:100%;}
 #nav_widget > li > ul > li{ margin:0; }
 #nav_widget i{font-size:1.5em}

 #footer {position:relative; margin:0; bottom:0; padding:0; transition: .4s; text-align:center; height:160px; background:#444;}
 #footer img{display:none;}
 #footer .familysite{padding-right:1em; }
 #footer address br{display:none}

 .signup_sep{width: 100%; border-radius:0px; height:auto; display:block;}
 .login_wrap{float:none; display:block; width:95%; text-align:center; margin:0 auto 10px}
 .login_wrap p {width:90%; }
 .login_sns{float:none; display:inline-block; width:100%; margin:0 auto; padding:0; border-top:2px dotted #222; border-left:0; text-align:center; max-height:110px; width:90%}
 .login_sns a {width:30%; clear:none; position:relative; display:inline-block;margin:0 auto; margin-top:1em}
 .login_sns a.login_submit{display:block; width:90%}
}
*/


/*custom_황정연*/

@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


div.mySwiper {
  border: none;
  margin-bottom: 0;
  background: #000;
  margin-top: 26px; /*29px; */
  box-shadow: none;
}

div.swiper-wrapper {
  width: 100%;
  height: 550px;
}

div.swiper-wrapper div.text_wrap {
  position: absolute;
  top: 50%;
  margin-top: -130px;
  left: 19%;
  z-index: 10;
}

div.swiper-wrapper div.text_wrap strong {
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

div.swiper-wrapper div p.bg_text {
  color: #fff;
  font-size: 16px;
  margin-bottom: 65px;
}

div.swiper-wrapper div a.bg_btn {
  color: #cccccc;
  font-size: 16px;
  font-weight: 300;
}

div.swiper-wrapper div a.bg_btn:hover {
  color: #fff
}

div.swiper-wrapper div.dk_link {
  width: 1920px;
  height: 550px;
  background: url('../images/dk_bg.jpg') center 0 no-repeat;
}

div.swiper-wrapper p.dk_bg_logo {
  width: 256px;
  height: 52px;
  background: url('../images/dk_bg_logo.png') no-repeat;
  margin-bottom: 50px;
}

div.swiper-wrapper div.ad_link {
  width: 1920px;
  height: 550px;
  background: url('../images/ad_bg.jpg') center 0 no-repeat;
}

div.swiper-wrapper p.ad_bg_logo {
  width: 173px;
  height: 78px;
  background: url('../images/ad_bg_logo.png') no-repeat;
  margin-bottom: 50px;
}

div.swiper-wrapper div.ao_link1 div.text_wrap {
  margin-top: -177px;
}

div.swiper-wrapper div.ao_link1 {
  width: 1920px;
  height: 550px;
  background: url('../images/ao_bg1.jpg') center 0 no-repeat;
}

div.swiper-wrapper p.ao_bg_logo1 {
  width: 228px;
  height: 83px;
  background: url('../images/ao_bg_logo1.png') no-repeat;
  margin-bottom: 50px;
}

div.swiper-wrapper div.ao_link2 {
  width: 1920px;
  height: 550px;
  background: url('../images/ao_bg2.jpg') center 0 no-repeat;
}

div.swiper-wrapper div.ao_link2 div.text_wrap {
  margin-top: -170px;
}

div.swiper-wrapper p.ao_bg_logo2 {
  width: 228px;
  height: 53px;
  background: url('../images/ao_bg_logo2.png') no-repeat;
  margin-bottom: 50px;
}

div.swiper-wrapper div.mv_link {
  width: 1920px;
  height: 550px;
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/mv_main_banner06.png') center 0 no-repeat;
}

div.swiper-wrapper div.mv_link div.text_wrap {
  margin-top: -170px;
}

div.swiper-wrapper p.mv_logo {
  width: 172px;
  height: 95px;
  background: url('../images/mv_bg_logo.png') no-repeat;
  margin-bottom: 50px;
}

div.swiper-button-prev {
  left: 120px;
  margin-top: -45px;
  width: 40px;
  height: 80px;
  background: url('../images/btn_prev.png') no-repeat;
  opacity: 0;
}

div.swiper-button-prev::after {
  content: '';
}

div.swiper-button-next {
  right: 120px;
  margin-top: -45px;
  width: 40px;
  height: 80px;
  background: url('../images/btn_next.png') no-repeat;
  opacity: 0;
}

div.swiper-button-next::after {
  content: '';
}

div.swiper-pagination {
  bottom: 24px !important;
}

div.mySwiper:hover div.swiper-button-prev {
  opacity: 1;
}

div.mySwiper:hover div.swiper-button-next {
  opacity: 1;
}

div.swiper-pagination .swiper-pagination-bullet {
  width: 120px;
  height: 6px;
  background: #3e4043;
  border-radius: 0;
  opacity: 1;
}

div.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
  background: #0077ff;
}

div.cont_box {
  width: 100%;
  /* height: 965px; */
  background: #1d1f23;
  margin-top: -21px;
  padding-bottom: 80px;
}

div.cont_box div.cont_in {
  width: 1196px;
  margin: 0 auto;
}

div.cont_box div.cont_in h1 {
  padding-top: 50px;
  padding-left: 5px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

div.cont_box div.cont_in div {
  position: relative;
  width: 282px;
  height: 368px;
  display: inline-block;
  margin: 0 7px;
  margin-bottom: 14px;
}

div.cont_box div.cont_in div a {
  display: block;
  width: 100%;
  height: 100%;
}

div.cont_box div.cont_in div p {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  margin: 0;
}

div.cont_box div.cont_in div p a {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  left: 50%;
  margin-left: -99px;
  display: block;
  width: 198px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0077ff;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 44px;
  cursor: pointer;
}

div.cont_box div.cont_in div:hover p {
  opacity: 1;
}

div.cont_box div.cont_in div.dk_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_dk.jpg') no-repeat;
}
div.cont_box div.cont_in div.gz_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_gz.jpg') no-repeat;
}
div.cont_box div.cont_in div.ao_cont2 {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_aojp.jpg') no-repeat;
}
div.cont_box div.cont_in div.ao_cont1 {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_aoeu.jpg') no-repeat;
}
div.cont_box div.cont_in div.ad_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_ag.jpg') no-repeat;
}
div.cont_box div.cont_in div.ad_cont2 {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_ad.jpg') no-repeat;
}
div.cont_box div.cont_in div.mv_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_mv.jpg') no-repeat;
}
div.cont_box div.cont_in div.fh_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_fh.jpg') no-repeat;
}
div.cont_box div.cont_in div.sr_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_sr.jpg') no-repeat;
}
div.cont_box div.cont_in div.kr_cont {
  background: url('https://web-files-cdn.masangsoft.com/_Support/images/poster_kr.jpg') no-repeat;
}

footer {
  position: relative;
  z-index: 5;
  /* height: 400px; */
  background: #000;
  margin-top: -18px;
  padding: 10px;
}

footer div.footer_in {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

footer ul {
  position: relative;
  top: 45px;
  padding-left: 0;
  text-align: center;
}

footer ul li {
  position: relative;
  display: inline-block;
  margin: 0 20px;
}

footer ul li:after {
  content: '';
  display: block;
  clear: both;
  width: 1px;
  height: 15px;
  background: #4c4c4c;
  position: absolute;
  top: 2px;
  right: -22px;
}

footer ul li:last-child:after {
  width: 0;
}

footer ul li a {
  display: block;
  color: #4c4c4c;
  font-size: 15px;
  cursor: pointer;
}

footer select {
  position: absolute;
  top: 95px;
  left: 50%;
  margin-left: -95px;
  width: 190px;
  height: 44px;
  background: #1d1f23;
  color: #808080;
  border: none;
  padding-left: 20px;
  appearance: none;
  background: url('../images/footer_arrow.png') no-repeat;
  outline: none;
}

footer select option {
  color: #808080;
}

footer p {
  font-size: 14px;
  color: #4c4c4c;
  text-align: center;
  padding-top: 140px;
  box-sizing: border-box;
}

footer p.footer_logo {
  position: absolute;
  top: 230px;
  left: 50%;
  margin-left: -68.5px;
  width: 137px;
  height: 46px;
  background: url('../images/footer_logo.png') no-repeat;
  padding: 0;
}

footer p.copyright {
  font-size: 14px;
  color: #343639;
  text-align: center;
  padding: 88px 0 30px;
}

.m_menu,
.m_menu_bg,
.m_user {
  display: none;
}

.sub_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
}

/*20220902 서포트페이지 탭 너비*/
#startchange .clearfix .board>div {
  max-width: 952.5px !important;
}

#startchange .clearfix .board>div ul.cTab li:last-child {
  margin: 0 !important;
}

#startchange .clearfix .board>div ul.cTab li {
  margin: 0 1.5px 0 0;
}

@media (min-width: 1024px) { /* PC 해상도 기준 */
  .m_menu,
  .m_menu_bg,
  .m_user {
      display: none !important;
  }
}

@media screen and (max-width: 1600px) {
  div.swiper-button-prev {
    left: 40px;
  }

  div.swiper-button-next {
    right: 40px;
  }
}

@media screen and (max-width: 1200px) {
  div.cont_box div.cont_in {
    width: 896px;
  }

  footer div.footer_in {
    width: auto;
  }

  @media screen and (max-width: 900px) {
    div.mySwiper {
      display: none;
    }

    div.cont_box {
      margin-top: 0;
      /* height: 1310px; */
      padding-bottom: 30px;
    }

    div.cont_box div.cont_in {
      width: 596px;
    }

    div.cont_box div.cont_in h1 {
      text-align: center;
      padding-top: 20px;
      color: #fff;
      font-size: 26px;
      font-weight: 400;
      height: 40px;
      line-height: 52px;
    }
    nav.nav {
      padding: 0 15px !important;
    }

    nav.nav a.logo {
      left: 50%;
      margin-left: -50.5px !important;
    }

    .m_menu,
    .m_menu_bg,
    .m_user {
      display: block;
    }

    nav.nav div.nav-in ul {
      display: none;
    }

    nav.nav a.logo {
      margin: 0 auto;
      transform: scale(1);
      padding-top: 90px;
    }

    div.m_user {
      position: absolute;
      top: 12px;
      right: 15px;
      z-index: 99999;
      width: 22px;
      height: 25px;
      background: url('../images/m_icon_account.png') no-repeat;
      cursor: pointer;
    }

    div.m_user a {
      display: block;
      width: 100%;
      height: 100%;
    }

    div.m_user div.dropdown {
      display: none;
      position: absolute;
      top: 35px;
      right: -18px;
      width: 224px;
      height: 168px;
      background: url('https://web-files-cdn.masangsoft.com/_Support/images/m_login.png') no-repeat;
      font-size: 0;
    }

    div.m_user:hover div.dropdown {
      display: block;
    }

    div.m_user div.dropdown a {
      display: block;
      height: 79px;
    }

    div.m_user div.dropdown a:first-child {
      margin-top: 9px;
    }

    div.m_menu {
      position: absolute;
      top: 12px;
      left: 15px;
      z-index: 99999;
      width: 32px;
      height: 24px;
      background: url('../images/icon_menu.png') no-repeat;
      cursor: pointer;
    }

    div.m_menu_bg {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100000;
      width: 100%;
      height: 100%;
      background: #141414;
    }

    div.m_menu_bg a.m_logo {
      position: absolute;
      top: 15px;
      left: 15px;
      display: block;
      width: 105px;
      height: 28px;
      background: url('https://web-files-cdn.masangsoft.com/_Support/images/msg_01.png') 0 0 no-repeat;
    }

    div.m_menu_bg p.m_close {
      position: absolute;
      top: 0px;
      right: 15px;
      width: 26px;
      height: 26px;
      cursor: pointer;
      background: url('https://web-files-cdn.masangsoft.com/_Support/images/btn_close.png') 0 0 no-repeat;
    }

    div.nav-background {
      z-index: 2;
      height: 1440px;
    }

    div#Accordion_wrap div.text {
      font-size: 24px;
      width: 100%;
      height: 58px;
      color: #ffffff;
      line-height: 68px;
      box-sizing: border-box;
      cursor: pointer;
      text-align: left;
      padding: 0 15px;
    }

    div#Accordion_wrap div.text a {
      display: block;
      color: #d9d9d9;
    }

    div.games_menu {
      /* height: 450px; */
      padding: 0;
    }

    div.games {
      margin-top: 36px;
      font-size: 24px;
      width: 538px;
      height: 88px;
      color: #d9d9d9;
      line-height: 88px;
      box-sizing: border-box;
      cursor: pointer;
    }

    div.games_menu div.dion_menu {
      position: relative;
      width: 100%;
      height: 70px;
      background: #1d1e21;
      border-top: 1px solid #252428;
      border-bottom: 1px solid #252428;
    }

    div.games_menu div.dion_menu p.dion_logo {
      position: absolute;
      top:-3px;
      left: 44px;
      width: 42px;
      height: 42px;
    }

    div.games_menu div.m_dk_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') 0 -158px no-repeat;
    }
    div.games_menu div.m_gz_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -42px -158px no-repeat;
    }
    div.games_menu div.m_ao_menu1 p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -84px -158px no-repeat;
    }
    div.games_menu div.m_ao_menu2 p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -126px -158px no-repeat;
    }
    div.games_menu div.m_ad_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -168px -158px no-repeat;
    }
    div.games_menu div.m_ad_menu1 p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -210px -158px no-repeat;
    }
    div.games_menu div.m_mv_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -252px -158px no-repeat;
    }
    div.games_menu div.m_fh_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -294px -158px no-repeat;
    }
    div.games_menu div.m_sr_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -336px -158px no-repeat;
    }
    div.games_menu div.m_kr_menu p.dion_logo {
      background: url('http://web-files-cdn.masangsoft.com/_Support/images/gnbGames_01.png') -378px -158px no-repeat;
    }

    div.games_menu div.dion_menu p.dion_ttl {
      position: absolute;
      top: 11px;
      left: 130px;
      font-size: 20px;
      color: #cccccc;
    }

    div.games_menu div.m_mv_menu p.dion_ttl {
      top: 3px;
      text-align: left;
    }

    div.games_menu div.dion_menu a.dion_link {
      position: absolute;
      top: 15px;
      right: 34px;
      display: block;
      width: 154px;
      height: 40px;
      background: #141414;
      border: 1px solid #cccccc;
      color: #cccccc;
      text-align: center;
      line-height: 40px;
      box-sizing: border-box;
      font-size: 15px;
    }

    a.m_link {
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 88px;
      background: #1d1e21;
      font-size: 18px;
      color: #fff;
      box-sizing: border-box;
      padding-left: 30px;
      padding-top: 16px;
      text-align: left;
    }

    a.m_link span {
      display: block;
      font-size: 18px;
      color: #808080;
    }
  }

  @media screen and (max-width: 834px) {
    footer select {
      top: 122px;
    }

    footer p.footer_logo {
      top: 260px;
    }

    footer p.copyright {
      padding-top: 100px;
    }
  }

  @media screen and (max-width: 620px) {
    div.cont_box {
      /* height: 1180px; */
      padding-bottom: 30px;
    }

    div.cont_box div.cont_in {
      width: 528px;
    }

    div.cont_box div.cont_in div {
      width: 248px;
      height: 324px;
      background-size: contain !important;
    }
  }

  @media screen and (max-width: 530px) {
    div.games_menu div.dion_menu a.dion_link {
      width: 125px;
      font-size: 13px;
      right: 15px;
    }

    div.games_menu div.dion_menu p.dion_logo {
      left: 15px;
    }

    div.games_menu div.dion_menu p.dion_ttl {
      left: 72px;
      font-size: 16px;
      line-height: 14px;
    }

    div.cont_box {
      /* height: 900px; */
      padding-bottom: 30px;
    }

    div.cont_box div.cont_in {
      width: 388px;
    }

    div.cont_box div.cont_in div {
      width: 178px;
      height: 232px;
    }

    footer ul li a {
      font-size: 13px;
    }

    footer p.copyright {
      padding: 76px 0 10px;
    }
    footer p {
      font-size: 14px;
      color: #4c4c4c;
      text-align: center;
      padding-top: 96px;
      box-sizing: border-box;
      padding: 96px 5px 0 5px;
     }
    footer ul {
      position: relative;
      top: 16px;
      padding-left: 0;
      text-align: center;
     }
    footer p.footer_logo {
      top: 226px;
    }
    footer select {
      top: 77px;
    }
  }
  @media screen and (max-width: 390px) {
    footer select {
      top: 123px;
    } 
    footer p.footer_logo {
      top: 273px;
  }
  }
}