.btn {
    display: flex;
    align-items: center;
    font-weight: 500;
}

    .btn:not(.btn-sm):not(.btn-lg) {
        padding: 10px 15px;
        border-radius: 6px;
    }

@media (min-width: 720px) {
    .btn.btn-lg {
        min-width: 150px;
    }
}

@media (max-width: 720px) {
    .btn.btn-lg {
        min-width: 110px;
    }
}

.btn.btn-lg {
    height: 50px;
    font-size: 13px;
    border-radius: 6px;
    padding: 0px 20px;
    justify-content: center;
}

.btn.btn-success {
    background-color: #40DF9F;
    border-color: #40DF9F;
    color: #fff;
}

.btn.btn-primary {
    background-color: #6D26C6;
    border-color: #6D26C6;
    color: #fff;
}

.btn.btn-light {
    background-color: #fff;
    color: #8FA1AA;
    border-color: #E9ECEF;
}

.btn.with-icon i {
    margin-right: 10px;
}

.btn.with-icon.btn-light i {
    color: #000;
}
