.lottery-main {
    display: grid;
    gap: 40px 0px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px 0px 40px 0px;
    grid-template-columns: repeat(4, auto);
    grid-column-gap: 2%;
	position: relative;
}

.lottery-main-body {
    border-radius: 10px;
    background-color: #714D11;
    width: 250px;
    height: 210px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.lottery-header {
    display: flex;
    justify-content: center;
    background: #50350B;
    border-radius: 10px 10px 25px 25px;
    padding: 10px;
    width: 100%;
    gap: 10px;
}

.lottery-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: left;
    width: fit-content;
}

.title-color {
    color: inherit;
    font-weight: 800;
}

.lottery-body {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lottery-body i {
    margin-right: 10px;
}

.lottery-body .ball-container {
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.lottery-main-body .lottery-more-button {
    width: 200px;
    border-radius: 25px;
    background: white;

    padding: 5px;
    position: absolute;
    bottom: -15px;
    left: 25px;
    border: 1px solid transparent;
}

.lottery-more-button-text {
    color: black
}

.lottery-main-body .lottery-more-button a {
    width: 100%;
}

.lottery-main-body .lottery-more-button a:hover {
    width: 100%;
    color: initial;
}