@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  font-family: "Montserrat", Arial, sans-serif; /* 1 */
  -ms-text-size-adjust: none; /* 2 */
  -webkit-text-size-adjust: none; /* 2 */
  font-size: 1rem;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  margin: 0 auto;
}
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  outline: none;
}
article,
aside,
details,
time,
caption,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: 700;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #111;
}
small {
  font-size: 80%;
  line-height: 80%;
}
sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
  left: 1px;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  display: block;
}
i {
  font-style: normal;
}
/*svg:not(:root) {overflow: hidden;}*/
figure {
  margin: 0;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,html input[type="button"], /* 1 */input[type="reset"],input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
::placeholder {
  color: var(--dark_gray);
}
::selection {
  background-color: var(--blue);
  color: var(--white);
}
/*base*/
.videoframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  margin: 0;
}
.videoframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chatframe {
  position: relative;
  padding-bottom: 140%;
  padding-top: 25px;
  height: 0;
  margin: 0;
}
.chatframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 395px;
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.videoframe.stuck {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: 240px;
  transform: translateY(100%);
  animation: fade-in-up 0.75s ease forwards;
  z-index: 5;
  padding: 0;
}
.fade {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body {
  margin: 0 auto;
  padding: 0;
  display: block;
  color: var(--black);
  min-height: 100vh;
  background-size: cover;
}
:root {
  --black: #303030;
  --white: #ffffff;
  --dark_gray: #929292;
  --gray: #929292;
  --soft: #eeeeee;
  --blue: #2d4ea2;
  --blue2: #64b5f6;
  --blue3: #1e88e5;
  --red: #ed1c24;
  --orange: #f26c35;
  --yellow: #ffcf1c;
  --green: #4caf50;
  --soft-form: #dedede;
  --soft-white: #f8f8f8;
  --primary: #ed1c24;
  --secondary: #2d4ea2;
  --soft-blue: #f7f9fc;
  --grad_blue: linear-gradient(
    150deg,
    rgba(34, 34, 98, 1) 0%,
    rgba(0, 91, 181, 1) 19%,
    rgba(1, 163, 229, 1) 100%
  );
  --grad_red: linear-gradient(
    340deg,
    rgba(242, 0, 0, 1) 0%,
    rgba(241, 101, 34, 1) 19%,
    rgba(255, 221, 21, 1) 100%
  );
  --grad_red2: linear-gradient(
    340deg,
    rgba(255, 221, 21, 1) 0%,
    rgba(241, 101, 34, 1) 19%,
    rgba(242, 0, 0, 1) 100%
  );
  --grad_purple: linear-gradient(
    150deg,
    rgba(169, 1, 82, 1) 0%,
    rgba(88, 14, 108, 1) 100%
  );
  --grad_yellow: linear-gradient(
    150deg,
    rgba(255, 221, 21, 1) 0%,
    rgba(34, 211, 253, 1) 100%
  );
}
.cl-black {
  color: #303030 !important;
}
.cl-white {
  color: #fff !important;
}
.cl-soft {
  color: #eeeeee !important;
}
.cl-gray {
  color: #999999 !important;
}
.cl-dark-gray {
  color: #929292 !important;
}
.cl-orange {
  color: #ff9800 !important;
}
.cl-yellow {
  color: #ffcf1c !important;
}
.cl-red {
  color: #f44336 !important;
}
.cl-green {
  color: #4caf50 !important;
}
.cl-blue {
  color: var(--blue) !important;
}
.cl-blue2 {
  color: #64b5f6 !important;
}
.cl-blue3 {
  color: #1e88e5 !important;
}
.cl-soft-form {
  color: #dedede !important;
}
.cl-soft-white {
  color: #f8f8f8 !important;
}

.bg-black {
  background: #303030 !important;
}
.bg-white {
  background: #fff !important;
}
.bg-soft {
  background: #eeeeee !important;
}
.bg-gray {
  background: #999999 !important;
}
.bg-dark-gray {
  background: #929292 !important;
}
.bg-orange {
  background: #ff9800 !important;
}
.bg-yellow {
  background: #ffcf1c !important;
}
.bg-red {
  background: #f44336 !important;
}
.bg-green {
  background: #4caf50 !important;
}
.bg-blue {
  background: var(--blue) !important;
}
.bg-blue2 {
  background: #478af9 !important;
}
.bg-blue3 {
  background: #0651cf !important;
}
.bg-soft-form {
  background: #dedede !important;
}
.bg-soft-white {
  background: #f8f8f8 !important;
}
.bg-trans,
.bg-clean {
  background: transparent !important;
}
.bg-grad_blue {
  background: var(--grad_blue) !important;
}
.bg-grad_red {
  background: var(--grad_red) !important;
}
.bg-grad_red2 {
  background: var(--grad_red2) !important;
}
.bg-grad_purple {
  background: var(--grad_purple) !important;
}
.bg-grad_yellow {
  background: var(--grad_yellow) !important;
}
/*cmd*/
.dblock {
  display: block;
}
.centering {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.centering.column {
  flex-direction: column;
}
.centering.row {
  flex-direction: row;
}
.clear {
  clear: both;
}
.overflow {
  overflow: hidden;
}
.overflow-hidden {
  overflow: hidden;
}
.hide_desktop {
  display: none !important;
  visibility: hidden;
}
.hide_mobile {
  visibility: visible;
}
.radius0 {
  border-radius: 0px !important;
}
.radius2 {
  border-radius: 2px !important;
}
.radius2-left {
  border-radius: 2px 0 0 2px !important;
}
.radius2-right {
  border-radius: 0 2px 2px 0 !important;
}
.radius2-top {
  border-radius: 2px 2px 0 0 !important;
}
.radius2-bottom {
  border-radius: 0 0 2px 2px !important;
}
.radius4 {
  border-radius: 4px !important;
}
.radius4-left {
  border-radius: 4px 0 0 4px !important;
}
.radius4-right {
  border-radius: 0 4px 4px 0 !important;
}
.radius4-top {
  border-radius: 4px 4px 0 0 !important;
}
.radius4-bottom {
  border-radius: 0 0 4px 4px !important;
}
.radius8 {
  border-radius: 8px !important;
}
.radius8-left {
  border-radius: 8px 0 0 8px !important;
}
.radius8-right {
  border-radius: 0 8px 8px 0 !important;
}
.radius8-top {
  border-radius: 8px 8px 0 0 !important;
}
.radius8-bottom {
  border-radius: 0 0 8px 8px !important;
}
.radius10 {
  border-radius: 10px !important;
}
.radius10-left {
  border-radius: 10px 0 0 10px !important;
}
.radius10-right {
  border-radius: 0 10px 10px 0 !important;
}
.radius10-top {
  border-radius: 10px 10px 0 0 !important;
}
.radius10-bottom {
  border-radius: 0 0 10px 10px !important;
}
.radius16 {
  border-radius: 16px !important;
}
.radius16-left {
  border-radius: 16px 0 0 16px !important;
}
.radius16-right {
  border-radius: 0 16px 16px 0 !important;
}
.radius16-top {
  border-radius: 16px 16px 0 0 !important;
}
.radius16-bottom {
  border-radius: 0 0 16px 16px !important;
}
.radius24 {
  border-radius: 24px !important;
}
.radius24-left {
  border-radius: 24px 0 0 24px !important;
}
.radius24-right {
  border-radius: 0 24px 24px 0 !important;
}
.radius24-top {
  border-radius: 24px 24px 0 0 !important;
}
.radius24-bottom {
  border-radius: 0 0 24px 24px !important;
}
.radius50 {
  border-radius: 50% !important;
}

/*google icon*/
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
/*text*/
h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}
h2 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}
h3 {
  font-size: 1.13rem;
  margin: 0;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
h5 {
  font-size: 0.88rem;
  margin: 0;
  font-weight: 600;
}
h6 {
  font-size: 0.75rem;
  margin: 0;
  font-weight: 600;
}
p {
  font-size: 16px;
  margin: 16px 0;
}
.fo10 {
  font-size: 0.63rem !important;
}
.fo12 {
  font-size: 0.75rem !important;
}
.fo14 {
  font-size: 0.88rem !important;
}
.fo16 {
  font-size: 1rem !important;
}
.fo18 {
  font-size: 1.13rem !important;
}
.fo20 {
  font-size: 1.25rem !important;
}
.fw3 {
  font-weight: 300 !important;
}
.fw4 {
  font-weight: 400 !important;
}
.fw5 {
  font-weight: 500 !important;
}
.fw6 {
  font-weight: 600 !important;
}
.fw7 {
  font-weight: 700 !important;
}
.fw8 {
  font-weight: 800 !important;
}
.fw9 {
  font-weight: 900 !important;
}
.underline {
  text-decoration: underline;
}
.underline.front {
  text-decoration: underline;
}
.underline.front:hover {
  text-decoration: none;
}
.underline.hover {
  text-decoration: none;
}
.underline.hover:hover {
  text-decoration: underline;
}
/*link*/
a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  color: var(--blue);
  transition: all 0.2s ease-in-out;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.padding-no {
  padding: 0 !important;
}
.padding-ss {
  padding: 2px 4px !important;
}
.padding-xs {
  padding: 4px 8px !important;
}
.padding-sm {
  padding: 8px 16px !important;
}
.padding-lg {
  padding: 16px 24px !important;
}
.padding-xl {
  padding: 24px 32px !important;
}
.padding-xxl {
  padding: 32px 64px !important;
}
.padding-top-no {
  padding-top: 0 !important;
}
.padding-top-ss {
  padding-top: 5px !important;
}
.padding-top-xs {
  padding-top: 8px !important;
}
.padding-top-sm {
  padding-top: 16px !important;
}
.padding-top-lg {
  padding-top: 24px !important;
}
.padding-top-xl {
  padding-top: 32px !important;
}
.padding-top-xxl {
  padding-top: 48px !important;
}
.padding-bottom-no {
  padding-bottom: 0 !important;
}
.padding-bottom-ss {
  padding-bottom: 4px !important;
}
.padding-bottom-xs {
  padding-bottom: 8px !important;
}
.padding-bottom-sm {
  padding-bottom: 16px !important;
}
.padding-bottom-lg {
  padding-bottom: 24px !important;
}
.padding-bottom-xl {
  padding-bottom: 32px !important;
}
.padding-bottom-xxl {
  padding-bottom: 48px !important;
}
.padding-left-no {
  padding-left: 0 !important;
}
.padding-left-ss {
  padding-left: 4px !important;
}
.padding-left-xs {
  padding-left: 8px !important;
}
.padding-left-sm {
  padding-left: 16px !important;
}
.padding-left-lg {
  padding-left: 24px !important;
}
.padding-left-xl {
  padding-left: 32px !important;
}
.padding-left-xxl {
  padding-left: 48px !important;
}
.padding-right-no {
  padding-right: 0 !important;
}
.padding-right-ss {
  padding-right: 4px !important;
}
.padding-right-xs {
  padding-right: 8px !important;
}
.padding-right-sm {
  padding-right: 16px !important;
}
.padding-right-lg {
  padding-right: 24px !important;
}
.padding-right-xl {
  padding-right: 32px !important;
}
.padding-right-xxl {
  padding-right: 48px !important;
}
.padding-top-xxxl {
  padding-top: 56px !important;
}
.padding-bottom-xxxl {
  padding-bottom: 56px !important;
}
.padding-left-xxxl {
  padding-left: 56px !important;
}
.padding-right-xxxl {
  padding-right: 56px !important;
}
.margin-no {
  margin: 0 !important;
}
.margin-xs {
  margin: 4px 8px !important;
}
.margin-ss {
  margin: 2px 4px !important;
}
.margin-sm {
  margin: 8px 16px !important;
}
.margin-lg {
  margin: 12px 24px !important;
}
.margin-xl {
  margin: 16px 32px !important;
}
.margin-xxl {
  margin: 32px 64px !important;
}
.margin-top-no {
  margin-top: 0 !important;
}
.margin-top-ss {
  margin-top: 4px !important;
}
.margin-top-xs {
  margin-top: 8px !important;
}
.margin-top-sm {
  margin-top: 16px !important;
}
.margin-top-lg {
  margin-top: 24px !important;
}
.margin-top-xl {
  margin-top: 32px !important;
}
.margin-bottom-no {
  margin-bottom: 0 !important;
}
.margin-bottom-ss {
  margin-bottom: 4px !important;
}
.margin-bottom-xs {
  margin-bottom: 8px !important;
}
.margin-bottom-sm {
  margin-bottom: 16px !important;
}
.margin-bottom-lg {
  margin-bottom: 24px !important;
}
.margin-bottom-xl {
  margin-bottom: 32px !important;
}
.margin-left-no {
  margin-left: 0 !important;
}
.margin-left-ss {
  margin-left: 4px !important;
}
.margin-left-xs {
  margin-left: 8px !important;
}
.margin-left-sm {
  margin-left: 16px !important;
}
.margin-left-lg {
  margin-left: 24px !important;
}
.margin-left-xl {
  margin-left: 32px !important;
}
.margin-right-no {
  margin-right: 0 !important;
}
.margin-right-ss {
  margin-right: 4px !important;
}
.margin-right-xs {
  margin-right: 8px !important;
}
.margin-right-sm {
  margin-right: 16px !important;
}
.margin-right-lg {
  margin-right: 24px !important;
}
.margin-right-xl {
  margin-right: 32px !important;
}
.margin-top-xxl {
  margin-top: 48px !important;
}
.margin-bottom-xxl {
  margin-bottom: 48px !important;
}
.margin-left-xxl {
  margin-left: 48px !important;
}
.margin-right-xxl {
  margin-right: 48px !important;
}
.margin-top-xxxl {
  margin-top: 56px !important;
}
.margin-bottom-xxxl {
  margin-bottom: 56px !important;
}
.margin-left-xxxl {
  margin-left: 56px !important;
}
.margin-right-xxxl {
  margin-right: 56px !important;
}

.bg-twitter {
  background: #77cbef !important;
}
.bg-facebook {
  background: #537abd !important;
}
.bg-google {
  background: #ea5d4b !important;
}
.bg-linkedin {
  background: #1384c8 !important;
}
.bg-daily {
  background: #0064dc !important;
}
.bg-youtube {
  background: #c8302a !important;
}
.bg-instagram {
  background: #e3008b !important;
}
.bg-whatsapp {
  background: #2ab200 !important;
}
.bg-line {
  background: #4ecd00 !important;
}
.bg-tumblr {
  background: #395976 !important;
}
.cl-twitter {
  color: #77cbef !important;
}
.cl-facebook {
  color: #537abd !important;
}
.cl-google {
  color: #ea5d4b !important;
}
.cl-linkedin {
  color: #1384c8 !important;
}
.cl-daily {
  color: #0064dc !important;
}
.cl-youtube {
  color: #c8302a !important;
}
.cl-instagram {
  color: #e3008b !important;
}
.cl-whatsapp {
  color: #2ab200 !important;
}
.cl-line {
  color: #4ecd00 !important;
}
.cl-tumblr {
  color: #395976 !important;
}
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.t-center {
  text-align: center !important;
}
.t-right {
  text-align: right !important;
}
.t-left {
  text-align: left !important;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.hidden {
  opacity: 0;
}
.visible {
  opacity: 1;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.square {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.square-img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
}
.square-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.square-img img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.square-img.flat {
  border-radius: 0;
}
.square.lines {
  border: 1px solid #eeeeee;
  border-radius: 6px;
}

/*button sign-btn*/
button.btn {
  height: 40px;
  background: var(--blue);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  opacity: 1;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0 24px;
  border-radius: 2px;
}
button.btn:hover {
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}
button.btn.kotak {
  width: 40px;
  padding: 0;
}
button.btn.kotak.lg-btn {
  width: 48px;
  height: 48px;
  padding: 0;
}
button.btn.kotak.sm-btn {
  width: 36px;
  height: 36px;
  padding: 0;
}
button.btn.kotak.xs-btn {
  width: 32px;
  height: 32px;
  padding: 0;
}
button.btn.kotak.ss-btn {
  width: 24px;
  height: 24px;
  padding: 0;
}
button.btn.kotak.ss-btn i {
  font-size: 10px;
}
button.btn.kotak.lg-btn i {
  font-size: 20px;
}
button.btn.kotak i {
  font-size: 18px;
}
button.btn.kotak.clean {
  border: none;
  background: none;
}
button.btn.kotak.xs-btn i {
  font-size: 14px;
}
button.btn.kotak.sm-btn i {
  font-size: 16px;
}
button.btn.line-btn {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}
button.btn.line-btn.gray-btn {
  border: 1px solid var(--gray);
  color: var(--gray);
}
button.btn.line-btn.white-btn {
  border: 1px solid var(--white);
  color: var(--white);
}
button.btn.line-btn.black-btn {
  border-color: var(--black);
  color: var(--black);
}
button.btn.success-btn {
  background: var(--green);
}
button.btn.warning-btn {
  background: var(--yellow);
}
button.btn.error-btn {
  background: var(--red);
}
button.btn.success-btn.line-btn {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}
button.btn.warning-btn.line-btn {
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
button.btn.error-btn.line-btn {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}
button.btn.flat-btn {
  background: transparent;
  border: none;
  color: var(--blue);
}
button.btn.full-btn {
  width: 100%;
  padding: 0 32px;
}
button.btn.lg-btn {
  height: 48px;
  font-size: 16px;
  padding: 0 32px;
}
button.btn.sm-btn {
  height: 36px;
  padding: 0 24px;
}
button.btn.xs-btn {
  height: 32px;
  font-size: 12px;
  padding: 0 22px;
}
button.btn.ss-btn {
  height: 24px;
  font-size: 12px;
  padding: 0 16px;
}
button.btn.disable {
  cursor: not-allowed;
  background: #eeeeee;
  color: var(--gray);
}
button.btn.round {
  border-radius: 20px;
}
button.btn.lg-btn.round {
  border-radius: 24px;
}
button.btn.sm-btn.round {
  border-radius: 18px;
}
button.btn.xs-btn.round {
  border-radius: 16px;
}
button.btn.ss-btn.round {
  border-radius: 12px;
}

a.btn {
  height: 40px;
  background: var(--blue);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  opacity: 1;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0 24px;
  border-radius: 2px;
}
a.btn:hover {
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}
a.btn.kotak {
  width: 40px;
  padding: 0;
}
a.btn.kotak.lg-btn {
  width: 48px;
  height: 48px;
  padding: 0;
}
a.btn.kotak.sm-btn {
  width: 36px;
  height: 36px;
  padding: 0;
}
a.btn.kotak.xs-btn {
  width: 32px;
  height: 32px;
  padding: 0;
}
a.btn.kotak.ss-btn {
  width: 24px;
  height: 24px;
  padding: 0;
}
a.btn.kotak.ss-btn i {
  font-size: 10px;
}
a.btn.kotak.lg-btn i {
  font-size: 20px;
}
a.btn.kotak i {
  font-size: 18px;
}
a.btn.kotak.xs-btn i {
  font-size: 14px;
}
a.btn.kotak.sm-btn i {
  font-size: 16px;
}
a.btn.line-btn {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
a.btn.line-btn.blue-btn {
  border-color: var(--blue);
  color: var(--blue);
}
a.btn.line-btn.white-btn {
  border-color: var(--white);
  color: var(--white);
}
a.btn.success-btn {
  background: var(--green);
}
a.btn.warning-btn {
  background: var(--yellow);
}
a.btn.error-btn {
  background: var(--red);
}
a.btn.success-btn.line-btn {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}
a.btn.warning-btn.line-btn {
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
a.btn.error-btn.line-btn {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}
a.btn.flat-btn {
  background: transparent;
  border: none;
  color: var(--blue);
}
a.btn.full-btn {
  width: 100%;
  padding: 0 32px;
}
a.btn.lg-btn {
  height: 48px;
  font-size: 16px;
  padding: 0 32px;
}
a.btn.sm-btn {
  height: 36px;
  padding: 0 24px;
}
a.btn.xs-btn {
  height: 32px;
  font-size: 12px;
  padding: 0 22px;
}
a.btn.ss-btn {
  height: 24px;
  font-size: 12px;
  padding: 0 14px;
}
a.btn.disable {
  cursor: not-allowed;
  background: #eeeeee;
  color: var(--gray);
}
a.btn.round {
  border-radius: 20px;
}
a.btn.lg-btn.round {
  border-radius: 24px;
}
a.btn.sm-btn.round {
  border-radius: 18px;
}
a.btn.xs-btn.round {
  border-radius: 16px;
}
a.btn.ss-btn.round {
  border-radius: 12px;
}
/*box form input*/
.out-form {
  margin: 0;
  position: relative;
  height: auto;
}
.out-form.inline {
  display: inline-flex;
  width: auto;
  flex-direction: row;
}
.out-form.inline.col {
  flex-direction: column;
}
.out-form.min .box-form {
  display: inline-block;
  width: auto;
}
.box-form {
  margin: 0;
  position: relative;
  height: auto;
}
.box-form input.input-text {
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--soft-form);
  font-size: 14px;
  color: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
/*label*/
label {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
.out-form.fi-w-auto label {
  float: left;
  min-height: 40px;
  padding-right: 12px;
  display: inline-flex;
  align-items: center;
}
.out-form.fi-w-auto.lg-input label {
  min-height: 48px;
  padding-right: 12px;
}
.out-form.fi-w-auto.sm-input label {
  min-height: 36px;
  padding-right: 12px;
}
.out-form.fi-w-auto.xs-input label {
  min-height: 32px;
  padding-right: 12px;
  font-size: 12px;
}
.out-form.fi-w-auto.ss-input label {
  min-height: 28px;
  padding-right: 12px;
  font-size: 12px;
}
/*size input form*/
.out-form.lg-input .box-form input.input-text {
  height: 48px;
  padding: 6 14px;
  font-size: 16px;
}
.out-form.sm-input .box-form input.input-text {
  height: 36px;
  padding: 4px 10px;
}
.out-form.xs-input .box-form input.input-text {
  height: 32px;
  font-size: 12px;
  padding: 4px 8px;
}
.out-form.ss-input .box-form input.input-text {
  height: 24px;
  font-size: 12px;
  padding: 2px 6px;
}
.out-form .box-form input.input-text:disabled {
  cursor: not-allowed;
  background: #eeeeee;
  color: var(--gray);
}
.out-form .box-form i {
  font-size: 16px;
}
.out-form.lg-input .box-form i,
.out-form.lg-select .box-form i {
  font-size: 20px;
}
.out-form.sm-input .box-form i,
.out-form.sm-select .box-form i {
  font-size: 14px;
}
.out-form.xs-input .box-form i,
.out-form.xs-select .box-form i {
  font-size: 12px;
}
.out-form.ss-input .box-form i,
.out-form.ss-select .box-form i {
  font-size: 10px;
}
/*round input*/
.out-form.round .box-form input.input-text {
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.out-form.lg-input.round .box-form input.input-text {
  border-radius: 24px;
  padding-left: 26px;
  padding-right: 26px;
}
.out-form.sm-input.round .box-form input.input-text {
  border-radius: 18px;
  padding-left: 22px;
  padding-right: 22px;
}
.out-form.xs-input.round .box-form input.input-text {
  border-radius: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.out-form.ss-input.round .box-form input.input-text {
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
/*input outline*/
.out-form.fi-outline .box-form input.input-text {
  background: transparent;
}
.out-form.fi-outline.blue-line .box-form input.input-text {
  border-color: var(--blue);
}
.out-form.fi-outline.black-line .box-form input.input-text {
  border-color: var(--black);
}
/*input auto width*/
.out-form.fi-w-auto .box-form input.input-text,
.out-form.lg-input.fi-w-auto .box-form input.input-text,
.out-form.sm-input.fi-w-auto .box-form input.input-text,
.out-form.xs-input.fi-w-auto .box-form input.input-text,
.out-form.ss-input.fi-w-auto .box-form input.input-text {
  width: auto;
  min-width: 120px;
}
/*input outline*/
.out-form.fi-botline .box-form input.input-text {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-bottom: 2px solid var(--soft-form);
  padding: 6px;
}
.out-form.fi-botline .box-form input.input-text:focus {
  border-color: var(--black);
}
/*left icon*/
.out-form.fi-left-icon .box-form input.input-text {
  padding-left: 44px;
}
.out-form.fi-left-icon .box-form button.btn-left {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 0;
  z-index: 2;
  color: var(--gray);
  background: var(--soft-form);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-left-icon .box-form button.btn-left:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-left-icon.round .box-form button.btn-left {
  border-radius: 50% 0 0 50%;
  padding-left: 8px;
}
.out-form.fi-left-icon.lg-input .box-form input.input-text {
  padding-left: 52px;
  height: 48px;
  font-size: 16px;
}
.out-form.fi-left-icon.lg-input .box-form button.btn-left {
  width: 46px;
  height: 46px;
}
.out-form.fi-left-icon.sm-input .box-form input.input-text {
  padding-left: 40px;
  height: 36px;
}
.out-form.fi-left-icon.sm-input .box-form button.btn-left {
  width: 34px;
  height: 34px;
}
.out-form.fi-left-icon.xs-input .box-form input.input-text {
  padding-left: 36px;
  height: 32px;
}
.out-form.fi-left-icon.xs-input .box-form button.btn-left {
  width: 30px;
  height: 30px;
}
.out-form.fi-left-icon.ss-input .box-form input.input-text {
  padding-left: 28px;
  height: 24px;
}
.out-form.fi-left-icon.ss-input .box-form button.btn-left {
  top: 3px;
  width: 22px;
  height: 22px;
}

.out-form.fi-left-icon.round.ss-input .box-form button.btn-left {
  padding-left: 7px;
}
.out-form.fi-left-icon.round.xs-input .box-form button.btn-left {
  padding-left: 8px;
}
/*right icon*/
.out-form.fi-right-icon .box-form input.input-text {
  padding-right: 44px;
}
.out-form.fi-right-icon .box-form button.btn-right {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 0;
  z-index: 2;
  color: var(--gray);
  background: var(--soft-form);
  transition: all 0.3s ease-in-out;
  opacity: 1;
  left: unset;
}
.out-form.fi-right-icon .box-form button.btn-right:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-right-icon.round .box-form button.btn-right {
  border-radius: 0 50% 50% 0;
  padding-right: 10px;
}
.out-form.fi-right-icon.lg-input .box-form input.input-text {
  padding-right: 52px;
  height: 48px;
  font-size: 16px;
}
.out-form.fi-right-icon.lg-input .box-form button.btn-right {
  width: 46px;
  height: 46px;
}
.out-form.fi-right-icon.sm-input .box-form input.input-text {
  padding-right: 40px;
  height: 36px;
}
.out-form.fi-right-icon.sm-input .box-form button.btn-right {
  width: 34px;
  height: 34px;
}
.out-form.fi-right-icon.xs-input .box-form input.input-text {
  padding-right: 36px;
  height: 32px;
}
.out-form.fi-right-icon.xs-input .box-form button.btn-right {
  width: 30px;
  height: 30px;
}
.out-form.fi-right-icon.ss-input .box-form input.input-text {
  padding-right: 28px;
  height: 24px;
}
.out-form.fi-right-icon.ss-input .box-form button.btn-right {
  top: 3px;
  width: 22px;
  height: 22px;
}

.out-form.fi-right-icon.round.xs-input .box-form button.btn-right {
  padding-right: 7px;
}
.out-form.fi-right-icon.round.ss-input .box-form button.btn-right {
  padding-right: 8px;
}
/*focus input*/
input.input-text:focus {
  background: var(--white);
  transition: all 0.3s ease-in-out;
  border-color: var(--black);
}
/*select input*/
.box-form select.input-select {
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--soft-form);
  font-size: 14px;
  color: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  background-image: linear-gradient(45deg, transparent 50%, var(--black) 50%),
    linear-gradient(135deg, var(--black) 50%, transparent 50%),
    linear-gradient(to right, var(--black), var(--black));
  background-position: calc(100% - 19px) calc(50% + 1px),
    calc(100% - 14px) calc(50% + 1px), calc(100% - 36px) 0px;
  background-size: 5px 5px, 5px 5px, 0px 36px;
  background-repeat: no-repeat;
}
.box-form select.input-select:focus {
  background-image: linear-gradient(135deg, transparent 50%, var(--black) 50%),
    linear-gradient(45deg, var(--black) 50%, transparent 50%),
    linear-gradient(to right, var(--black), var(--black));
  background-position: calc(100% - 19px) calc(50% + 1px),
    calc(100% - 14px) calc(50% + 1px), calc(100% - 36px) 0px;
  background-size: 5px 5px, 5px 5px, 0px 36px;
  background-repeat: no-repeat;
  border-color: var(--black);
  outline: 0;
}
.out-form.xs-select .box-form select.input-select {
  background-position: calc(100% - 16px) calc(50% + 1px),
    calc(100% - 11px) calc(50% + 1px), calc(100% - 36px) 0px;
}
.out-form.ss-select .box-form select.input-select {
  background-position: calc(100% - 14px) calc(50% + 1px),
    calc(100% - 9px) calc(50% + 1px), calc(100% - 36px) 0px;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid var(--soft-form);
  padding: 0 12px;
  font-size: 14px;
  border-radius: 2px;
}
.select2-container--default .select2-results > .select2-results__options {
  font-size: 14px;
}
.select2-results__options::-webkit-scrollbar {
  width: 6px;
  background: rgba(255, 255, 255, 0.1);
}
.select2-results__options::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.select2-results__options::-webkit-scrollbar-thumb {
  background-color: var(--dark_gray);
}
.select2-results__options::-webkit-scrollbar:horizontal {
  height: 6px;
}
.select2-results__options::-webkit-scrollbar:vertical {
  width: 6px;
}
/*select label*/
.out-form.fi-w-auto label {
  float: left;
  min-height: 40px;
  padding-right: 12px;
  display: inline-flex;
  align-items: center;
}
.out-form.fi-w-auto.lg-select label {
  min-height: 48px;
  padding-right: 12px;
}
.out-form.fi-w-auto.sm-select label {
  min-height: 36px;
  padding-right: 12px;
}
.out-form.fi-w-auto.xs-select label {
  min-height: 32px;
  padding-right: 12px;
  font-size: 12px;
}
.out-form.fi-w-auto.ss-select label {
  min-height: 28px;
  padding-right: 12px;
  font-size: 12px;
}
/*select w auto*/
.out-form.fi-w-auto .box-form select.input-select {
  width: auto;
  min-width: 120px;
  padding-right: 40px;
}
/*select size*/
.out-form.lg-select .box-form select.input-select {
  height: 48px;
  padding: 6 14px;
  font-size: 16px;
}
.out-form.sm-select .box-form select.input-select {
  height: 36px;
  padding: 4px 10px;
}
.out-form.xs-select .box-form select.input-select {
  height: 32px;
  font-size: 12px;
  padding: 2px 8px;
}
.out-form.ss-select .box-form select.input-select {
  height: 24px;
  font-size: 12px;
  line-height: 100%;
  padding: 0 6px;
}
.box-form select.input-select:disabled {
  cursor: not-allowed;
  background-color: #eeeeee;
  color: var(--gray);
  background-image: linear-gradient(45deg, transparent 50%, var(--gray) 50%),
    linear-gradient(135deg, var(--gray) 50%, transparent 50%),
    linear-gradient(to right, var(--gray), var(--gray));
}
/*select round*/
.out-form.round .box-form select.input-select {
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.out-form.lg-select.round .box-form select.input-select {
  border-radius: 24px;
  padding-left: 26px;
  padding-right: 26px;
}
.out-form.sm-select.round .box-form select.input-select {
  border-radius: 18px;
  padding-left: 22px;
  padding-right: 22px;
}
.out-form.xs-select.round .box-form select.input-select {
  border-radius: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.out-form.ss-select.round .box-form select.input-select {
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
/*select left icon*/
.out-form.fi-left-icon .box-form select.input-select {
  padding-left: 44px;
}
.out-form.fi-left-icon .box-form button.btn-left {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 0;
  z-index: 2;
  color: var(--gray);
  background: var(--soft-form);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  right: unset;
}
.out-form.fi-left-icon .box-form button.btn-left:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-left-icon.round .box-form button.btn-left {
  border-radius: 50% 0 0 50%;
  padding-left: 10px;
}
.out-form.fi-left-icon.lg-select .box-form select.input-select {
  padding-left: 52px;
  height: 48px;
  font-size: 16px;
}
.out-form.fi-left-icon.lg-select .box-form button.btn-left {
  width: 46px;
  height: 46px;
}
.out-form.fi-left-icon.sm-select .box-form select.input-select {
  padding-left: 40px;
  height: 36px;
}
.out-form.fi-left-icon.sm-select .box-form button.btn-left {
  width: 34px;
  height: 34px;
}
.out-form.fi-left-icon.xs-select .box-form select.input-select {
  padding-left: 36px;
  height: 32px;
}
.out-form.fi-left-icon.xs-select .box-form button.btn-left {
  width: 30px;
  height: 30px;
}
.out-form.fi-left-icon.ss-select .box-form select.input-select {
  padding-left: 28px;
  height: 24px;
}
.out-form.fi-left-icon.ss-select .box-form button.btn-left {
  top: 3px;
  width: 22px;
  height: 22px;
}

.out-form.fi-left-icon.round.xs-select .box-form button.btn-left {
  padding-left: 7px;
}
.out-form.fi-left-icon.round.ss-select .box-form button.btn-left {
  padding-left: 8px;
}
/*teks area input*/
textarea::-webkit-scrollbar {
  width: 6px;
  background: var(--soft);
  border-radius: 0 0 0 0;
  cursor: default;
}
textarea::-webkit-scrollbar-track {
  border-radius: 0 0 0 0;
}
textarea::-webkit-scrollbar-thumb {
  background-color: var(--gray);
  border-radius: 0;
}
textarea::-webkit-scrollbar:horizontal {
  height: 6px;
}
textarea::-webkit-scrollbar:vertical {
  width: 6px;
}
.out-form .box-form textarea.input-area {
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--soft-form);
  font-size: 14px;
  line-height: 120%;
  color: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  min-height: 120px;
}
.out-form.lg-area .box-form textarea.input-area {
  min-height: 140px;
  padding: 6 14px;
  font-size: 16px;
  line-height: 120%;
}
.out-form.sm-area .box-form textarea.input-area {
  min-height: 100px;
  padding: 4px 10px;
}
.out-form.xs-area .box-form textarea.input-area {
  min-height: 80px;
  font-size: 12px;
  line-height: 120%;
  padding: 4px 8px;
}
.out-form.ss-area .box-form textarea.input-area {
  min-height: 56px;
  font-size: 12px;
  line-height: 120%;
  padding: 2px 6px;
}
.out-form .box-form textarea.input-area:disabled {
  cursor: not-allowed;
  background: #eeeeee;
  color: var(--gray);
}
/*textarea input left icon*/
.out-form.fi-left-icon .box-form textarea.input-area {
  padding-left: 44px;
}
.out-form.fi-left-icon .box-form button.btn-left {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  color: var(--gray);
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-left-icon .box-form button.btn-left:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-left-icon.lg-area .box-form textarea.input-area {
  padding-left: 52px;
  height: 48px;
  font-size: 16px;
}
.out-form.fi-left-icon.lg-area .box-form button.btn-left {
  width: 46px;
  height: 46px;
}
.out-form.fi-left-icon.sm-area .box-form textarea.input-area {
  padding-left: 40px;
  height: 36px;
}
.out-form.fi-left-icon.sm-area .box-form button.btn-left {
  width: 34px;
  height: 34px;
}
.out-form.fi-left-icon.xs-area .box-form textarea.input-area {
  padding-left: 36px;
  height: 32px;
}
.out-form.fi-left-icon.xs-area .box-form button.btn-left {
  width: 30px;
  height: 30px;
}
.out-form.fi-left-icon.ss-area .box-form textarea.input-area {
  padding-left: 28px;
  height: 24px;
}
.out-form.fi-left-icon.ss-area .box-form button.btn-left {
  top: 3px;
  width: 22px;
  height: 22px;
}
/*textarea input right icon*/
.out-form.fi-right-icon .box-form textarea.input-area {
  padding-right: 44px;
  margin-bottom: -8px;
}
.out-form.fi-right-icon .box-form button.btn-right {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 2;
  color: var(--gray);
  background: transparent;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.out-form.fi-right-icon .box-form button.btn-right:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.out-form.fi-right-icon.lg-area .box-form textarea.input-area {
  padding-right: 52px;
  height: 48px;
  font-size: 16px;
}
.out-form.fi-right-icon.lg-area .box-form button.btn-right {
  width: 46px;
  height: 46px;
}
.out-form.fi-right-icon.sm-area .box-form textarea.input-area {
  padding-right: 40px;
  height: 36px;
}
.out-form.fi-right-icon.sm-area .box-form button.btn-right {
  width: 34px;
  height: 34px;
}
.out-form.fi-right-icon.xs-area .box-form textarea.input-area {
  padding-right: 36px;
  height: 32px;
}
.out-form.fi-right-icon.xs-area .box-form button.btn-right {
  width: 30px;
  height: 30px;
}
.out-form.fi-right-icon.ss-area .box-form textarea.input-area {
  padding-right: 28px;
  height: 24px;
}
.out-form.fi-right-icon.ss-area .box-form button.btn-right {
  top: 0px;
  width: 22px;
  height: 22px;
}
.out-form.fi-right-icon.btn-pos-bottom .box-form button.btn-right {
  bottom: 0;
  top: inherit;
}
/*input filed*/
.out-form .box-form input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}
.out-form .box-form label.input-file {
  width: auto;
  height: 40px;
  display: flex;
  padding: 0 12px;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--soft-form);
  background: var(--white);
  position: relative;
}
.out-form .box-form input.file-path {
  width: 100%;
  height: 40px;
  border: none;
  padding: 0 48px;
  font-size: 16px;
}
.out-form .box-form.upload-file .delete {
  z-index: 5 !important;
}
input#file-upload-button {
  cursor: pointer !important;
  opacity: 0;
}
.out-form.round .box-form .input-file {
  border-radius: 20px;
}
.out-form.fi-right-icon .box-form .input-file {
  padding-right: 48px;
}
.out-form.fi-left-icon .box-form .input-file {
  padding-left: 48px;
}
/*toggle switch*/
.toggle {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.toggle-switch {
  display: inline-block;
  background: var(--soft-form);
  height: 36px;
  width: 62px;
  border-radius: 18px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before,
.toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  width: 28px;
  height: 28px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: var(--white);
}
.toggle-checkbox:checked + .toggle-switch {
  background: var(--blue);
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}
.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}
.toggle-label {
  margin-left: 8px;
  position: relative;
  font-size: 14px;
}
.toggle-label.left {
  margin-right: 8px;
  margin-left: unset;
  position: relative;
}

.out-form.lg-toggle .toggle-switch {
  border-radius: 20px;
  width: 66px;
  height: 40px;
}
.out-form.lg-toggle .toggle-switch:before {
  width: 32px;
  height: 32px;
}
.out-form.lg-toggle .toggle-label {
  font-size: 16px;
}

.out-form.sm-toggle .toggle-switch {
  height: 32px;
  width: 58px;
  border-radius: 16px;
}
.out-form.sm-toggle .toggle-switch:before {
  width: 24px;
  height: 24px;
}
.out-form.sm-toggle .toggle-label {
  font-size: 14px;
}

.out-form.xs-toggle .toggle-switch {
  height: 24px;
  width: 46px;
  border-radius: 12px;
}
.out-form.xs-toggle .toggle-switch:before {
  width: 16px;
  height: 16px;
}
.out-form.xs-toggle .toggle-label {
  font-size: 12px;
}
.out-form.xs-toggle .toggle-checkbox:checked + .toggle-switch:before {
  left: 26px;
}

.out-form.ss-toggle .toggle-switch {
  height: 16px;
  width: 32px;
  border-radius: 8px;
}
.out-form.ss-toggle .toggle-switch:before {
  width: 10px;
  height: 10px;
  top: 3px;
  left: 3px;
}
.out-form.ss-toggle .toggle-label {
  font-size: 12px;
}
.out-form.ss-toggle .toggle-checkbox:checked + .toggle-switch:before {
  left: 20px;
}

/*radio button input*/
.input-radio {
  cursor: pointer;
  font-size: 14px;
  display: block;
  margin: 16px 0;
}
.input-radio.row-radio {
  display: inline-block;
  margin-right: 16px;
}
.input-radio input[type="radio"] {
  opacity: 1;
  border: 2px solid var(--black);
  background: var(--white);
  height: 20px;
  width: 20px;
  position: relative;
  top: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  display: block;
  margin-right: 8px;
  float: left;
}
.input-radio input:checked {
  opacity: 1;
  background: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: var(--blue);
}
.input-radio input:checked:before {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 4px;
  left: 4px;
  background: var(--blue);
  border-radius: 8px;
  content: "";
  z-index: 2;
}
.input-radio input:disabled {
  opacity: 1;
  background: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid var(--red);
  cursor: not-allowed;
}
.input-radio input:disabled:before {
  font-family: "FontAwesome";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0px;
  left: 0;
  content: "\f00d";
  color: var(--red);
  font-size: 12px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 0 auto;
}
.input-radio > label {
  margin-left: 30px;
  cursor: pointer;
  color: var(--black);
}
.input-radio > p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  margin-left: 28px;
  color: var(--black);
}
/*checkbox input*/
.input-check {
  cursor: pointer;
  font-size: 14px;
  display: block;
  margin: 16px 0;
}
.input-check.row-check {
  display: inline-block;
  margin-right: 16px;
}
.input-check input[type="checkbox"] {
  opacity: 1;
  border: 2px solid var(--black);
  background: var(--white);
  height: 20px;
  width: 20px;
  position: relative;
  top: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  display: block;
  margin-right: 8px;
  float: left;
}
.input-check input:checked {
  opacity: 1;
  background: var(--white);
  border-color: var(--blue);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-check input:checked:before {
  font-family: "FontAwesome";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0px;
  left: 0;
  content: "\f00c";
  color: var(--blue);
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.input-check input:disabled {
  opacity: 1;
  background: var(--white);
  border: 2px solid var(--red);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: not-allowed;
}
.input-check input:disabled:before {
  font-family: "FontAwesome";
  content: "\f00d";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0px;
  left: 0;
  color: var(--red);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.input-check > label {
  margin-left: 30px;
  cursor: pointer;
  color: var(--black);
}
.input-check > p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  margin-left: 28px;
  color: var(--black);
}
/*row list*/
ul.row-list {
  list-style: none;
  list-style-position: inside;
  margin: 0 -8px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: wrap;
}
ul.row-list li {
  width: 100%;
  padding: 0 8px;
}
ul.row-list.row2 li {
  width: 50%;
  padding: 0 8px;
}
ul.row-list.row3 li {
  width: 33.333%;
  padding: 0 8px;
}
ul.row-list.row4 li {
  width: 25%;
  padding: 0 8px;
}
ul.row-list.row5 li {
  width: 20%;
  padding: 0 8px;
}
ul.row-list.row6 li {
  width: 16.666%;
  padding: 0 8px;
}
ul.row-list.row7 li {
  width: 14.28571428571429%;
  padding: 0 8px;
}
ul.row-list.row8 li {
  width: 12.5%;
  padding: 0 8px;
}
ul.row-list.row4.pad4,
ul.row-list.row3.pad4,
ul.row-list.row2.pad4,
ul.row-list.row5.pad4,
ul.row-list.row6.pad4,
ul.row-list.row7.pad4,
ul.row-list.row8.pad4 {
  margin: 0 -4px;
}
ul.row-list.row4.pad4 li,
ul.row-list.row3.pad4 li,
ul.row-list.row2.pad4 li,
ul.row-list.row5.pad4 li,
ul.row-list.row6.pad4 li,
ul.row-list.row7.pad4 li,
ul.row-list.row8.pad4 li {
  padding: 0 4px;
}
ul.row-list.row4.pad16,
ul.row-list.row3.pad16,
ul.row-list.row2.pad16,
ul.row-list.row5.pad16,
ul.row-list.row6.pad16,
ul.row-list.row7.pad16,
ul.row-list.row8.pad16 {
  margin: 0 -16px;
}
ul.row-list.row4.pad16 li,
ul.row-list.row3.pad16 li,
ul.row-list.row2.pad16 li,
ul.row-list.row5.pad16 li,
ul.row-list.row6.pad16 li,
ul.row-list.row7.pad16 li,
ul.row-list.row8.pad16 li {
  padding: 0 16px;
}
/*main card box*/
.card-box {
  height: auto;
  width: 100%;
  position: relative;
  margin: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.card-box.shadow {
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  background: var(--white);
}
.card-box.shadow .text-card {
  padding: 16px;
}
.card-box.over-image .text-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.card-box.over-image.sm-oi .text-card {
  padding: 16px;
}
.card-box.over-image.center-pos .text-card {
  justify-content: center;
}
.card-box.over-image.top-pos .text-card {
  justify-content: flex-start;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.card-box.over-image .text-card a {
  color: rgba(255, 255, 255, 1);
}
.card-box.over-image .text-card a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.card-box .img-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 1;
}
.card-box .img-card button.icon-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.5);
  margin: auto;
  z-index: 3;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 60px;
  background: transparent;
  border: none;
}
.card-box .img-card .right-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  z-index: 2;
}
.card-box .img-card .right-icons.foto {
  width: auto;
  padding: 0 8px;
  border-radius: 4px;
  top: 4px;
  bottom: inherit;
  right: 4px;
  font-size: 12px;
}
.card-box .img-card .play-icons.big i {
  font-size: 90px;
}
.card-box .img-card .play-icons.medium i {
  font-size: 60px;
}
.card-box .img-card .play-icons.small i {
  font-size: 30px;
}
.card-box .img-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.card-box:hover .img-card img {
  transition: all 0.3s ease-in-out;
  opacity: 0.95;
}
.card-box .text-card {
  height: auto;
  width: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.card-box .text-card h1 {
  transition: all 0.2s ease-in-out;
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}
.card-box .text-card h2 {
  transition: all 0.2s ease-in-out;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}
.card-box .text-card h3 {
  transition: all 0.2s ease-in-out;
  font-size: 1.13rem;
  margin: 0;
  font-weight: 600;
}
.card-box .text-card h4 {
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
.card-box .text-card h5 {
  transition: all 0.2s ease-in-out;
  font-size: 0.88rem;
  margin: 0;
  font-weight: 600;
}
.card-box .text-card h6 {
  transition: all 0.2s ease-in-out;
  font-size: 0.75rem;
  margin: 0;
  font-weight: 600;
}
.card-box .text-card p {
  font-weight: 400;
  margin: 0;
  letter-spacing: normal;
  font-size: 1rem;
  line-height: 1.3;
}
.card-box .text-card p.f14 {
  font-size: 0.88rem;
}
.card-box .text-card p.f12 {
  font-size: 0.75rem;
}
.card-box .text-card p a {
  color: var(--blue);
}
.card-box .text-card p a:hover {
  color: var(--orange);
}
.line1 {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line2 {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line3 {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line4 {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.line5 {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.line6 {
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
/*small horizontal card-box*/
.card-box.xs .img-card {
  float: left;
  width: 140px;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.xs .img-card img {
  width: auto;
  height: 105px;
}
.card-box.xs .text-card {
  padding: 0 0 0 12px;
  min-height: 105px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.card-box.xs .text-card h3 {
  font-size: 14px;
}
.card-box.xs.shadow .text-card {
  padding: 8px 12px;
}
.card-box.xs.shadow .text-card h3 {
  font-size: 12px;
}
.card-box.xs.right .img-card {
  float: right;
}
.card-box.xs.right .text-card {
  padding: 0 12px 0 0;
}
.card-box.xs.sq .img-card {
  width: 100px;
  aspect-ratio: 1 / 1;
  max-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.xs.sq .img-card img {
  width: auto;
  height: 100px;
}
.card-box.xs.sq .text-card {
  min-height: 100px;
}

/*medium horizontal card-box*/
.card-box.sm .img-card {
  float: left;
  width: 160px;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.sm .img-card img {
  width: auto;
  height: 120px;
}
.card-box.sm .text-card {
  padding: 0 0 0 16px;
  min-height: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.card-box.sm.shadow .text-card {
  padding: 12px 16px;
}
.card-box.sm.right .img-card {
  float: right;
}
.card-box.sm.right .text-card {
  padding: 0 16px 0 0;
}
.card-box.sm.sq .img-card {
  width: 120px;
  aspect-ratio: 1 / 1;
  max-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.sm.sq .img-card img {
  width: auto;
  height: 120px;
}
.card-box.sm.sq .text-card {
  min-height: 120px;
}
/*large horizontal card-box*/
.card-box.lg .img-card {
  float: left;
  width: 200px;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.lg .img-card img {
  width: auto;
  height: 150px;
}
.card-box.lg .text-card {
  padding: 0 0 0 16px;
  min-height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.card-box.lg.shadow .text-card {
  padding: 12px 16px;
}
.card-box.lg.right .img-card {
  float: right;
}
.card-box.lg.right .text-card {
  padding: 0 16px 0 0;
}
.card-box.lg.sq .img-card {
  width: 150px;
  aspect-ratio: 1 / 1;
  max-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.lg.sq .img-card img {
  width: auto;
  height: 150px;
}
.card-box.lg.sq .text-card {
  min-height: 150px;
}
/*ex large horizontal card-box*/
.card-box.xl .img-card {
  float: left;
  width: 300px;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.xl .img-card img {
  width: auto;
  height: 225px;
}
.card-box.xl .text-card {
  padding: 0 0 0 16px;
  min-height: 225px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.card-box.xl.shadow .text-card {
  padding: 12px 16px;
}
.card-box.xl.right .img-card {
  float: right;
}
.card-box.xl.right .text-card {
  padding: 0 16px 0 0;
}
.card-box.xl.sq .img-card {
  width: 225px;
  aspect-ratio: 1 / 1;
  max-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-box.xl.sq .img-card img {
  width: auto;
  height: 225px;
}
.card-box.xl.sq .text-card {
  min-height: 225px;
}
/*avatar*/
.box-avatar {
  display: flex;
  flex-direction: row;
  position: relative;
}
.box-avatar.inline {
  display: inline-flex;
}
.box-avatar .avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: var(--soft-form);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  float: left;
  font-weight: 600;
  color: #fff;
}
.box-avatar .avatar img {
  width: auto;
  height: 40px;
}
.box-avatar .text-avatar {
  min-height: 40px;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.box-avatar .text-avatar h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 120%;
  font-weight: 500;
}
.box-avatar .text-avatar h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 500;
}
.box-avatar .text-avatar h5 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 120%;
  font-weight: 500;
}
.box-avatar .text-avatar h6 {
  margin: 0;
  font-size: 0.75rem;
  line-height: 120%;
  font-weight: 400;
}

.box-avatar.xxl-avatar .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.box-avatar.xxl-avatar .avatar img {
  height: 72px;
}
.box-avatar.xxl-avatar .text-avatar {
  min-height: 72px;
}

.box-avatar.xl-avatar .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.box-avatar.xl-avatar .avatar img {
  height: 60px;
}
.box-avatar.xl-avatar .text-avatar {
  min-height: 60px;
}

.box-avatar.lg-avatar .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.box-avatar.lg-avatar .avatar img {
  height: 48px;
}
.box-avatar.lg-avatar .text-avatar {
  min-height: 48px;
}

.box-avatar.sm-avatar .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.box-avatar.sm-avatar .avatar img {
  height: 36px;
}
.box-avatar.sm-avatar .text-avatar {
  min-height: 36px;
  padding-left: 8px;
}

.box-avatar.xs-avatar .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.box-avatar.xs-avatar .avatar img {
  height: 32px;
}
.box-avatar.xs-avatar .text-avatar {
  min-height: 32px;
  padding-left: 8px;
}

.box-avatar.ss-avatar .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.box-avatar.ss-avatar .avatar img {
  height: 24px;
}
.box-avatar.ss-avatar .text-avatar {
  min-height: 24px;
  padding-left: 8px;
}

.box-avatar.xss-avatar .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.box-avatar.xss-avatar .avatar img {
  height: 20px;
}
.box-avatar.xss-avatar .text-avatar {
  min-height: 20px;
  padding-left: 8px;
}

/*centering avatar*/
.box-avatar.centerpos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box-avatar.centerpos .avatar {
  float: none;
}
.box-avatar.centerpos .text-avatar {
  padding-left: 0;
  align-items: center;
  min-height: inherit;
  margin-top: 4px;
}
.box-avatar.many .avatar {
  margin-right: -6px;
  z-index: -1;
  border: 2px solid #fff;
}
/*right avatar*/
.box-avatar.rightpos {
  display: flex;
  flex-direction: row-reverse;
}
.box-avatar.rightpos .text-avatar {
  align-items: flex-end;
  padding-left: 0;
  padding-right: 12px;
}
/*right avatar*/
.box-avatar.rightpos.left-text {
  display: flex;
  flex-direction: row-reverse;
}
.box-avatar.rightpos.left-text .text-avatar {
  align-items: flex-start;
  padding-left: 0;
  padding-right: 12px;
}
/*avatar foto profile*/
.box-avatar.liked .avatar {
  margin-left: -20px;
  border: 1px solid var(--white);
}
.box-avatar.xss-avatar.liked .avatar {
  margin-left: -10px;
}
.box-avatar.ss-avatar.liked .avatar {
  margin-left: -12px;
}
.box-avatar.xs-avatar.liked .avatar {
  margin-left: -16px;
}
.box-avatar.sm-avatar.liked .avatar {
  margin-left: -18px;
}
.box-avatar.lg-avatar.liked .avatar {
  margin-left: -24px;
}
.box-avatar.xl-avatar.liked .avatar {
  margin-left: -30px;
}
.box-avatar.xxl-avatar.liked .avatar {
  margin-left: -36px;
}
.box-avatar.liked .avatar:nth-child(1) {
  margin-left: 0;
}
/*avatar w icon right*/
.box-avatar.w-btn-r .text-avatar {
  position: relative;
  padding-right: 40px;
}
.box-avatar.w-btn-r .text-avatar button.btn-avatar {
  position: absolute;
  width: 40px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  outline: none;
}
.box-avatar.w-btn-r .text-avatar button.btn-avatar:hover {
  opacity: 0.8;
}
.box-avatar.w-btn-r.xss-avatar .text-avatar {
  padding-right: 40px;
}
.box-avatar.w-btn-r.xss-avatar .text-avatar button.btn-avatar {
  width: 40px;
  height: 20px;
  font-size: 14px;
}
.box-avatar.w-btn-r.ss-avatar .text-avatar {
  padding-right: 40px;
}
.box-avatar.w-btn-r.ss-avatar .text-avatar button.btn-avatar {
  width: 40px;
  height: 32px;
}
.box-avatar.w-btn-r.sm-avatar .text-avatar {
  padding-right: 40px;
}
.box-avatar.w-btn-r.sm-avatar .text-avatar button.btn-avatar {
  width: 40px;
  height: 32px;
}
.box-avatar.w-btn-r.xs-avatar .text-avatar {
  padding-right: 40px;
}
.box-avatar.w-btn-r.xs-avatar .text-avatar button.btn-avatar {
  width: 40px;
  height: 32px;
}
.ddr-menu {
  position: absolute;
  top: 36px;
  right: 0;
  background: var(--white);
  width: 180px;
  padding: 0;
  display: none;
  z-index: 11;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.ddr-menu .ddr-in {
  display: flex;
  flex-direction: column;
}
.ddr-menu .ddr-in a {
  padding: 8px 12px;
  font-size: 0.88rem;
  border-bottom: 1px solid #f8f8f8;
}
.ddr-menu .ddr-in a:last-child {
  border-bottom: none;
}
.ddr-menu .ddr-in a:hover {
  background: var(--soft);
}
.box-avatar.w-btn-r.xss-avatar .ddr-in a {
  font-size: 0.75rem;
}
.btn-ddr.active {
  background: var(--white);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/*avatar w btn on top*/
.box-avatar .btn-on-avatar {
  position: relative;
}
.box-avatar .btn-on-avatar button.btn-on {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: -8px;
  z-index: 2;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 9px;
}
.box-avatar.xl-avatar .btn-on-avatar button.btn-on,
.box-avatar.xxl-avatar .btn-on-avatar button.btn-on {
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 0;
  right: -8px;
  font-size: 10px;
}
.box-avatar.centerpos .btn-on-avatar button.btn-on {
  bottom: 8px;
}
/*scroll*/
.scroll-h {
  height: 100px;
  overflow-y: auto;
  padding: 0 16px 12px 0;
}
.scroll-h::-webkit-scrollbar {
  width: 6px;
  background: #ccc;
  border-radius: 0 0 0 0;
}
.scroll-h::-webkit-scrollbar-track {
  border-radius: 0 0 0 0;
}
.scroll-h::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 0;
}
.scroll-h::-webkit-scrollbar:horizontal {
  height: 6px;
}
.scroll-h::-webkit-scrollbar:vertical {
  width: 6px;
}
/*header*/
.header {
  height: auto;
  margin: 0;
  width: 100%;
  background: var(--white);
  z-index: 5;
  /*box-shadow: 0 8px 20px rgba(119, 119, 119, 0.1);*/
  padding: 0;
  border-bottom: 4px solid var(--primary);
}
.header .header-in {
  height: 70px;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-in.full {
  max-width: 100%;
}
.header .header-in.lg {
  max-width: 1200px;
}
.header .header-in.sm {
  max-width: 1100px;
}
.header .header-in.xs {
  max-width: 1080px;
}
.header .header-in.ss {
  max-width: 800px;
}

.header.lg-header .header-in {
  height: 80px;
}
.header.sm-header .header-in {
  height: 56px;
}

.header .header-in .logo {
  height: 70px;
  margin: 0;
  float: left;
  padding: 12px 0;
}
.header .header-in .logo img {
  width: auto;
  height: 46px;
}

.header.lg-header .header-in .logo {
  height: 70px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  padding: 12px 0;
}
.header.lg-header .header-in .logo img {
  width: auto;
  height: 56px;
}
.header.sm-header .header-in .logo {
  height: 56px;
  margin: 0;
  float: left;
  padding: 12px 0;
}
.header.sm-header .header-in .logo img {
  width: auto;
  height: 32px;
}

.header .header-bar {
  height: 32px;
  margin: 0 auto;
  width: 100%;
  padding: 4px 16px;
  display: flex;
  justify-content: space-between;
}
.header .header-bar p {
  margin: 0;
  font-size: 11px;
  line-height: 24px;
}
.header .header-bar.border-bottom {
  border-bottom: 1px solid var(--soft);
}
.header .header-bar.full {
  max-width: 100%;
}
.header .header-bar.large {
  max-width: 1200px;
}
.header .header-bar.medium {
  max-width: 1080px;
}
.header .header-bar.small {
  max-width: 800px;
}

.header .header-in .header-right {
  height: 70px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.header .header-in .header-left {
  height: 70px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.header .header-in .header-center {
  height: 70px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.header.fix-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.header .header-top.xs-header {
  height: 56px;
}
.full-header {
  width: 100% !important;
  max-width: inherit !important;
}
#cd-menu-trigger {
  display: none;
}

/*nav menu*/
nav.mainmenu {
  margin: 0;
  padding: 0;
  height: 70px;
  width: auto;
}
nav.mainmenu ul li > a:after {
  content: " \f107";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-left: 10px;
  top: 0;
  position: relative;
}
nav.mainmenu ul li > a:only-child:after {
  content: "";
  margin: 0;
}
nav.mainmenu ul ul {
  display: none;
}
nav.mainmenu ul li:hover > ul {
  display: block;
}
nav.mainmenu ul {
  list-style: none;
  list-style-position: inside;
  margin: 0 auto;
  padding: 0;
  height: 70px;
  max-width: 1200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
nav.mainmenu ul:after {
  content: "";
  clear: both;
  display: block;
}
nav.mainmenu ul li {
  float: left;
}
nav.mainmenu ul li:hover {
  color: var(--white);
}
nav.mainmenu ul li:hover a {
  color: var(--white);
  background: var(--blue);
}
nav.mainmenu ul li a {
  color: var(--white);
  position: relative;
  padding: 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}
nav.mainmenu ul li a.selected {
  background: var(--blue3);
  color: var(--white);
  position: relative;
}
nav.mainmenu ul li:hover a.selected {
  background: var(--blue3);
  color: var(--white);
}
nav.mainmenu ul ul {
  background: var(--white);
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  height: auto;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
nav.mainmenu ul ul.submenu {
  background: var(--white);
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  height: auto;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
nav.mainmenu ul li:hover > ul.submenu {
  display: flex;
}
nav.mainmenu ul ul.submenu {
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: wrap;
}
nav.mainmenu ul ul li {
  float: none;
  width: 184px;
  color: var(--black);
}
nav.mainmenu ul ul li a {
  padding: 10px 15px;
  justify-content: flex-start;
  flex-direction: row;
  height: auto;
  text-transform: none;
}
nav.mainmenu ul ul li a:hover {
}
nav.mainmenu ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}
nav.mainmenu ul ul.submenu li {
  width: auto;
  display: block;
  padding: 15px;
}
nav.mainmenu ul ul.submenu li .box-sub h4.title {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
nav.mainmenu ul ul.submenu li .box-sub p.title {
  margin: 0;
  position: relative;
}
nav.mainmenu ul ul.submenu li .box-sub p.title a {
  color: var(--black);
  background: none !important;
  padding: 5px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  height: auto !important;
}
nav.mainmenu ul ul.submenu li .box-sub p.title a:hover {
  color: var(--gray) !important;
}
nav.mainmenu ul ul.submenu li .box-sub h4.title a,
nav.mainmenu ul ul.submenu li .box-sub h4.title a:hover {
  background: none !important;
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--black) !important;
}
/*single sub menu*/
nav.mainmenu ul ul.submenu.single {
  width: 200px;
  right: inherit !important;
  left: inherit !important;
  padding: 0;
}
nav.mainmenu ul ul.submenu.single li {
  width: 100%;
  float: none;
  background: var(--white);
  padding: 0;
}
nav.mainmenu ul ul.submenu.single li a {
  color: var(--black);
  background: var(--white);
  padding: 8px 16px;
  height: auto !important;
}
nav.mainmenu ul ul.submenu.single li a:hover {
  background: var(--blue2);
  color: var(--white);
}
nav.mainmenu ul li.other {
  position: relative;
}
nav.mainmenu ul li.other ul.submenu.single.sub-right {
  right: 0 !important;
}
nav.mainmenu.full-width {
  width: 100%;
  border-top: 1px solid var(--soft);
  padding: 0 16px;
}
nav.mainmenu ul li.other > a:after {
  content: " \f142";
}
/*sm menu*/
nav.mainmenu.left-pos ul {
  justify-content: flex-start;
}
nav.mainmenu.center-pos ul {
  justify-content: center;
}
nav.mainmenu.right-pos ul {
  justify-content: flex-end;
}
nav.mainmenu.sm-menu {
  height: 56px;
}
nav.mainmenu.sm-menu ul {
  height: 56px;
}
nav.mainmenu.sm-menu ul li a {
  height: 56px;
}
nav.mainmenu.xs-menu {
  height: 48px;
}
nav.mainmenu.xs-menu ul {
  height: 48px;
}
nav.mainmenu.xs-menu ul li a {
  height: 48px;
}
/*clean*/
nav.mainmenu.clean ul li a.selected {
  background: transparent;
  color: var(--blue);
}
nav.mainmenu.clean ul li:hover a.selected {
  background: transparent;
  color: var(--blue);
}
nav.mainmenu.clean ul ul.submenu.single li a {
  color: var(--black);
}
nav.mainmenu.clean ul ul.submenu.single li a:hover {
  background: transparent;
  color: var(--gray);
}
nav.mainmenu.clean ul li:hover a {
  color: var(--black);
  background: transparent;
}
/*clean underline selected*/
nav.mainmenu.clean.underline ul li a.selected::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  height: 4px;
  background: var(--blue);
  z-index: 2;
}
nav.mainmenu.clean.underline.sm-menu ul li a.selected::before {
  bottom: 0;
}
nav.mainmenu.clean.radius ul li a.selected {
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  height: 40px;
}
nav.mainmenu.clean.radius.xs-menu ul li a.selected {
  height: 36px;
}
nav.mainmenu.clean.radius.xs-menu ul li a.selected {
  height: 40px;
}
/*search*/
.box-search {
  height: auto;
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
  margin: 0 auto;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-search-in {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}
.box-search-in input.search {
  width: 100%;
  height: 48px;
  padding: 5px 60px 5px 24px;
  background: #fff;
  border: 1px solid var(--soft-form);
  font-size: 16px;
  border-radius: 24px;
}
.box-search-in button.search-btn {
  width: 56px;
  height: 48px;
  border: 1px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
  background: 0 0;
  color: var(--black);
}
.box-search-in input.search:focus {
  color: var(--black);
}
a.sign-btn.show-search {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid var(--orange);
  color: var(--orange);
  border-radius: 18px;
  background: transparent;
}
/*base*/
.cd-main-content {
  min-height: 100%;
  position: relative;
  padding: 0;
  margin: 0 auto;
  padding-top: 80px;
}
.cd-main-content .inside-main {
  max-width: 1366px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex: 2;
  flex-direction: row;
}
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
}
.container.big {
  padding: 0 46px;
}
.container.full {
  max-width: 100%;
}
.container.medium {
  max-width: 1080px;
}
.container.small {
  max-width: 800px;
}
.container.large {
  max-width: 1200px;
}
.container-col {
  margin-left: -16px;
  margin-right: -16px;
}
.container-col.medium-col {
  margin-left: -8px;
  margin-right: -8px;
}
.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}
[class*="col-"] {
  float: left;
  padding: 0 16px;
}
[class*="medium8"] {
  float: left;
  padding: 0 8px !important;
}
.container-col.dis_flex {
  margin-left: 0;
  margin-right: 0;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.dis_flex [class*="col-"] {
  float: none !important;
  padding: 0 !important;
}
.block-all {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
}

/*blockbox*/
.blockbox {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0 16px 16px 16px;
}
.large_padding {
  padding: 70px 0;
}
.blockbox.boxtitle_kanal {
  background: #ebfeff url("../images/bg-logo.png") bottom left no-repeat;
  background-size: cover;
  border-bottom: 2px solid #dfecfa;
  padding: 32px 0;
}
.blockbox.boxtitle_kanal p {
  margin: 0;
}
.blockbox.boxtitle_kanal h2.title_kanal {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}
.blockbox .blockbox_in {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.blockbox h2.titlebox {
  min-height: 24px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.blockbox h2.titlebox a {
  color: #00549b;
}
.blockbox h2.titlebox a:hover {
  color: #f87304;
}
.blockbox h3.titlebox {
  min-height: 24px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.blockbox p.capt {
  font-size: 22px;
  line-height: 32px;
  max-width: 750px;
  font-weight: 500;
}
.blockbox .next-page {
  width: 100%;
  text-align: right;
  padding: 8px 0;
  font-size: 14px;
}
.blockbox .next-page a {
  color: #929292;
}
.blockbox .next-page a:hover {
  color: var(--orange);
}
/*detail*/

.detail-sticky {
  position: sticky;
  top: 106px;
}
.img_sticky {
  position: sticky;
  top: 90px;
  height: 90vh;
  width: 100%;
  z-index: 2;
}
.detail-artikel {
  width: 100%;
  margin-bottom: 32px;
  min-height: 10px;
  padding: 0 16px 32px 16px;
}
.detail-artikel .detail-in {
  padding: 24px 0 0 0;
}
.detail-artikel p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  font-weight: 400;
}
.detail-artikel p:last-child {
  margin-bottom: 0;
}
.detail-artikel p a {
  font-weight: 600;
  color: var(--blue);
}
.detail-artikel p a:hover {
  color: var(--dark_gray);
}
.detail-artikel h2 {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}
.detail-artikel ul,
.detail-artikel ol {
  margin: 0 0 30px 0;
  padding-left: 20px;
}
.detail-artikel ul li,
.detail-artikel ol li {
  font-size: 18px;
  line-height: 1.5;
  margin: 15px 0;
  padding-left: 5px;
}
.box-title-detail {
  padding: 15px 0;
  overflow: hidden;
}
ul.share {
  padding: 0;
  margin: 16px auto 0 auto;
  list-style: none;
  list-style-position: inside;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
ul.share li {
  margin: 0 0 0 5px;
  width: 40px;
  padding: 0;
}
ul.share li a {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.share li.title {
  width: auto;
  font-size: 14px;
  font-weight: 600;
  padding-right: 12px;
}
ul.share li a:hover {
  opacity: 0.9;
}
ul.share li.cp-link {
  width: auto;
}
ul.share li.cp-link a {
  width: auto;
  padding: 0 12px;
  font-size: 12px;
}
ul.share li:first-child {
  margin-left: 0;
}
ul.share li:last-child {
  margin-right: 0;
}
/*detail - baca juga*/
.detail-artikel .detail-in .baca-juga {
  padding-left: 16px;
  margin: 0 0 24px 0;
}
.detail-artikel .detail-in .baca-juga h5.title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.detail-artikel .detail-in .baca-juga h4.title {
  border-left: 4px solid #aab9b9;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  padding: 4px 8px;
  margin-bottom: 8px;
  background: #f9f9f9;
}
.detail-artikel .detail-in .baca-juga a {
  color: #323c9f;
  font-size: 18px;
  line-height: 29px;
  margin: 16px 0;
  font-weight: 600;
}
.detail-artikel .detail-in .baca-juga a:hover {
  opacity: 0.7;
}
/*detail - foto utama */
.box-foto-artikel {
  margin: 0 auto;
  overflow: hidden;
}
.box-foto-artikel .foto-artikel {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
}
.box-foto-artikel .foto-artikel img {
  width: 100%;
  height: auto;
}
.box-foto-artikel .caption {
  font-size: 12px;
  line-height: 14px;
  color: var(--dark_gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--dark_gray);
}
/*detail judul */
.judul-artikel {
  padding: 0;
  overflow: hidden;
  margin: 0 0 30px 0;
}
.judul-artikel h1.title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.judul-artikel h3.title {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  font-weight: 700;
}
.judul-artikel h4.date {
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  font-weight: 400;
}
/*detail - tag*/
.box-tag {
  display: block;
}
.box-tag a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 4px 12px;
  margin: 0 5px 5px 0;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  border: 1px solid var(--black);
}
.box-tag a:hover {
  color: var(--dark_gray);
  border-color: var(--dark_gray);
}
.breakpage {
  height: 64px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.breakpage::before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  top: 50%;
  background: #ccc;
}
.breakpage h6.title {
  position: absolute;
  height: 32px;
  background: #fff;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 0 16px;
  z-index: 2;
  margin: 0;
  color: var(--dark_gray);
  font-weight: 500;
}
/*top istilah*/
.top-istilah {
  display: block;
}
.top-istilah a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 4px;
  padding: 3px 12px;
  margin: 0 5px 5px 0;
  border: 1px solid #292929;
  color: #292929;
  font-size: 14px;
  font-weight: 400;
}
.top-istilah a:hover {
  border-color: #1677ff;
  color: #1677ff;
  background: #fff;
}
/*breadcrumbs*/
.breadcrumbs {
  margin: 0 auto;
  display: block;
  padding: 10px 0;
  overflow: hidden;
  border-top: 1px solid var(--soft-form);
  border-bottom: 1px solid var(--soft-form);
}
ul.sitemap {
  list-style: none;
  list-style-position: inside;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
ul.sitemap li {
  float: left;
  padding: 0 32px 0 0;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  margin: 0;
}
ul.sitemap li:before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f054";
  top: 3px;
  right: 10px;
  font-size: 10px;
  color: var(--blue);
}
ul.sitemap li a {
  color: var(--blue);
}
ul.sitemap li a:hover {
  color: var(--red);
}
ul.sitemap li:last-child {
  padding-right: 0;
}
ul.sitemap li:last-child:before {
  display: none;
}
/*sumber / penulis */
.box-sumber {
  background: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: wrap;
  z-index: 2;
}
.box-sumber .avatar-sumber {
  width: 40px;
  height: 40px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  border-radius: 25px;
  border: 1px solid var(--soft-form);
}
.box-sumber .avatar-sumber img {
  width: auto;
  height: 40px;
}
.box-sumber .text-sumber {
  min-height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.box-sumber .text-sumber h5.title {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
/*footer*/
.footer {
  background: #fff;
  padding: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  position: relative;
  height: auto;
  width: 100%;
}

.footer img.footer-bg {
  width: 100%;
  height: auto;
}

.footer .footer-in {
  padding: 40px 16px 24px 16px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  border-top: 3px solid #bbdefa;
}

.footer a.link {
  font-size: 12px;
  line-height: 20px;
  color: #00549b;
  display: flex;
  font-weight: 600;
  font-weight: 400;
  padding-right: 8px;
  margin-right: 8px;
  min-height: 40px;
  margin: 8px 0;
}

.footer a.link.icon i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer-in .col-08 {
  width: 12.5%;
  float: left;
  padding: 0 16px;
}

ul.row-menu-footer {
  list-style: none;
  list-style-position: inside;
  margin: 0 -8px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: wrap;
}

ul.row-menu-footer li {
  width: 12.5%;
  padding: 0 8px;
}

.footer .footer-bot {
  background: var(--blue);
  padding: 40px 0;
}

.footer a.link:hover {
  color: #101010;
}

.footer .logo-footer {
  width: auto;
  height: auto;
  display: flex;
  margin-bottom: 16px;
}

.footer p.by {
  font-size: 12px;
  line-height: 16px;
  margin: 16px 0;
}

.footer .logo-footer img {
  width: auto;
  height: 64px;
}

.footer .bottom-footer {
  border-top: 1px solid #ededed;
  overflow: hidden;
  padding: 16px 0 0 0;
}

.footer .footer-bot .footer-apps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer .footer-bot .footer-apps a {
  width: 50%;
}

.footer .footer-bot .footer-apps a img {
  width: 100%;
  height: auto;
  margin: 0;
}

ul.sosmed {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-position: inside;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

ul.sosmed li {
  display: inline-flex;
  margin: 0 3px;
  width: 36px;
  height: 36px;
}

ul.sosmed li a {
  width: 36px;
  height: 36px;
  color: #101010;
  border-radius: 18px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}

ul.sosmed li a:hover {
  opacity: 0.7;
}

ul.sosmed li:first-child {
  margin-left: 0;
}

.footer p.copy {
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #999;
}
/*pagging*/
ul.pagging {
  list-style: none;
  list-style-position: inside;
  margin: 40px 0 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}
ul.pagging li {
  min-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
  margin: 2px;
  padding-left: 0;
}
ul.pagging li a {
  min-width: 40px;
  height: 40px;
  display: block;
  padding: 5px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
ul.pagging li a:hover {
  background: var(--white);
  color: var(--dark_gray);
  border: 1px solid var(--dark_gray);
}
ul.pagging li a.selected {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
ul.pagging.centerpos {
  justify-content: center;
}
/*komentar*/
.box-komentar {
  display: block;
  position: relative;
  margin-bottom: 16px;
  padding-top: 16px;
  overflow: hidden;
  border-top: 1px dotted rgba(0, 0, 0, 0.2);
}
.box-komentar.border-no {
  border: none;
}
.box-komentar.balas {
  border-bottom: none;
  padding-bottom: 0;
}
.box-komentar .isi-komentar {
  padding-left: 52px;
}
.box-komentar .isi-komentar p {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 16px 0;
  font-weight: 400;
  color: var(--black);
}
.box-komentar .isi-komentar .box-balas {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.box-komentar .isi-komentar .box-balas button.balas {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0;
}
.box-komentar .isi-komentar .box-balas button.balas:hover {
  opacity: 0.7;
}
.box-komentar .isi-komentar .box-balas .icon-balas {
  width: 16px;
  height: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.box-komentar .isi-komentar .box-balas p {
  font-size: 12px;
  line-height: 20px;
  margin: 0 0 0 8px;
  font-weight: 600;
}
.box-komentar .isi-komentar .box-balas p.balasan {
  position: relative;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.all-balasan-komentar {
  overflow: hidden;
}
.all-balasan-komentar.active {
  display: block;
}
.box-komentar a.click-balasan {
  cursor: pointer;
}
.box-komentar .box-balasan {
  display: none;
  width: 100%;
  min-height: auto;
  overflow: hidden;
}
.box-komentar .box-balasan.active {
  display: block;
}
.box-komentar a.click-input-balasan {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-komentar .box-input-balasan {
  display: none;
  width: 100%;
  min-height: auto;
  overflow: hidden;
}
.box-komentar .box-input-balasan.active {
  display: block;
}
/*chat*/
.all-box-chat .barchat {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #fff;
  margin: 0;
  padding: 8px;
  box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.2);
  height: 55px;
}
.barchat .element-box textarea.element-area {
  padding: 4px !important;
  height: 40px;
  font-size: 12px;
  line-height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px 0 0 4px !important;
  background: #f8f8f8 !important;
}
.textarea-chat {
  min-height: 10px !important;
  height: 50px;
  overflow: auto;
}
.chatbox {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: auto;
  padding: 0 39px 0 0;
  position: relative;
}
.chatbox .send-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 4px 4px 0 !important;
  background: #f8f8f8 !important;
}
/*chat*/
.all-box-chat {
  position: relative;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #fff;
  height: auto;
  margin: 0 auto;
  max-width: 800px;
  background: #070c16;
}
.all-box-chat .box-chat-inside {
  overflow-y: scroll;
  height: 375px;
  padding-bottom: 70px;
}
box-chat-inside::-webkit-scrollbar {
  width: 6px;
  background: #ccc;
  border-radius: 0 6px 6px 0;
}
box-chat-inside::-webkit-scrollbar-track {
  border-radius: 0 6px 6px 0;
}
box-chat-inside::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 4px;
}
box-chat-inside::-webkit-scrollbar:horizontal {
  height: 6px;
}
box-chat-inside::-webkit-scrollbar:vertical {
  width: 6px;
}
/*row-col*/
.grid-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(auto, auto);
  gap: 32px 24px;
  width: 100%;
  margin-bottom: 32px;
}
.grid-col.row2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col.row3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col.row4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col.row5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-col.row6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-col.row7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid-col.row8 {
  grid-template-columns: repeat(8, 1fr);
}
.grid-col.row9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid-col.row10 {
  grid-template-columns: repeat(10, 1fr);
}
.grid-col.row11 {
  grid-template-columns: repeat(11, 1fr);
}
.grid-col.row12 {
  grid-template-columns: repeat(12, 1fr);
}
.grid-col.gap8 {
  gap: 16px 8px;
}
.grid-col.gap16 {
  gap: 24px 16px;
}
.grid-col.gap24 {
  gap: 32px 24px;
}
.grid-col.gap24 {
  gap: 40px 32px;
}
.grid-col.gap8-all {
  gap: 8px;
}
.grid-col.gap16-all {
  gap: 16px;
}
.grid-col.gap24-all {
  gap: 24px;
}
.grid-col.gap32-all {
  gap: 32px;
}
.grid-big {
  display: grid;
  grid-template-columns: 3fr 2fr 1fr 4fr;
  grid-template-rows: repeat(auto, auto);
  gap: 32px 24px;
  width: 100%;
  margin-bottom: 32px;
}
/*cover top*/
.main_cover {
  width: 100%;
  height: auto;
  position: relative;
  background: url("../images/bg_info.jpg") top center no-repeat;
  height: auto;
  background-size: cover;
  margin-top: -7px;
}
.main_cover .top_cover {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(9, 39, 113, 0.8);
  padding: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_cover .top_cover .cover_in {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.cover_in .parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}
.cover_in h1.title {
  font-size: 3rem;
  font-weight: 900;
}
.cover_in .parent .box-avatar .avatar {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  margin-bottom: 12px;
  background: #dfecfa;
}
.cover_in .parent .box-avatar .avatar img {
  width: 46px;
  height: 46px;
}
.cover_in .parent .div1 {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  border: 1px solid #9ecaf2;
  padding: 32px 40px;
  border-radius: 20px;
  background: rgba(9, 39, 113, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cover_in .parent .box-avatar .avatar {
  width: 90px;
  height: 90px;
  margin-bottom: 0;
}
.cover_in .parent .box-avatar .avatar img {
  width: 70px;
  height: 70px;
}
.cover_in .parent .box-avatar .text-avatar h4 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.cover_in .parent .box-avatar .text-avatar {
  padding-left: 16px;
}
.cover_in .parent .div2 {
  grid-column: span 2 / span 2;
  grid-column-start: 4;
  border: 1px solid #9ecaf2;
  padding: 24px;
  border-radius: 24px;
  background: rgba(9, 39, 113, 0.8);
}

.cover_in .parent .div3 {
  grid-column: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 2;
  border: 1px solid #9ecaf2;
  padding: 24px;
  border-radius: 24px;
  background: rgba(9, 39, 113, 0.8);
}

.cover_in .parent .div4 {
  grid-column-start: 5;
  grid-row-start: 2;
  border: 1px solid #9ecaf2;
  padding: 24px;
  border-radius: 24px;
  background: rgba(9, 39, 113, 0.8);
}
.main_cover img {
  width: 100%;
  height: auto;
}
.i_publik {
  background: #c5def8;
  padding: 46px 0;
}
h2.title_kanal {
  font-size: 2rem;
}
.i_publik .box-avatar {
  padding: 24px 16px;
  border: 1px solid #f1f7fd;
  background: #dfecfa;
  border-radius: 16px;
  box-shadow: 1px 9px 12px rgba(9, 39, 113, 0.2);
}
.i_publik h3.title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.i_publik .box-avatar.xxl-avatar .avatar {
  background: var(--yellow);
  margin-bottom: 12px;
}
.i_publik .box-avatar.xxl-avatar .avatar {
  height: 100px;
  width: 100px;
  border: 5px solid var(--white);
}
.i_publik .box-avatar.xxl-avatar .avatar img {
  height: 56px;
}
.box_survey {
  background: #f4f4f4;
  padding: 46px 0;
}
.box-rate {
  position: relative;
}

.box-rate .item-rate {
  height: auto;
  padding-left: 0;
  position: relative;
  margin: 16px 0;
}

.box-rate .item-rate p.num {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 4px 0;
  color: var(--blue);
  font-weight: 600;
}

.box-rate .item-rate .track {
  height: 20px;
  width: 100%;
  background: #ffffff;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #cccccc;
}

.box-rate .item-rate .track .inside-track {
  height: 20px;
  width: auto;
  background: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.circle-box {
  background: var(--blue);
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}

.circle-box .circle-inside {
  width: 168px;
  height: 168px;
  padding: 32px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: #dfecfa;
  border-radius: 50%;
  flex-direction: column;
  border: 8px solid #f9f9f9;
}

.circle-box .circle-inside h2.num {
  margin: 0 auto;
  font-size: 40px;
  line-height: 45px;
  text-align: center;
}

.circle-box .circle-inside .box-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.circle-box .circle-inside .box-stars i {
  margin: 0 4px;
  font-size: 20px;
  color: #ccc;
}

.circle-box .circle-inside .box-stars i.yellow {
  color: #f0bd0c !important;
}

/*rating*/
.box-rating {
  padding: 16px;
  background: #fafafa;
  overflow: hidden;
}

.box-rating h4.title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.success-box {
  margin: 4px 0;
  font-size: 12px;
}

.success-box > div {
  vertical-align: top;
  display: inline-block;
  color: #757575;
}
.box_program {
  padding: 46px 24px;
  background: var(--primary) url("../images/bg_line.png") top center repeat;
  margin: 0;
}
.box_berita {
  padding: 46px;
}
.col_berita {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}
.col_berita .card-box .text-card {
  padding: 16px;
}
.col_berita .card-box .text-card h2 {
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 700;
}
.col_berita .card-box .text-card h4 {
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 700;
}
.col_berita .berita1 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita2 {
  grid-column-start: 3;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita3 {
  grid-column-start: 4;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita4 {
  grid-column-start: 3;
  grid-row-start: 2;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita5 {
  grid-column-start: 4;
  grid-row-start: 2;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita6 {
  grid-row-start: 3;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita7 {
  grid-row-start: 3;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita8 {
  grid-row-start: 3;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.col_berita .berita9 {
  grid-row-start: 3;
  background: var(--white);
  box-shadow: 0px 8px 20px rgba(119, 119, 119, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_app {
  width: 100%;
  padding: 24px 0;
  background: #fffe87;
}
.banner_app .banner_in {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.banner_app .banner_in .text_banner {
  height: auto;
}
.banner_app .img_banner {
  width: auto;
  height: 400px;
  flex: 0 0 400px;
}
.banner_app .img_banner img {
  width: auto;
  height: 400px;
}
.box_lainnya {
  background: #c5def8;
  padding: 46px 16px;
}
.box_sosmed {
  padding: 46px 0;
}
.box_sosmed .sosmed_in {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
/*tab*/
#tab_container_01,
#tab_container_02 {
  overflow: hidden;
  border: 1px solid var(--soft-form);
  border-radius: 8px;
}
.tabs {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.tab {
  display: flex;
  padding: 12px 18px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--soft-form);
  border-right-width: 0;
  border-top-width: 0;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: var(--gray);
}
.tab .icon_x {
  fill: var(--gray);
}
.tab:first-child {
  border-left-width: 0;
}
.tab.active {
  border-bottom-color: var(--white);
  color: var(--blue);
}
.tab.active .icon_x {
  fill: var(--blue);
}
.block_all_tab {
  border-top-color: transparent;
}
.tab_content {
  display: none;
  padding: 10px;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.tab_content.active {
  display: block;
  opacity: 1;
}
.button_acc {
  border: unset;
  width: 46px;
  height: 46px;
  background: unset;
  position: fixed;
  bottom: 56px;
  right: 56px;
  z-index: 5;
  border-radius: 50%;
  box-shadow: 9px 20px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.button_acc img {
  width: auto;
  height: 56px;
}
.box_acc {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 56px;
  right: 56px;
  z-index: 4;
  border-radius: 16px;
  background: #dfecfa;
  width: 230px;
  height: auto;
  border: 1px solid var(--blue2);
  padding: 16px;
  box-shadow: 9px 20px 10px rgba(0, 0, 0, 0.2);
  display: none;
  opacity: 0;
  transition: opacity 1s;
  display: none;
}
.box_acc.show {
  display: flex;
  opacity: 1;
}
.box_acc p {
  margin: 0;
}
.inbox_btn {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
button.btn-icons {
  width: 100%;
  min-width: 40px;
  height: 40px;
  place-content: center;
  border: unset;
  background: var(--soft);
  border-radius: 4px;
  border: 1px solid var(--gray);
}
button.btn-icons.selected {
  border: 2px solid var(--blue);
}
ul.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inner {
  padding: 16px 72px 16px 40px;
  overflow: hidden;
  display: none;
  background: var(--white);
  border-top: 1px solid #eeeeee;
}
.inner p {
  font-size: 18px;
  line-height: 1.3;
}
ul.accordion li {
  margin: 12px 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid #eeeeee;
}
ul.accordion li a.toggle {
  width: 100%;
  display: block;
  color: var(--black);
  padding: 16px 66px 16px 16px;
  background: var(--white);
  transition: 0.3s ease;
  font-weight: 600;
  position: relative;
  font-size: 18px;
}
ul.accordion li a.toggle .arrows::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "\f107";
  font-family: "FontAwesome";
  border-radius: 4px;
  background: #f8f8f8;
}
ul.accordion li a.toggle .arrows.rotated::before {
  transform: rotate(180deg);
  background: var(--blue);
  color: var(--white);
}

ul.accordion.daftar li a.toggle .arrows::before {
  background: transparent;
}

.inner ul,
.innerol {
  margin: 0 0 30px 0;
  padding-left: 20px;
  list-style-position: inside;
  list-style-type: disc;
}
.inner ul li,
.inner ol li {
  font-size: 18px;
  line-height: 1.3;
  margin: 15px 0;
  padding-left: 5px;
  box-shadow: unset;
  border: unset;
  border-radius: unset;
}
.dasar_hukum {
  background: #ffffff;
}
.warning_kanal {
  background: var(--red);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}
.vm_parent {
  display: flex;
  justify-content: flex-end;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  position: relative;
}
.vm_parent .visi_box {
  background: var(--red);
  background: linear-gradient(
    319deg,
    rgba(136, 20, 24, 1) 0%,
    rgba(237, 28, 36, 1) 100%
  );
  padding: 32px;
  border-radius: 16px;
  color: var(--white);
  position: absolute;
  width: 40%;
  left: 0;
  z-index: 2;
  border: 6px solid var(--white);
  box-shadow: 1px 5px 12px rgba(0, 0, 0, 0.4);
}
.vm_parent .misi_box {
  background: var(--blue);
  background: linear-gradient(
    319deg,
    rgba(29, 42, 78, 1) 0%,
    rgba(45, 78, 162, 1) 100%
  );
  padding: 32px;
  border-radius: 16px;
  color: var(--white);
  position: relative;
  z-index: 1;
  width: 70%;
  padding-left: calc(10% + 32px);
  margin-top: 72px;
  border: 6px solid var(--white);
  box-shadow: 1px 5px 12px rgba(0, 0, 0, 0.4);
}
.vm_parent h2.title {
  font-size: 2.5rem;
  padding-bottom: 16px;
  margin-bottom: 12px;
  position: relative;
}
.vm_parent h2.title::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 6px;
  background: var(--white);
  bottom: 0;
  left: -32px;
  border-radius: 0 3px 3px 0;
}
.vm_parent .misi_box h2.title::before {
  left: calc(-32px + -10%);
  width: calc(140px + 10%);
}
/*table*/
.out-table {
  height: auto;
  overflow-y: auto;
}
.out-table::-webkit-scrollbar {
  width: 6px;
  background: #ccc;
  border-radius: 4px;
}
.out-table::-webkit-scrollbar-track {
  border-radius: 4px;
}
.out-table::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 4px;
}
.out-table::-webkit-scrollbar:horizontal {
  height: 6px;
}
.out-table::-webkit-scrollbar:vertical {
  width: 6px;
}
/* table */
table.rg-table {
  width: 100%;
  margin-bottom: 0.5em;
  font-size: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
table.rg-table tr {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: left;
  color: var(--black);
}
table.rg-table thead {
  border-bottom: 1px solid var(--soft-form);
  color: var(--black);
  border-top: 4px solid var(--soft-form);
}
table.rg-table thead.no_border {
  border: unset;
}
table.rg-table tr {
  border-bottom: 1px solid var(--soft-form);
  color: var(--black);
}
table.rg-table tr td {
  text-align: left;
}
table.rg-table tr td:first-child {
  text-align: left;
}
table.rg-table tr.highlight {
  background-color: #dcf1f0 !important;
}
table.rg-table.zebra tr:nth-child(even) {
  background-color: #f6f6f6;
}
table.rg-table th {
  font-weight: 600;
  padding: 12px 8px;
  color: var(--blue);
}
table.rg-table td {
  padding: 12px 8px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
table.rg-table .highlight td {
  font-weight: bold;
}
table.rg-table th.number,
td.number {
  text-align: right;
}
.struktur_parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.struktur_parent .div1 {
}
.struktur_parent .div2 {
  grid-column: span 3 / span 3;
}

.struktur_parent .div3 {
  grid-row-start: 2;
}

.struktur_parent .div4 {
  grid-row-start: 2;
}

.struktur_parent .div5 {
  grid-row-start: 2;
}

.struktur_parent .div6 {
  grid-row-start: 2;
}
.box_serta_merta .card-box.main_card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border: 1px solid var(--soft-form);
  padding: 32px;
  margin: 0 0 24px 0;
}
.box_serta_merta .card-box.main_card .img-card {
  grid-row-start: 1;
}
.box_serta_merta .card-box.main_card .text-card {
  grid-column: span 2 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.std_lay .card-box {
  position: relative;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.std_lay .card-box .img-card {
  width: 200px;
  height: 200px;
  border: 10px solid var(--blue2);
  background: #ebfeff;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}
.std_lay .card-box .img-card img {
  width: auto;
  height: 120px;
  position: relative;
}
.std_lay .card-box .text-card {
  background: var(--yellow);
  padding: 24px;
  border-radius: 0 0 14px 14px;
  height: 130px;
  margin-top: 24px;
  position: relative;
  overflow: unset;
  box-shadow: 1px 9px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.std_lay .card-box .text-card::before {
  content: "";
  height: 150px;
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  background: var(--blue);
  z-index: 1;
  border-radius: 16px 16px 0 0;
}
.std_lay .card-box:hover img {
  transform: scale(1.2);
}
.std_lay .card-box:hover .img-card {
  border-color: var(--yellow);
  transition: 0.3s ease-in-out;
}
.background_fixed {
  background: url("../images/bg-alat.jpg") top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.box_paper {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 1px 8px 32px rgba(0, 0, 0, 0.1);
  margin: 32px auto;
  border: 1px solid var(--soft-white);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.box_paper .logo_paper {
  height: auto;
  width: 100%;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 16px;
}
.box_paper .logo_paper img {
  height: 60px;
}
.box_formulir {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.select2-container {
  display: unset;
}
.select2-container .select2-selection--single {
  height: 40px;
  border-color: var(--soft-form);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
  border-color: var(--soft-form);
  font-size: 14px;
  color: var(--black);
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 40px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px;
  width: 38px;
}
.select2-container--default .select2-selection--single {
  border-radius: 4px;
  border-color: var(--soft-form);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #000 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
}
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-color: var(--black);
}
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-color: var(--black);
}
.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #000 transparent;
}
.select2-dropdown {
  border-color: var(--black);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--black);
  border-radius: 4px;
  height: 40px;
}
.bg-detail {
  background: #ffffff url("../images/bg_detail.svg") top right no-repeat;
  background-size: contain;
}
input.checkstyle[type="radio"] {
  display: none;
}

label {
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  cursor: pointer;
}

label p {
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

label img {
  height: 60px;
  width: 60px;
  transition-duration: 0.2s;
  filter: grayscale(1);
  opacity: 0.8;
  margin: 0 auto;
}

input.checkstyle:checked + label:before {
  transform: scale(2);
}

input.checkstyle:checked + label img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.2);
  transition-duration: 0.2s;
}
input.checkstyle:checked + label p {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
}
