/* Scss Document 01 16-18-1-14-10-1-12  */
@import url("reset.css");
@import url("../fonts/font.css");
:root {
  --card-base-height: 200px;
  --banner-h: 150px;
}

/*--- Basic Color Palette ---*/
/* -- Button hover colour --*/
/*-- User icon bg colour --*/
/* -- Button hover color in line button --*/
/* -- AAA pass with bg grey --*/
/* Fonts */
/*-- base font 14px ----*/
/*-- H3 16px ---*/
/*-- H2 18px ---*/
/*-- H1 24px ---*/
/*---- Shadow and others ---*/
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/*---- General style ---*/
.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

[class*=col-] {
  float: left;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

BODY {
  background-color: white;
  font-size: 16px;
}

BODY, .txt-a, BUTTON, INPUT, SELECT, TEXTAREA {
  font-family: "Roboto", Helvetica Neue, Helvetica, Arial, "sans-serif";
}

.txt-a, BUTTON, INPUT, SELECT, TEXTAREA {
  font-size: 100%;
}

a {
  color: #000;
}
a:hover {
  text-decoration: none;
}
a:active {
  color: #000;
}

.d-none {
  display: none;
}

.fx {
  display: flex;
}

.fx-col, .meta.vertical {
  display: flex;
  flex-direction: column;
}

.fx-sb {
  justify-content: space-between;
}

.fx-center {
  align-items: center;
}

.fx-start {
  align-items: flex-start;
}

.dir-col {
  flex-direction: column;
}

.just-end {
  justify-content: flex-end;
}

.just-center {
  justify-content: center;
}

.fx-wrap {
  display: flex;
  flex-wrap: wrap;
}

.btn {
  background: #1b62fd;
  padding: 10px 20px;
  border: none;
  border-radius: 100px;
  outline: none;
  margin: 0 2px;
  color: #000;
  transition: background 0.5s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 100%;
  line-height: 18px;
}
.btn:hover {
  background: #3b6ea0;
  cursor: pointer;
  color: #FFF;
}
.btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn:disabled:hover {
  background: #1b62fd;
}

.btn-l {
  background: rgba(0, 0, 0, 0);
  padding: 9px 20px;
  border: 1px solid #537083;
  border-radius: 100px;
  outline: none;
  margin: 2px;
  color: #000;
  transition: background 0.5s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 100%;
  line-height: 18px;
}
.btn-l.danger {
  border-color: #d10038;
}
.btn-l:hover {
  border-color: #537083;
  color: #FFF;
  background: #537083;
  cursor: pointer;
}
.btn-l:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-l:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #000;
}

.btn-t {
  background: rgba(0, 0, 0, 0);
  padding: 9px 20px;
  border: 1px solid #537083;
  border-radius: 100px;
  outline: none;
  margin: 2px;
  color: #000;
  transition: background 0.5s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 100%;
  line-height: 18px;
  border-color: transparent;
}
.btn-t.danger {
  border-color: #d10038;
}
.btn-t:hover {
  border-color: #537083;
  color: #FFF;
  background: #537083;
  cursor: pointer;
}
.btn-t:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-t:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #000;
}

.pad10 {
  padding: 10px;
}

.wt-01 {
  width: calc(100% - 96px);
}

.mar-t15 {
  margin-top: 15px;
}

.note {
  font-size: 90%;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 5px 0;
  font-style: italic;
}

.ch {
  cursor: pointer;
}

.info-placeholder {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  height: 100%;
}
.info-placeholder .title {
  font-size: 112.5%;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #000;
}
.info-placeholder .txt {
  font-size: 90%;
  padding: 10px 0;
}
.info-placeholder .btn-holder {
  justify-content: center;
}

/*---- General style ---*/
.row {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  position: relative;
  margin: 0 0 10px 0;
}
.row.split {
  display: flex;
}
.row.split .box {
  float: left;
  box-sizing: border-box;
  vertical-align: top;
  padding: 0 10px 0 0;
}
.row.split .box:last-child {
  padding: 0 0 0 10px;
}
.row.split.single .box:last-child {
  padding: 0 10px 0 0;
}

.int {
  padding: 8px;
  width: calc(100% - 1px);
  box-sizing: border-box;
  border: 1px solid #7A7A7A;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0);
  color: #000;
  border-radius: 2px;
  line-height: 18px;
  height: 36px;
  position: relative;
}
.int:focus {
  border-color: #1b62fd;
  outline: 1px solid #1b62fd;
}
.int:disabled {
  opacity: 0.5;
}
.int.search-dark {
  background-image: url("../images/magnifiying-glass-w.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 5px center;
  padding-left: 30px;
  color: #FFF;
}
.int.search-dark:focus {
  background-color: rgba(255, 255, 255, 0.5);
}
.int.search-dark::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.int.search-dark::placeholder {
  color: #FFF;
  opacity: 1;
}
.int.search-light {
  background-image: url("../images/magnifiying-glass.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 5px center;
  padding-left: 30px;
}
.int.date {
  background: url("../images/calendar.svg") no-repeat 96% center;
  background-size: 20px;
}
.int.date::-webkit-inner-spin-button {
  display: none;
}
.int.date::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.int.slt {
  padding: 8px 22px 8px 8px;
  background-image: url("../images/ic-arrow-select.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  background-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.int.slt > option {
  background: #F8F8F8;
}
.int.slt:focus {
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.int.slt:disabled {
  opacity: 0.5;
}
.int.slt.no-bor {
  border: none;
}
.int.txt-a {
  min-height: 64px;
}
.int.error {
  border-color: #d10038;
}

.lab-int {
  display: flex;
  flex-flow: column;
}
.lab-int .lab {
  font-weight: bold;
}
.lab-int .txt {
  font-size: 112.5%;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 5px 0;
  font-weight: bold;
}
.lab-int .two-lab {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lab-int .labR {
  margin: 0 0 5px 0;
}

.switch {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 35px !important;
  height: 20px;
  border-radius: 30px;
  cursor: pointer;
  background: #D8D8D8;
  transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out;
  transition-delay: 0.1s, 0s;
}
.switch:focus {
  border: 0;
  outline: 0;
}
.switch:checked {
  transition-delay: 0s, 0s;
  box-shadow: inset 0 0 0 2.62857em #389ca9 !important;
  padding-left: 15px;
}
.switch:disabled {
  opacity: 0.5;
  cursor: default;
}
.switch:before {
  display: inline-block;
  height: 14px;
  width: 14px;
  margin: 3px;
  background-color: #FFF;
  border-radius: 2.1em;
  transition: all 0.1s ease 0.1s;
}
.switch:before, .switch:after {
  content: "";
  display: block;
}
.switch:active::before {
  transition: all 0.1s ease 0.05s;
}

.sw-lab {
  position: relative;
}
.sw-lab .switch {
  position: absolute;
  top: 0;
  left: 0;
}
.sw-lab .lab {
  padding: 0 0 0 45px;
  font-weight: normal;
  float: left;
  line-height: 20px;
  width: auto;
}
.sw-lab.reverse .switch {
  left: auto;
  right: 0;
}
.sw-lab.reverse .lab {
  padding: 0 45px 0 0;
}

.rad-lab {
  position: relative;
  width: 100%;
}
.rad-lab .rad {
  position: absolute;
  top: 0;
  left: 0;
  margin: 2px 0 0 0;
}
.rad-lab .lab {
  padding: 2px 0 0 20px;
  font-weight: normal;
  float: left;
}

.range-lab {
  position: relative;
  width: 100%;
}
.range-lab .lab {
  font-weight: normal;
}
.range-lab .int-range {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}

.btn-holder {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  border-top: 1px solid #9C9D9E;
  display: flex;
  padding: 15px 0;
  margin: 20px 0 0 0;
}
.btn-holder .btn {
  margin-left: 10px;
}
.btn-holder .btn-l {
  margin-left: 10px;
}
.btn-holder .btn-t {
  background: rgba(0, 0, 0, 0);
  padding: 10px 20px;
  outline: none;
  border: none;
  margin: 2px;
  color: #595959;
  transition: background 0.5s ease;
  text-decoration: none;
  border-radius: 100px;
  margin-left: 10px;
}
.btn-holder .btn-t:hover {
  color: #537083;
  cursor: pointer;
}
.btn-holder .btn-t:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-holder .btn-t:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #9C9D9E;
}
.btn-holder .btn-i {
  background: none;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 2px;
  color: #1b62fd;
  font-size: 1.2rem;
  transition: background 0.5s ease;
  margin-left: 10px;
}
.btn-holder .btn-i:hover, .btn-holder .btn-i.active {
  background: none;
  color: #3b6ea0;
}
.btn-holder .btn-i:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-holder .btn-i:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #D8D8D8;
}
.btn-holder .btn-i i {
  transform: scale(1.4);
}
.btn-holder .btn-red {
  background: rgba(0, 0, 0, 0);
  padding: 9px 20px;
  border: 1px solid #537083;
  border-radius: 100px;
  outline: none;
  margin: 2px;
  color: #000;
  transition: background 0.5s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 100%;
  line-height: 18px;
  margin: 0 10px;
  border-color: #d10038;
  color: #d10038;
}
.btn-holder .btn-red.danger {
  border-color: #d10038;
}
.btn-holder .btn-red:hover {
  border-color: #537083;
  color: #FFF;
  background: #537083;
  cursor: pointer;
}
.btn-holder .btn-red:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-holder .btn-red:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #000;
}
.btn-holder .btn-red:hover {
  background-color: #d10038;
}
.btn-holder.no-line {
  border: none;
}
.btn-holder.top-bar {
  border: none;
  justify-content: flex-start;
  margin: 0;
}
.btn-holder.mar-off {
  margin: 0;
}
.btn-holder.split-side {
  margin: 0;
}
.btn-holder.split-side .box {
  width: 100%;
  display: flex;
  align-items: center;
}
.btn-holder.split-side .box:nth-child(1) .btn, .btn-holder.split-side .box:nth-child(1) .btn-l {
  margin: 0 10px 0 0;
}
.btn-holder.split-side .box:nth-child(2) {
  justify-content: flex-end;
  padding-right: 10px;
}
.btn-holder.fx-wrap .btn {
  margin: 2px;
}

.tab-vertical .btn-i {
  background: none;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 2px;
  color: #1b62fd;
  font-size: 1.2rem;
  transition: background 0.5s ease;
  margin: 10px;
}
.tab-vertical .btn-i:hover, .tab-vertical .btn-i.active {
  background: none;
  color: #3b6ea0;
}
.tab-vertical .btn-i:disabled {
  opacity: 0.5;
  cursor: default;
}
.tab-vertical .btn-i:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #D8D8D8;
}
.tab-vertical .btn-i i {
  transform: scale(1.4);
}
.tab-vertical .tab-content {
  width: 300px;
}

.form-login {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.form-login .lab-int .lab {
  margin: 0 0 5px 0;
}

.banner-wrap {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  background-color: #FFF;
  margin: 0 0 15px 0;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.banner-wrap .banner-uty {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  justify-content: space-between;
}
.banner-wrap.dark {
  background: #000;
  border-radius: 5px;
  overflow: hidden;
}
.banner-wrap.dark .banner-uty {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  height: var(--banner-h);
}
.banner-wrap.dark .overlay {
  background-color: rgba(1, 18, 34, 0.9);
  width: 100%;
  height: var(--banner-h);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  border-radius: 5px;
}
.banner-wrap.dark .nav .btn-t {
  color: #D8D8D8;
}
.banner-wrap.dark .slide-no UL LI {
  background: rgba(255, 255, 255, 0.4);
}
.banner-wrap.dark .slide-no UL LI.active {
  background: #1b62fd;
}
.banner-wrap.dark .arrow {
  position: absolute;
  bottom: 1px;
  width: 16px;
  height: 16px;
  background: url(../images/arrow-w.svg) no-repeat center center;
  opacity: 0.8;
  z-index: 99;
}
.banner-wrap.dark .arrow.pre {
  right: 40px;
  transform: rotate(180deg);
}
.banner-wrap.dark .arrow.next {
  right: 10px;
}

.grid-container {
  display: grid;
  box-sizing: border-box;
  padding: 0 0 15px 0;
  grid-template-columns: 400px 300px 1fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  grid-template-areas: "sidebar meta map" "sidebar meta map";
}
.grid-container .meta .meta-box.txt .title {
  color: #CDDC39;
}

.sidebar {
  grid-area: sidebar;
}

.meta {
  grid-area: meta;
}

.map {
  grid-area: map;
}

.item {
  background-color: #FFF;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  color: #09324D;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  overflow: auto;
}

.meta {
  display: flex;
}
.meta .meta-box {
  width: 25%;
  padding: 5px 10px;
  box-sizing: border-box;
}
.meta .meta-box.bgc01 {
  background-color: #3b6ea0;
}
.meta .meta-box.bgc02 {
  background-color: #154d49;
}
.meta .meta-box.txt {
  text-align: center;
  color: #FFF;
}
.meta .meta-box.txt .title {
  color: #3b6ea0;
  font-weight: bold;
}
.meta .meta-box.txt .des {
  font-size: 80%;
}
.meta.vertical .meta-box {
  flex-direction: column;
}

/* / Grid 2 ------------------------------------------------------------------------ grid-template-columns: 1fr 3fr; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(1, 1fr);
grid-template-rows: 1fr; */
.grid-container-sty02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  clear: both;
}

.grid-container-sty03 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(1, 1fr); */
  grid-gap: 15px;
  clear: both;
}

.grid-container-liquid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 15px;
}

.grid-container-data {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 15px;
  grid-template-areas: "data-1 data-2 data-2" "data-bar data-bar data-bar";
}
.grid-container-data .item {
  height: calc(var(--card-base-height) * 2px);
}

.data-1 {
  grid-area: data-1;
}

.data-2 {
  grid-area: data-2;
}

.data-bar {
  grid-area: data-bar;
}

.box-2 {
  display: flex;
}
.box-2 .data-box {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.box-2 .data-box:nth-child(2) {
  width: calc(100% - 10px);
  margin: 0 0 0 15px;
}

.btn-i {
  background: none;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 2px;
  color: #1b62fd;
  font-size: 1.2rem;
  transition: background 0.5s ease;
  width: 36px;
  height: 36px;
  margin: 0 10px 0 0;
  text-align: center;
  line-height: 36px;
}
.btn-i:hover, .btn-i.active {
  background: none;
  color: #3b6ea0;
}
.btn-i:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-i:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #D8D8D8;
}

.head {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  min-height: 65px;
}

.title {
  font-size: 110%;
  line-height: 18px;
  color: #3b6ea0;
}
.title.cap {
  text-transform: uppercase;
  color: #FFF;
}
.title.bold {
  font-size: 150%;
  line-height: 35px;
  font-weight: bold;
  letter-spacing: 1px;
}

.sticky-head {
  position: sticky;
  top: 0;
  padding: 0 0 10px 0;
  z-index: 999;
  color: #FFF;
}
.sticky-head .txt {
  padding: 0 15px;
}

.sticky-head-geoportal {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 1px;
  z-index: 999;
  color: #000;
  width: 240px;
  border-radius: 5px;
  background-color: #3b6ea0;
}
.sticky-head-geoportal .txt {
  padding: 0 15px;
}

.head-geoportal {
  display: flex;
  align-items: center;
  border-radius: 5px;
  min-height: 36px;
  background-color: #3b6ea0;
}

.int {
  padding: 8px;
  width: calc(100% - 1px);
  box-sizing: border-box;
  border: 1px solid #7A7A7A;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0);
  color: #000;
  border-radius: 2px;
  line-height: 18px;
  height: 36px;
  position: relative;
}
.int:focus {
  border-color: #1b62fd;
  outline: 1px solid #1b62fd;
}
.int:disabled {
  opacity: 0.5;
}
.int.search-dark {
  background-image: url("../images/magnifiying-glass-w.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 5px center;
  padding-left: 30px;
}
.int.search-dark:focus {
  background-color: rgba(255, 255, 255, 0.5);
}
.int.search-light {
  background-image: url("../images/magnifiying-glass.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 5px center;
  padding-left: 30px;
}
.int.date {
  background: url("../images/calendar.svg") no-repeat 96% center;
  background-size: 20px;
}
.int.date::-webkit-inner-spin-button {
  display: none;
}
.int.date::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.int.slt {
  padding: 8px 22px 8px 8px;
  background-image: url("../images/ic-arrow-select.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  background-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.int.slt > option {
  background: #F8F8F8;
}
.int.slt:focus {
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.int.slt:disabled {
  opacity: 0.5;
}
.int.slt.no-bor {
  border: none;
}
.int.txt-a {
  min-height: 64px;
}
.int.error {
  border-color: #d10038;
}

.sub-bar {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  background: rgba(1, 18, 34, 0.9);
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: #FFF;
}
.sub-bar .title {
  font-size: 112.5%;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 36px;
}
.sub-bar .btn-i {
  background: none;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 2px;
  color: #1b62fd;
  font-size: 1.2rem;
  transition: background 0.5s ease;
  margin-right: 10px;
  line-height: 36px;
}
.sub-bar .btn-i:hover, .sub-bar .btn-i.active {
  background: none;
  color: #3b6ea0;
}
.sub-bar .btn-i:disabled {
  opacity: 0.5;
  cursor: default;
}
.sub-bar .btn-i:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #D8D8D8;
}
.sub-bar .btn-i i {
  transform: scale(1.2);
}
.sub-bar .box {
  display: flex;
  align-items: center;
}
.sub-bar .box:nth-child(2) .btn-i {
  margin-right: 0;
  margin-left: 10px;
}
.sub-bar .context .context-men {
  top: 64px;
}
.sub-bar.c01 {
  background: #1b62fd;
}

.layer-wrap {
  height: calc(100vh - 300px);
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 10px 0 0 0;
  margin: 10px 0 0 0;
  overflow: auto;
}

.menu-wrap {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.menu-wrap .link {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 10px;
  border-bottom: 1px solid #9C9D9E;
  text-decoration: none;
  color: #000;
}
.menu-wrap .link:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.menu-wrap .link:last-child {
  border: none;
}

.split2 {
  display: flex;
  margin-top: 10px;
}

.btn-group {
  display: flex;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.btn-group .rad-lab-btn {
  border: 1px solid #1b62fd;
}
.btn-group .rad-lab-btn .rad {
  display: none;
}
.btn-group .rad-lab-btn .lab {
  padding: 10px 15px;
  cursor: pointer;
  margin: 0;
  font-weight: normal;
  height: 100%;
  float: left;
}
.btn-group .rad-lab-btn .lab:hover {
  background-color: #1b62fd;
}
.btn-group .rad-lab-btn:not(:first-of-type) {
  border-left: 0;
}
.btn-group input[type=radio]:checked + label {
  background-color: #1b62fd;
  color: #FFF;
}

.tab-content {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 10px;
  box-sizing: border-box;
  height: calc(100vh - 125px);
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15);
  background-color: #FFF;
}

.container {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  position: relative;
  padding: 15px;
}

.dialog-sty {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 90vw);
  border: none;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.dialog-sty-Large {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 90vw);
  border: none;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}


.dialog-sty[open], .dialog-sty::backdrop {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.dialog-sty.small {
  width: 450px;
}

.dialog-sty-menu {
  top: 0;
  left: 0;
  width: min(260px, 100vw);
  height: 100vh;
  max-height: -moz-fit-content;
  max-height: fit-content;
  border: none;
  box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.15);
  overflow: auto;
  background: linear-gradient(-45deg, #1B75BC, #F7931E, #19BECF, #FFCB05, #39B54A);
}
.dialog-sty-menu[open], .dialog-sty-menu::backdrop {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.dialog-sty-filter {
  top: 0;
  right: 0;
  left: auto;
  width: 50vw;
  height: 100vh;
  max-height: -moz-fit-content;
  max-height: fit-content;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  overflow: auto;
  background-color: #E6E6E6;
}
.dialog-sty-filter[open], .dialog-sty-filter::backdrop {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.animate-lt {
  animation-name: animate-left-slide;
  animation-duration: 0.4s;
}

@keyframes animate-left-slide {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.animate-rt {
  animation-name: animate-right-slide;
  animation-duration: 0.4s;
}

@keyframes animate-right-slide {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
.slide-holder {
  position: relative;
}
.slide-holder .slides {
  position: relative;
  height: var(--banner-h);
}
.slide-holder .slides .img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.slide-holder .slides .img.active {
  z-index: 10;
  opacity: 1;
}
.slide-holder .slides .img.last-active {
  z-index: 9;
}
.slide-holder .slides .img .des {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  height: 100%;
  width: 220px;
  position: relative;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFF;
  padding: 10px;
  line-height: 24px;
}
.slide-holder .slide-no {
  position: relative;
  float: left;
  width: 100%;
  height: 20px;
}
.slide-holder .slide-no UL {
  position: relative;
  top: 0;
  left: 10px;
  float: left;
}
.slide-holder .slide-no UL LI {
  float: left;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #D8D8D8;
  border-radius: 100%;
}
.slide-holder .slide-no UL LI.active {
  background: #1b62fd;
  cursor: default;
}
.slide-holder .slide-no UL LI a {
  float: left;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.slide-holder .arrow {
  position: absolute;
  bottom: 1px;
  width: 16px;
  height: 16px;
  background: url(../images/arrow.svg) no-repeat center center;
  opacity: 0.8;
  z-index: 99;
}
.slide-holder .arrow.pre {
  right: 40px;
  transform: rotate(180deg);
}
.slide-holder .arrow.next {
  right: 10px;
}
.slide-holder .de-active {
  border: 2px solid #d45;
}

.logo {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  width: 200px;
}
.logo .img {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}

.info-box {
  display: flex;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  justify-content: center;
}
.info-box .box {
  display: flex;
  align-items: center;
  padding: 10px;
}
.info-box .box .icon {
  width: 32px;
  height: 32px;
  margin: 0 20px 0 0;
}
.info-box .box .txt-big {
  font-size: 150%;
  line-height: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}

.banner {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 0 0 0 36px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  border-radius: 0 0 20px 0;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
}

.link-v {
  display: flex;
  flex-direction: column;
}
.link-v.float-links {
  position: absolute;
  top: 10;
  left: 0;
}

.card {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  background: linear-gradient(#8db5ee 0, #fff 70%);
  border-radius: 15px;
  border: 1px solid #d0dbec;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}
.card .img-box {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  height: auto;
}
.card .txt {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 10px;
  display: flex;
  align-items: center;
}
.card .txt .title {
  font-size: 112.5%;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.card .des {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 0 10px 10px 10px;
  line-height: 20px;
}
.card .link-icon {
  width: 24px;
  height: 24px;
  text-align: center;
  color: #1b62fd;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background 0.5s ease;
}
.card .link-icon:hover {
  background-color: #1b62fd;
  color: #FFF;
}
.card .txt-link {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 3px 20px rgba(20, 122, 214, 0.24);
  transform: scale(1.02);
}
.card.basic {
  background: #FFF;
  transform: none;
  padding: 15px;
}
.card.basic:hover {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.card.basic .title {
  color: #1b62fd;
}

.footer {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 0 0;
}
.footer .list-h {
  padding: 5px;
}
.footer .list-h .icon {
  width: 24px;
  height: 24px;
  margin: 0 5px;
}
.footer .list-h .link {
  text-decoration: none;
  color: #000;
  padding: 0 10px;
}

.menu-wrap {
  display: none;
}
.menu-wrap .bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1100;
  display: block;
}
.menu-wrap .menu-main {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1102;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  width: 300px;
  background: #FFF;
  height: 100vh;
}
.menu-wrap .menu-list {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.menu-wrap .menu-list .list {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  text-decoration: none;
  padding: 20px;
  font-size: 112.5%;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.5s ease;
  border-top: 1px solid #E6E6E6;
}
.menu-wrap .menu-list .list .icon { /*@include icon-thumb;*/
  width: 24px;
  height: 24px;
  float: left;
  margin: 0 6px 0 0;
}
.menu-wrap .menu-list .list .txt {
  float: left;
  width: calc(100% - 30px);
}
.menu-wrap .menu-list .list:hover {
  background: #E6E6E6;
}
.menu-wrap .header {
  display: flex;
  height: 64px;
  align-items: center;
  background-color: rgba(27, 98, 253, 0.2);
}
.menu-wrap .header .menu-bar {
  float: left;
  line-height: 64px;
  padding: 0 20px;
  width: 64px;
  font-size: 150%;
  color: #9C9D9E;
  cursor: pointer;
}
.menu-wrap .header .menu-bar:hover {
  color: #1b62fd;
}
.menu-wrap .accordion-wrap {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.menu-wrap .accordion-wrap .acor-title {
  position: relative;
}
.menu-wrap .accordion-wrap .acor-title::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 5px;
  background-size: 100%;
  background-image: url("../images/plus.svg");
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9;
}
.menu-wrap .accordion-wrap .acor-title.minus::before {
  background-image: url("../images/minus.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.menu-wrap .accordion-wrap .acor-title .title {
  position: relative;
}
.menu-wrap .accordion-wrap .acor-content {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: none;
}
.menu-wrap .accordion-wrap .acor-content .sub-link {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  border-left: 8px solid #1b62fd;
}

.page-wrapper {
  max-width: 2200px;
  margin: auto;
  padding: 15px;
  box-sizing: border-box;
}

.bgc03 {
  background: linear-gradient(-45deg, #1B75BC, #F7931E, #19BECF, #FFCB05, #39B54A);
  background-size: 1000% 1000%;
  animation: gradient 50s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.mapbox {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(20, 122, 214, 0.24);
}

.fx-box {
  display: flex;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  align-items: stretch;
}
.fx-box .meta {
  padding: 5px;
  min-height: 60px;
}
.fx-box .meta .meta-box {
  color: #000;
}
.fx-box .meta .meta-box.txt {
  text-align: left;
  padding: 0;
}
.fx-box .meta .meta-box .des {
  padding: 0 0 5px 0;
}

.graph-box {
  width: calc(100% - 10px);
  min-height: 150px;
  margin: 5px;
  display: flex;
  justify-content: center;
}

.img-01 {
  background-image: url("../images/01-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
}

.graph {
  width: 100%;
  height: 150px;
}

.nav .btn-t.active {
  background-color: #3b6ea0;
  color: #FFF;
}

.list-ul {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.list-ul LI {
  padding: 10px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.list-ul LI a {
  text-decoration: none;
}
.list-ul LI a:hover {
  color: #1b62fd;
}
.list-ul LI:last-child {
  border: none;
}

.form-sty {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  padding: 20px;
}
.form-sty.pad-off {
  padding: 0;
}
.form-sty .box {
  width: 100%;
}
.form-sty .row {
  margin: 0 0 20px 0;
  display: flex;
}
.form-sty .row.mar {
  margin: 20px 0;
}
.form-sty .row.loop-ver {
  flex-direction: column;
  margin: 0;
}
.form-sty .row.loop-ver .box {
  padding: 0 0 10px 0;
}
.form-sty .form-head {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  margin: 0 0 20px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D8D8D8;
}
.form-sty .form-head .btn-i {
  background: none;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 2px;
  color: #1b62fd;
  font-size: 1.2rem;
  transition: background 0.5s ease;
}
.form-sty .form-head .btn-i:hover, .form-sty .form-head .btn-i.active {
  background: none;
  color: #3b6ea0;
}
.form-sty .form-head .btn-i:disabled {
  opacity: 0.5;
  cursor: default;
}
.form-sty .form-head .btn-i:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #D8D8D8;
}
.form-sty .form-head .btn-i:hover {
  color: #E6E6E6;
}
.form-sty .form-head .title {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  font-size: 110%;
  line-height: 18px;
  padding: 0 0 10px 0;
  text-transform: uppercase;
  color: #3b6ea0;
}
.form-sty .form-head .des {
  font-size: 90%;
}
.form-sty .form-head .ic-help {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 150%;
  line-height: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #389ca9;
  cursor: pointer;
}
.form-sty .form-head.bg-g02 {
  background: linear-gradient(45deg, #02726B, #00ACA1);
  padding: 10px;
  color: #FFF;
  margin: 0;
}
.form-sty .form-head.bg-g02 .title {
  color: #FFF;
}
.form-sty .form-head.bg-g03 {
  background: linear-gradient(#8db5ee 0, #fff 70%);
  padding: 10px;
  color: #FFF;
  margin: 0;
}
.form-sty .form-head.bg-g03 .title {
  color: #FFF;
}
.form-sty .form-head .box.back, .form-sty .form-head .box.close, .form-sty .form-head .box.closeNew, .form-sty .form-head .box.single-icon {
  width: 50px;
}
.form-sty .form-head .box.pag-nav {
  display: flex;
  align-items: center;
  width: 120px;
}
.form-sty .lab {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  margin: 0 0 5px 0;
  font-weight: bold;
  line-height: 20px;
}
.form-sty .lab.req:before {
  content: "*";
  color: #537083;
  padding: 0 5px 0 0;
}
.form-sty .sw-lab .lab {
  font-weight: normal;
}
.form-sty .read-only {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.form-sty .read-only .lab-txt {
  margin: 0 15px 15px 0;
}
.form-sty .read-only .lab-txt .lab {
  font-size: 90%;
  font-weight: normal;
}
.form-sty .read-only .lab-txt .txt {
  font-size: 112.5%;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  font-weight: bold;
  word-break: break-word;
}
.form-sty .read-only.split-view {
  margin: 0 0 20px 0;
}
.form-sty .read-only.split-view .lab-txt {
  width: calc(33.33% - 15px);
}
.form-sty.inline {
  display: flex;
  flex-wrap: wrap;
}
.form-sty.inline .box {
  width: 300px;
  box-sizing: border-box;
  padding: 0 20px 20px 0;
}
.form-sty.inline .box.x2 {
  width: 600px;
}
.form-sty.inline .box.x3 {
  width: 900px;
}
.form-sty.inline .box.lab-off {
  padding-top: 26px;
}
.form-sty .two-lab .lab {
  width: auto;
}
.form-sty .rel-btn {
  display: flex;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
}
.form-sty .rel-btn .int {
  width: calc(100% - 46px);
}
.form-sty .rel-btn.item2 .int {
  width: calc(100% - 92px);
}
.form-sty .rel-btn .btn-ico {
  background: rgba(0, 0, 0, 0);
  padding: 9px 20px;
  border: 1px solid #537083;
  border-radius: 100px;
  outline: none;
  margin: 2px;
  color: #000;
  transition: background 0.5s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 100%;
  line-height: 18px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0 0 0 10px;
  text-align: center;
  line-height: 36px;
}
.form-sty .rel-btn .btn-ico.danger {
  border-color: #d10038;
}
.form-sty .rel-btn .btn-ico:hover {
  border-color: #537083;
  color: #FFF;
  background: #537083;
  cursor: pointer;
}
.form-sty .rel-btn .btn-ico:disabled {
  opacity: 0.5;
  cursor: default;
}
.form-sty .rel-btn .btn-ico:disabled:hover {
  background: rgba(0, 0, 0, 0);
  color: #000;
}
.form-sty .rel-btn.bg {
  background-color: #FFF;
  padding: 8px;
  border-radius: 5px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.form-sty.type01 {
  background-color: #FFF;
  border: 1px solid #1b62fd;
  margin-right: 10px;
  width: calc(100% - 10px);
  border-radius: 5px;
}
.form-sty .split2 {
  display: flex;
}
.form-sty .split2 .box {
  width: 50%;
  padding: 0 5px 5px 0;
  box-sizing: border-box;
}
.form-sty .split2 .box:nth-child(2) {
  padding: 0 0 5px 0;
}

.cards {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.cards .v-card {
  margin: 10px;
  padding: 5px;
  border-radius: 15px;
  border: 1px solid #d0dbec;
  width: 300px;
  border-bottom-color: #389ca9;
}
.cards .v-card .title {
  padding: 10px;
}/*# sourceMappingURL=style.css.map */