/*!
 * Bootstrap v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

.big-toast, .p-toast {
  font-size: 1.2rem;
  padding: .8rem;
  /* max-width: 850px; */
  border-radius: .567rem !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 1060 !important;

  .p-toast-message-content {
    gap: 1rem !important;

    svg {
      font-size: 1.2rem !important;
      width: 2rem !important;
      height: 2rem !important;
    }

    .p-toast-detail {
      font-size: 1rem !important;
    }
  }
}

.p-toast-message.big-toast {
    backdrop-filter: blur(2rem) !important;
    box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%) !important;
}

  .p-select-list-container {
    padding: .5rem !important;
  }

  .p-select-option {
    &.p-select-option-selected, &:hover, &:focus {
        background-color: var(--clr-accent--700) !important;
        color: var(--clr-accent--100) !important;
    }
  }

  .p-select-option:not(.p-select-option-selected):not(.p-disabled).p-focus {
    background-color: var(--clr-accent--800) !important;
    color: var(--clr-accent--200) !important;
  }

  .p-selectbutton {
    outline: 2px solid var(--clr-surface--500) !important;
    background-color: var(--clr-surface--700);
    width: max-content !important;
    & > .p-togglebutton {
      background-color: var(--clr-surface--600) !important;
      padding: .4rem !important;
      border: none !important;
      transition: all .5s ease-in;
    }
  }

  .p-togglebutton.p-togglebutton-checked .p-togglebutton-content{
    background-color: var(--clr-accent--700);
    border-radius: 1rem !important;
    & > .p-togglebutton-label {
      color: var(--clr-text--200);
    }
  }

  .p-togglebutton .p-togglebutton-content .p-togglebutton-label{
    color: var(--clr-surface--100);
  }

  .p-toggleswitch {
    /* height: 2rem !important;
    width: 4rem !important; */
    & > .p-toggleswitch-slider {
      background-color: var(--clr-surface--800) !important;
      border: none !important;
      outline: 2px solid var(--clr-surface--400) !important;
      & > .p-toggleswitch-handle {
        border: none !important;
        background-color: var(--clr-surface--400) !important;
      }
    }

    &.p-toggleswitch-checked .p-toggleswitch-slider {
      background-color: var(--clr-accent--600) !important;
      outline: 2px solid var(--clr-accent--600) !important;
      border: none !important;
      & > .p-toggleswitch-handle {
        background-color: var(--clr-text--400) !important;
      }
    }
  }

.bootstrap-legacy {
  --blue: #00cfe8;
  --indigo: #6610f2;
  --purple: #7367f0;
  --pink: #e83e8c;
  --red: #ea5455;
  --orange: #ff9f43;
  --yellow: #ffc107;
  --green: #28c76f;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #b8c2cc;
  --gray-dark: #1e1e1e;
  --primary: #7367f0;
  --secondary: #82868b;
  --success: #28c76f;
  --info: #00cfe8;
  --warning: #ff9f43;
  --danger: #ea5455;
  --light: #f6f6f6;
  --dark: #4b4b4b;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1440px;
  --font-family-sans-serif: "Montserrat", Helvetica, Arial, serif;
  --font-family-monospace: "Montserrat", Helvetica, Arial, serif;
}

.bootstrap-legacy *, .bootstrap-legacy *::before, .bootstrap-legacy *::after {
  box-sizing: border-box;
}

.bootstrap-legacy {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(34, 41, 47, 0);
}

/* .bootstrap-legacy article, .bootstrap-legacy aside, .bootstrap-legacy figcaption, .bootstrap-legacy figure, .bootstrap-legacy footer, .bootstrap-legacy header, .bootstrap-legacy hgroup, .bootstrap-legacy main, .bootstrap-legacy nav, .bootstrap-legacy section {
  display: block;
} */

.bootstrap-legacy {
  margin: 0;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #b4b7bd;
  text-align: left;
  background-color: var(--clr-surface--900);

    /* custom */

    button.waves-effect,
    button.waves-float,
    button.waves-light {
      animation: none !important;
      transition: none !important;
    }

    .nav.nav-tabs {
        background-color: transparent !important;
        border-radius: 1rem;
        & > .nav-item:first-child > .nav-link {
            border-top-left-radius: 1rem;
            border-bottom-left-radius: 1rem;
        }

        & > .nav-item:last-child > .nav-link {
            border-top-right-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }
    }

    .nav-tabs .nav-item .nav-link {
        background-color: var(--clr-surface--600) !important;
        display: flex;
        align-items: center;
        gap: .5rem;

        & > i {
        }

        &::after {
            background: linear-gradient(30deg, var(--clr-accent--600), var(--clr-accent--700)) !important;
        }
    }

    .dark-layout .nav-tabs .nav-item .nav-link.active {
        background-color: var(--clr-surface--700) !important;
        color: var(--clr-accent--600) !important;
    }

    .card {
        box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%) !important;
        border-radius: .567rem !important;
        background-color: var(--clr-surface--800) !important;
        .collapse-container {
            border-bottom-right-radius: .567rem !important;
            border-bottom-left-radius: .567rem !important;
        }
    }

    .card-header {
        /* background-color: var(--clr-surface--700) !important; */
    }

    .card-body {
        padding: 1.5rem 2rem !important;
    }

    /* .outline-button, .btn:not(.config-btn) {
        text-align: center !important;
        box-shadow: none !important;
        font-weight: 600 !important;
        padding: 0.486rem 0.8rem !important;
        font-size: smaller !important;
        line-height: 1.45 !important;
        border-radius: 0.576rem !important;
        width: 9rem !important;
        transition: background-color 0.2s ease, color 0.2s ease-in !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem !important;
        margin: 0 !important;
        border: none !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        outline: 2px solid var(--clr-surface--600) !important;
        background-color: var(--clr-surface--700) !important;
        min-width: max-content !important;

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

        &.save, &.btn-primary, &.btn-success, &.btn-outline-primary, &.btn-link {
            color: var(--clr-accent--600) !important;

            & > i {
                color: var(--clr-accent--600);
            }
        }

        &.cancel, &.cancel-button, &.clear, &#clear_address, &.btn-outline-danger, &.btn-danger {
            color: #d52d2e !important;

            & > i {
                color: #d52d2e;
            }
        }

        &.secondary, &.btn-secondary, &.btn-outline-secondary {
            color: #999999 !important;

            & > i {
                color: #999999;
            }
        }

        &.info {
          color: #008db7 !important;

          & > i {
            color: #008db7;
          }
        }

        &.large {
            width: 12rem !important;
        }

        &.btn-sm.view-click {
            width: 4rem !important;
        }

        &.small {
          width: 3rem !important;
        }

        &.dropdown-toggle, &.btn-icon {

            &:has(> i, :not(span, label)) {
                width: 3rem !important;
                background-color: transparent !important;
                box-shadow: none !important;
                outline: unset !important;
                & > i {
                    font-size: 1.1rem;
                }
            }
        }

        &:hover, &.active {
            cursor: pointer;
            transform: scale(1.035);
                -webkit-transform: scale(1.035);
                -moz-transform: scale(1.035);
                -ms-transform: scale(1.035);
                -o-transform: scale(1.035);
            outline: none !important;

            &.save, &.btn-primary, &.btn-success, &.btn-outline-primary, &.btn-link {
                background-color: var(--clr-accent--700) !important;
                color: var(--clr-text--200) !important;
                & > i {
                    color: var(--clr-text--200) !important;
                }
            }
            &.cancel, &.cancel-button, &#clear_address, &.btn-outline-danger, &.btn-danger {
                background-color: #d52d2e !important;
                color: var(--clr-text--200) !important;
                & > i {
                    color: var(--clr-text--200) !important;
                }
            }
            &.secondary, &.btn-secondary, &.btn-outline-secondary {
                background-color: #999999 !important;
                color: var(--clr-text--200) !important;
                & > i {
                    color: var(--clr-text--200) !important;
                }
            }
            &.info {
              background-color: #008db7 !important;
              color: var(--clr-text--200) !important;
              & > i {
                  color: var(--clr-text--200) !important;
              }
            }
        }

        &:disabled, &.disabled{
            pointer-events: none;
            color: #707070 !important;
            cursor: not-allowed !important;
            opacity: .6 !important;

            & > i {
                color: #707070 !important;
            }

            &:hover {
                pointer-events: none;
            }

        }
    } */

    .outline-button, .tab-button, .btn:not(.config-btn) {
      text-align: center !important;
      box-shadow: none !important;
      font-weight: 600 !important;
      padding: 0.486rem 0.8rem !important;
      font-size: smaller !important;
      line-height: 1.45 !important;
      border-radius: 0.576rem !important;
      width: 9rem !important;
      transition: all 0.2s ease !important;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem !important;
      margin: 0 !important;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: max-content !important;
      
      background-color: var(--btn-background-color) !important;
      color: var(--btn-color) !important;
      border: var(--btn-border) !important;
      outline: var(--btn-outline) !important;

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

      &.save,
      &.btn-primary,
      &.btn-success,
      &.btn-outline-primary,
      &.btn-link {
        background-color: var(--btn-primary-background-color) !important;
        color: var(--btn-primary-color) !important;
        border: var(--btn-primary-border, var(--btn-border)) !important;
        outline: var(--btn-primary-outline, var(--btn-outline)) !important;
        
        & > i {
          color: var(--btn-primary-color) !important;
        }
        
        &:hover,
        &.active {
          background-color: var(--btn-primary-hover-background-color) !important;
          color: var(--btn-primary-hover-color) !important;
          
          & > i {
            color: var(--btn-primary-hover-color) !important;
          }
        }
      }

      &.cancel,
      &.cancel-button,
      &.clear,
      &#clear_address,
      &.btn-outline-danger,
      &.btn-danger {
        background-color: var(--btn-danger-background-color) !important;
        color: var(--btn-danger-color) !important;
        border: var(--btn-danger-border, var(--btn-border)) !important;
        outline: var(--btn-danger-outline, var(--btn-outline)) !important;
        
        & > i {
          color: var(--btn-danger-color) !important;
        }
        
        &:hover,
        &.active {
          background-color: var(--btn-danger-hover-background-color) !important;
          color: var(--btn-danger-hover-color) !important;
          
          & > i {
            color: var(--btn-danger-hover-color) !important;
          }
        }
      }

      &.secondary,
      &.btn-secondary,
      &.btn-outline-secondary {
        background-color: var(--btn-secondary-background-color) !important;
        color: var(--btn-secondary-color) !important;
        border: var(--btn-secondary-border, var(--btn-border)) !important;
        outline: var(--btn-secondary-outline, var(--btn-outline)) !important;
        
        & > i {
          color: var(--btn-secondary-color) !important;
        }
        
        &:hover,
        &.active {
          background-color: var(--btn-secondary-hover-background-color) !important;
          color: var(--btn-secondary-hover-color) !important;
          
          & > i {
            color: var(--btn-secondary-hover-color) !important;
          }
        }
      }

      /* Info buttons */
      &.info {
        background-color: var(--btn-info-background-color) !important;
        color: var(--btn-info-color) !important;
        border: var(--btn-info-border, var(--btn-border)) !important;
        outline: var(--btn-info-outline, var(--btn-outline)) !important;
        
        & > i {
          color: var(--btn-info-color) !important;
        }
        
        &:hover,
        &.active {
          background-color: var(--btn-info-hover-background-color) !important;
          color: var(--btn-info-hover-color) !important;
          
          & > i {
            color: var(--btn-info-hover-color) !important;
          }
        }
      }

      &.large {
        width: 12rem !important;
      }

      &.btn-sm.view-click {
        width: 4rem !important;
      }

      &.small, &.btn-remove-file {
        width: 3rem !important;
      }

      &.dropdown-toggle,
      &.btn-icon {
        &:has(> i, :not(span, label)) {
          width: 3rem !important;
          background-color: transparent !important;
          box-shadow: none !important;
          outline: unset !important;
          
          & > i {
            font-size: 1.1rem;
          }
        }
      }

      &:hover,
      &.active {
        cursor: pointer;
        transform: scale(1.035);
        outline: none !important;
      }

      &:disabled,
      &.disabled {
        background: var(--clr-surface--700) !important;
        background-color: var(--clr-surface--700) !important;
        pointer-events: none;
        color: #707070 !important;
        cursor: not-allowed !important;
        opacity: .6 !important;
        
        & > i {
          color: #707070 !important;
        }
        
        &:hover {
          pointer-events: none;
          transform: none;
        }
      }
    }

    [data-button-style="filled"] {
      --btn-background-color: var(--clr-accent--600);
      --btn-color: var(--clr-text--200);
      --btn-border: none;
      --btn-outline: none;
    }

    [data-button-style="ghost"] {
      --btn-background-color: transparent;
      --btn-color: var(--clr-accent--600);
      --btn-border: none;
      --btn-outline: none;
      --btn-hover-background-color: var(--clr-accent--100);
      --btn-hover-color: var(--clr-accent--700);
    }

    fieldset[disabled] .outline-button, .btn {
      &.save, &.cancel, &.secondary {
        pointer-events: none;
        color: #707070 !important;
        cursor: not-allowed !important;
        opacity: .6 !important;
        background: var(--clr-surface--700) !important;
        background-color: var(--clr-surface--700) !important;

        & > i {
            color: #707070 !important;
        }

        &:hover{
            pointer-events: none;
        }  
      }
    }

    .dark-layout .nav-tabs .nav-item .nav-link, .dark-layout .nav-pills .nav-item .nav-link, .dark-layout .nav-tabs.nav-justified .nav-item .nav-link {
        color: #b4b7bd;
        background-color: var(--clr-surface--700) !important;
        padding: .7rem 1.5rem;
        /* box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%); */
        /* border-radius: .256rem; */
        transition: background-color 0.2s ease, color 0.2s ease-in;
        display: flex;
        gap: .5rem;

        &:hover {
            cursor: pointer;
            background-color: var(--clr-accent--700) !important;
            color: var(--clr-text--200) !important;
            border: none;
            border-top-left-radius: .567rem;
            border-top-right-radius: .567rem;
            & > i{
                color: var(--clr-text--100);
            }

        }
    }

    .nav-tabs .nav-link::after {
        /* background: linear-gradient(30deg, var(--clr-accent--600), rgba(16, 251, 6, 0.7)) !important; */
        background: none !important;

    }

    .dark-layout .nav-tabs .nav-item .nav-link.active, .dark-layout .nav-pills .nav-item .nav-link.active, .dark-layout .nav-tabs.nav-justified .nav-item .nav-link.active {
        background-color: var(--clr-surface--800) !important;
        color: var(--clr-accent--600) !important;
        border-bottom: 1px solid var(--clr-accent--700);
        border-top-left-radius: .567rem;
        border-top-right-radius: .567rem;

    }

    .nav.nav-tabs {
        & > .nav-item:last-child > button{
            border-top-right-radius: .567rem;
            border-bottom-right-radius: .567rem;

        }

        & > .nav-item:first-child > button{
            border-top-left-radius: .567rem;
            border-bottom-left-radius: .567rem;
        }
    }

    .selectize-input {
        padding: 1rem;
        display: flex;
        align-items: center;
    }

    .selectize-control.multi .selectize-input.has-items {
        /* height: 2.2rem; */
        display: flex;
        flex-direction: column;
    }

    .selectize-control.multi div.item {
        font-weight: 500;
        height: 1.6rem;
        background-color: var(--clr-accent--700) !important;
        color: var(--clr-text--400) !important;
        font-size: .9rem;
        width: 100%;
        justify-content: space-between;
        padding-inline: 1rem;
    }

    .multi.selectize-dropdown {
        color: var(--clr-text--800) !important;
    }

    .selectize-control.plugin-remove_button .item .remove {
        color: #d52d2e !important;
        width: 2rem;
        font-size: 1.2rem;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .selectize-dropdown .option {
        padding: .2rem 1rem;
    }

    .selectize-input, .multi.selectize-dropdown, .single.selectize-dropdown, .form-control, .form-control ~ span.select2-selection, span.select2-selection {
        border: none !important;
        background-color: var(--clr-surface--700) !important;
        border-radius: .537rem !important;
        box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%) !important;
        outline: 2px solid var(--clr-surface--600) !important;

        &:focus:not(span.select2-selection, span.select2-selection, .selectize-input, .multi.selectize-dropdown, select, .search, #agGridSearch){
          box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-accent--700) 70%) !important;

          &:read-only {
              box-shadow: unset !important;
          }

          &.error-hint, &.error {
              box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, #d52d2e 70%) !important;
          }
        }
        
        & > .error-label, .error {
            color: #d52d2e;
            font-size: small;
            display: block;
            margin-top: .5rem;

            & > i {
                color: #d52d2e;
            }
        }

        &.error-hint, &.error {
            outline: 2px solid #d52d2e !important;
            animation: hightlight-effect 4s ease-in-out;
        }

        &.error {
          outline: 2px solid #d52d2e !important;
          animation: hightlight-effect 4s ease-in-out;
        }
    }

    .input-search {
        display: flex; 
        align-items: center;
        padding: 0.438rem 1rem;
        height: 2.714rem;
        outline: 2px solid var(--clr-surface--600);
        border-radius: .537rem !important;
        background-color: var(--clr-surface--700);

        &:has(input:focus) {
          outline: 2px solid var(--clr-accent--600);
        }      

        & > .input-group-prepend {
            & > span > i {
                color: var(--clr-accent--600);
            }
        }

        input {
            outline: unset !important;
            width: 20rem;
            box-shadow: unset !important;

            &:focus {
                box-shadow: unset !important;
            }
        }
    }

    .form-group, .value-select2-container {
        & > label {
            &.required-text {
                display: flex;
                justify-content: space-between;
            }
            & > span {
                & > span, &.error-label {
                    color: var(--clr-utils--error);
                    background-color: var(--clr-surface--800);
                }

            }
        }

        & > input, select, span.select2-container, span.select2-selection, textarea, [type="hidden"],
        div:not(.selectize-input, .input-group) > input, div >  select, div > span.select2-container, div > span.select2-selection,
        div > textarea, .selectize-input, .multi.selectize-dropdown {
            border: none;
            background-color: var(--clr-surface--700) !important;
            border-radius: .537rem !important;
            box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%) !important;
            outline: 2px solid var(--clr-surface--600) !important;
            color: #b4b7bd !important;

            &:focus, &:not(span.select2-selection, span.select2-container, .search, #agGridSearch):focus {
                background-color: var(--clr-surface--700);
                border: none;
                color: var(--clr-text--200) !important;
                box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-accent--700) 70%) !important;


                &:read-only {
                    box-shadow: unset !important;
                }

                &.error-hint, &.error {
                    box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, #d52d2e 70%) !important;
                }
            }

            & > span {
                & > span {
                    border: none !important;
                }
            }

            &:disabled {
                color: #909090 !important;
                cursor: not-allowed;
                opacity: .6 !important;
                
                & ~ span.select2-container {
                  opacity: .6 !important;
                  cursor: not-allowed;
                }
            }

            &:read-only:not(.multi.selectize-dropdown, .date-picker) {
                color: #909090 !important;
            }

            & ~ .select2-container--default.select2-container--open {
                border-bottom-left-radius: 0 !important;
                border-bottom-right-radius: 0 !important;
            }

            & > .error-label, .error {
                color: #d52d2e;
                font-size: small;
                display: block;
                margin-top: .5rem;

                & > i {
                    color: #d52d2e;
                }
            }

            &.error-hint, &.error, 
            &.error ~ .input-group-append span, 
            &.error ~ .input-group-append button,
            &.error ~ .input-group-append div {
                outline: 2px solid #d52d2e !important;
                animation: hightlight-effect 4s ease-in-out;
            }

            span.error, span.error-hint {
              padding: 0 !important;
              margin: 0 !important;
            }

            &#agGridSearch {
                outline: none !important;
            }
        }

        & > .list-group {
            button {
                width: 3rem !important;
                height: 2rem !important;
                & > i {
                    font-size: .8rem;
                }
            }
        }

        & .error-hint, & .error {
            color: #d52d2e !important;
            padding-top: .5rem;
            font-weight: bold;
        }

    }

    span.error, span.error-hint {
      padding: 0 !important;
      margin: 0 !important;
    }

    .form-group {
        & > div {
            & > label {
                display: flex;
                align-items: center !important;
                margin-bottom: .5rem;

                & > span {
                    margin-left: .1rem;
                }

                & > i {
                    margin-left: .5rem;
                }
            }
        }
    }



    .input-group {
        background-color: var(--clr-surface--700);
        box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%);
        border-radius: 0.576rem !important;
        outline: 2px solid var(--clr-surface--600) !important;
        
        &:disabled, &.disabled {
          opacity: .6 !important;
        }

        .input-group-prepend {
            border-top-right-radius: 0rem;
            border-bottom-right-radius: 0rem;
            border-right: 2px solid var(--clr-surface--600);
            & > button, span, label {
                background-color: var(--clr-surface--700) !important;
                width: fit-content !important;
                border: none !important;
                padding: 0rem 1rem !important;
                /* outline: 2px solid var(--clr-surface--600) !important; */

                &.input-group-text {
                    width: fit-content !important;
                }

                &:hover:not(.input-group-text) {
                    /* background-color: var(--clr-accent--600) !important; */
                    & > i {
                        color: var(--clr-text--200) !important;
                    }
                }
            }

            &:has(.custom-control) {
              align-items: center;
              margin-left: 1rem;
            }
        }

        & > input {
            outline: unset !important;
            &:focus {
                box-shadow: unset !important;
            }
        }

        .custom-file {
            & > .custom-file-input {
                cursor: pointer;
            }

            & > .custom-file-label {
                background-color: var(--clr-surface--700) !important;
                border: none;

                &::after {
                    border: none;
                    /* border-radius: .576rem !important; */
                    height: 100%;
                    background-color: var(--clr-surface--600) !important;
                    padding: 0.438rem 2rem !important;
                }

            }

            &:hover {
                /* border-radius: .576rem; */
                outline: 2px solid var(--clr-accent--600);
                border-top-right-radius: .567rem;
                border-bottom-right-radius: .567rem;

                & > .custom-file-label {
                    border-radius: .576rem;
                    background-color: var(--clr-surface--800) !important;
                    &::after {
                        background-color: var(--clr-surface--800) !important;
                    }
                }

            }

        }

        &:has(.input-group-prepend) {
            & > input, & > select, & > span.select2-container, & > span.select2-selection {
                border-top-left-radius: 0 !important;
                border-bottom-left-radius: 0 !important;
                box-shadow: unset !important;

                &:focus {
                    box-shadow: unset !important;
                }
            }
        }

        &:has(.input-group-append), &:has(.input-group-before) {
            & > input, & > select, & > span.select2-container, & > span.select2-selection {
                border-top-right-radius: 0 !important;
                border-bottom-right-radius: 0 !important;
                box-shadow: unset !important;

                &:focus {
                    box-shadow: unset !important;
                }
            }
        }

        .input-group-before, .input-group-append {
            border-left: 2px solid var(--clr-surface--600);
            & > button, span, label, select, span.select2-container{
                background-color: var(--clr-surface--700) !important;
                border: none !important;
                width: fit-content !important;
                height: 100% !important;
                transition: background-color 0.2s ease, color 0.2s ease-in;
                padding: 0rem 1rem !important;
                border-top-left-radius: 0 !important;
                border-bottom-left-radius: 0 !important;
                /* outline: 2px solid var(--clr-surface--600) !important; */

                &:hover {
                    /* background-color: var(--clr-accent--600) !important; */
                    & > i {
                        color: var(--clr-text--200) !important;
                    }
                }

                & > i {
                    color: var(--clr-accent--600) !important;
                }
            }
        }

        & button {
            outline: none !important;
        }
    }

    .searchContainer .input-group {
        outline: none !important;
    }

    .input-group:not(.has-validation)>.form-control:not(:last-child) {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        box-shadow: unset !important;
    }

    .error-hint {
        outline: 1px solid #d52d2e !important;
        animation: hightlight-effect 4s ease-in-out;
    }

    @keyframes hightlight-effect {
        0% {
            box-shadow: unset;
        }

        10% {
            box-shadow: 0 0px 7px 2px #d52d2e
        }

        70% {
            box-shadow: 0 0px 7px 2px #d52d2e
        }

        100% {
            box-shadow: unset;
        }
    }

    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--clr-accent--600) var(--clr-surface--500);
    }

    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 5px;
    }

    *::-webkit-scrollbar-track {
        background: var(--clr-surface--600);
        border-radius: 5px;
    }

    *::-webkit-scrollbar-thumb {
        background-color: var(--clr-surface--600);
        border-radius: 14px;
        border: 3px solid var(--clr-accent--600);
    }

    .modal-footer {
        gap: .5rem;
    }

    .dataTables_wrapper {
        margin-bottom: 1.5rem;
        padding-inline: 1rem;
        border-radius: 1rem;
    }

    .dtr-control {
        display: flex;
        gap: .5rem;
    }

    .card-header {
        & > div {
            display: flex;
            gap: 1rem;
        }
    }

    .tab-pane {
        & > div:has(> button) {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
    }

    #comment-section, div.textarea, .accordion-repeater-list .card {
        border: none !important;
        outline: 2px solid var(--clr-surface--500) !important;
        border-radius: .567rem;
        color: var(--clr-text--600);
    }

    .jquery-comments ul.main li.comment:first-child .comment-wrapper {
        border-top: none !important;
    }

    .jquery-comments .commenting-field.main {
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    .jquery-comments ul.main li.comment {

      .comment-wrapper {
        padding: 1rem;
        background-color: var(--clr-surface--600);
        border-radius: .567rem;
        box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%) !important;
        border-top: none;

        .profile-picture {
          width: 3.6rem;
          height: 3.6rem;
        }

        & .comment-header {
          line-height: 2.6em;
          .name {
            color: var(--clr-text--800);
          }

          .organization-name {
            color: var(--clr-accent--600);
            font-weight: 600;
          }
        }

        & .wrapper {
          line-height: 1em;
          .content {
            margin: 0;
            padding-inline: .5rem;
            color: var(--clr-text--400);
          }
        }
      }

      .child-comments:not(:has(li)) {
        margin-bottom: .5rem;
      }

      .child-comments:has(li) {
        margin-block: .5rem;
        display: flex;
        flex-direction: column;
        gap: .5rem;

        & .comment-wrapper {
         background-color: var(--clr-surface--700);
         padding-left: 2rem;
         border: none !important;

          .profile-picture {
            width: 2.8rem;
            height: 2.8rem;
          }
        }

        & .wrapper {
          .content {
            margin: .9rem 0;
          }
        }

        & .visible {
          display: inline-block;
        }
      }

        

    }

    .jquery-comments .textarea-wrapper .control-row > span {
      padding: .3rem .9rem;
    }

    .jquery-comments .textarea-wrapper span.close {
      right: .5rem;
        & > i {
          color: #d52d2e;
        }
    }

    .dt-center:has(> div > a, button), .dt-center[aria-label="Actions"] {
        display: flex;
        justify-content: center;
        & > div > a {
            padding-right: 0 !important;
        }
    }

    .modal {
        background-color: color-mix(in srgb, var(--clr-surface--700), transparent 50%);
        backdrop-filter: blur(.3rem);
        height: 100dvh;
        inset: 0;
        margin: auto;
        overflow: hidden;
        position: fixed;
        width: 100dvw;

        & > .modal-dialog {
            justify-content: center !important;
            align-items: center !important;
            display: flex !important;
            min-height: calc(100% - 3.5rem) !important;
            width:100% !important;

            & > .modal-content {
                padding: 0rem 1rem;
                border-radius: 1.5rem;

                & > .modal-header {
                    background-color: var(--clr-surface--800) !important;
                    border-top-left-radius: 1rem;
                    border-top-right-radius: 1rem;
                    padding: 1.5rem 1.4rem 0rem 1.4rem;
                    & > .row {
                        width: 100%;
                        & > div {
                            /* padding-left: 0rem; */
                            padding-right: 0rem;

                            & > #inventories_title {
                                color: var(--clr-accent--600);
                                display: flex;
                                align-items: center;
                                justify-content: end;
                            }
                        }
                    }
                }

                & > .modal-body {
                    padding: 1rem 1.5rem 2rem 1.5rem;
                    height: 54rem;
                    max-height: min-content;
                    overflow: auto;
                    margin-bottom: 1rem;
                    & > .row {
                        & > div {
                            /* &:first-child {
                                padding-left: 0rem;
                                padding-right: 0rem;
                            } */
                        }
                    }
                }

                & > .modal-footer {
                    border-top: 1px solid var(--clr-surface--500) !important;
                    background: var(--clr-surface--800) !important;
                    border-bottom-right-radius: 2rem;
                    border-bottom-left-radius: 2rem;
                    /* border: none; */
                    padding: 1rem 1.4rem 1.5rem 1.4rem;
                    display: flex;
                    gap: 1rem;

                    div {
                        display: flex;
                        gap: 1rem;
                        align-items: center;
                    }

                    & > button {
                        /* border-radius: 2rem; */
                        width: 9rem;
                    }
                }
            }
        }
    }

    .custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
      background-color: var(--clr-accent--700) !important;
    }

    .custom-control-input:not(:checked) ~ .custom-control-label:before {
        background-color: var(--clr-surface--700);
    }

    .custom-checkbox .custom-control-label::before, .custom-checkbox .custom-control-label::after, .custom-radio .custom-control-label::before, .custom-radio .custom-control-label::after {
        width: 16px;
        height: 16px;
    }

    .custom-checkbox .custom-control-label::before {
        border-radius: 4px;
    }

    .custom-control-label::before {
        border: var(--clr-surface--100) solid 1px;
    }

    .custom-control-success .custom-control-input:checked ~ .custom-control-label::before, .custom-control-success .custom-control-input:active ~ .custom-control-label::before {
        background-color: #10FB06;
        color: hsl(0, 0%, 9%);
        border: none;
    }

    .custom-checkbox .custom-control-label, .custom-radio .custom-control-label {
        font-size: 14px !important;
        font-weight: 500;
        cursor: pointer;
    }

    .custom-control-success.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, .custom-control-success.custom-checkbox .custom-control-input:active ~ .custom-control-label::before, .custom-control-success.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before, .custom-control-success.custom-radio .custom-control-input:checked ~ .custom-control-label::before, .custom-control-success.custom-radio .custom-control-input:active ~ .custom-control-label::before, .custom-control-success.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
        box-shadow: none !important;
    }

    .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
        /* filter: brightness(0.1); */
    }

    .custom-checkbox .custom-control-input, .custom-radio .custom-control-input {
        width: 1rem;
        height: 1rem;
    }

    .custom-control-success .custom-control-input:checked ~ .custom-control-label::before {
        background-color: var(--clr-accent--600) !important;
        /* border-color: var(--clr-accent--600); */
        outline: unset !important;
    }

    .text-editor-card {
        border-radius: .567rem !important;
        border: unset !important;
        outline: var(--clr-surface--600) !important;
        box-shadow: 3px 3px 5px 1px color-mix(in hsl, transparent, var(--clr-surface--900) 70%);

        & > .card-header {
            padding: 1rem !important;
            outline: 2px solid var(--clr-surface--600) !important;
            border: unset !important;
            background-color: var(--clr-surface--700) !important;
            border-radius: .567rem !important;
        }

        .card-header ~ .collapse.show {
            border-radius: 0 !important;
        }

        .collapse.show .ql-toolbar{
            border-top-right-radius: 0rem !important;
            border-top-left-radius: 0rem !important;
        }

        .card-body {
            & > .editor-section {
                & > .ql-toolbar,  & > .ql-container {
                    border: unset !important;
                    outline: 2px solid var(--clr-surface--600) !important;
                    background-color: var(--clr-surface--700) !important;
                }
            }
        }
    }

    .badge.badge-light-success {
        color: #0a9b02 !important;
        background-color: rgba(40, 199, 111, 0.12);
    }

    .badge.badge-light-warning {
        background-color: rgba(255, 159, 67, 0.12);
        color: #ff9f43 !important;
    }

    .badge.badge-light-danger {
        background-color: rgba(234, 84, 85, 0.12);
        color: #d52d2e !important;
    }

    .badge.badge-light-info {
        background-color: rgba(0, 207, 232, 0.12);
        color: #008db7 !important;
    }

    .gap-2 {
      gap: .5rem;
    }

    .gap-4 {
      gap: 1rem;
    }

    .custom-control-label {
      &::before {
        outline: 2px solid var(--clr-surface--500) !important;
        border: none !important;
      }

      &:hover::before {
        outline-color: var(--clr-accent--600) !important;
      }
    }

    .text-danger {
      color: #d52d2e !important;
    }

    .text-success {
      color: var(--clr-accent--600) !important;
    }

    .text-accent {
      color: var(--clr-accent--600) !important;
    }

    .invalid-feedback {
      color: #d52d2e !important;
    }

    .grid-cell-centered {
      text-align: center;
    }

    .alert-danger {
      color: #fcdbdb !important;
      background-color: #d52d2e !important;

      & > h1, & > h2, & > h3, & > h4, & > h5, & > h6 {
        color: #fcdbdb !important; 
      }
    }

    .alert-success {
      color: #1e4620 !important;
      background-color: #d4edda !important;

      & > h1, & > h2, & > h3, & > h4, & > h5, & > h6 {
        color: #1e4620 !important; 
      }
    }

    .alert-warning {
      color: #856404 !important; 
      background-color: #fff3cd !important;

      & > h1, & > h2, & > h3, & > h4, & > h5, & > h6 {
        color: #856404 !important; 
      }
    }

    .alert-info {
      color: #0c5460 !important; 
      background-color: #d1ecf1 !important;

      & > h1, & > h2, & > h3, & > h4, & > h5, & > h6 {
        color: #0c5460 !important; 
      }
    }

    .hidden {
      display: none !important;
    }

  /* v */
}

.bootstrap-legacy [tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

.bootstrap-legacy hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

.bootstrap-legacy h1, .bootstrap-legacy h2, .bootstrap-legacy h3, .bootstrap-legacy h4, .bootstrap-legacy h5, .bootstrap-legacy h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.bootstrap-legacy p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bootstrap-legacy abbr[title], .bootstrap-legacy abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

.bootstrap-legacy address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

.bootstrap-legacy ol, .bootstrap-legacy ul, .bootstrap-legacy dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bootstrap-legacy ol ol, .bootstrap-legacy ul ul, .bootstrap-legacy ol ul, .bootstrap-legacy ul ol {
  margin-bottom: 0;
}

.bootstrap-legacy dt {
  font-weight: 500;
}

.bootstrap-legacy dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

.bootstrap-legacy blockquote {
  margin: 0 0 1rem;
}

.bootstrap-legacy b, .bootstrap-legacy strong {
  font-weight: 600;
}

.bootstrap-legacy small {
  font-size: 80%;
}

.bootstrap-legacy sub, .bootstrap-legacy sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

.bootstrap-legacy sub {
  bottom: -.25em;
}

.bootstrap-legacy sup {
  top: -.5em;
}

/* .bootstrap-legacy a {
  color: #7367f0;
  text-decoration: none;
  background-color: transparent;
}

.bootstrap-legacy a:hover {
  color: #5e50ee;
  text-decoration: none;
} */

.bootstrap-legacy a {
    color: var(--clr-accent--500);
    text-decoration: none;
    background-color: transparent;
}

.bootstrap-legacy a:hover {
    color: var(--clr-accent--600);
    text-decoration: none;
 }

.bootstrap-legacy a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

.bootstrap-legacy a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

.bootstrap-legacy pre, .bootstrap-legacy code, .bootstrap-legacy kbd, .bootstrap-legacy samp {
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 1em;
}

.bootstrap-legacy pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

.bootstrap-legacy figure {
  margin: 0 0 1rem;
}

.bootstrap-legacy img {
  vertical-align: middle;
  border-style: none;
}

.bootstrap-legacy svg {
  overflow: hidden;
  vertical-align: middle;
}

.bootstrap-legacy table {
  border-collapse: collapse;
}

.bootstrap-legacy caption {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
  color: #b9b9c3;
  text-align: left;
  caption-side: bottom;
}

.bootstrap-legacy th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

.bootstrap-legacy label {
  display: inline-block;
  margin-bottom: 0.2857rem;
}

.bootstrap-legacy button {
  /* border-radius: 0; */
}

.bootstrap-legacy button:focus:not(:focus-visible) {
  outline: 0;
}

.bootstrap-legacy input, .bootstrap-legacy select, .bootstrap-legacy optgroup, .bootstrap-legacy textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.bootstrap-legacy button, .bootstrap-legacy input {
  overflow: visible;
}

.bootstrap-legacy button, .bootstrap-legacy select {
  text-transform: none;
}

.bootstrap-legacy [role="button"] {
  cursor: pointer;
}

.bootstrap-legacy select {
  word-wrap: normal;
}

.bootstrap-legacy button, .bootstrap-legacy [type="button"], .bootstrap-legacy [type="reset"], .bootstrap-legacy [type="submit"] {
  -webkit-appearance: button;
}

.bootstrap-legacy button:not(:disabled), .bootstrap-legacy [type="button"]:not(:disabled), .bootstrap-legacy [type="reset"]:not(:disabled), .bootstrap-legacy [type="submit"]:not(:disabled) {
  cursor: pointer;
}

.bootstrap-legacy button::-moz-focus-inner, .bootstrap-legacy [type="button"]::-moz-focus-inner, .bootstrap-legacy [type="reset"]::-moz-focus-inner, .bootstrap-legacy [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.bootstrap-legacy input[type="radio"], .bootstrap-legacy input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

.bootstrap-legacy textarea {
  overflow: auto;
  resize: vertical;
}

.bootstrap-legacy fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.bootstrap-legacy legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

.bootstrap-legacy progress {
  vertical-align: baseline;
}

.bootstrap-legacy [type="number"]::-webkit-inner-spin-button, .bootstrap-legacy [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

.bootstrap-legacy [type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

.bootstrap-legacy [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.bootstrap-legacy ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

.bootstrap-legacy output {
  display: inline-block;
}

.bootstrap-legacy summary {
  display: list-item;
  cursor: pointer;
}

.bootstrap-legacy template {
  display: none;
}

.bootstrap-legacy [hidden] {
  display: none !important;
}

.bootstrap-legacy h1, .bootstrap-legacy h2, .bootstrap-legacy h3, .bootstrap-legacy h4, .bootstrap-legacy h5, .bootstrap-legacy h6, .bootstrap-legacy .h1, .bootstrap-legacy .h2, .bootstrap-legacy .h3, .bootstrap-legacy .h4, .bootstrap-legacy .h5, .bootstrap-legacy .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: #5e5873;
}

.bootstrap-legacy h1, .bootstrap-legacy .h1 {
  font-size: 2rem;
}

.bootstrap-legacy h2, .bootstrap-legacy .h2 {
  font-size: 1.714rem;
}

.bootstrap-legacy h3, .bootstrap-legacy .h3 {
  font-size: 1.5rem;
}

.bootstrap-legacy h4, .bootstrap-legacy .h4 {
  font-size: 1.286rem;
}

.bootstrap-legacy h5, .bootstrap-legacy .h5 {
  font-size: 1.07rem;
}

.bootstrap-legacy h6, .bootstrap-legacy .h6 {
  font-size: 1rem;
}

.bootstrap-legacy .lead {
  font-size: 1.14rem;
  font-weight: 400;
}

.bootstrap-legacy .display-1 {
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.2;
}

.bootstrap-legacy .display-2 {
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.bootstrap-legacy .display-3 {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.bootstrap-legacy .display-4 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.bootstrap-legacy hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #ebe9f1;
}

.bootstrap-legacy small, .bootstrap-legacy .small {
  font-size: 0.857rem;
  font-weight: 400;
}

.bootstrap-legacy mark, .bootstrap-legacy .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.bootstrap-legacy .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.bootstrap-legacy .list-inline {
  padding-left: 0;
  list-style: none;
}

.bootstrap-legacy .list-inline-item {
  display: inline-block;
}

.bootstrap-legacy .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.bootstrap-legacy .initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.bootstrap-legacy .blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.bootstrap-legacy .blockquote-footer {
  display: block;
  font-size: 0.857rem;
  color: #b9b9c3;
}

.bootstrap-legacy .blockquote-footer::before {
  content: "\2014\00A0";
}

.bootstrap-legacy .img-fluid {
  max-width: 100%;
  height: auto;
}

.bootstrap-legacy .img-thumbnail {
  padding: 0.25rem;
  background-color: #f8f8f8;
  border: 1px solid #dae1e7;
  border-radius: 0.357rem;
  max-width: 100%;
  height: auto;
}

.bootstrap-legacy .figure {
  display: inline-block;
}

.bootstrap-legacy .figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.bootstrap-legacy .figure-caption {
  font-size: 90%;
  color: #b8c2cc;
}

.bootstrap-legacy code {
  font-size: 90%;
  color: #e83e8c;
  word-wrap: break-word;
}

.bootstrap-legacy a>code {
  color: inherit;
}

.bootstrap-legacy kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #fff;
  background-color: #eee;
  border-radius: 0.25rem;
}

.bootstrap-legacy kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 500;
}

.bootstrap-legacy pre {
  display: block;
  font-size: 90%;
  color: #2a2e30;
}

.bootstrap-legacy pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.bootstrap-legacy .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.bootstrap-legacy .container, .bootstrap-legacy .container-fluid, .bootstrap-legacy .container-xs, .bootstrap-legacy .container-sm, .bootstrap-legacy .container-md, .bootstrap-legacy .container-lg, .bootstrap-legacy .container-xl, .bootstrap-legacy .container-xxl {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.bootstrap-legacy .container {
  max-width: 0;
}

@media (min-width: 576px) {

  .bootstrap-legacy .container, .bootstrap-legacy .container-sm {
    max-width: 576px;
  }
}

@media (min-width: 768px) {

  .bootstrap-legacy .container, .bootstrap-legacy .container-sm, .bootstrap-legacy .container-md {
    max-width: 768px;
  }
}

@media (min-width: 992px) {

  .bootstrap-legacy .container, .bootstrap-legacy .container-sm, .bootstrap-legacy .container-md, .bootstrap-legacy .container-lg {
    max-width: 992px;
  }
}

@media (min-width: 1200px) {

  .bootstrap-legacy .container, .bootstrap-legacy .container-sm, .bootstrap-legacy .container-md, .bootstrap-legacy .container-lg, .bootstrap-legacy .container-xl {
    max-width: 1200px;
  }
}

@media (min-width: 1440px) {

  .bootstrap-legacy .container, .bootstrap-legacy .container-sm, .bootstrap-legacy .container-md, .bootstrap-legacy .container-lg, .bootstrap-legacy .container-xl, .bootstrap-legacy .container-xxl {
    max-width: 1440px;
  }
}

.bootstrap-legacy .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.bootstrap-legacy .no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.bootstrap-legacy .no-gutters>.col, .bootstrap-legacy .no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-legacy .col-1, .bootstrap-legacy .col-2, .bootstrap-legacy .col-3, .bootstrap-legacy .col-4, .bootstrap-legacy .col-5, .bootstrap-legacy .col-6, .bootstrap-legacy .col-7, .bootstrap-legacy .col-8, .bootstrap-legacy .col-9, .bootstrap-legacy .col-10, .bootstrap-legacy .col-11, .bootstrap-legacy .col-12, .bootstrap-legacy .col, .bootstrap-legacy .col-auto, .bootstrap-legacy .col-sm-1, .bootstrap-legacy .col-sm-2, .bootstrap-legacy .col-sm-3, .bootstrap-legacy .col-sm-4, .bootstrap-legacy .col-sm-5, .bootstrap-legacy .col-sm-6, .bootstrap-legacy .col-sm-7, .bootstrap-legacy .col-sm-8, .bootstrap-legacy .col-sm-9, .bootstrap-legacy .col-sm-10, .bootstrap-legacy .col-sm-11, .bootstrap-legacy .col-sm-12, .bootstrap-legacy .col-sm, .bootstrap-legacy .col-sm-auto, .bootstrap-legacy .col-md-1, .bootstrap-legacy .col-md-2, .bootstrap-legacy .col-md-3, .bootstrap-legacy .col-md-4, .bootstrap-legacy .col-md-5, .bootstrap-legacy .col-md-6, .bootstrap-legacy .col-md-7, .bootstrap-legacy .col-md-8, .bootstrap-legacy .col-md-9, .bootstrap-legacy .col-md-10, .bootstrap-legacy .col-md-11, .bootstrap-legacy .col-md-12, .bootstrap-legacy .col-md, .bootstrap-legacy .col-md-auto, .bootstrap-legacy .col-lg-1, .bootstrap-legacy .col-lg-2, .bootstrap-legacy .col-lg-3, .bootstrap-legacy .col-lg-4, .bootstrap-legacy .col-lg-5, .bootstrap-legacy .col-lg-6, .bootstrap-legacy .col-lg-7, .bootstrap-legacy .col-lg-8, .bootstrap-legacy .col-lg-9, .bootstrap-legacy .col-lg-10, .bootstrap-legacy .col-lg-11, .bootstrap-legacy .col-lg-12, .bootstrap-legacy .col-lg, .bootstrap-legacy .col-lg-auto, .bootstrap-legacy .col-xl-1, .bootstrap-legacy .col-xl-2, .bootstrap-legacy .col-xl-3, .bootstrap-legacy .col-xl-4, .bootstrap-legacy .col-xl-5, .bootstrap-legacy .col-xl-6, .bootstrap-legacy .col-xl-7, .bootstrap-legacy .col-xl-8, .bootstrap-legacy .col-xl-9, .bootstrap-legacy .col-xl-10, .bootstrap-legacy .col-xl-11, .bootstrap-legacy .col-xl-12, .bootstrap-legacy .col-xl, .bootstrap-legacy .col-xl-auto, .bootstrap-legacy .col-xxl-1, .bootstrap-legacy .col-xxl-2, .bootstrap-legacy .col-xxl-3, .bootstrap-legacy .col-xxl-4, .bootstrap-legacy .col-xxl-5, .bootstrap-legacy .col-xxl-6, .bootstrap-legacy .col-xxl-7, .bootstrap-legacy .col-xxl-8, .bootstrap-legacy .col-xxl-9, .bootstrap-legacy .col-xxl-10, .bootstrap-legacy .col-xxl-11, .bootstrap-legacy .col-xxl-12, .bootstrap-legacy .col-xxl, .bootstrap-legacy .col-xxl-auto {
  position: relative;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.bootstrap-legacy .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.bootstrap-legacy .row-cols-1>* {
  flex: 0 0 100%;
  max-width: 100%;
}

.bootstrap-legacy .row-cols-2>* {
  flex: 0 0 50%;
  max-width: 50%;
}

.bootstrap-legacy .row-cols-3>* {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.bootstrap-legacy .row-cols-4>* {
  flex: 0 0 25%;
  max-width: 25%;
}

.bootstrap-legacy .row-cols-5>* {
  flex: 0 0 20%;
  max-width: 20%;
}

.bootstrap-legacy .row-cols-6>* {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.bootstrap-legacy .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.bootstrap-legacy .col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.bootstrap-legacy .col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.bootstrap-legacy .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.bootstrap-legacy .col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.bootstrap-legacy .col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.bootstrap-legacy .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.bootstrap-legacy .col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.bootstrap-legacy .col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.bootstrap-legacy .col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.bootstrap-legacy .col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.bootstrap-legacy .col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.bootstrap-legacy .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.bootstrap-legacy .order-first {
  order: -1;
}

.bootstrap-legacy .order-last {
  order: 13;
}

.bootstrap-legacy .order-0 {
  order: 0;
}

.bootstrap-legacy .order-1 {
  order: 1;
}

.bootstrap-legacy .order-2 {
  order: 2;
}

.bootstrap-legacy .order-3 {
  order: 3;
}

.bootstrap-legacy .order-4 {
  order: 4;
}

.bootstrap-legacy .order-5 {
  order: 5;
}

.bootstrap-legacy .order-6 {
  order: 6;
}

.bootstrap-legacy .order-7 {
  order: 7;
}

.bootstrap-legacy .order-8 {
  order: 8;
}

.bootstrap-legacy .order-9 {
  order: 9;
}

.bootstrap-legacy .order-10 {
  order: 10;
}

.bootstrap-legacy .order-11 {
  order: 11;
}

.bootstrap-legacy .order-12 {
  order: 12;
}

.bootstrap-legacy .offset-1 {
  margin-left: 8.33333%;
}

.bootstrap-legacy .offset-2 {
  margin-left: 16.66667%;
}

.bootstrap-legacy .offset-3 {
  margin-left: 25%;
}

.bootstrap-legacy .offset-4 {
  margin-left: 33.33333%;
}

.bootstrap-legacy .offset-5 {
  margin-left: 41.66667%;
}

.bootstrap-legacy .offset-6 {
  margin-left: 50%;
}

.bootstrap-legacy .offset-7 {
  margin-left: 58.33333%;
}

.bootstrap-legacy .offset-8 {
  margin-left: 66.66667%;
}

.bootstrap-legacy .offset-9 {
  margin-left: 75%;
}

.bootstrap-legacy .offset-10 {
  margin-left: 83.33333%;
}

.bootstrap-legacy .offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .bootstrap-legacy .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-sm-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-sm-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .row-cols-sm-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .row-cols-sm-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .row-cols-sm-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bootstrap-legacy .row-cols-sm-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .bootstrap-legacy .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .bootstrap-legacy .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .bootstrap-legacy .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .bootstrap-legacy .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .bootstrap-legacy .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bootstrap-legacy .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .bootstrap-legacy .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .bootstrap-legacy .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .order-sm-first {
    order: -1;
  }

  .bootstrap-legacy .order-sm-last {
    order: 13;
  }

  .bootstrap-legacy .order-sm-0 {
    order: 0;
  }

  .bootstrap-legacy .order-sm-1 {
    order: 1;
  }

  .bootstrap-legacy .order-sm-2 {
    order: 2;
  }

  .bootstrap-legacy .order-sm-3 {
    order: 3;
  }

  .bootstrap-legacy .order-sm-4 {
    order: 4;
  }

  .bootstrap-legacy .order-sm-5 {
    order: 5;
  }

  .bootstrap-legacy .order-sm-6 {
    order: 6;
  }

  .bootstrap-legacy .order-sm-7 {
    order: 7;
  }

  .bootstrap-legacy .order-sm-8 {
    order: 8;
  }

  .bootstrap-legacy .order-sm-9 {
    order: 9;
  }

  .bootstrap-legacy .order-sm-10 {
    order: 10;
  }

  .bootstrap-legacy .order-sm-11 {
    order: 11;
  }

  .bootstrap-legacy .order-sm-12 {
    order: 12;
  }

  .bootstrap-legacy .offset-sm-0 {
    margin-left: 0;
  }

  .bootstrap-legacy .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .bootstrap-legacy .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .bootstrap-legacy .offset-sm-3 {
    margin-left: 25%;
  }

  .bootstrap-legacy .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .bootstrap-legacy .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .bootstrap-legacy .offset-sm-6 {
    margin-left: 50%;
  }

  .bootstrap-legacy .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .bootstrap-legacy .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .bootstrap-legacy .offset-sm-9 {
    margin-left: 75%;
  }

  .bootstrap-legacy .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .bootstrap-legacy .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-md-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-md-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .row-cols-md-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .row-cols-md-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .row-cols-md-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bootstrap-legacy .row-cols-md-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .bootstrap-legacy .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .bootstrap-legacy .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .bootstrap-legacy .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .bootstrap-legacy .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .bootstrap-legacy .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bootstrap-legacy .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .bootstrap-legacy .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .bootstrap-legacy .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .order-md-first {
    order: -1;
  }

  .bootstrap-legacy .order-md-last {
    order: 13;
  }

  .bootstrap-legacy .order-md-0 {
    order: 0;
  }

  .bootstrap-legacy .order-md-1 {
    order: 1;
  }

  .bootstrap-legacy .order-md-2 {
    order: 2;
  }

  .bootstrap-legacy .order-md-3 {
    order: 3;
  }

  .bootstrap-legacy .order-md-4 {
    order: 4;
  }

  .bootstrap-legacy .order-md-5 {
    order: 5;
  }

  .bootstrap-legacy .order-md-6 {
    order: 6;
  }

  .bootstrap-legacy .order-md-7 {
    order: 7;
  }

  .bootstrap-legacy .order-md-8 {
    order: 8;
  }

  .bootstrap-legacy .order-md-9 {
    order: 9;
  }

  .bootstrap-legacy .order-md-10 {
    order: 10;
  }

  .bootstrap-legacy .order-md-11 {
    order: 11;
  }

  .bootstrap-legacy .order-md-12 {
    order: 12;
  }

  .bootstrap-legacy .offset-md-0 {
    margin-left: 0;
  }

  .bootstrap-legacy .offset-md-1 {
    margin-left: 8.33333%;
  }

  .bootstrap-legacy .offset-md-2 {
    margin-left: 16.66667%;
  }

  .bootstrap-legacy .offset-md-3 {
    margin-left: 25%;
  }

  .bootstrap-legacy .offset-md-4 {
    margin-left: 33.33333%;
  }

  .bootstrap-legacy .offset-md-5 {
    margin-left: 41.66667%;
  }

  .bootstrap-legacy .offset-md-6 {
    margin-left: 50%;
  }

  .bootstrap-legacy .offset-md-7 {
    margin-left: 58.33333%;
  }

  .bootstrap-legacy .offset-md-8 {
    margin-left: 66.66667%;
  }

  .bootstrap-legacy .offset-md-9 {
    margin-left: 75%;
  }

  .bootstrap-legacy .offset-md-10 {
    margin-left: 83.33333%;
  }

  .bootstrap-legacy .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-lg-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-lg-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .row-cols-lg-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .row-cols-lg-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .row-cols-lg-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bootstrap-legacy .row-cols-lg-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .bootstrap-legacy .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .bootstrap-legacy .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .bootstrap-legacy .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .bootstrap-legacy .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .bootstrap-legacy .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bootstrap-legacy .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .bootstrap-legacy .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .bootstrap-legacy .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .order-lg-first {
    order: -1;
  }

  .bootstrap-legacy .order-lg-last {
    order: 13;
  }

  .bootstrap-legacy .order-lg-0 {
    order: 0;
  }

  .bootstrap-legacy .order-lg-1 {
    order: 1;
  }

  .bootstrap-legacy .order-lg-2 {
    order: 2;
  }

  .bootstrap-legacy .order-lg-3 {
    order: 3;
  }

  .bootstrap-legacy .order-lg-4 {
    order: 4;
  }

  .bootstrap-legacy .order-lg-5 {
    order: 5;
  }

  .bootstrap-legacy .order-lg-6 {
    order: 6;
  }

  .bootstrap-legacy .order-lg-7 {
    order: 7;
  }

  .bootstrap-legacy .order-lg-8 {
    order: 8;
  }

  .bootstrap-legacy .order-lg-9 {
    order: 9;
  }

  .bootstrap-legacy .order-lg-10 {
    order: 10;
  }

  .bootstrap-legacy .order-lg-11 {
    order: 11;
  }

  .bootstrap-legacy .order-lg-12 {
    order: 12;
  }

  .bootstrap-legacy .offset-lg-0 {
    margin-left: 0;
  }

  .bootstrap-legacy .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .bootstrap-legacy .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .bootstrap-legacy .offset-lg-3 {
    margin-left: 25%;
  }

  .bootstrap-legacy .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .bootstrap-legacy .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .bootstrap-legacy .offset-lg-6 {
    margin-left: 50%;
  }

  .bootstrap-legacy .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .bootstrap-legacy .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .bootstrap-legacy .offset-lg-9 {
    margin-left: 75%;
  }

  .bootstrap-legacy .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .bootstrap-legacy .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-xl-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-xl-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .row-cols-xl-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .row-cols-xl-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .row-cols-xl-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bootstrap-legacy .row-cols-xl-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .bootstrap-legacy .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .bootstrap-legacy .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .bootstrap-legacy .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .bootstrap-legacy .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .bootstrap-legacy .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bootstrap-legacy .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .bootstrap-legacy .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .bootstrap-legacy .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .order-xl-first {
    order: -1;
  }

  .bootstrap-legacy .order-xl-last {
    order: 13;
  }

  .bootstrap-legacy .order-xl-0 {
    order: 0;
  }

  .bootstrap-legacy .order-xl-1 {
    order: 1;
  }

  .bootstrap-legacy .order-xl-2 {
    order: 2;
  }

  .bootstrap-legacy .order-xl-3 {
    order: 3;
  }

  .bootstrap-legacy .order-xl-4 {
    order: 4;
  }

  .bootstrap-legacy .order-xl-5 {
    order: 5;
  }

  .bootstrap-legacy .order-xl-6 {
    order: 6;
  }

  .bootstrap-legacy .order-xl-7 {
    order: 7;
  }

  .bootstrap-legacy .order-xl-8 {
    order: 8;
  }

  .bootstrap-legacy .order-xl-9 {
    order: 9;
  }

  .bootstrap-legacy .order-xl-10 {
    order: 10;
  }

  .bootstrap-legacy .order-xl-11 {
    order: 11;
  }

  .bootstrap-legacy .order-xl-12 {
    order: 12;
  }

  .bootstrap-legacy .offset-xl-0 {
    margin-left: 0;
  }

  .bootstrap-legacy .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .bootstrap-legacy .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .bootstrap-legacy .offset-xl-3 {
    margin-left: 25%;
  }

  .bootstrap-legacy .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .bootstrap-legacy .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .bootstrap-legacy .offset-xl-6 {
    margin-left: 50%;
  }

  .bootstrap-legacy .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .bootstrap-legacy .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .bootstrap-legacy .offset-xl-9 {
    margin-left: 75%;
  }

  .bootstrap-legacy .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .bootstrap-legacy .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-xxl-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .row-cols-xxl-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .row-cols-xxl-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .row-cols-xxl-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .row-cols-xxl-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bootstrap-legacy .row-cols-xxl-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .bootstrap-legacy .col-xxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .bootstrap-legacy .col-xxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .bootstrap-legacy .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bootstrap-legacy .col-xxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .bootstrap-legacy .col-xxl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .bootstrap-legacy .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bootstrap-legacy .col-xxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .bootstrap-legacy .col-xxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .bootstrap-legacy .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bootstrap-legacy .col-xxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .bootstrap-legacy .col-xxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .bootstrap-legacy .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bootstrap-legacy .order-xxl-first {
    order: -1;
  }

  .bootstrap-legacy .order-xxl-last {
    order: 13;
  }

  .bootstrap-legacy .order-xxl-0 {
    order: 0;
  }

  .bootstrap-legacy .order-xxl-1 {
    order: 1;
  }

  .bootstrap-legacy .order-xxl-2 {
    order: 2;
  }

  .bootstrap-legacy .order-xxl-3 {
    order: 3;
  }

  .bootstrap-legacy .order-xxl-4 {
    order: 4;
  }

  .bootstrap-legacy .order-xxl-5 {
    order: 5;
  }

  .bootstrap-legacy .order-xxl-6 {
    order: 6;
  }

  .bootstrap-legacy .order-xxl-7 {
    order: 7;
  }

  .bootstrap-legacy .order-xxl-8 {
    order: 8;
  }

  .bootstrap-legacy .order-xxl-9 {
    order: 9;
  }

  .bootstrap-legacy .order-xxl-10 {
    order: 10;
  }

  .bootstrap-legacy .order-xxl-11 {
    order: 11;
  }

  .bootstrap-legacy .order-xxl-12 {
    order: 12;
  }

  .bootstrap-legacy .offset-xxl-0 {
    margin-left: 0;
  }

  .bootstrap-legacy .offset-xxl-1 {
    margin-left: 8.33333%;
  }

  .bootstrap-legacy .offset-xxl-2 {
    margin-left: 16.66667%;
  }

  .bootstrap-legacy .offset-xxl-3 {
    margin-left: 25%;
  }

  .bootstrap-legacy .offset-xxl-4 {
    margin-left: 33.33333%;
  }

  .bootstrap-legacy .offset-xxl-5 {
    margin-left: 41.66667%;
  }

  .bootstrap-legacy .offset-xxl-6 {
    margin-left: 50%;
  }

  .bootstrap-legacy .offset-xxl-7 {
    margin-left: 58.33333%;
  }

  .bootstrap-legacy .offset-xxl-8 {
    margin-left: 66.66667%;
  }

  .bootstrap-legacy .offset-xxl-9 {
    margin-left: 75%;
  }

  .bootstrap-legacy .offset-xxl-10 {
    margin-left: 83.33333%;
  }

  .bootstrap-legacy .offset-xxl-11 {
    margin-left: 91.66667%;
  }
}

.bootstrap-legacy .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #6e6b7b;
}

.bootstrap-legacy .table th, .bootstrap-legacy .table td {
  padding: 0.72rem;
  vertical-align: top;
  border-top: 1px solid #ebe9f1;
}

.bootstrap-legacy .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #ebe9f1;
}

.bootstrap-legacy .table tbody+tbody {
  border-top: 2px solid #ebe9f1;
}

.bootstrap-legacy .table-sm th, .bootstrap-legacy .table-sm td {
  padding: 0.3rem;
}

.bootstrap-legacy .table-bordered {
  border: 1px solid #ebe9f1;
}

.bootstrap-legacy .table-bordered th, .bootstrap-legacy .table-bordered td {
  border: 1px solid #ebe9f1;
}

.bootstrap-legacy .table-bordered thead th, .bootstrap-legacy .table-bordered thead td {
  border-bottom-width: 2px;
}

.bootstrap-legacy .table-borderless th, .bootstrap-legacy .table-borderless td, .bootstrap-legacy .table-borderless thead th, .bootstrap-legacy .table-borderless tbody+tbody {
  border: 0;
}

.bootstrap-legacy .table-striped tbody tr:nth-of-type(odd) {
  background-color: #fafafc;
}

.bootstrap-legacy .table-hover tbody tr:hover {
  color: #6e6b7b;
  background-color: #f6f6f9;
}

.bootstrap-legacy .table-primary, .bootstrap-legacy .table-primary>th, .bootstrap-legacy .table-primary>td {
  background-color: #d8d4fb;
}

.bootstrap-legacy .table-primary th, .bootstrap-legacy .table-primary td, .bootstrap-legacy .table-primary thead th, .bootstrap-legacy .table-primary tbody+tbody {
  border-color: #b6b0f7;
}

.bootstrap-legacy .table-hover .table-primary:hover {
  background-color: #c3bdf9;
}

.bootstrap-legacy .table-hover .table-primary:hover>td, .bootstrap-legacy .table-hover .table-primary:hover>th {
  background-color: #c3bdf9;
}

.bootstrap-legacy .table-secondary, .bootstrap-legacy .table-secondary>th, .bootstrap-legacy .table-secondary>td {
  background-color: #dcdddf;
}

.bootstrap-legacy .table-secondary th, .bootstrap-legacy .table-secondary td, .bootstrap-legacy .table-secondary thead th, .bootstrap-legacy .table-secondary tbody+tbody {
  border-color: #bec0c3;
}

.bootstrap-legacy .table-hover .table-secondary:hover {
  background-color: #cfd0d3;
}

.bootstrap-legacy .table-hover .table-secondary:hover>td, .bootstrap-legacy .table-hover .table-secondary:hover>th {
  background-color: #cfd0d3;
}

.bootstrap-legacy .table-success, .bootstrap-legacy .table-success>th, .bootstrap-legacy .table-success>td {
  background-color: #c3efd7;
}

.bootstrap-legacy .table-success th, .bootstrap-legacy .table-success td, .bootstrap-legacy .table-success thead th, .bootstrap-legacy .table-success tbody+tbody {
  border-color: #8fe2b4;
}

.bootstrap-legacy .table-hover .table-success:hover {
  background-color: #afeaca;
}

.bootstrap-legacy .table-hover .table-success:hover>td, .bootstrap-legacy .table-hover .table-success:hover>th {
  background-color: #afeaca;
}

.bootstrap-legacy .table-info, .bootstrap-legacy .table-info>th, .bootstrap-legacy .table-info>td {
  background-color: #b8f2f9;
}

.bootstrap-legacy .table-info th, .bootstrap-legacy .table-info td, .bootstrap-legacy .table-info thead th, .bootstrap-legacy .table-info tbody+tbody {
  border-color: #7ae6f3;
}

.bootstrap-legacy .table-hover .table-info:hover {
  background-color: #a0eef7;
}

.bootstrap-legacy .table-hover .table-info:hover>td, .bootstrap-legacy .table-hover .table-info:hover>th {
  background-color: #a0eef7;
}

.bootstrap-legacy .table-warning, .bootstrap-legacy .table-warning>th, .bootstrap-legacy .table-warning>td {
  background-color: #ffe4ca;
}

.bootstrap-legacy .table-warning th, .bootstrap-legacy .table-warning td, .bootstrap-legacy .table-warning thead th, .bootstrap-legacy .table-warning tbody+tbody {
  border-color: #ffcd9d;
}

.bootstrap-legacy .table-hover .table-warning:hover {
  background-color: #ffd7b1;
}

.bootstrap-legacy .table-hover .table-warning:hover>td, .bootstrap-legacy .table-hover .table-warning:hover>th {
  background-color: #ffd7b1;
}

.bootstrap-legacy .table-danger, .bootstrap-legacy .table-danger>th, .bootstrap-legacy .table-danger>td {
  background-color: #f9cfcf;
}

.bootstrap-legacy .table-danger th, .bootstrap-legacy .table-danger td, .bootstrap-legacy .table-danger thead th, .bootstrap-legacy .table-danger tbody+tbody {
  border-color: #f4a6a7;
}

.bootstrap-legacy .table-hover .table-danger:hover {
  background-color: #f6b8b8;
}

.bootstrap-legacy .table-hover .table-danger:hover>td, .bootstrap-legacy .table-hover .table-danger:hover>th {
  background-color: #f6b8b8;
}

.bootstrap-legacy .table-light, .bootstrap-legacy .table-light>th, .bootstrap-legacy .table-light>td {
  background-color: #fcfcfc;
}

.bootstrap-legacy .table-light th, .bootstrap-legacy .table-light td, .bootstrap-legacy .table-light thead th, .bootstrap-legacy .table-light tbody+tbody {
  border-color: #fafafa;
}

.bootstrap-legacy .table-hover .table-light:hover {
  background-color: #efefef;
}

.bootstrap-legacy .table-hover .table-light:hover>td, .bootstrap-legacy .table-hover .table-light:hover>th {
  background-color: #efefef;
}

.bootstrap-legacy .table-dark, .bootstrap-legacy .table-dark>th, .bootstrap-legacy .table-dark>td {
  background-color: #cdcdcd;
}

.bootstrap-legacy .table-dark th, .bootstrap-legacy .table-dark td, .bootstrap-legacy .table-dark thead th, .bootstrap-legacy .table-dark tbody+tbody {
  border-color: #a1a1a1;
}

.bootstrap-legacy .table-hover .table-dark:hover {
  background-color: silver;
}

.bootstrap-legacy .table-hover .table-dark:hover>td, .bootstrap-legacy .table-hover .table-dark:hover>th {
  background-color: silver;
}

.bootstrap-legacy .table-active, .bootstrap-legacy .table-active>th, .bootstrap-legacy .table-active>td {
  background-color: #f6f6f9;
}

.bootstrap-legacy .table-hover .table-active:hover {
  background-color: #e7e7ef;
}

.bootstrap-legacy .table-hover .table-active:hover>td, .bootstrap-legacy .table-hover .table-active:hover>th {
  background-color: #e7e7ef;
}

.bootstrap-legacy .table .thead-dark th {
  color: #fff;
  background-color: #4b4b4b;
  border-color: #404040;
}

.bootstrap-legacy .table .thead-light th {
  color: #5e5873;
  background-color: #f3f2f7;
  border-color: #ebe9f1;
}

.bootstrap-legacy .table-dark {
  color: #fff;
  background-color: #4b4b4b;
}

.bootstrap-legacy .table-dark th, .bootstrap-legacy .table-dark td, .bootstrap-legacy .table-dark thead th {
  border-color: #404040;
}

.bootstrap-legacy .table-dark.table-bordered {
  border: 0;
}

.bootstrap-legacy .table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.bootstrap-legacy .table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .bootstrap-legacy .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bootstrap-legacy .table-responsive-sm>.table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .bootstrap-legacy .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bootstrap-legacy .table-responsive-md>.table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .bootstrap-legacy .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bootstrap-legacy .table-responsive-lg>.table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .bootstrap-legacy .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bootstrap-legacy .table-responsive-xl>.table-bordered {
    border: 0;
  }
}

@media (max-width: 1439.98px) {
  .bootstrap-legacy .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bootstrap-legacy .table-responsive-xxl>.table-bordered {
    border: 0;
  }
}

.bootstrap-legacy .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bootstrap-legacy .table-responsive>.table-bordered {
  border: 0;
}

.bootstrap-legacy .form-control {
  display: block;
  width: 100%;
  height: 2.714rem;
  padding: 0.438rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #6e6b7b;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d8d6de;
  border-radius: 0.357rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .form-control {
    transition: none;
  }
}

.bootstrap-legacy .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.bootstrap-legacy .form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #6e6b7b;
}

.bootstrap-legacy .form-control:focus {
  /* color: #6e6b7b; */
  /* background-color: #fff; */
  border-color: #7367f0;
  outline: 0;
  box-shadow: 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .form-control::placeholder {
  color: #b9b9c3;
  opacity: 1;
}

.bootstrap-legacy .form-control:disabled, .bootstrap-legacy .form-control[readonly] {
  /* background-color: #efefef;
  opacity: 1; */
}

.bootstrap-legacy input[type="date"].form-control, .bootstrap-legacy input[type="time"].form-control, .bootstrap-legacy input[type="datetime-local"].form-control, .bootstrap-legacy input[type="month"].form-control {
  appearance: none;
}

.bootstrap-legacy select.form-control:focus::-ms-value {
  color: #6e6b7b;
  background-color: #fff;
}

.bootstrap-legacy .form-control-file, .bootstrap-legacy .form-control-range {
  display: block;
  width: 100%;
}

.bootstrap-legacy .col-form-label {
  padding-top: calc(0.438rem + 1px);
  padding-bottom: calc(0.438rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.45;
}

.bootstrap-legacy .col-form-label-lg {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  font-size: 1.143rem;
  line-height: 1.25;
}

.bootstrap-legacy .col-form-label-sm {
  padding-top: calc(0.188rem + 1px);
  padding-bottom: calc(0.188rem + 1px);
  font-size: 0.857rem;
  line-height: 1;
}

.bootstrap-legacy .form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.438rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #6e6b7b;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.bootstrap-legacy .form-control-plaintext.form-control-sm, .bootstrap-legacy .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-legacy .form-control-sm {
  height: 2.142rem;
  padding: 0.188rem 0.857rem;
  font-size: 0.857rem;
  line-height: 1;
  border-radius: 0.357rem;
}

.bootstrap-legacy .form-control-lg {
  height: 3.2857rem;
  padding: 0.75rem 1.143rem;
  font-size: 1.143rem;
  line-height: 1.25;
  border-radius: 0.357rem;
}

.bootstrap-legacy select.form-control[size], .bootstrap-legacy select.form-control[multiple] {
  height: auto;
}

.bootstrap-legacy textarea.form-control {
  height: auto;
}

.bootstrap-legacy .form-group:not(.searchAvailable) {
  margin-bottom: 1rem;
}

.bootstrap-legacy .form-text {
  display: block;
  margin-top: 0.25rem;
}

.bootstrap-legacy .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.bootstrap-legacy .form-row>.col, .bootstrap-legacy .form-row>[class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.bootstrap-legacy .form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.bootstrap-legacy .form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.bootstrap-legacy .form-check-input[disabled]~.form-check-label, .bootstrap-legacy .form-check-input:disabled~.form-check-label {
  color: #b9b9c3;
}

.bootstrap-legacy .form-check-label {
  margin-bottom: 0;
}

.bootstrap-legacy .form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.bootstrap-legacy .form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.bootstrap-legacy .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.857rem;
  color: #28c76f;
}

.bootstrap-legacy .valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.4rem 0.775rem;
  margin-top: .1rem;
  font-size: 0.857rem;
  line-height: 1.45;
  color: #fff;
  background-color: #28c76f;
  border-radius: 0.358rem;
}

.bootstrap-legacy .form-row>.col>.valid-tooltip, .bootstrap-legacy .form-row>[class*="col-"]>.valid-tooltip {
  left: 5px;
}

.bootstrap-legacy .was-validated :valid~.valid-feedback, .bootstrap-legacy .was-validated :valid~.valid-tooltip, .bootstrap-legacy .is-valid~.valid-feedback, .bootstrap-legacy .is-valid~.valid-tooltip {
  display: block;
}

.bootstrap-legacy .was-validated .form-control:valid, .bootstrap-legacy .form-control.is-valid {
  border-color: #28c76f;
  padding-right: calc(1.45em + 0.876rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328c76f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.3625em + 0.219rem) center;
  background-size: calc(0.725em + 0.438rem) calc(0.725em + 0.438rem);
}

.bootstrap-legacy .was-validated .form-control:valid:focus, .bootstrap-legacy .form-control.is-valid:focus {
  border-color: #28c76f;
  box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25);
}

.bootstrap-legacy .was-validated textarea.form-control:valid, .bootstrap-legacy textarea.form-control.is-valid {
  padding-right: calc(1.45em + 0.876rem);
  background-position: top calc(0.3625em + 0.219rem) right calc(0.3625em + 0.219rem);
}

.bootstrap-legacy .was-validated .custom-select:valid, .bootstrap-legacy .custom-select.is-valid {
  border-color: #28c76f;
  padding-right: calc(0.75em + 2.657rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23d8d6de' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1rem center/10px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328c76f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2rem/calc(0.725em + 0.438rem) calc(0.725em + 0.438rem) no-repeat;
}

.bootstrap-legacy .was-validated .custom-select:valid:focus, .bootstrap-legacy .custom-select.is-valid:focus {
  border-color: #28c76f;
  box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25);
}

.bootstrap-legacy .was-validated .form-check-input:valid~.form-check-label, .bootstrap-legacy .form-check-input.is-valid~.form-check-label {
  color: #28c76f;
}

.bootstrap-legacy .was-validated .form-check-input:valid~.valid-feedback, .bootstrap-legacy .was-validated .form-check-input:valid~.valid-tooltip, .bootstrap-legacy .form-check-input.is-valid~.valid-feedback, .bootstrap-legacy .form-check-input.is-valid~.valid-tooltip {
  display: block;
}

.bootstrap-legacy .was-validated .custom-control-input:valid~.custom-control-label, .bootstrap-legacy .custom-control-input.is-valid~.custom-control-label {
  color: #28c76f;
}

.bootstrap-legacy .was-validated .custom-control-input:valid~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-valid~.custom-control-label::before {
  border-color: #28c76f;
}

.bootstrap-legacy .was-validated .custom-control-input:valid:checked~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-valid:checked~.custom-control-label::before {
  border-color: #48da89;
  background-color: #48da89;
}

.bootstrap-legacy .was-validated .custom-control-input:valid:focus~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-valid:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25);
}

.bootstrap-legacy .was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before {
  border-color: #28c76f;
}

.bootstrap-legacy .was-validated .custom-file-input:valid~.custom-file-label, .bootstrap-legacy .custom-file-input.is-valid~.custom-file-label {
  border-color: #28c76f;
}

.bootstrap-legacy .was-validated .custom-file-input:valid:focus~.custom-file-label, .bootstrap-legacy .custom-file-input.is-valid:focus~.custom-file-label {
  border-color: #28c76f;
  box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25);
}

.bootstrap-legacy .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.857rem;
  color: #ea5455;
}

.bootstrap-legacy .invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.4rem 0.775rem;
  margin-top: .1rem;
  font-size: 0.857rem;
  line-height: 1.45;
  color: #fff;
  background-color: #ea5455;
  border-radius: 0.358rem;
}

.bootstrap-legacy .form-row>.col>.invalid-tooltip, .bootstrap-legacy .form-row>[class*="col-"]>.invalid-tooltip {
  left: 5px;
}

.bootstrap-legacy .was-validated :invalid~.invalid-feedback, .bootstrap-legacy .was-validated :invalid~.invalid-tooltip, .bootstrap-legacy .is-invalid~.invalid-feedback, .bootstrap-legacy .is-invalid~.invalid-tooltip {
  display: block;
}

.bootstrap-legacy .was-validated .form-control:invalid, .bootstrap-legacy .form-control.is-invalid {
  border-color: #ea5455;
  padding-right: calc(1.45em + 0.876rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ea5455' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ea5455' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.3625em + 0.219rem) center;
  background-size: calc(0.725em + 0.438rem) calc(0.725em + 0.438rem);
}

.bootstrap-legacy .was-validated .form-control:invalid:focus, .bootstrap-legacy .form-control.is-invalid:focus {
  border-color: #ea5455;
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25);
}

.bootstrap-legacy .was-validated textarea.form-control:invalid, .bootstrap-legacy textarea.form-control.is-invalid {
  padding-right: calc(1.45em + 0.876rem);
  background-position: top calc(0.3625em + 0.219rem) right calc(0.3625em + 0.219rem);
}

.bootstrap-legacy .was-validated .custom-select:invalid, .bootstrap-legacy .custom-select.is-invalid {
  border-color: #ea5455;
  padding-right: calc(0.75em + 2.657rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23d8d6de' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1rem center/10px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ea5455' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ea5455' stroke='none'/%3e%3c/svg%3e") center right 2rem/calc(0.725em + 0.438rem) calc(0.725em + 0.438rem) no-repeat;
}

.bootstrap-legacy .was-validated .custom-select:invalid:focus, .bootstrap-legacy .custom-select.is-invalid:focus {
  border-color: #ea5455;
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25);
}

.bootstrap-legacy .was-validated .form-check-input:invalid~.form-check-label, .bootstrap-legacy .form-check-input.is-invalid~.form-check-label {
  color: #ea5455;
}

.bootstrap-legacy .was-validated .form-check-input:invalid~.invalid-feedback, .bootstrap-legacy .was-validated .form-check-input:invalid~.invalid-tooltip, .bootstrap-legacy .form-check-input.is-invalid~.invalid-feedback, .bootstrap-legacy .form-check-input.is-invalid~.invalid-tooltip {
  display: block;
}

.bootstrap-legacy .was-validated .custom-control-input:invalid~.custom-control-label, .bootstrap-legacy .custom-control-input.is-invalid~.custom-control-label {
  color: #ea5455;
}

.bootstrap-legacy .was-validated .custom-control-input:invalid~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-invalid~.custom-control-label::before {
  border-color: #ea5455;
}

.bootstrap-legacy .was-validated .custom-control-input:invalid:checked~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-invalid:checked~.custom-control-label::before {
  border-color: #f08182;
  background-color: #f08182;
}

.bootstrap-legacy .was-validated .custom-control-input:invalid:focus~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-invalid:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25);
}

.bootstrap-legacy .was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before, .bootstrap-legacy .custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before {
  border-color: #ea5455;
}

.bootstrap-legacy .was-validated .custom-file-input:invalid~.custom-file-label, .bootstrap-legacy .custom-file-input.is-invalid~.custom-file-label {
  border-color: #ea5455;
}

.bootstrap-legacy .was-validated .custom-file-input:invalid:focus~.custom-file-label, .bootstrap-legacy .custom-file-input.is-invalid:focus~.custom-file-label {
  border-color: #ea5455;
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25);
}

.bootstrap-legacy .form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.bootstrap-legacy .form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .bootstrap-legacy .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .bootstrap-legacy .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .bootstrap-legacy .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .bootstrap-legacy .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .bootstrap-legacy .form-inline .input-group, .bootstrap-legacy .form-inline .custom-select {
    width: auto;
  }

  .bootstrap-legacy .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .bootstrap-legacy .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .bootstrap-legacy .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

  .bootstrap-legacy .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.bootstrap-legacy .btn {
  display: inline-block;
  font-weight: 400;
  color: #6e6b7b;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.786rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.358rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border 0s;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .btn {
    transition: none;
  }
}

.bootstrap-legacy .btn:hover {
  color: #6e6b7b;
  text-decoration: none;
}

.bootstrap-legacy .btn:focus, .bootstrap-legacy .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25);
}

.bootstrap-legacy .btn.disabled, .bootstrap-legacy .btn:disabled {
  opacity: 0.65;
}

.bootstrap-legacy .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.bootstrap-legacy a.btn.disabled, .bootstrap-legacy fieldset:disabled a.btn {
  pointer-events: none;
}

.bootstrap-legacy .btn-primary {
  color: #fff;
  background-color: #7367f0;
  border-color: #7367f0;
}

.bootstrap-legacy .btn-primary:hover {
  color: #fff;
  background-color: #5344ed;
  border-color: #4839eb;
}

.bootstrap-legacy .btn-primary:focus, .bootstrap-legacy .btn-primary.focus {
  color: #fff;
  background-color: #5344ed;
  border-color: #4839eb;
  box-shadow: 0 0 0 0.2rem rgba(136, 126, 242, 0.5);
}

.bootstrap-legacy .btn-primary.disabled, .bootstrap-legacy .btn-primary:disabled {
  color: #fff;
  background-color: #7367f0;
  border-color: #7367f0;
}

.bootstrap-legacy .btn-primary:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-primary:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #4839eb;
  border-color: #3e2dea;
}

.bootstrap-legacy .btn-primary:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-primary:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 126, 242, 0.5);
}

.bootstrap-legacy .btn-secondary {
  color: #fff;
  background-color: #82868b;
  border-color: #82868b;
}

.bootstrap-legacy .btn-secondary:hover {
  color: #fff;
  background-color: #6f7378;
  border-color: #696d71;
}

.bootstrap-legacy .btn-secondary:focus, .bootstrap-legacy .btn-secondary.focus {
  color: #fff;
  background-color: #6f7378;
  border-color: #696d71;
  box-shadow: 0 0 0 0.2rem rgba(149, 152, 156, 0.5);
}

.bootstrap-legacy .btn-secondary.disabled, .bootstrap-legacy .btn-secondary:disabled {
  color: #fff;
  background-color: #82868b;
  border-color: #82868b;
}

.bootstrap-legacy .btn-secondary:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-secondary:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #696d71;
  border-color: #63666a;
}

.bootstrap-legacy .btn-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-secondary:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(149, 152, 156, 0.5);
}

.bootstrap-legacy .btn-success {
  color: #fff;
  background-color: #28c76f;
  border-color: #28c76f;
}

.bootstrap-legacy .btn-success:hover {
  color: #fff;
  background-color: #22a75d;
  border-color: #1f9d57;
}

.bootstrap-legacy .btn-success:focus, .bootstrap-legacy .btn-success.focus {
  color: #fff;
  background-color: #22a75d;
  border-color: #1f9d57;
  box-shadow: 0 0 0 0.2rem rgba(72, 207, 133, 0.5);
}

.bootstrap-legacy .btn-success.disabled, .bootstrap-legacy .btn-success:disabled {
  color: #fff;
  background-color: #28c76f;
  border-color: #28c76f;
}

.bootstrap-legacy .btn-success:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-success:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1f9d57;
  border-color: #1d9251;
}

.bootstrap-legacy .btn-success:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-success:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 207, 133, 0.5);
}

.bootstrap-legacy .btn-info {
  color: #fff;
  background-color: #00cfe8;
  border-color: #00cfe8;
}

.bootstrap-legacy .btn-info:hover {
  color: #fff;
  background-color: #00adc2;
  border-color: #00a1b5;
}

.bootstrap-legacy .btn-info:focus, .bootstrap-legacy .btn-info.focus {
  color: #fff;
  background-color: #00adc2;
  border-color: #00a1b5;
  box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5);
}

.bootstrap-legacy .btn-info.disabled, .bootstrap-legacy .btn-info:disabled {
  color: #fff;
  background-color: #00cfe8;
  border-color: #00cfe8;
}

.bootstrap-legacy .btn-info:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-info:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #00a1b5;
  border-color: #0096a8;
}

.bootstrap-legacy .btn-info:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-info:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5);
}

.bootstrap-legacy .btn-warning {
  color: #2a2e30;
  background-color: #ff9f43;
  border-color: #ff9f43;
}

.bootstrap-legacy .btn-warning:hover {
  color: #2a2e30;
  background-color: #ff8b1d;
  border-color: #ff8510;
}

.bootstrap-legacy .btn-warning:focus, .bootstrap-legacy .btn-warning.focus {
  color: #2a2e30;
  background-color: #ff8b1d;
  border-color: #ff8510;
  box-shadow: 0 0 0 0.2rem rgba(223, 142, 64, 0.5);
}

.bootstrap-legacy .btn-warning.disabled, .bootstrap-legacy .btn-warning:disabled {
  color: #2a2e30;
  background-color: #ff9f43;
  border-color: #ff9f43;
}

.bootstrap-legacy .btn-warning:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-warning:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-warning.dropdown-toggle {
  color: #2a2e30;
  background-color: #ff8510;
  border-color: #ff7e03;
}

.bootstrap-legacy .btn-warning:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-warning:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(223, 142, 64, 0.5);
}

.bootstrap-legacy .btn-danger {
  color: #fff;
  background-color: #ea5455;
  border-color: #ea5455;
}

.bootstrap-legacy .btn-danger:hover {
  color: #fff;
  background-color: #e63233;
  border-color: #e42728;
}

.bootstrap-legacy .btn-danger:focus, .bootstrap-legacy .btn-danger.focus {
  color: #fff;
  background-color: #e63233;
  border-color: #e42728;
  box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5);
}

.bootstrap-legacy .btn-danger.disabled, .bootstrap-legacy .btn-danger:disabled {
  color: #fff;
  background-color: #ea5455;
  border-color: #ea5455;
}

.bootstrap-legacy .btn-danger:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-danger:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #e42728;
  border-color: #e21c1d;
}

.bootstrap-legacy .btn-danger:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-danger:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5);
}

.bootstrap-legacy .btn-light {
  color: #2a2e30;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.bootstrap-legacy .btn-light:hover {
  color: #2a2e30;
  background-color: #e3e3e3;
  border-color: #dddddd;
}

.bootstrap-legacy .btn-light:focus, .bootstrap-legacy .btn-light.focus {
  color: #2a2e30;
  background-color: #e3e3e3;
  border-color: #dddddd;
  box-shadow: 0 0 0 0.2rem rgba(215, 216, 216, 0.5);
}

.bootstrap-legacy .btn-light.disabled, .bootstrap-legacy .btn-light:disabled {
  color: #2a2e30;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.bootstrap-legacy .btn-light:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-light:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-light.dropdown-toggle {
  color: #2a2e30;
  background-color: #dddddd;
  border-color: #d6d6d6;
}

.bootstrap-legacy .btn-light:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-light:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 216, 216, 0.5);
}

.bootstrap-legacy .btn-dark {
  color: #fff;
  background-color: #4b4b4b;
  border-color: #4b4b4b;
}

.bootstrap-legacy .btn-dark:hover {
  color: #fff;
  background-color: #383838;
  border-color: #323232;
}

.bootstrap-legacy .btn-dark:focus, .bootstrap-legacy .btn-dark.focus {
  color: #fff;
  background-color: #383838;
  border-color: #323232;
  box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.5);
}

.bootstrap-legacy .btn-dark.disabled, .bootstrap-legacy .btn-dark:disabled {
  color: #fff;
  background-color: #4b4b4b;
  border-color: #4b4b4b;
}

.bootstrap-legacy .btn-dark:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-dark:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #323232;
  border-color: #2b2b2b;
}

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

.bootstrap-legacy .btn-outline-primary {
  color: #7367f0;
  border-color: #7367f0;
}

.bootstrap-legacy .btn-outline-primary:hover {
  color: #fff;
  background-color: #7367f0;
  border-color: #7367f0;
}

.bootstrap-legacy .btn-outline-primary:focus, .bootstrap-legacy .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5);
}

.bootstrap-legacy .btn-outline-primary.disabled, .bootstrap-legacy .btn-outline-primary:disabled {
  color: #7367f0;
  background-color: transparent;
}

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

.bootstrap-legacy .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5);
}

.bootstrap-legacy .btn-outline-secondary {
  color: #82868b;
  border-color: #82868b;
}

.bootstrap-legacy .btn-outline-secondary:hover {
  color: #fff;
  background-color: #82868b;
  border-color: #82868b;
}

.bootstrap-legacy .btn-outline-secondary:focus, .bootstrap-legacy .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 134, 139, 0.5);
}

.bootstrap-legacy .btn-outline-secondary.disabled, .bootstrap-legacy .btn-outline-secondary:disabled {
  color: #82868b;
  background-color: transparent;
}

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

.bootstrap-legacy .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 134, 139, 0.5);
}

.bootstrap-legacy .btn-outline-success {
  color: #28c76f;
  border-color: #28c76f;
}

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

.bootstrap-legacy .btn-outline-success:focus, .bootstrap-legacy .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5);
}

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

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

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

.bootstrap-legacy .btn-outline-info {
  color: #00cfe8;
  border-color: #00cfe8;
}

.bootstrap-legacy .btn-outline-info:hover {
  color: #fff;
  background-color: #00cfe8;
  border-color: #00cfe8;
}

.bootstrap-legacy .btn-outline-info:focus, .bootstrap-legacy .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
}

.bootstrap-legacy .btn-outline-info.disabled, .bootstrap-legacy .btn-outline-info:disabled {
  color: #00cfe8;
  background-color: transparent;
}

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

.bootstrap-legacy .btn-outline-info:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-outline-info:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
}

.bootstrap-legacy .btn-outline-warning {
  color: #ff9f43;
  border-color: #ff9f43;
}

.bootstrap-legacy .btn-outline-warning:hover {
  color: #2a2e30;
  background-color: #ff9f43;
  border-color: #ff9f43;
}

.bootstrap-legacy .btn-outline-warning:focus, .bootstrap-legacy .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5);
}

.bootstrap-legacy .btn-outline-warning.disabled, .bootstrap-legacy .btn-outline-warning:disabled {
  color: #ff9f43;
  background-color: transparent;
}

.bootstrap-legacy .btn-outline-warning:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-outline-warning:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-outline-warning.dropdown-toggle {
  color: #2a2e30;
  background-color: #ff9f43;
  border-color: #ff9f43;
}

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

.bootstrap-legacy .btn-outline-danger {
  color: #ea5455;
  border-color: #ea5455;
}

.bootstrap-legacy .btn-outline-danger:hover {
  color: #fff;
  background-color: #ea5455;
  border-color: #ea5455;
}

.bootstrap-legacy .btn-outline-danger:focus, .bootstrap-legacy .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5);
}

.bootstrap-legacy .btn-outline-danger.disabled, .bootstrap-legacy .btn-outline-danger:disabled {
  color: #ea5455;
  background-color: transparent;
}

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

.bootstrap-legacy .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .bootstrap-legacy .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .bootstrap-legacy .show>.btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5);
}

.bootstrap-legacy .btn-outline-light {
  color: #f6f6f6;
  border-color: #f6f6f6;
}

.bootstrap-legacy .btn-outline-light:hover {
  color: #2a2e30;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.bootstrap-legacy .btn-outline-light:focus, .bootstrap-legacy .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(246, 246, 246, 0.5);
}

.bootstrap-legacy .btn-outline-light.disabled, .bootstrap-legacy .btn-outline-light:disabled {
  color: #f6f6f6;
  background-color: transparent;
}

.bootstrap-legacy .btn-outline-light:not(:disabled):not(.disabled):active, .bootstrap-legacy .btn-outline-light:not(:disabled):not(.disabled).active, .bootstrap-legacy .show>.btn-outline-light.dropdown-toggle {
  color: #2a2e30;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

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

.bootstrap-legacy .btn-outline-dark {
  color: #4b4b4b;
  border-color: #4b4b4b;
}

.bootstrap-legacy .btn-outline-dark:hover {
  color: #fff;
  background-color: #4b4b4b;
  border-color: #4b4b4b;
}

.bootstrap-legacy .btn-outline-dark:focus, .bootstrap-legacy .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 75, 75, 0.5);
}

.bootstrap-legacy .btn-outline-dark.disabled, .bootstrap-legacy .btn-outline-dark:disabled {
  color: #4b4b4b;
  background-color: transparent;
}

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

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

.bootstrap-legacy .btn-link {
  font-weight: 400;
  color: #7367f0;
  text-decoration: none;
}

.bootstrap-legacy .btn-link:hover {
  color: #5e50ee;
  text-decoration: none;
}

.bootstrap-legacy .btn-link:focus, .bootstrap-legacy .btn-link.focus {
  text-decoration: none;
}

.bootstrap-legacy .btn-link:disabled, .bootstrap-legacy .btn-link.disabled {
  color: #b8c2cc;
  pointer-events: none;
}

.bootstrap-legacy .btn-lg, .bootstrap-legacy .btn-group-lg>.btn {
  padding: 0.8rem 2rem;
  font-size: 1.25rem;
  line-height: 1.25;
  border-radius: 0.358rem;
}

.bootstrap-legacy .btn-sm, .bootstrap-legacy .btn-group-sm>.btn {
  padding: 0.486rem 1rem;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 0.358rem;
}

.bootstrap-legacy .btn-block {
  display: block;
  width: 100%;
}

.bootstrap-legacy .btn-block+.btn-block {
  margin-top: 0.5rem;
}

.bootstrap-legacy input[type="submit"].btn-block, .bootstrap-legacy input[type="reset"].btn-block, .bootstrap-legacy input[type="button"].btn-block {
  width: 100%;
}

.bootstrap-legacy .fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .fade {
    transition: none;
  }
}

.bootstrap-legacy .fade:not(.show) {
  opacity: 0;
}

.bootstrap-legacy .collapse:not(.show) {
  display: none !important;
}

.bootstrap-legacy .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .collapsing {
    transition: none;
  }
}

.bootstrap-legacy .dropup, .bootstrap-legacy .dropright, .bootstrap-legacy .dropdown, .bootstrap-legacy .dropleft {
  position: relative;
}

.bootstrap-legacy .dropdown-toggle {
  white-space: nowrap;
}

.bootstrap-legacy .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.bootstrap-legacy .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-legacy .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0 0 0;
  font-size: 1rem;
  color: #6e6b7b;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(34, 41, 47, 0.05);
  border-radius: 0.358rem;
  width: fit-content;
}

.bootstrap-legacy .dropdown-menu-left {
  right: auto;
  left: 0;
}

.bootstrap-legacy .dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .bootstrap-legacy .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .bootstrap-legacy .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .bootstrap-legacy .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .bootstrap-legacy .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .bootstrap-legacy .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }

  .bootstrap-legacy .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}

.bootstrap-legacy .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.bootstrap-legacy .dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.bootstrap-legacy .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-legacy .dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}

.bootstrap-legacy .dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.bootstrap-legacy .dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-legacy .dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.bootstrap-legacy .dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0;
}

.bootstrap-legacy .dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.bootstrap-legacy .dropleft .dropdown-toggle::after {
  display: none;
}

.bootstrap-legacy .dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.bootstrap-legacy .dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-legacy .dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.bootstrap-legacy .dropdown-menu[x-placement^="top"], .bootstrap-legacy .dropdown-menu[x-placement^="right"], .bootstrap-legacy .dropdown-menu[x-placement^="bottom"], .bootstrap-legacy .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.bootstrap-legacy .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(34, 41, 47, 0.08);
}

.bootstrap-legacy .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.65rem 1.28rem;
  clear: both;
  font-weight: 400;
  color: #6e6b7b;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.bootstrap-legacy .dropdown-item:hover, .bootstrap-legacy .dropdown-item:focus {
  color: #7367f0;
  text-decoration: none;
  background-color: rgba(115, 103, 240, 0.12);
}

.bootstrap-legacy .dropdown-item.active, .bootstrap-legacy .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #7367f0;
}

.bootstrap-legacy .dropdown-item.disabled, .bootstrap-legacy .dropdown-item:disabled {
  color: #b9b9c3;
  pointer-events: none;
  background-color: transparent;
}

.bootstrap-legacy .dropdown-menu.show {
  display: block;
}

.bootstrap-legacy .dropdown-header {
  display: block;
  padding: 0.5rem 1.28rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #5e5873;
  white-space: nowrap;
}

.bootstrap-legacy .dropdown-item-text {
  display: block;
  padding: 0.65rem 1.28rem;
  color: #6e6b7b;
}

.bootstrap-legacy .btn-group, .bootstrap-legacy .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.bootstrap-legacy .btn-group>.btn, .bootstrap-legacy .btn-group-vertical>.btn {
  position: relative;
  flex: 1 1 auto;
}

.bootstrap-legacy .btn-group>.btn:hover, .bootstrap-legacy .btn-group-vertical>.btn:hover {
  z-index: 1;
}

.bootstrap-legacy .btn-group>.btn:focus, .bootstrap-legacy .btn-group>.btn:active, .bootstrap-legacy .btn-group>.btn.active, .bootstrap-legacy .btn-group-vertical>.btn:focus, .bootstrap-legacy .btn-group-vertical>.btn:active, .bootstrap-legacy .btn-group-vertical>.btn.active {
  z-index: 1;
}

.bootstrap-legacy .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.bootstrap-legacy .btn-toolbar .input-group {
  width: auto;
}

.bootstrap-legacy .btn-group>.btn:not(:first-child), .bootstrap-legacy .btn-group>.btn-group:not(:first-child) {
  margin-left: -1px;
}

.bootstrap-legacy .btn-group>.btn:not(:last-child):not(.dropdown-toggle), .bootstrap-legacy .btn-group>.btn-group:not(:last-child)>.btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-legacy .btn-group>.btn:not(:first-child), .bootstrap-legacy .btn-group>.btn-group:not(:first-child)>.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.bootstrap-legacy .dropdown-toggle-split::after, .bootstrap-legacy .dropup .dropdown-toggle-split::after, .bootstrap-legacy .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.bootstrap-legacy .dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.bootstrap-legacy .btn-sm+.dropdown-toggle-split, .bootstrap-legacy .btn-group-sm>.btn+.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.bootstrap-legacy .btn-lg+.dropdown-toggle-split, .bootstrap-legacy .btn-group-lg>.btn+.dropdown-toggle-split {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.bootstrap-legacy .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bootstrap-legacy .btn-group-vertical>.btn, .bootstrap-legacy .btn-group-vertical>.btn-group {
  width: 100%;
}

.bootstrap-legacy .btn-group-vertical>.btn:not(:first-child), .bootstrap-legacy .btn-group-vertical>.btn-group:not(:first-child) {
  margin-top: -1px;
}

.bootstrap-legacy .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle), .bootstrap-legacy .btn-group-vertical>.btn-group:not(:last-child)>.btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .btn-group-vertical>.btn:not(:first-child), .bootstrap-legacy .btn-group-vertical>.btn-group:not(:first-child)>.btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-legacy .btn-group-toggle>.btn, .bootstrap-legacy .btn-group-toggle>.btn-group>.btn {
  margin-bottom: 0;
}

.bootstrap-legacy .btn-group-toggle>.btn input[type="radio"], .bootstrap-legacy .btn-group-toggle>.btn input[type="checkbox"], .bootstrap-legacy .btn-group-toggle>.btn-group>.btn input[type="radio"], .bootstrap-legacy .btn-group-toggle>.btn-group>.btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.bootstrap-legacy .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.bootstrap-legacy .input-group>.form-control, .bootstrap-legacy .input-group>.form-control-plaintext, .bootstrap-legacy .input-group>.custom-select, .bootstrap-legacy .input-group>.custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.bootstrap-legacy .input-group>.form-control+.form-control, .bootstrap-legacy .input-group>.form-control+.custom-select, .bootstrap-legacy .input-group>.form-control+.custom-file, .bootstrap-legacy .input-group>.form-control-plaintext+.form-control, .bootstrap-legacy .input-group>.form-control-plaintext+.custom-select, .bootstrap-legacy .input-group>.form-control-plaintext+.custom-file, .bootstrap-legacy .input-group>.custom-select+.form-control, .bootstrap-legacy .input-group>.custom-select+.custom-select, .bootstrap-legacy .input-group>.custom-select+.custom-file, .bootstrap-legacy .input-group>.custom-file+.form-control, .bootstrap-legacy .input-group>.custom-file+.custom-select, .bootstrap-legacy .input-group>.custom-file+.custom-file {
  margin-left: -1px;
}

.bootstrap-legacy .input-group>.form-control:focus, .bootstrap-legacy .input-group>.custom-select:focus, .bootstrap-legacy .input-group>.custom-file .custom-file-input:focus~.custom-file-label {
  z-index: 3;
}

.bootstrap-legacy .input-group>.custom-file .custom-file-input:focus {
  z-index: 4;
}

.bootstrap-legacy .input-group>.form-control:not(:first-child), .bootstrap-legacy .input-group>.custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .input-group>.custom-file {
  display: flex;
  align-items: center;
}

.bootstrap-legacy .input-group>.custom-file:not(:last-child) .custom-file-label, .bootstrap-legacy .input-group>.custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .input-group:not(.has-validation)>.form-control:not(:last-child), .bootstrap-legacy .input-group:not(.has-validation)>.custom-select:not(:last-child), .bootstrap-legacy .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-legacy .input-group.has-validation>.form-control:nth-last-child(n + 3), .bootstrap-legacy .input-group.has-validation>.custom-select:nth-last-child(n + 3), .bootstrap-legacy .input-group.has-validation>.custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-legacy .input-group-prepend, .bootstrap-legacy .input-group-append {
  display: flex;
}

.bootstrap-legacy .input-group-prepend .btn, .bootstrap-legacy .input-group-append .btn {
  position: relative;
  z-index: 2;
}

.bootstrap-legacy .input-group-prepend .btn:focus, .bootstrap-legacy .input-group-append .btn:focus {
  z-index: 3;
}

.bootstrap-legacy .input-group-prepend .btn+.btn, .bootstrap-legacy .input-group-prepend .btn+.input-group-text, .bootstrap-legacy .input-group-prepend .input-group-text+.input-group-text, .bootstrap-legacy .input-group-prepend .input-group-text+.btn, .bootstrap-legacy .input-group-append .btn+.btn, .bootstrap-legacy .input-group-append .btn+.input-group-text, .bootstrap-legacy .input-group-append .input-group-text+.input-group-text, .bootstrap-legacy .input-group-append .input-group-text+.btn {
  margin-left: -1px;
}

.bootstrap-legacy .input-group-prepend {
  margin-right: -1px;
}

.bootstrap-legacy .input-group-append {
  margin-left: -1px;
}

.bootstrap-legacy .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.438rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #6e6b7b;
  text-align: center;
  white-space: nowrap;
  background-color: white;
  border: 1px solid #d8d6de;
  border-radius: 0.357rem;
}

.bootstrap-legacy .input-group-text input[type="radio"], .bootstrap-legacy .input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.bootstrap-legacy .input-group-lg>.form-control:not(textarea), .bootstrap-legacy .input-group-lg>.custom-select {
  height: 3.2857rem;
}

.bootstrap-legacy .input-group-lg>.form-control, .bootstrap-legacy .input-group-lg>.custom-select, .bootstrap-legacy .input-group-lg>.input-group-prepend>.input-group-text, .bootstrap-legacy .input-group-lg>.input-group-append>.input-group-text, .bootstrap-legacy .input-group-lg>.input-group-prepend>.btn, .bootstrap-legacy .input-group-lg>.input-group-append>.btn {
  padding: 0.75rem 1.143rem;
  font-size: 1.143rem;
  line-height: 1.25;
  border-radius: 0.357rem;
}

.bootstrap-legacy .input-group-sm>.form-control:not(textarea), .bootstrap-legacy .input-group-sm>.custom-select {
  height: 2.142rem;
}

.bootstrap-legacy .input-group-sm>.form-control, .bootstrap-legacy .input-group-sm>.custom-select, .bootstrap-legacy .input-group-sm>.input-group-prepend>.input-group-text, .bootstrap-legacy .input-group-sm>.input-group-append>.input-group-text, .bootstrap-legacy .input-group-sm>.input-group-prepend>.btn, .bootstrap-legacy .input-group-sm>.input-group-append>.btn {
  padding: 0.188rem 0.857rem;
  font-size: 0.857rem;
  line-height: 1;
  border-radius: 0.357rem;
}

.bootstrap-legacy .input-group-lg>.custom-select, .bootstrap-legacy .input-group-sm>.custom-select {
  padding-right: 2rem;
}

.bootstrap-legacy .input-group>.input-group-prepend>.btn, .bootstrap-legacy .input-group>.input-group-prepend>.input-group-text, .bootstrap-legacy .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn, .bootstrap-legacy .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text, .bootstrap-legacy .input-group.has-validation>.input-group-append:nth-last-child(n + 3)>.btn, .bootstrap-legacy .input-group.has-validation>.input-group-append:nth-last-child(n + 3)>.input-group-text, .bootstrap-legacy .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .bootstrap-legacy .input-group>.input-group-append:last-child>.input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-legacy .input-group>.input-group-append>.btn, .bootstrap-legacy .input-group>.input-group-append>.input-group-text, .bootstrap-legacy .input-group>.input-group-prepend:not(:first-child)>.btn, .bootstrap-legacy .input-group>.input-group-prepend:not(:first-child)>.input-group-text, .bootstrap-legacy .input-group>.input-group-prepend:first-child>.btn:not(:first-child), .bootstrap-legacy .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.45rem;
  padding-left: 1.5rem;
  color-adjust: exact;
}

.bootstrap-legacy .custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.bootstrap-legacy .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.225rem;
  opacity: 0;
}

.bootstrap-legacy .custom-control-input:checked~.custom-control-label::before {
  /* color: #fff;
  border-color: #7367f0;
  background-color: #7367f0; */
}

.bootstrap-legacy .custom-control-input:focus~.custom-control-label::before {
  box-shadow: 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .custom-control-input:focus:not(:checked)~.custom-control-label::before {
  border-color: #7367f0;
}

.bootstrap-legacy .custom-control-input:not(:disabled):active~.custom-control-label::before {
  color: #fff;
  background-color: white;
  border-color: white;
}

.bootstrap-legacy .custom-control-input[disabled]~.custom-control-label, .bootstrap-legacy .custom-control-input:disabled~.custom-control-label {
  color: #b8c2cc;
}

.bootstrap-legacy .custom-control-input[disabled]~.custom-control-label::before, .bootstrap-legacy .custom-control-input:disabled~.custom-control-label::before {
  background-color: #efefef;
}

.bootstrap-legacy .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.bootstrap-legacy .custom-control-label::before {
  position: absolute;
  top: 0.225rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #d8d6de solid 1px;
}

.bootstrap-legacy .custom-control-label::after {
  position: absolute;
  top: 0.225rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.bootstrap-legacy .custom-checkbox .custom-control-label::before {
  border-radius: 3px;
}

.bootstrap-legacy .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.5 7.5'%3E%3Cpolyline points='0.75 4.35 4.18 6.75 8.75 0.75' style='fill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px'/%3E%3C/svg%3E");
}

/* .bootstrap-legacy .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.5 7.5'%3E%3Cpolyline points='0.75 4.35 4.18 6.75 8.75 0.75' style='fill:none;stroke:%23000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px'/%3E%3C/svg%3E");
} */

.bootstrap-legacy .custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
  border-color: #7367f0;
  background-color: #7367f0;
}

.bootstrap-legacy .custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-minus'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.bootstrap-legacy .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(115, 103, 240, 0.65);
}

.bootstrap-legacy .custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
  background-color: rgba(115, 103, 240, 0.65);
}

.bootstrap-legacy .custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.bootstrap-legacy .custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: none;
}

.bootstrap-legacy .custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(115, 103, 240, 0.65);
}

.bootstrap-legacy .custom-switch {
  padding-left: 3.5rem;
}

.bootstrap-legacy .custom-switch .custom-control-label::before {
  left: -3.5rem;
  width: 3rem;
  pointer-events: all;
  border-radius: 1rem;
}

.bootstrap-legacy .custom-switch .custom-control-label::after {
  top: calc(0.225rem + 2px);
  left: calc(-3.5rem + 2px);
  width: 1rem;
  height: 1rem;
  background-color: #d8d6de;
  border-radius: 1rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.bootstrap-legacy .custom-switch .custom-control-input:checked~.custom-control-label::after {
  background-color: #fff;
  transform: translateX(2rem);
}

.bootstrap-legacy .custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(115, 103, 240, 0.65);
}

.bootstrap-legacy .custom-select {
  display: inline-block;
  width: 100%;
  height: 2.714rem;
  padding: 0.438rem 2rem 0.438rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #6e6b7b;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23d8d6de' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1rem center/10px 10px no-repeat;
  border: 1px solid #d8d6de;
  border-radius: 0.357rem;
  appearance: none;
}

.bootstrap-legacy .custom-select:focus {
  /* border-color: #7367f0; */
  outline: 0;
  box-shadow: 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .custom-select:focus::-ms-value {
  color: #6e6b7b;
  background-color: #fff;
}

.bootstrap-legacy .custom-select[multiple], .bootstrap-legacy .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 1rem;
  background-image: none;
}

.bootstrap-legacy .custom-select:disabled {
  color: #b8c2cc;
  background-color: #efefef;
}

.bootstrap-legacy .custom-select::-ms-expand {
  display: none;
}

.bootstrap-legacy .custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #6e6b7b;
}

.bootstrap-legacy .custom-select-sm {
  height: 2.142rem;
  padding-top: 0.188rem;
  padding-bottom: 0.188rem;
  padding-left: 0.857rem;
  font-size: 0.857rem;
}

.bootstrap-legacy .custom-select-lg {
  height: 3.2857rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.143rem;
  font-size: 1.143rem;
}

.bootstrap-legacy .custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 2.714rem;
  margin-bottom: 0;
}

.bootstrap-legacy .custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 2.714rem;
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.bootstrap-legacy .custom-file-input:focus~.custom-file-label {
  border-color: #7367f0;
  box-shadow: 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .custom-file-input[disabled]~.custom-file-label, .bootstrap-legacy .custom-file-input:disabled~.custom-file-label {
  background-color: #efefef;
}

.bootstrap-legacy .custom-file-input:lang(en)~.custom-file-label::after {
  content: "Browse";
}

.bootstrap-legacy .custom-file-input~.custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.bootstrap-legacy .custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 2.714rem;
  padding: 0.438rem 1rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.45;
  color: #6e6b7b;
  background-color: #fff;
  border: 1px solid #d8d6de;
  border-radius: 0.357rem;
}

.bootstrap-legacy .custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.714rem;
  padding: 0.438rem 1rem;
  line-height: 1.45;
  color: #6e6b7b;
  content: "Browse";
  background-color: white;
  border-left: inherit;
  border-radius: 0 0.357rem 0.357rem 0;
}

.bootstrap-legacy .custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}

.bootstrap-legacy .custom-range:focus {
  outline: 0;
}

.bootstrap-legacy .custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f8f8f8, 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f8f8f8, 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #f8f8f8, 0 3px 10px 0 rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .custom-range::-moz-focus-outer {
  border: 0;
}

.bootstrap-legacy .custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #7367f0;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

.bootstrap-legacy .custom-range::-webkit-slider-thumb:active {
  background-color: white;
}

.bootstrap-legacy .custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dae1e7;
  border-color: transparent;
  border-radius: 1rem;
}

.bootstrap-legacy .custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #7367f0;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .custom-range::-moz-range-thumb {
    transition: none;
  }
}

.bootstrap-legacy .custom-range::-moz-range-thumb:active {
  background-color: white;
}

.bootstrap-legacy .custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dae1e7;
  border-color: transparent;
  border-radius: 1rem;
}

.bootstrap-legacy .custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #7367f0;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .custom-range::-ms-thumb {
    transition: none;
  }
}

.bootstrap-legacy .custom-range::-ms-thumb:active {
  background-color: white;
}

.bootstrap-legacy .custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.bootstrap-legacy .custom-range::-ms-fill-lower {
  background-color: #dae1e7;
  border-radius: 1rem;
}

.bootstrap-legacy .custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dae1e7;
  border-radius: 1rem;
}

.bootstrap-legacy .custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.bootstrap-legacy .custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.bootstrap-legacy .custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.bootstrap-legacy .custom-range:disabled::-moz-range-track {
  cursor: default;
}

.bootstrap-legacy .custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.bootstrap-legacy .custom-control-label::before, .bootstrap-legacy .custom-file-label, .bootstrap-legacy .custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s;
}

@media (prefers-reduced-motion: reduce) {

  .bootstrap-legacy .custom-control-label::before, .bootstrap-legacy .custom-file-label, .bootstrap-legacy .custom-select {
    transition: none;
  }
}

.bootstrap-legacy .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bootstrap-legacy .nav-link {
  display: block;
  padding: 0.358rem 0.5rem;
}

.bootstrap-legacy .nav-link:hover, .bootstrap-legacy .nav-link:focus {
  text-decoration: none;
}

.bootstrap-legacy .nav-link.disabled {
  color: #b9b9c3;
  pointer-events: none;
  cursor: default;
}

.bootstrap-legacy .nav-tabs {
  border-bottom: 0 solid #dae1e7;
}

.bootstrap-legacy .nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0 solid transparent;
  border-top-left-radius: 0.25;
  border-top-right-radius: 0.25;
}

.bootstrap-legacy .nav-tabs .nav-link:hover, .bootstrap-legacy .nav-tabs .nav-link:focus {
  border-color: #ededed #ededed #dae1e7;
}

.bootstrap-legacy .nav-tabs .nav-link.disabled {
  color: #b9b9c3;
  background-color: transparent;
  border-color: transparent;
}

.bootstrap-legacy .nav-tabs .nav-link.active, .bootstrap-legacy .nav-tabs .nav-item.show .nav-link {
  color: #7367f0;
  background-color: transparent;
  border-color: #dae1e7 #dae1e7 transparent;
}

.bootstrap-legacy .nav-tabs .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-legacy .nav-pills .nav-link {
  border-radius: 0.358rem;
}

.bootstrap-legacy .nav-pills .nav-link.active, .bootstrap-legacy .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #7367f0;
}

.bootstrap-legacy .nav-fill>.nav-link, .bootstrap-legacy .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.bootstrap-legacy .nav-justified>.nav-link, .bootstrap-legacy .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.bootstrap-legacy .tab-content>.tab-pane {
  display: none;
}

.bootstrap-legacy .tab-content>.active {
  display: block;
}

.bootstrap-legacy .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.bootstrap-legacy .navbar .container, .bootstrap-legacy .navbar .container-fluid, .bootstrap-legacy .navbar .container-xs, .bootstrap-legacy .navbar .container-sm, .bootstrap-legacy .navbar .container-md, .bootstrap-legacy .navbar .container-lg, .bootstrap-legacy .navbar .container-xl, .bootstrap-legacy .navbar .container-xxl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bootstrap-legacy .navbar-brand {
  display: inline-block;
  padding-top: -0.367rem;
  padding-bottom: -0.367rem;
  margin-right: 1rem;
  font-size: 2rem;
  line-height: inherit;
  white-space: nowrap;
}

.bootstrap-legacy .navbar-brand:hover, .bootstrap-legacy .navbar-brand:focus {
  text-decoration: none;
}

.bootstrap-legacy .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bootstrap-legacy .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-legacy .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.bootstrap-legacy .navbar-text {
  display: inline-block;
  padding-top: 0.358rem;
  padding-bottom: 0.358rem;
}

.bootstrap-legacy .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.bootstrap-legacy .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 2rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.358rem;
}

.bootstrap-legacy .navbar-toggler:hover, .bootstrap-legacy .navbar-toggler:focus {
  text-decoration: none;
}

.bootstrap-legacy .navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

.bootstrap-legacy .navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {

  .bootstrap-legacy .navbar-expand-sm>.container, .bootstrap-legacy .navbar-expand-sm>.container-fluid, .bootstrap-legacy .navbar-expand-sm>.container-xs, .bootstrap-legacy .navbar-expand-sm>.container-sm, .bootstrap-legacy .navbar-expand-sm>.container-md, .bootstrap-legacy .navbar-expand-sm>.container-lg, .bootstrap-legacy .navbar-expand-sm>.container-xl, .bootstrap-legacy .navbar-expand-sm>.container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .bootstrap-legacy .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .bootstrap-legacy .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .bootstrap-legacy .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .bootstrap-legacy .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .bootstrap-legacy .navbar-expand-sm>.container, .bootstrap-legacy .navbar-expand-sm>.container-fluid, .bootstrap-legacy .navbar-expand-sm>.container-xs, .bootstrap-legacy .navbar-expand-sm>.container-sm, .bootstrap-legacy .navbar-expand-sm>.container-md, .bootstrap-legacy .navbar-expand-sm>.container-lg, .bootstrap-legacy .navbar-expand-sm>.container-xl, .bootstrap-legacy .navbar-expand-sm>.container-xxl {
    flex-wrap: nowrap;
  }

  .bootstrap-legacy .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .bootstrap-legacy .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .bootstrap-legacy .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {

  .bootstrap-legacy .navbar-expand-md>.container, .bootstrap-legacy .navbar-expand-md>.container-fluid, .bootstrap-legacy .navbar-expand-md>.container-xs, .bootstrap-legacy .navbar-expand-md>.container-sm, .bootstrap-legacy .navbar-expand-md>.container-md, .bootstrap-legacy .navbar-expand-md>.container-lg, .bootstrap-legacy .navbar-expand-md>.container-xl, .bootstrap-legacy .navbar-expand-md>.container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .bootstrap-legacy .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .bootstrap-legacy .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .bootstrap-legacy .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .bootstrap-legacy .navbar-expand-md>.container, .bootstrap-legacy .navbar-expand-md>.container-fluid, .bootstrap-legacy .navbar-expand-md>.container-xs, .bootstrap-legacy .navbar-expand-md>.container-sm, .bootstrap-legacy .navbar-expand-md>.container-md, .bootstrap-legacy .navbar-expand-md>.container-lg, .bootstrap-legacy .navbar-expand-md>.container-xl, .bootstrap-legacy .navbar-expand-md>.container-xxl {
    flex-wrap: nowrap;
  }

  .bootstrap-legacy .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .bootstrap-legacy .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .bootstrap-legacy .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {

  .bootstrap-legacy .navbar-expand-lg>.container, .bootstrap-legacy .navbar-expand-lg>.container-fluid, .bootstrap-legacy .navbar-expand-lg>.container-xs, .bootstrap-legacy .navbar-expand-lg>.container-sm, .bootstrap-legacy .navbar-expand-lg>.container-md, .bootstrap-legacy .navbar-expand-lg>.container-lg, .bootstrap-legacy .navbar-expand-lg>.container-xl, .bootstrap-legacy .navbar-expand-lg>.container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .bootstrap-legacy .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .bootstrap-legacy .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .bootstrap-legacy .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .bootstrap-legacy .navbar-expand-lg>.container, .bootstrap-legacy .navbar-expand-lg>.container-fluid, .bootstrap-legacy .navbar-expand-lg>.container-xs, .bootstrap-legacy .navbar-expand-lg>.container-sm, .bootstrap-legacy .navbar-expand-lg>.container-md, .bootstrap-legacy .navbar-expand-lg>.container-lg, .bootstrap-legacy .navbar-expand-lg>.container-xl, .bootstrap-legacy .navbar-expand-lg>.container-xxl {
    flex-wrap: nowrap;
  }

  .bootstrap-legacy .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .bootstrap-legacy .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .bootstrap-legacy .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {

  .bootstrap-legacy .navbar-expand-xl>.container, .bootstrap-legacy .navbar-expand-xl>.container-fluid, .bootstrap-legacy .navbar-expand-xl>.container-xs, .bootstrap-legacy .navbar-expand-xl>.container-sm, .bootstrap-legacy .navbar-expand-xl>.container-md, .bootstrap-legacy .navbar-expand-xl>.container-lg, .bootstrap-legacy .navbar-expand-xl>.container-xl, .bootstrap-legacy .navbar-expand-xl>.container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .bootstrap-legacy .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .bootstrap-legacy .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .bootstrap-legacy .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .bootstrap-legacy .navbar-expand-xl>.container, .bootstrap-legacy .navbar-expand-xl>.container-fluid, .bootstrap-legacy .navbar-expand-xl>.container-xs, .bootstrap-legacy .navbar-expand-xl>.container-sm, .bootstrap-legacy .navbar-expand-xl>.container-md, .bootstrap-legacy .navbar-expand-xl>.container-lg, .bootstrap-legacy .navbar-expand-xl>.container-xl, .bootstrap-legacy .navbar-expand-xl>.container-xxl {
    flex-wrap: nowrap;
  }

  .bootstrap-legacy .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .bootstrap-legacy .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .bootstrap-legacy .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1439.98px) {

  .bootstrap-legacy .navbar-expand-xxl>.container, .bootstrap-legacy .navbar-expand-xxl>.container-fluid, .bootstrap-legacy .navbar-expand-xxl>.container-xs, .bootstrap-legacy .navbar-expand-xxl>.container-sm, .bootstrap-legacy .navbar-expand-xxl>.container-md, .bootstrap-legacy .navbar-expand-xxl>.container-lg, .bootstrap-legacy .navbar-expand-xxl>.container-xl, .bootstrap-legacy .navbar-expand-xxl>.container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .bootstrap-legacy .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }

  .bootstrap-legacy .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .bootstrap-legacy .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .bootstrap-legacy .navbar-expand-xxl>.container, .bootstrap-legacy .navbar-expand-xxl>.container-fluid, .bootstrap-legacy .navbar-expand-xxl>.container-xs, .bootstrap-legacy .navbar-expand-xxl>.container-sm, .bootstrap-legacy .navbar-expand-xxl>.container-md, .bootstrap-legacy .navbar-expand-xxl>.container-lg, .bootstrap-legacy .navbar-expand-xxl>.container-xl, .bootstrap-legacy .navbar-expand-xxl>.container-xxl {
    flex-wrap: nowrap;
  }

  .bootstrap-legacy .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }

  .bootstrap-legacy .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .bootstrap-legacy .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

.bootstrap-legacy .navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.bootstrap-legacy .navbar-expand>.container, .bootstrap-legacy .navbar-expand>.container-fluid, .bootstrap-legacy .navbar-expand>.container-xs, .bootstrap-legacy .navbar-expand>.container-sm, .bootstrap-legacy .navbar-expand>.container-md, .bootstrap-legacy .navbar-expand>.container-lg, .bootstrap-legacy .navbar-expand>.container-xl, .bootstrap-legacy .navbar-expand>.container-xxl {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-legacy .navbar-expand .navbar-nav {
  flex-direction: row;
}

.bootstrap-legacy .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.bootstrap-legacy .navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.bootstrap-legacy .navbar-expand>.container, .bootstrap-legacy .navbar-expand>.container-fluid, .bootstrap-legacy .navbar-expand>.container-xs, .bootstrap-legacy .navbar-expand>.container-sm, .bootstrap-legacy .navbar-expand>.container-md, .bootstrap-legacy .navbar-expand>.container-lg, .bootstrap-legacy .navbar-expand>.container-xl, .bootstrap-legacy .navbar-expand>.container-xxl {
  flex-wrap: nowrap;
}

.bootstrap-legacy .navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.bootstrap-legacy .navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.bootstrap-legacy .navbar-expand .navbar-toggler {
  display: none;
}

.bootstrap-legacy .navbar-light .navbar-brand {
  color: rgba(34, 41, 47, 0.9);
}

.bootstrap-legacy .navbar-light .navbar-brand:hover, .bootstrap-legacy .navbar-light .navbar-brand:focus {
  color: rgba(34, 41, 47, 0.9);
}

.bootstrap-legacy .navbar-light .navbar-nav .nav-link {
  color: rgba(34, 41, 47, 0.5);
}

.bootstrap-legacy .navbar-light .navbar-nav .nav-link:hover, .bootstrap-legacy .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(34, 41, 47, 0.7);
}

.bootstrap-legacy .navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(34, 41, 47, 0.3);
}

.bootstrap-legacy .navbar-light .navbar-nav .show>.nav-link, .bootstrap-legacy .navbar-light .navbar-nav .active>.nav-link, .bootstrap-legacy .navbar-light .navbar-nav .nav-link.show, .bootstrap-legacy .navbar-light .navbar-nav .nav-link.active {
  color: rgba(34, 41, 47, 0.9);
}

.bootstrap-legacy .navbar-light .navbar-toggler {
  color: rgba(34, 41, 47, 0.5);
  border-color: rgba(34, 41, 47, 0.1);
}

.bootstrap-legacy .navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2834, 41, 47, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bootstrap-legacy .navbar-light .navbar-text {
  color: rgba(34, 41, 47, 0.5);
}

.bootstrap-legacy .navbar-light .navbar-text a {
  color: rgba(34, 41, 47, 0.9);
}

.bootstrap-legacy .navbar-light .navbar-text a:hover, .bootstrap-legacy .navbar-light .navbar-text a:focus {
  color: rgba(34, 41, 47, 0.9);
}

.bootstrap-legacy .navbar-dark .navbar-brand {
  color: #fff;
}

.bootstrap-legacy .navbar-dark .navbar-brand:hover, .bootstrap-legacy .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.bootstrap-legacy .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.bootstrap-legacy .navbar-dark .navbar-nav .nav-link:hover, .bootstrap-legacy .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.bootstrap-legacy .navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.bootstrap-legacy .navbar-dark .navbar-nav .show>.nav-link, .bootstrap-legacy .navbar-dark .navbar-nav .active>.nav-link, .bootstrap-legacy .navbar-dark .navbar-nav .nav-link.show, .bootstrap-legacy .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.bootstrap-legacy .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.bootstrap-legacy .navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bootstrap-legacy .navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.bootstrap-legacy .navbar-dark .navbar-text a {
  color: #fff;
}

.bootstrap-legacy .navbar-dark .navbar-text a:hover, .bootstrap-legacy .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.bootstrap-legacy .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(34, 41, 47, 0.125);
  border-radius: 0.428rem;
}

.bootstrap-legacy .card>hr {
  margin-right: 0;
  margin-left: 0;
}

.bootstrap-legacy .card>.list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.bootstrap-legacy .card>.list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.428rem - 1px);
  border-top-right-radius: calc(0.428rem - 1px);
}

.bootstrap-legacy .card>.list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.428rem - 1px);
  border-bottom-left-radius: calc(0.428rem - 1px);
}

.bootstrap-legacy .card>.card-header+.list-group, .bootstrap-legacy .card>.list-group+.card-footer {
  border-top: 0;
}

.bootstrap-legacy .card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.5rem;
}

.bootstrap-legacy .card-title {
  margin-bottom: 1.5rem;
}

.bootstrap-legacy .card-subtitle {
  margin-top: -0.75rem;
  margin-bottom: 0;
}

.bootstrap-legacy .card-text:last-child {
  margin-bottom: 0;
}

.bootstrap-legacy .card-link:hover {
  text-decoration: none;
}

.bootstrap-legacy .card-link+.card-link {
  margin-left: 1.5rem;
}

.bootstrap-legacy .card-header {
  padding: 1.5rem 1.5rem;
  margin-bottom: 0;
  background-color: rgba(34, 41, 47, 0.03);
  border-bottom: 1px solid rgba(34, 41, 47, 0.125);
}

.bootstrap-legacy .card-header:first-child {
  border-radius: calc(0.428rem - 1px) calc(0.428rem - 1px) 0 0;
}

.bootstrap-legacy .card-footer {
  padding: 1.5rem 1.5rem;
  background-color: rgba(34, 41, 47, 0.03);
  border-top: 1px solid rgba(34, 41, 47, 0.125);
}

.bootstrap-legacy .card-footer:last-child {
  border-radius: 0 0 calc(0.428rem - 1px) calc(0.428rem - 1px);
}

.bootstrap-legacy .card-header-tabs {
  margin-right: -0.75rem;
  margin-bottom: -1.5rem;
  margin-left: -0.75rem;
  border-bottom: 0;
}

.bootstrap-legacy .card-header-pills {
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.bootstrap-legacy .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.428rem - 1px);
}

.bootstrap-legacy .card-img, .bootstrap-legacy .card-img-top, .bootstrap-legacy .card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.bootstrap-legacy .card-img, .bootstrap-legacy .card-img-top {
  border-top-left-radius: calc(0.428rem - 1px);
  border-top-right-radius: calc(0.428rem - 1px);
}

.bootstrap-legacy .card-img, .bootstrap-legacy .card-img-bottom {
  border-bottom-right-radius: calc(0.428rem - 1px);
  border-bottom-left-radius: calc(0.428rem - 1px);
}

.bootstrap-legacy .card-deck .card {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .bootstrap-legacy .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .bootstrap-legacy .card-deck .card {
    flex: 1 0 0%;
    margin-right: 1rem;
    margin-bottom: 0;
    margin-left: 1rem;
  }
}

.bootstrap-legacy .card-group>.card {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .bootstrap-legacy .card-group {
    display: flex;
    flex-flow: row wrap;
  }

  .bootstrap-legacy .card-group>.card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .bootstrap-legacy .card-group>.card+.card {
    margin-left: 0;
    border-left: 0;
  }

  .bootstrap-legacy .card-group>.card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .bootstrap-legacy .card-group>.card:not(:last-child) .card-img-top, .bootstrap-legacy .card-group>.card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .bootstrap-legacy .card-group>.card:not(:last-child) .card-img-bottom, .bootstrap-legacy .card-group>.card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .bootstrap-legacy .card-group>.card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .bootstrap-legacy .card-group>.card:not(:first-child) .card-img-top, .bootstrap-legacy .card-group>.card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .bootstrap-legacy .card-group>.card:not(:first-child) .card-img-bottom, .bootstrap-legacy .card-group>.card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.bootstrap-legacy .card-columns .card {
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .bootstrap-legacy .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .bootstrap-legacy .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.bootstrap-legacy .accordion {
  overflow-anchor: none;
}

.bootstrap-legacy .accordion>.card {
  overflow: hidden;
}

.bootstrap-legacy .accordion>.card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .accordion>.card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-legacy .accordion>.card>.card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.bootstrap-legacy .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.bootstrap-legacy .breadcrumb-item+.breadcrumb-item {
  padding-left: 0.6rem;
}

.bootstrap-legacy .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.6rem;
  color: #6e6b7b;
  content: "/";
}

.bootstrap-legacy .breadcrumb-item+.breadcrumb-item:hover::before {
  text-decoration: underline;
}

.bootstrap-legacy .breadcrumb-item+.breadcrumb-item:hover::before {
  text-decoration: none;
}

.bootstrap-legacy .breadcrumb-item.active {
  color: #6e6b7b;
}

.bootstrap-legacy .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.357rem;
}

.bootstrap-legacy .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.85rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #6e6b7b;
  background-color: #f3f2f7;
  border: 1px solid #dae1e7;
}

.bootstrap-legacy .page-link:hover {
  z-index: 2;
  color: #7367f0;
  text-decoration: none;
  background-color: #f3f2f7;
  border-color: #dae1e7;
}

.bootstrap-legacy .page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25);
}

.bootstrap-legacy .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.357rem;
  border-bottom-left-radius: 0.357rem;
}

.bootstrap-legacy .page-item:last-child .page-link {
  border-top-right-radius: 0.357rem;
  border-bottom-right-radius: 0.357rem;
}

.bootstrap-legacy .page-item.active .page-link {
  z-index: 3;
  color: #7367f0;
  background-color: #7367f0;
  border-color: #7367f0;
}

.bootstrap-legacy .page-item.disabled .page-link {
  color: #b9b9c3;
  pointer-events: none;
  cursor: auto;
  background-color: #f3f2f7;
  border-color: #dae1e7;
}

.bootstrap-legacy .pagination-lg .page-link {
  padding: 0.5575rem 1rem;
  font-size: 2rem;
  line-height: 1.25;
}

.bootstrap-legacy .pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}

.bootstrap-legacy .pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}

.bootstrap-legacy .pagination-sm .page-link {
  padding: 0.443rem 0.745rem;
  font-size: 1rem;
  line-height: 1;
}

.bootstrap-legacy .pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.bootstrap-legacy .pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.bootstrap-legacy .badge {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  font-size: 85%;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.358rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border 0s;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .badge {
    transition: none;
  }
}

.bootstrap-legacy a.badge:hover, .bootstrap-legacy a.badge:focus {
  text-decoration: none;
}

.bootstrap-legacy .badge:empty {
  display: none;
}

.bootstrap-legacy .btn .badge {
  position: relative;
  top: -1px;
}

.bootstrap-legacy .badge-pill {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  border-radius: 10rem;
}

.bootstrap-legacy .badge-primary {
  color: #fff;
  background-color: #7367f0;
}

.bootstrap-legacy a.badge-primary:hover, .bootstrap-legacy a.badge-primary:focus {
  color: #fff;
  background-color: #4839eb;
}

.bootstrap-legacy a.badge-primary:focus, .bootstrap-legacy a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5);
}

.bootstrap-legacy .badge-secondary {
  color: #fff;
  background-color: #82868b;
}

.bootstrap-legacy a.badge-secondary:hover, .bootstrap-legacy a.badge-secondary:focus {
  color: #fff;
  background-color: #696d71;
}

.bootstrap-legacy a.badge-secondary:focus, .bootstrap-legacy a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(130, 134, 139, 0.5);
}

.bootstrap-legacy .badge-success {
  color: #fff;
  background-color: #28c76f;
}

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

.bootstrap-legacy a.badge-success:focus, .bootstrap-legacy a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5);
}

.bootstrap-legacy .badge-info {
  color: #fff;
  background-color: #00cfe8;
}

.bootstrap-legacy a.badge-info:hover, .bootstrap-legacy a.badge-info:focus {
  color: #fff;
  background-color: #00a1b5;
}

.bootstrap-legacy a.badge-info:focus, .bootstrap-legacy a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
}

.bootstrap-legacy .badge-warning {
  color: #2a2e30;
  background-color: #ff9f43;
}

.bootstrap-legacy a.badge-warning:hover, .bootstrap-legacy a.badge-warning:focus {
  color: #2a2e30;
  background-color: #ff8510;
}

.bootstrap-legacy a.badge-warning:focus, .bootstrap-legacy a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5);
}

.bootstrap-legacy .badge-danger {
  color: #fff;
  background-color: #ea5455;
}

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

.bootstrap-legacy a.badge-danger:focus, .bootstrap-legacy a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5);
}

.bootstrap-legacy .badge-light {
  color: #2a2e30;
  background-color: #f6f6f6;
}

.bootstrap-legacy a.badge-light:hover, .bootstrap-legacy a.badge-light:focus {
  color: #2a2e30;
  background-color: #dddddd;
}

.bootstrap-legacy a.badge-light:focus, .bootstrap-legacy a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(246, 246, 246, 0.5);
}

.bootstrap-legacy .badge-dark {
  color: #fff;
  background-color: #4b4b4b;
}

.bootstrap-legacy a.badge-dark:hover, .bootstrap-legacy a.badge-dark:focus {
  color: #fff;
  background-color: #323232;
}

.bootstrap-legacy a.badge-dark:focus, .bootstrap-legacy a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(75, 75, 75, 0.5);
}

.bootstrap-legacy .jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #ededed;
  border-radius: 0.6rem;
}

@media (min-width: 576px) {
  .bootstrap-legacy .jumbotron {
    padding: 4rem 2rem;
  }
}

.bootstrap-legacy .jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.bootstrap-legacy .alert {
  position: relative;
  padding: 0.71rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.358rem;
}

.bootstrap-legacy .alert-heading {
  color: inherit;
}

.bootstrap-legacy .alert-link {
  font-weight: 700;
}

.bootstrap-legacy .alert-dismissible {
  padding-right: 4rem;
}

.bootstrap-legacy .alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.71rem 1rem;
  color: inherit;
}

.bootstrap-legacy .alert-primary {
  color: #4c4993;
  background-color: #e3e1fc;
  border-color: #d8d4fb;
}

.bootstrap-legacy .alert-primary {
    color: var(--clr-accent-700);
    background-color: var(--clr-accent--200);
    outline: 2px solid var(--clr-accent--700);
}

.bootstrap-legacy .alert-primary hr {
  border-top-color: #c3bdf9;
}

.bootstrap-legacy .alert-primary .alert-link {
  color: #3a3871;
}

.bootstrap-legacy .alert-secondary {
  color: #54595f;
  background-color: #e6e7e8;
  border-color: #dcdddf;
}

.bootstrap-legacy .alert-secondary hr {
  border-top-color: #cfd0d3;
}

.bootstrap-legacy .alert-secondary .alert-link {
  color: #3c4044;
}

.bootstrap-legacy .alert-success {
  color: #257b50;
  background-color: #d4f4e2;
  border-color: #c3efd7;
}

.bootstrap-legacy .alert-success hr {
  border-top-color: #afeaca;
}

.bootstrap-legacy .alert-success .alert-link {
  color: #195437;
}

.bootstrap-legacy .alert-info {
  color: #107f8f;
  background-color: #ccf5fa;
  border-color: #b8f2f9;
}

.bootstrap-legacy .alert-info hr {
  border-top-color: #a0eef7;
}

.bootstrap-legacy .alert-info .alert-link {
  color: #0b5661;
}

.bootstrap-legacy .alert-warning {
  color: #956639;
  background-color: #ffecd9;
  border-color: #ffe4ca;
}

.bootstrap-legacy .alert-warning hr {
  border-top-color: #ffd7b1;
}

.bootstrap-legacy .alert-warning .alert-link {
  color: #704d2b;
}

.bootstrap-legacy .alert-danger {
  color: #8a3f43;
  background-color: #fbdddd;
  border-color: #f9cfcf;
}

.bootstrap-legacy .alert-danger hr {
  border-top-color: #f6b8b8;
}

.bootstrap-legacy .alert-danger .alert-link {
  color: #672f32;
}

.bootstrap-legacy .alert-light {
  color: #909496;
  background-color: #fdfdfd;
  border-color: #fcfcfc;
}

.bootstrap-legacy .alert-light hr {
  border-top-color: #efefef;
}

.bootstrap-legacy .alert-light .alert-link {
  color: #767b7d;
}

.bootstrap-legacy .alert-dark {
  color: #373b3e;
  background-color: #dbdbdb;
  border-color: #cdcdcd;
}

.bootstrap-legacy .alert-dark hr {
  border-top-color: silver;
}

.bootstrap-legacy .alert-dark .alert-link {
  color: #1f2123;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 0.857rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.bootstrap-legacy .progress {
  display: flex;
  height: 0.857rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.857rem;
  background-color: rgba(115, 103, 240, 0.12);
  border-radius: 5rem;
}

.bootstrap-legacy .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #7367f0;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .progress-bar {
    transition: none;
  }
}

.bootstrap-legacy .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 0.857rem 0.857rem;
}

.bootstrap-legacy .progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .progress-bar-animated {
    animation: none;
  }
}

.bootstrap-legacy .media {
  display: flex;
  align-items: flex-start;
}

.bootstrap-legacy .media-body {
  flex: 1;
}

.bootstrap-legacy .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.358rem;
}

.bootstrap-legacy .list-group-item-action {
  width: 100%;
  color: #4e5154;
  text-align: inherit;
}

.bootstrap-legacy .list-group-item-action:hover, .bootstrap-legacy .list-group-item-action:focus {
  z-index: 1;
  color: #4e5154;
  text-decoration: none;
  background-color: #babfc7;
}

.bootstrap-legacy .list-group-item-action:active {
  color: #fff;
  background-color: #7367f0;
}

.bootstrap-legacy .list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(34, 41, 47, 0.125);
}

.bootstrap-legacy .list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.bootstrap-legacy .list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.bootstrap-legacy .list-group-item.disabled, .bootstrap-legacy .list-group-item:disabled {
  color: #b9b9c3;
  pointer-events: none;
  background-color: #fff;
}

.bootstrap-legacy .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #7367f0;
  border-color: #7367f0;
}

.bootstrap-legacy .list-group-item+.list-group-item {
  border-top-width: 0;
}

.bootstrap-legacy .list-group-item+.list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.bootstrap-legacy .list-group-horizontal {
  flex-direction: row;
}

.bootstrap-legacy .list-group-horizontal>.list-group-item:first-child {
  border-bottom-left-radius: 0.358rem;
  border-top-right-radius: 0;
}

.bootstrap-legacy .list-group-horizontal>.list-group-item:last-child {
  border-top-right-radius: 0.358rem;
  border-bottom-left-radius: 0;
}

.bootstrap-legacy .list-group-horizontal>.list-group-item.active {
  margin-top: 0;
}

.bootstrap-legacy .list-group-horizontal>.list-group-item+.list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.bootstrap-legacy .list-group-horizontal>.list-group-item+.list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .bootstrap-legacy .list-group-horizontal-sm {
    flex-direction: row;
  }

  .bootstrap-legacy .list-group-horizontal-sm>.list-group-item:first-child {
    border-bottom-left-radius: 0.358rem;
    border-top-right-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-sm>.list-group-item:last-child {
    border-top-right-radius: 0.358rem;
    border-bottom-left-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-sm>.list-group-item.active {
    margin-top: 0;
  }

  .bootstrap-legacy .list-group-horizontal-sm>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .bootstrap-legacy .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .list-group-horizontal-md {
    flex-direction: row;
  }

  .bootstrap-legacy .list-group-horizontal-md>.list-group-item:first-child {
    border-bottom-left-radius: 0.358rem;
    border-top-right-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-md>.list-group-item:last-child {
    border-top-right-radius: 0.358rem;
    border-bottom-left-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-md>.list-group-item.active {
    margin-top: 0;
  }

  .bootstrap-legacy .list-group-horizontal-md>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .bootstrap-legacy .list-group-horizontal-md>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .list-group-horizontal-lg {
    flex-direction: row;
  }

  .bootstrap-legacy .list-group-horizontal-lg>.list-group-item:first-child {
    border-bottom-left-radius: 0.358rem;
    border-top-right-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-lg>.list-group-item:last-child {
    border-top-right-radius: 0.358rem;
    border-bottom-left-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-lg>.list-group-item.active {
    margin-top: 0;
  }

  .bootstrap-legacy .list-group-horizontal-lg>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .bootstrap-legacy .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .list-group-horizontal-xl {
    flex-direction: row;
  }

  .bootstrap-legacy .list-group-horizontal-xl>.list-group-item:first-child {
    border-bottom-left-radius: 0.358rem;
    border-top-right-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xl>.list-group-item:last-child {
    border-top-right-radius: 0.358rem;
    border-bottom-left-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xl>.list-group-item.active {
    margin-top: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xl>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .list-group-horizontal-xxl {
    flex-direction: row;
  }

  .bootstrap-legacy .list-group-horizontal-xxl>.list-group-item:first-child {
    border-bottom-left-radius: 0.358rem;
    border-top-right-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xxl>.list-group-item:last-child {
    border-top-right-radius: 0.358rem;
    border-bottom-left-radius: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xxl>.list-group-item.active {
    margin-top: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xxl>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .bootstrap-legacy .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.bootstrap-legacy .list-group-flush {
  border-radius: 0;
}

.bootstrap-legacy .list-group-flush>.list-group-item {
  border-width: 0 0 1px;
}

.bootstrap-legacy .list-group-flush>.list-group-item:last-child {
  border-bottom-width: 0;
}

.bootstrap-legacy .list-group-item-primary {
  color: #4c4993;
  background-color: #d8d4fb;
}

.bootstrap-legacy .list-group-item-primary.list-group-item-action:hover, .bootstrap-legacy .list-group-item-primary.list-group-item-action:focus {
  color: #4c4993;
  background-color: #c3bdf9;
}

.bootstrap-legacy .list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #4c4993;
  border-color: #4c4993;
}

.bootstrap-legacy .list-group-item-secondary {
  color: #54595f;
  background-color: #dcdddf;
}

.bootstrap-legacy .list-group-item-secondary.list-group-item-action:hover, .bootstrap-legacy .list-group-item-secondary.list-group-item-action:focus {
  color: #54595f;
  background-color: #cfd0d3;
}

.bootstrap-legacy .list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #54595f;
  border-color: #54595f;
}

.bootstrap-legacy .list-group-item-success {
  color: #257b50;
  background-color: #c3efd7;
}

.bootstrap-legacy .list-group-item-success.list-group-item-action:hover, .bootstrap-legacy .list-group-item-success.list-group-item-action:focus {
  color: #257b50;
  background-color: #afeaca;
}

.bootstrap-legacy .list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #257b50;
  border-color: #257b50;
}

.bootstrap-legacy .list-group-item-info {
  color: #107f8f;
  background-color: #b8f2f9;
}

.bootstrap-legacy .list-group-item-info.list-group-item-action:hover, .bootstrap-legacy .list-group-item-info.list-group-item-action:focus {
  color: #107f8f;
  background-color: #a0eef7;
}

.bootstrap-legacy .list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #107f8f;
  border-color: #107f8f;
}

.bootstrap-legacy .list-group-item-warning {
  color: #956639;
  background-color: #ffe4ca;
}

.bootstrap-legacy .list-group-item-warning.list-group-item-action:hover, .bootstrap-legacy .list-group-item-warning.list-group-item-action:focus {
  color: #956639;
  background-color: #ffd7b1;
}

.bootstrap-legacy .list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #956639;
  border-color: #956639;
}

.bootstrap-legacy .list-group-item-danger {
  color: #8a3f43;
  background-color: #f9cfcf;
}

.bootstrap-legacy .list-group-item-danger.list-group-item-action:hover, .bootstrap-legacy .list-group-item-danger.list-group-item-action:focus {
  color: #8a3f43;
  background-color: #f6b8b8;
}

.bootstrap-legacy .list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #8a3f43;
  border-color: #8a3f43;
}

.bootstrap-legacy .list-group-item-light {
  color: #909496;
  background-color: #fcfcfc;
}

.bootstrap-legacy .list-group-item-light.list-group-item-action:hover, .bootstrap-legacy .list-group-item-light.list-group-item-action:focus {
  color: #909496;
  background-color: #efefef;
}

.bootstrap-legacy .list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #909496;
  border-color: #909496;
}

.bootstrap-legacy .list-group-item-dark {
  color: #373b3e;
  background-color: #cdcdcd;
}

.bootstrap-legacy .list-group-item-dark.list-group-item-action:hover, .bootstrap-legacy .list-group-item-dark.list-group-item-action:focus {
  color: #373b3e;
  background-color: silver;
}

.bootstrap-legacy .list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #373b3e;
  border-color: #373b3e;
}

.bootstrap-legacy .close {
  float: right;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #5e5873;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.bootstrap-legacy .close:hover {
  color: #5e5873;
  text-decoration: none;
}

.bootstrap-legacy .close:not(:disabled):not(.disabled):hover, .bootstrap-legacy .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

.bootstrap-legacy button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.bootstrap-legacy a.close.disabled {
  pointer-events: none;
}

.bootstrap-legacy .toast {
  flex-basis: 380px;
  max-width: 380px;
  font-size: 0.857rem;
  color: #6e6b7b;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px 0 rgba(34, 41, 47, 0.08);
  opacity: 0;
  border-radius: 0.286rem;
}

.bootstrap-legacy .toast:not(:last-child) {
  margin-bottom: 1.14rem;
}

.bootstrap-legacy .toast.showing {
  opacity: 1;
}

.bootstrap-legacy .toast.show {
  display: block;
  opacity: 1;
}

.bootstrap-legacy .toast.hide {
  display: none;
}

.bootstrap-legacy .toast-header {
  display: flex;
  align-items: center;
  padding: 0.15rem 1.14rem;
  color: #6e6b7b;
  background-color: #fff;
  background-clip: padding-box;
  border-bottom: 0 solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: 0.286rem;
  border-top-right-radius: 0.286rem;
}

.bootstrap-legacy .toast-body {
  padding: 1.14rem;
}

.bootstrap-legacy .modal-open {
  overflow: hidden;
}

.bootstrap-legacy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.bootstrap-legacy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.bootstrap-legacy .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.bootstrap-legacy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .modal.fade .modal-dialog {
    transition: none;
  }
}

.bootstrap-legacy .modal.show .modal-dialog {
  transform: none;
}

.bootstrap-legacy .modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.bootstrap-legacy .modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.bootstrap-legacy .modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.bootstrap-legacy .modal-dialog-scrollable .modal-header, .bootstrap-legacy .modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.bootstrap-legacy .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.bootstrap-legacy .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.bootstrap-legacy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}

.bootstrap-legacy .modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.bootstrap-legacy .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.bootstrap-legacy .modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.bootstrap-legacy .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(34, 41, 47, 0.2);
  border-radius: 0.358rem;
  outline: 0;
}

.bootstrap-legacy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #22292f;
}

.bootstrap-legacy .modal-backdrop.fade {
  opacity: 0;
}

.bootstrap-legacy .modal-backdrop.show {
  opacity: 0.5;
}

.bootstrap-legacy .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid #ebe9f1;
  border-top-left-radius: calc(0.358rem - 1px);
  border-top-right-radius: calc(0.358rem - 1px);
}

.bootstrap-legacy .modal-header .close {
  padding: 0.8rem 1.4rem;
  margin: -0.8rem -1.4rem -0.8rem auto;
}

.bootstrap-legacy .modal-title {
  margin-bottom: 0;
  line-height: 1.45;
}

.bootstrap-legacy .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0.8rem 1.4rem;
}

.bootstrap-legacy .modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.8rem 1.15rem;
  border-top: 1px solid rgba(34, 41, 47, 0.05);
  border-bottom-right-radius: calc(0.358rem - 1px);
  border-bottom-left-radius: calc(0.358rem - 1px);
}

.bootstrap-legacy .modal-footer>* {
  margin: 0.25rem;
}

.bootstrap-legacy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .bootstrap-legacy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .bootstrap-legacy .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .bootstrap-legacy .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .bootstrap-legacy .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .bootstrap-legacy .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }

  .bootstrap-legacy .modal-sm {
    max-width: 400px;
  }
}

@media (min-width: 992px) {

  .bootstrap-legacy .modal-lg, .bootstrap-legacy .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .modal-xl {
    max-width: 94%;
  }
}

.bootstrap-legacy .tooltip {
  position: absolute;
  z-index: 99999;
  display: block;
  margin: 0;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.857rem;
  word-wrap: break-word;
  opacity: 0;
}

.bootstrap-legacy .tooltip.show {
  opacity: 1;
}

.bootstrap-legacy .tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.bootstrap-legacy .tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bootstrap-legacy .bs-tooltip-top, .bootstrap-legacy .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bootstrap-legacy .bs-tooltip-top .arrow, .bootstrap-legacy .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bootstrap-legacy .bs-tooltip-top .arrow::before, .bootstrap-legacy .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #323232;
}

.bootstrap-legacy .bs-tooltip-right, .bootstrap-legacy .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bootstrap-legacy .bs-tooltip-right .arrow, .bootstrap-legacy .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bootstrap-legacy .bs-tooltip-right .arrow::before, .bootstrap-legacy .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #323232;
}

.bootstrap-legacy .bs-tooltip-bottom, .bootstrap-legacy .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bootstrap-legacy .bs-tooltip-bottom .arrow, .bootstrap-legacy .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bootstrap-legacy .bs-tooltip-bottom .arrow::before, .bootstrap-legacy .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #323232;
}

.bootstrap-legacy .bs-tooltip-left, .bootstrap-legacy .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bootstrap-legacy .bs-tooltip-left .arrow, .bootstrap-legacy .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bootstrap-legacy .bs-tooltip-left .arrow::before, .bootstrap-legacy .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #323232;
}

.bootstrap-legacy .tooltip-inner {
  max-width: 220px;
  padding: 0.4rem 0.775rem;
  color: #fff;
  text-align: center;
  background-color: #323232;
  border-radius: 0.358rem;
}

.bootstrap-legacy .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid #ebe9f1;
  border-radius: 0.358rem;
}

.bootstrap-legacy .popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.358rem;
}

.bootstrap-legacy .popover .arrow::before, .bootstrap-legacy .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bootstrap-legacy .bs-popover-top, .bootstrap-legacy .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bootstrap-legacy .bs-popover-top>.arrow, .bootstrap-legacy .bs-popover-auto[x-placement^="top"]>.arrow {
  bottom: -0.5rem;
}

.bootstrap-legacy .bs-popover-top>.arrow::before, .bootstrap-legacy .bs-popover-auto[x-placement^="top"]>.arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #ebe9f1;
}

.bootstrap-legacy .bs-popover-top>.arrow::after, .bootstrap-legacy .bs-popover-auto[x-placement^="top"]>.arrow::after {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bootstrap-legacy .bs-popover-right, .bootstrap-legacy .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bootstrap-legacy .bs-popover-right>.arrow, .bootstrap-legacy .bs-popover-auto[x-placement^="right"]>.arrow {
  left: -0.5rem;
  width: 0.5rem;
  height: 1rem;
  margin: 0.358rem 0;
}

.bootstrap-legacy .bs-popover-right>.arrow::before, .bootstrap-legacy .bs-popover-auto[x-placement^="right"]>.arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #ebe9f1;
}

.bootstrap-legacy .bs-popover-right>.arrow::after, .bootstrap-legacy .bs-popover-auto[x-placement^="right"]>.arrow::after {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bootstrap-legacy .bs-popover-bottom, .bootstrap-legacy .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bootstrap-legacy .bs-popover-bottom>.arrow, .bootstrap-legacy .bs-popover-auto[x-placement^="bottom"]>.arrow {
  top: -0.5rem;
}

.bootstrap-legacy .bs-popover-bottom>.arrow::before, .bootstrap-legacy .bs-popover-auto[x-placement^="bottom"]>.arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #ebe9f1;
}

.bootstrap-legacy .bs-popover-bottom>.arrow::after, .bootstrap-legacy .bs-popover-auto[x-placement^="bottom"]>.arrow::after {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bootstrap-legacy .bs-popover-bottom .popover-header::before, .bootstrap-legacy .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 0 solid #7367f0;
}

.bootstrap-legacy .bs-popover-left, .bootstrap-legacy .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bootstrap-legacy .bs-popover-left>.arrow, .bootstrap-legacy .bs-popover-auto[x-placement^="left"]>.arrow {
  right: -0.5rem;
  width: 0.5rem;
  height: 1rem;
  margin: 0.358rem 0;
}

.bootstrap-legacy .bs-popover-left>.arrow::before, .bootstrap-legacy .bs-popover-auto[x-placement^="left"]>.arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #ebe9f1;
}

.bootstrap-legacy .bs-popover-left>.arrow::after, .bootstrap-legacy .bs-popover-auto[x-placement^="left"]>.arrow::after {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.bootstrap-legacy .popover-header {
  padding: 0.65rem 1.21rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #fff;
  background-color: #7367f0;
  border-bottom: 0 solid #5e50ee;
  border-top-left-radius: 0.358rem;
  border-top-right-radius: 0.358rem;
}

.bootstrap-legacy .popover-header:empty {
  display: none;
}

.bootstrap-legacy .popover-body {
  padding: 0.65rem 1.21rem;
  color: #6e6b7b;
}

.bootstrap-legacy .carousel {
  position: relative;
}

.bootstrap-legacy .carousel.pointer-event {
  touch-action: pan-y;
}

.bootstrap-legacy .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bootstrap-legacy .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.bootstrap-legacy .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .carousel-item {
    transition: none;
  }
}

.bootstrap-legacy .carousel-item.active, .bootstrap-legacy .carousel-item-next, .bootstrap-legacy .carousel-item-prev {
  display: block;
}

.bootstrap-legacy .carousel-item-next:not(.carousel-item-left), .bootstrap-legacy .active.carousel-item-right {
  transform: translateX(100%);
}

.bootstrap-legacy .carousel-item-prev:not(.carousel-item-right), .bootstrap-legacy .active.carousel-item-left {
  transform: translateX(-100%);
}

.bootstrap-legacy .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.bootstrap-legacy .carousel-fade .carousel-item.active, .bootstrap-legacy .carousel-fade .carousel-item-next.carousel-item-left, .bootstrap-legacy .carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.bootstrap-legacy .carousel-fade .active.carousel-item-left, .bootstrap-legacy .carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

  .bootstrap-legacy .carousel-fade .active.carousel-item-left, .bootstrap-legacy .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.bootstrap-legacy .carousel-control-prev, .bootstrap-legacy .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

  .bootstrap-legacy .carousel-control-prev, .bootstrap-legacy .carousel-control-next {
    transition: none;
  }
}

.bootstrap-legacy .carousel-control-prev:hover, .bootstrap-legacy .carousel-control-prev:focus, .bootstrap-legacy .carousel-control-next:hover, .bootstrap-legacy .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.bootstrap-legacy .carousel-control-prev {
  left: 0;
}

.bootstrap-legacy .carousel-control-next {
  right: 0;
}

.bootstrap-legacy .carousel-control-prev-icon, .bootstrap-legacy .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

.bootstrap-legacy .carousel-control-prev-icon {
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-left"%3e%3cpolyline points="15 18 9 12 15 6"%3e%3c/polyline%3e%3c/svg%3e');
}

.bootstrap-legacy .carousel-control-next-icon {
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"%3e%3cpolyline points="9 18 15 12 9 6"%3e%3c/polyline%3e%3c/svg%3e');
}

.bootstrap-legacy .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.bootstrap-legacy .carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-legacy .carousel-indicators li {
    transition: none;
  }
}

.bootstrap-legacy .carousel-indicators .active {
  opacity: 1;
}

.bootstrap-legacy .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.bootstrap-legacy .spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: .75s linear infinite spinner-border;
}

.bootstrap-legacy .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.bootstrap-legacy .spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: .75s linear infinite spinner-grow;
}

.bootstrap-legacy .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {

  .bootstrap-legacy .spinner-border, .bootstrap-legacy .spinner-grow {
    animation-duration: 1.5s;
  }
}

.bootstrap-legacy .align-baseline {
  vertical-align: baseline !important;
}

.bootstrap-legacy .align-top {
  vertical-align: top !important;
}

.bootstrap-legacy .align-middle {
  vertical-align: middle !important;
}

.bootstrap-legacy .align-bottom {
  vertical-align: bottom !important;
}

.bootstrap-legacy .align-text-bottom {
  vertical-align: text-bottom !important;
}

.bootstrap-legacy .align-text-top {
  vertical-align: text-top !important;
}

.bootstrap-legacy .bg-primary {
  background-color: #7367f0 !important;
}

.bootstrap-legacy a.bg-primary:hover, .bootstrap-legacy a.bg-primary:focus, .bootstrap-legacy button.bg-primary:hover, .bootstrap-legacy button.bg-primary:focus {
  background-color: #4839eb !important;
}

.bootstrap-legacy .bg-secondary {
  background-color: #82868b !important;
}

.bootstrap-legacy a.bg-secondary:hover, .bootstrap-legacy a.bg-secondary:focus, .bootstrap-legacy button.bg-secondary:hover, .bootstrap-legacy button.bg-secondary:focus {
  background-color: #696d71 !important;
}

.bootstrap-legacy .bg-success {
  background-color: #28c76f !important;
}

.bootstrap-legacy a.bg-success:hover, .bootstrap-legacy a.bg-success:focus, .bootstrap-legacy button.bg-success:hover, .bootstrap-legacy button.bg-success:focus {
  background-color: #1f9d57 !important;
}

.bootstrap-legacy .bg-info {
  background-color: #00cfe8 !important;
}

.bootstrap-legacy a.bg-info:hover, .bootstrap-legacy a.bg-info:focus, .bootstrap-legacy button.bg-info:hover, .bootstrap-legacy button.bg-info:focus {
  background-color: #00a1b5 !important;
}

.bootstrap-legacy .bg-warning {
  background-color: #ff9f43 !important;
}

.bootstrap-legacy a.bg-warning:hover, .bootstrap-legacy a.bg-warning:focus, .bootstrap-legacy button.bg-warning:hover, .bootstrap-legacy button.bg-warning:focus {
  background-color: #ff8510 !important;
}

.bootstrap-legacy .bg-danger {
  background-color: #ea5455 !important;
}

.bootstrap-legacy a.bg-danger:hover, .bootstrap-legacy a.bg-danger:focus, .bootstrap-legacy button.bg-danger:hover, .bootstrap-legacy button.bg-danger:focus {
  background-color: #e42728 !important;
}

.bootstrap-legacy .bg-light {
  background-color: #f6f6f6 !important;
}

.bootstrap-legacy a.bg-light:hover, .bootstrap-legacy a.bg-light:focus, .bootstrap-legacy button.bg-light:hover, .bootstrap-legacy button.bg-light:focus {
  background-color: #dddddd !important;
}

.bootstrap-legacy .bg-dark {
  background-color: #4b4b4b !important;
}

.bootstrap-legacy a.bg-dark:hover, .bootstrap-legacy a.bg-dark:focus, .bootstrap-legacy button.bg-dark:hover, .bootstrap-legacy button.bg-dark:focus {
  background-color: #323232 !important;
}

.bootstrap-legacy .bg-white {
  background-color: #fff !important;
}

.bootstrap-legacy .bg-transparent {
  background-color: transparent !important;
}

.bootstrap-legacy .border {
  border: 1px solid #ebe9f1 !important;
}

.bootstrap-legacy .border-top {
  border-top: 1px solid #ebe9f1 !important;
}

.bootstrap-legacy .border-right {
  border-right: 1px solid #ebe9f1 !important;
}

.bootstrap-legacy .border-bottom {
  border-bottom: 1px solid #ebe9f1 !important;
}

.bootstrap-legacy .border-left {
  border-left: 1px solid #ebe9f1 !important;
}

.bootstrap-legacy .border-0 {
  border: 0 !important;
}

.bootstrap-legacy .border-top-0 {
  border-top: 0 !important;
}

.bootstrap-legacy .border-right-0 {
  border-right: 0 !important;
}

.bootstrap-legacy .border-bottom-0 {
  border-bottom: 0 !important;
}

.bootstrap-legacy .border-left-0 {
  border-left: 0 !important;
}

.bootstrap-legacy .border-primary {
  border-color: #7367f0 !important;
}

.bootstrap-legacy .border-secondary {
  border-color: #82868b !important;
}

.bootstrap-legacy .border-success {
  border-color: #28c76f !important;
}

.bootstrap-legacy .border-info {
  border-color: #00cfe8 !important;
}

.bootstrap-legacy .border-warning {
  border-color: #ff9f43 !important;
}

.bootstrap-legacy .border-danger {
  border-color: #ea5455 !important;
}

.bootstrap-legacy .border-light {
  border-color: #f6f6f6 !important;
}

.bootstrap-legacy .border-dark {
  border-color: #4b4b4b !important;
}

.bootstrap-legacy .border-white {
  border-color: #fff !important;
}

.bootstrap-legacy .rounded-sm {
  border-radius: 0.25rem !important;
}

.bootstrap-legacy .rounded {
  border-radius: 0.357rem !important;
}

.bootstrap-legacy .rounded-top {
  border-top-left-radius: 0.357rem !important;
  border-top-right-radius: 0.357rem !important;
}

.bootstrap-legacy .rounded-right {
  border-top-right-radius: 0.357rem !important;
  border-bottom-right-radius: 0.357rem !important;
}

.bootstrap-legacy .rounded-bottom {
  border-bottom-right-radius: 0.357rem !important;
  border-bottom-left-radius: 0.357rem !important;
}

.bootstrap-legacy .rounded-left {
  border-top-left-radius: 0.357rem !important;
  border-bottom-left-radius: 0.357rem !important;
}

.bootstrap-legacy .rounded-lg {
  border-radius: 0.6rem !important;
}

.bootstrap-legacy .rounded-circle {
  border-radius: 50% !important;
}

.bootstrap-legacy .rounded-pill {
  border-radius: 50rem !important;
}

.bootstrap-legacy .rounded-0 {
  border-radius: 0 !important;
}

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

.bootstrap-legacy .d-none {
  display: none !important;
}

.bootstrap-legacy .d-inline {
  display: inline !important;
}

.bootstrap-legacy .d-inline-block {
  display: inline-block !important;
}

.bootstrap-legacy .d-block {
  display: block !important;
}

.bootstrap-legacy .d-contents {
  display: contents !important;
}

.bootstrap-legacy .d-grid {
  display: grid;
}

.bootstrap-legacy .d-table {
  display: table !important;
}

.bootstrap-legacy .d-table-row {
  display: table-row !important;
}

.bootstrap-legacy .d-table-cell {
  display: table-cell !important;
}

.bootstrap-legacy .d-flex {
  display: flex !important;
}

.bootstrap-legacy .d-inline-flex {
  display: inline-flex !important;
}

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

  .bootstrap-legacy .d-sm-inline {
    display: inline !important;
  }

  .bootstrap-legacy .d-sm-inline-block {
    display: inline-block !important;
  }

  .bootstrap-legacy .d-sm-block {
    display: block !important;
  }

  .bootstrap-legacy .d-sm-table {
    display: table !important;
  }

  .bootstrap-legacy .d-sm-table-row {
    display: table-row !important;
  }

  .bootstrap-legacy .d-sm-table-cell {
    display: table-cell !important;
  }

  .bootstrap-legacy .d-sm-flex {
    display: flex !important;
  }

  .bootstrap-legacy .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

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

  .bootstrap-legacy .d-md-inline {
    display: inline !important;
  }

  .bootstrap-legacy .d-md-inline-block {
    display: inline-block !important;
  }

  .bootstrap-legacy .d-md-block {
    display: block !important;
  }

  .bootstrap-legacy .d-md-contents {
    display: contents !important;
  }

  .bootstrap-legacy .d-md-grid {
    display: grid;
  }

  .bootstrap-legacy .d-md-table {
    display: table !important;
  }

  .bootstrap-legacy .d-md-table-row {
    display: table-row !important;
  }

  .bootstrap-legacy .d-md-table-cell {
    display: table-cell !important;
  }

  .bootstrap-legacy .d-md-flex {
    display: flex !important;
  }


  .bootstrap-legacy .d-md-inline-flex {
    display: inline-flex !important;
  }
}

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

  .bootstrap-legacy .d-lg-inline {
    display: inline !important;
  }

  .bootstrap-legacy .d-lg-inline-block {
    display: inline-block !important;
  }

  .bootstrap-legacy .d-lg-block {
    display: block !important;
  }

  .bootstrap-legacy .d-lg-table {
    display: table !important;
  }

  .bootstrap-legacy .d-lg-table-row {
    display: table-row !important;
  }

  .bootstrap-legacy .d-lg-table-cell {
    display: table-cell !important;
  }

  .bootstrap-legacy .d-lg-flex {
    display: flex !important;
  }

  .bootstrap-legacy .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

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

  .bootstrap-legacy .d-xl-inline {
    display: inline !important;
  }

  .bootstrap-legacy .d-xl-inline-block {
    display: inline-block !important;
  }

  .bootstrap-legacy .d-xl-block {
    display: block !important;
  }

  .bootstrap-legacy .d-xl-table {
    display: table !important;
  }

  .bootstrap-legacy .d-xl-table-row {
    display: table-row !important;
  }

  .bootstrap-legacy .d-xl-table-cell {
    display: table-cell !important;
  }

  .bootstrap-legacy .d-xl-flex {
    display: flex !important;
  }

  .bootstrap-legacy .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .d-xxl-none {
    display: none !important;
  }

  .bootstrap-legacy .d-xxl-inline {
    display: inline !important;
  }

  .bootstrap-legacy .d-xxl-inline-block {
    display: inline-block !important;
  }

  .bootstrap-legacy .d-xxl-block {
    display: block !important;
  }

  .bootstrap-legacy .d-xxl-table {
    display: table !important;
  }

  .bootstrap-legacy .d-xxl-table-row {
    display: table-row !important;
  }

  .bootstrap-legacy .d-xxl-table-cell {
    display: table-cell !important;
  }

  .bootstrap-legacy .d-xxl-flex {
    display: flex !important;
  }

  .bootstrap-legacy .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .bootstrap-legacy .d-print-none {
    display: none !important;
  }

  .bootstrap-legacy .d-print-inline {
    display: inline !important;
  }

  .bootstrap-legacy .d-print-inline-block {
    display: inline-block !important;
  }

  .bootstrap-legacy .d-print-block {
    display: block !important;
  }

  .bootstrap-legacy .d-print-table {
    display: table !important;
  }

  .bootstrap-legacy .d-print-table-row {
    display: table-row !important;
  }

  .bootstrap-legacy .d-print-table-cell {
    display: table-cell !important;
  }

  .bootstrap-legacy .d-print-flex {
    display: flex !important;
  }

  .bootstrap-legacy .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.bootstrap-legacy .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.bootstrap-legacy .embed-responsive::before {
  display: block;
  content: "";
}

.bootstrap-legacy .embed-responsive .embed-responsive-item, .bootstrap-legacy .embed-responsive iframe, .bootstrap-legacy .embed-responsive embed, .bootstrap-legacy .embed-responsive object, .bootstrap-legacy .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bootstrap-legacy .embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.bootstrap-legacy .embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.bootstrap-legacy .embed-responsive-4by3::before {
  padding-top: 75%;
}

.bootstrap-legacy .embed-responsive-1by1::before {
  padding-top: 100%;
}

.bootstrap-legacy .embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.bootstrap-legacy .embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.bootstrap-legacy .embed-responsive-4by3::before {
  padding-top: 75%;
}

.bootstrap-legacy .embed-responsive-1by1::before {
  padding-top: 100%;
}

.bootstrap-legacy .flex-row {
  flex-direction: row !important;
}

.bootstrap-legacy .flex-column {
  flex-direction: column !important;
}

.bootstrap-legacy .flex-row-reverse {
  flex-direction: row-reverse !important;
}

.bootstrap-legacy .flex-column-reverse {
  flex-direction: column-reverse !important;
}

.bootstrap-legacy .flex-wrap {
  flex-wrap: wrap !important;
}

.bootstrap-legacy .flex-nowrap {
  flex-wrap: nowrap !important;
}

.bootstrap-legacy .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.bootstrap-legacy .flex-fill {
  flex: 1 1 auto !important;
}

.bootstrap-legacy .flex-grow-0 {
  flex-grow: 0 !important;
}

.bootstrap-legacy .flex-grow-1 {
  flex-grow: 1 !important;
}

.bootstrap-legacy .flex-shrink-0 {
  flex-shrink: 0 !important;
}

.bootstrap-legacy .flex-shrink-1 {
  flex-shrink: 1 !important;
}

.bootstrap-legacy .justify-content-start {
  justify-content: flex-start !important;
}

.bootstrap-legacy .justify-content-end {
  justify-content: flex-end !important;
}

.bootstrap-legacy .justify-content-center {
  justify-content: center !important;
}

.bootstrap-legacy .justify-content-between {
  justify-content: space-between !important;
}

.bootstrap-legacy .justify-content-around {
  justify-content: space-around !important;
}

.bootstrap-legacy .align-items-start {
  align-items: flex-start !important;
}

.bootstrap-legacy .align-items-end {
  align-items: flex-end !important;
}

.bootstrap-legacy .align-items-center {
  align-items: center !important;
}

.bootstrap-legacy .align-items-baseline {
  align-items: baseline !important;
}

.bootstrap-legacy .align-items-stretch {
  align-items: stretch !important;
}

.bootstrap-legacy .align-content-start {
  align-content: flex-start !important;
}

.bootstrap-legacy .align-content-end {
  align-content: flex-end !important;
}

.bootstrap-legacy .align-content-center {
  align-content: center !important;
}

.bootstrap-legacy .align-content-between {
  align-content: space-between !important;
}

.bootstrap-legacy .align-content-around {
  align-content: space-around !important;
}

.bootstrap-legacy .align-content-stretch {
  align-content: stretch !important;
}

.bootstrap-legacy .align-self-auto {
  align-self: auto !important;
}

.bootstrap-legacy .align-self-start {
  align-self: flex-start !important;
}

.bootstrap-legacy .align-self-end {
  align-self: flex-end !important;
}

.bootstrap-legacy .align-self-center {
  align-self: center !important;
}

.bootstrap-legacy .align-self-baseline {
  align-self: baseline !important;
}

.bootstrap-legacy .align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .bootstrap-legacy .flex-sm-row {
    flex-direction: row !important;
  }

  .bootstrap-legacy .flex-sm-column {
    flex-direction: column !important;
  }

  .bootstrap-legacy .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .bootstrap-legacy .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .bootstrap-legacy .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .bootstrap-legacy .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .bootstrap-legacy .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .bootstrap-legacy .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .bootstrap-legacy .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .bootstrap-legacy .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .bootstrap-legacy .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .bootstrap-legacy .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .bootstrap-legacy .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .bootstrap-legacy .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .bootstrap-legacy .justify-content-sm-center {
    justify-content: center !important;
  }

  .bootstrap-legacy .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .bootstrap-legacy .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .bootstrap-legacy .align-items-sm-start {
    align-items: flex-start !important;
  }

  .bootstrap-legacy .align-items-sm-end {
    align-items: flex-end !important;
  }

  .bootstrap-legacy .align-items-sm-center {
    align-items: center !important;
  }

  .bootstrap-legacy .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .bootstrap-legacy .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .bootstrap-legacy .align-content-sm-start {
    align-content: flex-start !important;
  }

  .bootstrap-legacy .align-content-sm-end {
    align-content: flex-end !important;
  }

  .bootstrap-legacy .align-content-sm-center {
    align-content: center !important;
  }

  .bootstrap-legacy .align-content-sm-between {
    align-content: space-between !important;
  }

  .bootstrap-legacy .align-content-sm-around {
    align-content: space-around !important;
  }

  .bootstrap-legacy .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .bootstrap-legacy .align-self-sm-auto {
    align-self: auto !important;
  }

  .bootstrap-legacy .align-self-sm-start {
    align-self: flex-start !important;
  }

  .bootstrap-legacy .align-self-sm-end {
    align-self: flex-end !important;
  }

  .bootstrap-legacy .align-self-sm-center {
    align-self: center !important;
  }

  .bootstrap-legacy .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .bootstrap-legacy .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .flex-md-row {
    flex-direction: row !important;
  }

  .bootstrap-legacy .flex-md-column {
    flex-direction: column !important;
  }

  .bootstrap-legacy .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .bootstrap-legacy .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .bootstrap-legacy .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .bootstrap-legacy .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .bootstrap-legacy .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .bootstrap-legacy .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .bootstrap-legacy .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .bootstrap-legacy .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .bootstrap-legacy .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .bootstrap-legacy .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .bootstrap-legacy .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .bootstrap-legacy .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .bootstrap-legacy .justify-content-md-center {
    justify-content: center !important;
  }

  .bootstrap-legacy .justify-content-md-between {
    justify-content: space-between !important;
  }

  .bootstrap-legacy .justify-content-md-around {
    justify-content: space-around !important;
  }

  .bootstrap-legacy .align-items-md-start {
    align-items: flex-start !important;
  }

  .bootstrap-legacy .align-items-md-end {
    align-items: flex-end !important;
  }

  .bootstrap-legacy .align-items-md-center {
    align-items: center !important;
  }

  .bootstrap-legacy .align-items-md-baseline {
    align-items: baseline !important;
  }

  .bootstrap-legacy .align-items-md-stretch {
    align-items: stretch !important;
  }

  .bootstrap-legacy .align-content-md-start {
    align-content: flex-start !important;
  }

  .bootstrap-legacy .align-content-md-end {
    align-content: flex-end !important;
  }

  .bootstrap-legacy .align-content-md-center {
    align-content: center !important;
  }

  .bootstrap-legacy .align-content-md-between {
    align-content: space-between !important;
  }

  .bootstrap-legacy .align-content-md-around {
    align-content: space-around !important;
  }

  .bootstrap-legacy .align-content-md-stretch {
    align-content: stretch !important;
  }

  .bootstrap-legacy .align-self-md-auto {
    align-self: auto !important;
  }

  .bootstrap-legacy .align-self-md-start {
    align-self: flex-start !important;
  }

  .bootstrap-legacy .align-self-md-end {
    align-self: flex-end !important;
  }

  .bootstrap-legacy .align-self-md-center {
    align-self: center !important;
  }

  .bootstrap-legacy .align-self-md-baseline {
    align-self: baseline !important;
  }

  .bootstrap-legacy .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .flex-lg-row {
    flex-direction: row !important;
  }

  .bootstrap-legacy .flex-lg-column {
    flex-direction: column !important;
  }

  .bootstrap-legacy .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .bootstrap-legacy .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .bootstrap-legacy .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .bootstrap-legacy .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .bootstrap-legacy .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .bootstrap-legacy .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .bootstrap-legacy .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .bootstrap-legacy .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .bootstrap-legacy .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .bootstrap-legacy .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .bootstrap-legacy .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .bootstrap-legacy .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .bootstrap-legacy .justify-content-lg-center {
    justify-content: center !important;
  }

  .bootstrap-legacy .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .bootstrap-legacy .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .bootstrap-legacy .align-items-lg-start {
    align-items: flex-start !important;
  }

  .bootstrap-legacy .align-items-lg-end {
    align-items: flex-end !important;
  }

  .bootstrap-legacy .align-items-lg-center {
    align-items: center !important;
  }

  .bootstrap-legacy .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .bootstrap-legacy .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .bootstrap-legacy .align-content-lg-start {
    align-content: flex-start !important;
  }

  .bootstrap-legacy .align-content-lg-end {
    align-content: flex-end !important;
  }

  .bootstrap-legacy .align-content-lg-center {
    align-content: center !important;
  }

  .bootstrap-legacy .align-content-lg-between {
    align-content: space-between !important;
  }

  .bootstrap-legacy .align-content-lg-around {
    align-content: space-around !important;
  }

  .bootstrap-legacy .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .bootstrap-legacy .align-self-lg-auto {
    align-self: auto !important;
  }

  .bootstrap-legacy .align-self-lg-start {
    align-self: flex-start !important;
  }

  .bootstrap-legacy .align-self-lg-end {
    align-self: flex-end !important;
  }

  .bootstrap-legacy .align-self-lg-center {
    align-self: center !important;
  }

  .bootstrap-legacy .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .bootstrap-legacy .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .flex-xl-row {
    flex-direction: row !important;
  }

  .bootstrap-legacy .flex-xl-column {
    flex-direction: column !important;
  }

  .bootstrap-legacy .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .bootstrap-legacy .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .bootstrap-legacy .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .bootstrap-legacy .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .bootstrap-legacy .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .bootstrap-legacy .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .bootstrap-legacy .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .bootstrap-legacy .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .bootstrap-legacy .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .bootstrap-legacy .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .bootstrap-legacy .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .bootstrap-legacy .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .bootstrap-legacy .justify-content-xl-center {
    justify-content: center !important;
  }

  .bootstrap-legacy .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .bootstrap-legacy .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .bootstrap-legacy .align-items-xl-start {
    align-items: flex-start !important;
  }

  .bootstrap-legacy .align-items-xl-end {
    align-items: flex-end !important;
  }

  .bootstrap-legacy .align-items-xl-center {
    align-items: center !important;
  }

  .bootstrap-legacy .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .bootstrap-legacy .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .bootstrap-legacy .align-content-xl-start {
    align-content: flex-start !important;
  }

  .bootstrap-legacy .align-content-xl-end {
    align-content: flex-end !important;
  }

  .bootstrap-legacy .align-content-xl-center {
    align-content: center !important;
  }

  .bootstrap-legacy .align-content-xl-between {
    align-content: space-between !important;
  }

  .bootstrap-legacy .align-content-xl-around {
    align-content: space-around !important;
  }

  .bootstrap-legacy .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .bootstrap-legacy .align-self-xl-auto {
    align-self: auto !important;
  }

  .bootstrap-legacy .align-self-xl-start {
    align-self: flex-start !important;
  }

  .bootstrap-legacy .align-self-xl-end {
    align-self: flex-end !important;
  }

  .bootstrap-legacy .align-self-xl-center {
    align-self: center !important;
  }

  .bootstrap-legacy .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .bootstrap-legacy .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .flex-xxl-row {
    flex-direction: row !important;
  }

  .bootstrap-legacy .flex-xxl-column {
    flex-direction: column !important;
  }

  .bootstrap-legacy .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .bootstrap-legacy .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .bootstrap-legacy .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .bootstrap-legacy .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .bootstrap-legacy .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .bootstrap-legacy .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .bootstrap-legacy .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .bootstrap-legacy .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .bootstrap-legacy .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .bootstrap-legacy .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .bootstrap-legacy .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .bootstrap-legacy .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .bootstrap-legacy .justify-content-xxl-center {
    justify-content: center !important;
  }

  .bootstrap-legacy .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .bootstrap-legacy .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .bootstrap-legacy .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .bootstrap-legacy .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .bootstrap-legacy .align-items-xxl-center {
    align-items: center !important;
  }

  .bootstrap-legacy .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .bootstrap-legacy .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .bootstrap-legacy .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .bootstrap-legacy .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .bootstrap-legacy .align-content-xxl-center {
    align-content: center !important;
  }

  .bootstrap-legacy .align-content-xxl-between {
    align-content: space-between !important;
  }

  .bootstrap-legacy .align-content-xxl-around {
    align-content: space-around !important;
  }

  .bootstrap-legacy .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .bootstrap-legacy .align-self-xxl-auto {
    align-self: auto !important;
  }

  .bootstrap-legacy .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .bootstrap-legacy .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .bootstrap-legacy .align-self-xxl-center {
    align-self: center !important;
  }

  .bootstrap-legacy .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .bootstrap-legacy .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}

.bootstrap-legacy .float-left {
  float: left !important;
}

.bootstrap-legacy .float-right {
  float: right !important;
}

.bootstrap-legacy .float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .bootstrap-legacy .float-sm-left {
    float: left !important;
  }

  .bootstrap-legacy .float-sm-right {
    float: right !important;
  }

  .bootstrap-legacy .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .float-md-left {
    float: left !important;
  }

  .bootstrap-legacy .float-md-right {
    float: right !important;
  }

  .bootstrap-legacy .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .float-lg-left {
    float: left !important;
  }

  .bootstrap-legacy .float-lg-right {
    float: right !important;
  }

  .bootstrap-legacy .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .float-xl-left {
    float: left !important;
  }

  .bootstrap-legacy .float-xl-right {
    float: right !important;
  }

  .bootstrap-legacy .float-xl-none {
    float: none !important;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .float-xxl-left {
    float: left !important;
  }

  .bootstrap-legacy .float-xxl-right {
    float: right !important;
  }

  .bootstrap-legacy .float-xxl-none {
    float: none !important;
  }
}

.bootstrap-legacy .user-select-all {
  user-select: all !important;
}

.bootstrap-legacy .user-select-auto {
  user-select: auto !important;
}

.bootstrap-legacy .user-select-none {
  user-select: none !important;
}

.bootstrap-legacy .overflow-auto {
  overflow: auto !important;
}

.bootstrap-legacy .overflow-hidden {
  overflow: hidden !important;
}

.bootstrap-legacy .position-static {
  position: static !important;
}

.bootstrap-legacy .position-relative {
  position: relative !important;
}

.bootstrap-legacy .position-absolute {
  position: absolute !important;
}

.bootstrap-legacy .position-fixed {
  position: fixed !important;
}

.bootstrap-legacy .position-sticky {
  position: sticky !important;
}

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

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

@supports (position: sticky) {
  .bootstrap-legacy .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.bootstrap-legacy .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bootstrap-legacy .sr-only-focusable:active, .bootstrap-legacy .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

.bootstrap-legacy .shadow {
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1) !important;
}

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

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

.bootstrap-legacy .w-25 {
  width: 25% !important;
}

.bootstrap-legacy .w-50 {
  width: 50% !important;
}

.bootstrap-legacy .w-75 {
  width: 75% !important;
}

.bootstrap-legacy .w-100 {
  width: 100% !important;
}

.bootstrap-legacy .w-auto {
  width: auto !important;
}

.bootstrap-legacy .h-25 {
  height: 25% !important;
}

.bootstrap-legacy .h-50 {
  height: 50% !important;
}

.bootstrap-legacy .h-75 {
  height: 75% !important;
}

.bootstrap-legacy .h-100 {
  height: 100% !important;
}

.bootstrap-legacy .h-auto {
  height: auto !important;
}

.bootstrap-legacy .mw-100 {
  max-width: 100% !important;
}

.bootstrap-legacy .mh-100 {
  max-height: 100% !important;
}

.bootstrap-legacy .min-vw-100 {
  min-width: 100vw !important;
}

.bootstrap-legacy .min-vh-100 {
  min-height: 100vh !important;
}

.bootstrap-legacy .vw-100 {
  width: 100vw !important;
}

.bootstrap-legacy .vh-100 {
  height: 100vh !important;
}

.bootstrap-legacy .m-0 {
  margin: 0 !important;
}

.bootstrap-legacy .mt-0, .bootstrap-legacy .my-0 {
  margin-top: 0 !important;
}

.bootstrap-legacy .mr-0, .bootstrap-legacy .mx-0 {
  margin-right: 0 !important;
}

.bootstrap-legacy .mb-0, .bootstrap-legacy .my-0 {
  margin-bottom: 0 !important;
}

.bootstrap-legacy .ml-0, .bootstrap-legacy .mx-0 {
  margin-left: 0 !important;
}

.bootstrap-legacy .m-1 {
  margin: 1rem !important;
}

.bootstrap-legacy .mt-1, .bootstrap-legacy .my-1 {
  margin-top: 1rem !important;
}

.bootstrap-legacy .mr-1, .bootstrap-legacy .mx-1 {
  margin-right: 1rem !important;
}

.bootstrap-legacy .mb-1, .bootstrap-legacy .my-1 {
  margin-bottom: 1rem !important;
}

.bootstrap-legacy .ml-1, .bootstrap-legacy .mx-1 {
  margin-left: 1rem !important;
}

.bootstrap-legacy .m-2 {
  margin: 1.5rem !important;
}

.bootstrap-legacy .mt-2, .bootstrap-legacy .my-2 {
  margin-top: 1.5rem !important;
}

.bootstrap-legacy .mr-2, .bootstrap-legacy .mx-2 {
  margin-right: 1.5rem !important;
}

.bootstrap-legacy .mb-2, .bootstrap-legacy .my-2 {
  margin-bottom: 1.5rem !important;
}

.bootstrap-legacy .ml-2, .bootstrap-legacy .mx-2 {
  margin-left: 1.5rem !important;
}

.bootstrap-legacy .m-3 {
  margin: 3rem !important;
}

.bootstrap-legacy .mt-3, .bootstrap-legacy .my-3 {
  margin-top: 3rem !important;
}

.bootstrap-legacy .mr-3, .bootstrap-legacy .mx-3 {
  margin-right: 3rem !important;
}

.bootstrap-legacy .mb-3, .bootstrap-legacy .my-3 {
  margin-bottom: 3rem !important;
}

.bootstrap-legacy .ml-3, .bootstrap-legacy .mx-3 {
  margin-left: 3rem !important;
}

.bootstrap-legacy .m-4 {
  margin: 3.5rem !important;
}

.bootstrap-legacy .mt-4, .bootstrap-legacy .my-4 {
  margin-top: 3.5rem !important;
}

.bootstrap-legacy .mr-4, .bootstrap-legacy .mx-4 {
  margin-right: 3.5rem !important;
}

.bootstrap-legacy .mb-4, .bootstrap-legacy .my-4 {
  margin-bottom: 3.5rem !important;
}

.bootstrap-legacy .ml-4, .bootstrap-legacy .mx-4 {
  margin-left: 3.5rem !important;
}

.bootstrap-legacy .m-5 {
  margin: 4rem !important;
}

.bootstrap-legacy .mt-5, .bootstrap-legacy .my-5 {
  margin-top: 4rem !important;
}

.bootstrap-legacy .mr-5, .bootstrap-legacy .mx-5 {
  margin-right: 4rem !important;
}

.bootstrap-legacy .mb-5, .bootstrap-legacy .my-5 {
  margin-bottom: 4rem !important;
}

.bootstrap-legacy .ml-5, .bootstrap-legacy .mx-5 {
  margin-left: 4rem !important;
}

.bootstrap-legacy .m-25 {
  margin: 0.25rem !important;
}

.bootstrap-legacy .mt-25, .bootstrap-legacy .my-25 {
  margin-top: 0.25rem !important;
}

.bootstrap-legacy .mr-25, .bootstrap-legacy .mx-25 {
  margin-right: 0.25rem !important;
}

.bootstrap-legacy .mb-25, .bootstrap-legacy .my-25 {
  margin-bottom: 0.25rem !important;
}

.bootstrap-legacy .ml-25, .bootstrap-legacy .mx-25 {
  margin-left: 0.25rem !important;
}

.bootstrap-legacy .m-50 {
  margin: 0.5rem !important;
}

.bootstrap-legacy .mt-50, .bootstrap-legacy .my-50 {
  margin-top: 0.5rem !important;
}

.bootstrap-legacy .mr-50, .bootstrap-legacy .mx-50 {
  margin-right: 0.5rem !important;
}

.bootstrap-legacy .mb-50, .bootstrap-legacy .my-50 {
  margin-bottom: 0.5rem !important;
}

.bootstrap-legacy .ml-50, .bootstrap-legacy .mx-50 {
  margin-left: 0.5rem !important;
}

.bootstrap-legacy .m-75 {
  margin: 0.75rem !important;
}

.bootstrap-legacy .mt-75, .bootstrap-legacy .my-75 {
  margin-top: 0.75rem !important;
}

.bootstrap-legacy .mr-75, .bootstrap-legacy .mx-75 {
  margin-right: 0.75rem !important;
}

.bootstrap-legacy .mb-75, .bootstrap-legacy .my-75 {
  margin-bottom: 0.75rem !important;
}

.bootstrap-legacy .ml-75, .bootstrap-legacy .mx-75 {
  margin-left: 0.75rem !important;
}

.bootstrap-legacy .p-0 {
  padding: 0 !important;
}

.bootstrap-legacy .pt-0, .bootstrap-legacy .py-0 {
  padding-top: 0 !important;
}

.bootstrap-legacy .pr-0, .bootstrap-legacy .px-0 {
  padding-right: 0 !important;
}

.bootstrap-legacy .pb-0, .bootstrap-legacy .py-0 {
  padding-bottom: 0 !important;
}

.bootstrap-legacy .pl-0, .bootstrap-legacy .px-0 {
  padding-left: 0 !important;
}

.bootstrap-legacy .p-1 {
  padding: 1rem !important;
}

.bootstrap-legacy .pt-1, .bootstrap-legacy .py-1 {
  padding-top: 1rem !important;
}

.bootstrap-legacy .pr-1, .bootstrap-legacy .px-1 {
  padding-right: 1rem !important;
}

.bootstrap-legacy .pb-1, .bootstrap-legacy .py-1 {
  padding-bottom: 1rem !important;
}

.bootstrap-legacy .pl-1, .bootstrap-legacy .px-1 {
  padding-left: 1rem !important;
}

.bootstrap-legacy .p-2 {
  padding: 1.5rem !important;
}

.bootstrap-legacy .pt-2, .bootstrap-legacy .py-2 {
  padding-top: 1.5rem !important;
}

.bootstrap-legacy .pr-2, .bootstrap-legacy .px-2 {
  padding-right: 1.5rem !important;
}

.bootstrap-legacy .pb-2, .bootstrap-legacy .py-2 {
  padding-bottom: 1.5rem !important;
}

.bootstrap-legacy .pl-2, .bootstrap-legacy .px-2 {
  padding-left: 1.5rem !important;
}

.bootstrap-legacy .p-3 {
  padding: 3rem !important;
}

.bootstrap-legacy .pt-3, .bootstrap-legacy .py-3 {
  padding-top: 3rem !important;
}

.bootstrap-legacy .pr-3, .bootstrap-legacy .px-3 {
  padding-right: 3rem !important;
}

.bootstrap-legacy .pb-3, .bootstrap-legacy .py-3 {
  padding-bottom: 3rem !important;
}

.bootstrap-legacy .pl-3, .bootstrap-legacy .px-3 {
  padding-left: 3rem !important;
}

.bootstrap-legacy .p-4 {
  padding: 3.5rem !important;
}

.bootstrap-legacy .pt-4, .bootstrap-legacy .py-4 {
  padding-top: 3.5rem !important;
}

.bootstrap-legacy .pr-4, .bootstrap-legacy .px-4 {
  padding-right: 3.5rem !important;
}

.bootstrap-legacy .pb-4, .bootstrap-legacy .py-4 {
  padding-bottom: 3.5rem !important;
}

.bootstrap-legacy .pl-4, .bootstrap-legacy .px-4 {
  padding-left: 3.5rem !important;
}

.bootstrap-legacy .p-5 {
  padding: 4rem !important;
}

.bootstrap-legacy .pt-5, .bootstrap-legacy .py-5 {
  padding-top: 4rem !important;
}

.bootstrap-legacy .pr-5, .bootstrap-legacy .px-5 {
  padding-right: 4rem !important;
}

.bootstrap-legacy .pb-5, .bootstrap-legacy .py-5 {
  padding-bottom: 4rem !important;
}

.bootstrap-legacy .pl-5, .bootstrap-legacy .px-5 {
  padding-left: 4rem !important;
}

.bootstrap-legacy .p-25 {
  padding: 0.25rem !important;
}

.bootstrap-legacy .pt-25, .bootstrap-legacy .py-25 {
  padding-top: 0.25rem !important;
}

.bootstrap-legacy .pr-25, .bootstrap-legacy .px-25 {
  padding-right: 0.25rem !important;
}

.bootstrap-legacy .pb-25, .bootstrap-legacy .py-25 {
  padding-bottom: 0.25rem !important;
}

.bootstrap-legacy .pl-25, .bootstrap-legacy .px-25 {
  padding-left: 0.25rem !important;
}

.bootstrap-legacy .p-50 {
  padding: 0.5rem !important;
}

.bootstrap-legacy .pt-50, .bootstrap-legacy .py-50 {
  padding-top: 0.5rem !important;
}

.bootstrap-legacy .pr-50, .bootstrap-legacy .px-50 {
  padding-right: 0.5rem !important;
}

.bootstrap-legacy .pb-50, .bootstrap-legacy .py-50 {
  padding-bottom: 0.5rem !important;
}

.bootstrap-legacy .pl-50, .bootstrap-legacy .px-50 {
  padding-left: 0.5rem !important;
}

.bootstrap-legacy .p-75 {
  padding: 0.75rem !important;
}

.bootstrap-legacy .pt-75, .bootstrap-legacy .py-75 {
  padding-top: 0.75rem !important;
}

.bootstrap-legacy .pr-75, .bootstrap-legacy .px-75 {
  padding-right: 0.75rem !important;
}

.bootstrap-legacy .pb-75, .bootstrap-legacy .py-75 {
  padding-bottom: 0.75rem !important;
}

.bootstrap-legacy .pl-75, .bootstrap-legacy .px-75 {
  padding-left: 0.75rem !important;
}

.bootstrap-legacy .m-n1 {
  margin: -1rem !important;
}

.bootstrap-legacy .mt-n1, .bootstrap-legacy .my-n1 {
  margin-top: -1rem !important;
}

.bootstrap-legacy .mr-n1, .bootstrap-legacy .mx-n1 {
  margin-right: -1rem !important;
}

.bootstrap-legacy .mb-n1, .bootstrap-legacy .my-n1 {
  margin-bottom: -1rem !important;
}

.bootstrap-legacy .ml-n1, .bootstrap-legacy .mx-n1 {
  margin-left: -1rem !important;
}

.bootstrap-legacy .m-n2 {
  margin: -1.5rem !important;
}

.bootstrap-legacy .mt-n2, .bootstrap-legacy .my-n2 {
  margin-top: -1.5rem !important;
}

.bootstrap-legacy .mr-n2, .bootstrap-legacy .mx-n2 {
  margin-right: -1.5rem !important;
}

.bootstrap-legacy .mb-n2, .bootstrap-legacy .my-n2 {
  margin-bottom: -1.5rem !important;
}

.bootstrap-legacy .ml-n2, .bootstrap-legacy .mx-n2 {
  margin-left: -1.5rem !important;
}

.bootstrap-legacy .m-n3 {
  margin: -3rem !important;
}

.bootstrap-legacy .mt-n3, .bootstrap-legacy .my-n3 {
  margin-top: -3rem !important;
}

.bootstrap-legacy .mr-n3, .bootstrap-legacy .mx-n3 {
  margin-right: -3rem !important;
}

.bootstrap-legacy .mb-n3, .bootstrap-legacy .my-n3 {
  margin-bottom: -3rem !important;
}

.bootstrap-legacy .ml-n3, .bootstrap-legacy .mx-n3 {
  margin-left: -3rem !important;
}

.bootstrap-legacy .m-n4 {
  margin: -3.5rem !important;
}

.bootstrap-legacy .mt-n4, .bootstrap-legacy .my-n4 {
  margin-top: -3.5rem !important;
}

.bootstrap-legacy .mr-n4, .bootstrap-legacy .mx-n4 {
  margin-right: -3.5rem !important;
}

.bootstrap-legacy .mb-n4, .bootstrap-legacy .my-n4 {
  margin-bottom: -3.5rem !important;
}

.bootstrap-legacy .ml-n4, .bootstrap-legacy .mx-n4 {
  margin-left: -3.5rem !important;
}

.bootstrap-legacy .m-n5 {
  margin: -4rem !important;
}

.bootstrap-legacy .mt-n5, .bootstrap-legacy .my-n5 {
  margin-top: -4rem !important;
}

.bootstrap-legacy .mr-n5, .bootstrap-legacy .mx-n5 {
  margin-right: -4rem !important;
}

.bootstrap-legacy .mb-n5, .bootstrap-legacy .my-n5 {
  margin-bottom: -4rem !important;
}

.bootstrap-legacy .ml-n5, .bootstrap-legacy .mx-n5 {
  margin-left: -4rem !important;
}

.bootstrap-legacy .m-n25 {
  margin: -0.25rem !important;
}

.bootstrap-legacy .mt-n25, .bootstrap-legacy .my-n25 {
  margin-top: -0.25rem !important;
}

.bootstrap-legacy .mr-n25, .bootstrap-legacy .mx-n25 {
  margin-right: -0.25rem !important;
}

.bootstrap-legacy .mb-n25, .bootstrap-legacy .my-n25 {
  margin-bottom: -0.25rem !important;
}

.bootstrap-legacy .ml-n25, .bootstrap-legacy .mx-n25 {
  margin-left: -0.25rem !important;
}

.bootstrap-legacy .m-n50 {
  margin: -0.5rem !important;
}

.bootstrap-legacy .mt-n50, .bootstrap-legacy .my-n50 {
  margin-top: -0.5rem !important;
}

.bootstrap-legacy .mr-n50, .bootstrap-legacy .mx-n50 {
  margin-right: -0.5rem !important;
}

.bootstrap-legacy .mb-n50, .bootstrap-legacy .my-n50 {
  margin-bottom: -0.5rem !important;
}

.bootstrap-legacy .ml-n50, .bootstrap-legacy .mx-n50 {
  margin-left: -0.5rem !important;
}

.bootstrap-legacy .m-n75 {
  margin: -0.75rem !important;
}

.bootstrap-legacy .mt-n75, .bootstrap-legacy .my-n75 {
  margin-top: -0.75rem !important;
}

.bootstrap-legacy .mr-n75, .bootstrap-legacy .mx-n75 {
  margin-right: -0.75rem !important;
}

.bootstrap-legacy .mb-n75, .bootstrap-legacy .my-n75 {
  margin-bottom: -0.75rem !important;
}

.bootstrap-legacy .ml-n75, .bootstrap-legacy .mx-n75 {
  margin-left: -0.75rem !important;
}

.bootstrap-legacy .m-auto {
  margin: auto !important;
}

.bootstrap-legacy .mt-auto, .bootstrap-legacy .my-auto {
  margin-top: auto !important;
}

.bootstrap-legacy .mr-auto, .bootstrap-legacy .mx-auto {
  margin-right: auto !important;
}

.bootstrap-legacy .mb-auto, .bootstrap-legacy .my-auto {
  margin-bottom: auto !important;
}

.bootstrap-legacy .ml-auto, .bootstrap-legacy .mx-auto {
  margin-left: auto !important;
}

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

  .bootstrap-legacy .mt-sm-0, .bootstrap-legacy .my-sm-0 {
    margin-top: 0 !important;
  }

  .bootstrap-legacy .mr-sm-0, .bootstrap-legacy .mx-sm-0 {
    margin-right: 0 !important;
  }

  .bootstrap-legacy .mb-sm-0, .bootstrap-legacy .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .bootstrap-legacy .ml-sm-0, .bootstrap-legacy .mx-sm-0 {
    margin-left: 0 !important;
  }

  .bootstrap-legacy .m-sm-1 {
    margin: 1rem !important;
  }

  .bootstrap-legacy .mt-sm-1, .bootstrap-legacy .my-sm-1 {
    margin-top: 1rem !important;
  }

  .bootstrap-legacy .mr-sm-1, .bootstrap-legacy .mx-sm-1 {
    margin-right: 1rem !important;
  }

  .bootstrap-legacy .mb-sm-1, .bootstrap-legacy .my-sm-1 {
    margin-bottom: 1rem !important;
  }

  .bootstrap-legacy .ml-sm-1, .bootstrap-legacy .mx-sm-1 {
    margin-left: 1rem !important;
  }

  .bootstrap-legacy .m-sm-2 {
    margin: 1.5rem !important;
  }

  .bootstrap-legacy .mt-sm-2, .bootstrap-legacy .my-sm-2 {
    margin-top: 1.5rem !important;
  }

  .bootstrap-legacy .mr-sm-2, .bootstrap-legacy .mx-sm-2 {
    margin-right: 1.5rem !important;
  }

  .bootstrap-legacy .mb-sm-2, .bootstrap-legacy .my-sm-2 {
    margin-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .ml-sm-2, .bootstrap-legacy .mx-sm-2 {
    margin-left: 1.5rem !important;
  }

  .bootstrap-legacy .m-sm-3 {
    margin: 3rem !important;
  }

  .bootstrap-legacy .mt-sm-3, .bootstrap-legacy .my-sm-3 {
    margin-top: 3rem !important;
  }

  .bootstrap-legacy .mr-sm-3, .bootstrap-legacy .mx-sm-3 {
    margin-right: 3rem !important;
  }

  .bootstrap-legacy .mb-sm-3, .bootstrap-legacy .my-sm-3 {
    margin-bottom: 3rem !important;
  }

  .bootstrap-legacy .ml-sm-3, .bootstrap-legacy .mx-sm-3 {
    margin-left: 3rem !important;
  }

  .bootstrap-legacy .m-sm-4 {
    margin: 3.5rem !important;
  }

  .bootstrap-legacy .mt-sm-4, .bootstrap-legacy .my-sm-4 {
    margin-top: 3.5rem !important;
  }

  .bootstrap-legacy .mr-sm-4, .bootstrap-legacy .mx-sm-4 {
    margin-right: 3.5rem !important;
  }

  .bootstrap-legacy .mb-sm-4, .bootstrap-legacy .my-sm-4 {
    margin-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .ml-sm-4, .bootstrap-legacy .mx-sm-4 {
    margin-left: 3.5rem !important;
  }

  .bootstrap-legacy .m-sm-5 {
    margin: 4rem !important;
  }

  .bootstrap-legacy .mt-sm-5, .bootstrap-legacy .my-sm-5 {
    margin-top: 4rem !important;
  }

  .bootstrap-legacy .mr-sm-5, .bootstrap-legacy .mx-sm-5 {
    margin-right: 4rem !important;
  }

  .bootstrap-legacy .mb-sm-5, .bootstrap-legacy .my-sm-5 {
    margin-bottom: 4rem !important;
  }

  .bootstrap-legacy .ml-sm-5, .bootstrap-legacy .mx-sm-5 {
    margin-left: 4rem !important;
  }

  .bootstrap-legacy .m-sm-25 {
    margin: 0.25rem !important;
  }

  .bootstrap-legacy .mt-sm-25, .bootstrap-legacy .my-sm-25 {
    margin-top: 0.25rem !important;
  }

  .bootstrap-legacy .mr-sm-25, .bootstrap-legacy .mx-sm-25 {
    margin-right: 0.25rem !important;
  }

  .bootstrap-legacy .mb-sm-25, .bootstrap-legacy .my-sm-25 {
    margin-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .ml-sm-25, .bootstrap-legacy .mx-sm-25 {
    margin-left: 0.25rem !important;
  }

  .bootstrap-legacy .m-sm-50 {
    margin: 0.5rem !important;
  }

  .bootstrap-legacy .mt-sm-50, .bootstrap-legacy .my-sm-50 {
    margin-top: 0.5rem !important;
  }

  .bootstrap-legacy .mr-sm-50, .bootstrap-legacy .mx-sm-50 {
    margin-right: 0.5rem !important;
  }

  .bootstrap-legacy .mb-sm-50, .bootstrap-legacy .my-sm-50 {
    margin-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .ml-sm-50, .bootstrap-legacy .mx-sm-50 {
    margin-left: 0.5rem !important;
  }

  .bootstrap-legacy .m-sm-75 {
    margin: 0.75rem !important;
  }

  .bootstrap-legacy .mt-sm-75, .bootstrap-legacy .my-sm-75 {
    margin-top: 0.75rem !important;
  }

  .bootstrap-legacy .mr-sm-75, .bootstrap-legacy .mx-sm-75 {
    margin-right: 0.75rem !important;
  }

  .bootstrap-legacy .mb-sm-75, .bootstrap-legacy .my-sm-75 {
    margin-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .ml-sm-75, .bootstrap-legacy .mx-sm-75 {
    margin-left: 0.75rem !important;
  }

  .bootstrap-legacy .p-sm-0 {
    padding: 0 !important;
  }

  .bootstrap-legacy .pt-sm-0, .bootstrap-legacy .py-sm-0 {
    padding-top: 0 !important;
  }

  .bootstrap-legacy .pr-sm-0, .bootstrap-legacy .px-sm-0 {
    padding-right: 0 !important;
  }

  .bootstrap-legacy .pb-sm-0, .bootstrap-legacy .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .bootstrap-legacy .pl-sm-0, .bootstrap-legacy .px-sm-0 {
    padding-left: 0 !important;
  }

  .bootstrap-legacy .p-sm-1 {
    padding: 1rem !important;
  }

  .bootstrap-legacy .pt-sm-1, .bootstrap-legacy .py-sm-1 {
    padding-top: 1rem !important;
  }

  .bootstrap-legacy .pr-sm-1, .bootstrap-legacy .px-sm-1 {
    padding-right: 1rem !important;
  }

  .bootstrap-legacy .pb-sm-1, .bootstrap-legacy .py-sm-1 {
    padding-bottom: 1rem !important;
  }

  .bootstrap-legacy .pl-sm-1, .bootstrap-legacy .px-sm-1 {
    padding-left: 1rem !important;
  }

  .bootstrap-legacy .p-sm-2 {
    padding: 1.5rem !important;
  }

  .bootstrap-legacy .pt-sm-2, .bootstrap-legacy .py-sm-2 {
    padding-top: 1.5rem !important;
  }

  .bootstrap-legacy .pr-sm-2, .bootstrap-legacy .px-sm-2 {
    padding-right: 1.5rem !important;
  }

  .bootstrap-legacy .pb-sm-2, .bootstrap-legacy .py-sm-2 {
    padding-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .pl-sm-2, .bootstrap-legacy .px-sm-2 {
    padding-left: 1.5rem !important;
  }

  .bootstrap-legacy .p-sm-3 {
    padding: 3rem !important;
  }

  .bootstrap-legacy .pt-sm-3, .bootstrap-legacy .py-sm-3 {
    padding-top: 3rem !important;
  }

  .bootstrap-legacy .pr-sm-3, .bootstrap-legacy .px-sm-3 {
    padding-right: 3rem !important;
  }

  .bootstrap-legacy .pb-sm-3, .bootstrap-legacy .py-sm-3 {
    padding-bottom: 3rem !important;
  }

  .bootstrap-legacy .pl-sm-3, .bootstrap-legacy .px-sm-3 {
    padding-left: 3rem !important;
  }

  .bootstrap-legacy .p-sm-4 {
    padding: 3.5rem !important;
  }

  .bootstrap-legacy .pt-sm-4, .bootstrap-legacy .py-sm-4 {
    padding-top: 3.5rem !important;
  }

  .bootstrap-legacy .pr-sm-4, .bootstrap-legacy .px-sm-4 {
    padding-right: 3.5rem !important;
  }

  .bootstrap-legacy .pb-sm-4, .bootstrap-legacy .py-sm-4 {
    padding-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .pl-sm-4, .bootstrap-legacy .px-sm-4 {
    padding-left: 3.5rem !important;
  }

  .bootstrap-legacy .p-sm-5 {
    padding: 4rem !important;
  }

  .bootstrap-legacy .pt-sm-5, .bootstrap-legacy .py-sm-5 {
    padding-top: 4rem !important;
  }

  .bootstrap-legacy .pr-sm-5, .bootstrap-legacy .px-sm-5 {
    padding-right: 4rem !important;
  }

  .bootstrap-legacy .pb-sm-5, .bootstrap-legacy .py-sm-5 {
    padding-bottom: 4rem !important;
  }

  .bootstrap-legacy .pl-sm-5, .bootstrap-legacy .px-sm-5 {
    padding-left: 4rem !important;
  }

  .bootstrap-legacy .p-sm-25 {
    padding: 0.25rem !important;
  }

  .bootstrap-legacy .pt-sm-25, .bootstrap-legacy .py-sm-25 {
    padding-top: 0.25rem !important;
  }

  .bootstrap-legacy .pr-sm-25, .bootstrap-legacy .px-sm-25 {
    padding-right: 0.25rem !important;
  }

  .bootstrap-legacy .pb-sm-25, .bootstrap-legacy .py-sm-25 {
    padding-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .pl-sm-25, .bootstrap-legacy .px-sm-25 {
    padding-left: 0.25rem !important;
  }

  .bootstrap-legacy .p-sm-50 {
    padding: 0.5rem !important;
  }

  .bootstrap-legacy .pt-sm-50, .bootstrap-legacy .py-sm-50 {
    padding-top: 0.5rem !important;
  }

  .bootstrap-legacy .pr-sm-50, .bootstrap-legacy .px-sm-50 {
    padding-right: 0.5rem !important;
  }

  .bootstrap-legacy .pb-sm-50, .bootstrap-legacy .py-sm-50 {
    padding-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .pl-sm-50, .bootstrap-legacy .px-sm-50 {
    padding-left: 0.5rem !important;
  }

  .bootstrap-legacy .p-sm-75 {
    padding: 0.75rem !important;
  }

  .bootstrap-legacy .pt-sm-75, .bootstrap-legacy .py-sm-75 {
    padding-top: 0.75rem !important;
  }

  .bootstrap-legacy .pr-sm-75, .bootstrap-legacy .px-sm-75 {
    padding-right: 0.75rem !important;
  }

  .bootstrap-legacy .pb-sm-75, .bootstrap-legacy .py-sm-75 {
    padding-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .pl-sm-75, .bootstrap-legacy .px-sm-75 {
    padding-left: 0.75rem !important;
  }

  .bootstrap-legacy .m-sm-n1 {
    margin: -1rem !important;
  }

  .bootstrap-legacy .mt-sm-n1, .bootstrap-legacy .my-sm-n1 {
    margin-top: -1rem !important;
  }

  .bootstrap-legacy .mr-sm-n1, .bootstrap-legacy .mx-sm-n1 {
    margin-right: -1rem !important;
  }

  .bootstrap-legacy .mb-sm-n1, .bootstrap-legacy .my-sm-n1 {
    margin-bottom: -1rem !important;
  }

  .bootstrap-legacy .ml-sm-n1, .bootstrap-legacy .mx-sm-n1 {
    margin-left: -1rem !important;
  }

  .bootstrap-legacy .m-sm-n2 {
    margin: -1.5rem !important;
  }

  .bootstrap-legacy .mt-sm-n2, .bootstrap-legacy .my-sm-n2 {
    margin-top: -1.5rem !important;
  }

  .bootstrap-legacy .mr-sm-n2, .bootstrap-legacy .mx-sm-n2 {
    margin-right: -1.5rem !important;
  }

  .bootstrap-legacy .mb-sm-n2, .bootstrap-legacy .my-sm-n2 {
    margin-bottom: -1.5rem !important;
  }

  .bootstrap-legacy .ml-sm-n2, .bootstrap-legacy .mx-sm-n2 {
    margin-left: -1.5rem !important;
  }

  .bootstrap-legacy .m-sm-n3 {
    margin: -3rem !important;
  }

  .bootstrap-legacy .mt-sm-n3, .bootstrap-legacy .my-sm-n3 {
    margin-top: -3rem !important;
  }

  .bootstrap-legacy .mr-sm-n3, .bootstrap-legacy .mx-sm-n3 {
    margin-right: -3rem !important;
  }

  .bootstrap-legacy .mb-sm-n3, .bootstrap-legacy .my-sm-n3 {
    margin-bottom: -3rem !important;
  }

  .bootstrap-legacy .ml-sm-n3, .bootstrap-legacy .mx-sm-n3 {
    margin-left: -3rem !important;
  }

  .bootstrap-legacy .m-sm-n4 {
    margin: -3.5rem !important;
  }

  .bootstrap-legacy .mt-sm-n4, .bootstrap-legacy .my-sm-n4 {
    margin-top: -3.5rem !important;
  }

  .bootstrap-legacy .mr-sm-n4, .bootstrap-legacy .mx-sm-n4 {
    margin-right: -3.5rem !important;
  }

  .bootstrap-legacy .mb-sm-n4, .bootstrap-legacy .my-sm-n4 {
    margin-bottom: -3.5rem !important;
  }

  .bootstrap-legacy .ml-sm-n4, .bootstrap-legacy .mx-sm-n4 {
    margin-left: -3.5rem !important;
  }

  .bootstrap-legacy .m-sm-n5 {
    margin: -4rem !important;
  }

  .bootstrap-legacy .mt-sm-n5, .bootstrap-legacy .my-sm-n5 {
    margin-top: -4rem !important;
  }

  .bootstrap-legacy .mr-sm-n5, .bootstrap-legacy .mx-sm-n5 {
    margin-right: -4rem !important;
  }

  .bootstrap-legacy .mb-sm-n5, .bootstrap-legacy .my-sm-n5 {
    margin-bottom: -4rem !important;
  }

  .bootstrap-legacy .ml-sm-n5, .bootstrap-legacy .mx-sm-n5 {
    margin-left: -4rem !important;
  }

  .bootstrap-legacy .m-sm-n25 {
    margin: -0.25rem !important;
  }

  .bootstrap-legacy .mt-sm-n25, .bootstrap-legacy .my-sm-n25 {
    margin-top: -0.25rem !important;
  }

  .bootstrap-legacy .mr-sm-n25, .bootstrap-legacy .mx-sm-n25 {
    margin-right: -0.25rem !important;
  }

  .bootstrap-legacy .mb-sm-n25, .bootstrap-legacy .my-sm-n25 {
    margin-bottom: -0.25rem !important;
  }

  .bootstrap-legacy .ml-sm-n25, .bootstrap-legacy .mx-sm-n25 {
    margin-left: -0.25rem !important;
  }

  .bootstrap-legacy .m-sm-n50 {
    margin: -0.5rem !important;
  }

  .bootstrap-legacy .mt-sm-n50, .bootstrap-legacy .my-sm-n50 {
    margin-top: -0.5rem !important;
  }

  .bootstrap-legacy .mr-sm-n50, .bootstrap-legacy .mx-sm-n50 {
    margin-right: -0.5rem !important;
  }

  .bootstrap-legacy .mb-sm-n50, .bootstrap-legacy .my-sm-n50 {
    margin-bottom: -0.5rem !important;
  }

  .bootstrap-legacy .ml-sm-n50, .bootstrap-legacy .mx-sm-n50 {
    margin-left: -0.5rem !important;
  }

  .bootstrap-legacy .m-sm-n75 {
    margin: -0.75rem !important;
  }

  .bootstrap-legacy .mt-sm-n75, .bootstrap-legacy .my-sm-n75 {
    margin-top: -0.75rem !important;
  }

  .bootstrap-legacy .mr-sm-n75, .bootstrap-legacy .mx-sm-n75 {
    margin-right: -0.75rem !important;
  }

  .bootstrap-legacy .mb-sm-n75, .bootstrap-legacy .my-sm-n75 {
    margin-bottom: -0.75rem !important;
  }

  .bootstrap-legacy .ml-sm-n75, .bootstrap-legacy .mx-sm-n75 {
    margin-left: -0.75rem !important;
  }

  .bootstrap-legacy .m-sm-auto {
    margin: auto !important;
  }

  .bootstrap-legacy .mt-sm-auto, .bootstrap-legacy .my-sm-auto {
    margin-top: auto !important;
  }

  .bootstrap-legacy .mr-sm-auto, .bootstrap-legacy .mx-sm-auto {
    margin-right: auto !important;
  }

  .bootstrap-legacy .mb-sm-auto, .bootstrap-legacy .my-sm-auto {
    margin-bottom: auto !important;
  }

  .bootstrap-legacy .ml-sm-auto, .bootstrap-legacy .mx-sm-auto {
    margin-left: auto !important;
  }
}

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

  .bootstrap-legacy .mt-md-0, .bootstrap-legacy .my-md-0 {
    margin-top: 0 !important;
  }

  .bootstrap-legacy .mr-md-0, .bootstrap-legacy .mx-md-0 {
    margin-right: 0 !important;
  }

  .bootstrap-legacy .mb-md-0, .bootstrap-legacy .my-md-0 {
    margin-bottom: 0 !important;
  }

  .bootstrap-legacy .ml-md-0, .bootstrap-legacy .mx-md-0 {
    margin-left: 0 !important;
  }

  .bootstrap-legacy .m-md-1 {
    margin: 1rem !important;
  }

  .bootstrap-legacy .mt-md-1, .bootstrap-legacy .my-md-1 {
    margin-top: 1rem !important;
  }

  .bootstrap-legacy .mr-md-1, .bootstrap-legacy .mx-md-1 {
    margin-right: 1rem !important;
  }

  .bootstrap-legacy .mb-md-1, .bootstrap-legacy .my-md-1 {
    margin-bottom: 1rem !important;
  }

  .bootstrap-legacy .ml-md-1, .bootstrap-legacy .mx-md-1 {
    margin-left: 1rem !important;
  }

  .bootstrap-legacy .m-md-2 {
    margin: 1.5rem !important;
  }

  .bootstrap-legacy .mt-md-2, .bootstrap-legacy .my-md-2 {
    margin-top: 1.5rem !important;
  }

  .bootstrap-legacy .mr-md-2, .bootstrap-legacy .mx-md-2 {
    margin-right: 1.5rem !important;
  }

  .bootstrap-legacy .mb-md-2, .bootstrap-legacy .my-md-2 {
    margin-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .ml-md-2, .bootstrap-legacy .mx-md-2 {
    margin-left: 1.5rem !important;
  }

  .bootstrap-legacy .m-md-3 {
    margin: 3rem !important;
  }

  .bootstrap-legacy .mt-md-3, .bootstrap-legacy .my-md-3 {
    margin-top: 3rem !important;
  }

  .bootstrap-legacy .mr-md-3, .bootstrap-legacy .mx-md-3 {
    margin-right: 3rem !important;
  }

  .bootstrap-legacy .mb-md-3, .bootstrap-legacy .my-md-3 {
    margin-bottom: 3rem !important;
  }

  .bootstrap-legacy .ml-md-3, .bootstrap-legacy .mx-md-3 {
    margin-left: 3rem !important;
  }

  .bootstrap-legacy .m-md-4 {
    margin: 3.5rem !important;
  }

  .bootstrap-legacy .mt-md-4, .bootstrap-legacy .my-md-4 {
    margin-top: 3.5rem !important;
  }

  .bootstrap-legacy .mr-md-4, .bootstrap-legacy .mx-md-4 {
    margin-right: 3.5rem !important;
  }

  .bootstrap-legacy .mb-md-4, .bootstrap-legacy .my-md-4 {
    margin-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .ml-md-4, .bootstrap-legacy .mx-md-4 {
    margin-left: 3.5rem !important;
  }

  .bootstrap-legacy .m-md-5 {
    margin: 4rem !important;
  }

  .bootstrap-legacy .mt-md-5, .bootstrap-legacy .my-md-5 {
    margin-top: 4rem !important;
  }

  .bootstrap-legacy .mr-md-5, .bootstrap-legacy .mx-md-5 {
    margin-right: 4rem !important;
  }

  .bootstrap-legacy .mb-md-5, .bootstrap-legacy .my-md-5 {
    margin-bottom: 4rem !important;
  }

  .bootstrap-legacy .ml-md-5, .bootstrap-legacy .mx-md-5 {
    margin-left: 4rem !important;
  }

  .bootstrap-legacy .m-md-25 {
    margin: 0.25rem !important;
  }

  .bootstrap-legacy .mt-md-25, .bootstrap-legacy .my-md-25 {
    margin-top: 0.25rem !important;
  }

  .bootstrap-legacy .mr-md-25, .bootstrap-legacy .mx-md-25 {
    margin-right: 0.25rem !important;
  }

  .bootstrap-legacy .mb-md-25, .bootstrap-legacy .my-md-25 {
    margin-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .ml-md-25, .bootstrap-legacy .mx-md-25 {
    margin-left: 0.25rem !important;
  }

  .bootstrap-legacy .m-md-50 {
    margin: 0.5rem !important;
  }

  .bootstrap-legacy .mt-md-50, .bootstrap-legacy .my-md-50 {
    margin-top: 0.5rem !important;
  }

  .bootstrap-legacy .mr-md-50, .bootstrap-legacy .mx-md-50 {
    margin-right: 0.5rem !important;
  }

  .bootstrap-legacy .mb-md-50, .bootstrap-legacy .my-md-50 {
    margin-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .ml-md-50, .bootstrap-legacy .mx-md-50 {
    margin-left: 0.5rem !important;
  }

  .bootstrap-legacy .m-md-75 {
    margin: 0.75rem !important;
  }

  .bootstrap-legacy .mt-md-75, .bootstrap-legacy .my-md-75 {
    margin-top: 0.75rem !important;
  }

  .bootstrap-legacy .mr-md-75, .bootstrap-legacy .mx-md-75 {
    margin-right: 0.75rem !important;
  }

  .bootstrap-legacy .mb-md-75, .bootstrap-legacy .my-md-75 {
    margin-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .ml-md-75, .bootstrap-legacy .mx-md-75 {
    margin-left: 0.75rem !important;
  }

  .bootstrap-legacy .p-md-0 {
    padding: 0 !important;
  }

  .bootstrap-legacy .pt-md-0, .bootstrap-legacy .py-md-0 {
    padding-top: 0 !important;
  }

  .bootstrap-legacy .pr-md-0, .bootstrap-legacy .px-md-0 {
    padding-right: 0 !important;
  }

  .bootstrap-legacy .pb-md-0, .bootstrap-legacy .py-md-0 {
    padding-bottom: 0 !important;
  }

  .bootstrap-legacy .pl-md-0, .bootstrap-legacy .px-md-0 {
    padding-left: 0 !important;
  }

  .bootstrap-legacy .p-md-1 {
    padding: 1rem !important;
  }

  .bootstrap-legacy .pt-md-1, .bootstrap-legacy .py-md-1 {
    padding-top: 1rem !important;
  }

  .bootstrap-legacy .pr-md-1, .bootstrap-legacy .px-md-1 {
    padding-right: 1rem !important;
  }

  .bootstrap-legacy .pb-md-1, .bootstrap-legacy .py-md-1 {
    padding-bottom: 1rem !important;
  }

  .bootstrap-legacy .pl-md-1, .bootstrap-legacy .px-md-1 {
    padding-left: 1rem !important;
  }

  .bootstrap-legacy .p-md-2 {
    padding: 1.5rem !important;
  }

  .bootstrap-legacy .pt-md-2, .bootstrap-legacy .py-md-2 {
    padding-top: 1.5rem !important;
  }

  .bootstrap-legacy .pr-md-2, .bootstrap-legacy .px-md-2 {
    padding-right: 1.5rem !important;
  }

  .bootstrap-legacy .pb-md-2, .bootstrap-legacy .py-md-2 {
    padding-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .pl-md-2, .bootstrap-legacy .px-md-2 {
    padding-left: 1.5rem !important;
  }

  .bootstrap-legacy .p-md-3 {
    padding: 3rem !important;
  }

  .bootstrap-legacy .pt-md-3, .bootstrap-legacy .py-md-3 {
    padding-top: 3rem !important;
  }

  .bootstrap-legacy .pr-md-3, .bootstrap-legacy .px-md-3 {
    padding-right: 3rem !important;
  }

  .bootstrap-legacy .pb-md-3, .bootstrap-legacy .py-md-3 {
    padding-bottom: 3rem !important;
  }

  .bootstrap-legacy .pl-md-3, .bootstrap-legacy .px-md-3 {
    padding-left: 3rem !important;
  }

  .bootstrap-legacy .p-md-4 {
    padding: 3.5rem !important;
  }

  .bootstrap-legacy .pt-md-4, .bootstrap-legacy .py-md-4 {
    padding-top: 3.5rem !important;
  }

  .bootstrap-legacy .pr-md-4, .bootstrap-legacy .px-md-4 {
    padding-right: 3.5rem !important;
  }

  .bootstrap-legacy .pb-md-4, .bootstrap-legacy .py-md-4 {
    padding-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .pl-md-4, .bootstrap-legacy .px-md-4 {
    padding-left: 3.5rem !important;
  }

  .bootstrap-legacy .p-md-5 {
    padding: 4rem !important;
  }

  .bootstrap-legacy .pt-md-5, .bootstrap-legacy .py-md-5 {
    padding-top: 4rem !important;
  }

  .bootstrap-legacy .pr-md-5, .bootstrap-legacy .px-md-5 {
    padding-right: 4rem !important;
  }

  .bootstrap-legacy .pb-md-5, .bootstrap-legacy .py-md-5 {
    padding-bottom: 4rem !important;
  }

  .bootstrap-legacy .pl-md-5, .bootstrap-legacy .px-md-5 {
    padding-left: 4rem !important;
  }

  .bootstrap-legacy .p-md-25 {
    padding: 0.25rem !important;
  }

  .bootstrap-legacy .pt-md-25, .bootstrap-legacy .py-md-25 {
    padding-top: 0.25rem !important;
  }

  .bootstrap-legacy .pr-md-25, .bootstrap-legacy .px-md-25 {
    padding-right: 0.25rem !important;
  }

  .bootstrap-legacy .pb-md-25, .bootstrap-legacy .py-md-25 {
    padding-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .pl-md-25, .bootstrap-legacy .px-md-25 {
    padding-left: 0.25rem !important;
  }

  .bootstrap-legacy .p-md-50 {
    padding: 0.5rem !important;
  }

  .bootstrap-legacy .pt-md-50, .bootstrap-legacy .py-md-50 {
    padding-top: 0.5rem !important;
  }

  .bootstrap-legacy .pr-md-50, .bootstrap-legacy .px-md-50 {
    padding-right: 0.5rem !important;
  }

  .bootstrap-legacy .pb-md-50, .bootstrap-legacy .py-md-50 {
    padding-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .pl-md-50, .bootstrap-legacy .px-md-50 {
    padding-left: 0.5rem !important;
  }

  .bootstrap-legacy .p-md-75 {
    padding: 0.75rem !important;
  }

  .bootstrap-legacy .pt-md-75, .bootstrap-legacy .py-md-75 {
    padding-top: 0.75rem !important;
  }

  .bootstrap-legacy .pr-md-75, .bootstrap-legacy .px-md-75 {
    padding-right: 0.75rem !important;
  }

  .bootstrap-legacy .pb-md-75, .bootstrap-legacy .py-md-75 {
    padding-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .pl-md-75, .bootstrap-legacy .px-md-75 {
    padding-left: 0.75rem !important;
  }

  .bootstrap-legacy .m-md-n1 {
    margin: -1rem !important;
  }

  .bootstrap-legacy .mt-md-n1, .bootstrap-legacy .my-md-n1 {
    margin-top: -1rem !important;
  }

  .bootstrap-legacy .mr-md-n1, .bootstrap-legacy .mx-md-n1 {
    margin-right: -1rem !important;
  }

  .bootstrap-legacy .mb-md-n1, .bootstrap-legacy .my-md-n1 {
    margin-bottom: -1rem !important;
  }

  .bootstrap-legacy .ml-md-n1, .bootstrap-legacy .mx-md-n1 {
    margin-left: -1rem !important;
  }

  .bootstrap-legacy .m-md-n2 {
    margin: -1.5rem !important;
  }

  .bootstrap-legacy .mt-md-n2, .bootstrap-legacy .my-md-n2 {
    margin-top: -1.5rem !important;
  }

  .bootstrap-legacy .mr-md-n2, .bootstrap-legacy .mx-md-n2 {
    margin-right: -1.5rem !important;
  }

  .bootstrap-legacy .mb-md-n2, .bootstrap-legacy .my-md-n2 {
    margin-bottom: -1.5rem !important;
  }

  .bootstrap-legacy .ml-md-n2, .bootstrap-legacy .mx-md-n2 {
    margin-left: -1.5rem !important;
  }

  .bootstrap-legacy .m-md-n3 {
    margin: -3rem !important;
  }

  .bootstrap-legacy .mt-md-n3, .bootstrap-legacy .my-md-n3 {
    margin-top: -3rem !important;
  }

  .bootstrap-legacy .mr-md-n3, .bootstrap-legacy .mx-md-n3 {
    margin-right: -3rem !important;
  }

  .bootstrap-legacy .mb-md-n3, .bootstrap-legacy .my-md-n3 {
    margin-bottom: -3rem !important;
  }

  .bootstrap-legacy .ml-md-n3, .bootstrap-legacy .mx-md-n3 {
    margin-left: -3rem !important;
  }

  .bootstrap-legacy .m-md-n4 {
    margin: -3.5rem !important;
  }

  .bootstrap-legacy .mt-md-n4, .bootstrap-legacy .my-md-n4 {
    margin-top: -3.5rem !important;
  }

  .bootstrap-legacy .mr-md-n4, .bootstrap-legacy .mx-md-n4 {
    margin-right: -3.5rem !important;
  }

  .bootstrap-legacy .mb-md-n4, .bootstrap-legacy .my-md-n4 {
    margin-bottom: -3.5rem !important;
  }

  .bootstrap-legacy .ml-md-n4, .bootstrap-legacy .mx-md-n4 {
    margin-left: -3.5rem !important;
  }

  .bootstrap-legacy .m-md-n5 {
    margin: -4rem !important;
  }

  .bootstrap-legacy .mt-md-n5, .bootstrap-legacy .my-md-n5 {
    margin-top: -4rem !important;
  }

  .bootstrap-legacy .mr-md-n5, .bootstrap-legacy .mx-md-n5 {
    margin-right: -4rem !important;
  }

  .bootstrap-legacy .mb-md-n5, .bootstrap-legacy .my-md-n5 {
    margin-bottom: -4rem !important;
  }

  .bootstrap-legacy .ml-md-n5, .bootstrap-legacy .mx-md-n5 {
    margin-left: -4rem !important;
  }

  .bootstrap-legacy .m-md-n25 {
    margin: -0.25rem !important;
  }

  .bootstrap-legacy .mt-md-n25, .bootstrap-legacy .my-md-n25 {
    margin-top: -0.25rem !important;
  }

  .bootstrap-legacy .mr-md-n25, .bootstrap-legacy .mx-md-n25 {
    margin-right: -0.25rem !important;
  }

  .bootstrap-legacy .mb-md-n25, .bootstrap-legacy .my-md-n25 {
    margin-bottom: -0.25rem !important;
  }

  .bootstrap-legacy .ml-md-n25, .bootstrap-legacy .mx-md-n25 {
    margin-left: -0.25rem !important;
  }

  .bootstrap-legacy .m-md-n50 {
    margin: -0.5rem !important;
  }

  .bootstrap-legacy .mt-md-n50, .bootstrap-legacy .my-md-n50 {
    margin-top: -0.5rem !important;
  }

  .bootstrap-legacy .mr-md-n50, .bootstrap-legacy .mx-md-n50 {
    margin-right: -0.5rem !important;
  }

  .bootstrap-legacy .mb-md-n50, .bootstrap-legacy .my-md-n50 {
    margin-bottom: -0.5rem !important;
  }

  .bootstrap-legacy .ml-md-n50, .bootstrap-legacy .mx-md-n50 {
    margin-left: -0.5rem !important;
  }

  .bootstrap-legacy .m-md-n75 {
    margin: -0.75rem !important;
  }

  .bootstrap-legacy .mt-md-n75, .bootstrap-legacy .my-md-n75 {
    margin-top: -0.75rem !important;
  }

  .bootstrap-legacy .mr-md-n75, .bootstrap-legacy .mx-md-n75 {
    margin-right: -0.75rem !important;
  }

  .bootstrap-legacy .mb-md-n75, .bootstrap-legacy .my-md-n75 {
    margin-bottom: -0.75rem !important;
  }

  .bootstrap-legacy .ml-md-n75, .bootstrap-legacy .mx-md-n75 {
    margin-left: -0.75rem !important;
  }

  .bootstrap-legacy .m-md-auto {
    margin: auto !important;
  }

  .bootstrap-legacy .mt-md-auto, .bootstrap-legacy .my-md-auto {
    margin-top: auto !important;
  }

  .bootstrap-legacy .mr-md-auto, .bootstrap-legacy .mx-md-auto {
    margin-right: auto !important;
  }

  .bootstrap-legacy .mb-md-auto, .bootstrap-legacy .my-md-auto {
    margin-bottom: auto !important;
  }

  .bootstrap-legacy .ml-md-auto, .bootstrap-legacy .mx-md-auto {
    margin-left: auto !important;
  }
}

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

  .bootstrap-legacy .mt-lg-0, .bootstrap-legacy .my-lg-0 {
    margin-top: 0 !important;
  }

  .bootstrap-legacy .mr-lg-0, .bootstrap-legacy .mx-lg-0 {
    margin-right: 0 !important;
  }

  .bootstrap-legacy .mb-lg-0, .bootstrap-legacy .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .bootstrap-legacy .ml-lg-0, .bootstrap-legacy .mx-lg-0 {
    margin-left: 0 !important;
  }

  .bootstrap-legacy .m-lg-1 {
    margin: 1rem !important;
  }

  .bootstrap-legacy .mt-lg-1, .bootstrap-legacy .my-lg-1 {
    margin-top: 1rem !important;
  }

  .bootstrap-legacy .mr-lg-1, .bootstrap-legacy .mx-lg-1 {
    margin-right: 1rem !important;
  }

  .bootstrap-legacy .mb-lg-1, .bootstrap-legacy .my-lg-1 {
    margin-bottom: 1rem !important;
  }

  .bootstrap-legacy .ml-lg-1, .bootstrap-legacy .mx-lg-1 {
    margin-left: 1rem !important;
  }

  .bootstrap-legacy .m-lg-2 {
    margin: 1.5rem !important;
  }

  .bootstrap-legacy .mt-lg-2, .bootstrap-legacy .my-lg-2 {
    margin-top: 1.5rem !important;
  }

  .bootstrap-legacy .mr-lg-2, .bootstrap-legacy .mx-lg-2 {
    margin-right: 1.5rem !important;
  }

  .bootstrap-legacy .mb-lg-2, .bootstrap-legacy .my-lg-2 {
    margin-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .ml-lg-2, .bootstrap-legacy .mx-lg-2 {
    margin-left: 1.5rem !important;
  }

  .bootstrap-legacy .m-lg-3 {
    margin: 3rem !important;
  }

  .bootstrap-legacy .mt-lg-3, .bootstrap-legacy .my-lg-3 {
    margin-top: 3rem !important;
  }

  .bootstrap-legacy .mr-lg-3, .bootstrap-legacy .mx-lg-3 {
    margin-right: 3rem !important;
  }

  .bootstrap-legacy .mb-lg-3, .bootstrap-legacy .my-lg-3 {
    margin-bottom: 3rem !important;
  }

  .bootstrap-legacy .ml-lg-3, .bootstrap-legacy .mx-lg-3 {
    margin-left: 3rem !important;
  }

  .bootstrap-legacy .m-lg-4 {
    margin: 3.5rem !important;
  }

  .bootstrap-legacy .mt-lg-4, .bootstrap-legacy .my-lg-4 {
    margin-top: 3.5rem !important;
  }

  .bootstrap-legacy .mr-lg-4, .bootstrap-legacy .mx-lg-4 {
    margin-right: 3.5rem !important;
  }

  .bootstrap-legacy .mb-lg-4, .bootstrap-legacy .my-lg-4 {
    margin-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .ml-lg-4, .bootstrap-legacy .mx-lg-4 {
    margin-left: 3.5rem !important;
  }

  .bootstrap-legacy .m-lg-5 {
    margin: 4rem !important;
  }

  .bootstrap-legacy .mt-lg-5, .bootstrap-legacy .my-lg-5 {
    margin-top: 4rem !important;
  }

  .bootstrap-legacy .mr-lg-5, .bootstrap-legacy .mx-lg-5 {
    margin-right: 4rem !important;
  }

  .bootstrap-legacy .mb-lg-5, .bootstrap-legacy .my-lg-5 {
    margin-bottom: 4rem !important;
  }

  .bootstrap-legacy .ml-lg-5, .bootstrap-legacy .mx-lg-5 {
    margin-left: 4rem !important;
  }

  .bootstrap-legacy .m-lg-25 {
    margin: 0.25rem !important;
  }

  .bootstrap-legacy .mt-lg-25, .bootstrap-legacy .my-lg-25 {
    margin-top: 0.25rem !important;
  }

  .bootstrap-legacy .mr-lg-25, .bootstrap-legacy .mx-lg-25 {
    margin-right: 0.25rem !important;
  }

  .bootstrap-legacy .mb-lg-25, .bootstrap-legacy .my-lg-25 {
    margin-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .ml-lg-25, .bootstrap-legacy .mx-lg-25 {
    margin-left: 0.25rem !important;
  }

  .bootstrap-legacy .m-lg-50 {
    margin: 0.5rem !important;
  }

  .bootstrap-legacy .mt-lg-50, .bootstrap-legacy .my-lg-50 {
    margin-top: 0.5rem !important;
  }

  .bootstrap-legacy .mr-lg-50, .bootstrap-legacy .mx-lg-50 {
    margin-right: 0.5rem !important;
  }

  .bootstrap-legacy .mb-lg-50, .bootstrap-legacy .my-lg-50 {
    margin-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .ml-lg-50, .bootstrap-legacy .mx-lg-50 {
    margin-left: 0.5rem !important;
  }

  .bootstrap-legacy .m-lg-75 {
    margin: 0.75rem !important;
  }

  .bootstrap-legacy .mt-lg-75, .bootstrap-legacy .my-lg-75 {
    margin-top: 0.75rem !important;
  }

  .bootstrap-legacy .mr-lg-75, .bootstrap-legacy .mx-lg-75 {
    margin-right: 0.75rem !important;
  }

  .bootstrap-legacy .mb-lg-75, .bootstrap-legacy .my-lg-75 {
    margin-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .ml-lg-75, .bootstrap-legacy .mx-lg-75 {
    margin-left: 0.75rem !important;
  }

  .bootstrap-legacy .p-lg-0 {
    padding: 0 !important;
  }

  .bootstrap-legacy .pt-lg-0, .bootstrap-legacy .py-lg-0 {
    padding-top: 0 !important;
  }

  .bootstrap-legacy .pr-lg-0, .bootstrap-legacy .px-lg-0 {
    padding-right: 0 !important;
  }

  .bootstrap-legacy .pb-lg-0, .bootstrap-legacy .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .bootstrap-legacy .pl-lg-0, .bootstrap-legacy .px-lg-0 {
    padding-left: 0 !important;
  }

  .bootstrap-legacy .p-lg-1 {
    padding: 1rem !important;
  }

  .bootstrap-legacy .pt-lg-1, .bootstrap-legacy .py-lg-1 {
    padding-top: 1rem !important;
  }

  .bootstrap-legacy .pr-lg-1, .bootstrap-legacy .px-lg-1 {
    padding-right: 1rem !important;
  }

  .bootstrap-legacy .pb-lg-1, .bootstrap-legacy .py-lg-1 {
    padding-bottom: 1rem !important;
  }

  .bootstrap-legacy .pl-lg-1, .bootstrap-legacy .px-lg-1 {
    padding-left: 1rem !important;
  }

  .bootstrap-legacy .p-lg-2 {
    padding: 1.5rem !important;
  }

  .bootstrap-legacy .pt-lg-2, .bootstrap-legacy .py-lg-2 {
    padding-top: 1.5rem !important;
  }

  .bootstrap-legacy .pr-lg-2, .bootstrap-legacy .px-lg-2 {
    padding-right: 1.5rem !important;
  }

  .bootstrap-legacy .pb-lg-2, .bootstrap-legacy .py-lg-2 {
    padding-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .pl-lg-2, .bootstrap-legacy .px-lg-2 {
    padding-left: 1.5rem !important;
  }

  .bootstrap-legacy .p-lg-3 {
    padding: 3rem !important;
  }

  .bootstrap-legacy .pt-lg-3, .bootstrap-legacy .py-lg-3 {
    padding-top: 3rem !important;
  }

  .bootstrap-legacy .pr-lg-3, .bootstrap-legacy .px-lg-3 {
    padding-right: 3rem !important;
  }

  .bootstrap-legacy .pb-lg-3, .bootstrap-legacy .py-lg-3 {
    padding-bottom: 3rem !important;
  }

  .bootstrap-legacy .pl-lg-3, .bootstrap-legacy .px-lg-3 {
    padding-left: 3rem !important;
  }

  .bootstrap-legacy .p-lg-4 {
    padding: 3.5rem !important;
  }

  .bootstrap-legacy .pt-lg-4, .bootstrap-legacy .py-lg-4 {
    padding-top: 3.5rem !important;
  }

  .bootstrap-legacy .pr-lg-4, .bootstrap-legacy .px-lg-4 {
    padding-right: 3.5rem !important;
  }

  .bootstrap-legacy .pb-lg-4, .bootstrap-legacy .py-lg-4 {
    padding-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .pl-lg-4, .bootstrap-legacy .px-lg-4 {
    padding-left: 3.5rem !important;
  }

  .bootstrap-legacy .p-lg-5 {
    padding: 4rem !important;
  }

  .bootstrap-legacy .pt-lg-5, .bootstrap-legacy .py-lg-5 {
    padding-top: 4rem !important;
  }

  .bootstrap-legacy .pr-lg-5, .bootstrap-legacy .px-lg-5 {
    padding-right: 4rem !important;
  }

  .bootstrap-legacy .pb-lg-5, .bootstrap-legacy .py-lg-5 {
    padding-bottom: 4rem !important;
  }

  .bootstrap-legacy .pl-lg-5, .bootstrap-legacy .px-lg-5 {
    padding-left: 4rem !important;
  }

  .bootstrap-legacy .p-lg-25 {
    padding: 0.25rem !important;
  }

  .bootstrap-legacy .pt-lg-25, .bootstrap-legacy .py-lg-25 {
    padding-top: 0.25rem !important;
  }

  .bootstrap-legacy .pr-lg-25, .bootstrap-legacy .px-lg-25 {
    padding-right: 0.25rem !important;
  }

  .bootstrap-legacy .pb-lg-25, .bootstrap-legacy .py-lg-25 {
    padding-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .pl-lg-25, .bootstrap-legacy .px-lg-25 {
    padding-left: 0.25rem !important;
  }

  .bootstrap-legacy .p-lg-50 {
    padding: 0.5rem !important;
  }

  .bootstrap-legacy .pt-lg-50, .bootstrap-legacy .py-lg-50 {
    padding-top: 0.5rem !important;
  }

  .bootstrap-legacy .pr-lg-50, .bootstrap-legacy .px-lg-50 {
    padding-right: 0.5rem !important;
  }

  .bootstrap-legacy .pb-lg-50, .bootstrap-legacy .py-lg-50 {
    padding-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .pl-lg-50, .bootstrap-legacy .px-lg-50 {
    padding-left: 0.5rem !important;
  }

  .bootstrap-legacy .p-lg-75 {
    padding: 0.75rem !important;
  }

  .bootstrap-legacy .pt-lg-75, .bootstrap-legacy .py-lg-75 {
    padding-top: 0.75rem !important;
  }

  .bootstrap-legacy .pr-lg-75, .bootstrap-legacy .px-lg-75 {
    padding-right: 0.75rem !important;
  }

  .bootstrap-legacy .pb-lg-75, .bootstrap-legacy .py-lg-75 {
    padding-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .pl-lg-75, .bootstrap-legacy .px-lg-75 {
    padding-left: 0.75rem !important;
  }

  .bootstrap-legacy .m-lg-n1 {
    margin: -1rem !important;
  }

  .bootstrap-legacy .mt-lg-n1, .bootstrap-legacy .my-lg-n1 {
    margin-top: -1rem !important;
  }

  .bootstrap-legacy .mr-lg-n1, .bootstrap-legacy .mx-lg-n1 {
    margin-right: -1rem !important;
  }

  .bootstrap-legacy .mb-lg-n1, .bootstrap-legacy .my-lg-n1 {
    margin-bottom: -1rem !important;
  }

  .bootstrap-legacy .ml-lg-n1, .bootstrap-legacy .mx-lg-n1 {
    margin-left: -1rem !important;
  }

  .bootstrap-legacy .m-lg-n2 {
    margin: -1.5rem !important;
  }

  .bootstrap-legacy .mt-lg-n2, .bootstrap-legacy .my-lg-n2 {
    margin-top: -1.5rem !important;
  }

  .bootstrap-legacy .mr-lg-n2, .bootstrap-legacy .mx-lg-n2 {
    margin-right: -1.5rem !important;
  }

  .bootstrap-legacy .mb-lg-n2, .bootstrap-legacy .my-lg-n2 {
    margin-bottom: -1.5rem !important;
  }

  .bootstrap-legacy .ml-lg-n2, .bootstrap-legacy .mx-lg-n2 {
    margin-left: -1.5rem !important;
  }

  .bootstrap-legacy .m-lg-n3 {
    margin: -3rem !important;
  }

  .bootstrap-legacy .mt-lg-n3, .bootstrap-legacy .my-lg-n3 {
    margin-top: -3rem !important;
  }

  .bootstrap-legacy .mr-lg-n3, .bootstrap-legacy .mx-lg-n3 {
    margin-right: -3rem !important;
  }

  .bootstrap-legacy .mb-lg-n3, .bootstrap-legacy .my-lg-n3 {
    margin-bottom: -3rem !important;
  }

  .bootstrap-legacy .ml-lg-n3, .bootstrap-legacy .mx-lg-n3 {
    margin-left: -3rem !important;
  }

  .bootstrap-legacy .m-lg-n4 {
    margin: -3.5rem !important;
  }

  .bootstrap-legacy .mt-lg-n4, .bootstrap-legacy .my-lg-n4 {
    margin-top: -3.5rem !important;
  }

  .bootstrap-legacy .mr-lg-n4, .bootstrap-legacy .mx-lg-n4 {
    margin-right: -3.5rem !important;
  }

  .bootstrap-legacy .mb-lg-n4, .bootstrap-legacy .my-lg-n4 {
    margin-bottom: -3.5rem !important;
  }

  .bootstrap-legacy .ml-lg-n4, .bootstrap-legacy .mx-lg-n4 {
    margin-left: -3.5rem !important;
  }

  .bootstrap-legacy .m-lg-n5 {
    margin: -4rem !important;
  }

  .bootstrap-legacy .mt-lg-n5, .bootstrap-legacy .my-lg-n5 {
    margin-top: -4rem !important;
  }

  .bootstrap-legacy .mr-lg-n5, .bootstrap-legacy .mx-lg-n5 {
    margin-right: -4rem !important;
  }

  .bootstrap-legacy .mb-lg-n5, .bootstrap-legacy .my-lg-n5 {
    margin-bottom: -4rem !important;
  }

  .bootstrap-legacy .ml-lg-n5, .bootstrap-legacy .mx-lg-n5 {
    margin-left: -4rem !important;
  }

  .bootstrap-legacy .m-lg-n25 {
    margin: -0.25rem !important;
  }

  .bootstrap-legacy .mt-lg-n25, .bootstrap-legacy .my-lg-n25 {
    margin-top: -0.25rem !important;
  }

  .bootstrap-legacy .mr-lg-n25, .bootstrap-legacy .mx-lg-n25 {
    margin-right: -0.25rem !important;
  }

  .bootstrap-legacy .mb-lg-n25, .bootstrap-legacy .my-lg-n25 {
    margin-bottom: -0.25rem !important;
  }

  .bootstrap-legacy .ml-lg-n25, .bootstrap-legacy .mx-lg-n25 {
    margin-left: -0.25rem !important;
  }

  .bootstrap-legacy .m-lg-n50 {
    margin: -0.5rem !important;
  }

  .bootstrap-legacy .mt-lg-n50, .bootstrap-legacy .my-lg-n50 {
    margin-top: -0.5rem !important;
  }

  .bootstrap-legacy .mr-lg-n50, .bootstrap-legacy .mx-lg-n50 {
    margin-right: -0.5rem !important;
  }

  .bootstrap-legacy .mb-lg-n50, .bootstrap-legacy .my-lg-n50 {
    margin-bottom: -0.5rem !important;
  }

  .bootstrap-legacy .ml-lg-n50, .bootstrap-legacy .mx-lg-n50 {
    margin-left: -0.5rem !important;
  }

  .bootstrap-legacy .m-lg-n75 {
    margin: -0.75rem !important;
  }

  .bootstrap-legacy .mt-lg-n75, .bootstrap-legacy .my-lg-n75 {
    margin-top: -0.75rem !important;
  }

  .bootstrap-legacy .mr-lg-n75, .bootstrap-legacy .mx-lg-n75 {
    margin-right: -0.75rem !important;
  }

  .bootstrap-legacy .mb-lg-n75, .bootstrap-legacy .my-lg-n75 {
    margin-bottom: -0.75rem !important;
  }

  .bootstrap-legacy .ml-lg-n75, .bootstrap-legacy .mx-lg-n75 {
    margin-left: -0.75rem !important;
  }

  .bootstrap-legacy .m-lg-auto {
    margin: auto !important;
  }

  .bootstrap-legacy .mt-lg-auto, .bootstrap-legacy .my-lg-auto {
    margin-top: auto !important;
  }

  .bootstrap-legacy .mr-lg-auto, .bootstrap-legacy .mx-lg-auto {
    margin-right: auto !important;
  }

  .bootstrap-legacy .mb-lg-auto, .bootstrap-legacy .my-lg-auto {
    margin-bottom: auto !important;
  }

  .bootstrap-legacy .ml-lg-auto, .bootstrap-legacy .mx-lg-auto {
    margin-left: auto !important;
  }
}

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

  .bootstrap-legacy .mt-xl-0, .bootstrap-legacy .my-xl-0 {
    margin-top: 0 !important;
  }

  .bootstrap-legacy .mr-xl-0, .bootstrap-legacy .mx-xl-0 {
    margin-right: 0 !important;
  }

  .bootstrap-legacy .mb-xl-0, .bootstrap-legacy .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .bootstrap-legacy .ml-xl-0, .bootstrap-legacy .mx-xl-0 {
    margin-left: 0 !important;
  }

  .bootstrap-legacy .m-xl-1 {
    margin: 1rem !important;
  }

  .bootstrap-legacy .mt-xl-1, .bootstrap-legacy .my-xl-1 {
    margin-top: 1rem !important;
  }

  .bootstrap-legacy .mr-xl-1, .bootstrap-legacy .mx-xl-1 {
    margin-right: 1rem !important;
  }

  .bootstrap-legacy .mb-xl-1, .bootstrap-legacy .my-xl-1 {
    margin-bottom: 1rem !important;
  }

  .bootstrap-legacy .ml-xl-1, .bootstrap-legacy .mx-xl-1 {
    margin-left: 1rem !important;
  }

  .bootstrap-legacy .m-xl-2 {
    margin: 1.5rem !important;
  }

  .bootstrap-legacy .mt-xl-2, .bootstrap-legacy .my-xl-2 {
    margin-top: 1.5rem !important;
  }

  .bootstrap-legacy .mr-xl-2, .bootstrap-legacy .mx-xl-2 {
    margin-right: 1.5rem !important;
  }

  .bootstrap-legacy .mb-xl-2, .bootstrap-legacy .my-xl-2 {
    margin-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .ml-xl-2, .bootstrap-legacy .mx-xl-2 {
    margin-left: 1.5rem !important;
  }

  .bootstrap-legacy .m-xl-3 {
    margin: 3rem !important;
  }

  .bootstrap-legacy .mt-xl-3, .bootstrap-legacy .my-xl-3 {
    margin-top: 3rem !important;
  }

  .bootstrap-legacy .mr-xl-3, .bootstrap-legacy .mx-xl-3 {
    margin-right: 3rem !important;
  }

  .bootstrap-legacy .mb-xl-3, .bootstrap-legacy .my-xl-3 {
    margin-bottom: 3rem !important;
  }

  .bootstrap-legacy .ml-xl-3, .bootstrap-legacy .mx-xl-3 {
    margin-left: 3rem !important;
  }

  .bootstrap-legacy .m-xl-4 {
    margin: 3.5rem !important;
  }

  .bootstrap-legacy .mt-xl-4, .bootstrap-legacy .my-xl-4 {
    margin-top: 3.5rem !important;
  }

  .bootstrap-legacy .mr-xl-4, .bootstrap-legacy .mx-xl-4 {
    margin-right: 3.5rem !important;
  }

  .bootstrap-legacy .mb-xl-4, .bootstrap-legacy .my-xl-4 {
    margin-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .ml-xl-4, .bootstrap-legacy .mx-xl-4 {
    margin-left: 3.5rem !important;
  }

  .bootstrap-legacy .m-xl-5 {
    margin: 4rem !important;
  }

  .bootstrap-legacy .mt-xl-5, .bootstrap-legacy .my-xl-5 {
    margin-top: 4rem !important;
  }

  .bootstrap-legacy .mr-xl-5, .bootstrap-legacy .mx-xl-5 {
    margin-right: 4rem !important;
  }

  .bootstrap-legacy .mb-xl-5, .bootstrap-legacy .my-xl-5 {
    margin-bottom: 4rem !important;
  }

  .bootstrap-legacy .ml-xl-5, .bootstrap-legacy .mx-xl-5 {
    margin-left: 4rem !important;
  }

  .bootstrap-legacy .m-xl-25 {
    margin: 0.25rem !important;
  }

  .bootstrap-legacy .mt-xl-25, .bootstrap-legacy .my-xl-25 {
    margin-top: 0.25rem !important;
  }

  .bootstrap-legacy .mr-xl-25, .bootstrap-legacy .mx-xl-25 {
    margin-right: 0.25rem !important;
  }

  .bootstrap-legacy .mb-xl-25, .bootstrap-legacy .my-xl-25 {
    margin-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .ml-xl-25, .bootstrap-legacy .mx-xl-25 {
    margin-left: 0.25rem !important;
  }

  .bootstrap-legacy .m-xl-50 {
    margin: 0.5rem !important;
  }

  .bootstrap-legacy .mt-xl-50, .bootstrap-legacy .my-xl-50 {
    margin-top: 0.5rem !important;
  }

  .bootstrap-legacy .mr-xl-50, .bootstrap-legacy .mx-xl-50 {
    margin-right: 0.5rem !important;
  }

  .bootstrap-legacy .mb-xl-50, .bootstrap-legacy .my-xl-50 {
    margin-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .ml-xl-50, .bootstrap-legacy .mx-xl-50 {
    margin-left: 0.5rem !important;
  }

  .bootstrap-legacy .m-xl-75 {
    margin: 0.75rem !important;
  }

  .bootstrap-legacy .mt-xl-75, .bootstrap-legacy .my-xl-75 {
    margin-top: 0.75rem !important;
  }

  .bootstrap-legacy .mr-xl-75, .bootstrap-legacy .mx-xl-75 {
    margin-right: 0.75rem !important;
  }

  .bootstrap-legacy .mb-xl-75, .bootstrap-legacy .my-xl-75 {
    margin-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .ml-xl-75, .bootstrap-legacy .mx-xl-75 {
    margin-left: 0.75rem !important;
  }

  .bootstrap-legacy .p-xl-0 {
    padding: 0 !important;
  }

  .bootstrap-legacy .pt-xl-0, .bootstrap-legacy .py-xl-0 {
    padding-top: 0 !important;
  }

  .bootstrap-legacy .pr-xl-0, .bootstrap-legacy .px-xl-0 {
    padding-right: 0 !important;
  }

  .bootstrap-legacy .pb-xl-0, .bootstrap-legacy .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .bootstrap-legacy .pl-xl-0, .bootstrap-legacy .px-xl-0 {
    padding-left: 0 !important;
  }

  .bootstrap-legacy .p-xl-1 {
    padding: 1rem !important;
  }

  .bootstrap-legacy .pt-xl-1, .bootstrap-legacy .py-xl-1 {
    padding-top: 1rem !important;
  }

  .bootstrap-legacy .pr-xl-1, .bootstrap-legacy .px-xl-1 {
    padding-right: 1rem !important;
  }

  .bootstrap-legacy .pb-xl-1, .bootstrap-legacy .py-xl-1 {
    padding-bottom: 1rem !important;
  }

  .bootstrap-legacy .pl-xl-1, .bootstrap-legacy .px-xl-1 {
    padding-left: 1rem !important;
  }

  .bootstrap-legacy .p-xl-2 {
    padding: 1.5rem !important;
  }

  .bootstrap-legacy .pt-xl-2, .bootstrap-legacy .py-xl-2 {
    padding-top: 1.5rem !important;
  }

  .bootstrap-legacy .pr-xl-2, .bootstrap-legacy .px-xl-2 {
    padding-right: 1.5rem !important;
  }

  .bootstrap-legacy .pb-xl-2, .bootstrap-legacy .py-xl-2 {
    padding-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .pl-xl-2, .bootstrap-legacy .px-xl-2 {
    padding-left: 1.5rem !important;
  }

  .bootstrap-legacy .p-xl-3 {
    padding: 3rem !important;
  }

  .bootstrap-legacy .pt-xl-3, .bootstrap-legacy .py-xl-3 {
    padding-top: 3rem !important;
  }

  .bootstrap-legacy .pr-xl-3, .bootstrap-legacy .px-xl-3 {
    padding-right: 3rem !important;
  }

  .bootstrap-legacy .pb-xl-3, .bootstrap-legacy .py-xl-3 {
    padding-bottom: 3rem !important;
  }

  .bootstrap-legacy .pl-xl-3, .bootstrap-legacy .px-xl-3 {
    padding-left: 3rem !important;
  }

  .bootstrap-legacy .p-xl-4 {
    padding: 3.5rem !important;
  }

  .bootstrap-legacy .pt-xl-4, .bootstrap-legacy .py-xl-4 {
    padding-top: 3.5rem !important;
  }

  .bootstrap-legacy .pr-xl-4, .bootstrap-legacy .px-xl-4 {
    padding-right: 3.5rem !important;
  }

  .bootstrap-legacy .pb-xl-4, .bootstrap-legacy .py-xl-4 {
    padding-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .pl-xl-4, .bootstrap-legacy .px-xl-4 {
    padding-left: 3.5rem !important;
  }

  .bootstrap-legacy .p-xl-5 {
    padding: 4rem !important;
  }

  .bootstrap-legacy .pt-xl-5, .bootstrap-legacy .py-xl-5 {
    padding-top: 4rem !important;
  }

  .bootstrap-legacy .pr-xl-5, .bootstrap-legacy .px-xl-5 {
    padding-right: 4rem !important;
  }

  .bootstrap-legacy .pb-xl-5, .bootstrap-legacy .py-xl-5 {
    padding-bottom: 4rem !important;
  }

  .bootstrap-legacy .pl-xl-5, .bootstrap-legacy .px-xl-5 {
    padding-left: 4rem !important;
  }

  .bootstrap-legacy .p-xl-25 {
    padding: 0.25rem !important;
  }

  .bootstrap-legacy .pt-xl-25, .bootstrap-legacy .py-xl-25 {
    padding-top: 0.25rem !important;
  }

  .bootstrap-legacy .pr-xl-25, .bootstrap-legacy .px-xl-25 {
    padding-right: 0.25rem !important;
  }

  .bootstrap-legacy .pb-xl-25, .bootstrap-legacy .py-xl-25 {
    padding-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .pl-xl-25, .bootstrap-legacy .px-xl-25 {
    padding-left: 0.25rem !important;
  }

  .bootstrap-legacy .p-xl-50 {
    padding: 0.5rem !important;
  }

  .bootstrap-legacy .pt-xl-50, .bootstrap-legacy .py-xl-50 {
    padding-top: 0.5rem !important;
  }

  .bootstrap-legacy .pr-xl-50, .bootstrap-legacy .px-xl-50 {
    padding-right: 0.5rem !important;
  }

  .bootstrap-legacy .pb-xl-50, .bootstrap-legacy .py-xl-50 {
    padding-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .pl-xl-50, .bootstrap-legacy .px-xl-50 {
    padding-left: 0.5rem !important;
  }

  .bootstrap-legacy .p-xl-75 {
    padding: 0.75rem !important;
  }

  .bootstrap-legacy .pt-xl-75, .bootstrap-legacy .py-xl-75 {
    padding-top: 0.75rem !important;
  }

  .bootstrap-legacy .pr-xl-75, .bootstrap-legacy .px-xl-75 {
    padding-right: 0.75rem !important;
  }

  .bootstrap-legacy .pb-xl-75, .bootstrap-legacy .py-xl-75 {
    padding-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .pl-xl-75, .bootstrap-legacy .px-xl-75 {
    padding-left: 0.75rem !important;
  }

  .bootstrap-legacy .m-xl-n1 {
    margin: -1rem !important;
  }

  .bootstrap-legacy .mt-xl-n1, .bootstrap-legacy .my-xl-n1 {
    margin-top: -1rem !important;
  }

  .bootstrap-legacy .mr-xl-n1, .bootstrap-legacy .mx-xl-n1 {
    margin-right: -1rem !important;
  }

  .bootstrap-legacy .mb-xl-n1, .bootstrap-legacy .my-xl-n1 {
    margin-bottom: -1rem !important;
  }

  .bootstrap-legacy .ml-xl-n1, .bootstrap-legacy .mx-xl-n1 {
    margin-left: -1rem !important;
  }

  .bootstrap-legacy .m-xl-n2 {
    margin: -1.5rem !important;
  }

  .bootstrap-legacy .mt-xl-n2, .bootstrap-legacy .my-xl-n2 {
    margin-top: -1.5rem !important;
  }

  .bootstrap-legacy .mr-xl-n2, .bootstrap-legacy .mx-xl-n2 {
    margin-right: -1.5rem !important;
  }

  .bootstrap-legacy .mb-xl-n2, .bootstrap-legacy .my-xl-n2 {
    margin-bottom: -1.5rem !important;
  }

  .bootstrap-legacy .ml-xl-n2, .bootstrap-legacy .mx-xl-n2 {
    margin-left: -1.5rem !important;
  }

  .bootstrap-legacy .m-xl-n3 {
    margin: -3rem !important;
  }

  .bootstrap-legacy .mt-xl-n3, .bootstrap-legacy .my-xl-n3 {
    margin-top: -3rem !important;
  }

  .bootstrap-legacy .mr-xl-n3, .bootstrap-legacy .mx-xl-n3 {
    margin-right: -3rem !important;
  }

  .bootstrap-legacy .mb-xl-n3, .bootstrap-legacy .my-xl-n3 {
    margin-bottom: -3rem !important;
  }

  .bootstrap-legacy .ml-xl-n3, .bootstrap-legacy .mx-xl-n3 {
    margin-left: -3rem !important;
  }

  .bootstrap-legacy .m-xl-n4 {
    margin: -3.5rem !important;
  }

  .bootstrap-legacy .mt-xl-n4, .bootstrap-legacy .my-xl-n4 {
    margin-top: -3.5rem !important;
  }

  .bootstrap-legacy .mr-xl-n4, .bootstrap-legacy .mx-xl-n4 {
    margin-right: -3.5rem !important;
  }

  .bootstrap-legacy .mb-xl-n4, .bootstrap-legacy .my-xl-n4 {
    margin-bottom: -3.5rem !important;
  }

  .bootstrap-legacy .ml-xl-n4, .bootstrap-legacy .mx-xl-n4 {
    margin-left: -3.5rem !important;
  }

  .bootstrap-legacy .m-xl-n5 {
    margin: -4rem !important;
  }

  .bootstrap-legacy .mt-xl-n5, .bootstrap-legacy .my-xl-n5 {
    margin-top: -4rem !important;
  }

  .bootstrap-legacy .mr-xl-n5, .bootstrap-legacy .mx-xl-n5 {
    margin-right: -4rem !important;
  }

  .bootstrap-legacy .mb-xl-n5, .bootstrap-legacy .my-xl-n5 {
    margin-bottom: -4rem !important;
  }

  .bootstrap-legacy .ml-xl-n5, .bootstrap-legacy .mx-xl-n5 {
    margin-left: -4rem !important;
  }

  .bootstrap-legacy .m-xl-n25 {
    margin: -0.25rem !important;
  }

  .bootstrap-legacy .mt-xl-n25, .bootstrap-legacy .my-xl-n25 {
    margin-top: -0.25rem !important;
  }

  .bootstrap-legacy .mr-xl-n25, .bootstrap-legacy .mx-xl-n25 {
    margin-right: -0.25rem !important;
  }

  .bootstrap-legacy .mb-xl-n25, .bootstrap-legacy .my-xl-n25 {
    margin-bottom: -0.25rem !important;
  }

  .bootstrap-legacy .ml-xl-n25, .bootstrap-legacy .mx-xl-n25 {
    margin-left: -0.25rem !important;
  }

  .bootstrap-legacy .m-xl-n50 {
    margin: -0.5rem !important;
  }

  .bootstrap-legacy .mt-xl-n50, .bootstrap-legacy .my-xl-n50 {
    margin-top: -0.5rem !important;
  }

  .bootstrap-legacy .mr-xl-n50, .bootstrap-legacy .mx-xl-n50 {
    margin-right: -0.5rem !important;
  }

  .bootstrap-legacy .mb-xl-n50, .bootstrap-legacy .my-xl-n50 {
    margin-bottom: -0.5rem !important;
  }

  .bootstrap-legacy .ml-xl-n50, .bootstrap-legacy .mx-xl-n50 {
    margin-left: -0.5rem !important;
  }

  .bootstrap-legacy .m-xl-n75 {
    margin: -0.75rem !important;
  }

  .bootstrap-legacy .mt-xl-n75, .bootstrap-legacy .my-xl-n75 {
    margin-top: -0.75rem !important;
  }

  .bootstrap-legacy .mr-xl-n75, .bootstrap-legacy .mx-xl-n75 {
    margin-right: -0.75rem !important;
  }

  .bootstrap-legacy .mb-xl-n75, .bootstrap-legacy .my-xl-n75 {
    margin-bottom: -0.75rem !important;
  }

  .bootstrap-legacy .ml-xl-n75, .bootstrap-legacy .mx-xl-n75 {
    margin-left: -0.75rem !important;
  }

  .bootstrap-legacy .m-xl-auto {
    margin: auto !important;
  }

  .bootstrap-legacy .mt-xl-auto, .bootstrap-legacy .my-xl-auto {
    margin-top: auto !important;
  }

  .bootstrap-legacy .mr-xl-auto, .bootstrap-legacy .mx-xl-auto {
    margin-right: auto !important;
  }

  .bootstrap-legacy .mb-xl-auto, .bootstrap-legacy .my-xl-auto {
    margin-bottom: auto !important;
  }

  .bootstrap-legacy .ml-xl-auto, .bootstrap-legacy .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .m-xxl-0 {
    margin: 0 !important;
  }

  .bootstrap-legacy .mt-xxl-0, .bootstrap-legacy .my-xxl-0 {
    margin-top: 0 !important;
  }

  .bootstrap-legacy .mr-xxl-0, .bootstrap-legacy .mx-xxl-0 {
    margin-right: 0 !important;
  }

  .bootstrap-legacy .mb-xxl-0, .bootstrap-legacy .my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .bootstrap-legacy .ml-xxl-0, .bootstrap-legacy .mx-xxl-0 {
    margin-left: 0 !important;
  }

  .bootstrap-legacy .m-xxl-1 {
    margin: 1rem !important;
  }

  .bootstrap-legacy .mt-xxl-1, .bootstrap-legacy .my-xxl-1 {
    margin-top: 1rem !important;
  }

  .bootstrap-legacy .mr-xxl-1, .bootstrap-legacy .mx-xxl-1 {
    margin-right: 1rem !important;
  }

  .bootstrap-legacy .mb-xxl-1, .bootstrap-legacy .my-xxl-1 {
    margin-bottom: 1rem !important;
  }

  .bootstrap-legacy .ml-xxl-1, .bootstrap-legacy .mx-xxl-1 {
    margin-left: 1rem !important;
  }

  .bootstrap-legacy .m-xxl-2 {
    margin: 1.5rem !important;
  }

  .bootstrap-legacy .mt-xxl-2, .bootstrap-legacy .my-xxl-2 {
    margin-top: 1.5rem !important;
  }

  .bootstrap-legacy .mr-xxl-2, .bootstrap-legacy .mx-xxl-2 {
    margin-right: 1.5rem !important;
  }

  .bootstrap-legacy .mb-xxl-2, .bootstrap-legacy .my-xxl-2 {
    margin-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .ml-xxl-2, .bootstrap-legacy .mx-xxl-2 {
    margin-left: 1.5rem !important;
  }

  .bootstrap-legacy .m-xxl-3 {
    margin: 3rem !important;
  }

  .bootstrap-legacy .mt-xxl-3, .bootstrap-legacy .my-xxl-3 {
    margin-top: 3rem !important;
  }

  .bootstrap-legacy .mr-xxl-3, .bootstrap-legacy .mx-xxl-3 {
    margin-right: 3rem !important;
  }

  .bootstrap-legacy .mb-xxl-3, .bootstrap-legacy .my-xxl-3 {
    margin-bottom: 3rem !important;
  }

  .bootstrap-legacy .ml-xxl-3, .bootstrap-legacy .mx-xxl-3 {
    margin-left: 3rem !important;
  }

  .bootstrap-legacy .m-xxl-4 {
    margin: 3.5rem !important;
  }

  .bootstrap-legacy .mt-xxl-4, .bootstrap-legacy .my-xxl-4 {
    margin-top: 3.5rem !important;
  }

  .bootstrap-legacy .mr-xxl-4, .bootstrap-legacy .mx-xxl-4 {
    margin-right: 3.5rem !important;
  }

  .bootstrap-legacy .mb-xxl-4, .bootstrap-legacy .my-xxl-4 {
    margin-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .ml-xxl-4, .bootstrap-legacy .mx-xxl-4 {
    margin-left: 3.5rem !important;
  }

  .bootstrap-legacy .m-xxl-5 {
    margin: 4rem !important;
  }

  .bootstrap-legacy .mt-xxl-5, .bootstrap-legacy .my-xxl-5 {
    margin-top: 4rem !important;
  }

  .bootstrap-legacy .mr-xxl-5, .bootstrap-legacy .mx-xxl-5 {
    margin-right: 4rem !important;
  }

  .bootstrap-legacy .mb-xxl-5, .bootstrap-legacy .my-xxl-5 {
    margin-bottom: 4rem !important;
  }

  .bootstrap-legacy .ml-xxl-5, .bootstrap-legacy .mx-xxl-5 {
    margin-left: 4rem !important;
  }

  .bootstrap-legacy .m-xxl-25 {
    margin: 0.25rem !important;
  }

  .bootstrap-legacy .mt-xxl-25, .bootstrap-legacy .my-xxl-25 {
    margin-top: 0.25rem !important;
  }

  .bootstrap-legacy .mr-xxl-25, .bootstrap-legacy .mx-xxl-25 {
    margin-right: 0.25rem !important;
  }

  .bootstrap-legacy .mb-xxl-25, .bootstrap-legacy .my-xxl-25 {
    margin-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .ml-xxl-25, .bootstrap-legacy .mx-xxl-25 {
    margin-left: 0.25rem !important;
  }

  .bootstrap-legacy .m-xxl-50 {
    margin: 0.5rem !important;
  }

  .bootstrap-legacy .mt-xxl-50, .bootstrap-legacy .my-xxl-50 {
    margin-top: 0.5rem !important;
  }

  .bootstrap-legacy .mr-xxl-50, .bootstrap-legacy .mx-xxl-50 {
    margin-right: 0.5rem !important;
  }

  .bootstrap-legacy .mb-xxl-50, .bootstrap-legacy .my-xxl-50 {
    margin-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .ml-xxl-50, .bootstrap-legacy .mx-xxl-50 {
    margin-left: 0.5rem !important;
  }

  .bootstrap-legacy .m-xxl-75 {
    margin: 0.75rem !important;
  }

  .bootstrap-legacy .mt-xxl-75, .bootstrap-legacy .my-xxl-75 {
    margin-top: 0.75rem !important;
  }

  .bootstrap-legacy .mr-xxl-75, .bootstrap-legacy .mx-xxl-75 {
    margin-right: 0.75rem !important;
  }

  .bootstrap-legacy .mb-xxl-75, .bootstrap-legacy .my-xxl-75 {
    margin-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .ml-xxl-75, .bootstrap-legacy .mx-xxl-75 {
    margin-left: 0.75rem !important;
  }

  .bootstrap-legacy .p-xxl-0 {
    padding: 0 !important;
  }

  .bootstrap-legacy .pt-xxl-0, .bootstrap-legacy .py-xxl-0 {
    padding-top: 0 !important;
  }

  .bootstrap-legacy .pr-xxl-0, .bootstrap-legacy .px-xxl-0 {
    padding-right: 0 !important;
  }

  .bootstrap-legacy .pb-xxl-0, .bootstrap-legacy .py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .bootstrap-legacy .pl-xxl-0, .bootstrap-legacy .px-xxl-0 {
    padding-left: 0 !important;
  }

  .bootstrap-legacy .p-xxl-1 {
    padding: 1rem !important;
  }

  .bootstrap-legacy .pt-xxl-1, .bootstrap-legacy .py-xxl-1 {
    padding-top: 1rem !important;
  }

  .bootstrap-legacy .pr-xxl-1, .bootstrap-legacy .px-xxl-1 {
    padding-right: 1rem !important;
  }

  .bootstrap-legacy .pb-xxl-1, .bootstrap-legacy .py-xxl-1 {
    padding-bottom: 1rem !important;
  }

  .bootstrap-legacy .pl-xxl-1, .bootstrap-legacy .px-xxl-1 {
    padding-left: 1rem !important;
  }

  .bootstrap-legacy .p-xxl-2 {
    padding: 1.5rem !important;
  }

  .bootstrap-legacy .pt-xxl-2, .bootstrap-legacy .py-xxl-2 {
    padding-top: 1.5rem !important;
  }

  .bootstrap-legacy .pr-xxl-2, .bootstrap-legacy .px-xxl-2 {
    padding-right: 1.5rem !important;
  }

  .bootstrap-legacy .pb-xxl-2, .bootstrap-legacy .py-xxl-2 {
    padding-bottom: 1.5rem !important;
  }

  .bootstrap-legacy .pl-xxl-2, .bootstrap-legacy .px-xxl-2 {
    padding-left: 1.5rem !important;
  }

  .bootstrap-legacy .p-xxl-3 {
    padding: 3rem !important;
  }

  .bootstrap-legacy .pt-xxl-3, .bootstrap-legacy .py-xxl-3 {
    padding-top: 3rem !important;
  }

  .bootstrap-legacy .pr-xxl-3, .bootstrap-legacy .px-xxl-3 {
    padding-right: 3rem !important;
  }

  .bootstrap-legacy .pb-xxl-3, .bootstrap-legacy .py-xxl-3 {
    padding-bottom: 3rem !important;
  }

  .bootstrap-legacy .pl-xxl-3, .bootstrap-legacy .px-xxl-3 {
    padding-left: 3rem !important;
  }

  .bootstrap-legacy .p-xxl-4 {
    padding: 3.5rem !important;
  }

  .bootstrap-legacy .pt-xxl-4, .bootstrap-legacy .py-xxl-4 {
    padding-top: 3.5rem !important;
  }

  .bootstrap-legacy .pr-xxl-4, .bootstrap-legacy .px-xxl-4 {
    padding-right: 3.5rem !important;
  }

  .bootstrap-legacy .pb-xxl-4, .bootstrap-legacy .py-xxl-4 {
    padding-bottom: 3.5rem !important;
  }

  .bootstrap-legacy .pl-xxl-4, .bootstrap-legacy .px-xxl-4 {
    padding-left: 3.5rem !important;
  }

  .bootstrap-legacy .p-xxl-5 {
    padding: 4rem !important;
  }

  .bootstrap-legacy .pt-xxl-5, .bootstrap-legacy .py-xxl-5 {
    padding-top: 4rem !important;
  }

  .bootstrap-legacy .pr-xxl-5, .bootstrap-legacy .px-xxl-5 {
    padding-right: 4rem !important;
  }

  .bootstrap-legacy .pb-xxl-5, .bootstrap-legacy .py-xxl-5 {
    padding-bottom: 4rem !important;
  }

  .bootstrap-legacy .pl-xxl-5, .bootstrap-legacy .px-xxl-5 {
    padding-left: 4rem !important;
  }

  .bootstrap-legacy .p-xxl-25 {
    padding: 0.25rem !important;
  }

  .bootstrap-legacy .pt-xxl-25, .bootstrap-legacy .py-xxl-25 {
    padding-top: 0.25rem !important;
  }

  .bootstrap-legacy .pr-xxl-25, .bootstrap-legacy .px-xxl-25 {
    padding-right: 0.25rem !important;
  }

  .bootstrap-legacy .pb-xxl-25, .bootstrap-legacy .py-xxl-25 {
    padding-bottom: 0.25rem !important;
  }

  .bootstrap-legacy .pl-xxl-25, .bootstrap-legacy .px-xxl-25 {
    padding-left: 0.25rem !important;
  }

  .bootstrap-legacy .p-xxl-50 {
    padding: 0.5rem !important;
  }

  .bootstrap-legacy .pt-xxl-50, .bootstrap-legacy .py-xxl-50 {
    padding-top: 0.5rem !important;
  }

  .bootstrap-legacy .pr-xxl-50, .bootstrap-legacy .px-xxl-50 {
    padding-right: 0.5rem !important;
  }

  .bootstrap-legacy .pb-xxl-50, .bootstrap-legacy .py-xxl-50 {
    padding-bottom: 0.5rem !important;
  }

  .bootstrap-legacy .pl-xxl-50, .bootstrap-legacy .px-xxl-50 {
    padding-left: 0.5rem !important;
  }

  .bootstrap-legacy .p-xxl-75 {
    padding: 0.75rem !important;
  }

  .bootstrap-legacy .pt-xxl-75, .bootstrap-legacy .py-xxl-75 {
    padding-top: 0.75rem !important;
  }

  .bootstrap-legacy .pr-xxl-75, .bootstrap-legacy .px-xxl-75 {
    padding-right: 0.75rem !important;
  }

  .bootstrap-legacy .pb-xxl-75, .bootstrap-legacy .py-xxl-75 {
    padding-bottom: 0.75rem !important;
  }

  .bootstrap-legacy .pl-xxl-75, .bootstrap-legacy .px-xxl-75 {
    padding-left: 0.75rem !important;
  }

  .bootstrap-legacy .m-xxl-n1 {
    margin: -1rem !important;
  }

  .bootstrap-legacy .mt-xxl-n1, .bootstrap-legacy .my-xxl-n1 {
    margin-top: -1rem !important;
  }

  .bootstrap-legacy .mr-xxl-n1, .bootstrap-legacy .mx-xxl-n1 {
    margin-right: -1rem !important;
  }

  .bootstrap-legacy .mb-xxl-n1, .bootstrap-legacy .my-xxl-n1 {
    margin-bottom: -1rem !important;
  }

  .bootstrap-legacy .ml-xxl-n1, .bootstrap-legacy .mx-xxl-n1 {
    margin-left: -1rem !important;
  }

  .bootstrap-legacy .m-xxl-n2 {
    margin: -1.5rem !important;
  }

  .bootstrap-legacy .mt-xxl-n2, .bootstrap-legacy .my-xxl-n2 {
    margin-top: -1.5rem !important;
  }

  .bootstrap-legacy .mr-xxl-n2, .bootstrap-legacy .mx-xxl-n2 {
    margin-right: -1.5rem !important;
  }

  .bootstrap-legacy .mb-xxl-n2, .bootstrap-legacy .my-xxl-n2 {
    margin-bottom: -1.5rem !important;
  }

  .bootstrap-legacy .ml-xxl-n2, .bootstrap-legacy .mx-xxl-n2 {
    margin-left: -1.5rem !important;
  }

  .bootstrap-legacy .m-xxl-n3 {
    margin: -3rem !important;
  }

  .bootstrap-legacy .mt-xxl-n3, .bootstrap-legacy .my-xxl-n3 {
    margin-top: -3rem !important;
  }

  .bootstrap-legacy .mr-xxl-n3, .bootstrap-legacy .mx-xxl-n3 {
    margin-right: -3rem !important;
  }

  .bootstrap-legacy .mb-xxl-n3, .bootstrap-legacy .my-xxl-n3 {
    margin-bottom: -3rem !important;
  }

  .bootstrap-legacy .ml-xxl-n3, .bootstrap-legacy .mx-xxl-n3 {
    margin-left: -3rem !important;
  }

  .bootstrap-legacy .m-xxl-n4 {
    margin: -3.5rem !important;
  }

  .bootstrap-legacy .mt-xxl-n4, .bootstrap-legacy .my-xxl-n4 {
    margin-top: -3.5rem !important;
  }

  .bootstrap-legacy .mr-xxl-n4, .bootstrap-legacy .mx-xxl-n4 {
    margin-right: -3.5rem !important;
  }

  .bootstrap-legacy .mb-xxl-n4, .bootstrap-legacy .my-xxl-n4 {
    margin-bottom: -3.5rem !important;
  }

  .bootstrap-legacy .ml-xxl-n4, .bootstrap-legacy .mx-xxl-n4 {
    margin-left: -3.5rem !important;
  }

  .bootstrap-legacy .m-xxl-n5 {
    margin: -4rem !important;
  }

  .bootstrap-legacy .mt-xxl-n5, .bootstrap-legacy .my-xxl-n5 {
    margin-top: -4rem !important;
  }

  .bootstrap-legacy .mr-xxl-n5, .bootstrap-legacy .mx-xxl-n5 {
    margin-right: -4rem !important;
  }

  .bootstrap-legacy .mb-xxl-n5, .bootstrap-legacy .my-xxl-n5 {
    margin-bottom: -4rem !important;
  }

  .bootstrap-legacy .ml-xxl-n5, .bootstrap-legacy .mx-xxl-n5 {
    margin-left: -4rem !important;
  }

  .bootstrap-legacy .m-xxl-n25 {
    margin: -0.25rem !important;
  }

  .bootstrap-legacy .mt-xxl-n25, .bootstrap-legacy .my-xxl-n25 {
    margin-top: -0.25rem !important;
  }

  .bootstrap-legacy .mr-xxl-n25, .bootstrap-legacy .mx-xxl-n25 {
    margin-right: -0.25rem !important;
  }

  .bootstrap-legacy .mb-xxl-n25, .bootstrap-legacy .my-xxl-n25 {
    margin-bottom: -0.25rem !important;
  }

  .bootstrap-legacy .ml-xxl-n25, .bootstrap-legacy .mx-xxl-n25 {
    margin-left: -0.25rem !important;
  }

  .bootstrap-legacy .m-xxl-n50 {
    margin: -0.5rem !important;
  }

  .bootstrap-legacy .mt-xxl-n50, .bootstrap-legacy .my-xxl-n50 {
    margin-top: -0.5rem !important;
  }

  .bootstrap-legacy .mr-xxl-n50, .bootstrap-legacy .mx-xxl-n50 {
    margin-right: -0.5rem !important;
  }

  .bootstrap-legacy .mb-xxl-n50, .bootstrap-legacy .my-xxl-n50 {
    margin-bottom: -0.5rem !important;
  }

  .bootstrap-legacy .ml-xxl-n50, .bootstrap-legacy .mx-xxl-n50 {
    margin-left: -0.5rem !important;
  }

  .bootstrap-legacy .m-xxl-n75 {
    margin: -0.75rem !important;
  }

  .bootstrap-legacy .mt-xxl-n75, .bootstrap-legacy .my-xxl-n75 {
    margin-top: -0.75rem !important;
  }

  .bootstrap-legacy .mr-xxl-n75, .bootstrap-legacy .mx-xxl-n75 {
    margin-right: -0.75rem !important;
  }

  .bootstrap-legacy .mb-xxl-n75, .bootstrap-legacy .my-xxl-n75 {
    margin-bottom: -0.75rem !important;
  }

  .bootstrap-legacy .ml-xxl-n75, .bootstrap-legacy .mx-xxl-n75 {
    margin-left: -0.75rem !important;
  }

  .bootstrap-legacy .m-xxl-auto {
    margin: auto !important;
  }

  .bootstrap-legacy .mt-xxl-auto, .bootstrap-legacy .my-xxl-auto {
    margin-top: auto !important;
  }

  .bootstrap-legacy .mr-xxl-auto, .bootstrap-legacy .mx-xxl-auto {
    margin-right: auto !important;
  }

  .bootstrap-legacy .mb-xxl-auto, .bootstrap-legacy .my-xxl-auto {
    margin-bottom: auto !important;
  }

  .bootstrap-legacy .ml-xxl-auto, .bootstrap-legacy .mx-xxl-auto {
    margin-left: auto !important;
  }
}

.bootstrap-legacy .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.bootstrap-legacy .text-monospace {
  font-family: "Montserrat", Helvetica, Arial, serif !important;
}

.bootstrap-legacy .text-justify {
  text-align: justify !important;
}

.bootstrap-legacy .text-wrap {
  white-space: normal !important;
}

.bootstrap-legacy .text-nowrap {
  white-space: nowrap !important;
}

.bootstrap-legacy .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bootstrap-legacy .text-left {
  text-align: left !important;
}

.bootstrap-legacy .text-right {
  text-align: right !important;
}

.bootstrap-legacy .text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .bootstrap-legacy .text-sm-left {
    text-align: left !important;
  }

  .bootstrap-legacy .text-sm-right {
    text-align: right !important;
  }

  .bootstrap-legacy .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-legacy .text-md-left {
    text-align: left !important;
  }

  .bootstrap-legacy .text-md-right {
    text-align: right !important;
  }

  .bootstrap-legacy .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-legacy .text-lg-left {
    text-align: left !important;
  }

  .bootstrap-legacy .text-lg-right {
    text-align: right !important;
  }

  .bootstrap-legacy .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-legacy .text-xl-left {
    text-align: left !important;
  }

  .bootstrap-legacy .text-xl-right {
    text-align: right !important;
  }

  .bootstrap-legacy .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1440px) {
  .bootstrap-legacy .text-xxl-left {
    text-align: left !important;
  }

  .bootstrap-legacy .text-xxl-right {
    text-align: right !important;
  }

  .bootstrap-legacy .text-xxl-center {
    text-align: center !important;
  }
}

.bootstrap-legacy .text-lowercase {
  text-transform: lowercase !important;
}

.bootstrap-legacy .text-uppercase {
  text-transform: uppercase !important;
}

.bootstrap-legacy .text-capitalize {
  text-transform: capitalize !important;
}

.bootstrap-legacy .font-weight-light {
  font-weight: 300 !important;
}

.bootstrap-legacy .font-weight-lighter {
  font-weight: lighter !important;
}

.bootstrap-legacy .font-weight-normal {
  font-weight: 400 !important;
}

.bootstrap-legacy .font-weight-bold {
  font-weight: 500 !important;
}

.bootstrap-legacy .font-weight-bolder {
  font-weight: 600 !important;
}

.bootstrap-legacy .font-italic {
  font-style: italic !important;
}

.bootstrap-legacy .text-white {
  color: #fff !important;
}

.bootstrap-legacy .text-primary {
  color: #10FB06 !important;
}

.bootstrap-legacy a.text-primary:hover, .bootstrap-legacy a.text-primary:focus {
  color: #3321e9 !important;
}

.bootstrap-legacy .text-secondary {
  color: #82868b !important;
}

.bootstrap-legacy a.text-secondary:hover, .bootstrap-legacy a.text-secondary:focus {
  color: #5d6064 !important;
}

.bootstrap-legacy .text-success {
  color: #28c76f !important;
}

.bootstrap-legacy a.text-success:hover, .bootstrap-legacy a.text-success:focus {
  color: #1b874b !important;
}

.bootstrap-legacy .text-info {
  color: #008db7 !important;
}

.bootstrap-legacy a.text-info:hover, .bootstrap-legacy a.text-info:focus {
  color: #008db7 !important;
}

.bootstrap-legacy .text-warning {
  color: #ff9f43 !important;
}

.bootstrap-legacy a.text-warning:hover, .bootstrap-legacy a.text-warning:focus {
  color: #f67800 !important;
}

.bootstrap-legacy .text-danger {
  /* color: #ea5455 !important; */
}

.bootstrap-legacy a.text-danger:hover, .bootstrap-legacy a.text-danger:focus {
  color: #d71a1c !important;
}

.bootstrap-legacy .text-light {
  color: #f6f6f6 !important;
}

.bootstrap-legacy a.text-light:hover, .bootstrap-legacy a.text-light:focus {
  color: #d0d0d0 !important;
}

.bootstrap-legacy .text-dark {
  color: #4b4b4b !important;
}

.bootstrap-legacy a.text-dark:hover, .bootstrap-legacy a.text-dark:focus {
  color: #252525 !important;
}

.bootstrap-legacy .text-body {
  color: #6e6b7b !important;
}

.bootstrap-legacy .text-muted {
  color: #b9b9c3 !important;
}

.bootstrap-legacy .text-black-50 {
  color: rgba(34, 41, 47, 0.5) !important;
}

.bootstrap-legacy .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bootstrap-legacy .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.bootstrap-legacy .text-decoration-none {
  text-decoration: none !important;
}

.bootstrap-legacy .text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.bootstrap-legacy .text-reset {
  color: inherit !important;
}

.bootstrap-legacy .visible {
  visibility: visible !important;
}

.bootstrap-legacy .invisible {
  visibility: hidden !important;
}

@media print {

  .bootstrap-legacy *, .bootstrap-legacy *::before, .bootstrap-legacy *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  .bootstrap-legacy a:not(.btn) {
    text-decoration: underline;
  }

  .bootstrap-legacy abbr[title]::after {
    content: " (" attr(title) ")";
  }

  .bootstrap-legacy pre {
    white-space: pre-wrap !important;
  }

  .bootstrap-legacy pre, .bootstrap-legacy blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  .bootstrap-legacy thead {
    display: table-header-group;
  }

  .bootstrap-legacy tr, .bootstrap-legacy img {
    page-break-inside: avoid;
  }

  .bootstrap-legacy p, .bootstrap-legacy h2, .bootstrap-legacy h3 {
    orphans: 3;
    widows: 3;
  }

  .bootstrap-legacy h2, .bootstrap-legacy h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  .bootstrap-legacy {
    min-width: 992px !important;
  }

  .bootstrap-legacy .container {
    min-width: 992px !important;
  }

  .bootstrap-legacy .navbar {
    display: none;
  }

  .bootstrap-legacy .badge {
    border: 1px solid #22292f;
  }

  .bootstrap-legacy .table {
    border-collapse: collapse !important;
  }

  .bootstrap-legacy .table td, .bootstrap-legacy .table th {
    background-color: #fff !important;
  }

  .bootstrap-legacy .table-bordered th, .bootstrap-legacy .table-bordered td {
    border: 1px solid #dae1e7 !important;
  }

  .bootstrap-legacy .table-dark {
    color: inherit;
  }

  .bootstrap-legacy .table-dark th, .bootstrap-legacy .table-dark td, .bootstrap-legacy .table-dark thead th, .bootstrap-legacy .table-dark tbody+tbody {
    border-color: #ebe9f1;
  }

  .bootstrap-legacy .table .thead-dark th {
    color: inherit;
    border-color: #ebe9f1;
  }
}
