@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    height: 100vh;
    background-color: rgb(20 21 25);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container{
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
.card{
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 20px;
    padding: 20px !important;
    background-color: #151e27;
    color: white;
    overflow: hidden;
}
.submit-rating{
    background-color: #151e27;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icon{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #252e37;
    display: flex;
    justify-content: center;
    align-items: center;
}
.titel{
    font-size: 1.4rem;
    padding-top: 10px;
}
.description{
    font-size: 0.8rem;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.534);
    padding-top: 10px;
}
.rating{
    padding: 5px 0;
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.rating-number{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #252e37;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.582);
    transition: 0.3s;
}
.rating-number:hover , button:hover{
    background-color: white;
    color: black;
}
.active{
    background-color: #fc7613;
    color: black;
}
button{
    width: 100%;
    padding: 8px;
    border-radius: 15px;
    border: none;
    background-color: #fc7613;
    cursor: pointer;
}
.popup {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
    background-color: #151e27;
    padding: 20px;
    box-sizing: border-box;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.popup img{
    width: 120px;
}
.popup span{
    padding: 7px 25px;
    color: #fc7613;
    margin-top: 15px;
    font-size: 0.9rem;
    border-radius: 30px;
    background-color: #252e3783;
}
.popup .desc{
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.534);
    text-align: center;
}

