label.required:after {
  content: " *";
  color: red;
}

.max-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.max-lines2 {
  width: 650px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hide {
  display: none;
}

.pointer {
  cursor: pointer;
}

/* @import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap"); */

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #20152d;
  } */
.rating {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.rating input {
  display: none;
}
.rating label {
  position: relative;
  width: 0;
  height: 90px;
  cursor: pointer;
  transition: 0.5s;
  filter: grayscale(1);
  text-align: center;
  opacity: 0;
}
.rating:hover label {
  width: 160px;
  opacity: 0.2;
}
.rating input:hover + label,
.rating input:checked + label {
  filter: grayscale(0);
  opacity: 1;
  width: 160px;
}
.rating label p {
  color: #000;
  font-size: 13px;
  padding-top: 10px;
  font-weight: 500;
  white-space: normal;
  opacity: 0;
  transform: translateY(-50px) scale(0);
  transition: 0.5s;
}
.rating input:hover + label p,
.rating input:checked + label p {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dropbtn {
  background-color: #e1f0ff;
  color: black;
  padding: 0.375rem 0.75rem;
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #f8f9fa;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  font-family: Arial;
  min-width: 130px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* .dropdown a:hover {
    background-color: #ddd;
  } */

.show {
  display: block;
}

/* search dashboard frontend */
/*the container must be positioned relative:*/

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fafafa;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/* === ADDITIONAL CSS === */
body {
  background-color: #fff;
}

p {
  font-weight: 400;
}

.home-hero {
  background-color: var(--rz-combine-first-color);
  padding-top: calc(var(--rz-header-height) - 5rem);
  height: calc(var(--rz-header-height) + 450px);
  overflow: initial;
}

.home-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) -90%,
    rgba(0, 0, 0, 0) 95%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) -90%,
    rgba(0, 0, 0, 0) 95%
  );
}

.home-hero__title {
  font-size: 22px;
}

.home-hero__subtitle {
  font-size: 14px;
}

.header-top .main-header {
  height: var(--rz-header-height-sm);
  padding: 0;
  background-color: transparent;
}

.header-top .main-header > .container {
  height: 100%;
}

.header-top .main-header .navbar {
  height: 100%;
}

.header-top .main-header .navbar-toggler[aria-expanded="false"] > .unopen {
  display: block;
}
.header-top .main-header .navbar-toggler[aria-expanded="false"] > .open {
  display: none;
}
.header-top .main-header .navbar-toggler[aria-expanded="true"] > .unopen {
  display: none;
}
.header-top .main-header .navbar-toggler[aria-expanded="true"] > .open {
  display: block;
}

.header-top .navbar-nav .nav-link {
  color: rgba(6, 70, 99, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.header-top .navbar-nav .nav-link:hover {
  color: #fcfcfc;
}

.header-top .navbar-brand > img {
  height: 50px;
}

.header-top .navbar-toggler {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* .header-top .logo-header-light {
    display: none;
  } */

.header-top .logo-header {
  display: none;
}

.header-top.is-transparent .main-header {
  background-color: transparent;
}

.header-top.is-transparent .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header-top.is-transparent .navbar-nav .nav-link:hover {
  color: #fff;
}

.header-top.is-sticky .navbar-toggler {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.header-top.is-sticky .navbar-nav .nav-link:hover {
  color: var(--rz-combine-second-color);
}

.header-top.is-transparent .logo-header {
  display: none;
}

.header-top.is-transparent .logo-header-light {
  display: block;
}

.header-top.is-sticky .logo-header-light {
  display: none;
}

.header-top.is-sticky .logo-header {
  display: block;
}

.home-hero .search-global .search-global-inner {
  max-width: 550px;
  width: 100%;
  padding: 7px;
}

.box-topic {
  border-radius: 0.4rem;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  background-color: #f5f5f5;
  transition: all 0.2s ease-in-out !important;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.box-topic__img {
  width: 50px;
  height: 50px;
}

.box-topic__img > img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.box-topic__content {
  font-size: 0.75rem;
  flex-grow: 1;
  font-weight: 500;
}

.box-topic:hover {
  /* background-color: var(--rz-primary-color); */
  box-shadow: 0 0 0 2px var(--rz-combine-nine-color);
}

.box-topic:hover h6 {
  color: #fff;
}

.topic-outer {
  position: relative;
  top: -180px;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}

.shape-round {
  position: absolute;
  bottom: -105px;
  left: 0;
  width: 105px;
  height: 105px;
  background-color: var(--rz-combine-first-color);
  border-bottom-right-radius: 80px;
  z-index: -2;
}

.shape-round::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top-left-radius: 80px;
}

.box-statistic {
  position: relative;
  display: block;
  text-decoration: none;
}

.box-statistic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.065);
  border-bottom-right-radius: 130px;
  border-top-left-radius: 130px;
}

.header-top {
  z-index: 1005;
}

.pagebar-header:not(.is-light) {
  padding-top: calc(var(--rz-header-height) + 10px) !important;
  background: linear-gradient(0deg, #780000, #c90000de);
  padding-bottom: 70px;
  /* border-bottom-right-radius: 80px; */
}

.pagebar-header.is-light {
  background-color: #f8f8f8;
  border-bottom: 1px solid #d8dee4;
  border-right: 1px solid #d8dee4;
  padding-bottom: 70px;
  padding-top: 100px;
  /* border-bottom-right-radius: 80px; */
}

.pagebar-header.is-light .shape-round {
  background-color: #f6f8fa;
  z-index: 0;
}

.pagebar-header.is-light .shape-round::before {
  border-top: 1px solid #d8dee4;
  border-left: 1px solid #d8dee4;
}

.side-topic-item:not(:first-child) {
  margin-top: 1px;
}

.side-topic-item > a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.65);
  /* border-right: 4px solid transparent; */
  border-radius: 6px;
}

.side-topic-item > a .icon {
  width: 25px;
  height: 25px;
}

.side-topic-item > a .icon > img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.side-topic-item > a:hover {
  background-color: #f0f0f0;
}

.side-topic-item.is-active > a {
  background-color: #f0f0f0;
  /* border-right-color: var(--rz-primary-color); */
  color: #333;
  font-weight: 500;
}

/* .side-topic-list {
    padding: 1rem 0;
    border-radius: 10px;
    border: 1px solid rgb(218, 223, 231);
    box-shadow: 
      rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
      rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
      rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
  } */

.side-topic-list {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.dataset-sidenav {
  display: none;
  width: 257px;
}

/* .dataset-content {
    padding-left: 20px;
  } */

.dataset-list {
  border: 1px solid rgb(218, 223, 231);
  border-radius: 20px;
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.1);
}

.dataset-item:not(:first-child) {
  border-top: 1px solid rgb(218, 223, 231);
}

.dataset-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.dataset-item:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.dataset-item {
  padding: 1rem;
  display: flex;
  align-items: stretch;
}

.dataset-item:hover {
  background-color: #f5f5f5;
}

.dataset-item__img {
  width: 75px;
  height: 75px;
}

.dataset-item__img > img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.search-result .search-global .search-global-inner .col-md-4 select {
  background: white !important;
  padding: 10px !important;
  border: none !important;
}

.box-company {
  padding: 1rem;
  display: block;
  margin-bottom: 25px;
  background-color: #fff;
}

.box-company__img {
  width: 80px;
  height: 80px;
  background-color: #eaeaea;
  padding: 6px;
  border-radius: 12px;
}

.box-company__img > img {
  object-fit: contain;
  /*image-rendering: pixelated;*/
}

.box-company__footer {
  background-color: #f5f5f5;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -1rem;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.infographic-detail {
  margin-top: var(--rz-header-height);
  background-color: #eaeaea;
  position: relative;
  min-height: calc(100vh - var(--rz-header-height-sticky));
}

.infographic-frame {
  background-color: #eaeaea;
}

.infographic-frame__inner {
  padding: 2.25rem 1.5rem;
}

.infographic-frame figure img {
  object-fit: contain;
  border-radius: 15px;
}

.infographic-frame .card {
  border: 0px;
  box-shadow: 1px 2px 5px rgb(0 0 0 / 20%);
  border-radius: 10px;
}

.infographic-frame .card .card-body img,
.infographic-frame .card .card-body iframe {
  width: 100%;
  height: 380px;
}

.infographic-content {
  padding: 2.25rem 0 3rem;
}

.slider-infographics .slick-list {
  margin: 0 -12px;
}

.slider-infographics .slick-slide {
  margin: 0 12px;
}

.slider-infographics .slick-dots {
  bottom: -12px;
}

.slider-infographics .slick-dots li {
  margin: 0;
}

.slider-infographics .slick-dots li:not(:last-child) {
  margin-right: 4px;
}

.slider-infographics .slick-dots li button {
  padding: 0;
}

.slider-infographics .slick-dots li button::before {
  font-size: 10px;
  color: #fff;
  opacity: 0.25;
}

.slider-infographics .slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}

.box-infografis__img {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.box-infografis__img > img {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

footer.sticky-footer {
  background-color: var(--rz-combine-second-color);
}

.statistic-section {
  position: relative;
  padding: 6.75rem 0;
  /* border-top-left-radius: 80px;
    border-bottom-right-radius: 80px; */
}

.statistic-shape {
  width: 105px;
  height: 105px;

  position: absolute;
  background-color: var(--rz-primary-color);
}

.statistic-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: #fff;
  /* border-bottom-right-radius: var(--rz-border-radius-xxl); */
}

.statistic-shape.is-top-right {
  top: -105px;
  right: 0;
}

.statistic-shape.is-top-right::before {
  border-bottom-right-radius: var(--rz-border-radius-xxl);
}

.statistic-shape.is-bottom-left {
  bottom: -105px;
  left: 0;
}

.statistic-shape.is-bottom-left::before {
  border-top-left-radius: var(--rz-border-radius-xxl);
}

.statistic-pattern-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  width: 275px;
}

.statistic-pattern-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  width: 275px;
  /* transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg); */
}

.dataset-detail .banner {
  background: #f4f4f4;
}

.dataset-detail .nav-pills .nav-link.active,
.dataset-detail .nav-pills .show > .nav-link {
  background-color: var(--rz-secondary-color) !important;
}

.dataset-detail .nav-pills .nav-link {
  background-color: #f0f0f0 !important;
}

.app-box-card {
  border: 1px solid rgb(218, 223, 231);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
  background-color: #fff;
}

.app-box-card__head {
  background-color: #f6f8fa;
  padding: 0.75rem 1rem;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.app-box-card__body {
  padding: 0.75rem 1rem;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.app-box-card.with-table .app-box-card__body {
  padding: 0;
}

.app-box-card.with-tabs .nav {
  background-color: #e4ebf2;
  padding: 5px;
  border-radius: 0.25rem;
}

.app-box-card.with-tabs .nav-pills .nav-link.active,
.app-box-card.with-tabs .nav-pills .show > .nav-link {
  background-color: var(--rz-secondary-color);
}

.od-collapsible-item > a {
  background-color: #fff;
  color: #333;
  font-size: 1.125rem;
  /* border-bottom: 1px solid #ccc; */
  padding: 10px 0 10px 0;
  /* border-top: 1px solid #ccc; */
}

/* .od-collapsible-item:first-child > a {
    border-top: 1px solid #e6e6e6;
  } */

.od-collapsible-item > a {
  border-bottom: 1px solid #e6e6e6;
}

.od-collapsible-item > a[aria-expanded="false"] > .od-icon {
  rotate: 180deg;
}

.box-sector-item {
  border: 1px solid rgb(218, 223, 231);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
  background-color: #fff;
  margin-bottom: 1rem;
  height: 85px;
}

.box-sector-item__img {
  width: 75px;
}

.box-sector-item__content {
  padding: 0.75rem;
}

.box-sector-item__content > h6 {
  margin-bottom: 0.325rem;
}

/* Start Customize */

.text-danger {
  color: #ae0f12 !important;
}

.home-hero .search-global .search-global-inner {
  border-radius: 30px;
}

.btn.btn-circle {
  border-radius: 50%;
  width: 39px;
  height: 38px;
}

.btn.btn-rounded-pill {
  border-radius: 30px;
  padding: 5px 18px !important;
}

/* Nav Customize */

.nav-tabs.nav-tabs-custom {
  border-bottom: none;
}

.nav-tabs.nav-tabs-custom .nav-link:first-child {
  clip-path: polygon(0% 0%, 85% 0, 100% 50%, 85% 100%, 0% 100%);
  width: 120px;
  background-color: var(--rz-combine-ten-color);
  border-radius: 0px;
  border: none;
  color: white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.nav-tabs.nav-tabs-custom
  .nav-link:not(.nav-tabs.nav-tabs-custom .nav-link:first-child) {
  background-color: var(--rz-combine-ten-color);
  clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
  border-radius: 0px;
  width: 120px;
  margin-left: -15px;
  border: none;
  color: white;
  padding-left: 27px;
}

.nav-tabs.nav-tabs-custom .nav-link.active {
  background-color: var(--rz-combine-second-color) !important;
}

.topic-outer {
  border: 2px solid orange;
}

.box-navigasi {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  margin: 8px 0px;
  height: 160px;
  border-radius: 10px;
  border-top: 4px solid var(--rz-combine-second-color);
  box-shadow: 1px 1px 6px rgb(0, 0, 0, 0.2);
}

.navigasi-content {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.navigasi-content img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.navigasi-content .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #3c3c3c;
  border-radius: 50%;
  margin: 10px 0;
  background-color: #f8f8f8;
  width: 75px;
  height: 75px;
  transition: 1s;
}

.navigasi-content .icon-box:hover {
  background-color: #5f5f5f;
  border: 4px solid #9e3838;
  transition: 1s;
}

.navigasi-content .icon-box:hover img {
  filter: brightness(0) invert(1);
  transition: 1s;
}

.navigasi-content .box-topic__content:hover {
  color: #ae0f12;
  transition: 0.5s;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  color: #ffffff;
  line-height: 30px;
  font-size: 24px;
  padding: 10px 30px 10px 30px;
  background: #454847;
  text-transform: uppercase;
  font-weight: 800;
}

.section-title h2::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0px;
  width: 20px;
  height: 100%;
  background: #932527;
  transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
}

.section-title h2::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0px;
  width: 20px;
  height: 100%;
  background: #932527;
  transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
}

.post-img {
  width: 100%;
  background-color: #eaeaea;
  border-radius: 10px;
}

.post-img img {
  width: 100% !important;
  object-fit: contain;
  border-radius: 10px;
  padding: 20px;
}

.blog-grid .cont {
  height: 125px;
  padding: 15px 10px 0;
  margin-left: 12%;
  margin-top: -100px;
  background: #eeeeee;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top: 3px solid #912527;
  box-shadow: 1px 2px 8px rgb(0, 0, 0, 0.3);
}

.blog-grid .cont h6 {
  font-size: 0.8rem;
  height: 35px;
}

.text-orange {
  color: #ed7500;
}

.mtn-110px {
  margin-top: -110px;
}

.mtn-220px {
  margin-top: -220px;
}

.banner-container {
  border-radius: 15px;
  box-shadow: 1px 2px 8px rgb(0, 0, 0, 0.3);
}

.banner-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.link-grid .owl-nav .owl-next {
  right: -30px;
  margin-top: -5px !important;
  border-radius: 5px !important;
}

.link-grid .owl-nav .owl-prev,
.link-grid .owl-nav .owl-next {
  position: absolute;
  border: 1px solid #dddddd;
  top: 0px !important;
  width: 30px !important;
  height: 64px !important;
  line-height: 54px !important;
  padding: 5px 5px !important;
  margin: 0px;
  font-size: 0px !important;
  overflow: hidden !important;
  color: #f1c410 !important;
  text-align: center !important;
  background: none !important;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.link-grid .owl-nav .owl-prev {
  left: -30px;
  margin-top: -5px !important;
  border-radius: 5px !important;
}

.link-grid .owl-nav .owl-prev:hover,
.link-grid .owl-nav .owl-next:hover {
  background: #901f21 !important;
  color: #ffffff;
  border-color: #901f21;
}

.link-grid {
  position: relative;
  padding: 30px 0px;
  width: 100%;
  background: #ffffff;
}

.link-grid .slider-container {
  position: relative;
  padding: 0px 30px;
}

.link-grid .slider-container li {
  text-align: center;
}

.link-grid .slider-container li img {
  width: auto !important;
  display: inline-block !important;
  opacity: 0.9;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.link-grid .slider-container li img:hover {
  opacity: 1;
}

.link-grid .owl-controls {
  margin: 0px !important;
}

.link-grid .owl-nav {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
}

.link-grid .owl-nav .owl-prev:after,
.link-grid .owl-nav .owl-next:after {
  font-size: 15px !important;
  color: #838383;
  font-family: "FontAwesome";
}

.link-grid .owl-nav .owl-prev:after {
  content: "\f104";
}

.link-grid .owl-nav .owl-next:after {
  content: "\f105";
}

.link-grid .owl-nav .owl-prev:hover:after,
.link-grid .owl-nav .owl-next:hover:after {
  color: #ffffff;
}

.link-grid .slider-link {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

.owl-carousel {
  touch-action: manipulation;
}

.footer-widget {
  margin-top: 20px;
  color: #e6e6e6;
}

.footer-widget h3 {
  font-size: 15px;
  margin-bottom: 1.2rem;
}

.footer-widget .widget-content table i {
  color: #e0e0e0;
}

.footer-widget table .h-30px {
  height: 30px;
}

.width-table-statistik {
  width: 100px;
}

.footer-menu-link {
  padding-inline-start: 12px;
}

.footer-menu-link li {
  margin: 10px 0;
}

.footer-menu-link li::before {
  font-size: 12px !important;
  font-family: "FontAwesome";
  color: #e0ba49;
  content: "\f105";
  left: 12px;
  position: absolute;
}

.login-form.floating-form {
  position: fixed;
  width: 315px;
  top: 70px;
  right: 170px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 2px solid #a35a5c;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: 0.2s;
  z-index: 1005;
  padding: 25px 27px;
}

.login-form.floating-form.show {
  transform: translateY(0%);
  transition: 0.2s;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--rz-combine-thrid-color) !important;
  border-color: var(--rz-combine-thrid-color) !important;
}

.btn-primary:focus,
.btn-primary.focus {
  background-color: var(--rz-combine-thrid-color) !important;
  border-color: var(--rz-combine-thrid-color) !important;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 125, 38, 0.61);
}

.form-container .login-form form label {
  font-size: 12px;
}

.form-container .login-form form input {
  border-radius: 30px;
}

.form-container .login-form form button {
  font-size: 14px;
  border-radius: 30px;
}

.g-recaptcha {
  transform: scale(0.9);
  margin-left: -20px;
}

.loading-container {
  text-align: center;
  margin: 220px 0px;
}

.not-found-container {
  text-align: center;
  margin: 80px 0px;
}

.not-found-container .icon-not-found {
  font-size: 100px;
}

/* Detail Dataset */

.img-pattern-right {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  filter: drop-shadow(2px 4px 6px black);
}

.img-pattern-left {
  position: absolute;
  left: 0;
  top: 80px;
  opacity: 0.2;
  filter: drop-shadow(2px 4px 6px black);
}

/* Topik dan Organisasi */

.card.card-rounded {
  border-radius: 20px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
}

.card.card-rounded .banner {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.img-pattern-right-radius {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  filter: drop-shadow(2px 4px 6px black);
  border-bottom-right-radius: 80px;
}

.banner.banner-custom .img-cover {
  position: absolute;
  width: 237px;
  height: 200px;
  opacity: 0.08;
  object-fit: contain;
  top: 0px;
  right: 10px;
  filter: grayscale(1);
}

.form-control.form-control-custom:focus {
  box-shadow: none;
}

.search-box-container {
  /* height: 60px; */
  border: none;
  border-radius: 10px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
}

figure.dataset-item__img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 12px;
}

.select2 i,
.select2 span {
  display: block;
}

.select2-container .select2-selection--single {
  height: 33px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 32px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 30px;
}

.max-lines.title-cards {
  min-height: 33px;
}

a.box-infografis {
  box-shadow: 1px 2px 8px rgb(0, 0, 0, 0.1);
}

.box-infografis__img img {
  object-fit: contain;
}

.box-infografis__content {
  background-color: #ececec;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
  background: transparent;
}

.card.card-empty-data {
  border: 0px;
  border-radius: 10px;
  box-shadow: 1px 2px 8px rgb(0, 0, 0, 0.2);
}

.card.card-empty-data .card-body {
  padding: 95px 0px;
  text-align: center;
}

.card.card-empty-data .icon-card {
  font-size: 80px;
}

.page-link {
  color: #222222;
}

.page-link:hover {
  z-index: 2;
  color: #b30000;
  text-decoration: none;
  background-color: #efe9e9;
  border-color: #e6dede;
}

.page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.page-item.active .page-link {
  background-color: #ae0f12;
  border-color: #ae0f12;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: white;
}

.datepicker {
  padding: 0.375rem 0.75rem;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #f1e5e5;
}

.btn-orange {
  color: #212529;
  background-color: #ffa107;
  border-color: #ffa107;
}

.btn-orange:not(:disabled):not(.disabled):active:focus,
.btn-orange:not(:disabled):not(.disabled).active:focus,
.show > .btn-orange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 138, 12, 0.5);
}

.btn-orange:not(:disabled):not(.disabled):active,
.btn-orange:not(:disabled):not(.disabled).active,
.show > .btn-orange.dropdown-toggle {
  color: #212529;
  background-color: #e8a300;
  border-color: #e8a300;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #e8a300;
  border-color: #e8a300;
  box-shadow: 0 0 0 0.2rem rgba(222, 138, 12, 0.5);
}

.btn-warning:hover {
  color: #212529;
  background-color: #e8a300;
  border-color: #e8a300;
}

.btn-outline-warning {
  color: #755507;
}

.card.card-shadow {
  border: none;
  border-radius: 12px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}

.box-statistic.box-open-data {
  min-width: 150px;
}

input[type="file"].form-control.form-control-custom {
  padding: 0.2rem 0.2rem;
}

.swal2-icon.swal2-success .line.tip {
  top: 8px;
}

.swal2-icon.swal2-success .line.long {
  top: 0px;
}

.success-container .emoticon {
  text-align: center;
  font-size: 100px;
  color: #3d3d3d;
}

.success-container .information .title-primary {
  color: #6c0606;
}

.success-container .information p {
  color: #171717;
}

.success-container .information .btn-back {
  border-radius: 30px;
  padding: 7px 25px;
}
