.title,
.one_promo_coupon_code_head {
    color: white;
    font-size: 16px;
    display: contents;
    font-weight: bold;
}

.apex-promo {
    left: 33%;
    color: #e2af53;
    font-size: 20px;
    width: 360px;
    height: 90px;
    background: transparent;
    border-top: 5px solid rgba(168, 239, 255, .2);
    border-right: 5px solid rgba(168, 239, 255, .2);
    border-bottom: 5px solid rgba(168, 239, 255, .2);
    border-left: 5px solid rgba(168, 239, 255, .2);
    font-family: verdana;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    transform: translateX(-50%);
    top: 60px;
    padding: 8px 0 4px 0;
    margin: 0;
    text-align: center;
    z-index: 100;
    background-color: #13295b;
}


.apex-promo .apexrow {
    width: 10em;
    height: 4em;
    margin: 0 auto;
}

.apex-promo .apexrow > div {
    float: left;
    max-width: 2em;
    padding: 0;
    margin: 0;
}

.apex-promo small {
    font-size: 10px;
    text-transform: uppercase;
    position: relative;
    left: 0;
    top: -22px;
}


.apex-promo .days,
.hours,
.min,
.sec {
    position: relative;
    top: -8px;
}

.promosemi {
    position: relative;
    top: -6px;
}

.animetop {
    top: -5px;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 50%, #57677f, #a8efff);
    animation: animateTop 3s ease-in-out infinite;
    position: absolute;
    border-radius: 100vmax;
}

.animebottom {
    right: 0;
    bottom: -5px;
    height: 5px;
    background: linear-gradient(90deg, #57677f, #a8efff, transparent 50%);
    animation: animateBottom 3s ease-in-out infinite;
    position: absolute;
    border-radius: 100vmax;
}

.animeright {
    top: 0;
    right: -5px;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, transparent 30%, #57677f, #a8efff);
    animation: animateRight 3s linear infinite;
    position: absolute;
    border-radius: 100vmax;
}

.animeleft {
    left: -5px;
    bottom: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #57677f, #a8efff, transparent 70%);
    animation: animateLeft 3s ease-in-out infinite;
    position: absolute;
    border-radius: 100vmax;
}

@keyframes animateTop {
    25% {
        width: 100%;
        opacity: 1;
    }

    30%,
    100% {
        opacity: 0;
    }
}

@keyframes animateBottom {

    0%,
    50% {
        opacity: 0;
        width: 0;
    }

    75% {
        opacity: 1;
        width: 100%;
    }

    76%,
    100% {
        opacity: 0;
    }
}

@keyframes animateRight {

    0%,
    25% {
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
        height: 100%;
    }

    55%,
    100% {
        height: 100%;
        opacity: 0;
    }
}

@keyframes animateLeft {

    0%,
    75% {
        opacity: 0;
        bottom: 0;
        height: 0;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}