#redirectModal .modal-body img {
    height: 45px;
}

#redirectModal div.modal-body div.col-2 {
    padding-top: 20px;
    padding-left: 0px;
}


.redirect-modal-body div, .redirect-modal-body img {
    margin-top: 20px;
}

.chevron-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    width: 100%;
}

.chevron {
    position: absolute;
    width: 2rem;
    height: 0.2rem;
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #2c3e50;
}

.chevron:before {
    transform: skewY(30deg);
}

.chevron:after {
    top: 9px;
    width: 50%;
    transform: skewY(-30deg);
}

@media (max-width: 767px) {
    #redirectModal .modal-body img {
        height: 36px;
    }

    #redirectModal div.modal-body div.col-2 {
        padding-top: 15px;
    }
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        transform: translateX(-0.5rem);
    }

    66.6% {
        opacity: 1;
        transform: translateX(2rem);
    }

    100% {
        opacity: 0;
        transform: translateX(3.5rem) scale(0.5);
    }
}