#root > div {
    padding: 20px;
}
#root > div > div:first-child {
    margin: 20px 0;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
    font-family: "Poppins";
    gap: 10px;
    flex-wrap: wrap;
}
#root > div > div:first-child > i {
    color: rgb(4 213 119);
}
#root > div > div:last-child {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
    font-family: "Poppins";
    gap: 10px;
    flex-wrap: wrap;
}
#root > div > div:last-child > button {
    text-decoration: none;
    color: #fff;
    max-width: 250px;
    width: 100%;
    border-radius: 12px;
    border: none;
    background: linear-gradient(1turn, #404d5f .8%, #121b23)
}
#root > div > div:last-child > button > .cashout {
    text-decoration: none;
    color: #fff;
    max-width: 250px;
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    border: none;
}
#root > div > div:last-child > button > .cashout > div {
    display: flex;
    width: 100%;
    border-radius: 12px;
    height: 100px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 3px solid transparent;
}
#root > div > div:last-child > button > .cashout > div:hover {
    border: 3px solid #04d577;
    transition: all 0.5s ease;
}
#root > div > div:last-child > button > .cashout > div > div > img {
    height: 48px;
    width: 48px;
}
#root > div > div:last-child > button > .cashout > div > div {
    display: flex;
    justify-content: center;
}
.modal {
    background-color: #19232d;
    width: 100%;   
    padding: 20px;
    margin: 0 auto;
    border-radius: 8px;
    width: 600px;
    height: 450px;
    top: calc(50% - 450px / 2);
    left: calc(50% - 600px / 2);
    position: fixed;
    z-index: 1001;
    display: none;
}
.modal > hr {
    margin: 5px 0px;
    width: 100%;
    height: 1px;
    border-style: none;
    background-color: #404d5f;
}
.modal > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal > div:first-child > div {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 20px;
}
.modal > div:first-child > svg {
    cursor: pointer;
}
.modal > form {
    margin: 20px 0px;
    color: #b2c2c8;
}
.modal > form > div{
    display: flex;
    gap: 5px;
    flex-direction: column;
    margin: 10px 0;
} 
.modal > form > div > p {
    display: flex;
}
.modal > form > div > span {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 12px;
    color: #60b0d8;
}
.modal> form > div:nth-child(4) {
    font-size: 14px;
    margin: 10px 0px;
    background-color: rgba(255, 166, 0, 0.682);
    border-radius: 8px;
    float: inline-start;
}
.modal> form > div:nth-child(4) > span {
    color: #fff;
    padding: 6px;
}
.modal > form > div > input{
    padding: 11px 15px;
    border-radius: 8px;
    border-style: none;
    background-color: rgba(0,0,0,.1);
    outline: none;
    color: white;
    width: 100%;
}
.modal > form > input {
    border-style: none;
    border-radius: 8px;
    background: rgb(4 213 119);
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.2s linear;
}
@media screen and (max-width: 560px) {
    #root > div > div:last-child > button {
        max-width: unset;
    }
    #root > div > div:last-child > button > .cashout {
        margin: 0 auto;
        max-width: unset;
    }
}
@media screen and (max-width: 1000px) {
    .modal {
        left: 0px;
        right: 0px;
        bottom: 0px;
        width: 100%;
    }
}