.animation-card {
    height: 500px;
}

.animation-wrap {
    width: 100%;
    position: relative;
}

.animation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
}

.animation .customers,
.animation .supporters {
    display: flex;
    flex-direction: row;
}

.animation .customers img.avatar,
.animation .supporters img.avatar {
    width: 100%;
    border-radius: 50%;
}

.animation .customers-flex,
.animation .supporters-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 100%;
    width: fit-content;
    position: relative;
}

.animation .customers .title,
.animation .supporters .title {
    min-height: 100%;
    width: 40px;
    position: relative;
}


.animation .customers .title .text {
    color: white;
    position: absolute;
    width: max-content;
    transform-origin: 20px 21px;
    transform: rotate(-90deg) translateX(-50%);
    bottom: 50%;
    font-weight: bold;
    font-size: 26px;
}

.animation .supporters .title .text {
    color: white;
    position: absolute;
    width: max-content;
    transform-origin: 17px 24px;
    transform: rotate(90deg) translateX(-50%);
    top: 50%;
    font-weight: bold;
    font-size: 26px;
}


.animation .customers .title {
    background-color: #6699FF;
    left: 0;
}

.animation .supporters .title {
    background-color: #33CC99;
    right: 0;
}

.animation .supporters {
    align-items: flex-end;
}

.animation .gateway {
    width: 30%;
    min-height: 100%;
}

.animation .customer,
.animation .supporter {
    height: 90px;
    width: 90px;
    margin: 5px 30px;
    position: relative;
}

.animation .customer .messenger,
.animation .supporter .messenger {
    position: absolute;
    bottom: -10px;
}

.animation .supporter .messenger {
    right: 0;
}

.animation .customer .messenger img,
.animation .supporter .messenger img {
    width:40px;
    height: 40px;
    vertical-align: text-bottom;
    object-fit: contain;
}


.animation-wrap .animated {
    text-align: right;
    width: 50px;
    border-radius: 10px;
    height: 50px;
    color: white;

    box-shadow: 0 0 1px 3px rgba(0, 0, 0, 0.4);
    display: none;
    position: absolute;
}

.animation-wrap .animated.question {
    background-color: #6699FF;
}

.animation-wrap .animated.answer {
    background-color: #33CC99;
}


.animation-wrap .animated .material-icons {
    font-size: 49px;
}

.content-row {
    display: flex;
}

a.about-links {
    font-size: smaller;
    font-weight: normal;
    text-decoration: underline;
    color: #555;
}

.about-links i {
    color: #33cc99;
    font-size: 31px;
    vertical-align: middle;
    margin-right: 10px;
}

.about-links:hover i {
    color: #6699FF;
}

@media only screen and (max-width: 992px) {
    .content-row {
        display: block;
        font-size: 10px;
        line-height: 1.6;
    }

    .trial-row  {
        font-size: 10px;
        line-height: 1.4;
    }

    .content-row p {
        margin: 7px 0;
    }

    .animation-card {
        height: 250px;
    }

    .animation .customers .title,
    .animation .supporters .title {
        min-height: 100%;
        width: 25px;
        position: relative;
    }

    .animation .supporters .title .text {
        transform-origin: 13px 13px;
        font-size: 15px;
    }

    .animation .customers .title .text {
        transform-origin: 12px 13px;
        font-size: 15px;
    }

    .mobile-width {
        width: unset !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .animation .customer,
    .animation .supporter {
        height: 45px;
        width: 45px;
        margin: 5px 10px;
        position: relative;
    }

    .animation .customer .messenger img,
    .animation .supporter .messenger img {
        width:20px;
        height: 20px;
        vertical-align: text-bottom;
    }

    .animation-wrap .animated {
        width: 30px;
        border-radius: 5px;
        height: 30px;
    }

    .animation-wrap .animated .material-icons {
        font-size: 29px;
    }

}

/***************************************************************/

.pulse-blue {
    animation: pulse-shadow-blue 0.75s infinite;
}

@-webkit-keyframes pulse-shadow-blue {
    0%   { -webkit-box-shadow: 0 0 0 0 rgba(102,153,255, 1); }
    100% { -webkit-box-shadow: 0 0 0 10px rgba(102,153,255, 0);   }
}
@keyframes pulse-shadow-blue {
    0%   { -moz-box-shadow: 0 0 0 0 rgba(102,153,255, 1); box-shadow: 0 0 0 0 rgba(102,153,255, 1);  }
    100%  { -moz-box-shadow: 0 0 0 10px rgba(102,153,255, 0); box-shadow: 0 0 0 10px rgba(102,153,255, 0);}
}

/***************************************************************/

.pulse-green {
    animation: pulse-shadow-green 0.75s infinite;
}

@-webkit-keyframes pulse-shadow-green {
    0%   { -webkit-box-shadow: 0 0 0 0 rgba(51,204,153, 1); }
    100% { -webkit-box-shadow: 0 0 0 10px rgba(51,204,153, 0);   }
}
@keyframes pulse-shadow-green {
    0%   { -moz-box-shadow: 0 0 0 0 rgba(51,204,153, 1); box-shadow: 0 0 0 0 rgba(51,204,153, 1);  }
    100% { -moz-box-shadow: 0 0 0 10px rgba(51,204,153, 0); box-shadow: 0 0 0 10px rgba(51,204,153, 0);}
}