.button {
    background: none;
    border: 1px solid #0C28341A;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: box-shadow 0.5s ease;
    color: #0C2834;
    display: flex;
    align-items: center;
    box-shadow: none;
}

input[type=submit] {
    display: initial;
    width: 100%;
    padding: 10px;
    background: #24A670 !important;
    color: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

.button:hover {
    background: none;
    color: #0C2834;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

input[type=submit]:hover {
    border: none;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.button:focus {
    background: none;
    color: #0C2834;
    outline: solid 3px rgba(12, 40, 52, 0.1);
}

.btn-green, input[type=submit].btn-green {
    background-color: #24A670;
    color: #FFFFFF !important;
    border: none;
}

.btn-green:hover,
.btn-green:focus {
    background-color: #24A670;
}

input[type=submit]:focus {
    border: none;
    outline: solid 3px rgba(12, 40, 52, 0.1);
}

.btn-yellow {
    background-color: #F9BF4F;
    color: #FFFFFF !important;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: #F9BF4F;
}

.btn-blue-dark {
    background-color: #0F3765;
}

.btn-blue-dark:hover,
.btn-blue-dark:focus {
    background-color: #0F3765;
}

.btn-black, a.link-btn.btn-black {
    background-color: #1E293B;
    color: #FAFEFF !important;
}

.btn-black:hover,
.btn-black:focus {
    background-color: #1E293B;
}

a.link-btn.btn-blue-dark {
    color: #FAFEFF !important;
}

a.link-btn {
    display: inline-block;
    padding: 10px 20px;
    color: rgba(12, 40, 52, 1) !important;
    border-radius: 5px;
    transition: box-shadow 0.5s ease;
    line-height: initial;
    text-align: center;
}

a.link-btn:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

a.link-btn:focus {
    outline: solid 3px rgba(12, 40, 52, 0.1);
}

a.link-btn.chevron-right:after,
.button.chevron-right:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 14px;
    margin-left: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='15' viewBox='0 0 8 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 13.5L7 7.5L1 1.5' stroke='%230C2834' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: cover;
}

a.link-btn.btn-blue-dark.chevron-right:after {
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13L7 7L1 1" stroke="%23FAFEFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

a.link-btn.arrow-right:after,
.button.arrow-right:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 15px;
    background-image: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 8.5H15.5M15.5 8.5L8.5 1.5M15.5 8.5L8.5 15.5" stroke="%23FAFEFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: cover;
}
