:root {
    --sow-sidebar-width: 226px;
    --sow-topbar-height: 68px;
    --sow-text: #171717;
    --sow-muted: #8e8e8e;
    --sow-border: #d9d9d9;
    --sow-sidebar: #383838;
    --sow-sidebar-line: #505050;
    --sow-shadow: 0 15px 28px rgba(0, 0, 0, 0.14);

    --msa-form-surface: #ffffff;
    --msa-form-muted-surface: #f5f5f5;
    --msa-form-text: #222222;
    --msa-form-muted: #737373;
    --msa-form-border: #d7d7d7;
    --msa-form-strong: #2e75f9;
    --msa-form-danger: #a32929;
    --msa-form-success: #2f6846;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    background: #ffffff;
    color: var(--sow-text);
    font-family: Arial, Tahoma, sans-serif;
    letter-spacing: 0;
}
.mt-10{
    margin-top: 10px;
}
.sow-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.sow-topbar {
    height: 68px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.sow-topbar__logo {
    color: black;
    font-size: 30px;
    text-decoration: none;
}

.sow-topbar__left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.sow-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sow-topbar__user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 16px;
}

.sow-topbar__user i {
    font-size: 22px;
}

.sow-register-btn {
    height: 36px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.sow-register-btn:hover {
    color: #fff;
    background: #333;
}

.sow-layout {
    flex: 1;
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.sow-sidebar {
    flex: 0 0 auto;
    width: var(--sow-sidebar-width);
    min-height: calc(100vh - var(--sow-topbar-height));
    background: var(--sow-sidebar);
    border-right: 1px solid var(--sow-sidebar-line);
    color: #ffffff;
    overflow: hidden;
}

.sow-sidebar.collapse-horizontal {
    height: auto;
}

.sow-sidebar__inner {
    width: var(--sow-sidebar-width);
    min-height: calc(100vh - var(--sow-topbar-height));
    background: var(--sow-sidebar);
    overflow-y: auto;
}

.sow-sidebar nav {
    border-top: 1px solid var(--sow-sidebar-line);
}

.sow-sidebar__item {
    height: 53px;
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 7px;
    padding: 0 18px 0 41px;
    border-bottom: 1px solid var(--sow-sidebar-line);
    color: #eeeeee;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
}

.sow-sidebar__item:hover,
.sow-sidebar__item:focus {
    color: #ffffff;
    background: #4c4c4c;
}

.sow-sidebar__item.is-active {
    background: #565656;
}

.sow-sidebar-backdrop {
    display: none;
}

.sow-main {
    flex: 1 1 auto;
    min-width: 0;
    padding: 18px 30px 70px 26px;
}


.footer-section {
    background: #efefef;
    padding: 56px 32px 62px;
}

.footer-section__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    color: #5a5a5a;
}

.footer-section h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #4c4c4c;
}

.footer-section p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.footer-section__contact p {
    margin-bottom: 6px;
}

.footer-section__contact span {
    display: inline-flex;
    width: 24px;
    color: #333333;
    font-weight: 700;
}


@media (max-width: 991.98px) {
    :root {
        --sow-sidebar-width: 226px;
    }

    .sow-layout {
        display: block;
        min-width: 0;
    }

    .sow-sidebar {
        position: fixed;
        top: var(--sow-topbar-height);
        left: 0;
        z-index: 1050;
        width: min(var(--sow-sidebar-width), calc(100vw - 48px));
        max-width: calc(100vw - 48px);
        height: calc(100vh - var(--sow-topbar-height));
        min-height: auto;
        border-right: 0;
        box-shadow: 8px 0 20px rgba(0, 0, 0, 0.25);
    }

    .sow-sidebar.collapse-horizontal {
        height: calc(100vh - var(--sow-topbar-height));
    }

    .sow-sidebar__inner {
        width: min(var(--sow-sidebar-width), calc(100vw - 48px));
        min-height: 100%;
        height: 100%;
    }

    .sow-sidebar__item {
        padding-left: 24px;
        padding-right: 18px;
    }

    .sow-sidebar-backdrop {
        display: block;
        position: fixed;
        top: var(--sow-topbar-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;
        background: rgba(0, 0, 0, 0.32);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    body.sow-sidebar-open {
        overflow: hidden;
    }

    body.sow-sidebar-open .sow-sidebar-backdrop,
    .sow-sidebar.show + .sow-sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .sow-main {
        padding: 18px 16px 48px;
    }
}

@media (max-width: 575.98px) {
    .sow-topbar {
        padding-left: 16px;
    }

    .footer-section__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/*budget-panel*/
.budget-panel {
    width: 100%;

    max-width: 100%;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: var(--sow-shadow);
}

.budget-panel__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.sow-primary-button {
    margin-right: 60px;
    width: 91px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    background: black;
    white-space: nowrap;
}


.budget-panel__title {
    flex: 0 0 auto;
    margin: 0 20px 0 20px;

    color: #000000;
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.budget-panel__actions > form {
    margin-left: auto;
    width: 520px;
    max-width: 520px;
    height: 40px;
    padding: 0 26px;

    display: flex;
    align-items: center;

    border: 3px solid #4f9cff;
    border-radius: 40px;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(79, 156, 255, 0.25);
}

.budget-panel__actions > form i {
    flex: 0 0 auto;
    font-size: 22px;
    margin-right: 12px;
    color: #111;
}

.budget-panel__actions > form input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.budget-panel__actions > form input:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
}

.budget-panel__actions > form input::placeholder {
    color: #c7c7c7;
}

.budget-panel__list {
    width: 100%;
    max-width: 100%;
    height: 337px;
    overflow-y: auto;
    border-radius: 4px;
    padding: 29px 20px 20px;
    background: #ffffff;
    scrollbar-color: #858585 #efefef;
    scrollbar-width: auto;
}

.budget-panel__list::-webkit-scrollbar {
    width: 16px;
}

.budget-panel__list::-webkit-scrollbar-track {
    background: #eeeeee;
}

.budget-panel__list::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background: #858585;
}

.budget-card {
    width: 100%;
    max-width: calc(100% - 48px);
    min-height: 51px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 17px;
    align-items: center;
    padding: 5px 8px 5px 14px;
    margin: 0 auto 25px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 4px 5px 9px rgba(0, 0, 0, 0.24);
}

.bookmark-back {
    fill: #C0DBFB;
}

.bookmark-front {
    fill: #CFB8FF;
}

.budget-card__body h3 {
    margin: 0;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
}

.budget-card__body p {
    margin: 0;
    color: #6850f9;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.budget-card__meta {
    padding: 2px 10px;
    min-height: 28px;
    background: #0000FF26;
    color: #6850f9;
    border: 1px solid #0000FF;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.budget-card__meta p {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
}


.budget-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.budget-card-link:hover,
.budget-card-link:focus,
.budget-card-link:active,
.budget-card-link:visited {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .budget-panel__actions {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 14px;
    }

    .budget-panel .sow-primary-button {
        width: 100%;
    }


    .budget-panel__list {

        height: auto;
        max-height: 337px;
        padding: 18px;
    }

    .budget-card {
        max-width: 100%;
        grid-template-columns: 44px 1fr;
    }

    .budget-card__body h3 {
        font-size: 28px;
    }

    .budget-card__meta {
        grid-column: 2;
        text-align: left;
    }
}

/*budget-panel*/


/*dashboard*/
.sow-dashboard {
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.summary-panel__top {
    width: 100%;
}

.summary-panel__top h1 {
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.summary-panel__actions {
    width: 400px;
    max-width: 100%;
}


.summary-panel__actions > form input::placeholder {
    color: #c7c7c7;
}

.summary-panel__actions > p {
    align-self: flex-end;

    margin: 28px 0 0;
    padding: 10px 15px;

    border-radius: 14px;
    background: #d8d4ff;
    color: #6850f9;

    font-size: 13px;
    font-weight: 500;
}

.add-sow-btn {
    min-width: 100px;
    height: 40px;
    border: 0;
    border-radius: 8px;

    background: linear-gradient(180deg, #6a5af9 0%, #4b008f 100%);
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 6px 14px rgba(75, 0, 143, 0.28);
    cursor: pointer;
}

.add-sow-btn:hover,
.add-sow-btn:focus {
    color: #ffffff;
    background: linear-gradient(180deg, #5b4be8 0%, #3b0075 100%);
}

.summary-panel__grid {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
}

.summary-card {
    min-height: 80px;
    padding: 22px 20px 12px;
    border-radius: 11px;
    color: #111111;
}

.summary-card h2 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 700;
}

.view-DeS {
    color: #702DFF;
    margin: 0 0 7px;
    font-size: 12px;
    font-weight: 800;
}

.summary-card strong {
    display: block;
    font-size: 24px;
    line-height: 1;
}


.summary-card.is-LightCyan {
    background: #dbecff;
}

.summary-card.is-red {
    background: #FFC5C5;
}


@media (max-width: 991.98px) {
    .summary-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary-panel__actions {
        width: 100%;
        margin-right: 0 !important;
    }

    .summary-panel__actions > form {
        height: 52px;
        padding: 0 18px;
        border-radius: 32px;
        box-shadow: 0 0 0 6px rgba(79, 156, 255, 0.25);
    }

    .summary-panel__actions > form i {
        font-size: 26px;
        margin-right: 16px;
    }

    .summary-panel__actions > form input {
        font-size: 16px;
    }

    .summary-panel__actions > p {
        align-self: stretch;
        text-align: center;

        margin-top: 16px;
        padding: 10px 16px;

        font-size: 16px;
        border-radius: 12px;
    }

    .sow-total-card {
        flex-direction: column;
        align-items: stretch !important;
        gap: 18px;
    }

    .sow-total-card > .d-flex {
        align-items: center;
    }

    .sow-total-card__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .summary-panel__top {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch !important;
        gap: 16px;
    }

    .summary-panel__top h1 {
        width: 100%;
        margin: 0;
        font-size: 24px;
        line-height: 1.3;
        white-space: normal;
    }

    .summary-panel__actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch !important;
        gap: 14px !important;
    }

    .summary-panel__grid {
        grid-template-columns: 1fr;
    }

    .ig-search-box {
        width: 100%;
        max-width: none;
        height: 52px;
        padding: 0 18px;
    }

    .ig-search-box i {
        font-size: 28px;
        margin-right: 18px;
        flex: 0 0 auto;
    }

    .ig-search-box input {
        width: 100%;
        min-width: 0;
        display: block;
        font-size: 18px;
    }

    .add-sow-btn {
        width: 100%;
        min-width: 0;
        height: 56px;
        font-size: 18px;
    }

    .sow-total-card__icon {
        width: 64px;
        height: 64px;
        margin-right: 18px;
    }

    .sow-total-card__icon i {
        font-size: 34px;
    }

    .sow-total-card__content h2 {
        font-size: 20px;
    }
}

/*dashboard*/

/*sow-table*/
.sow-table-panel {
    max-width: 100%;
    margin-top: 43px;
    border: 1px solid #dedede;
    border-radius: 24px;
    box-shadow: var(--sow-shadow);
    overflow: hidden;
    background: #ffffff;
}


.sow-table-panel__header {
    text-align: center;
    padding: 15px 0;
    margin-left: 0;
}

.sow-table-panel__header h2 {
    margin: 1px 0 0;
    color: #ff1919;
    font-size: 18px;
    font-weight: 600;
}

.sow-table-panel__frame {
    margin-left: 22px;
    width: 95%;
    overflow: auto;
    border-radius: 15px 15px 0 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.sow-table {
    width: 100%;
    min-width: 957px;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
}


.sow-table th {
    height: 42px;
    padding: 8px 12px;
    border-top: 1px solid #d5d5e0;
    border-bottom: 2px solid #d7d7d7;
    background: #f0f0fa;
    color: #333333;
    font-size: 13px;
    text-align: left;
    font-weight: 700;
}

.sow-table td {
    height: 30px;
    padding: 5px 12px;
    border-bottom: 1px solid #dddddd;
    color: #1b1b1b;
    font-size: 13px;
    vertical-align: middle;
}

.sow-table .is-late {
    color: #ff4d57;
    font-weight: 700;
}

.sow-action-btn {
    color: #ffffff;
    font-size: 14px;
    background: #000000;
}

.sow-action-btn:hover {
    background: #003f78;
    color: #ffffff;
}

.table-action {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: radial-gradient(circle, #c8c8c8 3px, transparent 4px) 0 0 / 10px 10px,
    radial-gradient(circle, #c8c8c8 3px, transparent 4px) 10px 0 / 10px 10px,
    radial-gradient(circle, #c8c8c8 3px, transparent 4px) 0 10px / 10px 10px,
    radial-gradient(circle, #c8c8c8 3px, transparent 4px) 10px 10px / 10px 10px;
}

@media (max-width: 767.98px) {
    .sow-table-panel__header {
        height: auto;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
    }
}

/*sow-table*/

/*ig-total*/
.total-panel__actions {
    width: 100%;
}

.total-panel__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.total-panel__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.total-panel__subtitle {
    font-size: 16px;
    color: #6850f9;
    margin: 0;
}

.budget-panel__total {
    width: 100%;
    max-width: 100%;
    height: 500px;
    overflow-y: auto;
    border-radius: 4px;
    padding: 29px 20px 20px;
    background: #ffffff;
    scrollbar-color: #858585 #efefef;
    scrollbar-width: auto;
}

/*ig-total*/

/*sow-total*/
.sow-total-panel {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px 0;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    box-shadow: var(--sow-shadow);
}

.sow-total-panel > .card {
    border-radius: 20px;
    background: #ffffff;
}

.sow-total-panel .card-header {
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 18px 14px;
    border-bottom: 0;
}

.sow-total-panel .card-header h5 {
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 700;
}

.sow-total-filter {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sow-total-filter .form-control {
    min-height: 34px;
}

.sow-total-table-frame {
    width: 100%;
    overflow: auto;
    border: 1px solid #aaaab7;
    border-radius: 12px 12px 0 0;
}

.sow-total-table {
    min-width: 980px;
    margin-bottom: 0;
}

.sow-total-table thead th {
    height: 52px;
    padding: 10px 12px;
    background: #f1f1fb;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.sow-total-table thead th a,
.sow-total-table thead th a:hover,
.sow-total-table thead th a:focus {
    color: #111111;
    text-decoration: none;
}

.sow-total-table tbody td {
    height: 56px;
    padding: 10px 12px;
    color: #222222;
    font-size: 14px;
    vertical-align: middle;
}

.sow-total-table tbody td:not(.text-end):not(.text-center) {
    text-align: left;
}

.sow-total-table .badge {
    min-width: 88px;
    padding: 7px 10px;
    font-size: 12px;
}

.badge-purple {
    background-color: #6f42c1;
    color: #fff;
}

.badge-orange {
    background-color: #fd7e14;
    color: #fff;
}

@media (max-width: 575.98px) {
    .sow-total-panel {
        border-radius: 16px;
        padding: 12px 10px 0;
    }

    .sow-total-panel .card-header {
        align-items: stretch !important;
        padding-right: 0;
        padding-left: 0;
    }

    .sow-total-filter,
    .sow-total-filter .form-control,
    .sow-total-filter .btn,
    .sow-total-filter .add-sow-btn {
        width: 100%;
    }
}

/*sow-total*/

/*receiver-dashboard*/
.receiver-dashboard {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 0 70px;
}

.receiver-dashboard__summary {
    max-width: 100%;
    margin: 0 auto;
}

.receiver-dashboard__summary h1,
.receiver-dashboard__toolbar h2 {
    margin: 0;
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 700;
}

.receiver-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 24px;
    margin-top: 20px;
}

.creator-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px 24px;
    margin-top: 20px;
}

.creator-summary-grid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.creator-summary-grid .summary-card,
.receiver-summary-card {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-radius: 10px;
    color: #0f0f0f;
}

.receiver-summary-card.is-blue {
    background: #d9ecff;
}

.receiver-summary-card.is-purple {
    background: #e9e3ff;
}

.receiver-summary-card.is-yellow {
    background: #fff4a8;
}

.receiver-summary-card.is-red {
    background: #ffebee;
}

.creator-summary-grid .summary-card h2,
.receiver-summary-card h2 {
    margin: 0;
    min-height: 38px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.creator-summary-grid .summary-card strong,
.receiver-summary-card strong {
    display: block;
    margin-top: 12px;
    font-size: 32px;
    line-height: 1;
}

.creator-summary-grid .summary-card .d-flex {
    min-height: 22px;
}

.receiver-summary-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: #2384ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.receiver-summary-card.is-purple .receiver-summary-card__link {
    color: #7735ff;
}

.receiver-summary-card.is-yellow .receiver-summary-card__link {
    color: #f2c400;
}

.receiver-dashboard__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: center;
    gap: 24px;
    margin: 46px 44px 24px;
}

.receiver-search {
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border: 3px solid #5aa9ff;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(83, 165, 255, 0.22);
}

.receiver-search i {
    margin-right: 18px;
    color: #222222;
    font-size: 20px;
}

.receiver-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #222222;
    font-size: 13px;
}

.receiver-search input::placeholder {
    color: #b8b8b8;
}

.receiver-contract-panel {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px 0;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    box-shadow: var(--sow-shadow);

}


.receiver-contract-panel__actions {
    display: flex;
    justify-content: flex-end;
    padding: 0 30px 10px;
}

.receiver-filter-button {
    min-width: 86px;
    height: 34px;
    border: 0;
    border-radius: 4px;
    background: #333333;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.receiver-table-frame {
    height: auto;
    overflow: visible;
    border: 1px solid #aaaab7;
    border-radius: 12px 12px 0 0;
}

.rejected-pagination {
    gap: 0;
}

.rejected-pagination .page-item {
    margin: 0 4px 0 0;
}

.rejected-pagination .page-link {
    min-width: 40px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #d7dbe3;
    border-radius: 8px;
    background: #f7f8fb;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none;
}

.rejected-pagination .page-item.active .page-link {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #ffffff;
}

.rejected-pagination .page-item.disabled .page-link {
    background: #f3f4f6;
    color: #b6bcc6;
}

.rejected-pagination .page-link:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}

.rejected-pagination .page-item.active .page-link:hover {
    color: #ffffff;
}

.receiver-contract-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.receiver-contract-table th {
    height: 66px;
    padding: 12px 14px;
    border-bottom: 1px solid #d8d8d8;
    background: #f1f1fb;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.receiver-contract-table td {
    height: 76px;
    padding: 12px 14px;
    border-bottom: 1px solid #d8d8d8;
    color: #222222;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.receiver-contract-table td:nth-child(3) {
    text-align: left;
}

.receiver-contract-table td:nth-child(3) strong,
.receiver-contract-table td:nth-child(3) span {
    display: block;
}

.receiver-contract-table td:nth-child(3) span {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
}

.receiver-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 30px;
    padding: 4px 12px;
    border: 1px solid #17b99f;
    border-radius: 4px;
    background: #a5eadf;
    color: #0f9f8a;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.receiver-row-menu {
    width: 48px;
    height: 30px;
    border: 1px solid #777777;
    border-radius: 4px;
    background: #eeeeee;
    color: #111111;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .receiver-dashboard__summary {
        max-width: none;
    }

    .receiver-summary-grid,
    .creator-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .receiver-dashboard__toolbar {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 575.98px) {
    .receiver-dashboard {
        padding-bottom: 36px;
    }

    .receiver-summary-grid,
    .creator-summary-grid {
        grid-template-columns: 1fr;
    }

    .receiver-dashboard__summary h1,
    .receiver-dashboard__toolbar h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .receiver-search {
        height: 44px;
    }

    .receiver-contract-panel {
        min-height: 0;
        border-radius: 16px;
    }

    .receiver-contract-panel__actions {
        padding-right: 0;
    }
}

/*receiver-dashboard*/

/*waiting-listing*/
.waiting-listing-panel {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px 0;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    box-shadow: var(--sow-shadow);
}

.waiting-listing-panel > .card {
    border-radius: 20px;
    background: #ffffff;
}

.waiting-listing-panel .card-header {
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 18px 14px;
    border-bottom: 0;
}

.waiting-listing-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.waiting-listing-heading h5 {
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 700;
}

.waiting-listing-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid #6f8cff;
    border-radius: 6px;
    background: #e5ebff;
    color: #2E75f9;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.waiting-listing-filter {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.waiting-listing-filter .form-control {
    min-height: 34px;
}

.waiting-listing-table-frame {
    width: 100%;
    overflow: auto;
    border: 1px solid #aaaab7;
    border-radius: 12px 12px 0 0;
}

.waiting-listing-table {
    min-width: 980px;
    margin-bottom: 0;
}

.waiting-listing-table thead th {
    height: 52px;
    padding: 10px 12px;
    background: #f1f1fb;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.waiting-listing-table thead th a,
.waiting-listing-table thead th a:hover,
.waiting-listing-table thead th a:focus {
    color: #111111;
    text-decoration: none;
}

.waiting-listing-table tbody td {
    height: 56px;
    padding: 10px 12px;
    color: #222222;
    font-size: 14px;
    vertical-align: middle;
}

.waiting-listing-table tbody td:not(.text-end):not(.text-center) {
    text-align: left;
}

.waiting-listing-table .badge {
    min-width: 88px;
    padding: 7px 10px;
    font-size: 12px;
}

@media (max-width: 575.98px) {
    .waiting-listing-panel {
        border-radius: 16px;
        padding: 12px 10px 0;
    }

    .waiting-listing-panel .card-header {
        align-items: stretch !important;
        padding-right: 0;
        padding-left: 0;
    }

    .waiting-listing-heading,
    .waiting-listing-filter,
    .waiting-listing-filter .form-control,
    .waiting-listing-filter .btn {
        width: 100%;
    }
}

/*waiting-listing*/

/*listing001*/

.listig-page {
    width: 100%;
}

.listig-card {
    width: 100%;
    min-height: 760px;
    padding: 48px 68px 56px 58px;
    border: 1px solid #e2e2e2;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.listig-card__header {
    margin-bottom: 24px;
}

.listig-card__header p {
    color: #6850f9;
}

.listig-card h1 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 30px;
    font-weight: 700;
}

.listig-card__code {
    color: #6c63ff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.listig__search.sow-search {
    width: 500px;
    height: 42px;
}

.listig-table-wrap {
    margin-left: 22px;
    width: 95%;
    overflow: auto;
    border-radius: 15px 15px 0 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.listig-table {
    width: 100%;
    min-width: 957px;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.listig-table thead th {
    height: 92px;
    padding: 20px 28px;
    border: 1px solid #d7d7df;
    border-left: 0;
    border-right: 0;
    background: #f2f2fb;
    color: #171717;
    font-size: 16px;
    font-weight: 700;
}

.listig-table tbody td {
    height: 98px;
    padding: 18px 28px;
    border-bottom: 1px solid #e7e7e7;
    color: #222222;
    font-size: 17px;
    font-weight: 600;
}

.ig-status {
    min-width: 126px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.ig-status.is-progress {
    background: #b8ebdb;
    color: #00a17d;
}

.ig-status.is-confirm {
    background: #ffc2c5;
    color: #ff0000;
}

.ig-status.is-submitted {
    background: #f3ffb9;
    color: #b7be38;
}

.ig-status.is-review {
    background: #e5def8;
    color: #a79bc9;
}

.ig-status.is-payment {
    background: #e2effd;
    color: #75a9ed;
}

.ig-status.is-done {
    background: #9fe3a6;
    color: #14b549;
}

.listig-action-btn {
    color: #ffffff;
    font-size: 14px;
    background: #000000;
}

.listig-action-btn:hover {
    background: #003f78;
    color: #ffffff;
}

.listig-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-top: 44px;
}

.listig-pagination a,
.listig-pagination span {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.listig-pagination a {
    background: #f4f4f4;
    border: 1px solid #ececec;
}

.listig-pagination a.is-active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .listig-card {
        padding: 32px 24px 40px;
    }

    .listig-card__header {
        flex-direction: column;
        gap: 22px;
    }

    .listig-card__search.sow-search {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .listig-card {
        border-radius: 18px;
        padding: 24px 16px 32px;
    }

    .listig-card h1 {
        font-size: 26px;
    }

    .listig-pagination {
        justify-content: center;
        gap: 8px;
    }
}

/*listing001*/

/*auth*/
.auth-body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Tahoma, sans-serif;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, rgba(180, 180, 180, 0.95) 70%),
    #b7b7b7;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.auth-card {
    width: 560px;
    min-height: 500px;
    padding: 48px 0;
    border: 6px solid #ffffff;
    border-radius: 32px;
    background: linear-gradient(180deg, #eeeeee 0%, #e5e5e5 45%, #f4f4f4 100%);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
}

.auth-card__inner {
    width: 340px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.auth-title {
    margin: 0 0 18px;
    text-align: center;
    color: #1f1f1f;
    font-size: 20px;
    font-weight: 800;
}

.auth-form {
    width: 100%;
}

.auth-field {
    margin-bottom: 20px;
}

.auth-field label {
    display: block;
    margin-bottom: 8px;
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 700;
}

.auth-field input,
.auth-password input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1.5px solid #777;
    border-radius: 14px;
    outline: none;
    background: transparent;
    color: #222;
    font-size: 15px;
    box-sizing: border-box;
}

.auth-field input::placeholder,
.auth-password input::placeholder {
    color: #bdbdbd;
}

.auth-field input:focus,
.auth-password input:focus {
    border-color: #222;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.auth-password {
    position: relative;
}

.auth-password input {
    padding-right: 44px;
}

.auth-password i {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #188fc5;
    font-size: 12px;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -2px 0 20px;
    gap: 16px;
}

.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 15px;
    cursor: pointer;
}

.auth-remember input {
    width: 20px;
    height: 16px;
    margin: 0;
}

.auth-link-muted {
    color: #7f7f7f;
    font-size: 15px;
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    height: 43px;
    border: 0;
    border-radius: 13px;
    background: #1f1f1f;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.auth-submit:hover {
    background: #000000;
}

.auth-switch {
    margin: 14px 0 0;
    text-align: center;
    color: #777;
    font-size: 15px;
}

.auth-switch a {
    margin-left: 8px;
    color: #1f1f1f;
    font-weight: 700;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .auth-page {
        padding: 20px 14px;
    }

    .auth-card {
        width: 100%;
        min-height: auto;
        padding: 38px 0 54px;
        border-width: 4px;
        border-radius: 26px;
    }

    .auth-card__inner {
        width: 100%;
        max-width: calc(100% - 44px);
    }

    .auth-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/*auth*/

/*mainform*/

body {
    background: #f7f8fc;
    font-family: "Prompt", sans-serif;
}

.home-content {
    margin-top: 120px;
    padding-left: 60px;
}

.home-content h1 {
    font-size: 58px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.home-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.home-image {
    text-align: center;
}

.home-image img {
    width: 100%;
    max-width: 620px;
    transition: .4s;
}

.home-image img:hover {
    transform: scale(1.03);
}

@media (max-width:768px){

    .home-content{
        margin-top:40px;
        padding:20px;
        text-align:center;
    }

    .home-content h1{
        font-size:42px;
    }

    .home-image{
        margin-top:40px;
    }


}

/*check*/
{
    padding: 26px 0 42px;
}

.sow-check-topbar {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 14px;
    color: #111;
}

.sow-check-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #111;
    text-decoration: none;
    transition: background-color .15s ease, transform .15s ease;
}

.sow-check-back:hover {
    background: rgba(0, 0, 0, .06);
    color: #111;
}

.sow-check-title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.sow-check-panel {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02), 0 18px 60px rgba(0, 0, 0, .04);
    min-height: 760px;
    padding: 72px 98px 74px;
}

.sow-check-body {
    max-width: 580px;
    margin: 0 auto;
}

.sow-check-headline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.sow-check-headline h2 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 500;
    color: #2c2c2c;
}

.sow-check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 30px;
    padding: 0 14px;
    border-radius: 5px;
    font-size: .88rem;
    line-height: 1;
    color: #6a53ff;
    background: #dbd3ff;
    border: 1px solid #8b78ff;
}

.sow-check-section-label {
    margin: 0 0 16px;
    font-size: .98rem;
    font-weight: 600;
    color: #111;
}

.sow-check-filebox {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 64px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.sow-check-file-icon {
    width: 78px;
    min-width: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efefef;
    color: #111;
    font-size: 1.7rem;
    border-right: 1px solid #d8d8d8;
}

.sow-check-file-name {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: .98rem;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sow-check-download {
    width: 76px;
    min-width: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a7a7a7;
    text-decoration: none;
    font-size: 1.75rem;
    border-left: 1px solid #d8d8d8;
    transition: color .15s ease, background-color .15s ease;
}

.sow-check-download:hover {
    color: #555;
    background: rgba(0, 0, 0, .03);
}

.sow-check-results {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.sow-check-result {
    min-width: 164px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.sow-check-result:hover {
    transform: translateY(-1px);
}

.sow-check-pass {
    background: #0db17f;
}

.sow-check-fail {
    background: #e50d0d;
}

.sow-check-result.active {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}

.sow-check-note {
    width: 100%;
    min-height: 92px;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    resize: vertical;
    padding: 10px 12px;
    font-size: .95rem;
}

.sow-check-submit-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.sow-check-submit {
    min-width: 160px;
    height: 44px;
    border-radius: 6px;
    background: #000;
    border-color: #000;
    color: #fff;
    font-weight: 500;
}

.sow-check-submit:hover {
    background: #111;
    border-color: #111;
}

.sow-check-empty {
    color: #888;
}

@media (max-width: 991.98px) {
    .sow-check-panel {
        padding: 36px 20px 40px;
        min-height: auto;
        border-radius: 22px;
    }

    .sow-check-results {
        gap: 14px;
    }

    .sow-check-result {
        min-width: 0;
        flex: 1 1 150px;
    }

    .sow-check-submit-wrap {
        justify-content: stretch;
    }

    .sow-check-submit {
        width: 100%;
    }
}
/*submission*/
.work-upload-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 8px 0 48px;
}

.work-upload-form {
    width: 100%;
}

.work-upload-grid {
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(280px, 1fr);
    gap: 72px;
    align-items: start;
}

.work-upload-heading {
    margin: 0 0 14px;
    color: #111;
    font-size: 20px;
    font-weight: 800;
}

.work-upload-drop {
    width: 100%;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 0;
    border-radius: 10px;
    background: #eef5ff;
    color: #a9a9a9;
    cursor: pointer;
}

.work-upload-drop.is-dragover {
    outline: 2px solid #86baff;
    outline-offset: -6px;
}

.work-upload-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #b8b8b8;
    font-size: 44px;
}

.work-upload-drop span {
    font-size: 18px;
    font-weight: 700;
}

.work-upload-button {
    width: 205px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #b8d8ff;
    border-radius: 4px;
    background: #fff;
    color: #3d93ff;
    font-size: 15px;
    font-weight: 800;
}

.work-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.work-selected-list {
    display: grid;
    gap: 0;
    width: min(100%, 360px);
}

.work-selected-title {
    margin-bottom: 10px;
}

.work-selected-row {
    height: 38px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto 20px;
    align-items: center;
    gap: 10px;
    padding: 0 8px 0 12px;
    border: 1px solid #d7d7d7;
    border-bottom: 0;
    background: #fff;
    font-size: 13px;
}

.work-selected-row:last-child {
    border-bottom: 1px solid #d7d7d7;
}

.work-selected-name {
    overflow: hidden;
    color: #111;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.work-selected-size {
    color: #aaa;
    font-weight: 700;
    white-space: nowrap;
}

.work-selected-remove {
    border: 0;
    background: transparent;
    color: #111;
    line-height: 1;
}

.work-note-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 162px;
    gap: 30px;
    align-items: end;
    margin-top: 44px;
}

.work-note-label {
    display: block;
    margin: 0 0 18px;
    color: #111;
    font-size: 18px;
    font-weight: 800;
}

.work-note-input {
    width: 100%;
    min-height: 96px;
    resize: vertical;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
    background: #fff;
}

.work-submit-button {
    width: 162px;
    height: 43px;
    border: 0;
    border-radius: 6px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .work-upload-grid,
    .work-note-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .work-selected-list {
        width: 100%;
    }

    .work-submit-button {
        width: 100%;
    }
}
/*submission*/

/*step*/
.step-card{
    background: #f7ecd9;
    border: 1px solid #e5c89c;
    border-radius: 14px;
    padding: 20px;
}

.step-title{
    color: #c77c11;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.step-title i{
    margin-right: 6px;
}

.step-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    padding-bottom:4px;
}

.step-header-empty{
    color: #9a6a16;
    font-size:13px;
    font-weight:700;
    width:36px;
    min-width:36px;
}

.step-header-item{
    flex:1;
    font-size:13px;
    font-weight:700;
    color:#9a6a16;
    padding-left:4px;
}

.step-header-remove{
    width:38px;
    min-width:38px;
}

.step-row{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
}

.step-number{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    background:#c88416;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:2px;
}

.step-input{
    position:relative;
    flex:1;
}

.step-input input,
.step-input select{
    width:100%;
    height:44px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    padding:10px 14px;
    background:#fff;
    transition:.2s;
    font-size:14px;
}

.step-input input:focus,
.step-input select:focus {
    border-color:#d8952b;
    outline:0;
    box-shadow:0 0 0 3px rgba(216,149,43,.15);
}

.step-suffix{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    color:#c88416;
    font-weight:700;
    font-size:13px;
}

.step-last{
    background:#f3f3f3 !important;
    color:#888;
}

.step-note{
    font-size:12px;
    color:#d18c25;
    margin-top:4px;
    font-style:italic;
}

.step-remove{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:10px;
    background:#fdeaea;
    color:#ea4d4d;
    border:0;
    font-size:22px;
    cursor:pointer;
    transition:.2s;
    margin-top:2px;
}

.step-remove:hover{
    background:#f8d6d6;
}

.step-remove-empty{
    background:transparent;
    border:0;
    pointer-events:none;
}

.step-add{
    margin-top:16px;
    border:1px dashed #d9a14d;
    border-radius:10px;
    padding:14px;
    text-align:center;
    color:#c88416;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
    background:rgba(255,255,255,.45);
}

.step-add:hover{
    background:#fff4e3;
}
/*step*/

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #28a745;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 22px;
}

.slider.round:before {
    border-radius: 50%;
}
/* Switch */

.user-form .form-group {
    margin-bottom: 15px;
}