.cljs h2.title {
    font-size: 18px;
    line-height: 32px;
    text-transform: capitalize;
    margin: 0 10px 0 0;
}

.cljs .card {
    flex: 1;
}

.cljs .card .card-body {
    padding: 24px;
    flex: 1;
}

.cljs .heading {
    background-color: #ebeff2;
    padding: 6px 11px;
    height: 32px;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
}

.cljs .heading .sub-title {
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
    font-weight: 500;
    color: #000;
    letter-spacing: 0;
    margin: 0;
}

.cljs .content-container {
    padding: 12px 16px;
    position: relative;
}

.cljs .note {
    font-size: 14px;
    font-weight: 500;
    color: var(--vp-gray-400);
}

.cljs .content {
    justify-content: space-between;
    align-items: flex-end;
}

.cljs .row {
    align-items: center;
    margin-bottom: 4px;
}

.cljs .btn-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
}

.cljs button.primary {
    background: #039BE5;
    color: #fff;
}

.cljs button.primary:hover {
    color: #fff;
    background: #29b6f6;
}

.cljs button {
    border: none;
    outline: none;
    background: none;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    cursor: pointer;
    min-height: 32px;
    min-width: 112px;
    padding: 8px 24px;
    border-radius: 2px;
    position: relative;
    transition: 0.3s ease;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cljs button[disabled] {
    cursor: not-allowed;
    color: #fff !important;
    background: #dae2e6 !important;
}

.cljs .notification {
    background-color: #b3e5fc;
    padding: 10px;
    color: #212931;
    display: block;
    max-width: 100%;
    font-size: 14px;
    font-weight: 500;
}

.cljs .error {
    background-color: #eb5757;
    padding: 10px;
    color: #212931;
    display: block;
    max-width: 100%;
    font-size: 14px;
    font-weight: 500;
}

