.badge > svg:hover {
  color: red!important;
}

.text-xs{
  font-size: .76rem!important;
}

.on-off, .plus-minus-icon,
.yes-no, .yes-no-icon { display: inline-block; width: 140px; height: 50px; position: relative;
  &:before, &:after { color: #fff; font-size: 18px; cursor: pointer; z-index: 1; position: absolute; }
  &:before { content:'ON'; left: 22px; bottom: 13px; }
  &:after { content: 'OFF'; right: 20px; bottom: 13px; }
  input { opacity: .5;
    &:checked + .slider { background: #9e9e9e; }
    &:checked + .slider:before { transform: translateX(-68px); } }
  .slider { background: #f44336; position: absolute; top: 0; right: 0; bottom: 0; left: 0; cursor: pointer;  transition: .4s;
    &:before { content: ""; width: 70px; height: 48px; background: #fff; position: absolute; right: 1px; bottom: 1px; transition: .4s; } }
}
.yes-no, .yes-no-icon {
  input { &:checked + .slider { background: #f44336; } }
  .slider { background: #4caf50;}
}
.yes-no {
  &:before { content:'YES'; left: 20px;}
  &:after { content:'NO'; right: 22px;}
}
.yes-no-icon {
  &:before { content:'\2714'; font-size: 26px; left: 24px; bottom: 5px;}
  &:after { content:'\2716'; font-size: 26px; right: 25px; bottom: 5px;}
  input { &:checked + .slider { background: #e91e63; } }
  .slider {background: #e91e63;}
}
.plus-minus-icon {
  &:before { content:'\0002B'; font-size: 30px; left: 28px; bottom: 5px;}
  &:after { content:'\02212'; font-size: 30px; right: 28px; bottom: 5px;}
  input { &:checked + .slider { background: #2196f3; } }
  .slider {background: #2196f3;}
}
.plus-minus-icon + input:checked {
  background: #000;
}

.tooltip {
    --bs-tooltip-bg: #212529!important;
    --bs-tooltip-color: #fff;
    --bs-tooltip-opacity: 1;
    --bs-tooltip-border-radius: .5rem;
    --bs-tooltip-padding-x: .3rem;
    --bs-tooltip-padding-y: .3rem;
    --bs-tooltip-font-size: .69rem!important;
    --bs-tooltip-max-width: 260px;
   
}
.tooltip-inner {
    white-space: nowrap;
}

.map-avail{
  filter:grayscale(90%);
  opacity: .3;
}

.bootstrap_img_upload {
  min-height: 100vh;
  background-color: #757f9a;
}

.upload {
  opacity: 0;
}
#upload {
  opacity: 0;
}
#item_icon {
  opacity: 0;
}
#item_image {
  opacity: 0;
}
.upload-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.image-area {
  border: 2px dashed rgba(255, 255, 255, 0.7);
  padding: 1rem;
  position: relative;
}

.image-area::before {
  content: 'Uploaded image result';
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  z-index: 1;
}

.image-area img {
  z-index: 2;
  position: relative;
}


.select-list{
    display:none;
    position:absolute;
    width:100%;
    z-index:1000;
    background:#fff;
    border:1px solid #ddd;
    border-radius:.5rem;
    max-height:250px;
    overflow-y:auto;
}

.select-list.show{
    display:block;
}

.select-multi-item{
    cursor:pointer;
    padding:.5rem .75rem;
}

.select-multi-item.active{
    background:#e9f5ff;
}

.img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
    font-size: 11px;
    font-weight: 600;
}

.hotspot-button{
    background-color: #fff;
    color: #181818;
    border: none;
    border-radius: 5px;
    padding: .3em .5em .3em .5em;
    font-weight: 700;
  }

  #pannellum {
    width: 100%;
    min-height: 93vh;
    position: relative;
  }
  
  #pannellum .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
  }
  .carousel-inner{
    border-radius: 10px;
  }
  .card{
    border-radius: 10px!important;
  }

  .product-btn{
    font-size: 12px;
    background-color: #181818;
    color: #fff;
    border: none;
    padding-top: 3px;

  }
  .span-btn{
    display: flex;
    min-width: 95px;
    border-bottom: solid 2px #181818;
    border-top: solid 2px #18181800;
  }
   .loading-div {
    height: 100vh;
    background-color: rgba(24,24,24,0.58);
  }
  .animate-spin {
    
  
    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
    /* transform: rotate(3deg); */
     /* transform: rotate(0.3rad);/ */
     /* transform: rotate(3grad); */ 
     /* transform: rotate(.03turn);  */
  }
  
  @keyframes spin {
      from {
          transform:rotate(0deg);
      }
      to {
          transform:rotate(360deg);
      }
  }

.model-view{
  display: inline-flex;
  height:70vh;
  width: 100%;
}

.carousel-image {
  height: 300px; /* Set the desired height */
  object-fit: cover; /* Ensures the image fills the space, cropping excess parts */
  width: 100%; /* Ensures the image spans the full width */
}
.product-thumbnail {
  width: 4em;
  height: 4em;
  object-fit: cover; /* Maintains the aspect ratio, filling the width and cropping any overflow */
  border-radius: 0.25em; /* Optional: Adds a slight rounding to the corners */
}
.fit-image{
  width: 15em;
  height: 30em;
  object-fit: contain; /* Maintains the aspect ratio, filling the width and cropping any overflow */
  border-radius: 0.25em;
}

.items-scroll{
  height: 85vh;
  overflow-y: scroll;
  scrollbar-width: thin;
}
.text-left{
  text-align: left!important;
}
.imposed{
  position: absolute!important;
  top: 9em;
  z-index: 50000;
  left: 16em;
}


.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  cursor: pointer;
  max-width: 50%;
  text-align: center;
}

.custom-file-upload:hover {

  background-color: #181818;
  color: #fff;

}
.dnso{
  border: 1px solid #ccc;
  display: inline-block;
  cursor: pointer;
  max-width: 50%;
  text-align: center;
}

/* Base modal style 
.modal-fullscreen {
  width: 90% !important;
  height: 75% !important;
  margin: auto;
  padding-top: 1.5rem; /* same as pt-5 
}
*/
/* For large desktops (≥992px) 
@media (min-width: 992px) {
  .modal-fullscreen {
    width: 75% !important;
    height: 75% !important;
  }
}
*/
@media (min-width: 576px) {
    #specificationsModal > .modal-dialog {
        margin-left: auto;
        margin-right: 5rem !important;
    }
}


/* Default: desktop and larger screens */
.tab-mn {
  width: auto;
  margin: 0.5rem 0.5rem; /* same as me-2 */
}

/* Mobile & tablet (below 992px) */
@media (max-width: 991.98px) {
  .tab-mn {
    display: block;
    width: 100%;
    margin: 0.5rem 0rem; /* spacing between items */
  }
}

.card-hv{
   
  text-decoration: none;
  border: solid #ffffff00 4px;
}

.card-hv:hover{
  color: initial;
  box-shadow: none !important;
  filter: brightness(105%);
  transform: scale(0.99);
  text-decoration: none;
  border: solid #fff 4px;
  transition: all 0.2s ease;

}


.nav-scroller{
  position: absolute !important;
  z-index: 6;
  right:2rem;
  top:3rem;
}

.interface{

  z-index: 5;
}

.interface-v{
  position: relative !important;
  z-index: 5;
  width: 100%;
  background: #f4f4f4;
  border-radius: 2em;
  box-sizing: border-box;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
}

.hotspot-dash {
  position: absolute;
  width: 7rem;
  height: 3px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  z-index: -1;
  pointer-events: none;
}

.left-dash{
  right: 0rem;
  top: .7rem;
}

.right-dash{
 left: 4rem;
  top: .7rem;
}
.hotspot-circle {
 display: flex;
  border-radius: 50%;
  z-index: 10000;
  color: #000 !important;
  width: 3em;
  height: 3em;
  position: fixed;
  top: -.7em;
  /* left: 15em; */
}

.hotspot-planet {
 display: flex;
  border-radius: 50%;
  z-index: 10000;
  background-color: #fff;
  color: #000 !important;
  width: 4em;
  height: 4em;
  position: fixed;
  top: -1.3em;
  /* left: 15em; */
}

.model-preview {
  display: flex;
  z-index: 10000;
  background-color: #ffffff00;
  color: #000 !important;
  min-width:5rem;
  height: 20vh;
  margin-top: -4rem;
  margin-left: 0rem;
}

.leftHS{
  position: absolute;
  right: 7rem;
  top: -.4rem;
  border-radius: 5px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  text-align: right!important;
  min-width: 8rem;
}

.rightHS{
  position: absolute;
  left: 11rem;
  top: -.4rem;
  border-radius: 5px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: right!important;
  min-width: 8rem;
}

.tooltip-actions {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
    transition: all 0.25s ease;
}

.tooltip-container:hover .tooltip-actions {
  opacity: 1;
  pointer-events: auto;
  background-color: #fff;
}
.tooltip-container{
  display: inline-table;
}
.custom-tooltip{
  display: flex;
}

.tooltip-btn {
    border: none;
    background: #000;
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    margin: auto;  
    font-weight: 900;
}

.tooltip-btn:hover {
    filter: invert(88%);
    box-shadow: 2px 2px 2px #292929;
}

.tooltip-preview{
  border-top-left-radius: 0px!important ;
  border-bottom-left-radius: 0px!important ;

}

.tooltip-preview:hover{
  background-color: #000!important;
  color: #fff!important;
}



  
.ergon{
  transform: translateX(98px) translateY(-5px)!important;
}

.dropdown-item{
  border-bottom: 1px #000!important;
}
.tooltip-text{
  color: #fff!important;
  text-transform: uppercase;
  padding: 2px 5px 2px 5px!important;
  margin: 0!important;
  font-size: 12px!important;
}

.hov-div{
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  background-color: #fff;
  opacity: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  position: absolute !important;
  left: 0em;
  top: -0.0em;
  transition: all .18s ease-in-out;
}
/*
.hov-div:hover .btntext{
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  background-color: #fff;
  opacity: 1;
  z-index: 10000;
  width: 100%;
  height: 100%;
  position: absolute !important;
  left: 0em;
  top: -0.0em;
}

.btn-bg:hover{
  background-size: cover!important;
}
*/

.scene-btn{
  color: #fff!important;
  background-color: #000!important;
  width: 2.48rem;
  height: 3rem;
}

.tooltip-btn:hover .btn-bg .tooltip-container{
  background: none!important;
  
}

.btn-bg{
  width: 4.08em;
  height: 4.08em;
  display: flex;
  transition: opacity .18s ease-in-out, background-size .18s ease-in-out;
  
}

.btntext{
  font-size: .68rem;
  text-transform: uppercase;
  margin: auto auto 0 auto;
  font-weight: 600;
  
}

.hov-span{
  margin-bottom: auto;
  margin-top: .8em;
  font-size: .68em!important;
}



.qr-invert{
  
  padding: .4em;
  background: #fff;
  border-radius: 8px;


}

.qr-float{
  position: absolute;
  bottom: 2.8rem;
  left: 2.8rem;
}

.fa-eye{
  color: #fff;
}

.iphone {
  width: 312px;
  background: #f4f4f4;
  border-radius: 2em;
  box-sizing: border-box;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
}
  .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.75em;
    margin-bottom: 2em;
  }
  .album-cover {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    .album-overlay {
      background: #fff;
      width: 248px;
      height: 255px;
      z-index: 2;
      border-radius: 15px;
      position: absolute;
      opacity: 0.15;
      -webkit-clip-path: ellipse(61% 64% at 82% 56%);
clip-path: ellipse(61% 64% at 82% 56%);
    }
    .abmg:hover{
      transform: scale(1.5);
      transition: transform .4s;
    }
    img {
      width: 100%;
      border-radius: 15px;
    }
    .song-title {
      text-align: center;
      padding-bottom: 0;
      margin-bottom: 0;
      color: #181818;
    }
    .artist-title {
      text-align: center;
      padding: 1em 0;
      margin: 0;
      font-size: 0.85em;
      color: 181818;
    }
  }

  .track {
    margin-top: 1em;
    height: 10px;
    div {
      width: 42%;
      height: 100%;
      background: gray;
      opacity: 0.75;
      border-radius: 15px;
    }
  
  .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 1em 0;
  }

  .lyrics {
    color: gray;
    margin-top: em;
    text-align: center;
    font-size: 0.75em;
    display: flex;
    flex-direction: column;
  }
}

.neu {
  box-shadow: -5px -5px 10px 0px #ffffff3b, 5px 5px 15px 0px #a3b1c6a8;
  background: background-gray;
  border-radius: 2em;
  border: 0;
}

.btn {
  padding: 15px;
  border-radius: 30px;
  color: gray;
  outline: none;
  cursor: pointer;
  &.lg {
    font-size: 1em;
  }
  &:active {
    cursor: pointer;
 
  }
}

.red {
  color: red;
}
.nav-scroller{
  width:3rem;
  height:2.5rem;
}
/* make navbar the positioning context */
#mainNav {
  position: fixed;
}

/* position the control 5em from right and vertically center it */
.container-c{
  position: absolute;
  right: 0em;
  top: 50%;            
  transform: translateY(-50%);
  z-index: 1051201;
  pointer-events: none;     /* avoid interfering with other navbar items — inner elements enable pointer events */
}

/* card itself should accept pointer events */
.container-c .card-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;     /* enable hover/click */
}

/* the round icon (slide1) */
.container-c .card-2 .slide.slide1{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none; 
  cursor: pointer;
  transition: transform .12s ease;
}

/* icon styling */
.container-c .card-2 .slide.slide1 .icon .fas {
  font-size: 20px;
  color: #fff;
}

/* the hidden panel that reveals to the left and slightly above the icon */
.container-c .card-2 .slide.slide2 {
  position: absolute;
  right: 0rem;   /* place to the left of the icon with 12px gap */
  transform: translateY(0%) translateX(0px); /* start slightly shifted toward the icon */
  opacity: 0;
  pointer-events: none;
  width: 220px;               /* panel width — change as needed */
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: opacity .25s ease, transform .25s ease;
  z-index: -1;
}

/* small decorative bar at bottom of panel */
.container-c .card-2 .slide.slide2::after{
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  
}

/* show panel on hover; you can also change :hover target to .card-2:focus-within for keyboard support */
.container-c .card-2:hover .slide.slide2,
.container-c .card-2:focus-within .slide.slide2 {
  opacity: 1;
  pointer-events: auto;
}

/* 👇 Add this */
.container-c .card-2:hover .slide.slide1 .icon .heart-mark,
.container-c .card-2:focus-within .slide.slide1 .icon .heart-mark {
  filter: invert(100%);
}

/* optional: slight lift on icon when hovered */
.container-c .card-2:hover .slide.slide1 {
  transform: translateY(0px);
}

/* content text colors */
.container-c .card-2 .slide.slide2 .content h3,
.container-c .card-2 .slide.slide2 .content p {
  color: #414141;
  margin: 0;
  text-align: center;
}

.main-content{
overflow-y: hidden;
overflow-x: hidden;
}

.hmb{
  position: inherit;
  border-left: solid 2px #0000008a;

}

.list-inline-item:hover{
  filter: invert(100%);
}

 #map {
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
    }
.cls-btn{

  right:1rem;
  top:1rem;
  z-index: 9999;
 padding: 3px 5px !important;

}


/* Glassmorphism utility V-1*/

.glass-0{
  background: rgba(255, 255, 255, 0.0)!important;
  backdrop-filter: blur(10px)!important;
  border: 1px solid rgba(255, 255, 255, 0.0)!important;
}
.glass {
  background: rgba(255, 255, 255, 0.1)!important;
  backdrop-filter:blur(1px) brightness(1.3) contrast(1) drop-shadow(0.5rem 0.5rem 0rem black) grayscale(1) hue-rotate(0.1turn) invert(.1) opacity(0.7) saturate(5) sepia(0.1)!important;
  border: 1px solid rgba(255, 255, 255, 0.1)!important;
  width: 100%;
  border-radius: 8px;
  
}

.glass::after{
    border-radius: .5rem;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(11, 11, 11, 0.2), 0 8px 8px rgba(13, 13, 13, 0.15), 0 16px 16px rgba(12, 12, 12, 0.10), 0 24px 24px rgba(24, 24, 24, 0.05);
    content: '';
    height: 100%;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Gradient button */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  color: white;
}



.addy{
  margin: 0px 2px;
}

.glass-bar {

  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05)!important;
  backdrop-filter: blur(10px)!important;
  border: 1px solid rgba(255, 255, 255, 0.1)!important;
  box-shadow: 0 4px 16px 0 #6868688c;
  
  -webkit-backdrop-filter: blur(10px);
  border-radius:8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.big-jar{
  

background-image: url("/../../img/pattern-randomized.svg");
background-size: cover;

}

.abt-vid{
  width: 100%;
  height: 100%;
  margin: auto;
  border: .3rem solid rgba(225, 225, 225, 0.79);
  border-radius: 7px !important;
}


.glass-span {
  width: 200px;
  height: 250px;
  margin: 1rem auto;
 
  cursor: pointer;
}

.glass-span {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.glass-btn:hover .glass-span {
  transform: rotateY(180deg);
  background-color: #fff!important;
  color: #fff!important;
}
.glass-btn:hover .glass-front {
  opacity:0;
  transform: rotateY(180deg);
  background-color: #fff!important;
  color: #fff!important;
  
  
}
.glass-front,
.glass-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.btn-setting {
  padding: 0.5rem;
  z-index: 1000;

}

.glass-back {

  transform: rotateY(180deg);
}
.smaller{
  font-size: .58rem;
  font-weight:600;
  text-wrap: nowrap;
  text-align: center;
  position: relative;
}
.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}
.carousel-image{
  object-fit: cover;
  object-position: center;
}

.qr-disp{

  text-align: center;
  color:#000;


}

.feature-grid .card-tile{
 aspect-ratio: 1/1;
}
.card-tile i {
  line-height: 1;
  margin-bottom: .25rem;
}

.hover-span .card-body{
  transition: opacity .2s ease, transform .2s ease;
}
.hover-span .new-action{
  opacity: 0;
  position: absolute;
  inset: 0;
}

.hover-span:hover .curr-action{
  opacity: 0;
}

.hover-span:hover .new-action{
  opacity:1;
}

/* ===========================
   NAV BUTTON UP ARROWS
   =========================== */

.btn-group .btn-warning {
    position: relative;
}

.btn-group .btn {
    width: 34px;          /* control size here */
    height: 34px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stack arrows vertically */
.btn-group .btn-dark i {
    display: block;
    line-height: 0.44;
    opacity: 0;
    transform: translateY(6px);
    animation: angle-up-flow 1s infinite;
}
.fa-minus-circle{
  transform: rotate(90deg)
}

.btn-group .btn-warning i:nth-child(2) {
    animation-delay: .0s;
}
.btn-group .btn-warning i:nth-child(3) {
    animation-delay: .0s;
}
/* Keyframes */
@keyframes angle-up-flow {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    60% {
        opacity: 1;
        transform: translateY(-4px);
    }
    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.square-tile {
  position: relative;
  font-size:11.4px;
  bottom: .8rem;
}


/* Desktop: show preview dropdown */
.desktop-preview {
    display: flex;
    flex-direction: row;
    text-decoration: none;
}
.mobile-dd {
    display:none;
}

/* Mobile switches */
@media (max-width: 768px) {
    .desktop-preview {
        display:none;
    }
    .mobile-dd {
        display:block;
    }
}


.small-read{
   font-size:11.4px;
   line-height:1.1;
   font-weight: 600;
}

/* ===========================
   NAV BUTTON UP ARROWS w/ BG IMAGE
   =========================== */


.ian-hotko{
  line-height: 1;
  background-color: #fff;
  
}   

.potin {
      width: 6rem;
      height: 5rem;
      transform: scale(.78);
}

/* wrapper must be hover trigger */
.potin {
    position: relative;
}

/* hidden by default */
.potin .chevron-strip {
    opacity: 1;
    pointer-events: none;
    z-index: 50000;
    width: 4rem;
    height: 3.8rem;
    transition: opacity 0.25s ease;
}

/* show only when hovering the hotspot wrapper */
.potin:hover .chevron-strip {
    opacity: 0;
}


.potin .btn {
    width: 6rem;          /* control size here */
    height: 5rem;
    padding: 0 !important;
    position: fixed;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
/* Stack arrows vertically */
.potin i {
    display: block;
    line-height: 0.64;
    opacity: 0;
    transform: translateY(6px);
    animation: sides-up-flow 1s infinite;
}


.potin i:nth-child(2) {
    animation-delay: .0s;
}
.potin i:nth-child(3) {
    animation-delay: .0s;
}
/* Keyframes */
@keyframes sides-up-flow {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    60% {
        opacity: 1;
        transform: translateY(-4px);
    }
    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.navbar-brand{
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}