.echo-container {
  display: block;
  position: relative;
  padding: 65px 15px 45px 15px;
  z-index: 10;
}

.echo_header,
.echo_footer {
  position: fixed;
  z-index: 1098;
  background-image: linear-gradient(to right, #e09776, #f07162);
}

.echo_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  color: white;
  border-bottom: 1px solid white;
}

.echo_header .title {
  font-size: 1.2rem;
  font-weight: 700;
}

.echo_footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  bottom: 0;
  left: 0;
  font-size: 0.7rem;
  color: white;
  border-top: 1px solid white;
}

.header_button {
  color: white;
  background-color: transparent;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.25s ease-in-out;
}
.header_button:hover {
  background-color: rgba(0, 0, 0, 0.1725490196);
}

.username_header {
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: 15px;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.username_header:hover {
  opacity: 0.7;
}

.username_pop_up {
  display: block;
  position: fixed;
  top: -120%;
  right: 15px;
  width: 250px;
  height: auto;
  z-index: 1090;
  transition: all 0.25s ease-in-out;
}
.username_pop_up .panel {
  padding-top: 15px;
}
.username_pop_up .userbox {
  display: flex;
  justify-content: start;
  align-items: center;
}
.username_pop_up .userbox .text {
  padding-left: 10px;
}
.username_pop_up.show {
  top: 40px;
}

.echo_sidebar_clickout {
  position: fixed;
  background-image: linear-gradient(to bottom right, rgba(229, 229, 229, 0.7215686275), rgba(243, 120, 89, 0.6196078431));
  width: 100%;
  height: 100%;
  z-index: 1099;
  transition: all ease-in 0.2s;
  opacity: 0;
  pointer-events: none;
}

.echo_sidebar_clickout.show {
  opacity: 1;
  pointer-events: all;
}

.echo_sidebar_trigger {
  font-size: 1.2rem;
  display: flex;
  width: 35px;
  height: 35px;
  margin-left: 10px;
  margin-right: 10px;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.echo_sidebar_trigger:hover {
  background-color: rgba(255, 255, 255, 0.1607843137);
}

.echo_sidebar {
  position: fixed;
  background-image: linear-gradient(to bottom right, #fffaf1, #ffffff);
  color: #343434;
  left: -320px;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 1100;
  box-shadow: 4px 4px 12px -4px rgba(219, 180, 140, 0.5490196078);
  transition: all ease-in-out 0.2s;
}

.echo_sidebar.show {
  left: 0;
  top: 0;
}

.echo_sidebar .header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  background-color: #e09776;
  color: white;
  align-content: space-around;
  flex-wrap: wrap;
  flex-direction: column;
}

.echo_sidebar .header .title {
  font-size: 1.25rem;
  font-weight: 700;
}

.echo_sidebar .header .subtitle {
  font-size: 0.7rem;
  font-weight: 400;
}

.echo_sidebar .list {
  position: relative;
  width: 100%;
  height: calc(100% - 120px);
  padding: 0 15px 0 15px;
  overflow-y: auto;
}
.echo_sidebar .list hr {
  margin: 10px -15px 0 -15px;
}

.echo_sidebar .list::-webkit-scrollbar {
  width: 8px;
}

.echo_sidebar .list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.echo_sidebar .list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #f07162;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.echo_sidebar .list .item {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #343434;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  padding: 5px 15px;
  margin-top: 10px;
  font-size: 0.82rem;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.1s ease-in-out;
}
.echo_sidebar .list .item .icon {
  font-size: 1.2rem;
  min-width: 40px;
  text-align: center;
}
.echo_sidebar .list .item.active, .echo_sidebar .list .item:hover {
  background-color: #e09776;
  color: white;
}

.smalltext {
  font-size: 0.7rem;
}
.smalltext.b {
  font-weight: 700;
}
.smalltext.o {
  opacity: 0.6;
}

.ho {
  opacity: 0.5 !important;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.vat {
  vertical-align: top;
}

.mw-120 {
  max-width: 120px !important;
}

.mw-150 {
  max-width: 150px !important;
}

.mw-200 {
  max-width: 200px !important;
}

.clickable {
  cursor: pointer;
}
.clickable.text_link {
  color: #e09776 !important;
  text-decoration: underline !important;
  transition: color 0.2s ease-in;
}
.clickable.text_link:hover {
  color: #daad98 !important;
}

.scrollable-list {
  max-height: 500px;
  position: relative;
  display: block;
  overflow: auto;
}
.scrollable-list::-webkit-scrollbar {
  width: 8px;
}
.scrollable-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.scrollable-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e09776;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.scrollable-list.nopad {
  padding: 0px;
}

.center-me {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-app-primary {
  background-color: #e09776;
  color: white;
}

.bg-app-secondary {
  background-color: #f07162;
  color: white;
}

.bg-app-gradient {
  background-color: #e09776;
  background-image: linear-gradient(to right, #e09776, #f07162);
  color: white;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.trans_hide {
  opacity: 0;
  pointer-events: none;
}

.trans_show {
  opacity: 1;
  pointer-events: all;
}

.form-control,
.form-select,
.btn {
  border-radius: 12px;
  padding: 5px 15px;
  resize: none;
}

.form-select {
  cursor: pointer;
  padding-right: 35px;
}

.alert {
  border-radius: 12px;
}

.form-select {
  min-width: 75px;
}

.flatpickr {
  background-color: white !important;
  cursor: pointer;
}

.input_label {
  font-weight: 700;
  font-size: 0.95rem;
}

label.is-invalid {
  color: #ff5050 !important;
}

.split-element {
  display: flex;
  position: relative;
}
.split-element .item {
  flex: 1;
  padding: 5px 10px;
}

.step-bar-split-7 {
  background-color: rgba(229, 229, 229, 0.7215686275);
  display: block;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 2px;
  overflow: hidden;
}
.step-bar-split-7 .thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 6px;
  border-radius: 3px;
  background-color: #e09776;
  background-image: linear-gradient(to right, #e09776, #f07162);
  transition: all 0.3s ease-in-out;
}
.step-bar-split-7 .thumb.at-1 {
  width: 7.143%;
}
.step-bar-split-7 .thumb.at-2 {
  width: 21.429%;
}
.step-bar-split-7 .thumb.at-3 {
  width: 35.715%;
}
.step-bar-split-7 .thumb.at-4 {
  width: 50.001%;
}
.step-bar-split-7 .thumb.at-5 {
  width: 64.287%;
}
.step-bar-split-7 .thumb.at-6 {
  width: 78.573%;
}
.step-bar-split-7 .thumb.at-7 {
  width: 92.859%;
}
.step-bar-split-7 .thumb.at-8 {
  background-image: linear-gradient(to right, #f07162, #f07162);
  width: 100%;
}

.last-no-border tr:last-child td {
  border-bottom: 1px solid transparent !important;
}

.step-bar-split-5 {
  background-color: rgba(229, 229, 229, 0.7215686275);
  display: block;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 2px;
  overflow: hidden;
}
.step-bar-split-5 .thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 6px;
  border-radius: 3px;
  background-color: #e09776;
  background-image: linear-gradient(to right, #e09776, #f07162);
  transition: all 0.3s ease-in-out;
}
.step-bar-split-5 .thumb.at-1 {
  width: 10%;
}
.step-bar-split-5 .thumb.at-2 {
  width: 30%;
}
.step-bar-split-5 .thumb.at-3 {
  width: 50%;
}
.step-bar-split-5 .thumb.at-4 {
  width: 70%;
}
.step-bar-split-5 .thumb.at-5 {
  width: 90%;
}
.step-bar-split-5 .thumb.at-6 {
  background-image: linear-gradient(to right, #f07162, #f07162);
  width: 100%;
}

.step-bar-split-4 {
  background-color: rgba(229, 229, 229, 0.7215686275);
  display: block;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 2px;
  overflow: hidden;
}
.step-bar-split-4 .thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 6px;
  border-radius: 3px;
  background-color: #e09776;
  background-image: linear-gradient(to right, #e09776, #f07162);
  transition: all 0.3s ease-in-out;
}
.step-bar-split-4 .thumb.at-1 {
  width: 12.5%;
}
.step-bar-split-4 .thumb.at-2 {
  width: 37.5%;
}
.step-bar-split-4 .thumb.at-3 {
  width: 62.5%;
}
.step-bar-split-4 .thumb.at-4 {
  width: 87.5%;
}
.step-bar-split-4 .thumb.at-5 {
  background-image: linear-gradient(to right, #f07162, #f07162);
  width: 100%;
}

.cb_wrapper {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 25px;
}
@keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}
@keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}
.cb_wrapper input[type=checkbox] {
  display: none;
}

.cb_wrapper .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: calc(var(--checkbox-height) * 0.1) solid #000;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  transition: border-color ease 0.2s;
  cursor: pointer;
}

.cb_wrapper .check-box::before,
.cb_wrapper .check-box::after {
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * 0.2);
  background-color: #34b93d;
  display: inline-block;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  transition: opacity ease 0.5;
}

.cb_wrapper .check-box::before {
  top: calc(var(--checkbox-height) * 0.72);
  left: calc(var(--checkbox-height) * 0.41);
  box-shadow: 0 0 0 calc(var(--checkbox-height) * 0.05) var(--background-color);
  transform: rotate(-135deg);
}

.cb_wrapper .check-box::after {
  top: calc(var(--checkbox-height) * 0.37);
  left: calc(var(--checkbox-height) * 0.05);
  transform: rotate(-45deg);
}

.cb_wrapper input[type=checkbox]:checked + .check-box,
.cb_wrapper .check-box.checked {
  border-color: #34b93d;
}

.cb_wrapper input[type=checkbox]:checked + .check-box::after,
.cb_wrapper .check-box.checked::after {
  height: calc(var(--checkbox-height) / 2);
  animation: dothabottomcheck-19 0.2s ease 0s forwards;
}

.cb_wrapper input[type=checkbox]:checked + .check-box::before,
.cb_wrapper .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  animation: dothatopcheck-19 0.4s ease 0s forwards;
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: rgba(255, 166, 70, 0.0745098039);
  color: var(--bs-table-hover-color);
}

table .thead th {
  border: 2px solid rgba(255, 255, 255, 0.368627451) !important;
}

table.dataTable th {
  border: 1px solid rgba(255, 255, 255, 0.368627451) !important;
}

.thead {
  background-image: linear-gradient(to right, #e09776, #f07162);
  color: white;
}

table.table-bordered.dataTable tbody td {
  border-bottom-width: 1px;
  border-left-width: 1px;
  border: 1px solid rgba(238, 238, 238, 0.6666666667);
}

#my_modal {
  z-index: 1500;
  background-image: linear-gradient(to bottom right, rgba(229, 229, 229, 0.7215686275), rgba(243, 120, 89, 0.6196078431));
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal-backdrop {
  background-color: rgba(255, 255, 255, 0);
}

.custom_modal {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  z-index: 9999;
  justify-content: center;
  align-items: start;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  padding: 20px;
}
.custom_modal.sm {
  width: 450px;
}
.custom_modal.show {
  opacity: 1;
  pointer-events: all;
}

body {
  background-color: #daad98;
  color: #343434;
  font-size: 0.8rem;
  overflow-x: hidden;
  font-family: "Quicksand", sans-serif;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #f07162;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5019607843);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.ci3_button_cog {
  cursor: pointer;
  position: fixed;
  bottom: 15px;
  right: 15px;
  font-size: 0.75rem;
  background-color: #333333;
  border: 2px solid #efefef;
  border-radius: 8px;
  color: #eee;
  padding: 6px 10px;
  z-index: 9990;
  box-shadow: 2px 2px 6px -2px #000;
  transition: all ease-in-out 0.2s;
}
.ci3_button_cog:hover {
  padding: 7px 11px;
}

.ci3_info_panel {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 85vw;
  height: 80vh;
  font-size: 0.75rem;
  background-color: #343434;
  border: 2px solid #add7ab;
  border-radius: 8px;
  color: #c9c9c9;
  padding: 6px 10px;
  z-index: 9991;
  box-shadow: 2px 2px 6px -2px #000;
}
.ci3_info_panel .body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.ci3_info_panel .body .content {
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.notifyjs-corner {
  z-index: 262144 !important;
  font-size: 0.75rem !important;
}

.info_block {
  background-color: white;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(139, 181, 201, 0.2039215686);
  box-shadow: 4px 4px 12px -4px rgba(219, 180, 140, 0.5490196078);
}
.info_block.invert {
  background-color: #e09776;
  color: white;
}
.info_block.invert .header {
  color: white;
}
.info_block.invert .separator {
  background-image: linear-gradient(to right, white, #eea198);
}
.info_block.invert.success {
  background-color: #1f852e;
}
.info_block.invert.success .invert-link {
  font-weight: 600;
  color: #c9ffc9;
  text-decoration: none;
}
.info_block.invert.success .invert-link:hover {
  color: #a5ffae;
}
.info_block.invert.success .separator {
  background-image: linear-gradient(to right, #c3ffcb, #ffffff);
}
.info_block.invert.danger {
  background-color: #a32d2d;
}
.info_block.invert.danger .invert-link {
  font-weight: 600;
  color: #ffc9c9;
  text-decoration: none;
}
.info_block.invert.danger .invert-link:hover {
  color: #ffa5a5;
}
.info_block.invert.danger .separator {
  background-image: linear-gradient(to right, #ffc3c3, #ffffff);
}
.info_block .header {
  width: 100%;
  min-height: 30px;
  display: flex;
  padding: 10px 20px;
  color: #f07162;
  font-size: 1.3rem;
  font-weight: 500;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
.info_block .header.center {
  justify-content: center;
}
.info_block .separator {
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #f07162, #daad98);
}
.info_block .body {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 10px;
  font-size: 0.8rem;
}
.info_block .breadcrumb {
  margin-bottom: 0;
}
.info_block .breadcrumb .breadcrumb-item a {
  text-decoration: none;
}
.info_block .breadcrumb i.fa {
  margin-right: 4px;
}

.label_status_dokumen {
  display: inline-block;
  max-width: 150px;
  white-space: normal;
  font-size: 0.8rem;
}

.img_block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  background-color: #ddd;
}

.card_list {
  position: relative;
  display: block;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  word-break: break-all;
  overflow: hidden;
}
.card_list .icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50px;
  height: 100%;
}
.card_list .icon.success {
  color: white;
  background-color: #5db85d;
}
.card_list .icon.danger {
  color: white;
  background-color: #c06060;
}
.card_list .icon.primary {
  color: white;
  background-color: #4768d5;
}
.card_list .icon.info {
  color: white;
  background-color: #45b5bf;
}
.card_list .icon.default {
  color: black;
  background-color: #eee;
}
.card_list .icon .fa {
  font-size: 20px;
}
.card_list.invert {
  background: linear-gradient(to right, #e09776, #e09776);
}
.card_list.invert.danger {
  background: linear-gradient(to right, #bd2626, #c06060);
}
.card_list.invert.info {
  background: linear-gradient(to right, #1c9aa5, #65dae5);
}
.card_list.invert.success {
  background: linear-gradient(to right, #238723, #5db85d);
}
.card_list.invert .title {
  color: #eee;
}
.card_list.invert .value {
  color: #eee;
  font-weight: 500;
}
.card_list a.link-invert {
  color: white;
}
.card_list a.link-invert:hover {
  color: #a1e9f0;
}
.card_list.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.2s;
}
.card_list.btn:hover {
  opacity: 0.85;
}
.card_list .title {
  letter-spacing: 0.6px;
  color: #aaa;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 3px;
}
.card_list .value {
  color: black;
  font-weight: 400;
  font-size: 0.75rem;
}
.card_list.icon .title,
.card_list.icon .value {
  padding-left: 50px;
}

a {
  color: #e09776;
}
a.fw {
  display: block;
  position: relative;
  width: 100%;
  padding: 5px 0 5px 0;
}
a:hover {
  color: #f07162;
}

.mv-error {
  font-style: italic;
  font-size: 0.6rem;
  color: #c06060;
}

.footer_note {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 0.6rem;
  font-weight: 500;
  color: #afafaf;
  font-style: italic;
}

.login-background {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-image: url("../images/esimut-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(15px);
}

.backend-background {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-image: url("../images/esimut-bg-whitewash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-container {
  width: 450px;
  height: auto;
  padding: 5px;
  z-index: 25;
}
.login-container .logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}
.login-container .logo.sm {
  width: 65px;
  height: auto;
}

@media screen and (max-width: 520px) {
  .login-container {
    width: 380px;
  }
}
.panel {
  display: block;
  position: relative;
  border: 1px solid rgba(139, 181, 201, 0.2039215686);
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 4px 4px 12px -4px rgba(219, 180, 140, 0.5490196078);
  overflow: hidden;
}
.panel .header {
  padding: 10px 20px;
  font-size: 1.3rem;
  font-weight: 600;
}
.panel .body {
  padding: 10px 20px;
}
.panel .footer {
  padding: 10px 20px;
}
.panel hr {
  margin: 0;
  color: rgba(197, 153, 142, 0.9098039216);
}
.panel.h {
  height: 100%;
}
.panel.img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  min-width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
}
.panel.img img.topRight {
  top: 46%;
  left: 54%;
}
.panel.img img.topLeft {
  top: 46%;
  left: 46%;
}
.panel.img img.bottomRight {
  top: 54%;
  left: 54%;
}
.panel.img img.bottomLeft {
  top: 54%;
  left: 46%;
}

a.badge {
  text-decoration: none;
}
a.badge:hover {
  color: white;
}

.foto_profil {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #b44d42;
}
.foto_profil img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.foto_profil.h {
  height: 100%;
}
.foto_profil.mini {
  width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 30px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.iframe-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  border-radius: 12px;
}

.notif-count {
  background-color: #ff5050;
  color: white;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid white;
  font-size: 0.7rem;
}
.notif-count.sidebar-item {
  display: block;
  position: absolute;
  bottom: 3px;
  left: 3px;
}

.value-block {
  background-color: rgba(0, 0, 0, 0.7725490196);
  color: white;
}
.value-block::before {
  content: " ";
  display: inline-block;
  width: 5px;
}
.value-block::after {
  content: " ";
  display: inline-block;
  width: 5px;
}

.strength-bar {
  width: 100%;
  height: 15px;
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #ececec;
  border-radius: 6px;
}
.strength-bar .value {
  width: 0%;
  height: 100%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.strength-bar .value.weak {
  width: 33%;
  background-color: #ef8989;
}
.strength-bar .value.medium {
  width: 66%;
  background-color: #f0c97f;
}
.strength-bar .value.strong {
  width: 100%;
  background-color: #96e196;
}
.strength-bar .text {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 0.7rem;
  color: rgba(52, 52, 52, 0.6);
  font-weight: 600;
}
.strength-bar .text .danger {
  color: #c42020;
}
.strength-bar .text .warning {
  color: #a17f17;
}
.strength-bar .text .success {
  color: #1b8f1b;
}

.select2-container {
  display: block;
  width: 100%;
}

.select2-container--default .select2-selection--single {
  border-radius: 12px;
  height: 34px;
  padding-left: 8px;
  padding-top: 3px;
  font-size: 0.85rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-dropdown {
  z-index: 1550;
}/*# sourceMappingURL=style.css.map */