:root {
    --light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-body: #f8f9fa;
    --bg-card: #fdfdfd;
    --theme1: #326fca;
    --theme2: #2b65bd;
    --theme3: #065a82;
    --theme4: #1c7293;
    --theme5: #9eb3c2;
    --theme1-hover: #2b5eab;
    --theme2-hover: #1e4a8b;
    --theme3-hover: #043c56;
    --theme4-hover: #165872;
    --theme5-hover: #7d8a94;
    --text: #08100c;
    --light-primary: #8ecae6;
    --dark-primary: #023047;
    --blue-primary: #0484d6;
    --succes: #17cf8d;
    --danger: #b41c2b;
    --danger-hover: #631119;
    --border: #adadad;

    --gradient-top: linear-gradient(0deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-right: linear-gradient(90deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-bottom: linear-gradient(180deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-left: linear-gradient(270deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-top-right: linear-gradient(45deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-bottom-right: linear-gradient(135deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-top-left: linear-gradient(225deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-bottom-left: linear-gradient(315deg, #21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);
    --gradient-radial: radial-gradient(#21295cff, #1b3b6fff, #065a82ff, #1c7293ff, #9eb3c2ff);

    --yellow-primary: #ffb703;
    --orange-primary: #fb8500;
    --btn-text-light: #f8f9fa;
    --btn-text-dark: #023047;
    --btn-blue-primary: #0484d6;
    --btn-blue-primary-hover: #064d78;
    --btn-secondary: #ced1d2;
    --btn-secondary-hover: #838586;
}
* {
    box-sizing: border-box;
}
a {
    outline: none;
}
html {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    width: 100dvw;
    height: 100dvh;
    font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    background: var(--light);
}

/* margin & padding  */
.pr-mt-1 {margin-top: 1em;}
.pr-mb-1 {margin-bottom: 1em;}
.pr-ms-1 {margin-left: 1em;}
.pr-me-1 {margin-right: 1em;}
.pr-mt-2 {margin-top: 2em;}
.pr-mb-2 {margin-bottom: 2em;}
.pr-ms-2 {margin-left: 2em;}
.pr-me-2 {margin-right: 2em;}
.pr-m-auto {margin: auto;}
.pr-mh-auto {margin-left: auto;margin-right: auto;}
.pr-p-1 {padding: 1em;}
.pr-p-2 {padding: 2em;}
.pr-p-1 {padding: 1em;}
.pr-pl-1 {padding-left: 1em;}
.pr-pr-1 {padding-right: 1em;}
.pr-pt-1 {padding-top: 1em;}
.pr-pb-1 {padding-bottom: 1em;}
.pr-p-2 {padding: 2em;}
.pr-pl-2 {padding-left: 2em;}
.pr-pr-2 {padding-right: 2em;}
.pr-p-1-2 {padding: 1em 2em;}
.pr-fnt-8 {font-size: 0.8rem;}
.pr-fnt-9 {font-size: 0.9rem;}
.pr-fnt-12 {font-size: 1.2rem;}
.pr-fnt-15 {font-size: 1.5rem;}
.pr-fnt-300 {font-weight: 300;}
.pr-fnt-500 {font-weight: 500;}
.pr-fnt-600 {font-weight: 600;}
.pr-fnt-bold {font-weight: 700;}
.pr-lh-1 {line-height: 1.1;}

/* alignment & justify  */
.pr-jcc {justify-content: center;}
.pr-jcs {justify-content: start;}
.pr-jce {justify-content: end;}
.pr-jcsa {justify-content: space-around;}
.pr-jcsb {justify-content: space-between;}
.pr-jcse {justify-content: space-evenly;}
.pr-ais {align-items: start;}
.pr-aic {align-items: center;}
.pr-aist {align-items: stretch;}
.pr-aie {align-items: end;}
.pr-tas {text-align: start;}
.pr-tac {text-align: center;}
.pr-tae {text-align: end;}
.pr-g-1 {gap: 1em;}
.pr-g-2 {gap: 2em;}
.pr-g-3 {gap: 3em;}
.pr-g-01 {gap: 0 1em;}
.pr-br-1 {border-radius: 1rem;}
.pr-br-6 {border-radius: 6px;}
.pr-lh-12 {line-height: 1.3;}
.pr-dblock {display: block;}
.pr-dflex {display: flex;}
.pr-dflxwrap {flex-wrap: wrap;}
.pr-dflxgrow {flex-grow: 1;}
.pr-dflxcol {flex-direction: column;}
.pr-hide {display: none;}
.pr-w100 {width: 100%;box-sizing: border-box;}
.pr-w100dvw {width: 100dvw;}
.pr-cpointer {cursor: pointer;}

/* EFFECTS */
.pr-shadow {
    box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.1);
}
.pr-shadow-s {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1),
            0px 8px 16px rgba(0, 0, 0, 0.05);
}
.dborder {
    border: 1px solid var(--border);
}
.dline{
    border-bottom: 1px solid var(--border);
    margin: 0.5rem 0;
}
.status.true {
    color: #008000;
    font-size: 0.9em;
}
.status.false {
    color: #7b1111;
    font-size: 0.9em;
}
h1 {
    font-size:3rem;
    font-weight:700;
}
.pr-theme{
    color:var(--theme4);
    font-weight:500;
}
.overhidden{
    overflow: hidden;
}


/* BUTTON */
button {
    font-size: 1em;
    font-weight: 400;
    padding: 8px 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.btn {
    font-size: 1em;
    font-weight: 400;
    padding: 12px 24px 14px 24px;
    outline: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    width: min(200px, 100%);
}
.btn-shadow {
    box-shadow: 3px 3px 2px 0px #e2e2e2;
}
.btn-primary {
    background: var(--theme1);
    color: var(--light);
}
.btn-primary:hover {
    background: var(--theme1-hover);
    color: var(--btn-text-light);
}
.btn-secondary {
    background: var(--btn-secondary);
    color: var(--btn-text-dark);
}
.btn-secondary:hover {
    background: var(--btn-secondary-hover);
    color: var(--btn-text-light);
}
.btn-transparent {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--dark-primary);
    font-size:0.9em;
    width: min(250px, 100%);
    text-align: start;
    padding: 12px 24px 10px 24px;
    border-radius: 50px;
}
.btn-transparent:hover {
    background: var(--dark-primary);
    color: var(--btn-text-light);
}
.btn-trans-icon{
    font-size:1.3rem;
}
.btn-link {
    background: transparent;
    color: var(--btn-blue-primary-hover);
    text-decoration: none;
    padding: 0;
    box-shadow: none;
    font-size: 0.9em;
}
.btn-link:hover {
    text-decoration: underline;
    color: var(--dark-primary);
}
.pr-btn-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #7e7a7a;
    box-shadow: none;
}
.btn-menu {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    color: #7e7a7a;
    box-shadow: none;
}
.btn-menu:hover, .btn-menu:focus {
    color: var(--dark-primary);
}
.btn-submenu{
    background: transparent;
    border: 1px solid var(--theme3);
    color: var(--theme3);
    text-decoration: none;
    padding: 0.1rem 0;
    box-shadow: none;
    font-size: 1rem;
    font-weight:400;
    border-radius:6px;
    outline: none;
    width: 50px;

}
.btn-submenu:hover{
    color: var(--theme3-hover);
}
.btn-action{
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0.9em;
    box-shadow: none;
    padding: 0;
}
.btn-action:hover{
    color:var(--dark-primary);
}
.danger{
    color: var(--danger);
}
.danger:hover{
    color:var(--danger-hover);
}

/* FORM CONTROL */
p {
    font-size:0.9rem;
    line-height: 1.2;
    margin-top: 0.3rem;
}
.pr-divform {
    padding: 1rem;
    width: max(350px , 25%);
}
.pr-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    width: 100%;
    margin-top: 0.4em;
    margin-bottom: 1em;
}
label {
    font-weight: 400;
    font-size: 1rem;
}
.pr-label-width{
    width: min(270px, 100%);
}
.pr-input {
    font-size: 1.2em;
    font-weight: 500 !important;
    padding: 5px 10px;
    width: 280px;
    outline: none;
    background: #ffffff;
    color: #000000;
    border: 1px solid #afaaaa;
    border-radius: 5px;
    box-shadow: 3px 3px 2px 0px #e2e2e2;
    transition: 0.3s ease;
}

.pr-input:focus {
    background: #f1f8ff;
    border: 1px solid #5790ab;
    border-radius: 5px;
}
.pr-input::placeholder {
    color: #7e7a7a;
}
.pr-input-width{
    width: 250px!important;
}
.req:after {
    content:" *";
    color: red;
}
.pr-upCase{
    text-transform: uppercase;
}
input[type="checkbox"]{
    width: 1rem;
    height: 1rem;
    accent-color: var(--theme1);
}
input[type="radio"]{
    width: 1rem;
    height: 1rem;
    accent-color: var(--theme1);
}
input[type="date"]{
    padding: 3px 10px;
}

/* CONTAINER */
.pr-container {
    display: flex;
    justify-content: center;
    width: 100dvw;
    height: 100dvh;
    margin:0;
    padding: 0;
    overflow-x: hidden;
}
.pr-page {
    display: block;
    width: 90dvw;
}
.pr-content-page {
    display: block;
    margin-top: 5.8rem;
    width: 90dvw;
    background-color: var(--bg-light);
    border-radius:16px;
    padding: 0.5rem;
    overflow: auto;
}
.pr-card {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* HEADER - FOOTER  */
.pr-header {
    position:absolute;
    top:24px;
    left:0;
    width: 100dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.pr-header-area {
    width: 90dvw;
}

.pr-header-title {
    display: flex;
    align-items: center;
    font-weight:600;
    font-size:clamp(1.2rem, 2rem, 2.5rem);
    color: var(--text);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    gap:0.5rem;
}
.pr-header-left{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pr-header-right{
    font-size:1.3rem;
    color:#165872;
}
.pr-header-icon {
    width:2rem;
}
.pr-footer {
    position:absolute;
    display: flex;
    justify-content: center;
    bottom:0;
    width: 100dvw;
    padding-bottom: 3rem;
}
.pr-footer-area {
    width: 90dvw;
}
.pr-footer-text {
    font-weight:400;
    font-size:1rem;
    color: var(--text);
}
.pr-footer-socmed {
    display: flex;
    opacity: 60%;
    gap: 1rem;
    margin-top: 1.5rem;
}
.pr-socmed-icons {
    width:32px;
    height: 32px;
    cursor: pointer;
}
.pr-footer-socmed-light {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.pr-socmed-icons-light {
    width:30px;
    height: 30px;
    color:var(--bg-body);
    cursor: pointer;
}
.pr-socmed-icons:hover, .pr-socmed-icons-light:hover {
    scale:1.5;
    transition: all 0.3s;
}

/* HOME */
.pr-home {
    width: 100dvw;
    height: 100dvh;
    background-image: url('/../assets/img/infopremi-hero-image.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.pr-content-home {
    margin-top: 8rem;
    width: 90dvw;
}
.pr-home-title {
    width: 58dvw;
    line-height: 1.3;
    margin-bottom: 3rem;
}
.pr-home-offer {
    display: block;
}

/* LAYANAN */
.pr-layanan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pr-layanan-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    gap:1rem;
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
}
.pr-layanan-feature{
    width: 100dvw;
    height: 60dvh;
    background-image: url('/../assets/img/img-banner-1.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position:center;
    background-position-y:5.5rem;
    display: flex;
    justify-content: bottom;
    overflow: hidden;
}
.pr-layanan-prod {
    text-align: center;
    width:140px;
    padding: 0.5rem;
}
.pr-layanan-prod:hover {
    scale:1.2;
    cursor: pointer;
    transition: 0.5s;
}
.pr-layanan-prod-icon {
    width: 60px;
    text-align: center;
    margin: 0 auto;
}
.pr-layanan-prod-text {
    font-size : 0.9rem;
    font-weight:400;
    color:var(--text);
    text-align: center;
    line-height:120%;
}
/* PRODUCT MENU  */
.pr-menu-bar {
    position:absolute;
    top:24px;
    left:0;
    width: 100dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 249, 250,70%);
    padding: 0.6em 0;
    z-index: 99;
}
.pr-menu-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 90dvw;
}
.pr-menu-home-icon{
    width: 44px;
}
.pr-menu-home-icon:hover{
    border:1px solid  var(--theme2-hover);
    border-radius: 50%;
    padding: 0.3rem;
    scale:1.6;
    transition: all 0.1s;
}
.pr-menu-prod-icon{
    width: 32px;
}
.pr-menu-prod-icon:hover{
    border:1px solid  var(--theme2-hover);
    border-radius: 50%;
    padding: 0.3rem;
    scale:2;
    transition: all 0.1s;
}
.pr-menu-prod-icon-active{
    border:1px solid  var(--theme2-hover);
    border-radius: 50%;
    padding: 0.3rem;
    transition: all 0.1s;
}


/* PRODUCT PAGE  */
.pr-content-prod{
    display: block;
    margin: 0;
    margin-top: 5.8rem;
    width: 90dvw;
    background-color: var(--bg-light);
    border-radius:16px;
    padding: 0.5rem;
}
.pr-img-feature {
    width: 100%;
    height:360px;
    object-fit: cover;
    border-radius: 16px;
}
.pr-prod-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.pr-prod-icon {
    width: 1.8rem;
}
.pr-prod-text {
    font-size: 1.6rem;
    font-weight:600;
}
.pr-prod-row{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}
.pr-prod-col{
    display: block;
    width: calc(50% - 0.5rem);
    flex-grow:1;
}
.pr-prod-col-3{
    display: block;
    width: calc(30% - 0.5rem);
    flex-grow:1;
}
.pr-prod-detail{
    display: block;
    padding: 0.5rem;
    margin-top: 2rem;
    font-size:0.9rem;
    text-align: justify;
    overflow-x: hidden;
}

details {
    max-width: 100%;

	&[open] summary::after {
		rotate: -180deg;
	}

    summary {
    /* Override default "display: list-item" and position the summary text as well as the custom arrow icon */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    
    /* General styling */
    background-color: #c2dff3;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    margin-block-end: 0.5rem;
    padding: 0.75rem;
    font-size:1rem;
    
		/* Fallback code to hide standard marker, especially on Safari */
		&::marker,
		&::-webkit-details-marker {
			display: none;
		}
    
    &::after {
        /* CSS for chevron shape from https://css-shape.com/chevron/ */
        --shape-chevron-width: 1rem;
        --s: calc(var(--shape-chevron-width) / 4);

        /* Styling */
        content: "";
        aspect-ratio: 7/5;
        background: currentColor;
        clip-path: polygon(0 0, 0 var(--s), 50% 100%, 100% var(--s), 100% 0, 50% calc(100% - var(--s)));
        flex-shrink: 0;
        width: var(--shape-chevron-width);
        
        /* Animation */
                rotate: 0deg;
                transition: rotate 0.35s ease;
            }
    }
}

ul {
    width:100%;
    padding:0 0 0 1em;
    list-style: circle;
    overflow:hidden;/*establish margin clearance for li*/
}
li {
    margin:0.3rem;
    padding:.3rem;
    line-height: 1.2;
}
.pr-prod-sub{
    margin: 0.6rem;
}
.pr-prod-h2{
    padding: 0.8rem 0.6rem;
    background-color: #c2dff3;
    width: 100%;
    border-radius: 12px;
    font-size:1.2rem;
    font-weight:600;

}
.pr-step-div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.pr-step-circle{
    display: flex;
    flex-direction:column ;
    align-items: center;
    justify-content: center;
    border:4px double var(--theme3-hover);
    background: #c2dff3;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    z-index: 1;
}
.pr-step-number{
    font-size:1.5rem;
    font-weight:700;
}
.pr-step-line{
    width: 100%;
    height: 2px;
    background-color: #064d78;
    margin-top: -24px;
    margin-bottom: 2rem;
}
.pr-prod-plan-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: min(250px, 50%);
    border:2px solid var(--theme3);
    border-radius:16px;
    padding: 1rem;
    padding-top: 0;
    flex-grow: 1;
}
.pr-prod-plan-travel-div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(250px, 50%);
    border:2px solid var(--theme3);
    border-radius:16px;
    padding: 1rem;
    padding-top: 0;
    flex-grow: 1;
}
.pr-prod-plan-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:80px;
    text-align: center;
    font-weight:500;
    font-size:1rem;
}
.pr-prod-plan-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size:0.8rem;
    font-weight:400;
    line-height:1.4;
    padding: 0.5rem 0 0.5rem 0;
    text-align: center;
    height: 150px;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}
.pr-prod-plan-travel-item{
    display: block;
    text-align: start;
    font-size:0.8rem;
    font-weight:400;
    padding: 0.5rem 0 0.5rem 0;
    line-height: 1;
}
.pr-prod-plan-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.5rem;
}
.pr-prod-sent{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    border:1px solid var(--theme3-hover);
    border-radius:16px;
    padding: 1rem;

}
.pr-prod-footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    margin: 2rem 0;
    background: var(--theme2-hover);
    color:var(--light);
}
.pr-prod-request{
    display: flex;
    align-items: center;
    gap:0.75rem;
    width: 100%;
}
.pr-prod-request-icon{
    font-size:1rem;
    width: 16px;
}
.pr-prod-request-item{
    font-size:0.9rem;
}
/* INFO .pr-page */
.pr-infopage {
    position:absolute;
    top:7rem;
    width: 100dvw;
    height: calc(100dvh - 9rem);
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.pr-infopage-content{
    display: block;
    width:96dvw;
    height: calc(100dvh - 9rem);
    overflow-y: auto;
}
.pr-infopage-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap:0.3rem;
    padding: 0.6rem 0.3rem;
    border-radius:0.5rem;
    background-color: #c2dff3;
}
.pr-infopage-icon {
    width: 2.2rem;
}
.pr-infopage-title {
    font-size: 1.3rem;
    font-weight:500;
}
.pr-infopage-form{
    display: block;
    height: max(calc(100dvh - 13rem), fit-content);
    width: 285px;
    line-height: 1.8;
    padding: 0.5rem;
    overflow-y: auto;
}
.pr-infopage-left{
    display: block;
    width: max(250px , 20%);
    line-height: 1.8;
    padding: 0.5rem;
    overflow-y: auto;
}
.pr-infopage-right{
    display: block;
    width: max(250px , 20%);
    line-height: 1.8;
    padding: 0.5rem;
    overflow-y: auto;
}
.pr-infopage-center{
    display: block;
    width: 57%;
    line-height: 1.8;
    padding: 0.5rem;
    overflow-y: auto;
}
.pr-infopage-plan{
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.5rem ;
    font-weight:500;
    border-radius:4px;
    background-color: #efeff2;
}
.pr-infosmart-left{
    display: block;
    width: max(330px , 20%);
    line-height: 1.8;
    padding: 0.5rem;
    padding-bottom: 2rem;
    overflow-y: auto;
}
.pr-infosmart-center {
    display: block;
    width: max(750px,42%);
    line-height: 1.8;
    padding: 0.5rem;
    overflow-y: auto;
}
.pr-infosmart-right{
    display: block;
    width: max(330px , 20%);
    line-height: 1.8;
    padding: 0.5rem;
    overflow-y: auto;
}
.pr-divtable{
    display: block;
    width: 100%;
    margin: 1rem 0;
    padding: 0 0.5rem;
    overflow: auto;
}
.pr-table{
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1px;
    font-size:0.9rem;
}
.pr-table th {
    background-color: #e0ecff;
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem;
    text-align: left;
}
.pr-table td {
    color: var(--text);
    font-weight: 400;
    padding: 0.3rem;
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
}

/* RADIO BUTTON  */
.icon-radio-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px 0px 12px;
    border:1px solid var(--theme3);
    border-radius: 12px;
    cursor: pointer;
    background: var(--light);
    transition: 0.25s ease;
    width: 100px;
    height:110px;
    text-align: center;
}

.icon-radio-btn .icon {
    font-size: 26px;
}

.icon-radio-btn.active {
    border-color: #2563eb; /* biru */
    background: #e0ecff;
}

.icon-radio-btn:hover {
    background: #eaeaea;
}
.checkmark {
    font-size: 1.4rem;
    font-weight:500;
    color: var(--theme3-hover);
    margin-top:-0.3em;
}


/* CHECKBOX GROUP  */
.icon-checkbox-group {
    display: block;
    margin-top: 0.5rem;
    width: 100%;
    line-height:2;
}

.icon-checkbox-btn {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    font-size:0.9rem;
    font-weight:500;
    padding: 0.2rem 0.6rem;
    margin: 0.3rem 0 0.3rem 0;
    color: var(--theme4);
    outline: none;
    border:none;
    border-radius:50px;
    cursor: pointer;
    transition: all .2s ease;
    /* border:1px solid var(--theme3-hover); */
}
.icon-checkbox-btn .icon {
    font-size: 14px;
    font-weight: bold;
}

.icon-checkbox-btn:hover {
    background: #eaeaea;
}

.icon-checkbox-btn.active {
    background: #e0ecff;
    /* box-shadow: 0 1px 6px rgba(101, 130, 193, 0.4); */
    font-weight: bold;
    color:#000000;
}

.icon-checkbox-btn.active:hover {
    background: #e0ecff;
}


/* MEDIA QUERY  */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .pr-home{
        background-position: bottom;
    }
    h1{
        font-size:1.6rem;
    }
    .pr-content-home {
        margin-top: 7rem;
    }
    .pr-home-title{
        width: 70dvw;
    }
    .pr-layanan-feature{
        height: 380px;
    }
    .pr-prod-col, .pr-prod-col-3{
        width: 100%;
    }
    .btn-transparent, .btn{
        width: 100%;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .pr-home{
        background-position: bottom;
    }
    h1{
        font-size:1.8rem;
    }
    .pr-home-title{
        width: 62dvw;
    }
    .pr-layanan-feature{
        height: 380px;
    }
    .pr-prod-col, .pr-prod-col-3{
        width: 100%;
    }
    .btn-transparent, .btn{
        width: 100%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .pr-home{
        background-position: bottom;
    }
    h1{
        font-size:2.4rem;
    }
    .pr-home-title{
        width: 75dvw;
    }
    .pr-prod-col, .pr-prod-col-3{
        width: 100%;
    }
    .btn-transparent, .btn{
        width: min(250px , 100%);
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .pr-home{
        background-position: right;
    }
    h1 {
    font-size:2.6rem;
    }
    .pr-home-title{
        width: 65dvw;
    }
    .pr-prod-col{
        width: calc(50% - 0.5rem);
    }
    .pr-prod-col-3{
        width: calc(30% - 0.5rem);
    }
    .btn-transparent, .btn{
        width: min(250px , 100%);
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    h1 {
    font-size:3rem;
    }
    .pr-home-title{
        width: 58dvw;
    }
    .btn-transparent, .btn{
        width: min(250px , 100%);
    }
}

/* ANIMATION */
.scale-up-center {
	-webkit-animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


@-webkit-keyframes scale-up-center {
0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
}
    100% {
    -webkit-transform: scale(1);
            transform: scale(1);
}
}
@keyframes scale-up-center {
    0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
}
    100% {
    -webkit-transform: scale(1);
            transform: scale(1);
}
}



/* LOADING  */
.box-abs {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    top: calc(50dvh - 25px);
    left: calc(50dvw - 25px);
    z-index: 99;
}

.lds-roller,
.lds-roller div,
.lds-roller div:after {
    box-sizing: border-box;
}
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7.2px;
    height: 7.2px;
    border-radius: 50%;
    background: currentColor;
    margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 62.62742px;
    left: 62.62742px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 67.71281px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 70.90963px;
    left: 48.28221px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 70.90963px;
    left: 31.71779px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 67.71281px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 62.62742px;
    left: 17.37258px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12.28719px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* HTML: <div class="loader"></div> */
.loader {
    width: 60px;
    aspect-ratio: 4;
    background: radial-gradient(closest-side at calc(100%/6) 50%,#000 90%,#0000) 0/75% 100%;
    position: relative;
    animation: l15-0 1s infinite linear;
}
.loader::before {
    content:"";
    position: absolute;
    background: inherit;
    clip-path: inset(0 0 0 50%);
    inset: 0;
    animation: l15-1 0.5s infinite linear;
}
@keyframes l15-0 { 
    0%,49.99% {transform: scale(1)}
    50%,100%  {transform: scale(-1)} 
}
@keyframes l15-1 { 
    0%       {transform: translateX(-37.5%) rotate(0turn)} 
    80%,100% {transform: translateX(-37.5%) rotate(1turn)} 
}