﻿.cms-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #0d323d;
    border-radius: 0;
    background: #0d323d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

    .cms-button:hover {
        background: #164b59;
        color: #ffffff;
    }

.cms-button-outline {
    background: transparent;
    color: #0d323d;
}

    .cms-button-outline:hover {
        background: #eef4f6;
        color: #0d323d;
    }
