.users-wheel{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    background-color: #f5f5f5;
    border-radius: 50%;
    border: 10px solid red;
}

.subwheel{
    position: relative;
    height: 45px;
    width: 150px;
    background-color: red;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 25px;
    bottom: 40px;
}

.dashboard-card{
    margin: 0 15px 30px 15px;
    max-width: 225px;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    aspect-ratio: 1/1;
    background-color: #eee;
    box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.dashboard-card-link{
    text-decoration: none;
    color: black;
}

.dashboard-card-link:hover{
    color: red;
}

.disabled-form-text{
    background-color: #d4d4d4 !important;
    color: #6c6c6c !important;
    cursor: not-allowed;
}

.pay-container, .fiscalize-container, .print-container
{
    position: fixed;
    z-index: 99;
    width: 20vw;
    min-width: 280px;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    bottom: 50px;
    right: 50px;
    background-color: #272727;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
}
.highlight{
    background-color: #272727 !important;
}

.close-button{
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: #fff;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.export-form{
    width: 300px;
    height: fit-content;
    background-color: #f5f5f5;
    border-radius: 10px;
    border: 1px solid black;
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
}

.panel-membership-agreements-move-membership-form{
	display: flex;
    flex-direction: row;
    justify-content: space-between
}

.panel-membership-agreements-move-membership-form input[type="number"]{
    color: black;
    font-weight: 700;
    width: 65% !important;
    height: 30px;
    border-radius: 5px !important;
}

.panel-membership-agreements-move-membership-form button{
    color: black;
    font-weight: 700;
    width: 30% !important;
    background-color: red;
    border-radius: 5px;
    outline: none;
    border: none;
}

.submit_payment_button{
    transition: .5s;
}