.icon-floating {
  position: fixed;
  bottom: 3%;
  right: 1%;
  z-index: 9999;
}

.icon-floating img {
  width: 150px;
}

/* FORM */

.periode{
	background:url('../peduliumkm/banner-periode.png'); 
	background-size:contain; 
	background-repeat:no-repeat; 
	max-width:80%; 
	min-height:600px; 
	margin:auto; 
	padding:100px 30px 30px; 
	font-size:24px; 
	color:#E6262B; 
	font-weight:bold;
	line-height: 1.35;
}

.periode b{
	font-family: 'BarlowBold';
}

.periode .cta{
	height: 50px;
}

.disclaimer{
	background:url('../peduliumkm/banner-disclaimer.png'); 
	background-size:contain; 
	background-repeat:no-repeat; 
	max-width:80%; 
	min-height:400px; 
	margin:auto;
	padding:100px 30px 30px; 
	font-size:24px; 
	color:#E6262B; 
	font-weight:bold;
	line-height: 1.35;
}

.register p{
	font-size: 16px;
}

.register li{
	font-size: 16px;
	margin-bottom: 10px;
}

.terms li{
	margin-bottom: 10px;
}

.custom-list a{
	color: #ed1c24;
	font-weight: bold;
}

.custom-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.custom-list > li {
    counter-increment: item;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.custom-list > li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;

    width: 25px;
    height: 25px;
    border-radius: 50%;

    background: #ed1c24;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;
}

.logo-umkm{
	width: 250px;
}

.step-header{
    margin:30px auto 20px;
    text-align:center;
}

.step-text{
    font-size:16px;
    font-weight:700;
    color:#ef2d2d;
    margin-bottom:12px;
    text-transform:uppercase;
}

.step-progress{
    display:flex;
    justify-content:center;
    gap:8px;
}

.step-item{
    width:70px;
    height:7px;
    background:#ffffff;
    border-radius:20px;
    transition:.3s;
}

.step-item.active{
    background:#ef2d2d;
}

.form-card{
    border-radius:22px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.btn{
	min-width: 220px;
    height: 50px;
    border-radius: 15px;
    background: #ef2d2d;
    border: none;
    font-weight: 700;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

#btnNext{
    min-width:220px;
    height:52px;
    border-radius:15px;
    background:#ef2d2d;
    border:none;
    font-weight:700;
    font-size:18px;
}

#btnPrev{
    min-width:220px;
    height:52px;
    border-radius:15px;
    border:2px solid #ef2d2d;
    color:#ef2d2d;
    background:#fff;
    font-weight:700;
	font-size:18px;
}

#btnSubmit{
    min-width:280px;
    height:52px;
    border-radius:15px;
    background:#ef2d2d;
    border:none;
    font-weight:700;
    font-size:18px;
}

.form-control,
.form-select{
    height:46px;
    border:1px solid #dcdcdc;
	font-size: 20px;
}

.form-control:focus,
.form-select:focus{
    border-color:#ef2d2d;
    box-shadow:none;
}

.form-label{
	font-weight: bold;
	font-size: 18px;
}

input[type=file]{
    padding:12px;
    border-radius:14px;
}

input::placeholder,
textarea::placeholder {
    color: #999;
    font-style: italic;
    font-size: 18px;
    opacity: 1; /* Firefox */
}

.input-icon{
    display:flex;
    align-items:center;
    border:2px solid #dddddd;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    height:46px;
}

.input-icon-text{
    width: 40px;
    margin-left: 4px;
    margin-right: 0px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    color:#ef2d2d;
    flex-shrink:0;
}

.input-icon .form-control{
    border:0;
    box-shadow:none;
    height:100%;
    font-size:18px;
    padding-left:10px;
	min-width: 250px;
}

.input-icon .form-control:focus{
    box-shadow:none;
}

.text-optional{
	color: #cfcfcf !important;
	font-weight: normal;
}

.option-group{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.option-group input[type=radio],
.option-group input[type=checkbox]{
    display:none;
}

.option-card{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;
    min-width:130px;
    height:46px;
    padding:0 18px;
    border:2px solid #dddddd;
    border-radius:10px;
    cursor:pointer;
    background:#fff;
    transition:.2s;
	font-size: 16px;
}

.option-card.platform{
	min-width:250px;
}

.option-card:hover{
    border-color:#ef2d2d;
}

.option-card .dot{
    width:20px;
    height:20px;
    border:2px solid #ef2d2d;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
    font-weight:bold;
    transition:.2s;
}

.option-card .dot::after{
    content:"✓";
    transform:scale(0);
    opacity:0;
    transition:.2s;
    line-height:1;
}

.option-group input:checked + .option-card{
    border-color:#ef2d2d;
}

.option-group input:checked + .option-card .dot{
    background:#ef2d2d;
}

.option-group input:checked + .option-card .dot::after{
    transform:scale(1);
    opacity:1;
}

.select-icon{
    position: relative;
}

.select-icon .form-select{
    border:0;
    box-shadow:none;
    height:64px;
    padding-left:10px;
    padding-right:60px;
    background-image:none;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
	outline: none;
	width: 100%;
	font-size: 18px;
}

.select-arrow{
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
    color:#ef2d2d;
    font-size:28px;
    line-height:1;
}

.upload-box{
    position:relative;
}

.upload-input{
    display:none;
}

.upload-label{
    width:100%;
    min-height:200px;
    border:2px solid #dddddd;
    border-radius:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.25s;
    background:#fff;
	padding: 10px 0 20px;
	margin-bottom: 15px;
}

.upload-icon{
    font-size:42px;
    color:#222;
    margin-bottom:12px;
}

.upload-title{
    font-weight:600;
    font-size:14px;
    color:#222;
	text-align: center;
}

.upload-info{
    color:#666;
    font-size:14px;
    margin-top:4px;
	text-align: center;
}

.upload-btn{
    margin-top:18px;
    padding:10px 28px;
    border:2px solid #dddddd;
    border-radius:14px;
    background:#fff;
    font-weight:600;
    transition:.2s;
}

.upload-label:hover .upload-btn{
    background:#ef2d2d;
    color:#fff;
    border-color:#ef2d2d;
}

.upload-filename{
    color:#ef2d2d;
    font-size:14px;
    font-weight:600;
    word-break:break-word;
    padding:0 20px;
    text-align:center;
}

.category-wrapper{
	border:2px solid #e5e5e5;
    border-radius:18px;
    padding:28px;
    background:#fff;
    display:grid;
    grid-template-columns:repeat(4, 210px);
    gap:20px;
    justify-content:center;
}

.category-card{
    width:210px;
    height:130px;
    border:2px solid #dddddd;
    border-radius:16px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    transition:.2s;
    position:relative;
    padding:20px;
}

.category-card input{
    display:none;
}

.category-icon{
    font-size:46px;
    color:#e53030;
    margin-bottom:14px;
}

.category-card span{
    font-size:14px;
    line-height:1.35;
	font-weight: bold;
}

.category-card:hover{
    border-color:#e53030;
}

.category-card:has(input:checked){
    border-color:#e53030;
    box-shadow:0 0 0 3px rgba(229,48,48,.08);
}

.category-card.active{
    border-color:#e53030;
    box-shadow:0 0 0 3px rgba(229,48,48,.08);
}

/* select2 */
.select2-container .select2-selection--single{
	height:42px !important;	
}

.select2-container--default .select2-selection--single .select2-selection__clear{
	display: none;
}

.select2-container--default .select2-selection--single{
	border: none !important; 
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
	font-size: 16px;
	line-height: 40px !important;
}


/* ACCORDION */

.faq-wrapper {
	max-width: 900px;
	margin: 30px auto;
}

.faq-item {
	margin-bottom: 12px;
	border: none !important;
	border-radius: 15px !important;
	overflow: hidden;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.faq-button {
	width: 100%;
	border: none;
	background: #fff;
	padding: 10px 20px 10px 16px;
	display: flex;
	align-items: center;
	cursor: pointer;
	min-height: 54px;
	outline: none !important;
}

.faq-button:hover,
.faq-button:focus {
	background: #fff;
	box-shadow: none;
	text-decoration: none;
	outline: none !important;
}

.faq-icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	background: #ed1c24;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	margin-right: 16px;
}

.faq-title {
	flex: 1;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.faq-arrow {
	color: #ed1c24;
	font-size: 22px;
	margin-left: 15px;
	transition: transform 0.25s ease;
}

.faq-button[aria-expanded="true"] .faq-arrow {
	transform: rotate(180deg);
}

.faq-content {
	background: #fff;
	padding: 5px 25px 18px 66px;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}


/* =========================
	RESULT
========================= */

.result a{
	color: #ed1c24;
}

.result a:hover{
	text-decoration: underline;
}

.business-wrapper {
	margin: 20px auto;
	padding: 15px;
	border: 2px solid #f2a35b;
	border-radius: 20px;
	background: rgba(255,255,255,.12);
}

.business-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 10px rgba(0,0,0,.12);
	border: none;
}

.red {
	color: #ed1c24;
}

.section-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

/* =========================
   PROFILE HEADER
========================= */

.profile-header {
	padding: 12px;
	margin-bottom: 20px;
}

.profile-info {
	padding: 5px 15px;
	margin-bottom: 10px;
}

.profile-label {
	display: inline-block;
	background: #ed1c24;
	color: #fff;
	padding: 6px 12px;
	border-radius: 7px;
	font-size: 14px;
	margin-bottom: 8px;
	font-weight: bold;
}

.profile-name {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.profile-location {
	font-size: 16px;
	margin-bottom: 12px;
}

.profile-location i {
	color: #ed1c24;
	margin-right: 4px;
	font-size: 18px;
}

.profile-category-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
}

.profile-category {
	display: inline-flex;
	align-items: center;
	border: 1px solid #f5a77b;
	border-radius: 7px;
	padding: 4px 10px;
	font-size: 12px;
}

.profile-category i {
	color: #ed1c24;
	font-size: 16px;
	margin-right: 7px;
}

.profile-image {
	height: 200px;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
}


/* =========================
   OWNER + BUSINESS PROFILE
========================= */

.owner-card {
	height: 250px;
	background: #ed1c24;
	color: #fff;
	padding: 15px;
	border-radius: 15px;
	box-shadow: 0 5px 10px rgba(0,0,0,.12);
}

.owner-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}

.owner-row {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 14px;
	word-break: break-all;
}

.owner-icon {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border-radius: 50%;
	background: #fff;
	color: #ed1c24;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 16px;
}

.business-profile-card {
	padding: 15px 20px;
	height: 250px;
}

.business-profile-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

.info-box {
	height: 55px;
	border: 1px solid #f5a77b;
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 5px 9px;
	margin-bottom: 10px;
}

.info-box-icon {
	color: #ed1c24;
	font-size: 24px;
	width: 30px;
	min-width: 30px;
	text-align: center;
}

.info-box-text {
	font-size: 14px;
	line-height: 1.4;
	margin-left: 15px;
}

.info-box-label {
	font-weight: 700;
	display: block;
}

.profile-divider {
	border-left: 1px solid #ed1c24;
	height: 105px;
	margin: 0 10px;
}


/* =========================
   INFORMATION CARDS
========================= */

.detail-card {
	height: 305px;
	padding: 15px;
}

.detail-title {
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #ed1c24;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.detail-title i {
	color: #ed1c24;
	margin-right: 5px;
}

.detail-content {
	font-size: 14px;
	line-height: 1.5;
}

.detail-content td{
	vertical-align: top;
}

.detail-row {
	margin-bottom: 10px;
	line-height: 1.3;
}

.detail-row strong {
	display: block;
	margin-bottom: 2px;
}

.detail-row i {
	color: #ed1c24;
	margin-right: 4px;
}

.detail-row label {
	width: 125px;
}

.detail-image {
	width: 100%;
	max-height: 200px;
	object-fit: cover;
	object-position: top;
	border-radius: 5px;
}

.link-platform{
	display:inline-flex; 
	align-items:flex-start; 
	max-width:100%;
}

.link-platform img{
	width:12px; 
	height:12px; 
	margin-right:8px; 
	flex-shrink:0; 
	margin-top:2px;
}

.link-platform span{
	display: inline-block;
    word-break: break-word;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 5px;
}


/* =========================
   BEST PRODUCT
========================= */

.best-product-section {
	margin-top: 20px;
	padding: 15px;
	background: rgba(255,255,255,.65);
	border-radius: 15px;
}

.best-product-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.best-product-star {
	color: #ed1c24;
	font-size: 40px;
	margin-right: 12px;
}

.best-product-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 2px;
}

.best-product-desc {
	font-size: 14px;
}


/* =========================
   PRODUCT CARD
========================= */

.product-card {
	background: #fff;
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 3px 7px rgba(0,0,0,.12);
	height: 150px;
}

.product-image {
	width: 100%;
	height: 100px;
	object-fit: cover;
	object-position: top;
	border-radius: 8px;
}

.product-name {
	font-size: 14px;
	font-weight: 700;
	margin-top: 8px;
	margin-bottom: 15px;
	line-height: 1.2;
}

.product-brand {
	font-size: 14px;
	margin-bottom: 15px;
}

.product-label {
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 3px;
}

.product-thumbnail {
    cursor: pointer;
    transition: .2s;
}

.product-thumbnail:hover {
    opacity: .8;
}

.certificate {
	height: 20px;
	border: 1px solid #eee;
	border-radius: 5px;
	display: flex;
	align-items: center;
	padding: 3px 5px;
	margin-bottom: 8px;
	font-size: 12px;
	color: #aaa;
}

.certificate i {
	color: #ed1c24;
	margin-left: auto;
}

/* footer */

.footer-wrapper {
    margin: 15px 0;
    padding: 15px;
}

.footer-card {
    min-height: 170px;
    background: url('../peduliumkm/bg-thankyou-result.png');
	background-size: cover;
    border: 3px solid;
    border-color: #f3a15e;
    border-radius: 45px;
    display: flex;
    align-items: center;
    padding: 20px 30px;
}

.footer-submission {
    padding-left: 15px;
}

.footer-label {
    font-size: 14px;
    color: #111;
}

.footer-value {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.footer-date-label {
    margin-top: 25px;
}


/* error required */

.input-icon .is-invalid {
	background-color: rgba(220, 53, 69, 0.08) !important;
}

.category-card .is-invalid {
	background-color: rgba(220, 53, 69, 0.08) !important;
}

.select2-container.is-invalid .select2-selection {
	background-color: rgba(220, 53, 69, 0.02) !important;
}

.category-card.is-invalid {
	background-color: rgba(220, 53, 69, 0.08) !important;
}

.option-card.is-invalid {
	background-color: rgba(220, 53, 69, 0.08) !important;
}

.upload-label.is-invalid {
	background-color: rgba(220, 53, 69, 0.08) !important;
}

.req {
	color: #ef2d2d;
	font-weight: bold;
}



/* PDF */

.btn-pdf{
	min-width: auto;
    height: auto;
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 10px;
}

#pdfContent {
    margin: 0 auto;
	padding-bottom: 20px;
}

@media print {
    #btnSavePdf {
        display: none !important;
    }
}


@media(max-width:768px){
	
	.icon-floating img {
	  width: 100px;
	}	
	
    .step-item{
        width:40px;
    }
	
	.input-icon-text{
		width: 50px;
		font-size: 28px;
	}
	
	.btn{
		height: auto;
		white-space: normal;
	}

    #btnNext,
    #btnPrev{
        width:40%;
        min-width:40%;
        margin-bottom:10px;
		font-size: 14px;
    }
	
	#btnSubmit{
        width:55%;
        min-width:55%;
        margin-bottom:10px;
		font-size: 14px;
    }
	
	.category-wrapper{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
		padding:15px;
    }

    .category-card{
        width:100%;
		height: auto;
    }
	
	.option-card.platform {
		min-width: auto;
	}
	
	.periode{
		max-width: 100%;
		min-height: 250px;
		padding: 35px 15px 15px;
		font-size: 12px;
		line-height: 1;
	}
	
	.periode p{
		margin-bottom: 10px;
	}
	
	.periode .cta{
		height: 25px;
	}
	
	.disclaimer{
		max-width: 100%;
		min-height: 150px;
		padding: 35px 15px 15px;
		font-size: 12px;
		line-height: 1;
	}
	
	.disclaimer ul{
		padding-left: 20px;
	}
	
	.custom-list > li {
		padding-left: 30px;
		margin-bottom: 10px;
		line-height: 1.3;
	}
	
	.owner-card{
		height: auto;
	}
	
	.business-profile-card{
		height: auto;
	}
	
	.detail-card{
		height: auto;
	}
	
	.footer-card{
		display:block;
		padding: 10px 0;
		border-radius: 20px;
	}
	
	.footer-date-label {
		margin-top: 5px;
		margin-bottom: 15px;
	}

}