.slot-row {
    display: flex;
    margin: 3rem 0;
    gap: 3rem;
}


.slot-content {
    width: 80%;
}

.spacer {
    width: 12.5%;
}

.centered {
    text-align: center;
}

.shadowed {
    box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.35);

}

.slot-single-bottom {

    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.center-the-dialog {
    transform: translateY(20vh) !important;
}

.slot-img {
    max-width: 90%;
    width: 100%;
    max-height: 100%;
    margin: 3rem 0;
    transition: all 0.3s ease-in-out;
}

.modals-content {
    position: relative;
    background-color: #3155a4;
    background-clip: padding-box;
    border-radius: 16px;
    outline: 0;
    border: 1px solid rgba(255, 211, 109, 0.75);
}

.modals-footer {
    padding: 15px;
    text-align: center;
    color: white;
}

.modals-body {
    position: relative;
    padding: 15px 30px 0;
}

.modals-image {
    width: 100%;
}

.modals-header {
    text-align: right;
}

.modals-title {
    font-weight: 900;
    font-size: 20px;
}

.slot-single-hidden-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hidden-title {
    text-align: center;
    color: white;
    opacity: 0;
    cursor: pointer;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    transition: all 0.3s ease-in-out
}

.hidden-title .slightly-smaller {
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .slot-row {
        display: block;
    }

    .slot-content {
        margin-bottom: 4rem;
    }

    .slot-content-top {
        height: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .slot-single {
        width: 100%;
    }

    .slot-single-top {
        border-right: none;
    }

    .slot-single-bottom {
        margin-bottom: 2rem;
        border-right: none;
    }

    .slot-last>.slot-single-bottom:after {
        display: none !important;
    }
}

.cds-slot-top {
    display: flex;
    justify-content: center;
}