.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.fnt-12 {
    font-size: 0.75rem;
}

.fnt-14 {
    font-size: 0.875rem;
}

.fnt-16 {
    font-size: 1rem;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

@media (min-width: 992px) {
    .w-md-30 {
        width: 30% !important;
    }
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !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: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !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: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

/* hotel search page  */
.loader {
    height: 230px;
    width: 100%;
}

.service_heading {
    font-size: 22px;
    font-weight: 600;
}

.service_found-num {
    font-size: 14px;
}

.service_sort > .form-control {
    width: 80%;
}

.hotel_list-item {
    background: #ffffff;
    box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, .35);
    font-size: 13px;
    height: 200px;
    margin: 20px 0 0;
}

.hotel_list-image > img {
    height: 232px;
}

.htl_price_off {
    background: #ed8323;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    left: 0;
    padding: 3px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 1;
}

.hotel_list-item-details {
    padding: 0 15px;
}

.hotel_list-name {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.booking-item-rating .booking-item-rating-stars {
    margin: 0;
}

.booking-item-rating {
    margin: 0 12px 0 0;
    padding: 0;
    border: none;
    line-height:14px;
}

.booking-item-price-from {
    font-size: 11px;
}

.htl-inclusions > p {
    color: #ed8323;
    font-size: 13px;
}

.htl-inclusions > ul {
    list-style: disc;
    margin-left: 5px;
    padding-left: 10px;
    font-size: 12px;
    color: #8f8f8f;
}

    .htl-inclusions > ul > li.view-more {
        list-style: none;
        padding-left: 0;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none
    }

.save_offer {
    align-items: center;
    background-color: green;
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-weight: 700;
    justify-content: center;
    padding: 4px 12px;
}

.bdr-top-only {
    border-top: 1px solid #e6e6e6;
    margin-top: 5px;
    padding-top: 5px;
}

.booking-item-price {
    font-size: 20px;
}

.hotel_list-price-section {
    /* margin: 0 0 5px; */
    text-align: right;
}

    .hotel_list-price-section p:first-child,
    .hotel_list-price-section p:last-child {
        color: #8f8f8f;
        font-size: 12px;
    }

    .hotel_list-price-section p > del {
        font-size: 14px;
        margin: 0 8px 0 0;
    }

    .hotel_list-price-section p > ins {
        font-size: 20px;
        font-weight: bold;
        -webkit-text-decoration: none;
        text-decoration: none;
        color: #333333 !important;
    }

@media (min-width: 768px) {
    .hotel_list-item {
        height: 230px;
    }

    .hotel_list-image {
        align-items: center;
        display: flex;
        height: 230px;
        justify-content: center;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pos_sticky_filter_new {
        margin-top: 0;
    }

    .service_sort > .form-control {
        width: 60%;
    }

    .hotel_list-item {
        height: auto;
    }

    .hotel_list-item-details {
        padding: 0 10px 10px;
    }

    .hotel_list-price-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .hotel_list-image > img {
        height: 200px;
        width: 100%;
    }

    .hotel_mobile-footer {
        background: #fff;
        border-top: 1px solid #e6e6e6;
        bottom: 0;
        height: 60px;
        left: 0;
        padding: 5px 15px;
        position: fixed;
        right: 0;
        z-index: 9;
    }
}

/* hotel detail page start */
.detail_header {
    margin: 20px 0 20px;
}

.service_heading {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0;
}

.you-save {
    color: #ed8323;
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
}

.detail_header .booking-item-rating {
    margin: 0 0 0 12px;
}

    .detail_header .booking-item-rating .booking-item-rating-stars .fa {
        margin-right: 2px;
    }

.tabs_hotel-details {
    background-color: #a1a1a1;
    position: relative
}

    .tabs_hotel-details > .tabs_names {
        display: flex
    }

        .tabs_hotel-details > .tabs_names > div {
            border-right: 1px solid #e6e6e6;
            color: #ffffff;
            cursor: pointer;
            padding: .5rem 1.25rem;
            transition: all .3s
        }

            .tabs_hotel-details > .tabs_names > div > a {
                text-decoration: none;
                font-size: 14px;
                font-weight: 400;
                color: #ffffff;
            }

            .tabs_hotel-details > .tabs_names > div.active, .tabs_hotel-details > .tabs_names > div:hover {
                color: #ffffff;
                background-color: #ed8323
            }

@media (max-width: 767px) {
    .tabs_hotel-details {
        overflow: auto;
        white-space: nowrap;
        width: 100%;
    }
}

.card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.07);
    margin: 20px 0 0;
    padding: 15px;
    position: relative;
}

.card-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    position: relative;
}

    .card-heading:after {
        border-bottom: 2px solid #ed8323;
        bottom: -5px;
        content: "";
        left: 0;
        position: absolute;
        width: 50px;
    }

.modify__search .btn__modify-traveller {
    border-bottom: 1px solid rgba(57, 105, 101, 0.5);
    height: 40px;
}

.nc-tags {
    display: flex;
    flex-wrap: wrap
}

    .nc-tags.for-img-side > li {
        width: 100%
    }

    .nc-tags > li {
        padding-left: 16px;
        position: relative;
        width: 20%
    }

        .nc-tags > li:before {
            content: "\2713";
            font-size: 14px;
            font-weight: 700;
            left: 0;
            position: absolute
        }

.more_amenities-link {
    border: 1px solid #ed8323;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-size: 10px;
    line-height: 18px;
    font-weight: 400;
    padding: 2px 10px;
    float: right;
}

    .more_amenities-link > a {
        font-size: 10px;
    }

.input-wrapper > .form-control,
.input-wrapper > .form__feild {
    height: 40px !important;
    padding: .375rem .75rem !important;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
}

.input-wrapper .input-icon {
    top: 5px;
}

.input-wrapper > .traveller_mrgn {
    margin-left: 0;
}

    .input-wrapper > .traveller_mrgn > label > span {
        display: none;
    }

    .input-wrapper > .traveller_mrgn > label > .htl-icon-traveller {
        position: absolute;
        top: 12px;
        right: 12px;
    }

.input-wrapper > .form-control > .dropdown {
    position: absolute;
    left: 12px;
    top: 8px;
    max-width: 224px;
    text-align: left;
}

.input-wrapper .dropdown > .btn__modify-traveller {
    display: flex;
    width: 100%;
    position: relative;
    background-color: transparent;
    padding: 0;
    line-height: 30px;
}

    .input-wrapper .dropdown > .btn__modify-traveller:focus,
    .input-wrapper .dropdown > .btn__modify-traveller:active {
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

#chooseRoom .btn-primary {
    height: 40px;
    line-height: 30px;
}

.booking-item:hover, .booking-item.active {
    box-shadow: none;
}

.available_room {
    border: 1px solid #e6e6e6;
    color: #565656;
    font-size: 13px;
    margin: 5px 0 15px;
    padding: 10px;
}

.room-img-outer {
    position: relative;
}

    .room-img-outer > .large-image {
        align-items: center;
        background-color: rgba(0, 0, 0, .45);
        bottom: 0;
        cursor: pointer;
        display: flex;
        height: 30px;
        justify-content: center;
        position: absolute;
        right: 0;
        width: 30px;
    }

.available_room-image {
    width: 100%;
    vertical-align: middle;
}

.room-img-outer > .large-image > svg {
    fill: #ffffff;
}

.hotel-amenities {
    background-color: #f8f8f8;
    padding: 10px;
}

.room-amenities > li {
    padding-left: 10px;
    width: 100%;
}

    .room-amenities > li:before {
        content: "\2713";
        font-size: 12px;
        left: 15px;
        position: absolute;
    }

    .room-amenities > li.view-more:before {
        display: none
    }

    .room-amenities > li.view-more {
        list-style: none;
        padding-left: 0;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

.childDiv {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

    .childDiv:last-child {
        border-bottom: none;
        margin: 0;
    }

.adult, .child {
    display: inline
}

    .adult > img, .child > img {
        height: 32px;
        margin-right: 2px
    }

    .child > img {
        height: 20px
    }

.hotel-amenities {
    margin-bottom: 1rem
}

.amen-category {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 600
}

    .amen-category > img {
        height: 16px;
        margin-right: 6px
    }

.detail-amenities {
    padding-left: 22px
}

    .detail-amenities > li {
        font-size: 14px;
        margin: 4px 0;
        padding-left: 16px;
        position: relative
    }

        .detail-amenities > li:before {
            content: "\2713";
            font-size: 12px;
            left: 0;
            position: absolute
        }

        .detail-amenities > li.more-amenities:before {
            display: none
        }

#divAminities .hotel-amenities {
    background-color: transparent;
    padding: 0;
}

.amenities-inside {
    padding-left: 15px
}

    .amenities-inside > li {
        font-size: var(--fnt-12);
        list-style-type: disc
    }

        .amenities-inside > li.no-more {
            list-style-type: none
        }

.arrows-list {
    padding: 0 0 0 15px;
    text-align: justify;
}

    .arrows-list > li {
        font-size: 14px;
        margin-bottom: 8px;
        position: relative;
        white-space: normal;
    }

.cancel-conditional {
    cursor: pointer;
    position: relative;
}

    .cancel-conditional > .canellation-hover {
        background-color: #fff;
        font-size: 14px;
        bottom: 30px;
        box-shadow: 0 0 14px rgba(0, 0, 0, .15);
        display: none;
        height: auto;
        position: absolute;
        right: 0;
        transition: all .3s;
        width: 380px;
        z-index: 5;
    }

        .cancel-conditional > .canellation-hover > div:first-child {
            background-color: #e6e6e6;
        }

    .cancel-conditional:hover > .canellation-hover {
        display: block;
    }

.guest-button {
    display: inline-flex;
    align-items: center;
}

    .guest-button > button {
        line-height: 28px;
    }

@media (max-width: 768px) {
    .cancel-conditional > .canellation-hover {
        bottom: 48px;
        left: -6px;
        max-width: 330px;
        right: auto;
    }
}

.nc-tags[data-v-7dc43242] {
    display: flex;
    flex-wrap: wrap;
}

.nc-tags > li {
    padding-left: 16px;
    position: relative;
    width: 20%;
}
/* hotel detail page end */
