/* Make sure you use .module-single-button before every element of this module */

/* LIGHT MODE - DEFAULT */
.module-single-button {
    display: block;
    position: relative;
    padding: 4rem 0;
}

.module-single-button .module-single-button-btn {
    max-width: calc(33.33% - 18px);
    width: calc(33.33% - 18px);
    flex: 0 0 calc(33.33% - 18px);
    border: 1px solid #00a2ad;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 5px;
    background: #00a2ad;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1em;
    line-height: 1em;
    text-decoration: none;
    transition: all 0.3s;
}

.module-single-button .module-single-button-btn:hover {
    background: #ffffff;
    color: #00a2ad;
}