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

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

.slot-content{
    width: 80%;
}

.spacer{
    width: 12.5%;
}

.slot-left > .slot-single-top, .slot-left > .slot-single-bottom{

    border-left: none !important;
}

.slot-right > .slot-single-top, .slot-right > .slot-single-bottom{

    border-right: none !important;
}

.centered{
    text-align: center;
}

.slot-single-top{
    
    border-right: 2px solid #dbdbdb;
}
.slot-desc{
    color: gray;
}
.shadowed{
    box-shadow: 1px 2px 3px 1px rgba(0,0,0,0.35);

}
.slot-single-bottom{

    border-right: 2px solid #3155a4;
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.slot-img{
    max-width: 70%;
    max-height: 100%;
    margin-bottom: 2rem;
}

@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;
    }
}