p._arrow-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    animation: jump 5s infinite;
    cursor: pointer;
    /* width: 10%; */
    margin: 0 auto;
    padding-bottom: 20px;
}
._arrow-tag{ 
    height: 65px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    animation: none;
}
._arrow-tag span{
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #fff;
    -webkit-animation: height 2s infinite cubic-bezier(0.17, 0.67, 0.59, 0.85);
    animation: height 2s infinite cubic-bezier(0.17, 0.67, 0.59, 0);
}
._arrow-tag-div{
  position: sticky;
  bottom: 0;
}
.chosen-container .chosen-results{
  padding: 0px;
  margin: 0px;
}
.show-off-icon a{
  cursor: pointer;
}
.back-view{
  padding-top: 15px;;
}
.logo-img img{
  height: 65px !important;
}
@media(max-width:576px){
  .back-view a img {
      width: 16px;
      height: auto;
  }
  .back-view{
      padding-top: 9px;
  }
}
@keyframes height {
0% {
  transform: scaleY(0);
  transform-origin: 0% 0%;
  opacity: 0;
}

50% {
  transform: scaleY(1);
  transform-origin: 0% 0%;
  opacity: 1;
}

51% {
  transform: scaleY(1);
  transform-origin: 0% 100%;
  opacity: 1;
}

100% {
  transform: scaleY(0);
  transform-origin: 0% 100%;
    opacity: 0.5;
  }
}

@media (max-width: 480px){
    ._arrow-tag{
        display: none;
    }
}