.checkout-box {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 2rem;
}

.frame {
    justify-content: center;
    align-items: center;
}

#supporters > a, .podium-position > a {
    color: white;
    text-decoration: none;
}

input[type=number] {
    width: auto;
    min-width: 5ch;
}

.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 20px 0;
    gap: 6rem;
}

.podium-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    width: 100px;
}

.first-place {
    order: 2;
    z-index: 3;
}

.second-place {
    order: 1;
    z-index: 2;
}

.third-place {
    order: 3;
    z-index: 1;
}

.podium-block {
    width: 100%;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #555;
}

.medal {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.gold {
    background: #FFD700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.silver {
    background: #C0C0C0;
    box-shadow: 0 0 5px rgba(192, 192, 192, 0.7);
}

.bronze {
    background: #CD7F32;
    box-shadow: 0 0 5px rgba(205, 127, 50, 0.7);
}

.box {
    position: relative;
}

#supporters .box, .podium-position .box {
    width: 200px;
    min-width: fit-content;
}
