:root {
    --white: #fff;
    --black: #1d1d1d;
    --blue: #0d6efd;
    --gray-light: #e5e7eb;
    --gray: #b0b2b5;
    --gray-dark: #6b7280;
    --base-bg: #f8f7fc;
    --title-color: #424242;
    --desc: #9e9e9e;
    --text-color: var(--black);
    --subtext-color: #424242;
    --text-muted: #444;
    --primary: #fa1ea7;
    --primary-hover: #f83db1;
    --primary-lighter: #fcebf6;
    --link: #7e7e7e;
    --link-hover: var(--primary-hover);
    --border-color: #e5e5e5;
    --light-border: #f3f3f3;
    --place-holder-color: #A3A292;
    --error: #FF4263;
    --success: #198754;
    --box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    --soft-color: #f4f4fb;
    --soft-color-hover: #e4e3e7;
    --font-size-m: 0.8rem;
    --font-size-l: 1rem;
    --font-size-xl: 1.2rem;
    --on-overlay: 1001;
    --box-bg: var(--white)
}

*, *::before, *::after {
    box-sizing: border-box
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-hover) var(--gray-light)
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    position: relative;
    min-width: 320px;
    overflow-x: hidden;
    margin: 0;
    font-family: yekan, 'tahoma', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    direction: rtl;
    color: var(--text-color);
    background-color: var(--base-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

html, body {
    width: 100%;
    min-height: 100vh
}

h6, h5, h4, h3, h2, h1, .title {
    color: var(--black);
    margin: 0 auto 18px;
    font-weight: 700
}

hr {
    margin: 16px 0;
    color: var(--border-color);
    border: 0;
    border-top: 2px solid
}

.t-bold {
    font-weight: 800 !important
}

h1, .h1 {
    font-size: 22px
}

h2, .h2 {
    font-size: 22px
}

h3, .h3 {
    font-size: 18px
}

h4, .h4 {
    font-size: 18px
}

h5, .h5 {
    font-size: 16px
}

h6, .h6 {
    font-size: 14px
}

p {
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 16px
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0
}

ol, ul, dl {
    margin-top: 0
}

ol ol, ul ul, ol ul, ul ol {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: 8px;
    margin-left: 0
}

blockquote {
    margin: 0 0 16px
}

b, strong {
    font-weight: bolder
}

small, .small {
    font-size: 0.875em
}

sub, sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a {
    color: var(--link);
    text-decoration: none !important;
    outline: none !important
}

a:hover {
    color: var(--link-hover)
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

figure {
    margin: 0 0 16px
}

img {
    max-width: 100%;
    height: auto
}

img, svg {
    vertical-align: middle
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

thead, tbody, tfoot, tr, td, th {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button
}

button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

[hidden] {
    display: none !important
}

.link {
    cursor: pointer;
    color: var(--primary)
}

.link:hover {
    color: var(--primary-hover)
}

.c-desc {
    color: var(--desc)
}

.btn {
    --btn-color: #fff;
    --btn-radius: 8px;
    --btn-bg: var(--primary);
    --btn-border-color: var(--primary);
    --btn-color-hover: #fff;
    --btn-bg-hover: var(--primary-hover);
    --btn-border-color-hover: var(--primary-hover);
    --btn-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12);
    background-color: var(--btn-bg);
    border: 1px solid var(--btn-border-color);
    box-shadow: var(--btn-box-shadow);
    display: inline-block;
    padding: 10px 15px;
    font-size: var(--font-size-m);
    color: var(--btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: var(--btn-radius);
    transition: all 0.15s ease-in-out;
    line-height: 1
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none
    }
}

.btn:hover, .btn:focus {
    color: var(--btn-color-hover);
    background-color: var(--btn-bg-hover);
    border-color: var(--btn-border-color-hover)
}

.btn:focus-visible {
    color: var(--btn-color-hover);
    background-color: var(--btn-bg-hover);
    border-color: var(--btn-border-color-hover);
    outline: 0
}

body .btn:disabled, body .btn.disabled, body fieldset:disabled .btn {
    pointer-events: none !important;
    opacity: 0.7
}

.outline {
    --btn-bg: transparent;
    --btn-color: var(--btn-border-color);
    --btn-box-shadow: none
}

.relative {
    position: relative
}

.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px !important
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px
}

.col {
    flex: 1 0 0
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.vw-100 {
    width: 100vw !important
}

.h-100 {
    height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-inline-grid {
    display: inline-grid !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: 4px !important
}

.m-2 {
    margin: 8px !important
}

.m-3 {
    margin: 16px !important
}

.m-4 {
    margin: 24px !important
}

.m-5 {
    margin: 48px !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: 4px !important;
    margin-left: 4px !important
}

.mx-2 {
    margin-right: 8px !important;
    margin-left: 8px !important
}

.mx-3 {
    margin-right: 16px !important;
    margin-left: 16px !important
}

.mx-4 {
    margin-right: 24px !important;
    margin-left: 24px !important
}

.mx-5 {
    margin-right: 48px !important;
    margin-left: 48px !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important
}

.my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important
}

.my-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important
}

.my-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important
}

.my-5 {
    margin-top: 48px !important;
    margin-bottom: 48px !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: 4px !important
}

.mt-2 {
    margin-top: 8px !important
}

.mt-3 {
    margin-top: 16px !important
}

.mt-4 {
    margin-top: 24px !important
}

.mt-5 {
    margin-top: 48px !important
}

.mt-auto {
    margin-top: auto !important
}

.mr-0 {
    margin-right: 0 !important
}

.mr-1 {
    margin-right: 4px !important
}

.mr-2 {
    margin-right: 8px !important
}

.mr-3 {
    margin-right: 16px !important
}

.mr-4 {
    margin-right: 24px !important
}

.mr-5 {
    margin-right: 48px !important
}

.mr-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: 4px !important
}

.mb-2 {
    margin-bottom: 8px !important
}

.mb-3 {
    margin-bottom: 16px !important
}

.mb-4 {
    margin-bottom: 24px !important
}

.mb-5 {
    margin-bottom: 48px !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ml-0 {
    margin-left: 0 !important
}

.ml-1 {
    margin-left: 4px !important
}

.ml-2 {
    margin-left: 8px !important
}

.ml-3 {
    margin-left: 16px !important
}

.ml-4 {
    margin-left: 24px !important
}

.ml-5 {
    margin-left: 48px !important
}

.ml-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: 4px !important
}

.p-2 {
    padding: 8px !important
}

.p-3 {
    padding: 16px !important
}

.p-4 {
    padding: 24px !important
}

.p-5 {
    padding: 48px !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: 4px !important;
    padding-left: 4px !important
}

.px-2 {
    padding-right: 8px !important;
    padding-left: 8px !important
}

.px-3 {
    padding-right: 16px !important;
    padding-left: 16px !important
}

.px-4 {
    padding-right: 24px !important;
    padding-left: 24px !important
}

.px-5 {
    padding-right: 48px !important;
    padding-left: 48px !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important
}

.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important
}

.py-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important
}

.py-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important
}

.py-5 {
    padding-top: 48px !important;
    padding-bottom: 48px !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: 4px !important
}

.pt-2 {
    padding-top: 8px !important
}

.pt-3 {
    padding-top: 16px !important
}

.pt-4 {
    padding-top: 24px !important
}

.pt-5 {
    padding-top: 48px !important
}

.pr-0 {
    padding-right: 0 !important
}

.pr-1 {
    padding-right: 4px !important
}

.pr-2 {
    padding-right: 8px !important
}

.pr-3 {
    padding-right: 16px !important
}

.pr-4 {
    padding-right: 24px !important
}

.pr-5 {
    padding-right: 48px !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: 4px !important
}

.pb-2 {
    padding-bottom: 8px !important
}

.pb-3 {
    padding-bottom: 16px !important
}

.pb-4 {
    padding-bottom: 24px !important
}

.pb-5 {
    padding-bottom: 48px !important
}

.pl-0 {
    padding-left: 0 !important
}

.pl-1 {
    padding-left: 4px !important
}

.pl-2 {
    padding-left: 8px !important
}

.pl-3 {
    padding-left: 16px !important
}

.pl-4 {
    padding-left: 24px !important
}

.pl-5 {
    padding-left: 48px !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: 4px !important
}

.gap-2 {
    gap: 8px !important
}

.gap-3 {
    gap: 16px !important
}

.gap-4 {
    gap: 24px !important
}

.gap-5 {
    gap: 48px !important
}

label {
    display: block;
    margin-bottom: 5px
}

.form-control, input.text-control {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    display: block;
    width: 100%;
    height: auto;
    padding: 16px 10px 16px 30px;
    line-height: 1;
    text-align: right;
    color: var(--text)
}

.form-control.login-input {
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0
}

.form-control::placeholder {
    color: var(--place-holder-color);
    font-size: 12px
}

.form-control:focus {
    box-shadow: none !important;
    outline: none
}

.form-group .error {
    font-size: 10px;
    color: var(--error);
    margin-top: 6px
}

.form-group.error .form-control {
    border: 2px solid var(--error)
}

.form-group.error .form-control.login-input {
    border: none;
    border-bottom: 2px solid var(--error)
}

.form-group.error .focus-line {
    visibility: hidden
}

.form-group {
    position: relative;
    margin-bottom: 15px
}

.form-group .suffix {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%)
}

.form-group .suffix .password-type {
    font-size: 18px;
    cursor: pointer
}

.form-group .focus-line {
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%) translateY(-2px)
}

.form-group input:focus + .focus-line {
    width: 100%
}

.password-type.password .password-icon:before {
    content: "\f070";
    font-family: 'Font Awesome 5 Pro'
}

.password-type.text .password-icon:before {
    content: "\f06e";
    font-family: 'Font Awesome 5 Pro'
}

.code-fields {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%
}

.code-fields .otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--gray-light);
    border-radius: 8px;
    color: navy;
    border: 1px solid var(--gray);
    transition: border 0.3s ease;
    cursor: pointer
}

.code-fields .otp-input.complete {
    background-color: var(--gray);
    color: #041c68;
    font-weight: 500
}

.code-fields:not(.error) input:focus {
    outline: none;
    border: 2px solid #041c68;
    transition: all 0.2s ease-in-out
}

.form-group.inside-label {
    position: relative
}

.form-group.inside-label {
    --label-color: var(--gray);
    --label-font-size: 16px;
    --label-top: 50%
}

.form-group.inside-label .form-control {
    padding: 26px 10px 10px 48px
}

.form-group.inside-label label {
    position: absolute;
    right: 20px;
    top: var(--label-top);
    transform: translateY(-50%);
    color: var(--label-color);
    font-size: var(--label-font-size);
    transition: all 0.2s ease-in-out;
    pointer-events: none
}

.form-group.inside-label:has(.form-control:focus) {
    --label-color: var(--primary);
    --label-font-size: 12px;
    --label-top: 4px;
    transform: translateY(0)
}

.form-group.inside-label:has(.form-control:focus) label {
    transform: translateY(0)
}

.form-group.inside-label label.floated-label {
    --label-font-size: 12px;
    --label-top: 4px;
    transform: translateY(0)
}

.form-group.inside-label:has(textarea.form-control) {
    --label-top: 20px;
    transform: translateY(0)
}

.form-group.small {
    --label-font-size: 12px
}

.form-group.small:has(.form-control:focus), .form-group.small label.floated-label {
    --label-font-size: 10px
}

.form-group.small .form-control {
    padding-top: 18px;
    padding-bottom: 6px
}

.form-group.small .suffix .btn {
    padding: 10px;
    font-size: 10px
}

.form-group:has(.suffix .btn) .form-control {
    padding-left: 86px
}

.content {
    line-height: 2;
    color: var(--text-color);
    text-align: justify
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
    color: var(--text-color);
    font-weight: 700
}

.content img {
    border-radius: 4px;
    max-width: 100%
}

.content img, .content video {
    max-width: 100% !important
}

.content .aligncenter {
    display: block;
    margin: 0 auto 15px;
    text-align: center
}

.content .aligncenter img {
    margin: 0 auto;
    display: block;
    text-align: center
}

.content .aligncenter figcaption {
    display: inline-block;
    padding: 5px;
    margin-bottom: 1em
}

.content blockquote {
    background: var(--white);
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    position: relative
}

.content blockquote > p:last-child {
    margin-bottom: 0
}

.content blockquote::after {
    left: 10px;
    right: auto;
    top: auto;
    transform: rotate(0);
    bottom: 5px
}

.content ul {
    list-style: initial;
    margin-right: 15px
}

.content ol {
    list-style: persian;
    margin-right: 15px
}

input.text {
    -moz-appearance: textfield
}

.cp_switch, .cp-radio {
    position: relative;
    cursor: pointer;
    margin: 0
}

.cp_switch.flex, .cp_radio.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.cp_switch input, .cp_radio input {
    appearance: none;
    border-style: none;
    flex-shrink: 0;
    margin: 0;
    position: relative;
    transition-duration: 0s
}

.cp_switch input {
    background-color: #dfe1e4;
    border-radius: 72px;
    width: 36px;
    height: 18px
}

.cp_switch input::before {
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px
}

.cp_switch input, .cp_switch input::after {
    transition: all 100ms ease-out
}

.cp_switch input::after {
    background-color: var(--white);
    border-radius: 50%;
    content: "";
    height: 24px;
    left: -6px;
    position: absolute;
    top: -3px;
    width: 24px;
    box-shadow: var(--box-shadow)
}

.cp_switch input[type=checkbox] {
    cursor: pointer
}

.cp_switch input:checked {
    background-color: var(--primary)
}

.cp_switch input:checked::after {
    background-color: var(--white);
    left: 20px
}

.cp_switch :focus:not(.focus-visible) {
    outline: 0
}

.cp_switch input:checked:hover {
    background-color: var(--primary-hover)
}

.cp_radio {
    --radio-scale: 18px;
    border: 1px solid var(--gray-light);
    padding: 10px;
    border-radius: 6px;
    font-size: 10px;
    align-items: center;
    cursor: pointer;
    line-height: calc(var(--radio-scale) + 2px);
    position: relative
}

.cp_radio input::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--gray-light)
}

.cp_radio input {
    width: var(--radio-scale);
    height: var(--radio-scale);
    cursor: pointer;
    position: relative
}

.cp_radio input[type=checkbox] {
    cursor: pointer
}

.cp_radio:has(input:checked) {
    border: 1px solid var(--gray-dark);
    color: var(--primary)
}

.cp_radio input:checked::before {
    border: none;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    color: var(--primary)
}

.cp_radio input:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: -2px;
    left: -2px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.12;
    transform: scale3d(0.001, 0.001, 1);;
    transition: transform 0.22s cubic-bezier(0, 0, 0.2, 1) 0ms
}

.cp_radio input:checked::after {
    background: var(--primary)
}

.cp_radio input:hover:after {
    transform: scale3d(1.4, 1.4, 1.4)
}

table {
    border-collapse: collapse;
    border-style: hidden;
    box-shadow: 0 0 0 1px var(--gray-light);
    background: var(--white)
}

table thead, table tfoot {
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-light)
}

table thead > tr > *, table tfoot > tr > * {
    padding: 12px;
    color: var(--black);
    font-weight: 700
}

table tbody > tr > * {
    border-bottom: 1px solid #ededed;
    padding: 12px
}

table tbody tr:nth-child(2n) {
    background: var(--gray-light)
}

table tbody > tr > th, table tbody > tr > th {
    line-height: 1
}

table tbody > tr > td {
    padding: 12px;
    color: var(--black);
    font-weight: 500
}

table tbody tr:hover {
    background: var(--gray-light)
}

.borderless-table, .borderless-table *, .borderless-table th, .borderless-table td, .borderless-table tr, .borderless-table thead, .borderless-table tbody, .borderless-table tfoot {
    border: none;
    border-width: 0;
    outline: none !important;
    box-shadow: none !important
}

.borderless-table thead {
    background-color: transparent
}

table.borderless-table {
    width: 100%;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    border-style: none !important;
    text-align: center
}

.borderless-table td {
    vertical-align: top
}

.borderless-table tr:not(:last-child), .borderless-table thead {
    border-bottom: 1px solid var(--gray-light)
}

.borderless-table tr:hover, .borderless-table tbody tr:nth-child(2n) {
    background-color: transparent
}

#toast {
    position: fixed;
    z-index: var(--on-overlay);
    pointer-events: none
}

#toast > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    width: 300px;
    opacity: 1;
    padding: 10px;
    border-radius: 6px;
    margin: 4px 0
}

.toast-title {
    font-weight: 700
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.toast-message a, .toast-message label {
    color: #FFF
}

.toast-message a:hover {
    color: #CCC;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    line-height: 1
}

.toast-close-button:focus, .toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40)
}

.rtl .toast-close-button {
    left: -.3em;
    float: left;
    right: .3em
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.toast-top-right {
    top: 12px;
    right: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #FFF;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80)
}

#toast-container > div:hover {
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer
}

.toast {
    background-color: #030303;
    color: var(--white)
}

.toast-success {
    background-color: #51A351
}

.toast-error {
    background-color: #BD362F;
    border: 1px solid #d86666
}

.toast-info {
    background-color: #2F96B4
}

.toast-warning {
    background-color: #F89406
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}
.pagination {
  font-size: 15px;
}

.pagination li:not(:last-child) {
  margin-right: 10px;
}

.pagination li:not(.pure) a,
.pagination li span {
  display: block;
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--text-color);
  display: block;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  border-radius: 8px;
}

.pagination li:not(.pure) a {
  background: var(--white);
  border: 1px solid var(--border-color);
  --link: var(--gray);
}

.pagination li:not(.pure):hover a,
.pagination li:not(.pure):focus a,
.pagination li span {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.pagination li.pure a {
  display: block;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 46px
}

.ltr {
  direction: ltr
}
@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #toast-container > div.rtl {
        padding: 8px 50px 8px 8px
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }

    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #toast-container > div.rtl {
        padding: 8px 50px 8px 8px
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }

    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }

    #toast-container > div.rtl {
        padding: 15px 50px 15px 15px
    }
}

.col-breadcrumb a {
    --link: #666
}

.row-grid {
    margin-right: -5px;
    margin-left: -5px
}

.title {
    color: var(--white);
    font-weight: 600
}

.btn-outline-primary {
    border: 1px solid var(--gray-light)
}

body .link:hover {
    color: var(--primary-hover) !important
}

blockquote > * {
    position: relative
}

.title > a {
    --link: var(--text)
}

.box {
    position: relative;
    line-height: 1.8;
    border: none;
    box-shadow: 0px 9px 23px rgba(0, 0, 0, 0.0137675);
    background-color: var(--box-bg);
    height: auto;
    border-radius: 24px;
    padding: 25px
}

.box .title {
    font-size: var(--font-size-m);
    font-weight: 700;
    color: var(--text-color)
}

.bb-1 {
    border-bottom: 1px solid var(--border-color)
}

.bt-1 {
    border-top: 1px solid var(--border-color)
}

.br-1 {
    border-right: 1px solid var(--border-color)
}

.bl-1 {
    border-left: 1px solid var(--border-color)
}

.quantity {
    position: relative;
    max-width: 136px
}

.quantity .plus, .quantity .minus {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    line-height: 1;
    color: #d5dae7;
    cursor: pointer
}

.quantity .minus {
    right: auto;
    left: 0;
    color: var(--error)
}

.quantity .plus:hover, .quantity .plus:focus, .quantity .minus:hover, .quantity .minus:focus {
    color: var(--text)
}

.quantity input {
    background: var(--white);
    border: 1px solid #edeef3;
    border-radius: 7px;
    text-align: center;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    padding: 6px 30px;
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
    line-height: 1;
    width: 100%;
    -moz-appearance: textfield;
    outline: none
}

.quantity .plus {
    border-left: none;
    color: var(--success)
}

.quantity .plus:hover {
    background-color: #edf9ec;
    border-radius: 4px;
    color: var(--success)
}

.quantity .minus:hover {
    background-color: #fdecec;
    border-radius: 4px;
    color: var(--error)
}

select {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    color: var(--text);
    border-radius: 10px;
    padding: 8px 10px;
    width: 100%
}

.price {
    color: var(--desc);
    font-weight: 700
}

.price .amount::after {
    content: 'تومان';
    margin-right: 4px;
    color: var(--text-color);
    font-weight: 500
}

.price.primary > span {
    color: var(--primary)
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--on-overlay);
    overflow: hidden;
    outline: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .1s ease, transform .1s ease, visibility .1s linear .1s;
    width: clamp(375px, 25vw, 100%);
    max-width: 98%
}
.modal.pulse {
    animation: pulse 0.2s ease
}
.modal.show {
    visibility: visible;
    opacity: 1
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05)
    }
    100% {
        transform: translate(-50%, -50%) scale(1)
    }
}


.overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #898e93ab;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none
}

.overlay.show {
    display: block
}

body.has-modal {
    overflow: hidden;
}

body.has-modal .modal {
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 0
}

.modal[data-type="show"] {
    display: block
}

.modal-header {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef
}

.modal-title {
    font-size: 16px;
    font-weight: 700
}

.modal-body {
    padding: 16px;
    max-height: calc(100vh - 80px);
    overflow: auto
}
.close-style {
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--text);
    top: -15px;
    left: 15px;
    background: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 26px;
    position: static;
    border: none;
    cursor: pointer;
    display: flex
}

.modal-content {
    width: 100%;
    pointer-events: auto;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    margin: auto;
    border-radius: 20px;
    outline: 0
}

.close-style:hover {
    background-color: #d7d7d7
}

.modal .close-icon {
    border: 1px solid;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: auto;
    font-size: 12px;
    line-height: 20px
}
@media (min-width: 576px) {
    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px
    }
}

.t-3 {
    font-weight: 300
}

.t-12 {
    font-size: 12px
}

.t-l {
    font-size: var(--font-size-l)
}

.t-m {
    font-size: var(--font-size-m)
}

.t-s {
    font-size: 0.7rem
}

.t-xl {
    font-size: var(--font-size-xl) !important
}

.t-xxl {
    font-size: 1.5rem
}

.c-black {
    color: var(--black) !important
}

.c-primary {
    color: var(--primary) !important
}

.c-red {
    color: var(--error) !important
}

.c-green {
    color: var(--success) !important
}

.bg-error {
    background: var(--error)
}

.bg-primary {
    background: var(--primary)
}

.radius {
    border-radius: 16px
}

.radius-8 {
    border-radius: 8px
}

.radius-12 {
    border-radius: 12px
}

.radius-16 {
    border-radius: 20px
}

.text-start {
    text-align: right !important
}

.text-end {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-justify {
    text-align: justify !important
}

@media all and (min-width: 420px) {
    .col-s-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .col-s s {
        flex: 1 0 0%
    }

    .row-cols-s-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-s-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-s-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-s-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-s-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-s-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-s-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-s-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-s-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-s-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-s-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-s-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-s-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-s-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-s-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-s-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-s-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-s-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-s-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-s-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .col-s {
        flex: 1 0 0%
    }

    .d-s-inline {
        display: inline !important
    }

    .d-s-inline-block {
        display: inline-block !important
    }

    .d-s-block {
        display: block !important
    }

    .d-s-grid {
        display: grid !important
    }

    .d-s-inline-grid {
        display: inline-grid !important
    }

    .d-s-table {
        display: table !important
    }

    .d-s-table-row {
        display: table-row !important
    }

    .d-s-table-cell {
        display: table-cell !important
    }

    .d-s-flex {
        display: flex !important
    }

    .d-s-inline-flex {
        display: inline-flex !important
    }

    .d-s-none {
        display: none !important
    }

    .flex-s-fill {
        flex: 1 1 auto !important
    }

    .flex-s-row {
        flex-direction: row !important
    }

    .flex-s-column {
        flex-direction: column !important
    }

    .flex-s-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-s-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-s-grow-0 {
        flex-grow: 0 !important
    }

    .flex-s-grow-1 {
        flex-grow: 1 !important
    }

    .flex-s-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-s-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-s-wrap {
        flex-wrap: wrap !important
    }

    .flex-s-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-s-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-s-start {
        justify-content: flex-start !important
    }

    .justify-content-s-end {
        justify-content: flex-end !important
    }

    .justify-content-s-center {
        justify-content: center !important
    }

    .justify-content-s-between {
        justify-content: space-between !important
    }

    .justify-content-s-around {
        justify-content: space-around !important
    }

    .justify-content-s-evenly {
        justify-content: space-evenly !important
    }

    .align-items-s-start {
        align-items: flex-start !important
    }

    .align-items-s-end {
        align-items: flex-end !important
    }

    .align-items-s-center {
        align-items: center !important
    }

    .align-items-s-baseline {
        align-items: baseline !important
    }

    .align-items-s-stretch {
        align-items: stretch !important
    }

    .align-content-s-start {
        align-content: flex-start !important
    }

    .align-content-s-end {
        align-content: flex-end !important
    }

    .align-content-s-center {
        align-content: center !important
    }

    .align-content-s-between {
        align-content: space-between !important
    }

    .align-content-s-around {
        align-content: space-around !important
    }

    .align-content-s-stretch {
        align-content: stretch !important
    }

    .align-self-s-auto {
        align-self: auto !important
    }

    .align-self-s-start {
        align-self: flex-start !important
    }

    .align-self-s-end {
        align-self: flex-end !important
    }

    .align-self-s-center {
        align-self: center !important
    }

    .align-self-s-baseline {
        align-self: baseline !important
    }

    .align-self-s-stretch {
        align-self: stretch !important
    }

    .order-s-first {
        order: -1 !important
    }

    .order-s-0 {
        order: 0 !important
    }

    .order-s-1 {
        order: 1 !important
    }

    .order-s-2 {
        order: 2 !important
    }

    .order-s-3 {
        order: 3 !important
    }

    .order-s-4 {
        order: 4 !important
    }

    .order-s-5 {
        order: 5 !important
    }

    .order-s-last {
        order: 6 !important
    }

    .m-s-0 {
        margin: 0 !important
    }

    .m-s-1 {
        margin: 0.25rem !important
    }

    .m-s-2 {
        margin: 0.5rem !important
    }

    .m-s-3 {
        margin: 1rem !important
    }

    .m-s-4 {
        margin: 1.5rem !important
    }

    .m-s-5 {
        margin: 3rem !important
    }

    .m-s-auto {
        margin: auto !important
    }

    .mx-s-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-s-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important
    }

    .mx-s-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important
    }

    .mx-s-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-s-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-s-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-s-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-s-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-s-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important
    }

    .my-s-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important
    }

    .my-s-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-s-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-s-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-s-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-s-0 {
        margin-top: 0 !important
    }

    .mt-s-1 {
        margin-top: 0.25rem !important
    }

    .mt-s-2 {
        margin-top: 0.5rem !important
    }

    .mt-s-3 {
        margin-top: 1rem !important
    }

    .mt-s-4 {
        margin-top: 1.5rem !important
    }

    .mt-s-5 {
        margin-top: 3rem !important
    }

    .mt-s-auto {
        margin-top: auto !important
    }

    .mr-s-0 {
        margin-right: 0 !important
    }

    .mr-s-1 {
        margin-right: 0.25rem !important
    }

    .mr-s-2 {
        margin-right: 0.5rem !important
    }

    .mr-s-3 {
        margin-right: 1rem !important
    }

    .mr-s-4 {
        margin-right: 1.5rem !important
    }

    .mr-s-5 {
        margin-right: 3rem !important
    }

    .mr-s-auto {
        margin-right: auto !important
    }

    .mb-s-0 {
        margin-bottom: 0 !important
    }

    .mb-s-1 {
        margin-bottom: 0.25rem !important
    }

    .mb-s-2 {
        margin-bottom: 0.5rem !important
    }

    .mb-s-3 {
        margin-bottom: 1rem !important
    }

    .mb-s-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-s-5 {
        margin-bottom: 3rem !important
    }

    .mb-s-auto {
        margin-bottom: auto !important
    }

    .ml-s-0 {
        margin-left: 0 !important
    }

    .ml-s-1 {
        margin-left: 0.25rem !important
    }

    .ml-s-2 {
        margin-left: 0.5rem !important
    }

    .ml-s-3 {
        margin-left: 1rem !important
    }

    .ml-s-4 {
        margin-left: 1.5rem !important
    }

    .ml-s-5 {
        margin-left: 3rem !important
    }

    .ml-s-auto {
        margin-left: auto !important
    }

    .p-s-0 {
        padding: 0 !important
    }

    .p-s-1 {
        padding: 0.25rem !important
    }

    .p-s-2 {
        padding: 0.5rem !important
    }

    .p-s-3 {
        padding: 1rem !important
    }

    .p-s-4 {
        padding: 1.5rem !important
    }

    .p-s-5 {
        padding: 3rem !important
    }

    .px-s-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-s-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important
    }

    .px-s-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important
    }

    .px-s-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-s-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-s-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-s-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-s-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important
    }

    .py-s-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important
    }

    .py-s-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-s-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-s-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-s-0 {
        padding-top: 0 !important
    }

    .pt-s-1 {
        padding-top: 0.25rem !important
    }

    .pt-s-2 {
        padding-top: 0.5rem !important
    }

    .pt-s-3 {
        padding-top: 1rem !important
    }

    .pt-s-4 {
        padding-top: 1.5rem !important
    }

    .pt-s-5 {
        padding-top: 3rem !important
    }

    .pr-s-0 {
        padding-right: 0 !important
    }

    .pr-s-1 {
        padding-right: 0.25rem !important
    }

    .pr-s-2 {
        padding-right: 0.5rem !important
    }

    .pr-s-3 {
        padding-right: 1rem !important
    }

    .pr-s-4 {
        padding-right: 1.5rem !important
    }

    .pr-s-5 {
        padding-right: 3rem !important
    }

    .pb-s-0 {
        padding-bottom: 0 !important
    }

    .pb-s-1 {
        padding-bottom: 0.25rem !important
    }

    .pb-s-2 {
        padding-bottom: 0.5rem !important
    }

    .pb-s-3 {
        padding-bottom: 1rem !important
    }

    .pb-s-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-s-5 {
        padding-bottom: 3rem !important
    }

    .pl-s-0 {
        padding-left: 0 !important
    }

    .pl-s-1 {
        padding-left: 0.25rem !important
    }

    .pl-s-2 {
        padding-left: 0.5rem !important
    }

    .pl-s-3 {
        padding-left: 1rem !important
    }

    .pl-s-4 {
        padding-left: 1.5rem !important
    }

    .pl-s-5 {
        padding-left: 3rem !important
    }

    .gap-s-0 {
        gap: 0 !important
    }

    .gap-s-1 {
        gap: 0.25rem !important
    }

    .gap-s-2 {
        gap: 0.5rem !important
    }

    .gap-s-3 {
        gap: 1rem !important
    }

    .gap-s-4 {
        gap: 1.5rem !important
    }

    .gap-s-5 {
        gap: 3rem !important
    }

    .row-gap-s-0 {
        row-gap: 0 !important
    }

    .row-gap-s-1 {
        row-gap: 0.25rem !important
    }

    .row-gap-s-2 {
        row-gap: 0.5rem !important
    }

    .row-gap-s-3 {
        row-gap: 1rem !important
    }

    .row-gap-s-4 {
        row-gap: 1.5rem !important
    }

    .row-gap-s-5 {
        row-gap: 3rem !important
    }

    .column-gap-s-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important
    }

    .column-gap-s-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important
    }

    .column-gap-s-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important
    }

    .column-gap-s-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important
    }

    .column-gap-s-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important
    }

    .column-gap-s-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important
    }

    .text-s-start {
        text-align: right !important
    }

    .text-s-end {
        text-align: left !important
    }

    .text-s-center {
        text-align: center !important
    }
}

@media all and (min-width: 640px) {
    .col-sm-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .col-sm s {
        flex: 1 0 0%
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .col-sm {
        flex: 1 0 0%
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-inline-grid {
        display: inline-grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: 0.25rem !important
    }

    .m-sm-2 {
        margin: 0.5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important
    }

    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-0 {
        margin-right: 0 !important
    }

    .mr-sm-1 {
        margin-right: 0.25rem !important
    }

    .mr-sm-2 {
        margin-right: 0.5rem !important
    }

    .mr-sm-3 {
        margin-right: 1rem !important
    }

    .mr-sm-4 {
        margin-right: 1.5rem !important
    }

    .mr-sm-5 {
        margin-right: 3rem !important
    }

    .mr-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-0 {
        margin-left: 0 !important
    }

    .ml-sm-1 {
        margin-left: 0.25rem !important
    }

    .ml-sm-2 {
        margin-left: 0.5rem !important
    }

    .ml-sm-3 {
        margin-left: 1rem !important
    }

    .ml-sm-4 {
        margin-left: 1.5rem !important
    }

    .ml-sm-5 {
        margin-left: 3rem !important
    }

    .ml-sm-auto {
        margin-left: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: 0.25rem !important
    }

    .p-sm-2 {
        padding: 0.5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important
    }

    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-0 {
        padding-right: 0 !important
    }

    .pr-sm-1 {
        padding-right: 0.25rem !important
    }

    .pr-sm-2 {
        padding-right: 0.5rem !important
    }

    .pr-sm-3 {
        padding-right: 1rem !important
    }

    .pr-sm-4 {
        padding-right: 1.5rem !important
    }

    .pr-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-0 {
        padding-left: 0 !important
    }

    .pl-sm-1 {
        padding-left: 0.25rem !important
    }

    .pl-sm-2 {
        padding-left: 0.5rem !important
    }

    .pl-sm-3 {
        padding-left: 1rem !important
    }

    .pl-sm-4 {
        padding-left: 1.5rem !important
    }

    .pl-sm-5 {
        padding-left: 3rem !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: 0.25rem !important
    }

    .gap-sm-2 {
        gap: 0.5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .row-gap-sm-0 {
        row-gap: 0 !important
    }

    .row-gap-sm-1 {
        row-gap: 0.25rem !important
    }

    .row-gap-sm-2 {
        row-gap: 0.5rem !important
    }

    .row-gap-sm-3 {
        row-gap: 1rem !important
    }

    .row-gap-sm-4 {
        row-gap: 1.5rem !important
    }

    .row-gap-sm-5 {
        row-gap: 3rem !important
    }

    .column-gap-sm-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important
    }

    .column-gap-sm-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important
    }

    .column-gap-sm-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important
    }

    .column-gap-sm-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important
    }

    .column-gap-sm-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important
    }

    .column-gap-sm-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important
    }

    .text-sm-start {
        text-align: right !important
    }

    .text-sm-end {
        text-align: left !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media all and (min-width: 768px) {
    .mw-md {
        max-width: 768px
    }

    .w-md-fit {
        width: fit-content !important
    }

    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .md-sticky {
        position: sticky;
        top: 10px
    }

    .col-md-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-inline-grid {
        display: inline-grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: 0.25rem !important
    }

    .m-md-2 {
        margin: 0.5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important
    }

    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: 0.25rem !important
    }

    .mt-md-2 {
        margin-top: 0.5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .mr-md-0 {
        margin-right: 0 !important
    }

    .mr-md-1 {
        margin-right: 0.25rem !important
    }

    .mr-md-2 {
        margin-right: 0.5rem !important
    }

    .mr-md-3 {
        margin-right: 1rem !important
    }

    .mr-md-4 {
        margin-right: 1.5rem !important
    }

    .mr-md-5 {
        margin-right: 3rem !important
    }

    .mr-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-0 {
        margin-left: 0 !important
    }

    .ml-md-1 {
        margin-left: 0.25rem !important
    }

    .ml-md-2 {
        margin-left: 0.5rem !important
    }

    .ml-md-3 {
        margin-left: 1rem !important
    }

    .ml-md-4 {
        margin-left: 1.5rem !important
    }

    .ml-md-5 {
        margin-left: 3rem !important
    }

    .ml-md-auto {
        margin-left: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: 0.25rem !important
    }

    .p-md-2 {
        padding: 0.5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important
    }

    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: 0.25rem !important
    }

    .pt-md-2 {
        padding-top: 0.5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-0 {
        padding-right: 0 !important
    }

    .pr-md-1 {
        padding-right: 0.25rem !important
    }

    .pr-md-2 {
        padding-right: 0.5rem !important
    }

    .pr-md-3 {
        padding-right: 1rem !important
    }

    .pr-md-4 {
        padding-right: 1.5rem !important
    }

    .pr-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-0 {
        padding-left: 0 !important
    }

    .pl-md-1 {
        padding-left: 0.25rem !important
    }

    .pl-md-2 {
        padding-left: 0.5rem !important
    }

    .pl-md-3 {
        padding-left: 1rem !important
    }

    .pl-md-4 {
        padding-left: 1.5rem !important
    }

    .pl-md-5 {
        padding-left: 3rem !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: 0.25rem !important
    }

    .gap-md-2 {
        gap: 0.5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .row-gap-md-0 {
        row-gap: 0 !important
    }

    .row-gap-md-1 {
        row-gap: 0.25rem !important
    }

    .row-gap-md-2 {
        row-gap: 0.5rem !important
    }

    .row-gap-md-3 {
        row-gap: 1rem !important
    }

    .row-gap-md-4 {
        row-gap: 1.5rem !important
    }

    .row-gap-md-5 {
        row-gap: 3rem !important
    }

    .column-gap-md-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important
    }

    .column-gap-md-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important
    }

    .column-gap-md-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important
    }

    .column-gap-md-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important
    }

    .column-gap-md-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important
    }

    .column-gap-md-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important
    }

    .text-md-start {
        text-align: right !important
    }

    .text-md-end {
        text-align: left !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media all and (min-width: 1024px) {
    .mw-lg {
        max-width: 1024px
    }

    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-inline-grid {
        display: inline-grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: 0.25rem !important
    }

    .m-lg-2 {
        margin: 0.5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important
    }

    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-0 {
        margin-right: 0 !important
    }

    .mr-lg-1 {
        margin-right: 0.25rem !important
    }

    .mr-lg-2 {
        margin-right: 0.5rem !important
    }

    .mr-lg-3 {
        margin-right: 1rem !important
    }

    .mr-lg-4 {
        margin-right: 1.5rem !important
    }

    .mr-lg-5 {
        margin-right: 3rem !important
    }

    .mr-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-0 {
        margin-left: 0 !important
    }

    .ml-lg-1 {
        margin-left: 0.25rem !important
    }

    .ml-lg-2 {
        margin-left: 0.5rem !important
    }

    .ml-lg-3 {
        margin-left: 1rem !important
    }

    .ml-lg-4 {
        margin-left: 1.5rem !important
    }

    .ml-lg-5 {
        margin-left: 3rem !important
    }

    .ml-lg-auto {
        margin-left: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: 0.25rem !important
    }

    .p-lg-2 {
        padding: 0.5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important
    }

    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-0 {
        padding-right: 0 !important
    }

    .pr-lg-1 {
        padding-right: 0.25rem !important
    }

    .pr-lg-2 {
        padding-right: 0.5rem !important
    }

    .pr-lg-3 {
        padding-right: 1rem !important
    }

    .pr-lg-4 {
        padding-right: 1.5rem !important
    }

    .pr-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-0 {
        padding-left: 0 !important
    }

    .pl-lg-1 {
        padding-left: 0.25rem !important
    }

    .pl-lg-2 {
        padding-left: 0.5rem !important
    }

    .pl-lg-3 {
        padding-left: 1rem !important
    }

    .pl-lg-4 {
        padding-left: 1.5rem !important
    }

    .pl-lg-5 {
        padding-left: 3rem !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: 0.25rem !important
    }

    .gap-lg-2 {
        gap: 0.5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .row-gap-lg-0 {
        row-gap: 0 !important
    }

    .row-gap-lg-1 {
        row-gap: 0.25rem !important
    }

    .row-gap-lg-2 {
        row-gap: 0.5rem !important
    }

    .row-gap-lg-3 {
        row-gap: 1rem !important
    }

    .row-gap-lg-4 {
        row-gap: 1.5rem !important
    }

    .row-gap-lg-5 {
        row-gap: 3rem !important
    }

    .column-gap-lg-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important
    }

    .column-gap-lg-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important
    }

    .column-gap-lg-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important
    }

    .column-gap-lg-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important
    }

    .column-gap-lg-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important
    }

    .column-gap-lg-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important
    }

    .text-lg-start {
        text-align: right !important
    }

    .text-lg-end {
        text-align: left !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media all and (min-width: 1200px) {
    legend {
        font-size: 1.5rem
    }

    .mw-xl {
        max-width: 1200px
    }

    .col-xl-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .fs-1 {
        font-size: 2.5rem !important
    }

    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .col-lg-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-inline-grid {
        display: inline-grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: 0.25rem !important
    }

    .m-xl-2 {
        margin: 0.5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important
    }

    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-0 {
        margin-right: 0 !important
    }

    .mr-xl-1 {
        margin-right: 0.25rem !important
    }

    .mr-xl-2 {
        margin-right: 0.5rem !important
    }

    .mr-xl-3 {
        margin-right: 1rem !important
    }

    .mr-xl-4 {
        margin-right: 1.5rem !important
    }

    .mr-xl-5 {
        margin-right: 3rem !important
    }

    .mr-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-0 {
        margin-left: 0 !important
    }

    .ml-xl-1 {
        margin-left: 0.25rem !important
    }

    .ml-xl-2 {
        margin-left: 0.5rem !important
    }

    .ml-xl-3 {
        margin-left: 1rem !important
    }

    .ml-xl-4 {
        margin-left: 1.5rem !important
    }

    .ml-xl-5 {
        margin-left: 3rem !important
    }

    .ml-xl-auto {
        margin-left: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: 0.25rem !important
    }

    .p-xl-2 {
        padding: 0.5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important
    }

    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-0 {
        padding-right: 0 !important
    }

    .pr-xl-1 {
        padding-right: 0.25rem !important
    }

    .pr-xl-2 {
        padding-right: 0.5rem !important
    }

    .pr-xl-3 {
        padding-right: 1rem !important
    }

    .pr-xl-4 {
        padding-right: 1.5rem !important
    }

    .pr-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-0 {
        padding-left: 0 !important
    }

    .pl-xl-1 {
        padding-left: 0.25rem !important
    }

    .pl-xl-2 {
        padding-left: 0.5rem !important
    }

    .pl-xl-3 {
        padding-left: 1rem !important
    }

    .pl-xl-4 {
        padding-left: 1.5rem !important
    }

    .pl-xl-5 {
        padding-left: 3rem !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: 0.25rem !important
    }

    .gap-xl-2 {
        gap: 0.5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .row-gap-xl-0 {
        row-gap: 0 !important
    }

    .row-gap-xl-1 {
        row-gap: 0.25rem !important
    }

    .row-gap-xl-2 {
        row-gap: 0.5rem !important
    }

    .row-gap-xl-3 {
        row-gap: 1rem !important
    }

    .row-gap-xl-4 {
        row-gap: 1.5rem !important
    }

    .row-gap-xl-5 {
        row-gap: 3rem !important
    }

    .column-gap-xl-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important
    }

    .column-gap-xl-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important
    }

    .column-gap-xl-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important
    }

    .column-gap-xl-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important
    }

    .column-gap-xl-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important
    }

    .column-gap-xl-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important
    }

    .text-xl-start {
        text-align: right !important
    }

    .text-xl-end {
        text-align: left !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

@media all and (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-inline-grid {
        display: inline-grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: 0.25rem !important
    }

    .m-xxl-2 {
        margin: 0.5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important
    }

    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important
    }

    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .mr-xxl-0 {
        margin-right: 0 !important
    }

    .mr-xxl-1 {
        margin-right: 0.25rem !important
    }

    .mr-xxl-2 {
        margin-right: 0.5rem !important
    }

    .mr-xxl-3 {
        margin-right: 1rem !important
    }

    .mr-xxl-4 {
        margin-right: 1.5rem !important
    }

    .mr-xxl-5 {
        margin-right: 3rem !important
    }

    .mr-xxl-auto {
        margin-right: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ml-xxl-0 {
        margin-left: 0 !important
    }

    .ml-xxl-1 {
        margin-left: 0.25rem !important
    }

    .ml-xxl-2 {
        margin-left: 0.5rem !important
    }

    .ml-xxl-3 {
        margin-left: 1rem !important
    }

    .ml-xxl-4 {
        margin-left: 1.5rem !important
    }

    .ml-xxl-5 {
        margin-left: 3rem !important
    }

    .ml-xxl-auto {
        margin-left: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: 0.25rem !important
    }

    .p-xxl-2 {
        padding: 0.5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important
    }

    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important
    }

    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: 0.25rem !important
    }

    .pt-xxl-2 {
        padding-top: 0.5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pr-xxl-0 {
        padding-right: 0 !important
    }

    .pr-xxl-1 {
        padding-right: 0.25rem !important
    }

    .pr-xxl-2 {
        padding-right: 0.5rem !important
    }

    .pr-xxl-3 {
        padding-right: 1rem !important
    }

    .pr-xxl-4 {
        padding-right: 1.5rem !important
    }

    .pr-xxl-5 {
        padding-right: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xxl-0 {
        padding-left: 0 !important
    }

    .pl-xxl-1 {
        padding-left: 0.25rem !important
    }

    .pl-xxl-2 {
        padding-left: 0.5rem !important
    }

    .pl-xxl-3 {
        padding-left: 1rem !important
    }

    .pl-xxl-4 {
        padding-left: 1.5rem !important
    }

    .pl-xxl-5 {
        padding-left: 3rem !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: 0.25rem !important
    }

    .gap-xxl-2 {
        gap: 0.5rem !important
    }

    .gap-xxl-3 {
        gap: 1rem !important
    }

    .gap-xxl-4 {
        gap: 1.5rem !important
    }

    .gap-xxl-5 {
        gap: 3rem !important
    }

    .row-gap-xxl-0 {
        row-gap: 0 !important
    }

    .row-gap-xxl-1 {
        row-gap: 0.25rem !important
    }

    .row-gap-xxl-2 {
        row-gap: 0.5rem !important
    }

    .row-gap-xxl-3 {
        row-gap: 1rem !important
    }

    .row-gap-xxl-4 {
        row-gap: 1.5rem !important
    }

    .row-gap-xxl-5 {
        row-gap: 3rem !important
    }

    .column-gap-xxl-0 {
        -moz-column-gap: 0 !important;
        column-gap: 0 !important
    }

    .column-gap-xxl-1 {
        -moz-column-gap: 0.25rem !important;
        column-gap: 0.25rem !important
    }

    .column-gap-xxl-2 {
        -moz-column-gap: 0.5rem !important;
        column-gap: 0.5rem !important
    }

    .column-gap-xxl-3 {
        -moz-column-gap: 1rem !important;
        column-gap: 1rem !important
    }

    .column-gap-xxl-4 {
        -moz-column-gap: 1.5rem !important;
        column-gap: 1.5rem !important
    }

    .column-gap-xxl-5 {
        -moz-column-gap: 3rem !important;
        column-gap: 3rem !important
    }

    .text-xxl-start {
        text-align: right !important
    }

    .text-xxl-end {
        text-align: left !important
    }

    .text-xxl-center {
        text-align: center !important
    }

    .fill {
        width: 100vw;
        position: relative;
        margin-right: -50vw;
        right: 50%;
        max-width: 100vw;
        border-radius: 0 !important;
        padding: 30px
    }
}

@media all and (max-width: 991px) {
    .sm-fill {
        width: 100vw;
        position: relative;
        margin-right: -50vw;
        right: 50%;
        max-width: 100vw;
        border-radius: 0 !important;
        padding: 30px
    }
}

@media all and (max-width: 767px) {
    .text {
        line-height: 1.5
    }

    .md-fill {
        width: 100vw;
        position: relative;
        margin-right: -50vw;
        right: 50%;
        max-width: 100vw;
        border-radius: 0 !important;
        padding: 30px
    }

    :not(.table-responsive) > table:not(.pure) thead, :not(.table-responsive) > table:not(.pure) tfoot {
        display: none
    }

    :not(.table-responsive) > table:not(.pure) tbody tr > td {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100% !important;
        border: none;
        max-width: 100% !important;
        padding: 5px;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    :not(.table-responsive) > table:not(.pure) tbody tr > td:before {
        content: attr(data-title) ' :';
        font-weight: 500;
        color: #666;
        margin-left: 15px;
        width: 81px;
        padding: 3px;
        text-align: start
    }

    :not(.table-responsive) > table:not(.pure) tbody tr:not(:last-child) {
        border-bottom: 1px solid #ddd;
        padding: 5px;
        display: block
    }


    .modal {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
        transition: all .3s ease-in-out;
        width: 100%;
        max-width: 100%;
        display: block;
        visibility: hidden
    }

    .modal.show, .add-credit.show {
        transform: translateY(0);
        visibility: visible;
        opacity: 1
    }



    .modal .modal-content {
        border-radius: 20px 20px 0 0
    }
}

@media all and (max-width: 639px) {
    .sm-fill {
        width: 100vw;
        position: relative;
        margin-right: -50vw;
        right: 50%;
        max-width: 100vw;
        border-radius: 0 !important;
        padding: 30px
    }
}

@media all and (max-width: 370px) {
    #toast > div {
        width: 100%;
        opacity: .8
    }
}

.tabs {
    max-width: 90%;
    margin: auto;
    padding: 5px;
    gap: 10px 20px;
    align-items: center;
    position: relative
}

.tab-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.tab-item {
    padding: 10px;
    color: var(--place-holder-color);
    cursor: pointer
}

.tab-item.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary)
}

.tab-content {
    display: none;
    padding-top: 20px
}

.tab-content.show {
    display: flex
}

.label {
    --label-bg: var(--primary);
    --label-color: var(--white);
    font-size: 12px;
    background-color: var(--label-bg);
    color: var(--label-color);
    padding: 4px 10px;
    border-radius: 4px
}

.label.error {
    --label-bg: var(--error)
}

.label.success {
    --label-bg: var(--success)
}

.label.waiting {
    --label-bg: #ffc107
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

@font-face {
    font-family: yekan;
    font-weight: 300;
    src: url("../font/yekan/iranyekanweblight.woff");
    font-display: swap
}

@font-face {
    font-family: yekan;
    font-weight: 500;
    src: url("../font/yekan/iranyekanwebregular.woff");
    font-display: swap
}

@font-face {
    font-family: yekan;
    font-weight: 900;
    src: url("../font/yekan/iranyekanwebextrabold.woff");
    font-display: swap
}