:root {
    --rz-border-width: 1px;
    --rz-root-font-size: 16px;
    --rz-body-font-size: 1rem;
    --rz-body-line-height: 1.5;
    --rz-body-background-color: var(--rz-base-100);
    --rz-text-font-family: Roboto, sans-serif;
    --rz-icon-size: 1.5rem;
    --rz-icon-font-family: Material Icons;
}

:root {
    --rz-text-title-color: var(--rz-base-900);
    --rz-text-color: var(--rz-base-800);
    --rz-text-secondary-color: var(--rz-base-700);
    --rz-text-tertiary-color: var(--rz-base-600);
    --rz-text-disabled-color: var(--rz-base-500);
    --rz-text-contrast-color: var(--rz-white);
}


:root {
    --rz-input-font-size: var(--rz-body-font-size);
    --rz-input-height: 2.5rem;
    --rz-input-line-height: 1.5;
    --rz-input-padding: 0.4375rem 0.9375rem;
    --rz-input-value-color: var(--rz-text-color);
    --rz-input-placeholder-color: var(--rz-text-tertiary-color);
    --rz-input-background-color: var(--rz-base-background-color);
    --rz-input-border: var(--rz-border-normal);
    --rz-input-border-radius: var(--rz-border-radius);
    --rz-input-shadow: none;
    --rz-input-hover-shadow: none;
    --rz-input-hover-border: var(--rz-border-hover);
    --rz-input-focus-shadow: inset 0 0 0 1px var(--rz-primary);
    --rz-input-focus-border: var(--rz-border-focus);
    --rz-input-disabled-border: var(--rz-border-disabled);
    --rz-input-disabled-shadow: none;
    --rz-input-disabled-background-color: var(--rz-base-background-color);
    --rz-input-disabled-color: var(--rz-text-disabled-color);
    --rz-input-disabled-placeholder-color: var(--rz-text-disabled-color);
    --rz-input-disabled-opacity: 1;
    --rz-input-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

body {
    margin: 0;
    font-family: var(--rz-text-font-family);
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #616161;
    text-align: left;
    background-color: #f5f5f5;
}

body {
    font-size: var(--rz-body-font-size);
    line-height: var(--rz-body-line-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    line-height: var(--rz-body-line-height);
}

.rz-label {
    vertical-align: middle;
    margin-bottom: 0;
}

.rz-form .row .rz-label {
    min-height: var(--rz-input-height);
    line-height: var(--rz-input-line-height);
    padding: var(--rz-input-padding);
    padding-left: 0;
    border-top: var(--rz-input-border);
    border-bottom: var(--rz-input-border);
    border-color: transparent;
}

label {
    margin-bottom: 0;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #4340D2 !important;
}

.border-secondary {
    border-color: #e91e63 !important;
}

.border-success {
    border-color: #4caf50 !important;
}

.border-info {
    border-color: #2196f3 !important;
}

.border-warning {
    border-color: #ff9800 !important;
}

.border-danger {
    border-color: #f44336 !important;
}

.border-light {
    border-color: #eeeeee !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded-sm {
    border-radius: 0.2rem !important;
}

.rounded {
    border-radius: 4px !important;
}

.rounded-top {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}

.rounded-right {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.rounded-bottom {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.rounded-left {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.rounded-lg {
    border-radius: 0.3rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}


.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-n1 {
        margin: -0.25rem !important;
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .m-sm-n2 {
        margin: -0.5rem !important;
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }

    .m-sm-n3 {
        margin: -1rem !important;
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }

    .m-sm-n4 {
        margin: -1.5rem !important;
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }

    .m-sm-n5 {
        margin: -3rem !important;
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-n1 {
        margin: -0.25rem !important;
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .m-lg-n2 {
        margin: -0.5rem !important;
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }

    .m-lg-n3 {
        margin: -1rem !important;
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }

    .m-lg-n4 {
        margin: -1.5rem !important;
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }

    .m-lg-n5 {
        margin: -3rem !important;
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #4340D2 !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #2826a0 !important;
}

.text-secondary {
    color: #e91e63 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #aa1145 !important;
}

.text-success {
    color: #4caf50 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #357a38 !important;
}

.text-info {
    color: #2196f3 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #0a6ebd !important;
}

.text-warning {
    color: #ff9800 !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #b36a00 !important;
}

.text-danger {
    color: #f44336 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #d2190b !important;
}

.text-light {
    color: #eeeeee !important;
}

a.text-light:hover, a.text-light:focus {
    color: #c8c8c8 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #121416 !important;
}

.text-body {
    color: #616161 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.text-reset {
    color: inherit !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}


.rz-m-0 {
    margin: 0 !important;
}

.rz-my-0,
.rz-mt-0 {
    margin-top: 0 !important;
}

.rz-mx-0,
.rz-mr-0 {
    margin-right: 0 !important;
}

.rz-my-0,
.rz-mb-0 {
    margin-bottom: 0 !important;
}

.rz-mx-0,
.rz-ml-0 {
    margin-left: 0 !important;
}

.rz-ms-0 {
    margin-inline-start: 0 !important;
}

.rz-me-0 {
    margin-inline-end: 0 !important;
}

.rz-m-05 {
    margin: 0.125rem !important;
}

.rz-my-05,
.rz-mt-05 {
    margin-top: 0.125rem !important;
}

.rz-mx-05,
.rz-mr-05 {
    margin-right: 0.125rem !important;
}

.rz-my-05,
.rz-mb-05 {
    margin-bottom: 0.125rem !important;
}

.rz-mx-05,
.rz-ml-05 {
    margin-left: 0.125rem !important;
}

.rz-ms-05 {
    margin-inline-start: 0.125rem !important;
}

.rz-me-05 {
    margin-inline-end: 0.125rem !important;
}

.rz-m-1 {
    margin: 0.25rem !important;
}

.rz-my-1,
.rz-mt-1 {
    margin-top: 0.25rem !important;
}

.rz-mx-1,
.rz-mr-1 {
    margin-right: 0.25rem !important;
}

.rz-my-1,
.rz-mb-1 {
    margin-bottom: 0.25rem !important;
}

.rz-mx-1,
.rz-ml-1 {
    margin-left: 0.25rem !important;
}

.rz-ms-1 {
    margin-inline-start: 0.25rem !important;
}

.rz-me-1 {
    margin-inline-end: 0.25rem !important;
}

.rz-m-2 {
    margin: 0.5rem !important;
}

.rz-my-2,
.rz-mt-2 {
    margin-top: 0.5rem !important;
}

.rz-mx-2,
.rz-mr-2 {
    margin-right: 0.5rem !important;
}

.rz-my-2,
.rz-mb-2 {
    margin-bottom: 0.5rem !important;
}

.rz-mx-2,
.rz-ml-2 {
    margin-left: 0.5rem !important;
}

.rz-ms-2 {
    margin-inline-start: 0.5rem !important;
}

.rz-me-2 {
    margin-inline-end: 0.5rem !important;
}

.rz-m-3 {
    margin: 0.75rem !important;
}

.rz-my-3,
.rz-mt-3 {
    margin-top: 0.75rem !important;
}

.rz-mx-3,
.rz-mr-3 {
    margin-right: 0.75rem !important;
}

.rz-my-3,
.rz-mb-3 {
    margin-bottom: 0.75rem !important;
}

.rz-mx-3,
.rz-ml-3 {
    margin-left: 0.75rem !important;
}

.rz-ms-3 {
    margin-inline-start: 0.75rem !important;
}

.rz-me-3 {
    margin-inline-end: 0.75rem !important;
}

.rz-m-4 {
    margin: 1rem !important;
}

.rz-my-4,
.rz-mt-4 {
    margin-top: 1rem !important;
}

.rz-mx-4,
.rz-mr-4 {
    margin-right: 1rem !important;
}

.rz-my-4,
.rz-mb-4 {
    margin-bottom: 1rem !important;
}

.rz-mx-4,
.rz-ml-4 {
    margin-left: 1rem !important;
}

.rz-ms-4 {
    margin-inline-start: 1rem !important;
}

.rz-me-4 {
    margin-inline-end: 1rem !important;
}

.rz-m-5 {
    margin: 1.25rem !important;
}

.rz-my-5,
.rz-mt-5 {
    margin-top: 1.25rem !important;
}

.rz-mx-5,
.rz-mr-5 {
    margin-right: 1.25rem !important;
}

.rz-my-5,
.rz-mb-5 {
    margin-bottom: 1.25rem !important;
}

.rz-mx-5,
.rz-ml-5 {
    margin-left: 1.25rem !important;
}

.rz-ms-5 {
    margin-inline-start: 1.25rem !important;
}

.rz-me-5 {
    margin-inline-end: 1.25rem !important;
}

.rz-m-6 {
    margin: 1.5rem !important;
}

.rz-my-6,
.rz-mt-6 {
    margin-top: 1.5rem !important;
}

.rz-mx-6,
.rz-mr-6 {
    margin-right: 1.5rem !important;
}

.rz-my-6,
.rz-mb-6 {
    margin-bottom: 1.5rem !important;
}

.rz-mx-6,
.rz-ml-6 {
    margin-left: 1.5rem !important;
}

.rz-ms-6 {
    margin-inline-start: 1.5rem !important;
}

.rz-me-6 {
    margin-inline-end: 1.5rem !important;
}

.rz-m-7 {
    margin: 1.75rem !important;
}

.rz-my-7,
.rz-mt-7 {
    margin-top: 1.75rem !important;
}

.rz-mx-7,
.rz-mr-7 {
    margin-right: 1.75rem !important;
}

.rz-my-7,
.rz-mb-7 {
    margin-bottom: 1.75rem !important;
}

.rz-mx-7,
.rz-ml-7 {
    margin-left: 1.75rem !important;
}

.rz-ms-7 {
    margin-inline-start: 1.75rem !important;
}

.rz-me-7 {
    margin-inline-end: 1.75rem !important;
}

.rz-m-8 {
    margin: 2rem !important;
}

.rz-my-8,
.rz-mt-8 {
    margin-top: 2rem !important;
}

.rz-mx-8,
.rz-mr-8 {
    margin-right: 2rem !important;
}

.rz-my-8,
.rz-mb-8 {
    margin-bottom: 2rem !important;
}

.rz-mx-8,
.rz-ml-8 {
    margin-left: 2rem !important;
}

.rz-ms-8 {
    margin-inline-start: 2rem !important;
}

.rz-me-8 {
    margin-inline-end: 2rem !important;
}

.rz-m-9 {
    margin: 2.25rem !important;
}

.rz-my-9,
.rz-mt-9 {
    margin-top: 2.25rem !important;
}

.rz-mx-9,
.rz-mr-9 {
    margin-right: 2.25rem !important;
}

.rz-my-9,
.rz-mb-9 {
    margin-bottom: 2.25rem !important;
}

.rz-mx-9,
.rz-ml-9 {
    margin-left: 2.25rem !important;
}

.rz-ms-9 {
    margin-inline-start: 2.25rem !important;
}

.rz-me-9 {
    margin-inline-end: 2.25rem !important;
}

.rz-m-10 {
    margin: 2.5rem !important;
}

.rz-my-10,
.rz-mt-10 {
    margin-top: 2.5rem !important;
}

.rz-mx-10,
.rz-mr-10 {
    margin-right: 2.5rem !important;
}

.rz-my-10,
.rz-mb-10 {
    margin-bottom: 2.5rem !important;
}

.rz-mx-10,
.rz-ml-10 {
    margin-left: 2.5rem !important;
}

.rz-ms-10 {
    margin-inline-start: 2.5rem !important;
}

.rz-me-10 {
    margin-inline-end: 2.5rem !important;
}

.rz-m-11 {
    margin: 2.75rem !important;
}

.rz-my-11,
.rz-mt-11 {
    margin-top: 2.75rem !important;
}

.rz-mx-11,
.rz-mr-11 {
    margin-right: 2.75rem !important;
}

.rz-my-11,
.rz-mb-11 {
    margin-bottom: 2.75rem !important;
}

.rz-mx-11,
.rz-ml-11 {
    margin-left: 2.75rem !important;
}

.rz-ms-11 {
    margin-inline-start: 2.75rem !important;
}

.rz-me-11 {
    margin-inline-end: 2.75rem !important;
}

.rz-m-12 {
    margin: 3rem !important;
}

.rz-my-12,
.rz-mt-12 {
    margin-top: 3rem !important;
}

.rz-mx-12,
.rz-mr-12 {
    margin-right: 3rem !important;
}

.rz-my-12,
.rz-mb-12 {
    margin-bottom: 3rem !important;
}

.rz-mx-12,
.rz-ml-12 {
    margin-left: 3rem !important;
}

.rz-ms-12 {
    margin-inline-start: 3rem !important;
}

.rz-me-12 {
    margin-inline-end: 3rem !important;
}

.rz-p-0 {
    padding: 0 !important;
}

.rz-py-0,
.rz-pt-0 {
    padding-top: 0 !important;
}

.rz-px-0,
.rz-pr-0 {
    padding-right: 0 !important;
}

.rz-py-0,
.rz-pb-0 {
    padding-bottom: 0 !important;
}

.rz-px-0,
.rz-pl-0 {
    padding-left: 0 !important;
}

.rz-ps-0 {
    padding-inline-start: 0 !important;
}

.rz-pe-0 {
    padding-inline-end: 0 !important;
}

.rz-p-05 {
    padding: 0.125rem !important;
}

.rz-py-05,
.rz-pt-05 {
    padding-top: 0.125rem !important;
}

.rz-px-05,
.rz-pr-05 {
    padding-right: 0.125rem !important;
}

.rz-py-05,
.rz-pb-05 {
    padding-bottom: 0.125rem !important;
}

.rz-px-05,
.rz-pl-05 {
    padding-left: 0.125rem !important;
}

.rz-ps-05 {
    padding-inline-start: 0.125rem !important;
}

.rz-pe-05 {
    padding-inline-end: 0.125rem !important;
}

.rz-p-1 {
    padding: 0.25rem !important;
}

.rz-py-1,
.rz-pt-1 {
    padding-top: 0.25rem !important;
}

.rz-px-1,
.rz-pr-1 {
    padding-right: 0.25rem !important;
}

.rz-py-1,
.rz-pb-1 {
    padding-bottom: 0.25rem !important;
}

.rz-px-1,
.rz-pl-1 {
    padding-left: 0.25rem !important;
}

.rz-ps-1 {
    padding-inline-start: 0.25rem !important;
}

.rz-pe-1 {
    padding-inline-end: 0.25rem !important;
}

.rz-p-2 {
    padding: 0.5rem !important;
}

.rz-py-2,
.rz-pt-2 {
    padding-top: 0.5rem !important;
}

.rz-px-2,
.rz-pr-2 {
    padding-right: 0.5rem !important;
}

.rz-py-2,
.rz-pb-2 {
    padding-bottom: 0.5rem !important;
}

.rz-px-2,
.rz-pl-2 {
    padding-left: 0.5rem !important;
}

.rz-ps-2 {
    padding-inline-start: 0.5rem !important;
}

.rz-pe-2 {
    padding-inline-end: 0.5rem !important;
}

.rz-p-3 {
    padding: 0.75rem !important;
}

.rz-py-3,
.rz-pt-3 {
    padding-top: 0.75rem !important;
}

.rz-px-3,
.rz-pr-3 {
    padding-right: 0.75rem !important;
}

.rz-py-3,
.rz-pb-3 {
    padding-bottom: 0.75rem !important;
}

.rz-px-3,
.rz-pl-3 {
    padding-left: 0.75rem !important;
}

.rz-ps-3 {
    padding-inline-start: 0.75rem !important;
}

.rz-pe-3 {
    padding-inline-end: 0.75rem !important;
}

.rz-p-4 {
    padding: 1rem !important;
}

.rz-py-4,
.rz-pt-4 {
    padding-top: 1rem !important;
}

.rz-px-4,
.rz-pr-4 {
    padding-right: 1rem !important;
}

.rz-py-4,
.rz-pb-4 {
    padding-bottom: 1rem !important;
}

.rz-px-4,
.rz-pl-4 {
    padding-left: 1rem !important;
}

.rz-ps-4 {
    padding-inline-start: 1rem !important;
}

.rz-pe-4 {
    padding-inline-end: 1rem !important;
}

.rz-p-5 {
    padding: 1.25rem !important;
}

.rz-py-5,
.rz-pt-5 {
    padding-top: 1.25rem !important;
}

.rz-px-5,
.rz-pr-5 {
    padding-right: 1.25rem !important;
}

.rz-py-5,
.rz-pb-5 {
    padding-bottom: 1.25rem !important;
}

.rz-px-5,
.rz-pl-5 {
    padding-left: 1.25rem !important;
}

.rz-ps-5 {
    padding-inline-start: 1.25rem !important;
}

.rz-pe-5 {
    padding-inline-end: 1.25rem !important;
}

.rz-p-6 {
    padding: 1.5rem !important;
}

.rz-py-6,
.rz-pt-6 {
    padding-top: 1.5rem !important;
}

.rz-px-6,
.rz-pr-6 {
    padding-right: 1.5rem !important;
}

.rz-py-6,
.rz-pb-6 {
    padding-bottom: 1.5rem !important;
}

.rz-px-6,
.rz-pl-6 {
    padding-left: 1.5rem !important;
}

.rz-ps-6 {
    padding-inline-start: 1.5rem !important;
}

.rz-pe-6 {
    padding-inline-end: 1.5rem !important;
}

.rz-p-7 {
    padding: 1.75rem !important;
}

.rz-py-7,
.rz-pt-7 {
    padding-top: 1.75rem !important;
}

.rz-px-7,
.rz-pr-7 {
    padding-right: 1.75rem !important;
}

.rz-py-7,
.rz-pb-7 {
    padding-bottom: 1.75rem !important;
}

.rz-px-7,
.rz-pl-7 {
    padding-left: 1.75rem !important;
}

.rz-ps-7 {
    padding-inline-start: 1.75rem !important;
}

.rz-pe-7 {
    padding-inline-end: 1.75rem !important;
}

.rz-p-8 {
    padding: 2rem !important;
}

.rz-py-8,
.rz-pt-8 {
    padding-top: 2rem !important;
}

.rz-px-8,
.rz-pr-8 {
    padding-right: 2rem !important;
}

.rz-py-8,
.rz-pb-8 {
    padding-bottom: 2rem !important;
}

.rz-px-8,
.rz-pl-8 {
    padding-left: 2rem !important;
}

.rz-ps-8 {
    padding-inline-start: 2rem !important;
}

.rz-pe-8 {
    padding-inline-end: 2rem !important;
}

.rz-p-9 {
    padding: 2.25rem !important;
}

.rz-py-9,
.rz-pt-9 {
    padding-top: 2.25rem !important;
}

.rz-px-9,
.rz-pr-9 {
    padding-right: 2.25rem !important;
}

.rz-py-9,
.rz-pb-9 {
    padding-bottom: 2.25rem !important;
}

.rz-px-9,
.rz-pl-9 {
    padding-left: 2.25rem !important;
}

.rz-ps-9 {
    padding-inline-start: 2.25rem !important;
}

.rz-pe-9 {
    padding-inline-end: 2.25rem !important;
}

.rz-p-10 {
    padding: 2.5rem !important;
}

.rz-py-10,
.rz-pt-10 {
    padding-top: 2.5rem !important;
}

.rz-px-10,
.rz-pr-10 {
    padding-right: 2.5rem !important;
}

.rz-py-10,
.rz-pb-10 {
    padding-bottom: 2.5rem !important;
}

.rz-px-10,
.rz-pl-10 {
    padding-left: 2.5rem !important;
}

.rz-ps-10 {
    padding-inline-start: 2.5rem !important;
}

.rz-pe-10 {
    padding-inline-end: 2.5rem !important;
}

.rz-p-11 {
    padding: 2.75rem !important;
}

.rz-py-11,
.rz-pt-11 {
    padding-top: 2.75rem !important;
}

.rz-px-11,
.rz-pr-11 {
    padding-right: 2.75rem !important;
}

.rz-py-11,
.rz-pb-11 {
    padding-bottom: 2.75rem !important;
}

.rz-px-11,
.rz-pl-11 {
    padding-left: 2.75rem !important;
}

.rz-ps-11 {
    padding-inline-start: 2.75rem !important;
}

.rz-pe-11 {
    padding-inline-end: 2.75rem !important;
}

.rz-p-12 {
    padding: 3rem !important;
}

.rz-py-12,
.rz-pt-12 {
    padding-top: 3rem !important;
}

.rz-px-12,
.rz-pr-12 {
    padding-right: 3rem !important;
}

.rz-py-12,
.rz-pb-12 {
    padding-bottom: 3rem !important;
}

.rz-px-12,
.rz-pl-12 {
    padding-left: 3rem !important;
}

.rz-ps-12 {
    padding-inline-start: 3rem !important;
}

.rz-pe-12 {
    padding-inline-end: 3rem !important;
}

.rz-m-auto {
    margin: auto !important;
}

.rz-my-auto,
.rz-mt-auto {
    margin-top: auto !important;
}

.rz-mx-auto,
.rz-mr-auto {
    margin-right: auto !important;
}

.rz-my-auto,
.rz-mb-auto {
    margin-bottom: auto !important;
}

.rz-mx-auto,
.rz-ml-auto {
    margin-left: auto !important;
}

.rz-ms-auto {
    margin-inline-start: auto !important;
}

.rz-me-auto {
    margin-inline-end: auto !important;
}

@media (min-width: 576px) {
    .rz-m-xs-0 {
        margin: 0 !important;
    }

    .rz-my-xs-0,
    .rz-mt-xs-0 {
        margin-top: 0 !important;
    }

    .rz-mx-xs-0,
    .rz-mr-xs-0 {
        margin-right: 0 !important;
    }

    .rz-my-xs-0,
    .rz-mb-xs-0 {
        margin-bottom: 0 !important;
    }

    .rz-mx-xs-0,
    .rz-ml-xs-0 {
        margin-left: 0 !important;
    }

    .rz-ms-xs-0 {
        margin-inline-start: 0 !important;
    }

    .rz-ms-xs-0 {
        margin-inline-end: 0 !important;
    }

    .rz-m-xs-05 {
        margin: 0.125rem !important;
    }

    .rz-my-xs-05,
    .rz-mt-xs-05 {
        margin-top: 0.125rem !important;
    }

    .rz-mx-xs-05,
    .rz-mr-xs-05 {
        margin-right: 0.125rem !important;
    }

    .rz-my-xs-05,
    .rz-mb-xs-05 {
        margin-bottom: 0.125rem !important;
    }

    .rz-mx-xs-05,
    .rz-ml-xs-05 {
        margin-left: 0.125rem !important;
    }

    .rz-ms-xs-05 {
        margin-inline-start: 0.125rem !important;
    }

    .rz-ms-xs-05 {
        margin-inline-end: 0.125rem !important;
    }

    .rz-m-xs-1 {
        margin: 0.25rem !important;
    }

    .rz-my-xs-1,
    .rz-mt-xs-1 {
        margin-top: 0.25rem !important;
    }

    .rz-mx-xs-1,
    .rz-mr-xs-1 {
        margin-right: 0.25rem !important;
    }

    .rz-my-xs-1,
    .rz-mb-xs-1 {
        margin-bottom: 0.25rem !important;
    }

    .rz-mx-xs-1,
    .rz-ml-xs-1 {
        margin-left: 0.25rem !important;
    }

    .rz-ms-xs-1 {
        margin-inline-start: 0.25rem !important;
    }

    .rz-ms-xs-1 {
        margin-inline-end: 0.25rem !important;
    }

    .rz-m-xs-2 {
        margin: 0.5rem !important;
    }

    .rz-my-xs-2,
    .rz-mt-xs-2 {
        margin-top: 0.5rem !important;
    }

    .rz-mx-xs-2,
    .rz-mr-xs-2 {
        margin-right: 0.5rem !important;
    }

    .rz-my-xs-2,
    .rz-mb-xs-2 {
        margin-bottom: 0.5rem !important;
    }

    .rz-mx-xs-2,
    .rz-ml-xs-2 {
        margin-left: 0.5rem !important;
    }

    .rz-ms-xs-2 {
        margin-inline-start: 0.5rem !important;
    }

    .rz-ms-xs-2 {
        margin-inline-end: 0.5rem !important;
    }

    .rz-m-xs-3 {
        margin: 0.75rem !important;
    }

    .rz-my-xs-3,
    .rz-mt-xs-3 {
        margin-top: 0.75rem !important;
    }

    .rz-mx-xs-3,
    .rz-mr-xs-3 {
        margin-right: 0.75rem !important;
    }

    .rz-my-xs-3,
    .rz-mb-xs-3 {
        margin-bottom: 0.75rem !important;
    }

    .rz-mx-xs-3,
    .rz-ml-xs-3 {
        margin-left: 0.75rem !important;
    }

    .rz-ms-xs-3 {
        margin-inline-start: 0.75rem !important;
    }

    .rz-ms-xs-3 {
        margin-inline-end: 0.75rem !important;
    }

    .rz-m-xs-4 {
        margin: 1rem !important;
    }

    .rz-my-xs-4,
    .rz-mt-xs-4 {
        margin-top: 1rem !important;
    }

    .rz-mx-xs-4,
    .rz-mr-xs-4 {
        margin-right: 1rem !important;
    }

    .rz-my-xs-4,
    .rz-mb-xs-4 {
        margin-bottom: 1rem !important;
    }

    .rz-mx-xs-4,
    .rz-ml-xs-4 {
        margin-left: 1rem !important;
    }

    .rz-ms-xs-4 {
        margin-inline-start: 1rem !important;
    }

    .rz-ms-xs-4 {
        margin-inline-end: 1rem !important;
    }

    .rz-m-xs-5 {
        margin: 1.25rem !important;
    }

    .rz-my-xs-5,
    .rz-mt-xs-5 {
        margin-top: 1.25rem !important;
    }

    .rz-mx-xs-5,
    .rz-mr-xs-5 {
        margin-right: 1.25rem !important;
    }

    .rz-my-xs-5,
    .rz-mb-xs-5 {
        margin-bottom: 1.25rem !important;
    }

    .rz-mx-xs-5,
    .rz-ml-xs-5 {
        margin-left: 1.25rem !important;
    }

    .rz-ms-xs-5 {
        margin-inline-start: 1.25rem !important;
    }

    .rz-ms-xs-5 {
        margin-inline-end: 1.25rem !important;
    }

    .rz-m-xs-6 {
        margin: 1.5rem !important;
    }

    .rz-my-xs-6,
    .rz-mt-xs-6 {
        margin-top: 1.5rem !important;
    }

    .rz-mx-xs-6,
    .rz-mr-xs-6 {
        margin-right: 1.5rem !important;
    }

    .rz-my-xs-6,
    .rz-mb-xs-6 {
        margin-bottom: 1.5rem !important;
    }

    .rz-mx-xs-6,
    .rz-ml-xs-6 {
        margin-left: 1.5rem !important;
    }

    .rz-ms-xs-6 {
        margin-inline-start: 1.5rem !important;
    }

    .rz-ms-xs-6 {
        margin-inline-end: 1.5rem !important;
    }

    .rz-m-xs-7 {
        margin: 1.75rem !important;
    }

    .rz-my-xs-7,
    .rz-mt-xs-7 {
        margin-top: 1.75rem !important;
    }

    .rz-mx-xs-7,
    .rz-mr-xs-7 {
        margin-right: 1.75rem !important;
    }

    .rz-my-xs-7,
    .rz-mb-xs-7 {
        margin-bottom: 1.75rem !important;
    }

    .rz-mx-xs-7,
    .rz-ml-xs-7 {
        margin-left: 1.75rem !important;
    }

    .rz-ms-xs-7 {
        margin-inline-start: 1.75rem !important;
    }

    .rz-ms-xs-7 {
        margin-inline-end: 1.75rem !important;
    }

    .rz-m-xs-8 {
        margin: 2rem !important;
    }

    .rz-my-xs-8,
    .rz-mt-xs-8 {
        margin-top: 2rem !important;
    }

    .rz-mx-xs-8,
    .rz-mr-xs-8 {
        margin-right: 2rem !important;
    }

    .rz-my-xs-8,
    .rz-mb-xs-8 {
        margin-bottom: 2rem !important;
    }

    .rz-mx-xs-8,
    .rz-ml-xs-8 {
        margin-left: 2rem !important;
    }

    .rz-ms-xs-8 {
        margin-inline-start: 2rem !important;
    }

    .rz-ms-xs-8 {
        margin-inline-end: 2rem !important;
    }

    .rz-m-xs-9 {
        margin: 2.25rem !important;
    }

    .rz-my-xs-9,
    .rz-mt-xs-9 {
        margin-top: 2.25rem !important;
    }

    .rz-mx-xs-9,
    .rz-mr-xs-9 {
        margin-right: 2.25rem !important;
    }

    .rz-my-xs-9,
    .rz-mb-xs-9 {
        margin-bottom: 2.25rem !important;
    }

    .rz-mx-xs-9,
    .rz-ml-xs-9 {
        margin-left: 2.25rem !important;
    }

    .rz-ms-xs-9 {
        margin-inline-start: 2.25rem !important;
    }

    .rz-ms-xs-9 {
        margin-inline-end: 2.25rem !important;
    }

    .rz-m-xs-10 {
        margin: 2.5rem !important;
    }

    .rz-my-xs-10,
    .rz-mt-xs-10 {
        margin-top: 2.5rem !important;
    }

    .rz-mx-xs-10,
    .rz-mr-xs-10 {
        margin-right: 2.5rem !important;
    }

    .rz-my-xs-10,
    .rz-mb-xs-10 {
        margin-bottom: 2.5rem !important;
    }

    .rz-mx-xs-10,
    .rz-ml-xs-10 {
        margin-left: 2.5rem !important;
    }

    .rz-ms-xs-10 {
        margin-inline-start: 2.5rem !important;
    }

    .rz-ms-xs-10 {
        margin-inline-end: 2.5rem !important;
    }

    .rz-m-xs-11 {
        margin: 2.75rem !important;
    }

    .rz-my-xs-11,
    .rz-mt-xs-11 {
        margin-top: 2.75rem !important;
    }

    .rz-mx-xs-11,
    .rz-mr-xs-11 {
        margin-right: 2.75rem !important;
    }

    .rz-my-xs-11,
    .rz-mb-xs-11 {
        margin-bottom: 2.75rem !important;
    }

    .rz-mx-xs-11,
    .rz-ml-xs-11 {
        margin-left: 2.75rem !important;
    }

    .rz-ms-xs-11 {
        margin-inline-start: 2.75rem !important;
    }

    .rz-ms-xs-11 {
        margin-inline-end: 2.75rem !important;
    }

    .rz-m-xs-12 {
        margin: 3rem !important;
    }

    .rz-my-xs-12,
    .rz-mt-xs-12 {
        margin-top: 3rem !important;
    }

    .rz-mx-xs-12,
    .rz-mr-xs-12 {
        margin-right: 3rem !important;
    }

    .rz-my-xs-12,
    .rz-mb-xs-12 {
        margin-bottom: 3rem !important;
    }

    .rz-mx-xs-12,
    .rz-ml-xs-12 {
        margin-left: 3rem !important;
    }

    .rz-ms-xs-12 {
        margin-inline-start: 3rem !important;
    }

    .rz-ms-xs-12 {
        margin-inline-end: 3rem !important;
    }

    .rz-p-xs-0 {
        padding: 0 !important;
    }

    .rz-py-xs-0,
    .rz-pt-xs-0 {
        padding-top: 0 !important;
    }

    .rz-px-xs-0,
    .rz-pr-xs-0 {
        padding-right: 0 !important;
    }

    .rz-py-xs-0,
    .rz-pb-xs-0 {
        padding-bottom: 0 !important;
    }

    .rz-px-xs-0,
    .rz-pl-xs-0 {
        padding-left: 0 !important;
    }

    .rz-ps-xs-0 {
        padding-inline-start: 0 !important;
    }

    .rz-ps-xs-0 {
        padding-inline-end: 0 !important;
    }

    .rz-p-xs-05 {
        padding: 0.125rem !important;
    }

    .rz-py-xs-05,
    .rz-pt-xs-05 {
        padding-top: 0.125rem !important;
    }

    .rz-px-xs-05,
    .rz-pr-xs-05 {
        padding-right: 0.125rem !important;
    }

    .rz-py-xs-05,
    .rz-pb-xs-05 {
        padding-bottom: 0.125rem !important;
    }

    .rz-px-xs-05,
    .rz-pl-xs-05 {
        padding-left: 0.125rem !important;
    }

    .rz-ps-xs-05 {
        padding-inline-start: 0.125rem !important;
    }

    .rz-ps-xs-05 {
        padding-inline-end: 0.125rem !important;
    }

    .rz-p-xs-1 {
        padding: 0.25rem !important;
    }

    .rz-py-xs-1,
    .rz-pt-xs-1 {
        padding-top: 0.25rem !important;
    }

    .rz-px-xs-1,
    .rz-pr-xs-1 {
        padding-right: 0.25rem !important;
    }

    .rz-py-xs-1,
    .rz-pb-xs-1 {
        padding-bottom: 0.25rem !important;
    }

    .rz-px-xs-1,
    .rz-pl-xs-1 {
        padding-left: 0.25rem !important;
    }

    .rz-ps-xs-1 {
        padding-inline-start: 0.25rem !important;
    }

    .rz-ps-xs-1 {
        padding-inline-end: 0.25rem !important;
    }

    .rz-p-xs-2 {
        padding: 0.5rem !important;
    }

    .rz-py-xs-2,
    .rz-pt-xs-2 {
        padding-top: 0.5rem !important;
    }

    .rz-px-xs-2,
    .rz-pr-xs-2 {
        padding-right: 0.5rem !important;
    }

    .rz-py-xs-2,
    .rz-pb-xs-2 {
        padding-bottom: 0.5rem !important;
    }

    .rz-px-xs-2,
    .rz-pl-xs-2 {
        padding-left: 0.5rem !important;
    }

    .rz-ps-xs-2 {
        padding-inline-start: 0.5rem !important;
    }

    .rz-ps-xs-2 {
        padding-inline-end: 0.5rem !important;
    }

    .rz-p-xs-3 {
        padding: 0.75rem !important;
    }

    .rz-py-xs-3,
    .rz-pt-xs-3 {
        padding-top: 0.75rem !important;
    }

    .rz-px-xs-3,
    .rz-pr-xs-3 {
        padding-right: 0.75rem !important;
    }

    .rz-py-xs-3,
    .rz-pb-xs-3 {
        padding-bottom: 0.75rem !important;
    }

    .rz-px-xs-3,
    .rz-pl-xs-3 {
        padding-left: 0.75rem !important;
    }

    .rz-ps-xs-3 {
        padding-inline-start: 0.75rem !important;
    }

    .rz-ps-xs-3 {
        padding-inline-end: 0.75rem !important;
    }

    .rz-p-xs-4 {
        padding: 1rem !important;
    }

    .rz-py-xs-4,
    .rz-pt-xs-4 {
        padding-top: 1rem !important;
    }

    .rz-px-xs-4,
    .rz-pr-xs-4 {
        padding-right: 1rem !important;
    }

    .rz-py-xs-4,
    .rz-pb-xs-4 {
        padding-bottom: 1rem !important;
    }

    .rz-px-xs-4,
    .rz-pl-xs-4 {
        padding-left: 1rem !important;
    }

    .rz-ps-xs-4 {
        padding-inline-start: 1rem !important;
    }

    .rz-ps-xs-4 {
        padding-inline-end: 1rem !important;
    }

    .rz-p-xs-5 {
        padding: 1.25rem !important;
    }

    .rz-py-xs-5,
    .rz-pt-xs-5 {
        padding-top: 1.25rem !important;
    }

    .rz-px-xs-5,
    .rz-pr-xs-5 {
        padding-right: 1.25rem !important;
    }

    .rz-py-xs-5,
    .rz-pb-xs-5 {
        padding-bottom: 1.25rem !important;
    }

    .rz-px-xs-5,
    .rz-pl-xs-5 {
        padding-left: 1.25rem !important;
    }

    .rz-ps-xs-5 {
        padding-inline-start: 1.25rem !important;
    }

    .rz-ps-xs-5 {
        padding-inline-end: 1.25rem !important;
    }

    .rz-p-xs-6 {
        padding: 1.5rem !important;
    }

    .rz-py-xs-6,
    .rz-pt-xs-6 {
        padding-top: 1.5rem !important;
    }

    .rz-px-xs-6,
    .rz-pr-xs-6 {
        padding-right: 1.5rem !important;
    }

    .rz-py-xs-6,
    .rz-pb-xs-6 {
        padding-bottom: 1.5rem !important;
    }

    .rz-px-xs-6,
    .rz-pl-xs-6 {
        padding-left: 1.5rem !important;
    }

    .rz-ps-xs-6 {
        padding-inline-start: 1.5rem !important;
    }

    .rz-ps-xs-6 {
        padding-inline-end: 1.5rem !important;
    }

    .rz-p-xs-7 {
        padding: 1.75rem !important;
    }

    .rz-py-xs-7,
    .rz-pt-xs-7 {
        padding-top: 1.75rem !important;
    }

    .rz-px-xs-7,
    .rz-pr-xs-7 {
        padding-right: 1.75rem !important;
    }

    .rz-py-xs-7,
    .rz-pb-xs-7 {
        padding-bottom: 1.75rem !important;
    }

    .rz-px-xs-7,
    .rz-pl-xs-7 {
        padding-left: 1.75rem !important;
    }

    .rz-ps-xs-7 {
        padding-inline-start: 1.75rem !important;
    }

    .rz-ps-xs-7 {
        padding-inline-end: 1.75rem !important;
    }

    .rz-p-xs-8 {
        padding: 2rem !important;
    }

    .rz-py-xs-8,
    .rz-pt-xs-8 {
        padding-top: 2rem !important;
    }

    .rz-px-xs-8,
    .rz-pr-xs-8 {
        padding-right: 2rem !important;
    }

    .rz-py-xs-8,
    .rz-pb-xs-8 {
        padding-bottom: 2rem !important;
    }

    .rz-px-xs-8,
    .rz-pl-xs-8 {
        padding-left: 2rem !important;
    }

    .rz-ps-xs-8 {
        padding-inline-start: 2rem !important;
    }

    .rz-ps-xs-8 {
        padding-inline-end: 2rem !important;
    }

    .rz-p-xs-9 {
        padding: 2.25rem !important;
    }

    .rz-py-xs-9,
    .rz-pt-xs-9 {
        padding-top: 2.25rem !important;
    }

    .rz-px-xs-9,
    .rz-pr-xs-9 {
        padding-right: 2.25rem !important;
    }

    .rz-py-xs-9,
    .rz-pb-xs-9 {
        padding-bottom: 2.25rem !important;
    }

    .rz-px-xs-9,
    .rz-pl-xs-9 {
        padding-left: 2.25rem !important;
    }

    .rz-ps-xs-9 {
        padding-inline-start: 2.25rem !important;
    }

    .rz-ps-xs-9 {
        padding-inline-end: 2.25rem !important;
    }

    .rz-p-xs-10 {
        padding: 2.5rem !important;
    }

    .rz-py-xs-10,
    .rz-pt-xs-10 {
        padding-top: 2.5rem !important;
    }

    .rz-px-xs-10,
    .rz-pr-xs-10 {
        padding-right: 2.5rem !important;
    }

    .rz-py-xs-10,
    .rz-pb-xs-10 {
        padding-bottom: 2.5rem !important;
    }

    .rz-px-xs-10,
    .rz-pl-xs-10 {
        padding-left: 2.5rem !important;
    }

    .rz-ps-xs-10 {
        padding-inline-start: 2.5rem !important;
    }

    .rz-ps-xs-10 {
        padding-inline-end: 2.5rem !important;
    }

    .rz-p-xs-11 {
        padding: 2.75rem !important;
    }

    .rz-py-xs-11,
    .rz-pt-xs-11 {
        padding-top: 2.75rem !important;
    }

    .rz-px-xs-11,
    .rz-pr-xs-11 {
        padding-right: 2.75rem !important;
    }

    .rz-py-xs-11,
    .rz-pb-xs-11 {
        padding-bottom: 2.75rem !important;
    }

    .rz-px-xs-11,
    .rz-pl-xs-11 {
        padding-left: 2.75rem !important;
    }

    .rz-ps-xs-11 {
        padding-inline-start: 2.75rem !important;
    }

    .rz-ps-xs-11 {
        padding-inline-end: 2.75rem !important;
    }

    .rz-p-xs-12 {
        padding: 3rem !important;
    }

    .rz-py-xs-12,
    .rz-pt-xs-12 {
        padding-top: 3rem !important;
    }

    .rz-px-xs-12,
    .rz-pr-xs-12 {
        padding-right: 3rem !important;
    }

    .rz-py-xs-12,
    .rz-pb-xs-12 {
        padding-bottom: 3rem !important;
    }

    .rz-px-xs-12,
    .rz-pl-xs-12 {
        padding-left: 3rem !important;
    }

    .rz-ps-xs-12 {
        padding-inline-start: 3rem !important;
    }

    .rz-ps-xs-12 {
        padding-inline-end: 3rem !important;
    }

    .rz-m-xs-auto {
        margin: auto !important;
    }

    .rz-my-xs-auto,
    .rz-mt-xs-auto {
        margin-top: auto !important;
    }

    .rz-mx-xs-auto,
    .rz-mr-xs-auto {
        margin-right: auto !important;
    }

    .rz-my-xs-auto,
    .rz-mb-xs-auto {
        margin-bottom: auto !important;
    }

    .rz-mx-xs-auto,
    .rz-ml-xs-auto {
        margin-left: auto !important;
    }

    .rz-ms-xs-auto {
        margin-inline-start: auto !important;
    }

    .rz-me-xs-auto {
        margin-inline-end: auto !important;
    }
}

@media (min-width: 768px) {
    .rz-m-sm-0 {
        margin: 0 !important;
    }

    .rz-my-sm-0,
    .rz-mt-sm-0 {
        margin-top: 0 !important;
    }

    .rz-mx-sm-0,
    .rz-mr-sm-0 {
        margin-right: 0 !important;
    }

    .rz-my-sm-0,
    .rz-mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .rz-mx-sm-0,
    .rz-ml-sm-0 {
        margin-left: 0 !important;
    }

    .rz-ms-sm-0 {
        margin-inline-start: 0 !important;
    }

    .rz-ms-sm-0 {
        margin-inline-end: 0 !important;
    }

    .rz-m-sm-05 {
        margin: 0.125rem !important;
    }

    .rz-my-sm-05,
    .rz-mt-sm-05 {
        margin-top: 0.125rem !important;
    }

    .rz-mx-sm-05,
    .rz-mr-sm-05 {
        margin-right: 0.125rem !important;
    }

    .rz-my-sm-05,
    .rz-mb-sm-05 {
        margin-bottom: 0.125rem !important;
    }

    .rz-mx-sm-05,
    .rz-ml-sm-05 {
        margin-left: 0.125rem !important;
    }

    .rz-ms-sm-05 {
        margin-inline-start: 0.125rem !important;
    }

    .rz-ms-sm-05 {
        margin-inline-end: 0.125rem !important;
    }

    .rz-m-sm-1 {
        margin: 0.25rem !important;
    }

    .rz-my-sm-1,
    .rz-mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .rz-mx-sm-1,
    .rz-mr-sm-1 {
        margin-right: 0.25rem !important;
    }

    .rz-my-sm-1,
    .rz-mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .rz-mx-sm-1,
    .rz-ml-sm-1 {
        margin-left: 0.25rem !important;
    }

    .rz-ms-sm-1 {
        margin-inline-start: 0.25rem !important;
    }

    .rz-ms-sm-1 {
        margin-inline-end: 0.25rem !important;
    }

    .rz-m-sm-2 {
        margin: 0.5rem !important;
    }

    .rz-my-sm-2,
    .rz-mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .rz-mx-sm-2,
    .rz-mr-sm-2 {
        margin-right: 0.5rem !important;
    }

    .rz-my-sm-2,
    .rz-mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .rz-mx-sm-2,
    .rz-ml-sm-2 {
        margin-left: 0.5rem !important;
    }

    .rz-ms-sm-2 {
        margin-inline-start: 0.5rem !important;
    }

    .rz-ms-sm-2 {
        margin-inline-end: 0.5rem !important;
    }

    .rz-m-sm-3 {
        margin: 0.75rem !important;
    }

    .rz-my-sm-3,
    .rz-mt-sm-3 {
        margin-top: 0.75rem !important;
    }

    .rz-mx-sm-3,
    .rz-mr-sm-3 {
        margin-right: 0.75rem !important;
    }

    .rz-my-sm-3,
    .rz-mb-sm-3 {
        margin-bottom: 0.75rem !important;
    }

    .rz-mx-sm-3,
    .rz-ml-sm-3 {
        margin-left: 0.75rem !important;
    }

    .rz-ms-sm-3 {
        margin-inline-start: 0.75rem !important;
    }

    .rz-ms-sm-3 {
        margin-inline-end: 0.75rem !important;
    }

    .rz-m-sm-4 {
        margin: 1rem !important;
    }

    .rz-my-sm-4,
    .rz-mt-sm-4 {
        margin-top: 1rem !important;
    }

    .rz-mx-sm-4,
    .rz-mr-sm-4 {
        margin-right: 1rem !important;
    }

    .rz-my-sm-4,
    .rz-mb-sm-4 {
        margin-bottom: 1rem !important;
    }

    .rz-mx-sm-4,
    .rz-ml-sm-4 {
        margin-left: 1rem !important;
    }

    .rz-ms-sm-4 {
        margin-inline-start: 1rem !important;
    }

    .rz-ms-sm-4 {
        margin-inline-end: 1rem !important;
    }

    .rz-m-sm-5 {
        margin: 1.25rem !important;
    }

    .rz-my-sm-5,
    .rz-mt-sm-5 {
        margin-top: 1.25rem !important;
    }

    .rz-mx-sm-5,
    .rz-mr-sm-5 {
        margin-right: 1.25rem !important;
    }

    .rz-my-sm-5,
    .rz-mb-sm-5 {
        margin-bottom: 1.25rem !important;
    }

    .rz-mx-sm-5,
    .rz-ml-sm-5 {
        margin-left: 1.25rem !important;
    }

    .rz-ms-sm-5 {
        margin-inline-start: 1.25rem !important;
    }

    .rz-ms-sm-5 {
        margin-inline-end: 1.25rem !important;
    }

    .rz-m-sm-6 {
        margin: 1.5rem !important;
    }

    .rz-my-sm-6,
    .rz-mt-sm-6 {
        margin-top: 1.5rem !important;
    }

    .rz-mx-sm-6,
    .rz-mr-sm-6 {
        margin-right: 1.5rem !important;
    }

    .rz-my-sm-6,
    .rz-mb-sm-6 {
        margin-bottom: 1.5rem !important;
    }

    .rz-mx-sm-6,
    .rz-ml-sm-6 {
        margin-left: 1.5rem !important;
    }

    .rz-ms-sm-6 {
        margin-inline-start: 1.5rem !important;
    }

    .rz-ms-sm-6 {
        margin-inline-end: 1.5rem !important;
    }

    .rz-m-sm-7 {
        margin: 1.75rem !important;
    }

    .rz-my-sm-7,
    .rz-mt-sm-7 {
        margin-top: 1.75rem !important;
    }

    .rz-mx-sm-7,
    .rz-mr-sm-7 {
        margin-right: 1.75rem !important;
    }

    .rz-my-sm-7,
    .rz-mb-sm-7 {
        margin-bottom: 1.75rem !important;
    }

    .rz-mx-sm-7,
    .rz-ml-sm-7 {
        margin-left: 1.75rem !important;
    }

    .rz-ms-sm-7 {
        margin-inline-start: 1.75rem !important;
    }

    .rz-ms-sm-7 {
        margin-inline-end: 1.75rem !important;
    }

    .rz-m-sm-8 {
        margin: 2rem !important;
    }

    .rz-my-sm-8,
    .rz-mt-sm-8 {
        margin-top: 2rem !important;
    }

    .rz-mx-sm-8,
    .rz-mr-sm-8 {
        margin-right: 2rem !important;
    }

    .rz-my-sm-8,
    .rz-mb-sm-8 {
        margin-bottom: 2rem !important;
    }

    .rz-mx-sm-8,
    .rz-ml-sm-8 {
        margin-left: 2rem !important;
    }

    .rz-ms-sm-8 {
        margin-inline-start: 2rem !important;
    }

    .rz-ms-sm-8 {
        margin-inline-end: 2rem !important;
    }

    .rz-m-sm-9 {
        margin: 2.25rem !important;
    }

    .rz-my-sm-9,
    .rz-mt-sm-9 {
        margin-top: 2.25rem !important;
    }

    .rz-mx-sm-9,
    .rz-mr-sm-9 {
        margin-right: 2.25rem !important;
    }

    .rz-my-sm-9,
    .rz-mb-sm-9 {
        margin-bottom: 2.25rem !important;
    }

    .rz-mx-sm-9,
    .rz-ml-sm-9 {
        margin-left: 2.25rem !important;
    }

    .rz-ms-sm-9 {
        margin-inline-start: 2.25rem !important;
    }

    .rz-ms-sm-9 {
        margin-inline-end: 2.25rem !important;
    }

    .rz-m-sm-10 {
        margin: 2.5rem !important;
    }

    .rz-my-sm-10,
    .rz-mt-sm-10 {
        margin-top: 2.5rem !important;
    }

    .rz-mx-sm-10,
    .rz-mr-sm-10 {
        margin-right: 2.5rem !important;
    }

    .rz-my-sm-10,
    .rz-mb-sm-10 {
        margin-bottom: 2.5rem !important;
    }

    .rz-mx-sm-10,
    .rz-ml-sm-10 {
        margin-left: 2.5rem !important;
    }

    .rz-ms-sm-10 {
        margin-inline-start: 2.5rem !important;
    }

    .rz-ms-sm-10 {
        margin-inline-end: 2.5rem !important;
    }

    .rz-m-sm-11 {
        margin: 2.75rem !important;
    }

    .rz-my-sm-11,
    .rz-mt-sm-11 {
        margin-top: 2.75rem !important;
    }

    .rz-mx-sm-11,
    .rz-mr-sm-11 {
        margin-right: 2.75rem !important;
    }

    .rz-my-sm-11,
    .rz-mb-sm-11 {
        margin-bottom: 2.75rem !important;
    }

    .rz-mx-sm-11,
    .rz-ml-sm-11 {
        margin-left: 2.75rem !important;
    }

    .rz-ms-sm-11 {
        margin-inline-start: 2.75rem !important;
    }

    .rz-ms-sm-11 {
        margin-inline-end: 2.75rem !important;
    }

    .rz-m-sm-12 {
        margin: 3rem !important;
    }

    .rz-my-sm-12,
    .rz-mt-sm-12 {
        margin-top: 3rem !important;
    }

    .rz-mx-sm-12,
    .rz-mr-sm-12 {
        margin-right: 3rem !important;
    }

    .rz-my-sm-12,
    .rz-mb-sm-12 {
        margin-bottom: 3rem !important;
    }

    .rz-mx-sm-12,
    .rz-ml-sm-12 {
        margin-left: 3rem !important;
    }

    .rz-ms-sm-12 {
        margin-inline-start: 3rem !important;
    }

    .rz-ms-sm-12 {
        margin-inline-end: 3rem !important;
    }

    .rz-p-sm-0 {
        padding: 0 !important;
    }

    .rz-py-sm-0,
    .rz-pt-sm-0 {
        padding-top: 0 !important;
    }

    .rz-px-sm-0,
    .rz-pr-sm-0 {
        padding-right: 0 !important;
    }

    .rz-py-sm-0,
    .rz-pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .rz-px-sm-0,
    .rz-pl-sm-0 {
        padding-left: 0 !important;
    }

    .rz-ps-sm-0 {
        padding-inline-start: 0 !important;
    }

    .rz-ps-sm-0 {
        padding-inline-end: 0 !important;
    }

    .rz-p-sm-05 {
        padding: 0.125rem !important;
    }

    .rz-py-sm-05,
    .rz-pt-sm-05 {
        padding-top: 0.125rem !important;
    }

    .rz-px-sm-05,
    .rz-pr-sm-05 {
        padding-right: 0.125rem !important;
    }

    .rz-py-sm-05,
    .rz-pb-sm-05 {
        padding-bottom: 0.125rem !important;
    }

    .rz-px-sm-05,
    .rz-pl-sm-05 {
        padding-left: 0.125rem !important;
    }

    .rz-ps-sm-05 {
        padding-inline-start: 0.125rem !important;
    }

    .rz-ps-sm-05 {
        padding-inline-end: 0.125rem !important;
    }

    .rz-p-sm-1 {
        padding: 0.25rem !important;
    }

    .rz-py-sm-1,
    .rz-pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .rz-px-sm-1,
    .rz-pr-sm-1 {
        padding-right: 0.25rem !important;
    }

    .rz-py-sm-1,
    .rz-pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .rz-px-sm-1,
    .rz-pl-sm-1 {
        padding-left: 0.25rem !important;
    }

    .rz-ps-sm-1 {
        padding-inline-start: 0.25rem !important;
    }

    .rz-ps-sm-1 {
        padding-inline-end: 0.25rem !important;
    }

    .rz-p-sm-2 {
        padding: 0.5rem !important;
    }

    .rz-py-sm-2,
    .rz-pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .rz-px-sm-2,
    .rz-pr-sm-2 {
        padding-right: 0.5rem !important;
    }

    .rz-py-sm-2,
    .rz-pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .rz-px-sm-2,
    .rz-pl-sm-2 {
        padding-left: 0.5rem !important;
    }

    .rz-ps-sm-2 {
        padding-inline-start: 0.5rem !important;
    }

    .rz-ps-sm-2 {
        padding-inline-end: 0.5rem !important;
    }

    .rz-p-sm-3 {
        padding: 0.75rem !important;
    }

    .rz-py-sm-3,
    .rz-pt-sm-3 {
        padding-top: 0.75rem !important;
    }

    .rz-px-sm-3,
    .rz-pr-sm-3 {
        padding-right: 0.75rem !important;
    }

    .rz-py-sm-3,
    .rz-pb-sm-3 {
        padding-bottom: 0.75rem !important;
    }

    .rz-px-sm-3,
    .rz-pl-sm-3 {
        padding-left: 0.75rem !important;
    }

    .rz-ps-sm-3 {
        padding-inline-start: 0.75rem !important;
    }

    .rz-ps-sm-3 {
        padding-inline-end: 0.75rem !important;
    }

    .rz-p-sm-4 {
        padding: 1rem !important;
    }

    .rz-py-sm-4,
    .rz-pt-sm-4 {
        padding-top: 1rem !important;
    }

    .rz-px-sm-4,
    .rz-pr-sm-4 {
        padding-right: 1rem !important;
    }

    .rz-py-sm-4,
    .rz-pb-sm-4 {
        padding-bottom: 1rem !important;
    }

    .rz-px-sm-4,
    .rz-pl-sm-4 {
        padding-left: 1rem !important;
    }

    .rz-ps-sm-4 {
        padding-inline-start: 1rem !important;
    }

    .rz-ps-sm-4 {
        padding-inline-end: 1rem !important;
    }

    .rz-p-sm-5 {
        padding: 1.25rem !important;
    }

    .rz-py-sm-5,
    .rz-pt-sm-5 {
        padding-top: 1.25rem !important;
    }

    .rz-px-sm-5,
    .rz-pr-sm-5 {
        padding-right: 1.25rem !important;
    }

    .rz-py-sm-5,
    .rz-pb-sm-5 {
        padding-bottom: 1.25rem !important;
    }

    .rz-px-sm-5,
    .rz-pl-sm-5 {
        padding-left: 1.25rem !important;
    }

    .rz-ps-sm-5 {
        padding-inline-start: 1.25rem !important;
    }

    .rz-ps-sm-5 {
        padding-inline-end: 1.25rem !important;
    }

    .rz-p-sm-6 {
        padding: 1.5rem !important;
    }

    .rz-py-sm-6,
    .rz-pt-sm-6 {
        padding-top: 1.5rem !important;
    }

    .rz-px-sm-6,
    .rz-pr-sm-6 {
        padding-right: 1.5rem !important;
    }

    .rz-py-sm-6,
    .rz-pb-sm-6 {
        padding-bottom: 1.5rem !important;
    }

    .rz-px-sm-6,
    .rz-pl-sm-6 {
        padding-left: 1.5rem !important;
    }

    .rz-ps-sm-6 {
        padding-inline-start: 1.5rem !important;
    }

    .rz-ps-sm-6 {
        padding-inline-end: 1.5rem !important;
    }

    .rz-p-sm-7 {
        padding: 1.75rem !important;
    }

    .rz-py-sm-7,
    .rz-pt-sm-7 {
        padding-top: 1.75rem !important;
    }

    .rz-px-sm-7,
    .rz-pr-sm-7 {
        padding-right: 1.75rem !important;
    }

    .rz-py-sm-7,
    .rz-pb-sm-7 {
        padding-bottom: 1.75rem !important;
    }

    .rz-px-sm-7,
    .rz-pl-sm-7 {
        padding-left: 1.75rem !important;
    }

    .rz-ps-sm-7 {
        padding-inline-start: 1.75rem !important;
    }

    .rz-ps-sm-7 {
        padding-inline-end: 1.75rem !important;
    }

    .rz-p-sm-8 {
        padding: 2rem !important;
    }

    .rz-py-sm-8,
    .rz-pt-sm-8 {
        padding-top: 2rem !important;
    }

    .rz-px-sm-8,
    .rz-pr-sm-8 {
        padding-right: 2rem !important;
    }

    .rz-py-sm-8,
    .rz-pb-sm-8 {
        padding-bottom: 2rem !important;
    }

    .rz-px-sm-8,
    .rz-pl-sm-8 {
        padding-left: 2rem !important;
    }

    .rz-ps-sm-8 {
        padding-inline-start: 2rem !important;
    }

    .rz-ps-sm-8 {
        padding-inline-end: 2rem !important;
    }

    .rz-p-sm-9 {
        padding: 2.25rem !important;
    }

    .rz-py-sm-9,
    .rz-pt-sm-9 {
        padding-top: 2.25rem !important;
    }

    .rz-px-sm-9,
    .rz-pr-sm-9 {
        padding-right: 2.25rem !important;
    }

    .rz-py-sm-9,
    .rz-pb-sm-9 {
        padding-bottom: 2.25rem !important;
    }

    .rz-px-sm-9,
    .rz-pl-sm-9 {
        padding-left: 2.25rem !important;
    }

    .rz-ps-sm-9 {
        padding-inline-start: 2.25rem !important;
    }

    .rz-ps-sm-9 {
        padding-inline-end: 2.25rem !important;
    }

    .rz-p-sm-10 {
        padding: 2.5rem !important;
    }

    .rz-py-sm-10,
    .rz-pt-sm-10 {
        padding-top: 2.5rem !important;
    }

    .rz-px-sm-10,
    .rz-pr-sm-10 {
        padding-right: 2.5rem !important;
    }

    .rz-py-sm-10,
    .rz-pb-sm-10 {
        padding-bottom: 2.5rem !important;
    }

    .rz-px-sm-10,
    .rz-pl-sm-10 {
        padding-left: 2.5rem !important;
    }

    .rz-ps-sm-10 {
        padding-inline-start: 2.5rem !important;
    }

    .rz-ps-sm-10 {
        padding-inline-end: 2.5rem !important;
    }

    .rz-p-sm-11 {
        padding: 2.75rem !important;
    }

    .rz-py-sm-11,
    .rz-pt-sm-11 {
        padding-top: 2.75rem !important;
    }

    .rz-px-sm-11,
    .rz-pr-sm-11 {
        padding-right: 2.75rem !important;
    }

    .rz-py-sm-11,
    .rz-pb-sm-11 {
        padding-bottom: 2.75rem !important;
    }

    .rz-px-sm-11,
    .rz-pl-sm-11 {
        padding-left: 2.75rem !important;
    }

    .rz-ps-sm-11 {
        padding-inline-start: 2.75rem !important;
    }

    .rz-ps-sm-11 {
        padding-inline-end: 2.75rem !important;
    }

    .rz-p-sm-12 {
        padding: 3rem !important;
    }

    .rz-py-sm-12,
    .rz-pt-sm-12 {
        padding-top: 3rem !important;
    }

    .rz-px-sm-12,
    .rz-pr-sm-12 {
        padding-right: 3rem !important;
    }

    .rz-py-sm-12,
    .rz-pb-sm-12 {
        padding-bottom: 3rem !important;
    }

    .rz-px-sm-12,
    .rz-pl-sm-12 {
        padding-left: 3rem !important;
    }

    .rz-ps-sm-12 {
        padding-inline-start: 3rem !important;
    }

    .rz-ps-sm-12 {
        padding-inline-end: 3rem !important;
    }

    .rz-m-sm-auto {
        margin: auto !important;
    }

    .rz-my-sm-auto,
    .rz-mt-sm-auto {
        margin-top: auto !important;
    }

    .rz-mx-sm-auto,
    .rz-mr-sm-auto {
        margin-right: auto !important;
    }

    .rz-my-sm-auto,
    .rz-mb-sm-auto {
        margin-bottom: auto !important;
    }

    .rz-mx-sm-auto,
    .rz-ml-sm-auto {
        margin-left: auto !important;
    }

    .rz-ms-sm-auto {
        margin-inline-start: auto !important;
    }

    .rz-me-sm-auto {
        margin-inline-end: auto !important;
    }
}

@media (min-width: 1024px) {
    .rz-m-md-0 {
        margin: 0 !important;
    }

    .rz-my-md-0,
    .rz-mt-md-0 {
        margin-top: 0 !important;
    }

    .rz-mx-md-0,
    .rz-mr-md-0 {
        margin-right: 0 !important;
    }

    .rz-my-md-0,
    .rz-mb-md-0 {
        margin-bottom: 0 !important;
    }

    .rz-mx-md-0,
    .rz-ml-md-0 {
        margin-left: 0 !important;
    }

    .rz-ms-md-0 {
        margin-inline-start: 0 !important;
    }

    .rz-ms-md-0 {
        margin-inline-end: 0 !important;
    }

    .rz-m-md-05 {
        margin: 0.125rem !important;
    }

    .rz-my-md-05,
    .rz-mt-md-05 {
        margin-top: 0.125rem !important;
    }

    .rz-mx-md-05,
    .rz-mr-md-05 {
        margin-right: 0.125rem !important;
    }

    .rz-my-md-05,
    .rz-mb-md-05 {
        margin-bottom: 0.125rem !important;
    }

    .rz-mx-md-05,
    .rz-ml-md-05 {
        margin-left: 0.125rem !important;
    }

    .rz-ms-md-05 {
        margin-inline-start: 0.125rem !important;
    }

    .rz-ms-md-05 {
        margin-inline-end: 0.125rem !important;
    }

    .rz-m-md-1 {
        margin: 0.25rem !important;
    }

    .rz-my-md-1,
    .rz-mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .rz-mx-md-1,
    .rz-mr-md-1 {
        margin-right: 0.25rem !important;
    }

    .rz-my-md-1,
    .rz-mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .rz-mx-md-1,
    .rz-ml-md-1 {
        margin-left: 0.25rem !important;
    }

    .rz-ms-md-1 {
        margin-inline-start: 0.25rem !important;
    }

    .rz-ms-md-1 {
        margin-inline-end: 0.25rem !important;
    }

    .rz-m-md-2 {
        margin: 0.5rem !important;
    }

    .rz-my-md-2,
    .rz-mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .rz-mx-md-2,
    .rz-mr-md-2 {
        margin-right: 0.5rem !important;
    }

    .rz-my-md-2,
    .rz-mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .rz-mx-md-2,
    .rz-ml-md-2 {
        margin-left: 0.5rem !important;
    }

    .rz-ms-md-2 {
        margin-inline-start: 0.5rem !important;
    }

    .rz-ms-md-2 {
        margin-inline-end: 0.5rem !important;
    }

    .rz-m-md-3 {
        margin: 0.75rem !important;
    }

    .rz-my-md-3,
    .rz-mt-md-3 {
        margin-top: 0.75rem !important;
    }

    .rz-mx-md-3,
    .rz-mr-md-3 {
        margin-right: 0.75rem !important;
    }

    .rz-my-md-3,
    .rz-mb-md-3 {
        margin-bottom: 0.75rem !important;
    }

    .rz-mx-md-3,
    .rz-ml-md-3 {
        margin-left: 0.75rem !important;
    }

    .rz-ms-md-3 {
        margin-inline-start: 0.75rem !important;
    }

    .rz-ms-md-3 {
        margin-inline-end: 0.75rem !important;
    }

    .rz-m-md-4 {
        margin: 1rem !important;
    }

    .rz-my-md-4,
    .rz-mt-md-4 {
        margin-top: 1rem !important;
    }

    .rz-mx-md-4,
    .rz-mr-md-4 {
        margin-right: 1rem !important;
    }

    .rz-my-md-4,
    .rz-mb-md-4 {
        margin-bottom: 1rem !important;
    }

    .rz-mx-md-4,
    .rz-ml-md-4 {
        margin-left: 1rem !important;
    }

    .rz-ms-md-4 {
        margin-inline-start: 1rem !important;
    }

    .rz-ms-md-4 {
        margin-inline-end: 1rem !important;
    }

    .rz-m-md-5 {
        margin: 1.25rem !important;
    }

    .rz-my-md-5,
    .rz-mt-md-5 {
        margin-top: 1.25rem !important;
    }

    .rz-mx-md-5,
    .rz-mr-md-5 {
        margin-right: 1.25rem !important;
    }

    .rz-my-md-5,
    .rz-mb-md-5 {
        margin-bottom: 1.25rem !important;
    }

    .rz-mx-md-5,
    .rz-ml-md-5 {
        margin-left: 1.25rem !important;
    }

    .rz-ms-md-5 {
        margin-inline-start: 1.25rem !important;
    }

    .rz-ms-md-5 {
        margin-inline-end: 1.25rem !important;
    }

    .rz-m-md-6 {
        margin: 1.5rem !important;
    }

    .rz-my-md-6,
    .rz-mt-md-6 {
        margin-top: 1.5rem !important;
    }

    .rz-mx-md-6,
    .rz-mr-md-6 {
        margin-right: 1.5rem !important;
    }

    .rz-my-md-6,
    .rz-mb-md-6 {
        margin-bottom: 1.5rem !important;
    }

    .rz-mx-md-6,
    .rz-ml-md-6 {
        margin-left: 1.5rem !important;
    }

    .rz-ms-md-6 {
        margin-inline-start: 1.5rem !important;
    }

    .rz-ms-md-6 {
        margin-inline-end: 1.5rem !important;
    }

    .rz-m-md-7 {
        margin: 1.75rem !important;
    }

    .rz-my-md-7,
    .rz-mt-md-7 {
        margin-top: 1.75rem !important;
    }

    .rz-mx-md-7,
    .rz-mr-md-7 {
        margin-right: 1.75rem !important;
    }

    .rz-my-md-7,
    .rz-mb-md-7 {
        margin-bottom: 1.75rem !important;
    }

    .rz-mx-md-7,
    .rz-ml-md-7 {
        margin-left: 1.75rem !important;
    }

    .rz-ms-md-7 {
        margin-inline-start: 1.75rem !important;
    }

    .rz-ms-md-7 {
        margin-inline-end: 1.75rem !important;
    }

    .rz-m-md-8 {
        margin: 2rem !important;
    }

    .rz-my-md-8,
    .rz-mt-md-8 {
        margin-top: 2rem !important;
    }

    .rz-mx-md-8,
    .rz-mr-md-8 {
        margin-right: 2rem !important;
    }

    .rz-my-md-8,
    .rz-mb-md-8 {
        margin-bottom: 2rem !important;
    }

    .rz-mx-md-8,
    .rz-ml-md-8 {
        margin-left: 2rem !important;
    }

    .rz-ms-md-8 {
        margin-inline-start: 2rem !important;
    }

    .rz-ms-md-8 {
        margin-inline-end: 2rem !important;
    }

    .rz-m-md-9 {
        margin: 2.25rem !important;
    }

    .rz-my-md-9,
    .rz-mt-md-9 {
        margin-top: 2.25rem !important;
    }

    .rz-mx-md-9,
    .rz-mr-md-9 {
        margin-right: 2.25rem !important;
    }

    .rz-my-md-9,
    .rz-mb-md-9 {
        margin-bottom: 2.25rem !important;
    }

    .rz-mx-md-9,
    .rz-ml-md-9 {
        margin-left: 2.25rem !important;
    }

    .rz-ms-md-9 {
        margin-inline-start: 2.25rem !important;
    }

    .rz-ms-md-9 {
        margin-inline-end: 2.25rem !important;
    }

    .rz-m-md-10 {
        margin: 2.5rem !important;
    }

    .rz-my-md-10,
    .rz-mt-md-10 {
        margin-top: 2.5rem !important;
    }

    .rz-mx-md-10,
    .rz-mr-md-10 {
        margin-right: 2.5rem !important;
    }

    .rz-my-md-10,
    .rz-mb-md-10 {
        margin-bottom: 2.5rem !important;
    }

    .rz-mx-md-10,
    .rz-ml-md-10 {
        margin-left: 2.5rem !important;
    }

    .rz-ms-md-10 {
        margin-inline-start: 2.5rem !important;
    }

    .rz-ms-md-10 {
        margin-inline-end: 2.5rem !important;
    }

    .rz-m-md-11 {
        margin: 2.75rem !important;
    }

    .rz-my-md-11,
    .rz-mt-md-11 {
        margin-top: 2.75rem !important;
    }

    .rz-mx-md-11,
    .rz-mr-md-11 {
        margin-right: 2.75rem !important;
    }

    .rz-my-md-11,
    .rz-mb-md-11 {
        margin-bottom: 2.75rem !important;
    }

    .rz-mx-md-11,
    .rz-ml-md-11 {
        margin-left: 2.75rem !important;
    }

    .rz-ms-md-11 {
        margin-inline-start: 2.75rem !important;
    }

    .rz-ms-md-11 {
        margin-inline-end: 2.75rem !important;
    }

    .rz-m-md-12 {
        margin: 3rem !important;
    }

    .rz-my-md-12,
    .rz-mt-md-12 {
        margin-top: 3rem !important;
    }

    .rz-mx-md-12,
    .rz-mr-md-12 {
        margin-right: 3rem !important;
    }

    .rz-my-md-12,
    .rz-mb-md-12 {
        margin-bottom: 3rem !important;
    }

    .rz-mx-md-12,
    .rz-ml-md-12 {
        margin-left: 3rem !important;
    }

    .rz-ms-md-12 {
        margin-inline-start: 3rem !important;
    }

    .rz-ms-md-12 {
        margin-inline-end: 3rem !important;
    }

    .rz-p-md-0 {
        padding: 0 !important;
    }

    .rz-py-md-0,
    .rz-pt-md-0 {
        padding-top: 0 !important;
    }

    .rz-px-md-0,
    .rz-pr-md-0 {
        padding-right: 0 !important;
    }

    .rz-py-md-0,
    .rz-pb-md-0 {
        padding-bottom: 0 !important;
    }

    .rz-px-md-0,
    .rz-pl-md-0 {
        padding-left: 0 !important;
    }

    .rz-ps-md-0 {
        padding-inline-start: 0 !important;
    }

    .rz-ps-md-0 {
        padding-inline-end: 0 !important;
    }

    .rz-p-md-05 {
        padding: 0.125rem !important;
    }

    .rz-py-md-05,
    .rz-pt-md-05 {
        padding-top: 0.125rem !important;
    }

    .rz-px-md-05,
    .rz-pr-md-05 {
        padding-right: 0.125rem !important;
    }

    .rz-py-md-05,
    .rz-pb-md-05 {
        padding-bottom: 0.125rem !important;
    }

    .rz-px-md-05,
    .rz-pl-md-05 {
        padding-left: 0.125rem !important;
    }

    .rz-ps-md-05 {
        padding-inline-start: 0.125rem !important;
    }

    .rz-ps-md-05 {
        padding-inline-end: 0.125rem !important;
    }

    .rz-p-md-1 {
        padding: 0.25rem !important;
    }

    .rz-py-md-1,
    .rz-pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .rz-px-md-1,
    .rz-pr-md-1 {
        padding-right: 0.25rem !important;
    }

    .rz-py-md-1,
    .rz-pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .rz-px-md-1,
    .rz-pl-md-1 {
        padding-left: 0.25rem !important;
    }

    .rz-ps-md-1 {
        padding-inline-start: 0.25rem !important;
    }

    .rz-ps-md-1 {
        padding-inline-end: 0.25rem !important;
    }

    .rz-p-md-2 {
        padding: 0.5rem !important;
    }

    .rz-py-md-2,
    .rz-pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .rz-px-md-2,
    .rz-pr-md-2 {
        padding-right: 0.5rem !important;
    }

    .rz-py-md-2,
    .rz-pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .rz-px-md-2,
    .rz-pl-md-2 {
        padding-left: 0.5rem !important;
    }

    .rz-ps-md-2 {
        padding-inline-start: 0.5rem !important;
    }

    .rz-ps-md-2 {
        padding-inline-end: 0.5rem !important;
    }

    .rz-p-md-3 {
        padding: 0.75rem !important;
    }

    .rz-py-md-3,
    .rz-pt-md-3 {
        padding-top: 0.75rem !important;
    }

    .rz-px-md-3,
    .rz-pr-md-3 {
        padding-right: 0.75rem !important;
    }

    .rz-py-md-3,
    .rz-pb-md-3 {
        padding-bottom: 0.75rem !important;
    }

    .rz-px-md-3,
    .rz-pl-md-3 {
        padding-left: 0.75rem !important;
    }

    .rz-ps-md-3 {
        padding-inline-start: 0.75rem !important;
    }

    .rz-ps-md-3 {
        padding-inline-end: 0.75rem !important;
    }

    .rz-p-md-4 {
        padding: 1rem !important;
    }

    .rz-py-md-4,
    .rz-pt-md-4 {
        padding-top: 1rem !important;
    }

    .rz-px-md-4,
    .rz-pr-md-4 {
        padding-right: 1rem !important;
    }

    .rz-py-md-4,
    .rz-pb-md-4 {
        padding-bottom: 1rem !important;
    }

    .rz-px-md-4,
    .rz-pl-md-4 {
        padding-left: 1rem !important;
    }

    .rz-ps-md-4 {
        padding-inline-start: 1rem !important;
    }

    .rz-ps-md-4 {
        padding-inline-end: 1rem !important;
    }

    .rz-p-md-5 {
        padding: 1.25rem !important;
    }

    .rz-py-md-5,
    .rz-pt-md-5 {
        padding-top: 1.25rem !important;
    }

    .rz-px-md-5,
    .rz-pr-md-5 {
        padding-right: 1.25rem !important;
    }

    .rz-py-md-5,
    .rz-pb-md-5 {
        padding-bottom: 1.25rem !important;
    }

    .rz-px-md-5,
    .rz-pl-md-5 {
        padding-left: 1.25rem !important;
    }

    .rz-ps-md-5 {
        padding-inline-start: 1.25rem !important;
    }

    .rz-ps-md-5 {
        padding-inline-end: 1.25rem !important;
    }

    .rz-p-md-6 {
        padding: 1.5rem !important;
    }

    .rz-py-md-6,
    .rz-pt-md-6 {
        padding-top: 1.5rem !important;
    }

    .rz-px-md-6,
    .rz-pr-md-6 {
        padding-right: 1.5rem !important;
    }

    .rz-py-md-6,
    .rz-pb-md-6 {
        padding-bottom: 1.5rem !important;
    }

    .rz-px-md-6,
    .rz-pl-md-6 {
        padding-left: 1.5rem !important;
    }

    .rz-ps-md-6 {
        padding-inline-start: 1.5rem !important;
    }

    .rz-ps-md-6 {
        padding-inline-end: 1.5rem !important;
    }

    .rz-p-md-7 {
        padding: 1.75rem !important;
    }

    .rz-py-md-7,
    .rz-pt-md-7 {
        padding-top: 1.75rem !important;
    }

    .rz-px-md-7,
    .rz-pr-md-7 {
        padding-right: 1.75rem !important;
    }

    .rz-py-md-7,
    .rz-pb-md-7 {
        padding-bottom: 1.75rem !important;
    }

    .rz-px-md-7,
    .rz-pl-md-7 {
        padding-left: 1.75rem !important;
    }

    .rz-ps-md-7 {
        padding-inline-start: 1.75rem !important;
    }

    .rz-ps-md-7 {
        padding-inline-end: 1.75rem !important;
    }

    .rz-p-md-8 {
        padding: 2rem !important;
    }

    .rz-py-md-8,
    .rz-pt-md-8 {
        padding-top: 2rem !important;
    }

    .rz-px-md-8,
    .rz-pr-md-8 {
        padding-right: 2rem !important;
    }

    .rz-py-md-8,
    .rz-pb-md-8 {
        padding-bottom: 2rem !important;
    }

    .rz-px-md-8,
    .rz-pl-md-8 {
        padding-left: 2rem !important;
    }

    .rz-ps-md-8 {
        padding-inline-start: 2rem !important;
    }

    .rz-ps-md-8 {
        padding-inline-end: 2rem !important;
    }

    .rz-p-md-9 {
        padding: 2.25rem !important;
    }

    .rz-py-md-9,
    .rz-pt-md-9 {
        padding-top: 2.25rem !important;
    }

    .rz-px-md-9,
    .rz-pr-md-9 {
        padding-right: 2.25rem !important;
    }

    .rz-py-md-9,
    .rz-pb-md-9 {
        padding-bottom: 2.25rem !important;
    }

    .rz-px-md-9,
    .rz-pl-md-9 {
        padding-left: 2.25rem !important;
    }

    .rz-ps-md-9 {
        padding-inline-start: 2.25rem !important;
    }

    .rz-ps-md-9 {
        padding-inline-end: 2.25rem !important;
    }

    .rz-p-md-10 {
        padding: 2.5rem !important;
    }

    .rz-py-md-10,
    .rz-pt-md-10 {
        padding-top: 2.5rem !important;
    }

    .rz-px-md-10,
    .rz-pr-md-10 {
        padding-right: 2.5rem !important;
    }

    .rz-py-md-10,
    .rz-pb-md-10 {
        padding-bottom: 2.5rem !important;
    }

    .rz-px-md-10,
    .rz-pl-md-10 {
        padding-left: 2.5rem !important;
    }

    .rz-ps-md-10 {
        padding-inline-start: 2.5rem !important;
    }

    .rz-ps-md-10 {
        padding-inline-end: 2.5rem !important;
    }

    .rz-p-md-11 {
        padding: 2.75rem !important;
    }

    .rz-py-md-11,
    .rz-pt-md-11 {
        padding-top: 2.75rem !important;
    }

    .rz-px-md-11,
    .rz-pr-md-11 {
        padding-right: 2.75rem !important;
    }

    .rz-py-md-11,
    .rz-pb-md-11 {
        padding-bottom: 2.75rem !important;
    }

    .rz-px-md-11,
    .rz-pl-md-11 {
        padding-left: 2.75rem !important;
    }

    .rz-ps-md-11 {
        padding-inline-start: 2.75rem !important;
    }

    .rz-ps-md-11 {
        padding-inline-end: 2.75rem !important;
    }

    .rz-p-md-12 {
        padding: 3rem !important;
    }

    .rz-py-md-12,
    .rz-pt-md-12 {
        padding-top: 3rem !important;
    }

    .rz-px-md-12,
    .rz-pr-md-12 {
        padding-right: 3rem !important;
    }

    .rz-py-md-12,
    .rz-pb-md-12 {
        padding-bottom: 3rem !important;
    }

    .rz-px-md-12,
    .rz-pl-md-12 {
        padding-left: 3rem !important;
    }

    .rz-ps-md-12 {
        padding-inline-start: 3rem !important;
    }

    .rz-ps-md-12 {
        padding-inline-end: 3rem !important;
    }

    .rz-m-md-auto {
        margin: auto !important;
    }

    .rz-my-md-auto,
    .rz-mt-md-auto {
        margin-top: auto !important;
    }

    .rz-mx-md-auto,
    .rz-mr-md-auto {
        margin-right: auto !important;
    }

    .rz-my-md-auto,
    .rz-mb-md-auto {
        margin-bottom: auto !important;
    }

    .rz-mx-md-auto,
    .rz-ml-md-auto {
        margin-left: auto !important;
    }

    .rz-ms-md-auto {
        margin-inline-start: auto !important;
    }

    .rz-me-md-auto {
        margin-inline-end: auto !important;
    }
}

@media (min-width: 1280px) {
    .rz-m-lg-0 {
        margin: 0 !important;
    }

    .rz-my-lg-0,
    .rz-mt-lg-0 {
        margin-top: 0 !important;
    }

    .rz-mx-lg-0,
    .rz-mr-lg-0 {
        margin-right: 0 !important;
    }

    .rz-my-lg-0,
    .rz-mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .rz-mx-lg-0,
    .rz-ml-lg-0 {
        margin-left: 0 !important;
    }

    .rz-ms-lg-0 {
        margin-inline-start: 0 !important;
    }

    .rz-ms-lg-0 {
        margin-inline-end: 0 !important;
    }

    .rz-m-lg-05 {
        margin: 0.125rem !important;
    }

    .rz-my-lg-05,
    .rz-mt-lg-05 {
        margin-top: 0.125rem !important;
    }

    .rz-mx-lg-05,
    .rz-mr-lg-05 {
        margin-right: 0.125rem !important;
    }

    .rz-my-lg-05,
    .rz-mb-lg-05 {
        margin-bottom: 0.125rem !important;
    }

    .rz-mx-lg-05,
    .rz-ml-lg-05 {
        margin-left: 0.125rem !important;
    }

    .rz-ms-lg-05 {
        margin-inline-start: 0.125rem !important;
    }

    .rz-ms-lg-05 {
        margin-inline-end: 0.125rem !important;
    }

    .rz-m-lg-1 {
        margin: 0.25rem !important;
    }

    .rz-my-lg-1,
    .rz-mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .rz-mx-lg-1,
    .rz-mr-lg-1 {
        margin-right: 0.25rem !important;
    }

    .rz-my-lg-1,
    .rz-mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .rz-mx-lg-1,
    .rz-ml-lg-1 {
        margin-left: 0.25rem !important;
    }

    .rz-ms-lg-1 {
        margin-inline-start: 0.25rem !important;
    }

    .rz-ms-lg-1 {
        margin-inline-end: 0.25rem !important;
    }

    .rz-m-lg-2 {
        margin: 0.5rem !important;
    }

    .rz-my-lg-2,
    .rz-mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .rz-mx-lg-2,
    .rz-mr-lg-2 {
        margin-right: 0.5rem !important;
    }

    .rz-my-lg-2,
    .rz-mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .rz-mx-lg-2,
    .rz-ml-lg-2 {
        margin-left: 0.5rem !important;
    }

    .rz-ms-lg-2 {
        margin-inline-start: 0.5rem !important;
    }

    .rz-ms-lg-2 {
        margin-inline-end: 0.5rem !important;
    }

    .rz-m-lg-3 {
        margin: 0.75rem !important;
    }

    .rz-my-lg-3,
    .rz-mt-lg-3 {
        margin-top: 0.75rem !important;
    }

    .rz-mx-lg-3,
    .rz-mr-lg-3 {
        margin-right: 0.75rem !important;
    }

    .rz-my-lg-3,
    .rz-mb-lg-3 {
        margin-bottom: 0.75rem !important;
    }

    .rz-mx-lg-3,
    .rz-ml-lg-3 {
        margin-left: 0.75rem !important;
    }

    .rz-ms-lg-3 {
        margin-inline-start: 0.75rem !important;
    }

    .rz-ms-lg-3 {
        margin-inline-end: 0.75rem !important;
    }

    .rz-m-lg-4 {
        margin: 1rem !important;
    }

    .rz-my-lg-4,
    .rz-mt-lg-4 {
        margin-top: 1rem !important;
    }

    .rz-mx-lg-4,
    .rz-mr-lg-4 {
        margin-right: 1rem !important;
    }

    .rz-my-lg-4,
    .rz-mb-lg-4 {
        margin-bottom: 1rem !important;
    }

    .rz-mx-lg-4,
    .rz-ml-lg-4 {
        margin-left: 1rem !important;
    }

    .rz-ms-lg-4 {
        margin-inline-start: 1rem !important;
    }

    .rz-ms-lg-4 {
        margin-inline-end: 1rem !important;
    }

    .rz-m-lg-5 {
        margin: 1.25rem !important;
    }

    .rz-my-lg-5,
    .rz-mt-lg-5 {
        margin-top: 1.25rem !important;
    }

    .rz-mx-lg-5,
    .rz-mr-lg-5 {
        margin-right: 1.25rem !important;
    }

    .rz-my-lg-5,
    .rz-mb-lg-5 {
        margin-bottom: 1.25rem !important;
    }

    .rz-mx-lg-5,
    .rz-ml-lg-5 {
        margin-left: 1.25rem !important;
    }

    .rz-ms-lg-5 {
        margin-inline-start: 1.25rem !important;
    }

    .rz-ms-lg-5 {
        margin-inline-end: 1.25rem !important;
    }

    .rz-m-lg-6 {
        margin: 1.5rem !important;
    }

    .rz-my-lg-6,
    .rz-mt-lg-6 {
        margin-top: 1.5rem !important;
    }

    .rz-mx-lg-6,
    .rz-mr-lg-6 {
        margin-right: 1.5rem !important;
    }

    .rz-my-lg-6,
    .rz-mb-lg-6 {
        margin-bottom: 1.5rem !important;
    }

    .rz-mx-lg-6,
    .rz-ml-lg-6 {
        margin-left: 1.5rem !important;
    }

    .rz-ms-lg-6 {
        margin-inline-start: 1.5rem !important;
    }

    .rz-ms-lg-6 {
        margin-inline-end: 1.5rem !important;
    }

    .rz-m-lg-7 {
        margin: 1.75rem !important;
    }

    .rz-my-lg-7,
    .rz-mt-lg-7 {
        margin-top: 1.75rem !important;
    }

    .rz-mx-lg-7,
    .rz-mr-lg-7 {
        margin-right: 1.75rem !important;
    }

    .rz-my-lg-7,
    .rz-mb-lg-7 {
        margin-bottom: 1.75rem !important;
    }

    .rz-mx-lg-7,
    .rz-ml-lg-7 {
        margin-left: 1.75rem !important;
    }

    .rz-ms-lg-7 {
        margin-inline-start: 1.75rem !important;
    }

    .rz-ms-lg-7 {
        margin-inline-end: 1.75rem !important;
    }

    .rz-m-lg-8 {
        margin: 2rem !important;
    }

    .rz-my-lg-8,
    .rz-mt-lg-8 {
        margin-top: 2rem !important;
    }

    .rz-mx-lg-8,
    .rz-mr-lg-8 {
        margin-right: 2rem !important;
    }

    .rz-my-lg-8,
    .rz-mb-lg-8 {
        margin-bottom: 2rem !important;
    }

    .rz-mx-lg-8,
    .rz-ml-lg-8 {
        margin-left: 2rem !important;
    }

    .rz-ms-lg-8 {
        margin-inline-start: 2rem !important;
    }

    .rz-ms-lg-8 {
        margin-inline-end: 2rem !important;
    }

    .rz-m-lg-9 {
        margin: 2.25rem !important;
    }

    .rz-my-lg-9,
    .rz-mt-lg-9 {
        margin-top: 2.25rem !important;
    }

    .rz-mx-lg-9,
    .rz-mr-lg-9 {
        margin-right: 2.25rem !important;
    }

    .rz-my-lg-9,
    .rz-mb-lg-9 {
        margin-bottom: 2.25rem !important;
    }

    .rz-mx-lg-9,
    .rz-ml-lg-9 {
        margin-left: 2.25rem !important;
    }

    .rz-ms-lg-9 {
        margin-inline-start: 2.25rem !important;
    }

    .rz-ms-lg-9 {
        margin-inline-end: 2.25rem !important;
    }

    .rz-m-lg-10 {
        margin: 2.5rem !important;
    }

    .rz-my-lg-10,
    .rz-mt-lg-10 {
        margin-top: 2.5rem !important;
    }

    .rz-mx-lg-10,
    .rz-mr-lg-10 {
        margin-right: 2.5rem !important;
    }

    .rz-my-lg-10,
    .rz-mb-lg-10 {
        margin-bottom: 2.5rem !important;
    }

    .rz-mx-lg-10,
    .rz-ml-lg-10 {
        margin-left: 2.5rem !important;
    }

    .rz-ms-lg-10 {
        margin-inline-start: 2.5rem !important;
    }

    .rz-ms-lg-10 {
        margin-inline-end: 2.5rem !important;
    }

    .rz-m-lg-11 {
        margin: 2.75rem !important;
    }

    .rz-my-lg-11,
    .rz-mt-lg-11 {
        margin-top: 2.75rem !important;
    }

    .rz-mx-lg-11,
    .rz-mr-lg-11 {
        margin-right: 2.75rem !important;
    }

    .rz-my-lg-11,
    .rz-mb-lg-11 {
        margin-bottom: 2.75rem !important;
    }

    .rz-mx-lg-11,
    .rz-ml-lg-11 {
        margin-left: 2.75rem !important;
    }

    .rz-ms-lg-11 {
        margin-inline-start: 2.75rem !important;
    }

    .rz-ms-lg-11 {
        margin-inline-end: 2.75rem !important;
    }

    .rz-m-lg-12 {
        margin: 3rem !important;
    }

    .rz-my-lg-12,
    .rz-mt-lg-12 {
        margin-top: 3rem !important;
    }

    .rz-mx-lg-12,
    .rz-mr-lg-12 {
        margin-right: 3rem !important;
    }

    .rz-my-lg-12,
    .rz-mb-lg-12 {
        margin-bottom: 3rem !important;
    }

    .rz-mx-lg-12,
    .rz-ml-lg-12 {
        margin-left: 3rem !important;
    }

    .rz-ms-lg-12 {
        margin-inline-start: 3rem !important;
    }

    .rz-ms-lg-12 {
        margin-inline-end: 3rem !important;
    }

    .rz-p-lg-0 {
        padding: 0 !important;
    }

    .rz-py-lg-0,
    .rz-pt-lg-0 {
        padding-top: 0 !important;
    }

    .rz-px-lg-0,
    .rz-pr-lg-0 {
        padding-right: 0 !important;
    }

    .rz-py-lg-0,
    .rz-pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .rz-px-lg-0,
    .rz-pl-lg-0 {
        padding-left: 0 !important;
    }

    .rz-ps-lg-0 {
        padding-inline-start: 0 !important;
    }

    .rz-ps-lg-0 {
        padding-inline-end: 0 !important;
    }

    .rz-p-lg-05 {
        padding: 0.125rem !important;
    }

    .rz-py-lg-05,
    .rz-pt-lg-05 {
        padding-top: 0.125rem !important;
    }

    .rz-px-lg-05,
    .rz-pr-lg-05 {
        padding-right: 0.125rem !important;
    }

    .rz-py-lg-05,
    .rz-pb-lg-05 {
        padding-bottom: 0.125rem !important;
    }

    .rz-px-lg-05,
    .rz-pl-lg-05 {
        padding-left: 0.125rem !important;
    }

    .rz-ps-lg-05 {
        padding-inline-start: 0.125rem !important;
    }

    .rz-ps-lg-05 {
        padding-inline-end: 0.125rem !important;
    }

    .rz-p-lg-1 {
        padding: 0.25rem !important;
    }

    .rz-py-lg-1,
    .rz-pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .rz-px-lg-1,
    .rz-pr-lg-1 {
        padding-right: 0.25rem !important;
    }

    .rz-py-lg-1,
    .rz-pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .rz-px-lg-1,
    .rz-pl-lg-1 {
        padding-left: 0.25rem !important;
    }

    .rz-ps-lg-1 {
        padding-inline-start: 0.25rem !important;
    }

    .rz-ps-lg-1 {
        padding-inline-end: 0.25rem !important;
    }

    .rz-p-lg-2 {
        padding: 0.5rem !important;
    }

    .rz-py-lg-2,
    .rz-pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .rz-px-lg-2,
    .rz-pr-lg-2 {
        padding-right: 0.5rem !important;
    }

    .rz-py-lg-2,
    .rz-pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .rz-px-lg-2,
    .rz-pl-lg-2 {
        padding-left: 0.5rem !important;
    }

    .rz-ps-lg-2 {
        padding-inline-start: 0.5rem !important;
    }

    .rz-ps-lg-2 {
        padding-inline-end: 0.5rem !important;
    }

    .rz-p-lg-3 {
        padding: 0.75rem !important;
    }

    .rz-py-lg-3,
    .rz-pt-lg-3 {
        padding-top: 0.75rem !important;
    }

    .rz-px-lg-3,
    .rz-pr-lg-3 {
        padding-right: 0.75rem !important;
    }

    .rz-py-lg-3,
    .rz-pb-lg-3 {
        padding-bottom: 0.75rem !important;
    }

    .rz-px-lg-3,
    .rz-pl-lg-3 {
        padding-left: 0.75rem !important;
    }

    .rz-ps-lg-3 {
        padding-inline-start: 0.75rem !important;
    }

    .rz-ps-lg-3 {
        padding-inline-end: 0.75rem !important;
    }

    .rz-p-lg-4 {
        padding: 1rem !important;
    }

    .rz-py-lg-4,
    .rz-pt-lg-4 {
        padding-top: 1rem !important;
    }

    .rz-px-lg-4,
    .rz-pr-lg-4 {
        padding-right: 1rem !important;
    }

    .rz-py-lg-4,
    .rz-pb-lg-4 {
        padding-bottom: 1rem !important;
    }

    .rz-px-lg-4,
    .rz-pl-lg-4 {
        padding-left: 1rem !important;
    }

    .rz-ps-lg-4 {
        padding-inline-start: 1rem !important;
    }

    .rz-ps-lg-4 {
        padding-inline-end: 1rem !important;
    }

    .rz-p-lg-5 {
        padding: 1.25rem !important;
    }

    .rz-py-lg-5,
    .rz-pt-lg-5 {
        padding-top: 1.25rem !important;
    }

    .rz-px-lg-5,
    .rz-pr-lg-5 {
        padding-right: 1.25rem !important;
    }

    .rz-py-lg-5,
    .rz-pb-lg-5 {
        padding-bottom: 1.25rem !important;
    }

    .rz-px-lg-5,
    .rz-pl-lg-5 {
        padding-left: 1.25rem !important;
    }

    .rz-ps-lg-5 {
        padding-inline-start: 1.25rem !important;
    }

    .rz-ps-lg-5 {
        padding-inline-end: 1.25rem !important;
    }

    .rz-p-lg-6 {
        padding: 1.5rem !important;
    }

    .rz-py-lg-6,
    .rz-pt-lg-6 {
        padding-top: 1.5rem !important;
    }

    .rz-px-lg-6,
    .rz-pr-lg-6 {
        padding-right: 1.5rem !important;
    }

    .rz-py-lg-6,
    .rz-pb-lg-6 {
        padding-bottom: 1.5rem !important;
    }

    .rz-px-lg-6,
    .rz-pl-lg-6 {
        padding-left: 1.5rem !important;
    }

    .rz-ps-lg-6 {
        padding-inline-start: 1.5rem !important;
    }

    .rz-ps-lg-6 {
        padding-inline-end: 1.5rem !important;
    }

    .rz-p-lg-7 {
        padding: 1.75rem !important;
    }

    .rz-py-lg-7,
    .rz-pt-lg-7 {
        padding-top: 1.75rem !important;
    }

    .rz-px-lg-7,
    .rz-pr-lg-7 {
        padding-right: 1.75rem !important;
    }

    .rz-py-lg-7,
    .rz-pb-lg-7 {
        padding-bottom: 1.75rem !important;
    }

    .rz-px-lg-7,
    .rz-pl-lg-7 {
        padding-left: 1.75rem !important;
    }

    .rz-ps-lg-7 {
        padding-inline-start: 1.75rem !important;
    }

    .rz-ps-lg-7 {
        padding-inline-end: 1.75rem !important;
    }

    .rz-p-lg-8 {
        padding: 2rem !important;
    }

    .rz-py-lg-8,
    .rz-pt-lg-8 {
        padding-top: 2rem !important;
    }

    .rz-px-lg-8,
    .rz-pr-lg-8 {
        padding-right: 2rem !important;
    }

    .rz-py-lg-8,
    .rz-pb-lg-8 {
        padding-bottom: 2rem !important;
    }

    .rz-px-lg-8,
    .rz-pl-lg-8 {
        padding-left: 2rem !important;
    }

    .rz-ps-lg-8 {
        padding-inline-start: 2rem !important;
    }

    .rz-ps-lg-8 {
        padding-inline-end: 2rem !important;
    }

    .rz-p-lg-9 {
        padding: 2.25rem !important;
    }

    .rz-py-lg-9,
    .rz-pt-lg-9 {
        padding-top: 2.25rem !important;
    }

    .rz-px-lg-9,
    .rz-pr-lg-9 {
        padding-right: 2.25rem !important;
    }

    .rz-py-lg-9,
    .rz-pb-lg-9 {
        padding-bottom: 2.25rem !important;
    }

    .rz-px-lg-9,
    .rz-pl-lg-9 {
        padding-left: 2.25rem !important;
    }

    .rz-ps-lg-9 {
        padding-inline-start: 2.25rem !important;
    }

    .rz-ps-lg-9 {
        padding-inline-end: 2.25rem !important;
    }

    .rz-p-lg-10 {
        padding: 2.5rem !important;
    }

    .rz-py-lg-10,
    .rz-pt-lg-10 {
        padding-top: 2.5rem !important;
    }

    .rz-px-lg-10,
    .rz-pr-lg-10 {
        padding-right: 2.5rem !important;
    }

    .rz-py-lg-10,
    .rz-pb-lg-10 {
        padding-bottom: 2.5rem !important;
    }

    .rz-px-lg-10,
    .rz-pl-lg-10 {
        padding-left: 2.5rem !important;
    }

    .rz-ps-lg-10 {
        padding-inline-start: 2.5rem !important;
    }

    .rz-ps-lg-10 {
        padding-inline-end: 2.5rem !important;
    }

    .rz-p-lg-11 {
        padding: 2.75rem !important;
    }

    .rz-py-lg-11,
    .rz-pt-lg-11 {
        padding-top: 2.75rem !important;
    }

    .rz-px-lg-11,
    .rz-pr-lg-11 {
        padding-right: 2.75rem !important;
    }

    .rz-py-lg-11,
    .rz-pb-lg-11 {
        padding-bottom: 2.75rem !important;
    }

    .rz-px-lg-11,
    .rz-pl-lg-11 {
        padding-left: 2.75rem !important;
    }

    .rz-ps-lg-11 {
        padding-inline-start: 2.75rem !important;
    }

    .rz-ps-lg-11 {
        padding-inline-end: 2.75rem !important;
    }

    .rz-p-lg-12 {
        padding: 3rem !important;
    }

    .rz-py-lg-12,
    .rz-pt-lg-12 {
        padding-top: 3rem !important;
    }

    .rz-px-lg-12,
    .rz-pr-lg-12 {
        padding-right: 3rem !important;
    }

    .rz-py-lg-12,
    .rz-pb-lg-12 {
        padding-bottom: 3rem !important;
    }

    .rz-px-lg-12,
    .rz-pl-lg-12 {
        padding-left: 3rem !important;
    }

    .rz-ps-lg-12 {
        padding-inline-start: 3rem !important;
    }

    .rz-ps-lg-12 {
        padding-inline-end: 3rem !important;
    }

    .rz-m-lg-auto {
        margin: auto !important;
    }

    .rz-my-lg-auto,
    .rz-mt-lg-auto {
        margin-top: auto !important;
    }

    .rz-mx-lg-auto,
    .rz-mr-lg-auto {
        margin-right: auto !important;
    }

    .rz-my-lg-auto,
    .rz-mb-lg-auto {
        margin-bottom: auto !important;
    }

    .rz-mx-lg-auto,
    .rz-ml-lg-auto {
        margin-left: auto !important;
    }

    .rz-ms-lg-auto {
        margin-inline-start: auto !important;
    }

    .rz-me-lg-auto {
        margin-inline-end: auto !important;
    }
}

@media (min-width: 1920px) {
    .rz-m-xl-0 {
        margin: 0 !important;
    }

    .rz-my-xl-0,
    .rz-mt-xl-0 {
        margin-top: 0 !important;
    }

    .rz-mx-xl-0,
    .rz-mr-xl-0 {
        margin-right: 0 !important;
    }

    .rz-my-xl-0,
    .rz-mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .rz-mx-xl-0,
    .rz-ml-xl-0 {
        margin-left: 0 !important;
    }

    .rz-ms-xl-0 {
        margin-inline-start: 0 !important;
    }

    .rz-ms-xl-0 {
        margin-inline-end: 0 !important;
    }

    .rz-m-xl-05 {
        margin: 0.125rem !important;
    }

    .rz-my-xl-05,
    .rz-mt-xl-05 {
        margin-top: 0.125rem !important;
    }

    .rz-mx-xl-05,
    .rz-mr-xl-05 {
        margin-right: 0.125rem !important;
    }

    .rz-my-xl-05,
    .rz-mb-xl-05 {
        margin-bottom: 0.125rem !important;
    }

    .rz-mx-xl-05,
    .rz-ml-xl-05 {
        margin-left: 0.125rem !important;
    }

    .rz-ms-xl-05 {
        margin-inline-start: 0.125rem !important;
    }

    .rz-ms-xl-05 {
        margin-inline-end: 0.125rem !important;
    }

    .rz-m-xl-1 {
        margin: 0.25rem !important;
    }

    .rz-my-xl-1,
    .rz-mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .rz-mx-xl-1,
    .rz-mr-xl-1 {
        margin-right: 0.25rem !important;
    }

    .rz-my-xl-1,
    .rz-mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .rz-mx-xl-1,
    .rz-ml-xl-1 {
        margin-left: 0.25rem !important;
    }

    .rz-ms-xl-1 {
        margin-inline-start: 0.25rem !important;
    }

    .rz-ms-xl-1 {
        margin-inline-end: 0.25rem !important;
    }

    .rz-m-xl-2 {
        margin: 0.5rem !important;
    }

    .rz-my-xl-2,
    .rz-mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .rz-mx-xl-2,
    .rz-mr-xl-2 {
        margin-right: 0.5rem !important;
    }

    .rz-my-xl-2,
    .rz-mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .rz-mx-xl-2,
    .rz-ml-xl-2 {
        margin-left: 0.5rem !important;
    }

    .rz-ms-xl-2 {
        margin-inline-start: 0.5rem !important;
    }

    .rz-ms-xl-2 {
        margin-inline-end: 0.5rem !important;
    }

    .rz-m-xl-3 {
        margin: 0.75rem !important;
    }

    .rz-my-xl-3,
    .rz-mt-xl-3 {
        margin-top: 0.75rem !important;
    }

    .rz-mx-xl-3,
    .rz-mr-xl-3 {
        margin-right: 0.75rem !important;
    }

    .rz-my-xl-3,
    .rz-mb-xl-3 {
        margin-bottom: 0.75rem !important;
    }

    .rz-mx-xl-3,
    .rz-ml-xl-3 {
        margin-left: 0.75rem !important;
    }

    .rz-ms-xl-3 {
        margin-inline-start: 0.75rem !important;
    }

    .rz-ms-xl-3 {
        margin-inline-end: 0.75rem !important;
    }

    .rz-m-xl-4 {
        margin: 1rem !important;
    }

    .rz-my-xl-4,
    .rz-mt-xl-4 {
        margin-top: 1rem !important;
    }

    .rz-mx-xl-4,
    .rz-mr-xl-4 {
        margin-right: 1rem !important;
    }

    .rz-my-xl-4,
    .rz-mb-xl-4 {
        margin-bottom: 1rem !important;
    }

    .rz-mx-xl-4,
    .rz-ml-xl-4 {
        margin-left: 1rem !important;
    }

    .rz-ms-xl-4 {
        margin-inline-start: 1rem !important;
    }

    .rz-ms-xl-4 {
        margin-inline-end: 1rem !important;
    }

    .rz-m-xl-5 {
        margin: 1.25rem !important;
    }

    .rz-my-xl-5,
    .rz-mt-xl-5 {
        margin-top: 1.25rem !important;
    }

    .rz-mx-xl-5,
    .rz-mr-xl-5 {
        margin-right: 1.25rem !important;
    }

    .rz-my-xl-5,
    .rz-mb-xl-5 {
        margin-bottom: 1.25rem !important;
    }

    .rz-mx-xl-5,
    .rz-ml-xl-5 {
        margin-left: 1.25rem !important;
    }

    .rz-ms-xl-5 {
        margin-inline-start: 1.25rem !important;
    }

    .rz-ms-xl-5 {
        margin-inline-end: 1.25rem !important;
    }

    .rz-m-xl-6 {
        margin: 1.5rem !important;
    }

    .rz-my-xl-6,
    .rz-mt-xl-6 {
        margin-top: 1.5rem !important;
    }

    .rz-mx-xl-6,
    .rz-mr-xl-6 {
        margin-right: 1.5rem !important;
    }

    .rz-my-xl-6,
    .rz-mb-xl-6 {
        margin-bottom: 1.5rem !important;
    }

    .rz-mx-xl-6,
    .rz-ml-xl-6 {
        margin-left: 1.5rem !important;
    }

    .rz-ms-xl-6 {
        margin-inline-start: 1.5rem !important;
    }

    .rz-ms-xl-6 {
        margin-inline-end: 1.5rem !important;
    }

    .rz-m-xl-7 {
        margin: 1.75rem !important;
    }

    .rz-my-xl-7,
    .rz-mt-xl-7 {
        margin-top: 1.75rem !important;
    }

    .rz-mx-xl-7,
    .rz-mr-xl-7 {
        margin-right: 1.75rem !important;
    }

    .rz-my-xl-7,
    .rz-mb-xl-7 {
        margin-bottom: 1.75rem !important;
    }

    .rz-mx-xl-7,
    .rz-ml-xl-7 {
        margin-left: 1.75rem !important;
    }

    .rz-ms-xl-7 {
        margin-inline-start: 1.75rem !important;
    }

    .rz-ms-xl-7 {
        margin-inline-end: 1.75rem !important;
    }

    .rz-m-xl-8 {
        margin: 2rem !important;
    }

    .rz-my-xl-8,
    .rz-mt-xl-8 {
        margin-top: 2rem !important;
    }

    .rz-mx-xl-8,
    .rz-mr-xl-8 {
        margin-right: 2rem !important;
    }

    .rz-my-xl-8,
    .rz-mb-xl-8 {
        margin-bottom: 2rem !important;
    }

    .rz-mx-xl-8,
    .rz-ml-xl-8 {
        margin-left: 2rem !important;
    }

    .rz-ms-xl-8 {
        margin-inline-start: 2rem !important;
    }

    .rz-ms-xl-8 {
        margin-inline-end: 2rem !important;
    }

    .rz-m-xl-9 {
        margin: 2.25rem !important;
    }

    .rz-my-xl-9,
    .rz-mt-xl-9 {
        margin-top: 2.25rem !important;
    }

    .rz-mx-xl-9,
    .rz-mr-xl-9 {
        margin-right: 2.25rem !important;
    }

    .rz-my-xl-9,
    .rz-mb-xl-9 {
        margin-bottom: 2.25rem !important;
    }

    .rz-mx-xl-9,
    .rz-ml-xl-9 {
        margin-left: 2.25rem !important;
    }

    .rz-ms-xl-9 {
        margin-inline-start: 2.25rem !important;
    }

    .rz-ms-xl-9 {
        margin-inline-end: 2.25rem !important;
    }

    .rz-m-xl-10 {
        margin: 2.5rem !important;
    }

    .rz-my-xl-10,
    .rz-mt-xl-10 {
        margin-top: 2.5rem !important;
    }

    .rz-mx-xl-10,
    .rz-mr-xl-10 {
        margin-right: 2.5rem !important;
    }

    .rz-my-xl-10,
    .rz-mb-xl-10 {
        margin-bottom: 2.5rem !important;
    }

    .rz-mx-xl-10,
    .rz-ml-xl-10 {
        margin-left: 2.5rem !important;
    }

    .rz-ms-xl-10 {
        margin-inline-start: 2.5rem !important;
    }

    .rz-ms-xl-10 {
        margin-inline-end: 2.5rem !important;
    }

    .rz-m-xl-11 {
        margin: 2.75rem !important;
    }

    .rz-my-xl-11,
    .rz-mt-xl-11 {
        margin-top: 2.75rem !important;
    }

    .rz-mx-xl-11,
    .rz-mr-xl-11 {
        margin-right: 2.75rem !important;
    }

    .rz-my-xl-11,
    .rz-mb-xl-11 {
        margin-bottom: 2.75rem !important;
    }

    .rz-mx-xl-11,
    .rz-ml-xl-11 {
        margin-left: 2.75rem !important;
    }

    .rz-ms-xl-11 {
        margin-inline-start: 2.75rem !important;
    }

    .rz-ms-xl-11 {
        margin-inline-end: 2.75rem !important;
    }

    .rz-m-xl-12 {
        margin: 3rem !important;
    }

    .rz-my-xl-12,
    .rz-mt-xl-12 {
        margin-top: 3rem !important;
    }

    .rz-mx-xl-12,
    .rz-mr-xl-12 {
        margin-right: 3rem !important;
    }

    .rz-my-xl-12,
    .rz-mb-xl-12 {
        margin-bottom: 3rem !important;
    }

    .rz-mx-xl-12,
    .rz-ml-xl-12 {
        margin-left: 3rem !important;
    }

    .rz-ms-xl-12 {
        margin-inline-start: 3rem !important;
    }

    .rz-ms-xl-12 {
        margin-inline-end: 3rem !important;
    }

    .rz-p-xl-0 {
        padding: 0 !important;
    }

    .rz-py-xl-0,
    .rz-pt-xl-0 {
        padding-top: 0 !important;
    }

    .rz-px-xl-0,
    .rz-pr-xl-0 {
        padding-right: 0 !important;
    }

    .rz-py-xl-0,
    .rz-pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .rz-px-xl-0,
    .rz-pl-xl-0 {
        padding-left: 0 !important;
    }

    .rz-ps-xl-0 {
        padding-inline-start: 0 !important;
    }

    .rz-ps-xl-0 {
        padding-inline-end: 0 !important;
    }

    .rz-p-xl-05 {
        padding: 0.125rem !important;
    }

    .rz-py-xl-05,
    .rz-pt-xl-05 {
        padding-top: 0.125rem !important;
    }

    .rz-px-xl-05,
    .rz-pr-xl-05 {
        padding-right: 0.125rem !important;
    }

    .rz-py-xl-05,
    .rz-pb-xl-05 {
        padding-bottom: 0.125rem !important;
    }

    .rz-px-xl-05,
    .rz-pl-xl-05 {
        padding-left: 0.125rem !important;
    }

    .rz-ps-xl-05 {
        padding-inline-start: 0.125rem !important;
    }

    .rz-ps-xl-05 {
        padding-inline-end: 0.125rem !important;
    }

    .rz-p-xl-1 {
        padding: 0.25rem !important;
    }

    .rz-py-xl-1,
    .rz-pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .rz-px-xl-1,
    .rz-pr-xl-1 {
        padding-right: 0.25rem !important;
    }

    .rz-py-xl-1,
    .rz-pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .rz-px-xl-1,
    .rz-pl-xl-1 {
        padding-left: 0.25rem !important;
    }

    .rz-ps-xl-1 {
        padding-inline-start: 0.25rem !important;
    }

    .rz-ps-xl-1 {
        padding-inline-end: 0.25rem !important;
    }

    .rz-p-xl-2 {
        padding: 0.5rem !important;
    }

    .rz-py-xl-2,
    .rz-pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .rz-px-xl-2,
    .rz-pr-xl-2 {
        padding-right: 0.5rem !important;
    }

    .rz-py-xl-2,
    .rz-pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .rz-px-xl-2,
    .rz-pl-xl-2 {
        padding-left: 0.5rem !important;
    }

    .rz-ps-xl-2 {
        padding-inline-start: 0.5rem !important;
    }

    .rz-ps-xl-2 {
        padding-inline-end: 0.5rem !important;
    }

    .rz-p-xl-3 {
        padding: 0.75rem !important;
    }

    .rz-py-xl-3,
    .rz-pt-xl-3 {
        padding-top: 0.75rem !important;
    }

    .rz-px-xl-3,
    .rz-pr-xl-3 {
        padding-right: 0.75rem !important;
    }

    .rz-py-xl-3,
    .rz-pb-xl-3 {
        padding-bottom: 0.75rem !important;
    }

    .rz-px-xl-3,
    .rz-pl-xl-3 {
        padding-left: 0.75rem !important;
    }

    .rz-ps-xl-3 {
        padding-inline-start: 0.75rem !important;
    }

    .rz-ps-xl-3 {
        padding-inline-end: 0.75rem !important;
    }

    .rz-p-xl-4 {
        padding: 1rem !important;
    }

    .rz-py-xl-4,
    .rz-pt-xl-4 {
        padding-top: 1rem !important;
    }

    .rz-px-xl-4,
    .rz-pr-xl-4 {
        padding-right: 1rem !important;
    }

    .rz-py-xl-4,
    .rz-pb-xl-4 {
        padding-bottom: 1rem !important;
    }

    .rz-px-xl-4,
    .rz-pl-xl-4 {
        padding-left: 1rem !important;
    }

    .rz-ps-xl-4 {
        padding-inline-start: 1rem !important;
    }

    .rz-ps-xl-4 {
        padding-inline-end: 1rem !important;
    }

    .rz-p-xl-5 {
        padding: 1.25rem !important;
    }

    .rz-py-xl-5,
    .rz-pt-xl-5 {
        padding-top: 1.25rem !important;
    }

    .rz-px-xl-5,
    .rz-pr-xl-5 {
        padding-right: 1.25rem !important;
    }

    .rz-py-xl-5,
    .rz-pb-xl-5 {
        padding-bottom: 1.25rem !important;
    }

    .rz-px-xl-5,
    .rz-pl-xl-5 {
        padding-left: 1.25rem !important;
    }

    .rz-ps-xl-5 {
        padding-inline-start: 1.25rem !important;
    }

    .rz-ps-xl-5 {
        padding-inline-end: 1.25rem !important;
    }

    .rz-p-xl-6 {
        padding: 1.5rem !important;
    }

    .rz-py-xl-6,
    .rz-pt-xl-6 {
        padding-top: 1.5rem !important;
    }

    .rz-px-xl-6,
    .rz-pr-xl-6 {
        padding-right: 1.5rem !important;
    }

    .rz-py-xl-6,
    .rz-pb-xl-6 {
        padding-bottom: 1.5rem !important;
    }

    .rz-px-xl-6,
    .rz-pl-xl-6 {
        padding-left: 1.5rem !important;
    }

    .rz-ps-xl-6 {
        padding-inline-start: 1.5rem !important;
    }

    .rz-ps-xl-6 {
        padding-inline-end: 1.5rem !important;
    }

    .rz-p-xl-7 {
        padding: 1.75rem !important;
    }

    .rz-py-xl-7,
    .rz-pt-xl-7 {
        padding-top: 1.75rem !important;
    }

    .rz-px-xl-7,
    .rz-pr-xl-7 {
        padding-right: 1.75rem !important;
    }

    .rz-py-xl-7,
    .rz-pb-xl-7 {
        padding-bottom: 1.75rem !important;
    }

    .rz-px-xl-7,
    .rz-pl-xl-7 {
        padding-left: 1.75rem !important;
    }

    .rz-ps-xl-7 {
        padding-inline-start: 1.75rem !important;
    }

    .rz-ps-xl-7 {
        padding-inline-end: 1.75rem !important;
    }

    .rz-p-xl-8 {
        padding: 2rem !important;
    }

    .rz-py-xl-8,
    .rz-pt-xl-8 {
        padding-top: 2rem !important;
    }

    .rz-px-xl-8,
    .rz-pr-xl-8 {
        padding-right: 2rem !important;
    }

    .rz-py-xl-8,
    .rz-pb-xl-8 {
        padding-bottom: 2rem !important;
    }

    .rz-px-xl-8,
    .rz-pl-xl-8 {
        padding-left: 2rem !important;
    }

    .rz-ps-xl-8 {
        padding-inline-start: 2rem !important;
    }

    .rz-ps-xl-8 {
        padding-inline-end: 2rem !important;
    }

    .rz-p-xl-9 {
        padding: 2.25rem !important;
    }

    .rz-py-xl-9,
    .rz-pt-xl-9 {
        padding-top: 2.25rem !important;
    }

    .rz-px-xl-9,
    .rz-pr-xl-9 {
        padding-right: 2.25rem !important;
    }

    .rz-py-xl-9,
    .rz-pb-xl-9 {
        padding-bottom: 2.25rem !important;
    }

    .rz-px-xl-9,
    .rz-pl-xl-9 {
        padding-left: 2.25rem !important;
    }

    .rz-ps-xl-9 {
        padding-inline-start: 2.25rem !important;
    }

    .rz-ps-xl-9 {
        padding-inline-end: 2.25rem !important;
    }

    .rz-p-xl-10 {
        padding: 2.5rem !important;
    }

    .rz-py-xl-10,
    .rz-pt-xl-10 {
        padding-top: 2.5rem !important;
    }

    .rz-px-xl-10,
    .rz-pr-xl-10 {
        padding-right: 2.5rem !important;
    }

    .rz-py-xl-10,
    .rz-pb-xl-10 {
        padding-bottom: 2.5rem !important;
    }

    .rz-px-xl-10,
    .rz-pl-xl-10 {
        padding-left: 2.5rem !important;
    }

    .rz-ps-xl-10 {
        padding-inline-start: 2.5rem !important;
    }

    .rz-ps-xl-10 {
        padding-inline-end: 2.5rem !important;
    }

    .rz-p-xl-11 {
        padding: 2.75rem !important;
    }

    .rz-py-xl-11,
    .rz-pt-xl-11 {
        padding-top: 2.75rem !important;
    }

    .rz-px-xl-11,
    .rz-pr-xl-11 {
        padding-right: 2.75rem !important;
    }

    .rz-py-xl-11,
    .rz-pb-xl-11 {
        padding-bottom: 2.75rem !important;
    }

    .rz-px-xl-11,
    .rz-pl-xl-11 {
        padding-left: 2.75rem !important;
    }

    .rz-ps-xl-11 {
        padding-inline-start: 2.75rem !important;
    }

    .rz-ps-xl-11 {
        padding-inline-end: 2.75rem !important;
    }

    .rz-p-xl-12 {
        padding: 3rem !important;
    }

    .rz-py-xl-12,
    .rz-pt-xl-12 {
        padding-top: 3rem !important;
    }

    .rz-px-xl-12,
    .rz-pr-xl-12 {
        padding-right: 3rem !important;
    }

    .rz-py-xl-12,
    .rz-pb-xl-12 {
        padding-bottom: 3rem !important;
    }

    .rz-px-xl-12,
    .rz-pl-xl-12 {
        padding-left: 3rem !important;
    }

    .rz-ps-xl-12 {
        padding-inline-start: 3rem !important;
    }

    .rz-ps-xl-12 {
        padding-inline-end: 3rem !important;
    }

    .rz-m-xl-auto {
        margin: auto !important;
    }

    .rz-my-xl-auto,
    .rz-mt-xl-auto {
        margin-top: auto !important;
    }

    .rz-mx-xl-auto,
    .rz-mr-xl-auto {
        margin-right: auto !important;
    }

    .rz-my-xl-auto,
    .rz-mb-xl-auto {
        margin-bottom: auto !important;
    }

    .rz-mx-xl-auto,
    .rz-ml-xl-auto {
        margin-left: auto !important;
    }

    .rz-ms-xl-auto {
        margin-inline-start: auto !important;
    }

    .rz-me-xl-auto {
        margin-inline-end: auto !important;
    }
}

@media (min-width: 2560px) {
    .rz-m-xx-0 {
        margin: 0 !important;
    }

    .rz-my-xx-0,
    .rz-mt-xx-0 {
        margin-top: 0 !important;
    }

    .rz-mx-xx-0,
    .rz-mr-xx-0 {
        margin-right: 0 !important;
    }

    .rz-my-xx-0,
    .rz-mb-xx-0 {
        margin-bottom: 0 !important;
    }

    .rz-mx-xx-0,
    .rz-ml-xx-0 {
        margin-left: 0 !important;
    }

    .rz-ms-xx-0 {
        margin-inline-start: 0 !important;
    }

    .rz-ms-xx-0 {
        margin-inline-end: 0 !important;
    }

    .rz-m-xx-05 {
        margin: 0.125rem !important;
    }

    .rz-my-xx-05,
    .rz-mt-xx-05 {
        margin-top: 0.125rem !important;
    }

    .rz-mx-xx-05,
    .rz-mr-xx-05 {
        margin-right: 0.125rem !important;
    }

    .rz-my-xx-05,
    .rz-mb-xx-05 {
        margin-bottom: 0.125rem !important;
    }

    .rz-mx-xx-05,
    .rz-ml-xx-05 {
        margin-left: 0.125rem !important;
    }

    .rz-ms-xx-05 {
        margin-inline-start: 0.125rem !important;
    }

    .rz-ms-xx-05 {
        margin-inline-end: 0.125rem !important;
    }

    .rz-m-xx-1 {
        margin: 0.25rem !important;
    }

    .rz-my-xx-1,
    .rz-mt-xx-1 {
        margin-top: 0.25rem !important;
    }

    .rz-mx-xx-1,
    .rz-mr-xx-1 {
        margin-right: 0.25rem !important;
    }

    .rz-my-xx-1,
    .rz-mb-xx-1 {
        margin-bottom: 0.25rem !important;
    }

    .rz-mx-xx-1,
    .rz-ml-xx-1 {
        margin-left: 0.25rem !important;
    }

    .rz-ms-xx-1 {
        margin-inline-start: 0.25rem !important;
    }

    .rz-ms-xx-1 {
        margin-inline-end: 0.25rem !important;
    }

    .rz-m-xx-2 {
        margin: 0.5rem !important;
    }

    .rz-my-xx-2,
    .rz-mt-xx-2 {
        margin-top: 0.5rem !important;
    }

    .rz-mx-xx-2,
    .rz-mr-xx-2 {
        margin-right: 0.5rem !important;
    }

    .rz-my-xx-2,
    .rz-mb-xx-2 {
        margin-bottom: 0.5rem !important;
    }

    .rz-mx-xx-2,
    .rz-ml-xx-2 {
        margin-left: 0.5rem !important;
    }

    .rz-ms-xx-2 {
        margin-inline-start: 0.5rem !important;
    }

    .rz-ms-xx-2 {
        margin-inline-end: 0.5rem !important;
    }

    .rz-m-xx-3 {
        margin: 0.75rem !important;
    }

    .rz-my-xx-3,
    .rz-mt-xx-3 {
        margin-top: 0.75rem !important;
    }

    .rz-mx-xx-3,
    .rz-mr-xx-3 {
        margin-right: 0.75rem !important;
    }

    .rz-my-xx-3,
    .rz-mb-xx-3 {
        margin-bottom: 0.75rem !important;
    }

    .rz-mx-xx-3,
    .rz-ml-xx-3 {
        margin-left: 0.75rem !important;
    }

    .rz-ms-xx-3 {
        margin-inline-start: 0.75rem !important;
    }

    .rz-ms-xx-3 {
        margin-inline-end: 0.75rem !important;
    }

    .rz-m-xx-4 {
        margin: 1rem !important;
    }

    .rz-my-xx-4,
    .rz-mt-xx-4 {
        margin-top: 1rem !important;
    }

    .rz-mx-xx-4,
    .rz-mr-xx-4 {
        margin-right: 1rem !important;
    }

    .rz-my-xx-4,
    .rz-mb-xx-4 {
        margin-bottom: 1rem !important;
    }

    .rz-mx-xx-4,
    .rz-ml-xx-4 {
        margin-left: 1rem !important;
    }

    .rz-ms-xx-4 {
        margin-inline-start: 1rem !important;
    }

    .rz-ms-xx-4 {
        margin-inline-end: 1rem !important;
    }

    .rz-m-xx-5 {
        margin: 1.25rem !important;
    }

    .rz-my-xx-5,
    .rz-mt-xx-5 {
        margin-top: 1.25rem !important;
    }

    .rz-mx-xx-5,
    .rz-mr-xx-5 {
        margin-right: 1.25rem !important;
    }

    .rz-my-xx-5,
    .rz-mb-xx-5 {
        margin-bottom: 1.25rem !important;
    }

    .rz-mx-xx-5,
    .rz-ml-xx-5 {
        margin-left: 1.25rem !important;
    }

    .rz-ms-xx-5 {
        margin-inline-start: 1.25rem !important;
    }

    .rz-ms-xx-5 {
        margin-inline-end: 1.25rem !important;
    }

    .rz-m-xx-6 {
        margin: 1.5rem !important;
    }

    .rz-my-xx-6,
    .rz-mt-xx-6 {
        margin-top: 1.5rem !important;
    }

    .rz-mx-xx-6,
    .rz-mr-xx-6 {
        margin-right: 1.5rem !important;
    }

    .rz-my-xx-6,
    .rz-mb-xx-6 {
        margin-bottom: 1.5rem !important;
    }

    .rz-mx-xx-6,
    .rz-ml-xx-6 {
        margin-left: 1.5rem !important;
    }

    .rz-ms-xx-6 {
        margin-inline-start: 1.5rem !important;
    }

    .rz-ms-xx-6 {
        margin-inline-end: 1.5rem !important;
    }

    .rz-m-xx-7 {
        margin: 1.75rem !important;
    }

    .rz-my-xx-7,
    .rz-mt-xx-7 {
        margin-top: 1.75rem !important;
    }

    .rz-mx-xx-7,
    .rz-mr-xx-7 {
        margin-right: 1.75rem !important;
    }

    .rz-my-xx-7,
    .rz-mb-xx-7 {
        margin-bottom: 1.75rem !important;
    }

    .rz-mx-xx-7,
    .rz-ml-xx-7 {
        margin-left: 1.75rem !important;
    }

    .rz-ms-xx-7 {
        margin-inline-start: 1.75rem !important;
    }

    .rz-ms-xx-7 {
        margin-inline-end: 1.75rem !important;
    }

    .rz-m-xx-8 {
        margin: 2rem !important;
    }

    .rz-my-xx-8,
    .rz-mt-xx-8 {
        margin-top: 2rem !important;
    }

    .rz-mx-xx-8,
    .rz-mr-xx-8 {
        margin-right: 2rem !important;
    }

    .rz-my-xx-8,
    .rz-mb-xx-8 {
        margin-bottom: 2rem !important;
    }

    .rz-mx-xx-8,
    .rz-ml-xx-8 {
        margin-left: 2rem !important;
    }

    .rz-ms-xx-8 {
        margin-inline-start: 2rem !important;
    }

    .rz-ms-xx-8 {
        margin-inline-end: 2rem !important;
    }

    .rz-m-xx-9 {
        margin: 2.25rem !important;
    }

    .rz-my-xx-9,
    .rz-mt-xx-9 {
        margin-top: 2.25rem !important;
    }

    .rz-mx-xx-9,
    .rz-mr-xx-9 {
        margin-right: 2.25rem !important;
    }

    .rz-my-xx-9,
    .rz-mb-xx-9 {
        margin-bottom: 2.25rem !important;
    }

    .rz-mx-xx-9,
    .rz-ml-xx-9 {
        margin-left: 2.25rem !important;
    }

    .rz-ms-xx-9 {
        margin-inline-start: 2.25rem !important;
    }

    .rz-ms-xx-9 {
        margin-inline-end: 2.25rem !important;
    }

    .rz-m-xx-10 {
        margin: 2.5rem !important;
    }

    .rz-my-xx-10,
    .rz-mt-xx-10 {
        margin-top: 2.5rem !important;
    }

    .rz-mx-xx-10,
    .rz-mr-xx-10 {
        margin-right: 2.5rem !important;
    }

    .rz-my-xx-10,
    .rz-mb-xx-10 {
        margin-bottom: 2.5rem !important;
    }

    .rz-mx-xx-10,
    .rz-ml-xx-10 {
        margin-left: 2.5rem !important;
    }

    .rz-ms-xx-10 {
        margin-inline-start: 2.5rem !important;
    }

    .rz-ms-xx-10 {
        margin-inline-end: 2.5rem !important;
    }

    .rz-m-xx-11 {
        margin: 2.75rem !important;
    }

    .rz-my-xx-11,
    .rz-mt-xx-11 {
        margin-top: 2.75rem !important;
    }

    .rz-mx-xx-11,
    .rz-mr-xx-11 {
        margin-right: 2.75rem !important;
    }

    .rz-my-xx-11,
    .rz-mb-xx-11 {
        margin-bottom: 2.75rem !important;
    }

    .rz-mx-xx-11,
    .rz-ml-xx-11 {
        margin-left: 2.75rem !important;
    }

    .rz-ms-xx-11 {
        margin-inline-start: 2.75rem !important;
    }

    .rz-ms-xx-11 {
        margin-inline-end: 2.75rem !important;
    }

    .rz-m-xx-12 {
        margin: 3rem !important;
    }

    .rz-my-xx-12,
    .rz-mt-xx-12 {
        margin-top: 3rem !important;
    }

    .rz-mx-xx-12,
    .rz-mr-xx-12 {
        margin-right: 3rem !important;
    }

    .rz-my-xx-12,
    .rz-mb-xx-12 {
        margin-bottom: 3rem !important;
    }

    .rz-mx-xx-12,
    .rz-ml-xx-12 {
        margin-left: 3rem !important;
    }

    .rz-ms-xx-12 {
        margin-inline-start: 3rem !important;
    }

    .rz-ms-xx-12 {
        margin-inline-end: 3rem !important;
    }

    .rz-p-xx-0 {
        padding: 0 !important;
    }

    .rz-py-xx-0,
    .rz-pt-xx-0 {
        padding-top: 0 !important;
    }

    .rz-px-xx-0,
    .rz-pr-xx-0 {
        padding-right: 0 !important;
    }

    .rz-py-xx-0,
    .rz-pb-xx-0 {
        padding-bottom: 0 !important;
    }

    .rz-px-xx-0,
    .rz-pl-xx-0 {
        padding-left: 0 !important;
    }

    .rz-ps-xx-0 {
        padding-inline-start: 0 !important;
    }

    .rz-ps-xx-0 {
        padding-inline-end: 0 !important;
    }

    .rz-p-xx-05 {
        padding: 0.125rem !important;
    }

    .rz-py-xx-05,
    .rz-pt-xx-05 {
        padding-top: 0.125rem !important;
    }

    .rz-px-xx-05,
    .rz-pr-xx-05 {
        padding-right: 0.125rem !important;
    }

    .rz-py-xx-05,
    .rz-pb-xx-05 {
        padding-bottom: 0.125rem !important;
    }

    .rz-px-xx-05,
    .rz-pl-xx-05 {
        padding-left: 0.125rem !important;
    }

    .rz-ps-xx-05 {
        padding-inline-start: 0.125rem !important;
    }

    .rz-ps-xx-05 {
        padding-inline-end: 0.125rem !important;
    }

    .rz-p-xx-1 {
        padding: 0.25rem !important;
    }

    .rz-py-xx-1,
    .rz-pt-xx-1 {
        padding-top: 0.25rem !important;
    }

    .rz-px-xx-1,
    .rz-pr-xx-1 {
        padding-right: 0.25rem !important;
    }

    .rz-py-xx-1,
    .rz-pb-xx-1 {
        padding-bottom: 0.25rem !important;
    }

    .rz-px-xx-1,
    .rz-pl-xx-1 {
        padding-left: 0.25rem !important;
    }

    .rz-ps-xx-1 {
        padding-inline-start: 0.25rem !important;
    }

    .rz-ps-xx-1 {
        padding-inline-end: 0.25rem !important;
    }

    .rz-p-xx-2 {
        padding: 0.5rem !important;
    }

    .rz-py-xx-2,
    .rz-pt-xx-2 {
        padding-top: 0.5rem !important;
    }

    .rz-px-xx-2,
    .rz-pr-xx-2 {
        padding-right: 0.5rem !important;
    }

    .rz-py-xx-2,
    .rz-pb-xx-2 {
        padding-bottom: 0.5rem !important;
    }

    .rz-px-xx-2,
    .rz-pl-xx-2 {
        padding-left: 0.5rem !important;
    }

    .rz-ps-xx-2 {
        padding-inline-start: 0.5rem !important;
    }

    .rz-ps-xx-2 {
        padding-inline-end: 0.5rem !important;
    }

    .rz-p-xx-3 {
        padding: 0.75rem !important;
    }

    .rz-py-xx-3,
    .rz-pt-xx-3 {
        padding-top: 0.75rem !important;
    }

    .rz-px-xx-3,
    .rz-pr-xx-3 {
        padding-right: 0.75rem !important;
    }

    .rz-py-xx-3,
    .rz-pb-xx-3 {
        padding-bottom: 0.75rem !important;
    }

    .rz-px-xx-3,
    .rz-pl-xx-3 {
        padding-left: 0.75rem !important;
    }

    .rz-ps-xx-3 {
        padding-inline-start: 0.75rem !important;
    }

    .rz-ps-xx-3 {
        padding-inline-end: 0.75rem !important;
    }

    .rz-p-xx-4 {
        padding: 1rem !important;
    }

    .rz-py-xx-4,
    .rz-pt-xx-4 {
        padding-top: 1rem !important;
    }

    .rz-px-xx-4,
    .rz-pr-xx-4 {
        padding-right: 1rem !important;
    }

    .rz-py-xx-4,
    .rz-pb-xx-4 {
        padding-bottom: 1rem !important;
    }

    .rz-px-xx-4,
    .rz-pl-xx-4 {
        padding-left: 1rem !important;
    }

    .rz-ps-xx-4 {
        padding-inline-start: 1rem !important;
    }

    .rz-ps-xx-4 {
        padding-inline-end: 1rem !important;
    }

    .rz-p-xx-5 {
        padding: 1.25rem !important;
    }

    .rz-py-xx-5,
    .rz-pt-xx-5 {
        padding-top: 1.25rem !important;
    }

    .rz-px-xx-5,
    .rz-pr-xx-5 {
        padding-right: 1.25rem !important;
    }

    .rz-py-xx-5,
    .rz-pb-xx-5 {
        padding-bottom: 1.25rem !important;
    }

    .rz-px-xx-5,
    .rz-pl-xx-5 {
        padding-left: 1.25rem !important;
    }

    .rz-ps-xx-5 {
        padding-inline-start: 1.25rem !important;
    }

    .rz-ps-xx-5 {
        padding-inline-end: 1.25rem !important;
    }

    .rz-p-xx-6 {
        padding: 1.5rem !important;
    }

    .rz-py-xx-6,
    .rz-pt-xx-6 {
        padding-top: 1.5rem !important;
    }

    .rz-px-xx-6,
    .rz-pr-xx-6 {
        padding-right: 1.5rem !important;
    }

    .rz-py-xx-6,
    .rz-pb-xx-6 {
        padding-bottom: 1.5rem !important;
    }

    .rz-px-xx-6,
    .rz-pl-xx-6 {
        padding-left: 1.5rem !important;
    }

    .rz-ps-xx-6 {
        padding-inline-start: 1.5rem !important;
    }

    .rz-ps-xx-6 {
        padding-inline-end: 1.5rem !important;
    }

    .rz-p-xx-7 {
        padding: 1.75rem !important;
    }

    .rz-py-xx-7,
    .rz-pt-xx-7 {
        padding-top: 1.75rem !important;
    }

    .rz-px-xx-7,
    .rz-pr-xx-7 {
        padding-right: 1.75rem !important;
    }

    .rz-py-xx-7,
    .rz-pb-xx-7 {
        padding-bottom: 1.75rem !important;
    }

    .rz-px-xx-7,
    .rz-pl-xx-7 {
        padding-left: 1.75rem !important;
    }

    .rz-ps-xx-7 {
        padding-inline-start: 1.75rem !important;
    }

    .rz-ps-xx-7 {
        padding-inline-end: 1.75rem !important;
    }

    .rz-p-xx-8 {
        padding: 2rem !important;
    }

    .rz-py-xx-8,
    .rz-pt-xx-8 {
        padding-top: 2rem !important;
    }

    .rz-px-xx-8,
    .rz-pr-xx-8 {
        padding-right: 2rem !important;
    }

    .rz-py-xx-8,
    .rz-pb-xx-8 {
        padding-bottom: 2rem !important;
    }

    .rz-px-xx-8,
    .rz-pl-xx-8 {
        padding-left: 2rem !important;
    }

    .rz-ps-xx-8 {
        padding-inline-start: 2rem !important;
    }

    .rz-ps-xx-8 {
        padding-inline-end: 2rem !important;
    }

    .rz-p-xx-9 {
        padding: 2.25rem !important;
    }

    .rz-py-xx-9,
    .rz-pt-xx-9 {
        padding-top: 2.25rem !important;
    }

    .rz-px-xx-9,
    .rz-pr-xx-9 {
        padding-right: 2.25rem !important;
    }

    .rz-py-xx-9,
    .rz-pb-xx-9 {
        padding-bottom: 2.25rem !important;
    }

    .rz-px-xx-9,
    .rz-pl-xx-9 {
        padding-left: 2.25rem !important;
    }

    .rz-ps-xx-9 {
        padding-inline-start: 2.25rem !important;
    }

    .rz-ps-xx-9 {
        padding-inline-end: 2.25rem !important;
    }

    .rz-p-xx-10 {
        padding: 2.5rem !important;
    }

    .rz-py-xx-10,
    .rz-pt-xx-10 {
        padding-top: 2.5rem !important;
    }

    .rz-px-xx-10,
    .rz-pr-xx-10 {
        padding-right: 2.5rem !important;
    }

    .rz-py-xx-10,
    .rz-pb-xx-10 {
        padding-bottom: 2.5rem !important;
    }

    .rz-px-xx-10,
    .rz-pl-xx-10 {
        padding-left: 2.5rem !important;
    }

    .rz-ps-xx-10 {
        padding-inline-start: 2.5rem !important;
    }

    .rz-ps-xx-10 {
        padding-inline-end: 2.5rem !important;
    }

    .rz-p-xx-11 {
        padding: 2.75rem !important;
    }

    .rz-py-xx-11,
    .rz-pt-xx-11 {
        padding-top: 2.75rem !important;
    }

    .rz-px-xx-11,
    .rz-pr-xx-11 {
        padding-right: 2.75rem !important;
    }

    .rz-py-xx-11,
    .rz-pb-xx-11 {
        padding-bottom: 2.75rem !important;
    }

    .rz-px-xx-11,
    .rz-pl-xx-11 {
        padding-left: 2.75rem !important;
    }

    .rz-ps-xx-11 {
        padding-inline-start: 2.75rem !important;
    }

    .rz-ps-xx-11 {
        padding-inline-end: 2.75rem !important;
    }

    .rz-p-xx-12 {
        padding: 3rem !important;
    }

    .rz-py-xx-12,
    .rz-pt-xx-12 {
        padding-top: 3rem !important;
    }

    .rz-px-xx-12,
    .rz-pr-xx-12 {
        padding-right: 3rem !important;
    }

    .rz-py-xx-12,
    .rz-pb-xx-12 {
        padding-bottom: 3rem !important;
    }

    .rz-px-xx-12,
    .rz-pl-xx-12 {
        padding-left: 3rem !important;
    }

    .rz-ps-xx-12 {
        padding-inline-start: 3rem !important;
    }

    .rz-ps-xx-12 {
        padding-inline-end: 3rem !important;
    }

    .rz-m-xx-auto {
        margin: auto !important;
    }

    .rz-my-xx-auto,
    .rz-mt-xx-auto {
        margin-top: auto !important;
    }

    .rz-mx-xx-auto,
    .rz-mr-xx-auto {
        margin-right: auto !important;
    }

    .rz-my-xx-auto,
    .rz-mb-xx-auto {
        margin-bottom: auto !important;
    }

    .rz-mx-xx-auto,
    .rz-ml-xx-auto {
        margin-left: auto !important;
    }

    .rz-ms-xx-auto {
        margin-inline-start: auto !important;
    }

    .rz-me-xx-auto {
        margin-inline-end: auto !important;
    }
}

h1.rz-heading {
    font-size: 2rem;
    line-height: 1.1875em;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--rz-text-title-color);
    margin-bottom: 1rem;
}

h2.rz-heading {
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rz-text-title-color);
    margin-bottom: 1rem;
}

h3.rz-heading {
    font-size: 1.125rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.75rem;
}

h4.rz-heading {
    font-size: 1rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.5rem;
}

h5.rz-heading {
    font-size: 0.875rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.5rem;
}

h6.rz-heading {
    font-size: 0.75rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.5rem;
}

h1,
.h1 {
    font-size: 2rem;
    line-height: 1.1875em;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--rz-text-title-color);
    margin-bottom: 1rem;
}

h2,
.h2 {
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rz-text-title-color);
    margin-bottom: 1rem;
}

h3,
.h3 {
    font-size: 1.125rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.75rem;
}

h4,
.h4 {
    font-size: 1rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.5rem;
}

h5,
.h5 {
    font-size: 0.875rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.5rem;
}

h6,
.h6 {
    font-size: 0.75rem;
    line-height: 1.25em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rz-text-title-color);
    margin-bottom: 0.5rem;
}

h1.text-thin,
.h1.text-thin {
    font-size: 3rem;
    font-weight: 300;
}

h2.text-thin,
.h2.text-thin {
    font-size: 2rem;
    font-weight: 300;
}

h3.text-thin,
.h3.text-thin {
    font-size: 1.25rem;
    font-weight: 300;
}

h4.text-thin,
.h4.text-thin {
    font-size: 1rem;
    font-weight: 300;
}

h5.text-thin,
.h5.text-thin {
    font-size: 0.875rem;
    font-weight: 300;
}

h6.text-thin,
.h6.text-thin {
    font-size: 0.75rem;
    font-weight: 300;
}

:root {
    --rz-shadow-0: none;
    --rz-shadow-1: 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.14);
    --rz-shadow-2: 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 3px 1px rgba(0, 0, 0, 0.12), 0px 1px 5px rgba(0, 0, 0, 0.14);
    --rz-shadow-3: 0px 3px 4px rgba(0, 0, 0, 0.14), 0px 3px 3px rgba(0, 0, 0, 0.12), 0px 1px 8px rgba(0, 0, 0, 0.14);
    --rz-shadow-4: 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.14);
    --rz-shadow-5: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.14);
    --rz-shadow-6: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.14);
    --rz-shadow-7: 0px 9px 12px rgba(0, 0, 0, 0.14), 0px 3px 16px rgba(0, 0, 0, 0.12), 0px 5px 6px rgba(0, 0, 0, 0.14);
    --rz-shadow-8: 0px 12px 17px rgba(0, 0, 0, 0.14), 0px 5px 22px rgba(0, 0, 0, 0.12), 0px 7px 8px rgba(0, 0, 0, 0.14);
    --rz-shadow-9: 0px 16px 24px rgba(0, 0, 0, 0.14), 0px 6px 30px rgba(0, 0, 0, 0.12), 0px 8px 10px rgba(0, 0, 0, 0.14);
    --rz-shadow-10: 0px 24px 38px rgba(0, 0, 0, 0.14), 0px 9px 46px rgba(0, 0, 0, 0.12), 0px 11px 15px rgba(0, 0, 0, 0.14);
}

.rz-shadow-0 {
    box-shadow: var(--rz-shadow-0) !important;
}

.rz-shadow-1 {
    box-shadow: var(--rz-shadow-1) !important;
}

.rz-shadow-2 {
    box-shadow: var(--rz-shadow-2) !important;
}

.rz-shadow-3 {
    box-shadow: var(--rz-shadow-3) !important;
}

.rz-shadow-4 {
    box-shadow: var(--rz-shadow-4) !important;
}

.rz-shadow-5 {
    box-shadow: var(--rz-shadow-5) !important;
}

.rz-shadow-6 {
    box-shadow: var(--rz-shadow-6) !important;
}

.rz-shadow-7 {
    box-shadow: var(--rz-shadow-7) !important;
}

.rz-shadow-8 {
    box-shadow: var(--rz-shadow-8) !important;
}

.rz-shadow-9 {
    box-shadow: var(--rz-shadow-9) !important;
}

.rz-shadow-10 {
    box-shadow: var(--rz-shadow-10) !important;
}


:root {
    --rz-border-radius: 4px;
    --rz-border-radius-0: 0;
    --rz-border-radius-1: 0.25rem;
    --rz-border-radius-2: 0.5rem;
    --rz-border-radius-3: 0.75rem;
    --rz-border-radius-4: 1rem;
    --rz-border-radius-5: 1.25rem;
    --rz-border-radius-6: 1.5rem;
    --rz-border-radius-7: 1.75rem;
    --rz-border-radius-8: 2rem;
    --rz-border-radius-9: 2.25rem;
    --rz-border-radius-10: 2.5rem;
}

.rz-border-radius {
    border-radius: var(--rz-border-radius) !important;
}

.rz-border-radius-0 {
    border-radius: var(--rz-border-radius-0) !important;
}

.rz-border-radius-1 {
    border-radius: var(--rz-border-radius-1) !important;
}

.rz-border-radius-2 {
    border-radius: var(--rz-border-radius-2) !important;
}

.rz-border-radius-3 {
    border-radius: var(--rz-border-radius-3) !important;
}

.rz-border-radius-4 {
    border-radius: var(--rz-border-radius-4) !important;
}

.rz-border-radius-5 {
    border-radius: var(--rz-border-radius-5) !important;
}

.rz-border-radius-6 {
    border-radius: var(--rz-border-radius-6) !important;
}

.rz-border-radius-7 {
    border-radius: var(--rz-border-radius-7) !important;
}

.rz-border-radius-8 {
    border-radius: var(--rz-border-radius-8) !important;
}

.rz-border-radius-9 {
    border-radius: var(--rz-border-radius-9) !important;
}

.rz-border-radius-10 {
    border-radius: var(--rz-border-radius-10) !important;
}

:root {
    --rz-card-padding: 1rem;
    --rz-card-shadow: var(--rz-shadow-1);
    --rz-card-border: var(--rz-border-base-300);
    --rz-card-border-radius: var(--rz-border-radius);
    --rz-card-heading-margin-bottom: 0.5rem;
}

.rz-card {
    padding: var(--rz-card-padding);
    border-radius: var(--rz-card-border-radius);
}

    .rz-card.rz-variant-filled {
        box-shadow: var(--rz-card-shadow);
    }

    .rz-card.rz-variant-flat {
        background-color: var(--rz-card-flat-background-color);
    }

    .rz-card.rz-variant-outlined {
        background: transparent;
        border: var(--rz-card-border);
    }

    .rz-card.rz-variant-text {
        background: transparent;
    }

    .rz-card h1,
    .rz-card h2,
    .rz-card h3,
    .rz-card h4,
    .rz-card h5,
    .rz-card h6 {
        margin-bottom: var(--rz-card-heading-margin-bottom);
    }

    .rz-card p {
        margin-bottom: 0;
    }



.rz-flex-row {
    flex-direction: row !important;
}


.rz-flex-column {
    flex-direction: column !important;
}



:root {
    --rz-gap: 1rem;
    --rz-row-gap: 1rem;
}

.rz-stack {
    gap: var(--rz-gap);
}



.rz-display-flex {
    display: flex !important;
}


.rz-justify-content-normal {
    justify-content: normal !important;
}

.rz-justify-content-stretch {
    justify-content: stretch !important;
}

.rz-justify-content-center {
    justify-content: center !important;
}

.rz-justify-content-start {
    justify-content: start !important;
}

.rz-justify-content-end {
    justify-content: end !important;
}

.rz-justify-content-flex-start {
    justify-content: flex-start !important;
}

.rz-justify-content-flex-end {
    justify-content: flex-end !important;
}

.rz-justify-content-left {
    justify-content: left !important;
}

.rz-justify-content-right {
    justify-content: right !important;
}

.rz-justify-content-space-between {
    justify-content: space-between !important;
}

.rz-justify-content-space-around {
    justify-content: space-around !important;
}

.rz-justify-content-space-evenly {
    justify-content: space-evenly !important;
}

.rz-align-items-normal {
    align-items: normal !important;
}

.rz-align-items-stretch {
    align-items: stretch !important;
}

.rz-align-items-center {
    align-items: center !important;
}

.rz-align-items-start {
    align-items: start !important;
}

.rz-align-items-end {
    align-items: end !important;
}

.rz-align-items-flex-start {
    align-items: flex-start !important;
}

.rz-align-items-flex-end {
    align-items: flex-end !important;
}

