.box-simpledl {
    width: 100%;         /* Lebar mengikuti container */
    max-width: 1210px;   /* Maksimal tetap 1210px untuk desktop */
    margin: 0 auto;      /* Center jika lebih kecil dari max-width */
    padding: 0 15px;     /* Sedikit padding agar tidak mepet */
    box-sizing: border-box;
}

/* Media query untuk tablet */
@media (max-width: 992px) {
    .box-simpledl {
        max-width: 720px;
    }
}

/* Media query untuk mobile */
@media (max-width: 576px) {
    .box-simpledl {
        max-width: 100%;
        padding: 0 10px;
    }
}
.types_badges {
    background: #fff;
    color: #007bff;
    padding: 1px 9px 2px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
}
.types_0 {
    background: #007bff;
    padding: 5px 15px 7px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
}
.types_1 {
    background: #ff2976;
    padding: 5px 15px 7px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
}
.types_2 {
    background: #00d3a4;
    padding: 5px 15px 7px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
}
.ads-res {
    display: block;       /* Agar bisa diatur width/height */
    width: 100%;          /* Lebar mengikuti container */
    max-width: 728px;     /* Maksimal lebar iklan (sesuaikan) */
    height: auto;         /* Tinggi mengikuti proporsi asli */
    margin: 0 auto;       /* Center jika container lebih besar */
}

/* Media query untuk tablet */
@media (max-width: 992px) {
    .ads-res {
        max-width: 468px; /* ukuran iklan tablet */
    }
}

/* Media query untuk mobile */
@media (max-width: 576px) {
    .ads-res {
        max-width: 320px; /* ukuran iklan mobile */
    }
}


.tooltip-custom {
      position: relative;
      display: inline-block;
      cursor: pointer;
    }

.tooltip-custom .tooltip-text {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    position: absolute;
    top: 95%;
    left: 48%;
    transform: translateX(-50%);
    background-color: #2c435c;
    color: #fff;
    text-align: center;
    padding: 6px 15px 8px;
    border-radius: 100px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 999;
}

    /* Panah menghadap ke atas */
    .tooltip-custom .tooltip-text::after {
      content: "";
      position: absolute;
      bottom: 100%; /* posisinya di atas tooltip */
      left: 50%;
      transform: translateX(-50%);
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent #2c435c transparent;
    }

    /* Hover tampilkan tooltip */
    .tooltip-custom:hover .tooltip-text {
      visibility: visible;
      opacity: 0.9;
    }
.simple-switch-outter {
  user-select: none;
  width: 60px;
  height: 22px;
  background-color: #fff;
  border: 1px solid #2c435c;
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border-radius: 100px;
  box-sizing: content-box;
  background-clip: content-box;
}
.simple-switch-outter .simple-switch {
  display: none;
}
.simple-switch-outter .simple-switch-circle {
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  height: 15px;
  position: absolute;
  top: 3px;
  width: 15px;
}
.simple-switch-outter.unchecked {
  box-shadow: #dfdfdf 0 0 0 0 inset;
  border-color: #dfdfdf;
  -webkit-transition: border 0.4s, box-shadow 0.4s;
  transition: border 0.4s, box-shadow 0.4s;
  background-color: #fff;
}
.simple-switch-outter.unchecked .simple-switch-circle {
  left: 13px;
  -webkit-transition: background-color 0.4s, left 0.2s;
  transition: background-color 0.4s, left 0.2s;
}
.simple-switch-outter.checked {
  border-color: #007bff;
  box-shadow: #007bff 0 0 0 16px inset;
  -webkit-transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
  transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
  background-color: #007bff;
}
.simple-switch-outter.checked .simple-switch-circle {
  left: 33px;
  -webkit-transition: background-color 0.4s, left 0.2s;
  transition: background-color 0.4s, left 0.2s;
  background-color: #fff;
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fdfdfd;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-weight: 400;
  height: 32px;
  line-height: 30px;
  outline: none;
  padding-left: 10px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.6);
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
  margin: 0 -1px 0;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
  float: unset;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  margin-top: 5px;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 14px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: 700;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
body {
  font-family: montserrat, sans-serif;
  margin: 0;
  background: #f5f6f8;
  font-size: 0.9em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1em;
}
h3 {
  font-size: 1.1em;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul > li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 1em;
}
button {
  outline: 0 !important;
}
.button {
  line-height: 30px;
  color: #018e76;
  display: inline-block;
  padding: 0 15px;
  border-radius: 5px;
  background: #e7f8f5;
  border: 1px solid #a3ded4;
  cursor: pointer;
  font-family: montserrat, sans-serif;
  font-size: unset;
  text-align: center;
}
.button:hover,
.button:focus {
  background: #a3ded4;
  text-decoration: none;
}
.button.disabled {
  pointer-events: none;
  user-select: none;
  background: #fff;
}
.button.big {
  width: 100%;
  line-height: 40px;
}
a.button.big {
  width: calc(100% - 30px);
}
.hide {
  display: none;
}
.button.danger {
  background: #fceded;
  color: #e45252;
  border: 1px solid #f8d3d3;
}
.button.danger:hover {
  background: #f8d3d3;
}
textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: 0 !important;
  border-radius: 5px;
  min-width: calc(100% - 22px);
  max-width: calc(100% - 22px);
  padding: 10px;
  height: 100px;
  display: block;
}
select {
  height: 32px;
  padding: 0 7px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  outline: 0 !important;
  line-height: 30px;
  padding-left: 6px;
  padding-right: 30px;
  color: rgba(0, 0, 0, 0.6);
  background-color: #fdfdfd;
  font-size: 1em;
  font-family: inherit;
  float: left;
}
.m1 {
  margin: 1em;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my1 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.mb1 {
  margin-bottom: 1em;
}
.mt1 {
  margin-top: 1em;
}
.text-center {
  text-align: center;
}
form label {
  display: block;
  margin: 1em 0 0.2em;
}
form input {
  display: block;
  width: calc(100% - 22px);
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: 0 !important;
  border-radius: 3px;
  line-height: 34px;
  padding: 0 10px;
}
form label:first-child {
  margin-top: 0;
}
form small {
  display: block;
  color: rgba(0, 0, 0, 0.9);
}
form > button:not(:first-child) {
  margin-top: 1em;
}
form .alert + .button {
  margin: 0;
}
form .inline {
  display: flow-root;
  margin-top: 1em;
}
form .inline > div:nth-child(1) {
  width: calc(50% - 0.5em);
  float: left;
  margin-right: 1em;
}
form .inline > div:nth-child(2) {
  width: calc(50% - 0.5em);
  float: left;
}
form label + .inline {
  margin-top: 0;
}
textarea:focus,
select:focus,
input:focus {
  border: 1px solid #88bfff;
}
.code {
  background: #eaedf5;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 1em;
  font-family: monospace;
}
.code b {
  color: #007bff;
}
.code.small {
  padding: 1px 2px;
}
.code.small.select {
  user-select: all;
}
.notification {
  position: fixed;
  right: 10px;
  width: 250px;
  font-weight: 700;
}
.notification div {
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 10px;
  border: 1px solid;
}
.notification div i {
  float: left;
  margin: -5px 10px -5px -10px;
  line-height: 28px;
}
.notification .success {
  color: #155724;
  background: #d4edda;
  border-color: #c3e6cb;
}
.notification .danger {
  color: #721c24;
  background: #f8d7da;
  border-color: #f5c6cb;
}
.notification .warning {
  color: #856404;
  background: #fff3cd;
  border-color: #ffeeba;
}
.container {
  max-width: 1300px;
  padding: 0 2em;
  width: calc(100% - 4em);
  margin: 0 auto;
  height: inherit;
}
.container > .left {
  width: calc(65% - 2em);
  float: left;
  margin-right: 2em;
}
.container > .content {
  width: calc(65% - 2em);
  float: left;
  margin-left: 2em;
}
.container > .right,
.container > .sidebar {
  float: left;
  width: 35%;
}

.card.small {
  width: 100%;
  max-width: 370px;
}
.card.medium,
.alert.medium {
  width: 100%;
  max-width: 570px;
}
.card.center,
.alert.center {
  margin: 0 auto;
}
.card-head {
  padding: 10px 23px;
  line-height: 30px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flow-root;
}
.card-head span {
  max-width: calc(100% - 86px);
  float: left;
}
.card-head.center,
.card-body.center {
  text-align: center;
}
.card.nobody .card-head {
  border-bottom: 0;
}
.card-body {
  padding: 20px;
  line-height: 24px;
  display: flow-root;
}
.card-head:only-child {
  border-bottom: 0;
}
.card-body li {
  line-height: 30px;
}
.card-body ol {
  margin-left: 15px;
}
.card-body ol > li {
  padding-left: 5px;
}
.dl-list-type {
  float: right;
  margin-top: 1em;
  width: 271px;
}
a#generate {
  margin-left: 10px;
}
.card-head .button-group {
  float: right;
}
.card-head .button-group {
  float: right;
}
.button-group {
  border-radius: 5px;
  overflow: hidden;
}
.button-group a {
  float: left;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.2);
}
.button-group a.active {
  color: #007bff;
  cursor: default;
}

.linklist li,
.input_inline {
  border-bottom: 1px solid #ddd;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
  display: flow-root;
}
.linklist li:hover,
.input_inline:hover {
  border-bottom: 1px solid #bbb;
}
.linklist li input,
.input_inline input {
  float: left;
  cursor: text;
  width: 100%;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  padding: 0;
  border: 0;
  line-height: inherit;
  outline: 0 !important;
}
.linklist li:hover input,
.input_inline:hover input {
  width: calc(100% - 50px);
}
.linklist li:hover input[disabled],
.input_inline:hover input[disabled] {
  width: calc(100% - 60px);
}
.linklist li a.copy,
.input_inline a.copy {
  float: left;
  width: 50px;
  text-align: center;
  cursor: pointer;
  display: none;
}
.linklist li a.copy i,
.input_inline a.copy i {
  font-size: 22px;
  display: block;
  line-height: inherit;
}
.linklist li:hover a.copy,
.input_inline:hover a.copy {
  display: unset;
}
#resultlist {
  display: none;
}
#resultlist.active {
  display: block;
}
.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1em;
  border-radius: 5px;
}
.alert:last-child {
  margin-bottom: 0;
}
.alert.warning {
  color: #856404;
  background: #fff3cd;
  text-align: center;
}
.alert.danger {
  color: #721c24;
  background: #f8d7da;
}
.alert.success {
  color: #155724;
  background: #d4edda;
}
.alert.secondary {
  color: #383d41;
  background-color: #e2e3e5;
}
.alert.primary {
  color: #004085;
  background: #cce5ff;
}
.alert p {
  margin: 0;
}
.panel {
  margin: 1em 0;
}
.panel > li {
    line-height: 40px;
    display: flow-root;
    padding: 10px 17px 20px;
    background: #f6f9ff;
    margin: 0 0 10px;
    border-radius: 10px;
}
.panel > li:last-child {
  margin-bottom: 0;
}
.panel > li > div:first-child {
  float: left;
  width: 70%;
}
.panel > li > div:last-child {
  float: left;
  width: 30%;
  text-align: right;
}
.panel > li > div:first-child label {
  line-height: 20px;
  margin: 0;
}
.panel > li > div:first-child label:only-child {
  line-height: inherit;
}
.panel > li > div:first-child span {
  line-height: 20px;
}
.panel > li > div:first-child span {
  line-height: 20px;
  display: block;
  font-size: 0.9em;
  color: #6c757d;
}
.panel input[type="number"] {
  line-height: 30px;
  margin-bottom: 0;
}
[tab_id] > div {
  display: none;
}
[tab_id] > div.active {
  display: flow-root;
}
.card-head > div {
  float: right;
  line-height: inherit;
}
.card-head > div > i {
  display: block;
  line-height: inherit;
}
.card-head.toggle {
  cursor: pointer;
  user-select: none;
}
.card.nobody > *:not(.card-head) {
  display: none;
}
.about_thumb {
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 125px;
}
.about_thumb img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: -112px;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;
}
.about_profile {
  text-align: center;
}
.about_profile h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.contact_list {
  margin: 0 -20px -20px;
}
.contact_list li {
  border-top: 1px solid #ddd;
  line-height: 3em;
  padding: 0 1em;
  display: flow-root;
}
.about_profile {
  text-align: center;
  margin-bottom: 2em;
}
.about_profile p {
  margin-bottom: 0;
}

.contact_list li a {
  width: 80px;
  display: inline-block;
}
.v-menu {
  padding: 1em 0;
}
.v-menu li {
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer;
  margin-bottom: 0.5em;
  font-size: 15px;
}
.v-menu li:last-child {
  margin-bottom: 0;
}
.v-menu li:hover {
  background: #dddddd;
}
.v-menu li.active {
  font-weight: 700;
  background: #007bff;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
}
.v-menu li.active > i {
  color: #ffffff;
}
.v-menu li > i {
  float: left;
  line-height: inherit;
  width: 5px;
  border-radius: 50%;
  text-align: center;
  margin-right: 20px;
  margin-top: 1px;
}
.list-1 {
  font-size: 0.9em;
}
.list-1 > h3 {
  padding: 1em;
  background: #fbfbfb;
  margin-bottom: 0;
  margin-top: 1em;
  border-top: 1px solid #ddd;
}
.list-1 li {
  border-bottom: 1px solid #ddd;
  padding: 1em;
  display: flex;
  line-height: normal;
}
.list-1 li b {
  margin-right: 10px;
  float: left;
}
.list-1 li span {
  user-select: all;
}
#update_version b {
  text-transform: capitalize;
}
#nav_toggle {
  float: left;
  display: none;
  user-select: none;
}
#nav_toggle i {
  line-height: inherit;
  font-size: 30px;
  margin-right: 10px;
  padding: 0 5px;
  cursor: pointer;
}
.shortlink {
  float: left;
  margin-top: 1em;
}
.shortlink label {
  margin: -5px 5px 0;
  display: inline-block;
}
.alert a {
  color: inherit;
  text-decoration: underline;
}
.nowrap {
  white-space: nowrap;
}
div.textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 0 0 10px;
  border-radius: 5px;
}
div.textarea > textarea {
  border: 0;
  padding: 10px 0;
  max-width: 100%;
  min-width: 100%;
}
textarea.autosize {
  resize: none;
}
@media screen and (max-width: 768px) {
  #nav_toggle {
    display: flex;
  }
  .container {
    padding: 0 1em;
    width: calc(100% - 2em);
  }
  .navbar nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    z-index: 1;
  }
  .navbar nav.active {
    display: block;
  }
  .navbar nav ul li a {
    display: block;
  }
  .navbar nav ul {
    background: #07a287;
    padding: 0 1em;
  }
  .navbar nav ul li {
    float: none;
    line-height: 50px;
    margin: 0;
  }
  .navbar .brand {
    margin-right: 10px;
  }
  .container > .left,
  .container > .content {
    float: none;
    margin: 0;
    width: unset;
  }
  .container > .right,
  .container > .sidebar {
    width: unset;
    float: none;
  }
}
@media screen and (max-width: 320px) {
  .container {
    padding: 0 0.5em;
    width: calc(100% - 1em);
  }
  .panel > li {
    padding: 10px;
  }
  .panel > li.select > div:first-child {
    float: none;
    width: 100%;
  }
  .panel > li.select > div:last-child {
    width: 100%;
    float: none;
  }
  .card-body {
    padding: 10px;
  }
  .contact_list {
    margin: 0 -10px -10px;
  }
}

span.badge.badge-primary.badge-pill.p-2 {
    border-radius: 7px;
    padding: 7px 30px 8px !important;
}

.box-shadow {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.box-w100 {
    background: #ffffff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.dl-footer {
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 0 0 10px;
    border-radius: 7px;
}

i.bi.bi-code-slash {
    border: solid 1px #00AFEF;
    padding: 0 5px 0;
    cursor: pointer;
    margin-right: 10px;
}
i.bi.bi-fire {
    border: solid 1px #00AFEF;
    padding: 0 5px 0;
    cursor: pointer;
}
.bg-success {
    background-color: #28a745 !important;
    color: #fff;
    padding: 5px 25px 7px!important;
}