[data-bs-theme="dark"] {
    --bs-body-color: #F8F5E4;
    --bs-body-color-rgb: 173, 181, 189;
    --bs-body-bg: #151A30;
    --bs-body-bg-rgb: 33, 37, 41;
    --bs-primary: #FB8500;
    --bs-secondary: #6c757d;
    --bs-success: #34c180;
    --bs-info: #0d6efd;
    --bs-warning: #ffc107;
    --bs-danger: #ff4d5e;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 251, 133, 0;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 52, 193, 128;
    --bs-info-rgb: 13, 110, 253;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 255, 77, 94;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-secondary-bg: #001b39;
    --bs-secondary-bg-rgb: 0, 27, 57;
    --bs-tertiary-bg: #222B45;
    --bs-tertiary-bg-rgb: 34, 43, 69;
    --bs-primary-bg-subtle: rgba(251, 133, 0, 0.1);
    --bs-primary-border-subtle: rgba(251, 133, 0, 0.3);
    --bs-primary-text-emphasis: var(--bs-primary);
    --bs-carousel-indicator-active-bg: #222B45;
    --bs-carousel-caption-color: #fff;
}

.btn-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #F8F5E4;
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: rgba(251, 133, 0, 0.1);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: rgba(251, 133, 0, 0.1);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(251, 133, 0, 0.125);
    --bs-btn-disabled-color: #eaddcc;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #efbf80;
}

.btn-secondary {
    --bs-btn-color: var(--text-color);
    --bs-btn-bg: rgba(var(--bs-secondary-rgb), 0.5);
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--text-color);
    --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 0.1);
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: var(--bs-primary-border-subtle);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: rgba(var(--bs-primary-rgb), 0.1);
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--bs-light);
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-outline-primary {
    --bs-btn-color: #F8F5E4;
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-bg: rgba(251, 133, 0, 0.1);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 251, 133, 0;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: rgba(251, 133, 0, 0.1);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(251, 133, 0, 0.125);
    --bs-btn-disabled-color: #eaddcc;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #efbf80;
    --bs-gradient: none;
}

.btn-outline-dark {
    --bs-btn-color: var(--bs-light);
    --bs-btn-bg: rgba(var(--bs-dark-rgb), 0.2);
    --bs-btn-border-color: rgba(var(--bs-light-rgb), 0.7);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212529;
    --bs-btn-hover-border-color: rgba(var(--bs-light-rgb), 0.5);
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;
}

.link-primary:hover, .link-primary:focus {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.callout {
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);
    padding: 1.25rem;
    color: var(--bd-callout-color, var(--bs-primary, inherit));
    background-color: var(--bd-callout-bg, rgba(var(--bs-secondary-bg-rgb), 0.3));
    border-left: .25rem solid var(--bd-callout-border, var(--bs-primary));
}
.callout-primary {
    --bd-callout-color: var(--bs-primary-text-emphasis);
    --bd-callout-bg: var(--bs-primary-bg-subtle);
    --bd-callout-border: var(--bs-primary);
}
.callout-secondary {
    --bd-callout-color: var(--bs-secondary-text-emphasis);
    --bd-callout-bg: var(--bs-secondary-bg-subtle);
    --bd-callout-border: var(--bs-secondary);
}
.callout-success {
    --bd-callout-color: var(--bs-success-text-emphasis);
    --bd-callout-bg: var(--bs-success-bg-subtle);
    --bd-callout-border: var(--bs-success);
}
.callout-info {
    --bd-callout-color: var(--bs-info-text-emphasis);
    --bd-callout-bg: var(--bs-info-bg-subtle);
    --bd-callout-border: var(--bs-info);
}
.callout-warning {
    --bd-callout-color: var(--bs-warning-text-emphasis);
    --bd-callout-bg: var(--bs-warning-bg-subtle);
    --bd-callout-border: var(--bs-warning);
}
.callout-danger {
    --bd-callout-color: var(--bs-danger-text-emphasis);
    --bd-callout-bg: var(--bs-danger-bg-subtle);
    --bd-callout-border: var(--bs-danger);
}
.callout-light {
    --bd-callout-color: var(--bs-light-text-emphasis);
    --bd-callout-bg: var(--bs-light-bg-subtle);
    --bd-callout-border: var(--bs-light);
}
.callout-dark {
    --bd-callout-color: var(--bs-dark-text-emphasis);
    --bd-callout-bg: var(--bs-dark-bg-subtle);
    --bd-callout-border: var(--bs-dark);
}

body {
    font-family: system-ui,sans-serif,Verdana,sans-serif;
    transition: background-color 0.3s,color .3s;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > header > main + section{
    position: relative;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(rgba(0, 27, 57, 0.3), rgba(0, 27, 57, 0.5)), url(./images/bg.jpg) no-repeat center center;
    background-size: cover;
}
body > main{
    margin-bottom: auto;
    position: relative;
    justify-items: center;
    margin: auto 0;
}
body > main > *{
    width: 100%;
}
body > footer {
    background-color: var(--bs-tertiary-bg)!important;
}

body > header .navbar {
    background: var(--bs-tertiary-bg);
    height: 5rem;
}

.nav-tabs{
    --bs-nav-tabs-link-active-bg: var(--bs-primary);
    --bs-nav-link-color: var(--bs-body-color);
    --bs-nav-link-hover-color: var(--bs-primary);
    --bs-nav-tabs-link-active-color: var(--bs-light);
}
.navbar-nav{
    --bs-nav-link-color: var(--bs-body-color);
    --bs-nav-link-hover-color: var(--bs-primary);
    --bs-navbar-active-color: var(--bs-primary);
}
.navbar .navbar-collapse{
    z-index: 10;
    background: inherit;
    padding: 1rem;
}
.navbar-brand {
    color: var(--bs-body-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-right: 2rem;
}
.navbar-brand > img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.dropdown-toggle::after{
    margin-left: .5em;
}
.dropdown-menu{
    background: var(--bs-tertiary-bg);
    padding: 0;
}
.dropdown-item{
    color: var(--text-color);
    padding: 0.5rem 1rem;
}
.dropdown-item:hover, .dropdown-item:focus{
    color: var(--bs-primary);
    background-color: var(--bs-primary-bg-subtle);
}
.dropdown-item.active, .dropdown-item:active{
    color: var(--bs-primary);
    background-color: var(--bs-primary-bg-subtle);
}

.navbar-vertical ul{
    position: relative !important;
    float: none !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}
.navbar-vertical li{
    display: block;
    width: 100%;
    position: relative;
    margin: 1rem 0;
}

.navbar-vertical .nav-link:before,
.navbar-vertical .dropdown-item:before{
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    margin-right: 0.75rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar-vertical .dropdown-menu{
    margin-bottom: 0.75rem;
    font-size: 90%;
}

.navbar-vertical .dropdown-item:before{
    content: "\f285";
}

.navbar-vertical .nav-header > .icon, .navbar-vertical .nav-link > .icon{
    margin-right: 0.3rem;
}
.navbar-vertical .dropdown-menu{
    z-index: inherit;
    position: relative;
    border-radius: 0;
    background: transparent;
    border: none;
}

.navbar-vertical .dropdown-menu[data-bs-popper]{
    top:auto;
}
.navbar-vertical .nav-item .dropdown-menu{
    padding: 0 0 0 1.2rem;
}

.navbar-vertical .nav-link{
    position: relative;
    padding: 0.3rem 0.5rem;
    color: var(--text-color);
    border-radius: var(--bs-border-radius);
    padding: 0.375rem 0.75rem;
    transition: all 0.2s;
}
.navbar-vertical .nav-link:before{
    content: "\f1a2";
}
.navbar-vertical .nav-link.active:before{
    content: "\f199";
}
.navbar-vertical .dropdown-item{
    margin: 0.5rem 0;
}
.navbar-vertical .dropdown-item.active, .navbar-vertical .dropdown-item:active{
    font-weight: bold;
}
.navbar-vertical .nav-link.active{
    color: var(--bs-primary);
    font-weight: bold;
    background-color: var(--bs-primary-bg-subtle);
}
.navbar-vertical .nav-link:hover{
    background-color: var(--bs-primary-bg-subtle);
}

.navbar-vertical .nav-item a.nav-link > .nav-title > .icon{
    padding-right: 0.5rem;
}
.navbar-vertical .dropdown-toggle::after{
    display: none;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-primary);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-light);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-light);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.border-dashed{
    --bs-border-style: dashed;
    border-style: var(--bs-border-style);
}

.table{
    --bs-table-hover-bg: var(--bs-primary-rgb);
    --bs-table-bg: transparent;
}
.table thead{
    --bs-table-color-state: var(--bs-primary);
    --bs-border-width: 2px;
    border-color: var(--bs-primary);
}
.table-primary{
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: rgba(var(--bs-primary-rgb), 0.2);
    --bs-table-border-color: #a35a08;
    --bs-table-striped-bg: rgba(var(--bs-primary-rgb), 0.2);
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-active-bg: var(--bs-primary);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-hover-bg: vrgba(var(--bs-primary-rgb), 0.3);
    --bs-table-hover-color: var(--bs-body-color);
}
.table-striped > tbody > tr.table-primary:nth-of-type(odd) > *:nth-of-type(odd){
    --bs-table-striped-bg: rgba(var(--bs-primary-rgb), 0.5);
}
.table-responsive > .table{
    margin: 0;
}
.table > caption{
   padding: 0.5rem 0.5rem;
}
.table thead{
    --bs-border-width: 1px;
}
.table th{
    font-weight: 500;
}
small, .small {
    font-size: 80% !important;
}
.x-small{
    font-size: 70% !important;
}
.xx-small{
    font-size: 60% !important;
}
.lead{
    font-size: 120%;
}

.copy-clipboard{
    position: relative;
    cursor: copy;
}
.copy-clipboard.icon:after{
    display: none;
    content: "\f759";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-size: 80%;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    color: var(--bs-primary);
    position: absolute;
    right: -1rem;
    top: -0.3rem;
}
.copy-clipboard:hover:after{
    display: block;
}

.image-bg{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.icon.wargm-icon{
    display: inline-block;
    background-image: url("./images/wargm_icon.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.5rem;
}

.breadcrumb{
    --bs-breadcrumb-margin-bottom: 0;
    background: rgba(var(--bs-tertiary-bg-rgb), 0.8);
    border-radius: var(--bs-border-radius);
    padding: 1rem;
}
.breadcrumb .breadcrumb-item{
    color: var(--bs-light);
}
.breadcrumb .breadcrumb-item.active{
    color: var(--bs-primary);
}
.breadcrumb .breadcrumb-item a{
    color: inherit;
    text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before{
    color: var(--bs-tertiary-color);
}
.form-control{
    background: var(--bs-tertiary-bg);
    border-color: rgba(var(--bs-light-rgb), 0.3);
}
.form-control:focus{
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-check-input:checked{
    background-color: var(--bs-primary-border-subtle);
    border-color: var(--bs-primary);
}
.form-check-input:focus {
    border-color: var(--bs-primary);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.list-group{
    --bs-list-group-active-bg: var(--bs-primary);
    --bs-list-group-active-border-color: var(--bs-primary);
}
ol.list-group-numbered{
    list-style: none;
    counter-reset: NumberCounret;
    padding-left: 1rem;
}
ol.list-group-numbered > li{
    display: flex;
}
ol.list-group-numbered > li:before {
    background: var(--bs-list-group-active-bg, var(--bs-primary));
    counter-increment: NumberCounret !important;
    content: counters(NumberCounret,".") "" !important;
    margin-right: 1rem;
    margin-bottom: auto;
    padding: 0.3rem 0.7rem;
    aspect-ratio: 1;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.scroll-down {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: 1rem;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100%{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-0.5rem);
    }
    60%{
        transform: translateY(-0.2rem);
    }
}
.accordion {
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1.4rem;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25)
}
.accordion-button::after{
    filter: invert(60%) contrast(190%) saturate(4);
}

.content.min{
    position: relative;
    white-space: break-spaces;
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 6em;
    transition: all 0.5s ease-in-out;
}
.content.min:hover{
    -webkit-line-clamp: 8;
    line-clamp: 8;
    max-height: 12em;
}

.carousel-item{
    transition: transform 2.2s ease-in-out;
}
.carousel-item header{
    color: var(--bs-primary);
    font-weight: bold;
    font-size: 110%;
    padding-left: 0.8rem;
    position: relative;
    white-space: break-spaces;
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0.5rem;
    margin-bottom: 1rem;
}
.carousel-item main{
    font-size: 90%;
    padding-left: 0.8rem;
    position: relative;
    white-space: break-spaces;
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0.5rem;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 2.2s 0.2s;
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

.carousel-inner .carousel-item-next.carousel-item-start,
.carousel-inner .carousel-item-prev.carousel-item-end {
  transform: translateX(0);
}

.carousel-inner .carousel-item-next {
  transform: translateX(25%);
}

.carousel-inner .carousel-item-prev {
  transform: translateX(-25%);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .carousel-inner .carousel-item-next {
    transform: translateX(33.33%);
  }
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33.33%);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }
  .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}

@media (max-height: 540px) {
    .h-sm-d-none{
        display: none !important;
    }
}
@media (max-height: 720px) {
    .h-md-d-none{
        display: none !important;
    }
}
@media (max-height: 960px) {
    .h-lg-d-none{
        display: none !important;
    }
}

@media (min-height: 540px) {
    .h-sm-d-block{
        display: none !important;
    }
}
@media (min-height: 720px) {
    .h-md-d-block{
        display: none !important;
    }
}
@media (min-height: 960px) {
    .h-lg-d-block{
        display: none !important;
    }
}

.top-auto {
    top: auto !important;
}
.top-25 {
  top: 25% !important;
}
.top-75 {
  top: 75% !important;
}
.bottom-auto {
    bottom: auto !important;
}
.bottom-25 {
  bottom: 25% !important;
}
.bottom-75 {
  bottom: 75% !important;
}
.start-auto {
    left: auto !important;
}
.start-25 {
  left: 25% !important;
}
.start-75 {
  left: 75% !important;
}
.end-auto {
    right: auto !important;
}
.end-25 {
  right: 25% !important;
}
.end-75 {
  right: 75% !important;
}

@media (min-width: 576px) {
    .position-sm-static {
      position: static !important;
    }
    .position-sm-relative {
      position: relative !important;
    }
    .position-sm-absolute {
      position: absolute !important;
    }
    .position-sm-fixed {
      position: fixed !important;
    }
    .position-sm-sticky {
      position: -webkit-sticky !important;
      position: sticky !important;
    }
    .top-sm-auto {
        top: auto !important;
    }
    .top-sm-0 {
      top: 0 !important;
    }
    .top-sm-25 {
      top: 25% !important;
    }
    .top-sm-50 {
      top: 50% !important;
    }
    .top-sm-75 {
      top: 75% !important;
    }
    .top-sm-100 {
      top: 100% !important;
    }
    .bottom-sm-auto {
        bottom: auto !important;
    }
    .bottom-sm-0 {
      bottom: 0 !important;
    }
    .bottom-sm-25 {
      bottom: 25% !important;
    }
    .bottom-sm-50 {
      bottom: 50% !important;
    }
    .bottom-sm-75 {
      bottom: 75% !important;
    }
    .bottom-sm-100 {
      bottom: 100% !important;
    }
    .start-sm-auto {
        left: auto !important;
    }
    .start-sm-0 {
      left: 0 !important;
    }
    .start-sm-25 {
      left: 25% !important;
    }
    .start-sm-50 {
      left: 50% !important;
    }
    .start-sm-75 {
      left: 75% !important;
    }
    .start-sm-100 {
      left: 100% !important;
    }
    .end-sm-auto {
        right: auto !important;
    }
    .end-sm-0 {
      right: 0 !important;
    }
    .end-sm-25 {
      right: 25% !important;
    }
    .end-sm-50 {
      right: 50% !important;
    }
    .end-sm-75 {
      right: 75% !important;
    }
    .end-sm-100 {
      right: 100% !important;
    }
}
@media (min-width: 768px) {
    .position-md-static {
      position: static !important;
    }
    .position-md-relative {
      position: relative !important;
    }
    .position-md-absolute {
      position: absolute !important;
    }
    .position-md-fixed {
      position: fixed !important;
    }
    .position-md-sticky {
      position: -webkit-sticky !important;
      position: sticky !important;
    }
    .top-md-auto {
        top: auto !important;
    }
    .top-md-0 {
      top: 0 !important;
    }
    .top-md-25 {
      top: 25% !important;
    }
    .top-md-50 {
      top: 50% !important;
    }
    .top-md-75 {
      top: 75% !important;
    }
    .top-md-100 {
      top: 100% !important;
    }
    .bottom-md-auto {
        bottom: auto !important;
    }
    .bottom-md-0 {
      bottom: 0 !important;
    }
    .bottom-md-25 {
      bottom: 25% !important;
    }
    .bottom-md-50 {
      bottom: 50% !important;
    }
    .bottom-md-75 {
      bottom: 75% !important;
    }
    .bottom-md-100 {
      bottom: 100% !important;
    }
    .start-md-auto {
        left: auto !important;
    }
    .start-md-0 {
      left: 0 !important;
    }
    .start-md-25 {
      left: 25% !important;
    }
    .start-md-50 {
      left: 50% !important;
    }
    .start-md-75 {
      left: 75% !important;
    }
    .start-md-100 {
      left: 100% !important;
    }
    .end-md-auto {
        right: auto !important;
    }
    .end-md-0 {
      right: 0 !important;
    }
    .end-md-25 {
      right: 25% !important;
    }
    .end-md-50 {
      right: 50% !important;
    }
    .end-md-75 {
      right: 75% !important;
    }
    .end-md-100 {
      right: 100% !important;
    }
}
@media (min-width: 992px) {
    .position-lg-static {
      position: static !important;
    }
    .position-lg-relative {
      position: relative !important;
    }
    .position-lg-absolute {
      position: absolute !important;
    }
    .position-lg-fixed {
      position: fixed !important;
    }
    .position-lg-sticky {
      position: -webkit-sticky !important;
      position: sticky !important;
    }
    .top-lg-auto {
        top: auto !important;
    }
    .top-lg-0 {
      top: 0 !important;
    }
    .top-lg-25 {
      top: 25% !important;
    }
    .top-lg-50 {
      top: 50% !important;
    }
    .top-lg-75 {
      top: 75% !important;
    }
    .top-lg-100 {
      top: 100% !important;
    }
    .bottom-lg-auto {
        bottom: auto !important;
    }
    .bottom-lg-0 {
      bottom: 0 !important;
    }
    .bottom-lg-25 {
      bottom: 25% !important;
    }
    .bottom-lg-50 {
      bottom: 50% !important;
    }
    .bottom-lg-75 {
      bottom: 75% !important;
    }
    .bottom-lg-100 {
      bottom: 100% !important;
    }
    .start-lg-auto {
        left: auto !important;
    }
    .start-lg-0 {
      left: 0 !important;
    }
    .start-lg-25 {
      left: 25% !important;
    }
    .start-lg-50 {
      left: 50% !important;
    }
    .start-lg-75 {
      left: 75% !important;
    }
    .start-lg-100 {
      left: 100% !important;
    }
    .end-lg-auto {
        right: auto !important;
    }
    .end-lg-0 {
      right: 0 !important;
    }
    .end-lg-25 {
      right: 25% !important;
    }
    .end-lg-50 {
      right: 50% !important;
    }
    .end-lg-75 {
      right: 75% !important;
    }
    .end-lg-100 {
      right: 100% !important;
    }
}
@media (min-width: 1200px) {
    .position-xl-static {
      position: static !important;
    }
    .position-xl-relative {
      position: relative !important;
    }
    .position-xl-absolute {
      position: absolute !important;
    }
    .position-xl-fixed {
      position: fixed !important;
    }
    .position-xl-sticky {
      position: -webkit-sticky !important;
      position: sticky !important;
    }
    .top-xl-auto {
        top: auto !important;
    }
    .top-xl-0 {
      top: 0 !important;
    }
    .top-xl-25 {
      top: 25% !important;
    }
    .top-xl-50 {
      top: 50% !important;
    }
    .top-xl-75 {
      top: 75% !important;
    }
    .top-xl-100 {
      top: 100% !important;
    }
    .bottom-xl-auto {
        bottom: auto !important;
    }
    .bottom-xl-0 {
      bottom: 0 !important;
    }
    .bottom-xl-25 {
      bottom: 25% !important;
    }
    .bottom-xl-50 {
      bottom: 50% !important;
    }
    .bottom-xl-75 {
      bottom: 75% !important;
    }
    .bottom-xl-100 {
      bottom: 100% !important;
    }
    .start-xl-auto {
        left: auto !important;
    }
    .start-xl-0 {
      left: 0 !important;
    }
    .start-xl-25 {
      left: 25% !important;
    }
    .start-xl-50 {
      left: 50% !important;
    }
    .start-xl-75 {
      left: 75% !important;
    }
    .start-xl-100 {
      left: 100% !important;
    }
    .end-xl-auto {
        right: auto !important;
    }
    .end-xl-0 {
      right: 0 !important;
    }
    .end-xl-25 {
      right: 25% !important;
    }
    .end-xlxl-50 {
      right: 50% !important;
    }
    .end-md-75 {
      right: 75% !important;
    }
    .end-xl-100 {
      right: 100% !important;
    }
}
@media (min-width: 1400px) {
    .position-xxl-static {
      position: static !important;
    }
    .position-xxl-relative {
      position: relative !important;
    }
    .position-xxl-absolute {
      position: absolute !important;
    }
    .position-xxl-fixed {
      position: fixed !important;
    }
    .position-xxl-sticky {
      position: -webkit-sticky !important;
      position: sticky !important;
    }
    .top-xxl-auto {
        top: auto !important;
    }
    .top-xxl-0 {
      top: 0 !important;
    }
    .top-xxl-25 {
      top: 25% !important;
    }
    .top-xxl-50 {
      top: 50% !important;
    }
    .top-xxl-75 {
      top: 75% !important;
    }
    .top-xxl-100 {
      top: 100% !important;
    }
    .bottom-xxl-auto {
        bottom: auto !important;
    }
    .bottom-xxl-0 {
      bottom: 0 !important;
    }
    .bottom-xxl-25 {
      bottom: 25% !important;
    }
    .bottom-xxl-50 {
      bottom: 50% !important;
    }
    .bottom-xxl-75 {
      bottom: 75% !important;
    }
    .bottom-xxl-100 {
      bottom: 100% !important;
    }
    .start-xxl-auto {
        left: auto !important;
    }
    .start-xxl-0 {
      left: 0 !important;
    }
    .start-xxl-25 {
      left: 25% !important;
    }
    .start-xxl-50 {
      left: 50% !important;
    }
    .start-xxl-75 {
      left: 75% !important;
    }
    .start-xxl-100 {
      left: 100% !important;
    }
    .end-xxl-auto {
        right: auto !important;
    }
    .end-xxl-0 {
      right: 0 !important;
    }
    .end-xxl-25 {
      right: 25% !important;
    }
    .end-xxl-50 {
      right: 50% !important;
    }
    .end-xxl-75 {
      right: 75% !important;
    }
    .end-xxl-100 {
      right: 100% !important;
    }
}