
#slide-8 .centered-container{
    flex-direction: column;
    transform: scale(var(--scale-factor-loot));
    transform-origin: top center; 
}

#slide-8 .content{
    overflow: scroll;
}

#lootbox-button{
    margin: 0 15vh;
    font-weight: normal;
    font-size: 3vh;
    margin-bottom: 2vh;
    flex-direction: row;
    gap: 1vh;
    padding: 1vh 2vh;
    border: 0.4vh solid white;
    border-radius: 4vh;    
}

.button-text {
    white-space: nowrap; /* Prevent text wrapping */
}

.slot-icon{
    width: 3vh;
    height: auto;
}

.loot-category{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loot-category-title{
    font-size: 3vh;
    padding: 0.5vh 2vh;
    color: white;
    text-align: center;
    background: black;
    border: 0.4vh solid white;
    border-radius: 3vh;
    margin-bottom: 1.5vh;
}

.loot-count{
    background-color: white;
    font-size: 2vh;
    width: 3vh;
    height: 2.8vh;
    position: relative;
    top: -3vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.3vh solid black;
    padding: 0px;
    margin: 0px;
}

.loot-table-cell {
    display: table-cell;
    padding: 10px;
    text-align: center;
}
.loot-table-img {
    width: 100px; /* Adjust size as needed */
    height: auto;
    border: 0.3vh solid black;
}

.img-medallion{
    border-radius: 50%;
}

.img-background{
    width: 150px;   
}

.img-badge{
    border: none
    
}

@keyframes pulseBorder {
    0% {
        outline-width: 1vh;
        /* border-width: 0.5vh; */
    }
    50% {
        outline-width: 2vh;
        /* border-width: 1vh; */
    }
    100% {
        outline-width: 1vh;
        /* border-width: 0.5vh; */
    }
}

.slot-container-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 2vh;
    background: blueviolet;
    border-radius: 2vh;
    border: 0.5vh solid black;
    outline: 1vh solid gold;
    animation: pulseBorder 1.5s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    outline-style: ridge;
}

.slot-container-3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.slot {
    width: 150px;
    height: 150px;
    border: 7px solid black;
    border-style: outset;
    border-radius: 7.5px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    background: #fafafa;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4) inset;
}

.slot-title{
    font-size: 4vh;
    font-family: 'Belanosima';
    color: white;
    text-align: center;
    margin: 1vh;
    text-shadow: 0vh 0vh 1vh black;
}

.slot .symbols {
    position: absolute;
    top: 0;
    left: 0;
    transition: top 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slot .symbol {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 150px;
    height: 150px;
    font-size: 60px;
    line-height: 100px;
    text-align: center;
    align-items: center;
}

.winnings-div{
    padding-top: 1vh;
}

.slot-button-container{
    padding-top: 1vh;
    display: flex;
    flex-direction: row;
    max-width: 23vh;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slot-button {
    padding: 0.2vh 1.5vh;
    text-align: center;
    font-size: 2vh;
    border-radius: 2vh;
    transition: 0.3s ease;
    font-family: 'Belanosima';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.25vh;
    color: white;
    border: 0.2vh solid white;
    background-color: black;
}

button:hover {
    background-color: white;
    color: black;
    border: 0.2vh solid black;
}

.slot-img-medallion{
    border: 0.25vh solid black;
    border-radius: 50%;
    position: relative;
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.slot-img-badge{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(5px 5px 5px rgba(100, 100, 100, .3)) drop-shadow(-5px -5px 5px rgba(100, 100, 100, .3)) drop-shadow(-5px 5px 5px rgba(100, 100, 100, .3)) drop-shadow(5px -5px 5px rgba(100, 100, 100, .3));
}

.slot-img-background{
    border: 0.25vh solid black;
    border-radius: 1vh;
    position: relative;
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}