:root {
  --color1: #3d5a80;
  --color2: #98c1d9;
  --color3: #e0fbfc;
  --color4: #ee6c4d;
  --color5: #293241;

  --color6: #ddc2a5ff;
  --color7: #201e21ff;
  --color8: #e0aa6eff;
  --color9: #c83737ff;
  --color10: #a7beae;

  --clear-color: white;
}

/* @font-face {
  font-family: "Dosis-Regular";
  src: url(./assets/fonts/Dosis-Regular.ttf);
} */

@font-face {
  font-family: "Lato-Regular";
  src: url(./assets/fonts/Lato/Lato-Regular.ttf);
}

#pre-load {
  display: flex;
  flex-direction: column;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  z-index: 3000;
}

#pre-load > img {
  width: 180px;
  /* border-radius: 50%; */
  /* border: 4px solid black; */
  /* box-shadow: 0px 0px 12px black; */
}

body {
  padding: 0px;
  margin: 0px;
  background-color: var(--clear-color);
  font-family: "Lato-Regular";
}

.header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  max-height: 44px;
  overflow-y: visible;
  z-index: 500;
  background-image: linear-gradient(90deg, var(--color2) 70%, var(--color1));
  border-bottom: 4px solid var(--color4);
}

.header > .cont-left-space {
  height: 40px;
  width: 20px;
}

.header > .cont-logo {
  width: 60px;
  height: 70px;
  background-image: linear-gradient(var(--color2) 56px, var(--color5));
  margin: 0px;
  border-radius: 0px 0px 12px 12px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header > .cont-logo:hover {
  cursor: pointer;
  transition: 0.25s;
}

.header > .cont-logo > img {
  width: 40px;
  height: auto;
}

.header > .cont-logo:hover > img {
  transition: 0.25s;
  transform: scale(1.05);
}

.header > .cont-logo::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 40px;
  left: -12px;
  border-top-right-radius: 10px;
  box-shadow: 3px -3px 0px var(--color2);
}

.header > .cont-logo::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 40px;
  right: -12px;
  border-top-left-radius: 10px;
  box-shadow: -3px -3px 0px var(--color2);
}

.header > .cont-title {
  flex: 1;
  height: 40px;
  padding: 0px 0px 0px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.header > .cont-title > .title-top {
  padding: 0px;
  margin: 0px;
}

.header > .cont-title > .title-top::before {
  content: "SIMPUL Poso (Dashboard)";
  font-size: 11pt;
  font-weight: bold;
}

.header > .cont-right-button {
  width: 60px;
  height: 40px;
  background-color: var(--color4);
  border-top-left-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

.header > .cont-right-button::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -12px;
  width: 12px;
  height: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 4px 4px 0px var(--color4);
}

.header > .cont-right-button a {
  text-decoration: none;
}

.header > .cont-right-button .btn {
  height: 30px;
  width: 30px;
  background-color: var(--color2);
  vertical-align: middle;
  margin-top: 8px;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  padding: 0px !important;
}

.header > .cont-right-button .btn::before {
  font-family: FontAwesome;
  content: "\f2c0";
  font-size: 14pt;
}

/* Bagian Conten */
section.content {
  position: relative;
  height: calc(100vh - 44px);
}
/* Custom Plugins */
/* .select2-results__option {
  font-size: 10pt !important;
  font-weight: normal !important;
}

.select2-results__option--highlighted {
  font-size: 10pt !important;
  font-weight: normal !important;
} */

.cont-tab-title {
  padding-bottom: 8px;
}

ul.tab-title {
  position: relative;
  width: 100%;
  height: auto;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 4px 12px 4px 96px;
}

ul.tab-title > li {
  height: auto;
  width: auto;
  padding: 4px 4px 10px 4px !important;
  margin-right: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  transition: 0.25s;
  transform: translate(0px, 0px);
}

ul.tab-title > li:hover {
  cursor: pointer;
}

ul.tab-title > li:hover > .icon {
  transition: 0.25s;
  transform: rotate(45deg);
}

ul.tab-title > li.selected {
  background-color: var(--color10);
  border-radius: 18px 18px 0px 0px;
  padding-right: 10px !important;
  margin-left: -6px;
}

ul.tab-title > li > .icon {
  width: 30px;
  height: 30px;
  background-color: #ee6c4d;
  border-radius: 50%;
  margin-right: 6px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

ul.tab-title > li > .icon > .item {
  font-size: 12pt;
  color: var(--color3);
}

/* ul.tab-title > li > .icon . {} */

ul.tab-title > li > .title {
  display: none;
  visibility: hidden;
  z-index: 20;
  transition: 0.25s;
}

ul.tab-title > li > .title-hide {
  position: absolute;
  bottom: -28px;
  left: 0px;
  width: 0px;
  height: auto;
  display: none;
  visibility: hidden;
  z-index: 20;
  transition: 0.25s;
}

ul.tab-title > li.selected:hover > .title-hide {
  position: absolute;
  bottom: -28px;
  left: 0px;
  width: 0px;
  height: auto;
  display: none;
  visibility: hidden;
  z-index: 20;
  transition: 0.25s;
}

ul.tab-title > li:hover > .title-hide {
  display: unset;
  visibility: visible;
  white-space: nowrap;
  width: auto;
  height: 26px;
  transition: 0.25s;
}

ul.tab-title > li > .title.show {
  font-size: 11pt;
  white-space: nowrap;
  width: 0px;
  overflow: visible;
  display: unset;
  visibility: visible;
  transition: 0.25s;
  background-color: var(--clear-color);
}

ul.tab-title > li > .title.show.expand {
  transition: 0.25s;
  width: auto;
  background-color: unset;
}

ul.tab-title > li > .title.to-bottom {
  transition: 0.25s;
  transform: translate(-36px, 30px);
}

ul.tab-title > li.selected::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: -36px;
  width: 36px;
  height: 36px;

  border-bottom-right-radius: 50%;
  box-shadow: 8px 8px 0px var(--color10);
}

ul.tab-title > li.selected::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: -36px;
  width: 36px;
  height: 36px;

  border-bottom-left-radius: 50%;
  box-shadow: -8px 8px 0px var(--color10);
}

div.tab-content {
  width: 100%;
  background-image: linear-gradient(180deg, var(--color10) 50%, transparent);
  margin-top: -29px;
  padding: 32px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: calc(100vh - 92px);
}

div.tab-content > .cont-content {
  background-color: var(--clear-color);
  border-radius: 4px;
  height: 0px;
  width: 0px;
  overflow: hidden;
  padding: 0px;
  transition: 0.25s;
  flex-wrap: nowrap;
  white-space: nowrap;
}

div.tab-content > .logo-simp {
  height: auto;
  min-height: 50px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.logo-simp > img {
  display: inline-flex;
  justify-content: center;
  width: 180px;
}

div.tab-content > .cont-content.expand {
  min-height: 70px;
  height: auto;
  width: 100%;
  padding: 4px;
  transition: 0.25s;
}

hr.thin {
  padding: 1px;
  margin: 8px 0px 12px 0px;
}

.my-table-over {
  padding: 12px 4px 8px 4px;
  overflow-x: auto;
}

.my-table {
  padding: 8px 0px 8px 0px;
  min-width: 500px;
  max-width: 800px;
  width: 100%;
  margin: auto;
  font-size: 12pt;
}

.my-table th,
.my-table td {
  padding: 4px;
  white-space: wrap;
  vertical-align: top;
}

.my-table > thead th {
  font-weight: bold;
}

.my-table > tfoot td {
  font-weight: bold;
}

.cont-dash-icon {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 8px 4px 4px 8px;
}

.cont-content a {
  text-decoration: none;
}

.cont-dash-icon .logo {
  height: 60px;
  width: 60px;
  background-color: var(--color4);
  border-radius: 50%;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.cont-dash-icon .logo > .my-logo {
  font-size: 18pt;
  color: var(--color3);
}

.cont-dash-icon .title {
  text-align: center;
  font-size: 14pt;
  font-weight: bold;
  color: var(--color1);
}

/* custom plugin class */

/* select2 */

/* scrollbar */
.cont-tab-title .os-scrollbar-horizontal {
  bottom: 20px !important;
}
