.h-24 {
    height: 24px !important;
}
.w-24 {
    width: 24px !important;
}
.slot-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #1e1e1e;
    height: 629px;
	margin-bottom: 1.5em;
}
.responsive-iframe {
    position: absolute;
    top: 0%;
    left: 0;
    margin: auto;
    bottom: 0;
    right: 0;
    width: 98%;
    height: 100%;
}
.slot-placeholder {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    left: 5px;
    background: #aeb0b3;
    position: absolute;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.slot-button {
    color: #1e1e1e!important;
    text-decoration: none!important;
    border-color: #37434d!important;
    box-shadow: none;
    padding: 10px 20px;
    border: 2px solid;
    border-radius: 7px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: #f0f0f0!important;
    z-index: 2;
}
.slot-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: transparent;
}
.slot-button-solid {
    background-color: #1e1e1e!important;
    color: #fff!important;
}
.slot-button:hover {
    background-color: #fff;
}
.slot-button:hover svg {
    fill: #1e1e1e!important;
}
.slot-button.slot-button-solid:hover {
    background-color: #1e1e1e!important;
    color: #fff!important;
    border-color: #37434d!important;
}
.slot-button.slot-button-solid:hover svg {
    fill: #fff!important;
}
.slot-bounce {
    animation: slotbounce .3s infinite alternate;
}
.slot-gamethumb {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    filter: blur(5px);
    cursor: pointer;
}
.slot-gamethumb:hover {
    transform: scale(1.05);
    transition: .3s ease-in all;
}
@keyframes slotbounce {
    to {
        transform: scale(1.1);
    }
}
.slot-button:disabled {
    opacity: .5;
}
@media only screen and (min-width: 767px) {
    .slot-gamethumb {
        max-width: 40%;
        width: 300px;
        height: auto;
        margin: 0 30px;
        border-radius: 30px;
        position: initial;
        filter: none;
    }
}