@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@font-face {
    font-family: "Righteous";
    src: url("/assets/fonts/Roboto/Roboto-Black.ttf");
    src: url("/assets/fonts/Roboto/Roboto.ttf");
}


/* @font-face { font-family: 'NanumBarunGothic';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/NanumGothic/NanumBarunGothic.eot');
    src: url('/assets/fonts/NanumGothic/NanumBarunGothic.eot') format('embedded-opentype'),url('/assets/fonts/NanumGothic/NanumBarunGothic.woff') format('woff');
} */

html, body {
    /* font-family: 'NanumBarunGothic', 'serif'; */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  /* overflow-x: scroll;  */
} 
::-webkit-scrollbar {
    /* display: auto;  */
    background-color: transparent;
  }
#wrapper {
    /* min-height: calc(100% - 60px); */
    height: 100vh;
    min-height: 100%;
    padding-bottom: 60px;
    width:100%;
    position: relative;
    /* display: flex;
    justify-content: center; */

}

.container{
    padding-left:10px;
    /* margin-top:5px;
    margin-right:10px; */
    /* max-width: 960px;  */
    margin: auto;
    
}

.container2{
    /* margin-top:5px;
    margin-right:10px; */
    margin: 0 auto;
    /* max-width: 960px; */
    /* overscroll-behavior: contain;
    overflow: hidden; */
}

.usdtcontainer{
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.usdtcontainer h1{
    color: #26a69a;
    text-align: center;
}


.usdtcontainer p{
    text-align: center;
    font-size: 12.5px;
}

.usdtcontainer textarea{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    resize: none;
    font-size: 16px;
}

.usdtcontainer button {
    background-color: #26a69a;
    color: white;
    border: none;
    margin: 0 2px 0 0;
    padding: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    min-width: 70px;
}
.usdtcontainer button:hover {
    background-color: #2bbbad;
}
.usdtcontainer #result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}
.usdtcontainer .valid {
    background-color: #d4edda;
    color: #105721;
}
.usdtcontainer .invalid {
    background-color: #f8d7da;
    color: #721c24;
}

.usdtcontainer .confirm { background-color: #4CAF50; }
.usdtcontainer            .cancel { background-color: #f44336; }

.usdtcontainer #pasteBtn:disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}


/* 모든기기공통 CSS */
body{ 
    .container{
        margin: 0 auto;        
    }
 }

 .nav-tabs .nav-item .nav-link.active {
    background-color:#0d6efd !important;
    color:white !important;
    border:#0d6efd;
 }

.nav-tabs .nav-item .nav-link {
    /*background-color: #e9ecef; */
    color: #495057 !important; /* e.g., #495057 for dark gray */
    border-left: 1px solid rgb(239, 239, 240); 
    border-right: 1px solid rgb(239, 239, 240); 
    border-top: 1px solid rgb(239, 239, 240); 
    /* border-bottom: 1px solid #0d6efd;  */
}


/* desktop 규격 */
@media screen and (min-width: 1024px){
    .container{
        padding-left:10px;
        max-width: 960px;     
    }
}

/* tablet 규격 */
@media screen and (max-width: 1023px){
    .container{
        max-width: 960%; 
        /* padding-left:0;     */
    }
}

/* mobile 규격 */
@media screen and (max-width: 540px){
    .container{
        max-width: 100%; 
        /* padding-left:0;     */
        
    }
    
}

::placeholder {
    color: var(--c, rgb(80, 80, 80));
    font-size:13px;
}

#cFrame{
    /* margin-top:10px; */
    margin-bottom: 10px;
}

#chart_div {
    /* padding-top:50px !important; */
    touch-action: none; /* 이 요소에 대한 모든 브라우저 기본 터치 동작 비활성화 */
    /* 또는 */
    touch-action: manipulation; /* 더블 탭 확대 등은 비활성화하지만, 패닝과 핀치 줌은 허용 */

    will-change: transform;
    transition: transform 0.1s ease-out; /* 부드러운 이동 효과 */
}


.zoom-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.zoom-button {
    padding: 6px 12px;
    margin: 2px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.zoom-button:hover {
    background-color: #e2e2e2;
}

#viewtitle{
    position:fixed; left:0; right:0; top:0; 
    width:100%; height:50px; color:white;
}


/***** footer gnb   *****/    
.bottom_gnb {  
    position:fixed; left:0; right:0; bottom:0; 
    /* transform : translateY(-100%);  */

    width:100%; height:60px;

    font-size:0.7rem; box-sizing:border-box; 
    padding-left:12%; padding-right:25px;  
    /* background:#0d6efd; color:#fff;   */
    background-image: linear-gradient(125deg, #ca7271, #c54545 50%, #490d21);
    border-top:1px solid #c5c5c5; border-bottom:1px solid #c5c5c5; 
    z-index:1000;
}
.bottom_gnb .gnb_menu {
    position:absolute; display:block; 
    width:12%; height:57px; top:0; left:0; 
    /* background:linear-gradient( #4d33de, #2905f2b3); color:#fff;  */
    background-image: linear-gradient(140deg, #303030, #1a1a1a);
    text-align:center; border:0; 
    font-size:0.7rem;
}
.bottom_gnb ul li {float:right;} 
.bottom_gnb li a {
    display:block; text-align:center; 
    color:#fff; height:52px; white-space:nowrap; 
    padding-left:10px; padding-right:10px; 
}
.gnb_icon {
    display:block; width:40px; height:38px; 
    margin:0 auto; 
    background:url('../images/icon_gnb.png') no-repeat; 
    background-size:50px 600px; 
    opacity:0.5;
}

.button-bg {
    height: 32px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    color:white;
    border: none;
    border-radius: 32px;
    background-image: linear-gradient(125deg, #ca7271, #c54545 50%, #490d21);
    background-color: transparent;
  }

  .button-bg2 {
    color:white;
    border: none;

    background-image: linear-gradient(125deg, #ca7271, #c54545 50%, #490d21);
    background-color: transparent;
  }

.active .gnb_icon {opacity:1;}
.bottom_gnb .active a {background:#1a181b;}
/* .bottom_gnb .flex-direction-nav a {display:block; width:30px; height:58px; box-sizing:border-box; overflow:hidden; position:absolute; right:0; top:0; z-index:1; white-space:nowrap;}
.bottom_gnb .flex-direction-nav a:before {content:''; display:inline-block; width:30px; height:58px;}
.bottom_gnb .flex-prev {background:#424b5a url('../images/gnb_arrow_left.png') center no-repeat; background-size:10px 21px;}
.bottom_gnb .flex-next {background:#424b5a url('../images/gnb_arrow_right.png') center no-repeat; background-size:10px 21px;}
.bottom_gnb .flex-direction-nav .flex-disabled {display:none;} */
.gnb_menu .gnb_icon {background-position:center 0; opacity:1;}
.gnb_num1 .gnb_icon {width:80px; background-position:center -60px;}
.gnb_num2 .gnb_icon {width:80px; background-position:center -120px;}
.gnb_num3 .gnb_icon {width:80px; background-position:center -180px;}
.gnb_num4 .gnb_icon {width:80px; background-position:center -240px;}
.gnb_num5 .gnb_icon {width:80px; background-position:center -300px;}
.gnb_num6 .gnb_icon {width:80px; background-position:center -360px;}
.gnb_num7 .gnb_icon {width:80px; background-position:center -420px;}
.gnb_num8 .gnb_icon {width:80px; background-position:center -480px;}


ul{
    list-style:none;
}

a{
    text-decoration-line: none;
}

.fs-6{
    font-size:0.85rem !important;
}

.fs-7{
    font-size:1.0rem;
}

.fs-8{
    font-size:1.75rem;
}

.fs-9{
    font-size:9px;
}

.fs-10{
    font-size:10px;
}

.fs-11{
    font-size:11px;
}

.fs-12{
    font-size:12px;
}

.fs-13{
    font-size:13px;
}

.fs-14{
    font-size:14px;
}

.fs-18{
    font-size:18px;
}

.w-70{
    /* margin-left:0; */
    width:70%;
}

.w-30{
    /* margin-left:0; */
    width:30% !important;
}

.colorBold,
.countNum {
    color: #0071E3;
    font-weight: 700;
}

.countBold {
    font-weight: 700;
}

.validation-result {
            margin: 20px 0;
            padding: 15px;
            border-radius: 4px;
            display: none;
        }
.valid {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
.invalid {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.validation-loading {
            color: #31708f;
            background-color: #d9edf7;
            border: 1px solid #bce8f1;
        }

.bg-darkblue{background:#1e4588 !important;}


.navbar-light .navbar-nav .nav-item .nav-link {

    color: orange !important;
  
  }
  
  .navbar-nav > .active > .a {
  
    color: red;
  
  }

.color-seaover{
    color:#81DCDD;
} 


.bg-seaover{
    background-color:#81DCDD;
} 

.color-ask{
    color:#c95a25 !important;
}
.btn-ask, .bg-ask{
    background:linear-gradient(#c95a25, #d08125); color:#fff; ;
}

a:hover{color:orange !important; text-decoration: none;}
.bg-canvasLeft-Header{background:linear-gradient(#c95a25, #d08125); color:#fff;}
.bg-canvasLeft-Header h5{color:white !important;}
.text-reset{color:white !important;}

.menu-list.list-custom-small i:first-child {
    font-size: 11px !important;
  }
  
  .menu-list.list-custom-small {
    margin-right: 21px;
    margin-left: 8px;
  }

  /* #headingUserBonus .accordion-button.collapsed::after {
    background: url("/assets/icons/plus.svg") !important;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  #headingUserBonus .accordion-button:not(.collapsed)::after {
    background: url("/assets/icons/dash.svg") !important;
    background-repeat: no-repeat;
    background-position: center;
  } */

  /* .cash:hover {
    cursor: pointer;
    border-radius: 50%;
    transition: all 3s;
    transform: rotate(360deg);
  } */
  .menu-list.list-custom-small span {
    color: #1f1f1f;
    font-size: 13px;
    padding-left: 5px;
  }

.offcanvas-menu { 
    width: 220px; height: 100%; 
    position: fixed; top: 0; 
    /* overflow: inherit;  */
    -webkit-transition: all 0.6s; transition: all 0.6s; z-index: 10000; 
}

.main-bgColor{
    background:linear-gradient(#0b76ac, #032435); 
    color:#fff;
}

.main-borderColor{
    background:linear-gradient(#0b76ac, #032435); 
    color:#fff;
}

.main-card-top{
    /* background:#4d33de ;
    color:#0a1a4b; */
    /* background:linear-gradient(#4d33de, #2905f2b3); color:#fff;   */
    /* background:linear-gradient(#0b76ac, #032435); color:#fff; */
    background-image: linear-gradient(90deg, #ca7271, #c54545 50%, #490d21);
    
    margin-top: 10px;
}

.inner-card-top{
    /* background:linear-gradient(#0b76ac, #032435); color:#fff; */
    background-image: linear-gradient(90deg, #ca7271, #c54545 50%, #490d21);
    margin-top: 10px;
    border-radius: 30px 10px !important;
}

.main-bg{
    /* background:linear-gradient(#0b76ac, #032435) !important; color:#fff; */
    background-image: linear-gradient(125deg, #ca7271, #c54545 50%, #490d21) ; color:#fff;
}

.main-text-color{
    color:#0b76ac !important;
}

.swal2-title
      {
         font-size: 15px;
         font-family:'Lexend';
         color:theme('colors.metal');
      }

.swal2-styled input{
    /* padding: 10px 32px 10px 32px !important;
    margin: 20px 10px 0px 10px !important;
    width: 170px;
    height: 45px; */
    width:30px;
    margin: 10px auto !important;
    width: 80% !important;
}

.confirm-button-class {
  background-color: red !important;
  color: white !important;
  border: none !important;
}

.title-class {
  font-size: 15px !important;
}


.icon-class {
  font-size: 10px !important;
}

.confirm-button-class .swal2-icon svg {
  width: 12px !important;
  height: 12px !important;
}

.swal2-actions .swal2-confirm {
  background-color: #4CAF50 !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  width: 120px;
}

.swal2-actions .swal2-cancel {
  border-color: #c54545 !important;
  box-shadow: none !important;
  border: none !important;
}

.swal2-confirm:focus, .swal2-cancel:focus {
  box-shadow: none !important;
  border: none !important;
}

.swal2-actions button:hover {
  border: none !important;
}

.swal2-title {
    font-size: 13px !important; /* Adjust the size as needed */
}

.swal2-input {
    font-size: 14px !important; /* Adjust the size as needed */
}


.active-paging{
    background-color: #0d6efd;
    color:white;
}

.inner-accordion-top , .inner-table-top{
    background:transparent;
    margin-top: 10px;
    border-radius: 15px 15px 15px 15px !important;
    border:none !important;
}
.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
  }

.main-card-top button{
    border:none;
    border-radius: 10px;
    width:100px;
    padding: 10px 10px;
}

.numberCircle {
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */

    width: 10px;
    height: 10px;
    padding: 1px;
    
    background: #fff;
    border: 2px solid #666;
    color: #666 !important;
    text-align: center;
    
    font: 9px Arial, sans-serif;
}



.btn-blue-light{
    background:#38466b;
    color:aliceblue;
}

.aleo-register{
    margin: 10px auto;
    text-align:center;
}

.aleo-register button{
    width: 150px;
    border-radius: 20px !important;
}

.mybtn{
    font-size:13px !important;
    width:90px;
}

.mymenu{
    white-space:nowrap;
    overflow:auto; 
}

.form-group .form-control {
    padding-left: 1.375rem;
    margin-bottom: 1.2rem;
}
.form-group{
  position:relative;
}
.form-group .form-control-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #0a1a4b;
    right:0;
    top: 0px;
}



.chartNodeClass{
    /* border:#1c67e7 1px solid !important;
    background-color: rgba(206, 208, 146, 0.209); */
}
.selectedNodeClass {
    border: none;
}

.min-width-100 {
    min-width:100px !important;
}

.min-width-120 {
    min-width:120px !important;
}

.min-width-150 {
    min-width:150px !important;
}

.modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.page-item{
    margin-right: 2px !important;
}

.page-link{
    background: black !important;
    color:white !important;
}

.page-link .active{
    background:rgb(29, 16, 209) !important;
}

.datepicker-input::placeholder {
    color: #324cda !important;
    font-size: 13px;
    opacity: .5 !important; /* Firefox */
}

/* Spin Reverse - class fa-spin required */
.fa-spin.spin-reverse{
    -webkit-animation-direction:reverse;
       -moz-animation-direction:reverse;
            animation-direction:reverse;
  }

  .slow-ani > * {
    animation-duration:4s;
  }
  
  /* ////////////////////////////// */
  /* CSS versus */
  .vs{position:relative; display:inline-block; padding:0 15px; font-family:monospace;}
  .vs:before{content:"v"; display:block; position:absolute; top:0; left:0;}
  .vs:after{content:"s"; display:block; position:absolute; bottom:0; right:0;}
  .vs:before,
  .vs:after{font-size:80%;}
  .color-yellow{color:#fdf497;}
  .color-instagram{color: #d6249f;} 
  .color-gold{color: #ffd700 !important;}
  .instagram {
    /* display: inline-block;
    width: 250px;    
    border-radius: 40px;
    height: 250px; 
    font-size: 220px;
    line-height: 250px; */
    text-align: center;
    /* color: #fff; */
    color:#2d282b;
    vertical-align: middle;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    box-shadow: 0px 3px 10px rgba(0,0,0,.25);
  }

  
