*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background: #3c5077;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup{
    width: 250px;
    background: #2E4272;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1); 
    text-align: center;
    padding: 0 30px 30px;
    color: #fff;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}
.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}
.popup img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.popup button{
    width: 60%;
    margin-top: 50px;
    padding: 10px 40px;
    background: #fff;
    /* color: #fff; */
    border: 0;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;    
}
.intRates{
    width: 350px;
    background: #2E4272;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1); 
    text-align: center;
    padding: 10 30px 30px;
    color: #fff;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}
.intRates-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}
table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    border-radius: 30px;
    border-color: #96b54e;
}
.table-promoters {
    border-collapse: collapse;
    width: 80%;
    font-size: 14px;
    font-weight: 200;
    border-radius: 40px;
    border-color: #96b54e;
    ;
}
/* .table-promoters th,td{
    border: 1px solid white;
} */
th, td {
    text-align: left;
    padding: 8px;
    font-family: 'poppins', sans-serif;
}
tr:nth-child(even) {
    /* background-color: #96b54e; */
    background-color: #fff;
    color: #000;
}
tr:nth-child(odd) {
    /* background-color: #96b54e; */
    background-color: #2E4272;
    color: white;
}	
.flex-item {
    color: #000;
    font-size: 18px;
    font-weight: 200;
    margin: 20px;
}
	
@media only screen and (max-width:700px){
    .open-popup{
        visibility: visible;
        top: 70%;
        transform: translate(-50%, -50%) scale(1);
    }
    .flex-item {
        color: #000;
        font-size: 10px;
        font-weight: 50;
        margin: 10px;
    }
    .table-promoters {
        border-collapse: collapse;
        width: 90%;
        font-size: 12px;
        font-weight: 100;
        border-radius: 30px;
    }
}