@charset "utf-8";
@font-face {
        font-family: 'Poppins';
        src: url('../_poppins-cdnfonts/Poppins-Light.ttf'); /* Panggil file font Anda */
    }

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	background-color: #aee4ae;
}
button {
  all: unset; /* Menghapus semua gaya bawaan */
  text-decoration: none; /* Menghapus garis bawah teks */
  cursor: pointer; /* Menambahkan kursor pointer */
  /* Tambahkan properti gaya lain yang diinginkan di sini */
}
header {
	width: 100%;
	background: #6ddd69;
	height: 120px;
}
.header-logo {
	padding: 10px 0px 0px 10px;
	height: 80px;
	float: left;
}
.header-title {
	padding: 20px 0px 0px 5px;
	float: left;
}
.header-user {
	float: right;
	padding: 10px 10px;
}
.container {
	width: 100%;
	display:flex;
}
.cont-center {
	display: flex;
	justify-content:center;
}
.cont-saround {
	display: flex;
	justify-content:space-around;
}
.cont-sbetween {
	display: flex;
	justify-content:space-between;
}
.cont-30 {
	width: calc(33% - 10px);
	margin: 10px;
}
.cont-50 {
	width: calc(50% - 10px);
	margin: 10px;
}
.cont-60 {
	width: calc(65% - 10px);
	margin: 10px;
}
.content {
	width: calc(100% - 20px);
	padding: 10px;
}
.content-fit {
	width: calc(100% - 20px);
	padding: 10px;
	width:fit-content;
}
.radius-10 {
	border-radius: 10px;
}
input{
    width:auto;
    color: #000000;
	background-color: #cfe7cf;
    border: 1px solid #043f0b;
    border-radius: 5px;
    padding: 10px;
	margin: 5px;
}
input[type="file"] {
	border: none;
	background-color: #cfe7cf;
}
select{
    width:250px;
    padding: 10px;
	background-color: #cfe7cf;
    border: 1px solid #043f0b;
    color: #000000;
	border-radius: 5px;
	margin: 5px;
}
.img-round {
	width: 100px;
	height: 100px; 
	border-radius: 100%;
	object-fit:cover;
}
.img-box {
	width: 100px;
	height: 100px; 
	overflow: hidden;
	object-fit:cover;
}
.img-round-sm {
	width: 50px;
	height: 50px; 
	border-radius: 100%;
	object-fit:cover;
}
.img-box-sm {
	width: 50px;
	height: 50px; 
	object-fit:cover;
}
.btn {
	padding: 10px 20px 10px 20px;
	height: 50px;
	line-height:50px;
	border-radius: 10px;
	font-size:14px;
	text-align:center;
	text-decoration:none;
    box-shadow: 5 5 10px rgba(255,255,255,.3);
	margin:10px;
}
.btn-sm {
	padding: 3px 5px 3px 5px;
	height: 30px;
	line-height:30px;
	border-radius: 5px;
	font-size:14px;
	text-align:center;
	text-decoration:none;
    box-shadow: 5 5 10px rgba(255,255,255,.3);
	margin:5px;
}
.bg-merah {
	background-color: red;
	color: white;
	text-decoration: none;
}
.bg-hijau {
	background-color: green;
	color: white;
	text-decoration: none;
}
.bg-orange {
	background-color: orange;
}
.bg-pars {
	background-color: rgb(223, 100, 223);
}
.bg-cyan {
	background-color: rgb(104, 170, 231);
}
footer {
	width:100%;
	height:80px;
	display:flex;
	justify-content:center;
	background-color:#6ddd69;
	margin-top: 50px;
}
.footer_box {
	text-align:center;
}
.footer-logo {
	padding: 5px 5px 5px 5px;
	height: 70px;
	float: left;
}
.bersih {
	clear:both;
}

@media (min-width: 481px) and (max-width: 1200px) {
.cont-60 {
	width: calc(60% - 5px);
	padding:10px;
}
.cont-50 {
	width: calc(50% - 5px);
	padding:10px;
}
.cont-30 {
	width: calc(33% - 5px);
	padding:10px;
}
}

@media screen and (max-width: 480px) {
.header-title {
	width:fit-content ;
}
.container {
	display: block;
}
.cont-60 {
	width: calc(100% - 5px);
	display:block;
}
.cont-50 {
	width: calc(95% - 5px);
	display: block;
}
.cont-30 {
	width: calc(100% - 5px);
	display:block;
}

}