@font-face {
    font-family: main-font;
    src: url(../font/AnekMalayalam-VariableFont_wdth\,wght.ttf);
}
body {
  font-family: "main-font", system-ui;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
.container{
margin: auto;
  width: 85%;
  padding: 10px;
}
.calculater h3{
    font-size: 30px;
}
.calculater-wraper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.calculater .title{
    border-left: 4px solid gray;
    padding-left: 6px;
}
.calculater p{
    font-size: 17px;
}
.calculater .input{
    width: 300px;
    margin: 2px 0px 20px 0px;
    padding: 10px;
    border-radius: 6px;
    border-style: groove;
    font-size: 17px;
}
.calculater .btn{
    width: 200px;
    border-radius: 6px;
    height: 40px;
    border-style: none;
}

.calculater .btn:hover{
    background-color: green;
    color: white;
    transition: ease-in-outs;
}
.calculater .result{
    width: 100%;
    margin: 15px;
    text-align: center;
    padding: 40px;
    color: green;
	/* background: linear-gradient(113deg, rgb(58, 140, 165) 0%, rgba(91,229,132,1) 100%); */
}
.calculater .title-zakat{
    margin-top: 50px;
    margin-bottom: 20px;
    max-width: 700px;
}
.calculater .title-zakat .title-text{
    text-align: center;
    line-height: 50px;

}
.animal-zakat{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.number-animal-wraper .card{
    align-items: center;
    margin: 4px 0px;
    transition: ease-in .30s;
}
.card:hover{
    background-color: green;
    color: white;

}
.card .card-title{
    margin: 8px 0px;
}
.input-price{
    text-align: center;
    margin-bottom: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}
.input-price p{
    padding: 0px 8px;
}
.instrution p{
    text-align: center;
}
.screen{
    text-align:center;
    margin: 30px;
    margin-top: 50px;
}

.answer{
    height: auto;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 36px;
}
.display{
    font-size: 30px;
}
/* animals */
.box-wraper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.box-wraper .card {
width: 100%;
max-width: 250px;
min-width: 250px;
height: 250px;
background-color: white;
margin: 10px;
border-radius: 10px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
font-size: 16px;
transition: all 0.3s ease;
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
cursor: pointer;
}

.box-wraper .icon {
margin: 0 auto;
width: 100%;
height: 80px;
max-width: 80px;
background: linear-gradient(90deg, #7eaaff 0%, #10B981 40%, rgba(161, 133, 133, 0.28) 60%);
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.8s ease;
background-position: 0px;
background-size: 200px;
}

.box-wraper .icon svg {
fill: white;
}

.box-wraper .card .title {
width: 100%;
margin: 0;
text-align: center;
margin-top: 30px;
color: black;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 4px;
}

.box-wraper .card .text {
width: 80%;
margin: 0 auto;
font-size: 13px;
text-align: center;
margin-top: 20px;
color: black;
font-weight: 200;
letter-spacing: 2px;
opacity: 0;
max-height: 0;
transition: all 0.3s ease;
}

.box-wraper .card:hover {
height: 270px;
}

.box-wraper .card:hover .text {
transition: all 0.3s ease;
opacity: 1;
max-height: 40px;
}

.box-wraper .card:hover .icon {
background-position: -120px;
transition: all 0.3s ease;
}

.box-wraper .card:hover .icon svg path {
fill: url('#gradientColor');
transition: all 0.3s ease;
}
@media (max-width:600px) {
    .box-wraper .card{
        max-width: 90%; 
        min-width: 0px;
        height: 200px;

    }
    .container{
        width: 98%;
    }

    .calculater h3{
        font-size: 20px;
    }
    .calculater .input{
        width: 250px;
        font-size: 16px;
    } 
    .calculater .title-zakat .title-text {
        font-size: 19px;
        line-height: 23px;
    }
    .answer{
        height: auto;
        padding: 12px;
        border-radius: 16px;
    }
    .answer .text{
        font-size: 18px;
    }
    .answer p {
        font-size: 12px;
    }

}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }
  table input{
    border: none;
    background: none;
  }
