.right {
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: 300px;
}

@media only screen and (max-width: 600px) {
    .right {
        margin-left: initial;
    }
}


/* app cards */

.ss-app-card-block-img {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.ss-app-card-block-img {
    display: grid;
    place-items: center;
    height: 100px;
}

.ss-app-card-block-img img {
    max-height: 100px;
    min-height: 100px;
    height: 100%;
}

.ss-app-card-block-title {
    font-weight: bold;
    height: 50px;
    color: #03234b;
    text-align: center;
}

.ss-app-card-block {
    width: 20%;
}

.ss-app-card-blocks {
    display: flex;
    flex-wrap: wrap;
}

.ss-app-card-block-list ul li::before {
    display: none;
}

.ss-app-card-block-list ul li {
    padding-left: 0;
    font-size: 14px;
}

.ss-app-card-block-list {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .ss-app-card-block {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .ss-app-card-block {
        width: 33%;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 1083px) {
    .ss-app-card-block {
        width: 20%;
        margin-bottom: 50px;
    }
}


/* apps cards end */

.ss-card {
    display: flex;
    margin-top: 25px;
    transition: all .3s ease;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

.ss-card:hover {
    border-color: rgba(2, 171, 245, .4);
    -webkit-box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    outline: 0;
}

.ss-card-left {
    background-color: #03243b;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: grid;
    place-items: center;
    text-align: center;
    min-width: 200px;
}

.ss-card-right {
    padding: 10px;
    padding-left: 20px;
    width: 100%;
}

.ss-card-title {
    font-weight: bold;
}

.ss-card-cta {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}

.st-link .st-link__icon--arrow-small,
a .st-link__icon--arrow-small {
    width: 6px;
    height: 15px;
}

@media only screen and (max-width: 600px) {
    .ss-card {
        display: grid;
    }
}


/* END LONG CARDS */


/* VIDEO MODAL */

.js-video-list-column a[data-reveal-id="videoModal"]::before {
    background: #3CB4E6;
    border: 2px solid #3CB4E6;
    border-radius: 50%;
    content: '';
    height: 54px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
    width: 54px;
    z-index: 2;
}

.js-video-list-column a[data-reveal-id="videoModal"]::after {
    border-bottom: 12px solid transparent;
    border-left: 20px solid #FFF;
    border-top: 12px solid transparent;
    content: '';
    height: 0;
    left: 51%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
    width: 0;
    z-index: 2;
}

.video-js .vjs-big-play-button {
    border: 2px solid #3CB4E6;
    background: #3CB4E6;
}

.video-js .vjs-big-play-button::before {
    border-left: 20px solid #FFFFFF;
}

.video-js .vjs-big-play-button:focus::before,
.video-js:hover .vjs-big-play-button::before {
    border-left-color: #FFF;
}

.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #3CB4E6;
    transition: all .3s ease;
}


/* VIDEO MODAL END */