@charset "utf-8";
/* CSS Document */
@import url(/assets/webfonts/nanum-gothic-v9-korean_latin/nanum-gothic-v9-korean_latin.css);
@import url(/assets/webfonts/nanumsquare/nanumsquare.css);

@font-face {
    font-family: NotoSansCJKkr;
    src: url(/assets/font/NotoSansCJKkr-Regular.otf);
  }
  body {
    -ms-overflow-style: none;
  }

  :root {
    --base-size: 1vw;
  }
  ::-webkit-scrollbar {
      display: none;
    background: transparent; 
}

::-webkit-scrollbar-track {
    display: none;
    background: transparent; 
}

::-webkit-scrollbar-corner {
    display: none;
    background: transparent; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    display: none;
    background: transparent; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
    display: none;
    background: transparent; 
}
body {
    font-family: 'NanumGothic', sans-serif, Tahoma, Dotum, '돋움';
}

app-root {
    width: 100%;
}

html * {
    font-family: 'NotoSansCJKkr', sans-serif, Tahoma, Dotum, '돋움';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'NotoSansCJKkr', sans-serif, Tahoma, Dotum, '돋움';
    margin: 0;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.text-color-change {
    -webkit-animation: color-change 5s infinite;
    -moz-animation: color-change 5s infinite;
    -o-animation: color-change 5s infinite;
    -ms-animation: color-change 5s infinite;
    animation: color-change 5s infinite;
}

@-webkit-keyframes color-change {
    0% {
        color: #ffedc7;
    }
    50% {
        color: #ff8900;
    }
    100% {
        color: #ff2e00;
    }
}

@-moz-keyframes color-change {
    0% {
        color: #ffedc7;
    }
    50% {
        color: #ff8900;
    }
    100% {
        color: #ff2e00;
    }
}

@-ms-keyframes color-change {
    0% {
        color: #ffedc7;
    }
    50% {
        color: #ff8900;
    }
    100% {
        color: #ff2e00;
    }
}

@-o-keyframes color-change {
    0% {
        color: #ffedc7;
    }
    50% {
        color: #ff8900;
    }
    100% {
        color: #ff2e00;
    }
}

@keyframes color-change {
    0% {
        color: #ffedc7;
    }
    50% {
        color: #ff8900;
    }
    100% {
        color: #ff2e00;
    }
}

.clear {
    clear: both;
}

.dp-flex {
    display: flex;
    flex-wrap: wrap;
}

.text-color-white {
    color: #fff
}

.text-color-black {
    color: #000
}

.text-color-gray {
    color: #777
}

.text-color-blue {
    color: #3682c3
}

.text-color-green {
    color: #2fd50b
}

.text-color-dark-green {
    color: #00a65a
}

.text-color-orange {
    color: #d36d16
}

.text-color-yellow {
    color: #d3c600
}

.text-color-red {
    color: #da0005
}

.widget-user {
    padding-top: 0;
    width: 200px !important;
}

.flex-container {
    display: flex;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    margin-left: auto;
    margin-right: auto;
}

.flex-right {
    margin-left: auto !important;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

figure.image {
    margin: 0;
}

figure.image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.is-25x25 {
    width: 25px;
    height: 25px;
}

.is-30x25 {
    width: 30px;
    height: 25px;
}

.is-30x30 {
    width: 30px;
    height: 30px;
}

.is-40x40 {
    width: 40px;
    height: 40px;
}

.rm-10 {
    margin-right: 10px;
}

.rm-5 {
    margin-right: 5px;
}

.lm-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.lm-5 {
    margin-left: 5px;
}

.space-between {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

select {
    border-radius: 0px;
    
    min-width: 100px;
    color: black !important;
    border: none !important;
    /* -webkit-appearance: menulist !important; */
    margin: 5px !important;
    padding: 0 10px !important;
    height: 35px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #bfcde1 !important;
    background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position-x: 100% !important;
    background-position-y: 5px !important;
  }

select::-ms-expand {
    display: none;
}

.light-brown-box {
    padding: 5px;
    background-color: #cac3b4;
    color: black;
    text-align: center;
    font-size: 16px;
    margin: 5px;
}

.light-blue-box {
  padding: 5px;
  background-color: #bfcde1;
  color: black;
  text-align: center;
  font-size: 16px;
  margin: 5px;
  cursor: pointer;
}

.occurance-area-box {
    border: solid 1px #bfcde1;
    background-color: #eaeef5;
    padding: 10px;
    width: 86px;
}

.weather-info-border {
    border: solid 1px #809bc3;
    padding: 10px;
    height: 100px;
}

.weather-title {
    font-size: 19px;
    font-weight: 500;
    margin-top: 5px;
    margin-right: 10px;
}

.weather-sub-title {
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    margin-left: 10px;
}

.weather-value {
    font-size: 14px;
    font-weight: 900;
}

.nav-tabs {
    border-bottom: 0px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #809bc3;
    border: 1px solid #809bc3;
    border-radius: 0px;
    color: white;
    font-size: 19px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    height: 30px;
    line-height: 1;
    margin-bottom: 5px;
}

.nav-tabs .nav-link{
    color: white;
    font-size: 19px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    height: 30px;
    line-height: 1;
    margin-bottom: 5px;
}

/* grid */
.col-2-5 {
    -ms-flex: 0 0 20.833333325%;
    flex: 0 0 20.833333325%;
    max-width: 20.833333325%;
}

.widget-user .widget-user-header {
    padding: 20px !important;
    height: 90px !important;
    border-top-right-radius: 3px !important;
    border-top-left-radius: 3px !important;
    background-color: #f7f7f7 !important;
}

.widget-user .widget-user-header > h3 {
    margin: 0px !important;
}

.widget-user .widget-user-username {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    font-size: 25px !important;
    font-weight: 300;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.widget-user .box-footer {
    padding-top: 10px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.spinner {
    position: relative;
    float: left;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* DataTable */
.dt-buttons {
    margin-bottom: 10px;
}
.table-select tr {
    cursor: pointer;
}

.horizontal label {
    padding-top: 7px;
    margin-bottom: 5px;
    /*text-align: right;*/
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
}

.overlay > .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #fff;
    font-size: 30px;
}

.content .box-title {
    font-size: 14px !important;
}

.content {
    font-size: 12px !important;
}

.scrollbar {
    /*float: left;*/
    height: 300px;
    /*width: 65px;*/
    /*background: #F5F5F5;*/
    overflow-y: scroll;
    /*margin-bottom: 25px;*/
}

/*
 *  STYLE 1
 */

.scrollbar-style-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.scrollbar-style-1::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

.scrollbar-style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #919191;
}

.no-padding-left {
    padding-left: 0px;
}

.no-padding {
    padding: 0px;
}

table th {
    font-size: 13px !important;
}

table td {
    font-size: 12px !important;
}

.dynamic-table th {
    font-weight: 700;
}

.col-half {
    width: 50%;
}

.col-quarter {
    width: 25%;
}

.label-badge .label {
    position: absolute;
    top: -15%;
    right: 25%;
    text-align: center;
    font-size: 9px;
    padding: 2px 4px;
}

#navScrollspy {
    position: fixed;
    /*top: 55px;*/
    bottom: 20px;
    right: 5px;
    z-index: 11;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.21);
    border-radius: 5px;
}

#navScrollspy > ul > li {
    font-size: 10px;
    padding: 0;
}

#navScrollspy > ul > li.active {

}

#navScrollspy > ul > li > a {
    color: #fff !important;
    font-weight: bold;
}

#navScrollspy > .nav-pills > li > a {
    padding: 5px 15px !important;
    border-radius: 5px !important
}

#navScrollspy > .nav-pills > li.active > a,
#navScrollspy > .nav-pills > li.active > a:hover,
#navScrollspy > .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #3c8dbc;
}

#navScrollspy > .nav-pills > li > a:hover {
    background-color: transparent;
}

.margin-5 {
    margin: 5px;
}

.box-border {
    border: 1px solid #e9e9e9;
    padding: 10px 0 0 0 !important;
}

.box-border-light {
    border: 1px solid #eeeeee;
    padding: 10px 0 0 0 !important;
}

.box-border-top-bottom {
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    padding: 10px 0 0 0 !important;
}

.input-group-addon {
    font-size: 12px !important;
}

.col-width-50px {
    width: 50px !important;
    display: inline !important;
}

.col-width-100px {
    width: 100px !important;
    display: inline !important;
}

.collapsed-box {
    padding-top: 5px;
    padding-bottom: 5px;
}

.swal2-title {
    font-size: 2.0em !important;
}

.swal2-content {
    font-size: 1.4em !important;
}

.mr-m5 {
    margin-right: -5px;
}
@media only screen and (max-width: 992px) {
    .table-increase-row-height th, .table-increase-row-height td {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .table-decrease-row-height th, .table-decrease-row-height td {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
}

@media only screen and (max-width: 767px) {
    .slot .input-group {
        display: block;
    }

    .slot .pull-right {
        float: none !important;
    }

    .slot .input-group .form-control {
        float: none !important;
    }

    .fixed .content-wrapper, .fixed .right-side {
        padding-top: 50px !important;
    }

    .main-sidebar {
        padding-top: 50px !important;
    }

    .table-increase-row-height th, .table-increase-row-height td {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .table-decrease-row-height th, .table-decrease-row-height td {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}

@media only screen and (max-width: 650px) {
    .dynamic-table th,
    .dynamic-table td {
        display: block;
        width: auto;
    }

    .dynamic-table th {
        display: block;
        margin: 5px 0 0;
        text-align: left;
        opacity: 0.8;
        background: #f9f9f9;
        border-radius: 2px;
        padding: 0.3em 0.3em;
        box-shadow: 1px 1px 2px #9c9c9c;
    }

    .dynamic-table td {
        border-top: 0 !important;
    }

    .dynamic-table [data-cell-header]:before {
        content: attr(data-cell-header);
        display: block;
        /* 중략 */
    }

    .dynamic-table th[scope] {
        display: none;
    }

    .last_section {
        margin-bottom: 1024px !important;
    }
}