.modal-title {
  text-transform: capitalize;
}

.dot {
  height: 30px;
  width: 30px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}
/* LOGO */
.navbar-vertical .navbar-brand-img,
.navbar-vertical .navbar-brand>img {
  width: 100% !important;
  max-height: 50rem;
}

.g-sidenav-pinned .sidenav .navbar-brand,
.g-sidenav-pinned .sidenav .navbar-heading {
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {

  .navbar-vertical .navbar-brand-img,
  .navbar-vertical .navbar-brand>img {
    max-height: 5rem !important;
  }

  .g-sidenav-pinned .sidenav .navbar-brand,
  .g-sidenav-pinned .sidenav .navbar-heading {
    margin: 0 auto;
  }
}

/* END LOGO */
.chartcss {
  max-width: 750px;
}

/* BUTTON bootsrtrap */
.form-control:focus {
  border-color: #3f285e !important;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle{
  background-color:#3f285e;
  border-color:#3f285e;
}

/* end button bootstrap */

.uk-link, a {
  color:#3f285e !important;
}



/* select 2  */
.select2-container .select2-selection--single:focus, .select2-container--default.select2-container--focus .select2-selection--multiple:focus, .select2-container--default .select2-selection--multiple:focus, .select2-container--default .select2-search--dropdown .select2-search__field:focus{
  border-color:#3f285e !important;
}
/* select 2end */




/* CSS CARDS SLIDER */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700&display=swap");

.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}

.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}

.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}

.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}

.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}

.about .social.portfolio {
  transition: all 0.8s ease;
}

.about .social.portfolio .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
}

.about .social.dribbble {
  transition: all 0.3s ease;
}

.about .social.dribbble .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
}

.about .social.linkedin {
  transition: all 0.8s ease;
}

.about .social.linkedin .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
}

.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}

.about:hover .social {
  opacity: 1;
}

.about:hover .social .icon {
  opacity: 0.9;
}

.about:hover .social:hover {
  background-size: 28px;
}

.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}

.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}

.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}

.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}

.cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cards .card {
  height: 440px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  min-width: 260px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
  margin: 0 10px;
}

.cards .card:before {
  height: 150px;
  width: calc(100% + 100px);
  content: "";
  position: absolute;
  background-image: linear-gradient(to top, #3f285e 0%, #7e44cb 100%);
  border-radius: 4px 4px 100% 100%;
  transition: all 0.4s ease-out;
  top: 0;
}

.cards .card .close {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  background-image: url("https://rafaelalvucas.github.io/assets/icons/misc/cross.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
  margin: 10px;
  padding: 5px;
  transition: all 0.2s ease;
}

.cards .card .close:hover {
  background-size: 100%;
  opacity: 0.8;
}

.cards .card .arrow {
  display: none;
}

.cards .card article {
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cards .card article h2 {
  color: white;
  margin: 0;
  padding: 40px 20px 10px 20px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.cards .card article .title {
  color: white;
  padding: 10px 20px;
  letter-spacing: 0.8px;
  transition: all 0.4s ease;
}

.cards .card article .desc {
  padding: 10px 30px;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  color: #666;
  height: 90px;
  transition: all 0.4s ease-out;
}

.desc b {
  font-size: 28px;
}

.cards .card article .pic {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 100%;
  margin: 20px 0;
  box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);
  transition: all 0.6s ease;
}

.cards .card .pic-subtitle {
  padding-top: 30px;
}

.cards .card .pic-subtitle h3 {
  font-size: 32pt;
  color: white;
}

.cards .card article .pic img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.cards .card .actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: white;
  z-index: 1;
}

.cards .card .actions .btn {
  border: 0;
  background-color: transparent;
  box-sizing: border-box;
  width: 100%;
  /* width: calc(50% - 1px); */
  height: 36px;
  margin: 0;
  text-transform: uppercase;
  font-size: 10px;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  color: var(--unique);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.5px;
  background: rgba(68, 129, 235, 0.08);
}

.cards .card .actions .btn span {
  z-index: 1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.cards .card .actions .btn .icon {
  width: 10px;
  opacity: 0;
  position: absolute;
  transition: all 0.2s ease-in-out;
}

.cards .card .actions .btn:before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  background: #4481eb;
  transition: all 0.4s ease;
  bottom: 0;
  opacity: 0.2;
}

.cards .card .actions .btn:focus {
  outline: 0;
}

.cards .card .actions .btn:hover {
  background-color: rgb(115 63 184);
}

.cards .card .actions .btn:hover span {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.cards .card .actions .btn:hover .icon {
  width: 22px;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.cards .card .actions .btn:hover:nth-child(3) .icon {
  width: 18px;
}

.cards .card .actions .btn:hover:before {
  height: 100%;
}

.cards .card .actions .btn.clicked span {
  display: none;
}

.cards .card .actions .btn.clicked .icon {
  width: 22px;
  opacity: 1;
  animation: icon 0.5s ease forwards;
}

@keyframes icon {
  0% {
    width: 22px;
  }

  50% {
    width: 40px;
  }

  100% {
    width: 22px;
  }
}

.cards .card .actions .btn.clicked:before {
  opacity: 0.3;
  height: 100%;
}

.cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);
}

.cards .card:hover:before {
  height: 100%;
  border-radius: 4px;
}

.cards .card:hover .desc {
  color: white;
}

.cards .card:hover .pic {
  box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.3);
}

.cards .card:hover .pic img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.cards .card.closed {
  min-width: 120px;
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
  cursor: pointer;
}

.cards .card.closed .title,
.cards .card.closed .desc,
.cards .card.closed .actions,
.cards .card.closed .close {
  display: none;
}

.cards .card.closed h2 {
  padding: 0;
  height: 100%;
  transform: rotate(-90deg);
  width: 440px;
  z-index: 2;
  transition: all 0.6s ease;
}

.cards .card.closed .pic {
  border-radius: 100%;
  height: 400px;
  width: 400px;
  position: absolute;
  top: -20px;
  margin: 0;
  box-shadow: 0;
  transition: all 0.6s ease;
}

.cards .card.closed .pic img {
  object-fit: cover;
  height: 100%;
  transform: translateY(20px);
}

.cards .card.closed .pic:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.cards .card.closed:before {
  height: 100%;
  border-radius: 4px;
}

.cards .card.closed .arrow {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  bottom: 15px;
  padding: 5px;
  display: flex;
  justify-content: center;
  background-image: url("https://rafaelavlucas.github.io/assets/icons/misc/expand.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}

.cards .card.closed:hover .arrow {
  background-size: 100%;
  opacity: 0.6;
}


.uk-section {
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}

.owl-carousel {
  position: relative;
  margin-top: 30px;
}

.owl-nav {
  position: absolute;
  top: -60px;
  left: 10px;
}

.uk-card-primary {
  border-radius: 8px;
}

.uk-card> :last-child {
  margin-top: 0;
  margin-bottom: 10px
}

.owl-next,
.owl-prev {
  background: var(--unique) !important;
}

.owl-theme .owl-nav [class*='owl-'] {
  background: #383838;
}

.owl-dots {
  margin-top: 30px;
}

.owl-dot.active span {
  background: var(--unique) !important;
}

.uk-card-title {
  padding-bottom: 20px
}

/* END CSS CARDS SLIDER */

/* Scrollbar Styling */
.a::-webkit-scrollbar {
  width: 3px;

}

.a:hover::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.a:hover::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ebebeb; 

}

.shadow {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.customeText {
  font-size: .8125rem;
  font-weight: 600;
}

.poly {
  border-radius: 21px;
background: #e0e0e0;
box-shadow:  -20px 20px 60px #bebebe,
             20px -20px 60px #ffffff;
}

.circle {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
}

.kiic {
  position: relative;
  background-image: url("../img/theme/IoT-Envion.jpg");
  background-size: cover;
}

.shadowTailwind {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* FAQ */

#mainFAQ {
  margin: 50px 0;
}

#mainFAQ #faq .card {
  margin-bottom: 30px;
  border: 0;
}

#mainFAQ #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
          box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

#mainFAQ #faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: #eaeaea;
  color: #222;
  padding: 20px;
}

/* #mainFAQ #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
} */

#mainFAQ #faq .card .card-header .btn-header-link.collapsed {
  color: #fff;
}

/* #mainFAQ #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
} */

#mainFAQ #faq .card .collapsing {
  background: #FFE472;
  line-height: 30px;
}

#mainFAQ #faq .card .collapse {
  border: 0;
}

#mainFAQ #faq .card .collapse.show {
  background: #FFE472;
  line-height: 30px;
  color: #222;
}

.react-datetime-picker__wrapper {
  border: none!important;
}

.lmGpws{
  color: #f5365c;
}

.kJrhuj {
  color: #f5365c!important; 
}

.eUeqdG {
  color: #f5365c;
}
.fontku {
  padding-bottom: 0!important;
  margin-top: 0!important;
}
.fontTV {
  font-size: 0.75rem;
}


.tv .table td, .tv .table th {
  padding: 0;
  padding-left: 2px!important;
  padding-right: 2px!important;
  /* font-size: 0.80vw; */
  font-size: 0.75rem;
}

/* buat media query untuk fontTv dan Tv */

.jarakjudul{
  margin-top: 0!important;
  margin-bottom: 4px!important;
}

/* [class*="col-"],
[class^="col-"] {
  padding-top: 0!important;
  padding-bottom: 0!important;
  padding-left: 0!important;
 
} */
.tvTank .g2-html-annotation {
  font-size: 17px!important;
  color: red;
  font-weight: 600;
}

.g2-html-annotation {
  color: red;
  font-weight: 500;
  font-size: 24px!important;
}

.powerMeterThreeLayoutCard {
  border-radius: 0.375rem;
  border: 1px solid rgba(0, 0, 0, .05);
  background-clip: border-box;
}
.powerMeterThreeLayoutCardNoBorderRadius {
  border: 1px solid rgba(0, 0, 0, .05);
  background-clip: border-box;
}

@media only screen and (min-width: 1900px) {
  .paddingTV {padding:25px;}
}

.loadingScreen {
  min-height: 90vh;
}
