.col-12 {
    width: 100%;
}

.d-none {
    display: none;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-table {
    display: table;
}

.d-table-row {
    display: table-row;
}

.d-table-cell {
    display: table-cell;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.d-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none;
    }

    .d-sm-inline {
        display: inline;
    }

    .d-sm-inline-block {
        display: inline-block;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-table {
        display: table;
    }

    .d-sm-table-row {
        display: table-row;
    }

    .d-sm-table-cell {
        display: table-cell;
    }

    .d-sm-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none;
    }

    .d-md-inline {
        display: inline;
    }

    .d-md-inline-block {
        display: inline-block;
    }

    .d-md-block {
        display: block;
    }

    .d-md-table {
        display: table;
    }

    .d-md-table-row {
        display: table-row;
    }

    .d-md-table-cell {
        display: table-cell;
    }

    .d-md-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none;
    }

    .d-lg-inline {
        display: inline;
    }

    .d-lg-inline-block {
        display: inline-block;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-table {
        display: table;
    }

    .d-lg-table-row {
        display: table-row;
    }

    .d-lg-table-cell {
        display: table-cell;
    }

    .d-lg-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none;
    }

    .d-xl-inline {
        display: inline;
    }

    .d-xl-inline-block {
        display: inline-block;
    }

    .d-xl-block {
        display: block;
    }

    .d-xl-table {
        display: table;
    }

    .d-xl-table-row {
        display: table-row;
    }

    .d-xl-table-cell {
        display: table-cell;
    }

    .d-xl-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

.flex-row {
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-column {
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.flex-fill {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.flex-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.flex-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.flex-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.flex-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-content-space-evenly {
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.align-items-start {
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}

.align-items-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.align-self-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .flex-sm-column {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1;
        flex-shrink: 1;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .align-items-sm-start {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .align-items-sm-end {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .align-items-sm-center {
        -ms-flex-align: center;
        align-items: center;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify;
        align-content: space-between;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute;
        align-content: space-around;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch;
        align-content: stretch;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto;
        align-self: auto;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline;
        align-self: baseline;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .flex-md-column {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1;
        flex-shrink: 1;
    }

    .justify-content-md-start {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .justify-content-md-end {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .justify-content-md-center {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .justify-content-md-between {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .align-items-md-start {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .align-items-md-end {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .align-items-md-center {
        -ms-flex-align: center;
        align-items: center;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify;
        align-content: space-between;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute;
        align-content: space-around;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch;
        align-content: stretch;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto;
        align-self: auto;
    }

    .align-self-md-start {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .align-self-md-end {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .align-self-md-center {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline;
        align-self: baseline;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .flex-lg-column {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1;
        flex-shrink: 1;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .align-items-lg-start {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .align-items-lg-end {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .align-items-lg-center {
        -ms-flex-align: center;
        align-items: center;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify;
        align-content: space-between;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute;
        align-content: space-around;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch;
        align-content: stretch;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto;
        align-self: auto;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline;
        align-self: baseline;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .flex-xl-column {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1;
        flex-shrink: 1;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .align-items-xl-start {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .align-items-xl-end {
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .align-items-xl-center {
        -ms-flex-align: center;
        align-items: center;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify;
        align-content: space-between;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute;
        align-content: space-around;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch;
        align-content: stretch;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto;
        align-self: auto;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline;
        align-self: baseline;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

.w-5 {
    width: 5%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-55 {
    width: 55%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-70 {
    width: 70%;
}

.w-75 {
    width: 75%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.w-100 {
    width: 100%;
}

.h-5 {
    height: 5%;
}

.h-10 {
    height: 10%;
}

.h-15 {
    height: 15%;
}

.h-20 {
    height: 20%;
}

.h-25 {
    height: 25%;
}

.h-30 {
    height: 30%;
}

.h-35 {
    height: 35%;
}

.h-40 {
    height: 40%;
}

.h-45 {
    height: 45%;
}

.h-50 {
    height: 50%;
}

.h-55 {
    height: 55%;
}

.h-60 {
    height: 60%;
}

.h-65 {
    height: 65%;
}

.h-70 {
    height: 70%;
}

.h-75 {
    height: 75%;
}

.h-80 {
    height: 80%;
}

.h-85 {
    height: 85%;
}

.h-90 {
    height: 90%;
}

.h-95 {
    height: 95%;
}

.h-100 {
    height: 100%;
}

.max-w-100 {
    max-width: 100%;
}

.max-w-75 {
    max-width: 75%;
}

.max-w-50 {
    max-width: 50%;
}

.max-w-25 {
    max-width: 25%;
}

.max-h-100 {
    max-height: 100%;
}

.min-w-100 {
    min-width: 100%;
}

.min-w-75 {
    min-width: 75%;
}

.min-w-50 {
    min-width: 50%;
}

.min-w-25 {
    min-width: 25%;
}

.min-h-100 {
    min-height: 100%;
}

.max-h-75 {
    max-height: 75%;
}

.max-h-50 {
    max-height: 50%;
}

.max-h-25 {
    max-height: 25%;
}

.m-0 {
    margin: 0;
}

.mt-0,
.my-0 {
    margin-top: 0;
}

.mr-0,
.mx-0 {
    margin-right: 0;
}

.mb-0,
.my-0 {
    margin-bottom: 0;
}

.ml-0,
.mx-0 {
    margin-left: 0;
}

.m-0\.5 {
    margin: 0.125rem;
}

.mt-0\.5,
.my-0\.5 {
    margin-top: 0.125rem;
}

.mr-0\.5,
.mx-0\.5 {
    margin-right: 0.125rem;
}

.mb-0\.5,
.my-0\.5 {
    margin-bottom: 0.125rem;
}

.ml-0\.5,
.mx-0\.5 {
    margin-left: 0.125rem;
}

.m-1 {
    margin: 0.25rem;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.mt-3,
.my-3 {
    margin-top: 1rem;
}

.mr-3,
.mx-3 {
    margin-right: 1rem;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem;
}

.ml-3,
.mx-3 {
    margin-left: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

.mt-5,
.my-5 {
    margin-top: 3rem;
}

.mr-5,
.mx-5 {
    margin-right: 3rem;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem;
}

.ml-5,
.mx-5 {
    margin-left: 3rem;
}

.p-0 {
    padding: 0;
}

.pt-0,
.py-0 {
    padding-top: 0;
}

.pr-0,
.px-0 {
    padding-right: 0;
}

.pb-0,
.py-0 {
    padding-bottom: 0;
}

.pl-0,
.px-0 {
    padding-left: 0;
}

.p-1 {
    padding: 0.25rem;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.pt-3,
.py-3 {
    padding-top: 1rem;
}

.pr-3,
.px-3 {
    padding-right: 1rem;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem;
}

.pl-3,
.px-3 {
    padding-left: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.pt-5,
.py-5 {
    padding-top: 3rem;
}

.pr-5,
.px-5 {
    padding-right: 3rem;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem;
}

.pl-5,
.px-5 {
    padding-left: 3rem;
}

.m-auto {
    margin: auto;
}

.mt-auto,
.my-auto {
    margin-top: auto;
}

.mr-auto,
.mx-auto {
    margin-right: auto;
}

.mb-auto,
.my-auto {
    margin-bottom: auto;
}

.ml-auto,
.mx-auto {
    margin-left: auto;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0;
    }

    .m-sm-1 {
        margin: 0.25rem;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem;
    }

    .m-sm-2 {
        margin: 0.5rem;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem;
    }

    .m-sm-3 {
        margin: 1rem;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem;
    }

    .m-sm-4 {
        margin: 1.5rem;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem;
    }

    .m-sm-5 {
        margin: 3rem;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem;
    }

    .p-sm-0 {
        padding: 0;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0;
    }

    .p-sm-1 {
        padding: 0.25rem;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem;
    }

    .p-sm-2 {
        padding: 0.5rem;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem;
    }

    .p-sm-3 {
        padding: 1rem;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem;
    }

    .p-sm-4 {
        padding: 1.5rem;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem;
    }

    .p-sm-5 {
        padding: 3rem;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem;
    }

    .m-sm-auto {
        margin: auto;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0;
    }

    .m-md-1 {
        margin: 0.25rem;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem;
    }

    .m-md-2 {
        margin: 0.5rem;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem;
    }

    .m-md-3 {
        margin: 1rem;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem;
    }

    .m-md-4 {
        margin: 1.5rem;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem;
    }

    .m-md-5 {
        margin: 3rem;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem;
    }

    .p-md-0 {
        padding: 0;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0;
    }

    .p-md-1 {
        padding: 0.25rem;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem;
    }

    .p-md-2 {
        padding: 0.5rem;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem;
    }

    .p-md-3 {
        padding: 1rem;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem;
    }

    .p-md-4 {
        padding: 1.5rem;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem;
    }

    .p-md-5 {
        padding: 3rem;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem;
    }

    .m-md-auto {
        margin: auto;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0;
    }

    .m-lg-1 {
        margin: 0.25rem;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem;
    }

    .m-lg-2 {
        margin: 0.5rem;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem;
    }

    .m-lg-3 {
        margin: 1rem;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem;
    }

    .m-lg-4 {
        margin: 1.5rem;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem;
    }

    .m-lg-5 {
        margin: 3rem;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem;
    }

    .p-lg-0 {
        padding: 0;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0;
    }

    .p-lg-1 {
        padding: 0.25rem;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem;
    }

    .p-lg-2 {
        padding: 0.5rem;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem;
    }

    .p-lg-3 {
        padding: 1rem;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem;
    }

    .p-lg-4 {
        padding: 1.5rem;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem;
    }

    .p-lg-5 {
        padding: 3rem;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem;
    }

    .m-lg-auto {
        margin: auto;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0;
    }

    .m-xl-1 {
        margin: 0.25rem;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem;
    }

    .m-xl-2 {
        margin: 0.5rem;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem;
    }

    .m-xl-3 {
        margin: 1rem;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem;
    }

    .m-xl-4 {
        margin: 1.5rem;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem;
    }

    .m-xl-5 {
        margin: 3rem;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem;
    }

    .p-xl-0 {
        padding: 0;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0;
    }

    .p-xl-1 {
        padding: 0.25rem;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem;
    }

    .p-xl-2 {
        padding: 0.5rem;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem;
    }

    .p-xl-3 {
        padding: 1rem;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem;
    }

    .p-xl-4 {
        padding: 1.5rem;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem;
    }

    .p-xl-5 {
        padding: 3rem;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem;
    }

    .m-xl-auto {
        margin: auto;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto;
    }
}

.font-weight-light {
    font-weight: 300;
}

.font-weight-normal {
    font-weight: 400;
}

.font-weight-bold {
    font-weight: 700;
}

.text-light {
    color: #f8f9fa;
}

a.text-light:hover,
a.text-light:focus {
    color: #dae0e5;
}

.text-white {
    color: #fff;
}

a.text-white:hover,
a.text-white:focus {
    color: #1d2124;
}

.text-dark {
    color: #343a40;
}

a.text-dark:hover,
a.text-dark:focus {
    color: #1d2124;
}

.bg-light {
    background-color: #f8f9fa;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5;
}

.bg-white {
    background-color: #fff;
}

.bg-dark {
    background-color: #343a40;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124;
}

.bg-transparent {
    background-color: transparent;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
    box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #565e64;
    border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.border-0 {
    border: 0;
}

.border {
    border: 1px solid #dee2e6;
}

.border-top {
    border-top: 1px solid #dee2e6;
}

.border-right {
    border-right: 1px solid #dee2e6;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6;
}

.border-left {
    border-left: 1px solid #dee2e6;
}

.border-top-0 {
    border-top: 0;
}

.border-right-0 {
    border-right: 0;
}

.border-bottom-0 {
    border-bottom: 0;
}

.border-left-0 {
    border-left: 0;
}

.border-primary {
    border-color: #007bff;
}

.border-secondary {
    border-color: #6c757d;
}

.border-success {
    border-color: #28a745;
}

.border-info {
    border-color: #17a2b8;
}

.border-warning {
    border-color: #ffc107;
}

.border-danger {
    border-color: #dc3545;
}

.border-light {
    border-color: #f8f9fa;
}

.border-dark {
    border-color: #343a40;
}

.border-white {
    border-color: #fff;
}

.border-dashed {
    border-style: dashed;
}

.border-dotted {
    border-style: dotted;
}

.border-double {
    border-style: double;
}

.border-none {
    border-style: none;
}

.rounded-sm {
    border-radius: 0.2rem;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.3rem;
}

.rounded-pill {
    border-radius: 50rem;
}

.rounded-oval {
    border-radius: 50px;
}

.rounded-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.rounded-right {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.rounded-left {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.rounded-circle {
    border-radius: 50%;
}

.rounded-0 {
    border-radius: 0;
}

.rounded-left-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0m;
}

.rounded-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0m;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: -webkit-sticky;
    position: sticky;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

a.badge-primary:hover,
a.badge-primary:focus {
    color: #fff;
    background-color: #0062cc;
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
    color: #fff;
    background-color: #545b62;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

a.badge-success:hover,
a.badge-success:focus {
    color: #fff;
    background-color: #1e7e34;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

a.badge-info:hover,
a.badge-info:focus {
    color: #fff;
    background-color: #117a8b;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

a.badge-warning:hover,
a.badge-warning:focus {
    color: #212529;
    background-color: #d39e00;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

a.badge-danger:hover,
a.badge-danger:focus {
    color: #fff;
    background-color: #bd2130;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

a.badge-light:hover,
a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
    color: #fff;
    background-color: #1d2124;
}

.bootstrap4-input-group {
    position: relative;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    width: 100%;
}

.bootstrap4-input-group .input-group-prepend {
    display: flex;
    margin-right: -1px;
}

.bootstrap4-input-group .input-group-prepend .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    color: #495057;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* 以下 use https://nipponcolors.com color 擴充 */

.text-asagi {
    color: #33a6b8;
}

.bg-asagi {
    background-color: #33a6b8;
}

.border-asagi {
    border-color: #33a6b8;
}

.text-hanada {
    color: #006284;
}

.bg-hanada {
    background-color: #006284;
}

.bg-gofun {
    background-color: #f4fcef;
}

.border-hanada {
    border-color: #006284;
}

.text-aimirucha {
    color: #0f4c3a;
}

.bg-aimirucha {
    background-color: #0f4c3a;
}

.bg-ayame {
    background-color: #6f3381;
}

.text-ayame {
    color: #6f3381;
}

.bg-umemurasaki {
    background-color: #a8497a;
}

.border-aimirucha {
    border-color: #0f4c3a;
}

.text-susutake {
    color: #6e552f;
}

.bg-susutake {
    background-color: #6e552f;
}

.border-susutake {
    border-color: #6e552f;
}

.text-sunezumi {
    color: #787d7b;
}

.bg-sunezumi {
    background-color: #787d7b;
}

.border-sunezumi {
    border-color: #787d7b;
}

.text-sakura {
    color: #fedfe1;
}

.bg-sakura {
    background-color: #fedfe1;
}

.bg-shironezumi {
    background-color: #bdc0ba;
}

.border-sakura {
    border-color: #fedfe1;
}

.bg-blue-black {
    background-color: #31353d;
}

.text-secondary {
    color: #6c757d;
}

.bg-secondary {
    background-color: #6c757d;
}

.bg-tsutsuji {
    background-color: #e03c8a;
}

.border-secondary {
    border-color: #787d7b;
}

.bg-striped-black {
    background: repeating-linear-gradient(135deg, #212529, #212529 5px, rgba(0, 0, 0, 0) 5px, rgba(0, 0, 0, 0) 10px);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* 自定義擴充 */
.border-w-1 {
    border-width: 1px;
}

.border-w-2 {
    border-width: 2px;
}

.border-w-4 {
    border-width: 4px;
}

.border-w-8 {
    border-width: 8px;
}

/* top */
.border-top-w-1 {
    border-top-width: 1px;
}

.border-top-w-2 {
    border-top-width: 2px;
}

.border-top-w-4 {
    border-top-width: 4px;
}

.border-top-w-8 {
    border-top-width: 8px;
}

/* left */
.border-lw-1 {
    border-left-width: 1px;
}

.border-lw-2 {
    border-left-width: 2px;
}

.border-lw-4 {
    border-left-width: 4px;
}

.border-lw-8 {
    border-left-width: 8px;
}

/* right */
.border-rw-1 {
    border-right-width: 1px;
}

.border-rw-2 {
    border-right-width: 2px;
}

.border-rw-4 {
    border-right-width: 4px;
}

.border-rw-8 {
    border-right-width: 8px;
}

/* bottom */
.border-bw-1 {
    border-bottom-width: 1px;
}

.border-bw-2 {
    border-bottom-width: 2px;
}

.border-bw-4 {
    border-bottom-width: 4px;
}

.border-bw-8 {
    border-bottom-width: 8px;
}

/* tailwindCss */
.opacity-0 {
    opacity: 0;
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-125 {
    opacity: 0.125;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-95 {
    opacity: 0.95;
}

.opacity-100 {
    opacity: 1;
}

/* 自訂義 css */
.vh-100 {
    height: 100vh;
}

.vw-100 {
    width: 100vw;
}

.font-8 {
    font-size: 8px;
}

.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-28 {
    font-size: 28px;
}

.font-30 {
    font-size: 30px;
}

.font-32 {
    font-size: 32px;
}

.overflow-y-auto {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.overflow-x-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-move {
    cursor: move;
}

.border-1 {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-3 {
    border-width: 3px;
}

.border-color-gray {
    border-color: gray;
}

.border-color-light-gray {
    border-color: #ccc;
}

.border-light-black {
    border: 1px solid #333 !important;
}

.border-style-solid {
    border-style: solid;
}

.border-style-none {
    border-style: none;
}

.rounded-5 {
    border-radius: 5px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-12 {
    border-radius: 12px;
}

.rounded-14 {
    border-radius: 14px;
}

.rounded-16 {
    border-radius: 16px;
}

i.fa-w-16 {
    width: 1em;
}

i.fa-h-16 {
    height: 1em;
}

i.fa-w-18 {
    width: 1.125em;
}

i.fa-h-18 {
    height: 1.125em;
}

i.fa-w-20 {
    width: 1.25em;
}

i.fa-h-20 {
    height: 1.25em;
}

.absolute-fill {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.modal-xl {
    width: 1140px;
}

.modal-eighth-full {
    width: 80vw;
}

.modal-full {
    width: 100vw;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
    margin-top: 0.4em;
}

.form-check-input:active {
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
    opacity: 0.5;
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.fs-italic {
    font-style: italic;
}

.absolute-middle {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        /* max-width: 1140px; */
        max-width: 100%;
    }
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.fs-pt-12 {
    font-size: 12pt !important;
}

.fs-pt-11 {
    font-size: 11pt !important;
}

.fs-pt-10 {
    font-size: 10pt !important;
}

@media (min-width: 992px) {
    .modal-sl {
        width: 768px;
    }
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-50 {
    right: 50% !important;
}

.end-100 {
    right: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
    transform: translateX(-50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.mw-100 {
    max-width: 100% !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

/* .border-bottom {
    border-bottom: 1px solid #dee2e6;
} */
