* {
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
    font-family: 'Noto Sans KR', sans-serif;
    color: #cccccc;
    outline: 0px;
}

@font-face {
    font-family: 'Gmarket Sans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}


@font-face {
    font-family: 'Gmarket Sans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gmarket Sans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    /*background: #031124;*/
    background: #070a0f;;
}

body::-webkit-scrollbar {
  width: 8px;

}

body::-webkit-scrollbar-thumb {
  background: #262b32;
  
}
body::-webkit-scrollbar-track {
  background:#141921
  
}


div::-webkit-scrollbar {
  width: 8px;

}

div::-webkit-scrollbar-thumb {
  background: #262b32;
  
}
div::-webkit-scrollbar-track {
  background:#141921
  
}


.d-none {
    display: none;
}

ul,
li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
}

a {
    text-decoration: none;
}

@keyframes beat {
    to {
        transform: scale(1.0);
    }
}

@keyframes beat_sm {
    to {
        transform: scale(1.0);
    }
}

.loading_wave {
    display: none;
}

.loading .loading_wave {
    position: absolute;
    display: flex;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading_wave > .wave {
    width: 2px;
    height: 40px;
    background: linear-gradient(45deg, #5f91d8, #a6cbff);
    margin: 10px;
    animation: wave 0.5s linear infinite;
    border-radius: 20px;
}

.loading_wave > .wave:nth-child(2) {
    animation-delay: 0.05s;
}

.loading_wave > .wave:nth-child(3) {
    animation-delay: 0.1s;
}

.loading_wave > .wave:nth-child(4) {
    animation-delay: 0.15s;
}

.loading_wave > .wave:nth-child(5) {
    animation-delay: 0.2s;
}

.loading_wave > .wave:nth-child(6) {
    animation-delay: 0.25s;
}

.loading_wave > .wave:nth-child(7) {
    animation-delay: 0.3s;
}

.loading_wave > .wave:nth-child(8) {
    animation-delay: 0.35s;
}

.loading_wave > .wave:nth-child(9) {
    animation-delay: 0.4s;
}

.loading_wave > .wave:nth-child(10) {
    animation-delay: 0.45s;
}

@keyframes wave {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

/*
  TOUCH SCROLL CSS
*/
.touchscroll {
    user-select: none;
}

.touchscroll * {
    user-select: none;
    -webkit-user-drag: none;
}

.touchscroll.horizontal {
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.touchscroll.vertical {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

.touchscroll.coordinate {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
}


/*-------------------------------------------------------
  BOARD_LIST CSS
-------------------------------------------------------*/

#board_list {
    display: block;
}

#board_list > .titlebox {
  display: flex;
  height: 62px;
  background: url(/images/1bet1/sports/title_effect_overlay.png), #07172d;
  background-position: left;
  background-size: none;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  margin-bottom:1px;
}

#board_list > .titlebox > .label {
  display: block;
  flex-grow: 1;
  line-height: 62px;
  font-size: 16px;
  margin-left: 20px;
  font-weight: 600;
  color: #cccccc;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}


#board_list > .titlebox > .label > span {
  display: inline-block;
  transform: scaleX(0.6);
  margin-left:10px;
  margin-right:10px;
}

#board_list > .filterbox {
    display: flex;
	margin:0;
}

#board_list > .filterbox > .expand {
    flex-grow: 1;
    margin-right: 1px;
    background: #031124;
}

#board_list > .filterbox > .inputgrp {
    display: flex;
}

#board_list > .filterbox > .inputgrp > label {
    width: 90px;
    text-align: center;
    background: #07172d;
    color: #888888;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-right: 1px;
}

#board_list > .filterbox > .inputgrp > input[type='date'] {
    width: 140px;
    padding-left: 10px;
    padding-right: 10px;
    background: #0d1d32;
    margin-right: 1px;
    border: 0px;
    font-size: 15px;
    color: #cccccc;
}

#board_list > .filterbox > .inputgrp > input[type='date']::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

#board_list > .filterbox > .inputgrp > select {
    width: 140px;
    padding-left: 10px;
    padding-right: 10px;
    background: #0d1d32;
    margin-right: 1px;
    border: 0px;
    font-size: 15px;
    color: #cccccc;
}

#board_list > .filterbox > .inputgrp > input {
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    background: #0d1d32;
    margin-right: 1px;
    border: 0px;
    font-size: 15px;
    color: #cccccc;
}

#board_list > .filterbox > .btn_submit {
    width: 90px;
    padding-left: 10px;
    padding-right: 10px;
    background: #07172d;
    border: 0px;
    font-size: 15px;
    color: #cccccc;
    cursor: pointer;
    transition: all 300ms;
}

#board_list > .filterbox > .btn_submit:hover {
    background: #29324b;
    color: #efefef;
    transition: all 300ms;
}

#board_list > .listbox {
    display: block;
    margin-top:1px;
}

#board_list > .listbox > .listhead {
    display: block;
}

#board_list > .listbox > .listhead > .row {
    display: flex;
    height: 50px;
    margin-left:-1px;
}

#board_list > .listbox > .listbody > .row {
    display: flex;
    height: 40px;
    margin-top:1px;
    margin-left:-1px;
    cursor:pointer;
}

#board_list > .listbox > .listhead .row .col {
    background: #29324b;
    line-height:50px;
    font-size:14px;
    color:#cccccc;
    font-weight: 600;
    text-align: center;
    margin-left:1px;
}

#board_list > .listbox > .listbody .row.odd .col {
    background: #07172d;
    line-height:40px;
    font-size:14px;
    color:#888888;
    margin-left:1px;
    transition: all 300ms;
}

#board_list > .listbox > .listbody .row.odd:hover .col {
    filter: brightness(1.8);
    transition: all 300ms;
}


#board_list > .listbox > .listbody .row.even .col {
    background: #0d1d32;
    line-height:40px;
    font-size:14px;
    color:#888888;
    margin-left:1px;
    transition: all 300ms;
}

#board_list > .listbox > .listbody .row.even:hover .col {
    filter: brightness(1.8);
    transition: all 300ms;
}


#board_list > .listbox > .listhead .row .col_1x,
#board_list > .listbox > .listbody .row .col_1x {
    text-align: center;
    flex-grow: 1;
    width:100%;
}

#board_list > .listbox > .listhead .row .col_2x,
#board_list > .listbox > .listbody .row .col_2x {
    width:200%;
    text-align: center;
    flex-grow: 1;
}

#board_list > .listbox .row > .col_chk {
    width:50px;
    flex-shrink: 0;
    position: relative;
}

#board_list > .listbox .row > .col_chk > input[type='checkbox'] {
    position: absolute;
    left:50%;
    top:50%;
    margin:0px;
    padding:0px;
    border:0px;
    transform: translate(-50%, -50%);
}

#board_list > .listbox .row > .col_wr_num {
    width:100px;
    flex-shrink: 0;
    text-align: center;
}

#board_list > .listbox .row > .col_wr_subject {
    flex-grow: 1;
    text-align: left;
    padding-left:12px;
    padding-right:12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	width:100%;
}


#board_list > .listbox .row > .col_wr_name {
    width:90px;
    flex-shrink: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#board_list > .listbox .row > .col_wr_datetime {
    width:150px;
    flex-shrink: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#board_list > .listbox .row > .col_wr_hit {
    width:80px;
    flex-shrink: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#board_list > .listbox .row > .col_btns {
    width:111px;
    flex-shrink: 0;
}

#board_list > .listbox .row > .col_btn_edit,
#board_list > .listbox .row > .col_btn_delete {
    display: block;
    width:55px;
    text-align: center;
    flex-shrink: 0;
    z-index:1;
    transition: all 300ms;
}

#board_list > .listbox > .listbody > .row > .col_btn_edit:hover,
#board_list > .listbox > .listbody > .row > .col_btn_delete:hover {
    background:#29324b;
    color:#ef7c00;
    transform: scale(1.1);
    z-index:10;
    transition: all 300ms;
}

#board_list > .listbox > .listtoolbar {
    display: flex;
    margin-top:1px;
    height:50px;
    justify-content: end;
}


#board_list > .listbox > .listtoolbar > .expand {
    flex-grow: 1;
    background:#031124;
}

#board_list > .listbox > .listtoolbar > .btn_write,
#board_list > .listbox > .listtoolbar > .btn_edit,
#board_list > .listbox > .listtoolbar > .btn_delete {
    width:127px;
    margin-left:1px;
    background:#0d1d32;
    font-size:15px;
    line-height:50px;
    text-align:center;
    color:#aaaaaa;
    cursor:pointer;
    position: relative;
    z-index:1;
}

#board_list > .listbox > .listtoolbar > .btn_write:hover,
#board_list > .listbox > .listtoolbar > .btn_edit:hover,
#board_list > .listbox > .listtoolbar > .btn_delete:hover {
    background:#29324b;
    color:#ffffff;
    z-index:10;
}

.listpagenation {
    display: flex;
    justify-content: center;
    margin-top:20px;
    height:50px;
    margin-bottom:20px;
}

.listpagenation > div {
    width:40px;
    height:40px;
    margin:5px;
    text-align: center;
    line-height:40px;
    font-size:14px;
    cursor:pointer;
}

.listpagenation > div > span {
    color:#cccccc;
}

.listpagenation > div.active {
    border:1px solid #ef7c00;
    border-radius:30px;
    line-height: 38px;
}

.listpagenation > div.active > span {
    color:#ef7c00;
    font-weight:600;
    line-height: 38px;
}

.listpagenation > div:hover {
    border:1px solid #efefef;
    background:#29324b;
    border-radius:30px;
    line-height: 38px;
}

.listpagenation > .btn_first,
.listpagenation > .btn_prev,
.listpagenation > .btn_next,
.listpagenation > .btn_last {
    background:#07172d;
    border-radius:10px;
    color:#888888;
}

.listpagenation > .btn_first > span,
.listpagenation > .btn_prev > span,
.listpagenation > .btn_next > span,
.listpagenation > .btn_last > span {
    display: inline-block;
    transform: scaleX(0.6);
}

.listpagenation > .btn_prev {
    margin-right:20px;
}

.listpagenation > .btn_next {
    margin-left:20px;
}

.listpagenation > .btn_first:hover,
.listpagenation > .btn_prev:hover,
.listpagenation > .btn_next:hover,
.listpagenation > .btn_last:hover {
    background:#29324b;
    border-radius:10px;
}


/*
    LOADING INFINITY
*/
  
  div.loading_infinity {
    display: none;
    position: absolute;
    left:50%;
    top:50%;
    width: 100px;
    height: 50px;
    transform: translate(-50%, -50%) scale(1.3);
  }
  
  div.loading_infinity p, 
  div.loading_infinity span {
    offset-path: path("M67.3,17.8c0-9.3-4.8-14.5-13.8-14.5C41.9,3.2,35.7,17,35.7,17s-6.2,13.8-17.8,13.8C10,30.8,4,25.5,4,17.7 C4, 9.6, 10, 3.2, 17.8, 3.2C29.4, 3.2, 35.7, 17, 35.7, 17s6.2, 13.8, 17.8, 13.8C61.4, 30.8, 67.3, 24.8, 67.3, 17.8z");
    position: absolute;
  }
  
  div.loading_infinity span {
    color: #fff;
    font-size: 12px;
    animation: loading_infinity_path 1.4s linear infinite;
  }
  
  div.loading_infinity p {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    opacity: 0;
    motion-rotation: auto 45deg;
    background: #fff;
    animation: loading_infinity_path 1.4s linear infinite, loading_infinity_dot linear forwards;
  }
  div.loading_infinity p:nth-of-type(1) {
    background: #bf4040;
    animation-delay: 0.015s;
  }
  div.loading_infinity p:nth-of-type(2) {
    background: #bf5540;
    animation-delay: 0.03s;
  }
  div.loading_infinity p:nth-of-type(3) {
    background: #bf6a40;
    animation-delay: 0.045s;
  }
  div.loading_infinity p:nth-of-type(4) {
    background: #bf8040;
    animation-delay: 0.06s;
  }
  div.loading_infinity p:nth-of-type(5) {
    background: #bf9540;
    animation-delay: 0.075s;
  }
  div.loading_infinity p:nth-of-type(6) {
    background: #bfaa40;
    animation-delay: 0.09s;
  }
  div.loading_infinity p:nth-of-type(7) {
    background: #bfbf40;
    animation-delay: 0.105s;
  }
  div.loading_infinity p:nth-of-type(8) {
    background: #aabf40;
    animation-delay: 0.12s;
  }
  div.loading_infinity p:nth-of-type(9) {
    background: #95bf40;
    animation-delay: 0.135s;
  }
  div.loading_infinity p:nth-of-type(10) {
    background: #80bf40;
    animation-delay: 0.15s;
  }
  div.loading_infinity p:nth-of-type(11) {
    background: #6abf40;
    animation-delay: 0.165s;
  }
  div.loading_infinity p:nth-of-type(12) {
    background: #55bf40;
    animation-delay: 0.18s;
  }
  div.loading_infinity p:nth-of-type(13) {
    background: #40bf40;
    animation-delay: 0.195s;
  }
  div.loading_infinity p:nth-of-type(14) {
    background: #40bf55;
    animation-delay: 0.21s;
  }
  div.loading_infinity p:nth-of-type(15) {
    background: #40bf6a;
    animation-delay: 0.225s;
  }
  div.loading_infinity p:nth-of-type(16) {
    background: #40bf80;
    animation-delay: 0.24s;
  }
  div.loading_infinity p:nth-of-type(17) {
    background: #40bf95;
    animation-delay: 0.255s;
  }
  div.loading_infinity p:nth-of-type(18) {
    background: #40bfaa;
    animation-delay: 0.27s;
  }
  div.loading_infinity p:nth-of-type(19) {
    background: #40bfbf;
    animation-delay: 0.285s;
  }
  div.loading_infinity p:nth-of-type(20) {
    background: #40aabf;
    animation-delay: 0.3s;
  }
  div.loading_infinity p:nth-of-type(21) {
    background: #4095bf;
    animation-delay: 0.315s;
  }
  div.loading_infinity p:nth-of-type(22) {
    background: #4080bf;
    animation-delay: 0.33s;
  }
  div.loading_infinity p:nth-of-type(23) {
    background: #406abf;
    animation-delay: 0.345s;
  }
  div.loading_infinity p:nth-of-type(24) {
    background: #4055bf;
    animation-delay: 0.36s;
  }
  div.loading_infinity p:nth-of-type(25) {
    background: #4040bf;
    animation-delay: 0.375s;
  }
  div.loading_infinity p:nth-of-type(26) {
    background: #5540bf;
    animation-delay: 0.39s;
  }
  div.loading_infinity p:nth-of-type(27) {
    background: #6a40bf;
    animation-delay: 0.405s;
  }
  div.loading_infinity p:nth-of-type(28) {
    background: #8040bf;
    animation-delay: 0.42s;
  }
  div.loading_infinity p:nth-of-type(29) {
    background: #9540bf;
    animation-delay: 0.435s;
  }
  div.loading_infinity p:nth-of-type(30) {
    background: #aa40bf;
    animation-delay: 0.45s;
  }
  div.loading_infinity p:nth-of-type(31) {
    background: #bf40bf;
    animation-delay: 0.465s;
  }
  div.loading_infinity p:nth-of-type(32) {
    background: #bf40aa;
    animation-delay: 0.48s;
  }
  div.loading_infinity p:nth-of-type(33) {
    background: #bf4095;
    animation-delay: 0.495s;
  }
  div.loading_infinity p:nth-of-type(34) {
    background: #bf4080;
    animation-delay: 0.51s;
  }
  div.loading_infinity p:nth-of-type(35) {
    background: #bf406a;
    animation-delay: 0.525s;
  }
  
  @keyframes loading_infinity_path {
    to {
      offset-distance: 100%;
    }
  }
  
  @keyframes loading_infinity_dot {
    to {
      opacity: 1;
    }
  }

 
@keyframes rotate{
	100% {
    	transform: rotate(360deg);
    }
}

/*---------------------------------------------------------
    BANNER_SMALL
---------------------------------------------------------*/
#banner_small {
  display: block;
}

#banner_small > .banneritem {
  display: block;
  margin-top:-1px;
  position: relative;
  width:320px;
  height:148px;
  cursor:pointer;
}

#banner_small > .banneritem > .off {
  display: block;
  position: absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
}

#banner_small > .banneritem > .on {
  display: block;
  position: absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  opacity: 0;
  transition: all 300ms;
  z-index:10;
}

#banner_small > .banneritem:hover > .on {
  opacity: 1;
  transition: all 300ms;
  z-index:20;
}

#banner_small > .btn_more {
  height:50px;
  line-height:50px;
  background:#07172d;
}

/*-------------------------------------------------------
  BOARD_WRITE CSS
-------------------------------------------------------*/

#board_write {
  display: block;
}

#board_write > form.writeform {
  display: block;
  margin:0;
  padding:0;
  border:0;
}

#board_write > form.writeform > .row {
  height:50px;
  line-height:50px;
  display: flex;
  margin-top:1px;
}

#board_write > form.writeform > .row.row_contents {
  /*ight:auto;*/
  height:30vh;
}

#board_write > form.writeform > .row > label {
  margin-right:1px;
  width:150px;
  text-align: center;
  background:#07172d;
  flex-shrink: 0;
  font-size:15px;
}

#board_write > form.writeform > .row > .value {
  flex-grow: 1;
  width:150px;
  background:#0d1d32;
  position: relative;
  font-size:15px;
  overflow-y:auto;
}

#board_write > form.writeform > .row > .value > input,
#board_write > form.writeform > .row > .value > select,
#board_write > form.writeform > .row > .value > textarea {
  display: block;
  position: absolute;
  left:10px;
  right:10px;
  top:10px;
  bottom:10px;
  margin:0;
  padding:0;
  border:0;
  background:#0d1d32 !important;
  color:#cccccc !important;
  border:0px !important;
  font-size:15px;
  resize: none;
}

#board_write > form.writeform > .row.row_toolbar {
  display: flex;
  margin-top:1px;
  height:50px;
  justify-content: end;
}


#board_write > form.writeform > .row > .expand {
  flex-grow: 1;
  background:#031124;
}

#board_write > form.writeform > .row > .btn_submit {
  display: block;
  width:127px;
  margin-left:1px;
  background:#0d1d32;
  font-size:15px;
  line-height:50px;
  text-align:center;
  color:#aaaaaa;
  cursor:pointer;
  position: relative;
  z-index:1;
  border:0px;
}

#board_write > form.writeform > .row > .btn_submit:hover {
  display: block;
  background:#29324b;
  color:#ffffff;
  z-index:10;
}


/*-------------------------------------------------------
  BOARD_VIEW CSS
-------------------------------------------------------*/

#board_view > .titlebox {
  display: flex;
  height: 63px;
  background: url(/images/1bet1/sports/title_effect_overlay.png), #07172d;
  background-position: left;
  background-size: none;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  border-bottom:1px solid #070a0f;
  flex-shrink: 0;
  justify-content: space-between;
}

#board_view > .titlebox > .subject {
  display: block;
  flex-grow: 1;
  line-height: 62px;
  font-size: 16px;
  margin-left: 20px;
  font-weight: 600;
  color: #cccccc;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

#board_view > .titlebox > .subject > span.arrow {
  display: inline-block;
  transform: scaleX(0.6);
  margin-left:10px;
  margin-right:10px;
}

#board_view > .titlebox > .subject > span.category {
  color:#888888;
  margin-right:10px;
}

#board_view > .titlebox > .sender {
  display: block;
  flex-shrink: 0;
  line-height: 62px;
  font-size: 16px;
  margin-left: 20px;
  font-weight: 600;
  color: #cccccc;
  white-space: nowrap;
  margin-right:20px;
}

#board_view > .titlebox > .datetime {
  display: block;
  flex-shrink: 0;
  line-height: 62px;
  font-size: 16px;
  margin-left: 20px;
  font-weight: 600;
  color: #cccccc;
  white-space: nowrap;
  margin-right:20px;
}

#board_view > .contentsbox {
  padding:20px;
  background:#0d1d32;
  min-height:250px;
}


.toolbar {
  display: flex;
  margin-top:1px;
  height:50px;
  justify-content: end;
}


.toolbar > .expand {
  flex-grow: 1;
  background:#031124;
}

.toolbar > .btn {
  display: block;
  width:127px;
  margin-left:1px;
  background:#0d1d32;
  font-size:15px;
  line-height:50px;
  text-align:center;
  color:#aaaaaa;
  cursor:pointer;
  position: relative;
  z-index:1;
  border:0px;
}

.toolbar > .btn:hover {
  display: block;
  background:#29324b;
  color:#ffffff;
  z-index:10;
}

/* ALARM */
body > .alarm {
  position: fixed;
  left:50%;
  top:50%;
  display: block;
  z-index:100000;
  transform: translate(-50%, -50%);
  width:450px;
  padding-top:50px;
  background:#e2e5ed;
  border-radius: 10px;
  box-shadow: 
    0px 0px 10px rgba(0,0,0,0.05),
    0px 0px 30px rgba(0,0,0,0.1),
    0px 0px 50px rgba(0,0,0,0.2),
    0px 0px 100px rgba(0,0,0,0.3);
}

body > .alarm.alarm_error {
  background:#fde8e4;
}

body > .alarm.alarm_warning {
  background:#fef4e4;
}

body > .alarm.alarm_success {
  background:#daf4f0;
}

body > .alarm > .title {
  position: absolute;
  left:50px;
  top:15px;
  height:30px;
  line-height:30px;
  font-size:20px;
  right:60px;
  font-weight:600;
  color:#303d67;
}

body > .alarm.alarm_error > .title {
  color:#b44c36;
}

body > .alarm.alarm_warning > .title {
  color:#b98a38;
}

body > .alarm.alarm_success > .title {
  color:#088675;
}

body > .alarm > .icon {
  position: absolute;
  left:15px;
  top:15px;
  width:30px;
  height:30px;
  object-fit: none;
  object-position: center;
}

body > .alarm > .close {
  position: absolute;
  right:15px;
  top:15px;
  width:30px;
  height:30px;
  color:#303d67;
  cursor:pointer;
  text-align: center;
  line-height:30px;
}

body > .alarm.alarm_error > .close {
  color:#b44c36;
}

body > .alarm.alarm_warning > .close {
  color:#b98a38;
}

body > .alarm.alarm_success > .close {
  color:#088675;
}

body > .alarm > .contents {
  position: relative;
  display: block;
  line-height:30px;
  font-size:14px;
  padding-left:50px;
  padding-right:60px;
  padding-bottom:15px;
  color:#303d67;
}

body > .alarm.alarm_error > .contents {
  color:#b44c36;
}

body > .alarm.alarm_warning > .contents {
  color:#b98a38;
}

body > .alarm.alarm_success > .contents {
  color:#088675;
}

body > .alarm > .tip {
  position: relative;
  display: block;
  line-height:30px;
  font-size:14px;
  padding:15px;
  padding-left:30px;
  padding-right:30px;
  color:#fffff8;
  background:#405189;
  border-radius: 0px 0px 10px 10px;
}

body > .alarm.alarm_error > .tip {
  color:#fffff8;
  background:#f06548;
}

body > .alarm.alarm_warning > .tip {
  color:#fffff8;
  background:#f7b84b;
}

body > .alarm.alarm_success > .tip {
  color:#fffff8;
  background:#0ab39c;
}


.ipt_search_box {
    display: block;
    flex-shrink: 0;
    width:120px;
    border-left:1px solid #313742;
    position:relative;
}

.ipt_search_box input {
    position: absolute;
    left:0px;
    top:0px;
    right:0px;
    bottom:0px;
    background: transparent;
    border:0px;
    padding-left:10px;
    padding-right:10px;
    font-size:16px;
}

.btn_search {
    display: block;
    flex-shrink: 0;
    width:60px !important;
    border-left:1px solid #313742;
    position:relative;
    cursor:pointer;
}

.btn_search span {
    display: block;
    position: absolute;
    right:15px;
    top:50%;
    transform: translate(0, -50%);
    font-size:16px;
    font-weight: 600;
    color:#a8a8a8;
}

.btn_search input ,
.btn_search img {
    display: block;
    position: absolute;
    margin-top:2px;
    left:15px;
    top:50%;
    transform: translate(0, -50%);
    filter: grayscale(1);
}

.btn_search:hover {
    background: #29324b;
    color:#ef7c00;
    border:1px solid #29324b;
    transition: all 300ms;
    animation: beat .25s infinite alternate;
}

.btn_search:hover span {
    color:#ffffff;
    text-shadow: 
        0 0 5px #cfff5e,
        0 0 10px #ffb25e,
        0 0 20px #ef7c00;
}

.btn_search:hover input ,
.btn_search:hover img {
    filter: grayscale(0);
}
.sort li ul {
    display: block;
    list-style: none;
    overflow: hidden;
    max-height: 0px;
    position: absolute;
    left:-1px;
    right:-1px;
    top:59px;
    transition: all 300ms;
    z-index:1;
	height:126px !important;
}
.sort li ul li:nth-child(2) {
	top:63px !important;
}
.sort li ul li:nth-child(3) {
	top:126px !important;
}
.sort li ul li:nth-child(4) {
	top:189px !important;
}
.sort li ul li:nth-child(5) {
	top:252px !important;
}

.activable {
    cursor:pointer;
}

/*
    SOUND ON OFF
*/


#header .btn_sound,
#footer .btn_sound {
  height:30px;
  width:30px;
  margin-left:10px;
  background:url('../../images/1bet1/sound/btn_sound_off.png');
  background-position: center;
  background-size: none;
  background-repeat: no-repeat;
  cursor:pointer;
}

#header .btn_sound.active,
#footer .btn_sound.active {
  background:url('../../images/1bet1/sound/btn_sound_on.png');
  background-position: center;
  background-size: none;
  background-repeat: no-repeat;
}
