.navbar-nav > li.creditscore-menu a {
    border: 1px solid #ffffff;
    margin: 13px 0 0;
    padding: 5px 8px;
    text-transform: uppercase;
}

.navbar-nav > li.creditscore-menu a:after, .navbar-nav > li.creditscore-menu .child-main-menu {
    display: none;
}

/*pulse animation*/
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}
@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}
@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}
@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

.creditscore-menu::before {
    background-color: #116a9e;
    border-radius: 100%;
    content: "";
    width: 6px;
    height: 6px;
    top: 24px;
    left: 74px;
    position:absolute;
    z-index: 2;
}

.creditscore-menu a::before {
    box-shadow: 0 0 0 0 rgba(232, 232, 232, 0.7);
    border-radius: 100%;
    content:"";
    -webkit-animation: pulse 4.25s 2 cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 4.25s 2 cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 4.25s 2 cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 4.25s 2 cubic-bezier(0.66, 0, 0, 1);
    display: inline-block;
    border:2px solid #ffffff;
    width: 0px;
    height: 0px;
    top:10px;
    left:74px;
    position:absolute;
}