/**
* Buttons
*/

.btn, button, input.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    font-family: 'DM Sans';
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--blue-hover);
    color: var(--white);
}

.btn:active {
    background-color: var(--blue-click);
    color: var(--white);
}

.btn-small {
    padding: 10px 20px;
}

.btn-white {
    background-color: var(--white);
    color: var(--blue);
}

.btn-bordered {
    border-radius: 6px;
    border: 2px solid #E8E8E8;
    background: #fff;
    color: var(--black);
}

.btn-text {
    background-color: transparent;
    color: var(--blue);
    font-size: 18px;
}

.btn-text:hover {
    background-color: transparent;
    color: var(--blue);
}

.btn-text:active {
    background-color: transparent;
    color: var(--blue);
}

.btn-arrow-right:after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('/bundles/certcommon/images/btn-arrow-right-blue.svg');
    background-repeat: no-repeat;
    background-position: 0 0;  
    background-size: 24px 24px;
    margin-left: 5px;     
}
