@charset "utf-8";

html,
body {
  height: 100%;
}
.wrap {
  min-height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.header_wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 88px;
  background-image: linear-gradient(#1f0f0f, #110909);
  border-top: solid 1px #4f1c1c;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  z-index: 99;
  border-bottom: solid 1px #331a1a;
}
.header_wrap .inner_header {
  width: 100%;
  max-width: calc(100% - 230px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 15px;
}
.header_wrap .inner_header .logo {
  position: relative;
  width: 140px;
  transform: translateX(-10%);
}
.header_wrap .inner_header .logo span {
  color: #ffdcdc;
  font-size: 20px;
}
.header_wrap .inner_header .logo a {
  display: block;
  font-size: 0;
}
.header_wrap .inner_header .menu_area {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_wrap .inner_header .menu_area .navi {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
.header_wrap .inner_header .menu_area .navi li {
  height: 100%;
}
.header_wrap .inner_header .menu_area .navi li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
  color: #ffdcdc;
  white-space: nowrap;
  transform: skew(-15deg);
}
.header_wrap .inner_header .menu_area .navi li a:before {
  content: "";
  pointer-events: none;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: calc(100% - 7px);
  left: 0;
  bottom: 0;
  background-image: linear-gradient(#4c2525, #341818, #291414);
  transition: 0.3s;
  opacity: 0;
}
.header_wrap .inner_header .menu_area .navi li a:hover:before {
  opacity: 1;
}
.header_wrap .inner_header .menu_area .navi li a i {
  margin-right: 8px;
}
.header_wrap .inner_header .menu_area .navi li a:hover {
  color: #fff;
  text-shadow: 0 1px 0 #000, 0 0 8px rgba(255, 255, 255, 0.5);
}
.header_wrap .inner_header .join_area {
  margin-left: auto;
}
.header_wrap .inner_header .join_area .desktop .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: skew(-15deg);
  font-size: 0;
}
.header_wrap .inner_header .join_area .desktop .form-group .myinfo {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header_wrap .inner_header .join_area .desktop .form-group .myinfo a {
  display: block;
  margin-right: 5px;
  font-weight: bold;
}
.header_wrap .inner_header .join_area .desktop .form-group .myinfo a img {
  padding-right: 3px;
}
.header_wrap .inner_header .join_area .desktop .form-group .myinfo a span {
  font-weight: normal;
  padding-left: 3px;
}
.header_wrap .inner_header .join_area .desktop button {
  width: 120px;
  height: 40px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 14px;
}
.mob_all_menu {
  display: none;
  font-size: 20px;
  color: #ffcfcf;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
}
.btn-yellow {
  color: #fffffff2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  background-color: #df4b4b;
  background-image: linear-gradient(#c34a4a, #6c1717);
  border: solid 1px #cb5656;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #1c0d0d;
  font-family: noto sans kr, sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transform: skew(-15deg) !important;
}
.btn-gold {
  color: rgba(0, 0, 0, 0.75);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  background-color: #de8f8f;
  background-image: linear-gradient(#de8f8f, #994343);
  border: solid 1px #de8f8f;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #1d0e0e;
  font-family: noto sans kr, sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transform: skew(-15deg) !important;
}
.btn-red {
  color: #fff;
  background-color: #591212;
  background-image: linear-gradient(#7b6565, #211717);
  border: solid 1px #6c5d5d;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #1c0d0d;
  text-shadow: 0 1px 0 rgb(0 0 0);
  position: relative;
  z-index: 1;
  transform: skew(-15deg) !important;
}
.btn-yellow:before,
.btn-red:before,
.btn-gold:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  z-index: -1;
  border-radius: 4px;
  border: solid 1px #1c0d0d;
  opacity: 0;
}
.btn-yellow:before {
  background-image: linear-gradient(#e15454, #b94242);
}
.btn-red:before {
  background-image: linear-gradient(#957f7f, #362727);
}
.btn-yellow:hover:before,
.btn-red:hover:before,
.btn-gold:hover:before {
  opacity: 1;
}
.btn-red:hover {
  background-color: #b59a9a;
  border-color: #9f9292;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 0 1px #1c0d0d, 0 0 8px rgba(255, 255, 255, 0.4);
}
.btn-gold:hover {
  background-color: #f6eedf;
  border-color: #f6eedf;
  box-shadow: inset 0 0 0 1px #1d160e, 0 0 10px rgba(255, 255, 255, 0.3);
}
.btn-yellow:hover {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  background-color: #f66;
  border-color: #ff4d4d;
  box-shadow: inset 0 0 0 1px #1d160e, 0 0 8px rgba(255, 255, 255, 0.4);
}

.layer_wrap {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.layer_wrap.active {
  display: block;
}
.layer_wrap .dimm {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.6;
}
.layer_wrap .layer_container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 840px;
  max-height: 90vh;
}
.layer_wrap.mypage .layer_container {
  width: 1205px;
}
.layer_wrap .layer_container .layer_content {
  position: relative;
}
.layer_wrap .layer_container .layer_content:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  pointer-events: none;
  background-position: bottom right;
  background-image: url(../images/modal-bg-right.png);
}
.layer_wrap .layer_container .layer_content > .header {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, black, #1b2430);
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  text-align: center;
  color: white;
  font-weight: bold;
}
.layer_wrap .layer_container .layer_content > .header .close_btn {
  position: absolute;
  border: 0;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background-size: 25px;
  background: url(../images/icon-close.png) 0 0 no-repeat;
}

.layer_wrap .layer_container .layer_content .content {
  width: 100%;
  min-height: 500px;
  max-height: calc( 90vh - 50px );
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  position: relative;
  background: url(../images/modal-bg.png) top 2px center no-repeat;
  background-color: #121212;
  overflow-y: auto;
}

.layer_wrap .layer_container .layer_content .content::-webkit-scrollbar {width: 8px;height:8px;}
.layer_wrap .layer_container .layer_content .content::-webkit-scrollbar-thumb {background-color: rgba(255 255 255 / 60%);border-radius: 10px;background-clip: padding-box;border: 2px solid transparent;}
.layer_wrap .layer_container .layer_content .content::-webkit-scrollbar-track {background-color: rgba(0 0 0 / 10%);border-radius: 10px;box-shadow: inset 0px 0px 3px white;}
.layer_wrap .layer_container .layer_content .content:-webkit-input-placeholder, :-ms-placeholder, :-moz-placeholder, ::placeholder { }

.layer_wrap .layer_container .layer_content .content .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
  margin-top: 15px;
  overflow: hidden;
}
.layer_wrap .layer_container .layer_content .content .title .title_ani {
  animation: mdlTitleAnim 0.8s ease 1;
  text-align: center;
}
@keyframes mdlTitleAnim {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.layer_wrap .layer_container .layer_content .content .title .en {
  text-shadow: 0 3px 2px #000000;
  color: #ffffff;
  font-size: 22px;
  font-family: SCDream6;
  text-transform: uppercase;
}
.layer_wrap .layer_container .layer_content .content .title .ko {
  color: #ffbb7f;
  font-size: 35px;
  text-shadow: 0 3px 2px #000000;
  font-family: SCDream6;
}
.layer_wrap .layer_container .layer_content .content .cont {
  position: relative;
  padding: 40px 75px;
  overflow: hidden;
  z-index: 2;
}
.layer_wrap .layer_container .layer_content .content .cont .cont_ani {
  animation: modalTabAnim 0.8s 0s ease 1 backwards;
}
.layer_wrap.slot_wrap .layer_container {
  width: 100%;
  max-width:1200px;
}
.layer_wrap.slot_wrap .layer_container .layer_content:after{
	background: none;
}
.layer_wrap.slot_wrap .layer_container .layer_content .content{
	height: 635px;
}
@keyframes modalTabAnim {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.form_area .custom_input {
  width: 100%;
}
.form_area .custom_input + .custom_input {
  margin-top: 30px;
}
.modal-btn-foot {
  width: 100%;
  height: auto;
  float: left;
  margin: 60px 0 20px 0;
  text-align: center;
}

.modal-btn-foot .btn-cont {
  width: auto;
  display: inline-block;
}

.modal-btn-foot .btn-cont button {
  width: 150px;
  height: 60px;
  float: left;
  border: none;
  border: 1px solid;
  border-top-color: #dcbf9d;
  border-left-color: #b69a76;
  border-right-color: #b69a76;
  border-bottom-color: #7f643e;
  background-color: #df801f;
  margin: 0 8px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #4e2800;
  font-size: 18px;
  font-family: SCDream6;
  transition: 0.3s;
  box-shadow: 0 3px 3px #000000;
}

.modal-btn-foot .btn-cont button span {
  font-family: SCDream6;
  z-index: 1;
}

.modal-btn-foot .btn-cont button.red {
  background-color: #bd1713;
  color: #fff;
  border-top-color: #fe8383;
  border-left-color: #db4f4f;
  border-right-color: #db4f4f;
  border-bottom-color: #a60202;
}

.modal-btn-foot .btn-cont button.green {
  background-color: #3bb33b;
  color: #073807;
  border-top-color: #8dff8d;
  border-left-color: #69ea69;
  border-right-color: #69ea69;
  border-bottom-color: #116111;
}

.modal-btn-foot .btn-cont button i {
  margin-right: 3px;
}

.modal-btn-foot .btn-cont button:hover {
  color: #fff;
}
.mypage_content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.mypage_content .mypage_navi {
  width: 130px;
  padding: 10px;
  position: relative;
}
.mypage_content .mypage_navi .nav-btn {
  width: 100%;
  height: 78px;
  float: left;
  background-image: linear-gradient(#2c2d2f, #2c2d2f);
  border: none;
  color: #9c9c9e;
  font-size: 12px;
  font-family: SCDream6;
  position: relative;
  z-index: 1;
  border-right: 1px solid #1a1a1c;
  border-left: 1px solid #3b3b3d;
  border-top: 2px solid #4c4d4f;
  /* border-radius: 30px 5px 35px 5px; */
  border-radius: 20px 20px 5px 5px;
  padding-bottom: 2px;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.mypage_content .mypage_navi .nav-btn:before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: 0.3s;
  opacity: 1;
  top: 0;
  background-image: linear-gradient(#37383a, #2c2d2f);
}
.mypage_content .mypage_navi .nav-btn.active {
  color: #ffb219;
  text-shadow: 0 0 15px rgb(225 183 19);
  background-image: linear-gradient(#eaa123, #97580a);
  margin: -5px 0;
  z-index: 2;
}
.mypage_content .mypage_navi .nav-btn.active:before {
  opacity: 0;
}
.mypage_content .mypage_navi .nav-btn.active button {
  color: #fff;
  text-shadow: 0 0 15px rgb(255, 117, 25);
}
.mypage_content .mypage_navi .nav-btn button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 1px #330000;
}
.mypage_content .mypage_navi .nav-btn button .icon {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.mypage_content .mypage_navi .nav-btn button i {
  font-size: 24px;
}
.mypage_content .mypage_navi .nav-btn button .text {
  font-family: "SCDream4";
}
.mypage_cont {
  width: 100%;
  position: relative;
  z-index: 10;
}
.mypage_cont .title {
  width: 100%;
}
.layer_wrap.mypage .layer_container .layer_content .content .cont {
  padding: 15px 0 15px 30px;
}
.top_area {
  margin-bottom: 40px;
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 0 5px #000;
  overflow: hidden;
}
.top_area button {
  width: 100%;
  height: 40px;
  background-color: #2f2f2f;
  border: none;

  font-size: 12px;
  font-family: SCDream6;
  position: relative;
  z-index: 1;
  border-right: 1px solid #1a1a1c;
  border-left: 1px solid #3b3b3d;
  padding-bottom: 2px;
  transition: 0.3s;
  color: #f3d752;
  border-top: 2px solid #f3d752;
  text-shadow: 0 0 15px rgba(243, 215, 82, 0.55);
}
.form-container {
  width: 100%;
  float: left;
}

.form-container .form-group {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 110px;
  margin-bottom: 30px;
}

.form-container .form-group p {
  margin: 0;
}

.form-container .form-group .labels {
  width: 110px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "SCDream4";
}

.form-container .form-group .labels p {
  color: #ffffff;
  font-size: 16px;
  text-shadow: 0 2px 1px #000000;
}

.form-container .form-group .infos {
  width: 100%;
  float: left;
  text-align: left;
}

.form-container .form-group .infos p {
  color: #ff9c0e;
  font-size: 22px;
  font-family: SCDream6;
  margin-top: 8px;
}
.player-balance {
  width: 30%;
  float: left;
}

.form-container .form-group .infos input,
.form-container .form-group .infos select {
  width: 100%;
  height: 50px;
  float: left;
  background-color: #fff;
  border: none;
  color: #000;
  font-size: 17px;
  font-family: SCDream6;
  padding: 0 20px;
  border-radius: 10px;
}

.form-container .form-group .infos input::placeholder {
  color: #4f4f4f;
}

.form-container .form-group.w-btn .infos input {
  width: 75%;
}

.form-container .form-group.w-btn .infos button {
  width: 24%;
  height: 50px;
  border: 1px solid;
  border-top-color: #dcbf9d;
  border-left-color: #b69a76;
  border-right-color: #b69a76;
  border-bottom-color: #7f643e;
  padding: 0;
  white-space: nowrap;
  margin-left: 1%;
  border-radius: 10px;
  color: #4e2800;
  font-size: 18px;
  font-family: SCDream6;
  background-color: #df801f;
  transition: 0.3s;
  box-shadow: 0 3px 3px #000000;
}

.form-container .form-group.w-btn .infos button:hover {
  color: #4c3709;
  background-color: #e2a417;
}

.form-container .form-group .infos label {
  width: 100%;
  height: 50px;
  float: left;
  position: relative;
}

.form-container .form-group .infos label select {
  width: 100%;
  height: 100%;
  float: left;
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 17px;
  padding: 0 10px;
}

.form-container .form-group .infos label i {
  right: 3px;
  top: 8px;
  color: #ccc;
  font-size: 26px;
  pointer-events: none;
  position: absolute;
}

.form-container .form-group .infos .btn-grp {
  width: 100%;
  float: left;
  margin-top: 10px;
}

.form-container .form-group .infos .btn-grp button {
  width: 15.83%;
  height: 35px;
  float: left;
  margin: 0 0.5%;
  background-color: #656565;
  border: none;
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
  padding: 0;
  border-radius: 3px;
}

.form-container .form-group .infos .btn-grp button:hover {
  background-color: #8e8e8e;
  color: #000;
}

.form-container .form-group .infos .btn-grp button:first-child {
  margin-left: 0;
}

.form-container .form-group .infos .btn-grp button:last-child {
  margin-right: 0;
  background-color: #da2430;
  color: #fff;
  font-family: SCDream6;
}

.form-container .form-group .infos .btn-grp button:last-child:hover {
  background-color: #ff4242;
}

.deposit-ask {
  width: 100%;
  height: 80px;
  float: left;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  font-family: "SCDream4";
}

.deposit-ask button {
  width: 140px;
  height: 35px;
  background-color: #ffe054;
  color: #000;
  font-size: 14px;
  border-radius: 3px;
  border: none;
  transition: 0.3s;
  font-family: "SCDream4";
}

.deposit-ask button i {
  margin-right: 5px;
}

.deposit-ask p {
  color: #fff;
  font-size: 12px;
  margin-left: 20px;
}

.deposit-ask button:hover {
  background-color: #ff972c;
}

.modal-btn-foot {
  width: 100%;
  height: auto;
  float: left;
  margin: 30px 0 20px 0;
  text-align: center;
}

.modal-btn-foot .btn-cont {
  width: auto;
  display: inline-block;
}

.modal-btn-foot .btn-cont button {
  width: 150px;
  height: 60px;
  float: left;
  border: none;
  border: 1px solid;
  border-top-color: #dcbf9d;
  border-left-color: #b69a76;
  border-right-color: #b69a76;
  border-bottom-color: #7f643e;
  background-color: #df801f;
  margin: 0 8px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #4e2800;
  font-size: 18px;
  font-family: SCDream6;
  transition: 0.3s;
  box-shadow: 0 3px 3px #000000;
}

.modal-btn-foot .btn-cont button span {
  font-family: SCDream6;
  z-index: 1;
}

.modal-btn-foot .btn-cont button.red {
  background-color: #bd1713;
  color: #fff;
  border-top-color: #fe8383;
  border-left-color: #db4f4f;
  border-right-color: #db4f4f;
  border-bottom-color: #a60202;
}

.modal-btn-foot .btn-cont button.green {
  background-color: #3bb33b;
  color: #073807;
  border-top-color: #8dff8d;
  border-left-color: #69ea69;
  border-right-color: #69ea69;
  border-bottom-color: #116111;
}

.modal-btn-foot .btn-cont button i {
  margin-right: 3px;
}

.modal-btn-foot .btn-cont button:hover {
  color: #fff;
}
.ui.button {
  cursor: pointer;
  display: inline-block;
  min-height: 1em;
  outline: none;
  border: none;
  vertical-align: baseline;
  background: #e0e1e2 none;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin: 0em 0.25em 0em 0em;
  padding: 0.78571429em 1.5em 0.78571429em;
  text-transform: none;
  text-shadow: none;
  font-weight: bold;
  line-height: 1em;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  border-radius: 0.28571429rem;
  -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  will-change: "";
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.ui.teal.buttons .button,
.ui.teal.button {
  background-color: #00b5ad;
  color: #ffffff;
  text-shadow: none;
  background-image: none;
}

.ui.teal.button {
  -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}

.ui.teal.buttons .button:hover,
.ui.teal.button:hover {
  background-color: #009c95;
  color: #ffffff;
  text-shadow: none;
}

.ui.teal.buttons .button:focus,
.ui.teal.button:focus {
  background-color: #008c86;
  color: #ffffff;
  text-shadow: none;
}

.ui.teal.buttons .button:active,
.ui.teal.button:active {
  background-color: #00827c;
  color: #ffffff;
  text-shadow: none;
}

.ui.teal.buttons .active.button,
.ui.teal.buttons .active.button:active,
.ui.teal.active.button,
.ui.teal.button .active.button:active {
  background-color: #009c95;
  color: #ffffff;
  text-shadow: none;
}
.mypage_cont .tab_cont {
  display: none;
}
.mypage_cont .tab_cont.active {
  display: block;
}

.ui.blue.buttons .button,
.ui.blue.button {
  background-color: #2185d0;
  color: #ffffff;
  text-shadow: none;
  background-image: none;
}
input[type="date"] {
  height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  width: 145px;
  border: 0;
}

.bs-table {
  width: 100%;
  margin-top: 14px;
}

.bs-table thead {
  background-color: #2f2e2d;
}

.bs-table thead th {
  height: 40px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.bs-table thead th:first-child {
  border-radius: 5px 0 0 0;
}

.bs-table thead th:last-child {
  border-radius: 0 5px 0 0;
}

.bs-table tr td {
  height: 44px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: solid 1px #3a3a3a;
  padding: 1px;
  transition: 0.3s;
}

.bs-table tr:hover td {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ff7745;
}

.bs-table tbody tr:last-child td {
  border-bottom: none;
}

.bs-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.bs-table tbody tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.bs-table tr td.count {
  /*width:10%;*/
}

.bs-table tr td.title {
  text-align: left;
  padding: 0 10px;
  cursor: pointer;
}

.bs-table tr td.date {
  /*width:20%;*/
  font-size: 12px;
}

.bs-table tr td.red {
  color: #fea304;
}

.bs-table td .level-txt {
  display: inline-block;
  width: 45px;
  text-align: left;
}

.bs-table tr td a {
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
  text-decoration: none;
}

.bs-table tr:hover td a {
  color: #ff7745;
}

.new-icon {
  width: 30px;
  height: 15px;
  border-radius: 2px;
  border: none;
  color: #000;
  font-size: 8px;
  background-color: #ffe25c;
  display: inline-block;
  vertical-align: middle;
}

/* -- Pagination -- */

.pagination > li > a {
  color: #fff;
  font-size: 14px;
  font-family: SCDream4;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  width: 25px;
  height: 25px;
  padding: 2px 0;
  margin: 0 2px;
  border-radius: 2px;
}

.pagination li.turn-pg a {
  color: #fff;
  padding: 0 0;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.15);
}

.pagination li.turn-pg a span {
  position: relative;
  top: -3px;
  font-family: Arial;
}

.pagination li.space-r a {
  margin-right: 7px;
}

.pagination li.space-l a {
  margin-left: 7px;
}

.pagination > li > a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pagination > li.turn-pg > a:hover {
  background-color: rgba(28, 165, 255, 0.3);
  border: 1px solid rgba(0, 166, 255, 0.3);
}

.pagination .active {
  color: #fff;
  background-color: #ff7519;
  border: none;
}

.pagination .active:hover {
  color: #000;
  background-color: rgba(255, 163, 4, 1);
  border: 1px solid rgba(255, 163, 4, 1);
}
.pagination_box {
  clear: both;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
._pagination {
  padding-left: 0;
  border-radius: 4px;
  display: inline-block;
  margin: 20px 0;
  text-align: center;
}
._pagination > li {
  display: inline;
  font-size: 0.9em;
  font-weight: bold;
}
._pagination > li > a,
._pagination > li > span {
  position: relative;
  float: left;
  padding: 2px 6px;
  line-height: 1.4;
  text-decoration: none;
  color: #5a5c6b;
  margin: 0 1px;
  /*border:1px solid darkgray;*/
}
._pagination > li:first-child > a,
._pagination > li:last-child > a {
  margin-left: 0;
  border-radius: 4px;
  border: 1px solid #a8a9b3;
}
._pagination > li.active a {
  /* background-color: cornflowerblue; */
  color: #fff;
  border: #f9f9f9 1px solid;
}

.ui.red.buttons .button,
.ui.red.button {
  background-color: #db2828;
  color: #ffffff;
  text-shadow: none;
  background-image: none;
}

.ui.red.button {
  -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}

.ui.red.buttons .button:hover,
.ui.red.button:hover {
  background-color: #d01919;
  color: #ffffff;
  text-shadow: none;
}

.ui.red.buttons .button:focus,
.ui.red.button:focus {
  background-color: #ca1010;
  color: #ffffff;
  text-shadow: none;
}

.ui.red.buttons .button:active,
.ui.red.button:active {
  background-color: #b21e1e;
  color: #ffffff;
  text-shadow: none;
}

.ui.red.buttons .active.button,
.ui.red.buttons .active.button:active,
.ui.red.active.button,
.ui.red.button .active.button:active {
  background-color: #d41515;
  color: #ffffff;
  text-shadow: none;
}

.ui.mini.buttons .button,
.ui.mini.buttons .or,
.ui.mini.button {
  font-size: 0.7571429rem;
}

.ui.tiny.buttons .button,
.ui.tiny.buttons .or,
.ui.tiny.button {
  font-size: 0.85714286rem;
}

.ui.small.buttons .button,
.ui.small.buttons .or,
.ui.small.button {
  font-size: 0.92857143rem;
}

.ui.large.buttons .button,
.ui.large.buttons .or,
.ui.large.button {
  font-size: 1.14285714rem;
}

.ui.big.buttons .button,
.ui.big.buttons .or,
.ui.big.button {
  font-size: 1.28571429rem;
}

.ui.huge.buttons .button,
.ui.huge.buttons .or,
.ui.huge.button {
  font-size: 1.42857143rem;
}

.ui.massive.buttons .button,
.ui.massive.buttons .or,
.ui.massive.button {
  font-size: 1.71428571rem;
}

.ui.primary.buttons .button,
.ui.primary.button {
  background-color: #2185d0;
  color: #ffffff;
  text-shadow: none;
  background-image: none;
}

.ui.primary.button {
  -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
  box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
}

.ui.primary.buttons .button:hover,
.ui.primary.button:hover {
  background-color: #1678c2;
  color: #ffffff;
  text-shadow: none;
}

.ui.primary.buttons .button:focus,
.ui.primary.button:focus {
  background-color: #0d71bb;
  color: #ffffff;
  text-shadow: none;
}

.ui.primary.buttons .button:active,
.ui.primary.button:active {
  background-color: #1a69a4;
  color: #ffffff;
  text-shadow: none;
}

.ui.primary.buttons .active.button,
.ui.primary.buttons .active.button:active,
.ui.primary.active.button,
.ui.primary.button .active.button:active {
  background-color: #1279c6;
  color: #ffffff;
  text-shadow: none;
}

.ui.basic.teal.label {
  background: none #ffffff;
  color: #00b5ad;
  border-color: #00b5ad;
  white-space: nowrap;
}

.ui.basic.teal.labels a.label:hover,
a.ui.basic.teal.label:hover {
  background-color: #ffffff;
  color: #009c95;
  border-color: #009c95;
}

.ui.label {
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
  margin: 0em 0.14285714em;
  background-color: #e8e8e8;
  background-image: none;
  padding: 0.5833em 0.833em;
  color: rgba(0, 0, 0, 0.6);
  text-transform: none;
  font-weight: bold;
  border: 0px solid transparent;
  border-radius: 0.28571429rem;
  -webkit-transition: background 0.1s ease;
  transition: background 0.1s ease;
  white-space: nowrap;
}

.ui.label:first-child {
  margin-left: 0em;
}

.ui.label:last-child {
  margin-right: 0em;
}

.ui.message {
  position: relative;
  min-height: 1em;
  margin: 1em 0em;
  background: #f8f8f9;
  padding: 1em 1.5em;
  line-height: 1.4285em;
  color: rgba(0, 0, 0, 0.87);
  -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
  border-radius: 0.28571429rem;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

.ui.message:first-child {
  margin-top: 0em;
}

.ui.message:last-child {
  margin-bottom: 0em;
}

.ui.info.message {
  background-color: #f8ffff;
  color: #276f86;
}

.ui.info.message,
.ui.attached.info.message {
  -webkit-box-shadow: 0px 0px 0px 1px #a9d5de inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 1px #a9d5de inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

.ui.info.message .header {
  font-size: 16px;
  color: #0e566c;
}

.ui.inverted.message,
.ui.black.message {
  background-color: #1b1c1d;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "SCDream4";
}

.ui.teal.labels .label,
.ui.teal.label {
  background-color: #00b5ad;
  border-color: #00b5ad;
  color: #ffffff;
}

.ui.red.labels .label,
.ui.red.label {
  background-color: #db2828;
  border-color: #db2828;
  color: #ffffff;
}
.inner_popup {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.inner_popup.active {
  display: block;
}
.inner_popup .pop_dimm {
  position: fixed;
  z-index: 20;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.6;
}
.inner_popup .pop_container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  z-index: 150;
  width: 500px;
  font-size: 14px;
}

.inner_popup .pop_container .pop_header {
  font-weight: 700;
  background: #fafafa;
  border-bottom: #eee 1px solid;
  border-radius: 2px 2px 0 0;
  background-color: #262626;
  color: white;
  padding: 16px 24px;
  position: relative;
}
.inner_popup .pop_container .pop_header .pop_close {
  width: 10px;
  height: 10px;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/pop_close.png) 0 0 no-repeat;
  background-size: cover;
  font-size: 0;
}
.inner_popup .pop_container .pop_cont {
  padding: 10px 24px;
  background-color: #000;
  color: #fff;
}
.inner_popup .pop_container .pop_footer {
  text-align: right;
  background-color: #262626;
  padding: 4px 0;
}
.inner_popup.member_popup .pop_container .pop_footer,
.inner_popup.qna_popup .pop_container .pop_footer {
  padding: 14px;
  text-align: left;
}
.inner_popup.member_popup .pop_container .pop_cont,
.inner_popup.qna_popup .pop_container .pop_cont {
  padding: 30px;
  background: #041c32;

  border-bottom: 1px solid #fff;
}
.inner_popup .pop_container .pop_footer .pop_close_text {
  color: #3593d2;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  min-width: 88px;
  min-height: 35px;
  text-align: center;
}

.ui.inverted.red.buttons .button,
.ui.inverted.red.button {
  background-color: transparent;
  -webkit-box-shadow: 0px 0px 0px 2px #ff695e inset;
  box-shadow: 0px 0px 0px 2px #ff695e inset;
  color: #ff695e;
}

.ui.inverted.red.buttons .button:hover,
.ui.inverted.red.button:hover,
.ui.inverted.red.buttons .button:focus,
.ui.inverted.red.button:focus,
.ui.inverted.red.buttons .button.active,
.ui.inverted.red.button.active,
.ui.inverted.red.buttons .button:active,
.ui.inverted.red.button:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
}

.ui.inverted.red.buttons .button:hover,
.ui.inverted.red.button:hover {
  background-color: #ff5144;
}

.ui.inverted.red.buttons .button:focus,
.ui.inverted.red.button:focus {
  background-color: #ff4335;
}

.ui.inverted.red.buttons .active.button,
.ui.inverted.red.active.button {
  background-color: #ff5144;
}

.ui.inverted.red.buttons .button:active,
.ui.inverted.red.button:active {
  background-color: #ff392b;
}
.qna_popup .custom_input {
  width: 100%;
}
.qna_popup .custom_input label {
  font-size: 13px;
  color: #fff;
  display: block;
  font-family: "SCDream4";
}
.qna_popup .custom_input input {
  font-size: 13px;
  height: 38px;
  padding: 0 14px;
  font-family: "SCDream4";
  border-radius: 4px;
  margin-top: 8px;
}
.qna_popup .custom_input textarea {
  font-size: 13px;
  padding: 0 14px;
  font-family: "SCDream4";
  width: 100%;
  height: 114px;
  padding: 10px;
  border-radius: 4px;
  margin-top: 8px;
}
.qna_popup .custom_input label.required:after {
  content: "*";
  color: #db2828;
  display: inline-block;
  vertical-align: top;
}
.qna_popup .custom_input + .custom_input {
  margin-top: 20px;
}
.money-list button {
  width: 13% !important;
}

.ui.table {
  width: 100%;
  background: #ffffff;
  margin: 1em 0em;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0.28571429rem;
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  border-collapse: separate;
  border-spacing: 0px;
}

.ui.table:first-child {
  margin-top: 0em;
}

.ui.table:last-child {
  margin-bottom: 0em;
}

.ui.celled.table tr th,
.ui.celled.table tr td {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
}

.ui.celled.table tr th:first-child,
.ui.celled.table tr td:first-child {
  border-left: none;
}
.ui.table thead th,
.ui.table th,
.ui.table td {
  color: white;
  border: 1px solid #064663;
}

/* 마이페이지 > 텍스트*/
.ui.selection.list .list > .item,
.ui.selection.list > .item {
  color: white;
}

.ui.form .eight.wide.field {
  width: 50%;
}

.ui.form input:not([type]),
.ui.form input[type="date"],
.ui.form input[type="datetime-local"],
.ui.form input[type="email"],
.ui.form input[type="number"],
.ui.form input[type="password"],
.ui.form input[type="search"],
.ui.form input[type="tel"],
.ui.form input[type="time"],
.ui.form input[type="text"],
.ui.form input[type="file"],
.ui.form input[type="url"] {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin: 0em;
  outline: none;
  -webkit-appearance: none;
  tap-highlight-color: rgba(255, 255, 255, 0);
  line-height: 1.21428571em;
  padding: 0.67857143em 1em;
  font-size: 1em;
  background: #ffffff;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
  border-radius: 0.28571429rem;
  -webkit-box-shadow: 0em 0em 0em 0em transparent inset;
  box-shadow: 0em 0em 0em 0em transparent inset;
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
  transition: color 0.1s ease, border-color 0.1s ease;
}
.ui.table thead th,
.ui.table th,
.ui.table td {
  color: white;
  border: 1px solid #064663;
}
.ui.table td {
  padding: 0.78571429em 0.78571429em;
  text-align: inherit;
}

.ui.table,
.ui.tab.segment,
.ui.table thead th,
.ui.table th,
.ui.table td {
  background: #1b2430;
}

ul.ui.list li,
ol.ui.list li,
.ui.list > .item,
.ui.list .list > .item {
  display: list-item;
  table-layout: fixed;
  list-style-type: none;
  list-style-position: outside;
  padding: 0.21428571em 0em;
  line-height: 1.14285714em;
}

.ui.label > .detail {
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  margin-left: 1em;
  opacity: 0.8;
}
.inner_popup.member_popup .pop_container {
  width: 600px;
}
.memo_message {
  padding: 30px;
  color: #fff;
  font-family: "SCDream4";
  background: #041c32;
}
.inner_popup.memo_popup01 .pop_container .pop_cont,
.inner_popup.memo_popup02 .pop_container .pop_cont {
  border-radius: 8px;
  padding: 0;
}
.uk-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6 */
  -webkit-appearance: none;
  border-radius: 0;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 0.875rem;
  /* 8 */
  line-height: 38px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color, border-color;
  font-family: "SCDream4";
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Hover */
.uk-button:hover {
  /* 9 */
  text-decoration: none;
}
/* Focus */
.uk-button:focus {
  outline: none;
}
.uk-button-primary {
  background-color: #1e87f0;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #0f7ae5;
  color: #fff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #0e6dcd;
  color: #fff;
}
.uk-button-default {
  background-color: transparent;
  color: #fff;
  border: 1px solid #e5e5e5;
  font-family: "SCDream4";
}
.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #1b2430;
  border-top: 1px solid #e5e5e5;
  font-family: "SCDream4";
}
.uk-text-right {
  text-align: right !important;
}
.layer_all_menu {
  display: block;
  background: #2a1717;
  -webkit-box-shadow: 0 0 12px #000;
  box-shadow: 0 0 12px #000;
  top: 0;
  right: -100%;
  border-radius: 4px;
  position: fixed;
  width: 260px;
  padding: 1rem;
  z-index: 1002;
  height: 100%;
  -webkit-transition: right 0.4s ease-in-out;
  transition: right 0.4s ease-in-out;
}
.layer_all_menu .dimm_menu {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

.layer_all_menu.active {
  display: block;
  right: 0;
}
.layer_all_menu.active .dimm_menu {
  display: block;
}
.layer_all_menu ul.menu_list > li button {
  width: 100%;
  height: 35px;
}
.layer_all_menu ul.menu_list > li + li {
  margin-top: 8px;
}
