@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Trebuchet MS, sans-serif;
}

body{
    background: orangered;
    padding: 0 20px;
}

a{
	text-decoration:none !important;
}

.wrapper{
    max-width: 550px;
    margin-top: 3%;
    margin-right: auto;
    margin-left: auto;
}

.wrapper .search-input{
    position: relative;
    background: #ffff;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input{
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
}

.search-input .icon{
    height: 55px;
    width: 55px;
    line-height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: orangered;
    cursor: pointer;
}

.search-input .autocom-box{
    padding: 0px;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
}

.search-input.active .autocom-box{
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li{
    list-style: none;
    padding: 5px 12px;
    width: 100%;
    cursor: default;
    border-radius: 3px;
    display: none;
}

.search-input.active .autocom-box li{
    display: block;
}

.autocom-box li:hover{
    background: seashell;
}

.img{
    display: block;	
    margin-top: 125px;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    max-block-size: 25%;
}


.cardlist{
    background: white;
	padding-top:20px;
    max-width: 100%px;
    padding: 24px;
    border-radius: 15px;
	margin-top:1px;	
	margin-bottom:10px;	
	border:1px solid #fff;

}

.cardlist img{
	width:30px;
	height:40px;
	object-fit: scale-down;
	display: block;	
	float:left;
}

.card{
    background: white;
    max-width: 100%px;
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0px 20px 25px 15px rgba(0, 0, 0, 0.05),
                0px 40px 30px 15px rgba(0, 0, 0, 0.1);
	margin-top:30px;	
	margin-bottom:30px;	
	border:1px solid #fff;

}
.card_product-img{
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
    }

        .card_product-img::after{
            --orangered: hsl(12, 100%, 50%, 0.5);

            content: url(./images/whatsapp-svgrepo-com.svg);
            background: var(--orangered);
            position: absolute;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.25s ease;
            size: 25px;
        }
    .card_product-img:hover::after{ opacity: 1;}


        .card_product-img img{
            width: 100%;
            display: block;
        }
.card_body{
        padding: 3px 0;
        border-bottom: 1px solid orangered;
        margin-bottom: 1px;

    }
        .card_alamat {
            color: #000;
            font-size: 12px;
			padding-top:5px;
        }
        .card_title {
            color: orangered;
            font-size: 18px;
            font-weight: 700;
			margin-left:50px;
			margin-bottom:17px;
			padding-top:1px;
        }
		.card_title a{
			text-decoration:none;
        }

        .agent_op-hour {
            color: black;
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 23;
        }

        .clock {
            font-size: 18px;

        }
        .agent_details {
            color: black;
            line-height: 1.2;
            text-decoration: none
        }
            .agent_name{
                font-size: 18px;
                font-weight: bold;
            }

            .agent_location .agent_number{
                font-size: 18px;
            }
        

.button{
    text-align: center;
    margin: 10px;
    padding: 0;
    border-radius: 15px;
    cursor: pointer;
}

.btn{
    color: white;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid orangered;
    cursor: pointer;
    background: orangered;
    box-shadow: rgba(0, 0, 0, 0.05);
}

.logo_footer{
    align-self: center;
    margin-left: 35%;
    width: 100%;
    max-width: 75px;
}

.company{
    text-align: center;
    font-size: 10px;
    color: orangered;
    padding: 0;
    margin-bottom: 5px;
}
