/*
  .s360-startup-float-message-contianer {
    position: absolute;
    right: 10px;
    top: -190px;
    bottom: 0;
    margin: auto;
    width: 200px;
    box-shadow: 1px 1px 10px -1px #aaa;
    border-radius: 5px;
    padding: 10px 15px;
    height: 60px;
    color: #333;
    line-height: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 200px
  }

  .s360-startup-float-message-contianer:after {
    display: inline-block;
    content: '';
    position: absolute;
    background-color: #fff;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto;
    right: -5px;
    border-radius: 0 3px 0 0;
    box-shadow: 1px -1px 4px 0 #eee;
  } */

#s360-chat-iframe {
  animation: 1s showUp;
}
@keyframes showUp {
  from {
    opacity: 10%;
  }
  to {
    opacity: 100%;
  }
}

.s360-startup-float-message-container {
  position: fixed;
  overflow: visible;
  right: 30px;
  bottom: 128px;
  margin: auto;
  width: 121px;
  box-shadow: 1px 1px 10px -1px #aaa;
  border-radius: 7px;
  padding: 10px 15px;
  /* color: rgb(161, 7, 7); */
  background-color: #fff;
  display: flex;
  flex-direction: row-reverse;
  /*font-family: Arial;*/
  font-size: 13px;
  overflow-wrap: break-word;
  text-align: -webkit-left;
  justify-content: space-between;
  align-items: center;
}
.s360-startup-float-message-container img,
svg {
  cursor: pointer;
}
.s360-startup-float-message-container:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-width: 0 18px 13px 0;
  border-color: transparent white transparent transparent;
  bottom: -13px;
  left: var(----afterLeft);
  margin-left: -9px;
}

.s360-hidden {
  visibility: hidden;
  display: none;
  animation: 1s hideAnimation;


}

@keyframes hideAnimation {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
  }
}
/*Scrollbar Design*/

/*crome*/
::-webkit-scrollbar {
  width: 6px;
  z-index: 999;
}

::-webkit-scrollbar-track {
  border-radius: 0px;
  z-index: 999;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: #e5e5e5;
  z-index: 999;
}

/*firefox*/
* {
  scrollbar-color: #e5e5e5 transparent;
  scrollbar-width: thin;
  /*z-index:999;*/
}
.minimize{
  width: 30px;
  height: 30px;
  float: left;
  position: relative;

  &:before,
  &:after{
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background-color: black;
    position: absolute;
    border-radius: 2px;

    top: 14px;
    left: 10px;
  }

  &:before{
    transform: translateX(-3px) rotate(45deg);
  }

  &:after{
    transform: translateX(3px) rotate(-45deg);
  }
}
.s360-startup-float-img{
  height: 20px;
  width: 20px;
  background: #dcd5d5fa;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 100%;
  margin-right: -10px;
}
