.primary_color {
    color: rgb(2, 93, 114);
    font-weight: 700;
}
.secondary_color {
    color: rgb(154, 77, 10);
    font-weight: 700;
}
.form-control {
    width: 100%;
    display: block;
    padding: 15px;
    border: 1px solid #b5b5b5;
    outline: none;
    color: #000;
}
#support {
    border: 1px solid #d84242;
    border-radius: 10px;
    background: #eeeded;
    display: table;
}
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}