

.logisChatWrap__header {
	width : 100%;
	height: 50px;
	display: flex;
	align-items: center;
	background: #1c203b;		
    padding: 0 12px;
    justify-content: space-between;
     cursor: move;
}

.logisChatWrap__header .btn-closed {
    display: flex;
    width: 15px;
    height: 15px;    
    background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z' fill='white'/%3E%3C/svg%3E") center no-repeat;
    cursor: pointer;
}
.logisChatWrap__header h1 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.logisChatWrap__header:active {
  cursor: grabbing;
}



.btn-headerHome {
    display: block;
    position: relative;    
    bottom: initial;
    font-size: 0px;
    color: #2842bb;
    background: url(../images/chatBot/ico_home.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
    padding: 0;
    flex-shrink: 0;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    filter: grayscale(100%) brightness(1000%);
    
    
}
.btn-headerHome:hover {
    filter: brightness(1.5) grayscale(100%) brightness(1000%);
}

.chatBotWrap {	
	width : 70px;
	height : 70px;
    position: fixed;
    right: 2%;
    bottom: 4%;
    z-index: 99;
    cursor: pointer;
    transition : 0.3s all;       
}
.chatBotWrap:hover {
    filter: brightness(1.4);
}

.chatBotWrap .btn-chatBot {	
    display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background: #002f7c;
    border-radius: 50%;
    position: relative;
    filter: drop-shadow(1px 3px 5px black);    
    /* background: url("../images/chatBot/btn-chatbot.png") center no-repeat; */
    
}

.faceArea {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    animation: floatUpDown 1.7s linear infinite;
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(-0.5px);
  }
  50% {
    transform: translateY(0.5px);
  }
}



.chatBotWrap .btn-chatBotFace { 
    display : block;
    position : absolute;
    left : 50%;
    transform : translateX(-50%);
    top : 21%;
    width : 44px;
    height : 40px;
    cursor : pointer;
    background: url("../images/chatBot/btn-chatbotFace.png") center no-repeat;
    
    
}
.leftEye {
    width: 4px;
    height: 6px;
    content: '';
    position: absolute;
    background: #002f7c;
    border-radius: 50%;
    left: 40%;
    top: 50%;
}

.rightEye {
    width: 4px;
    height: 6px;
    content: '';
    position: absolute;
    background: #002f7c;
    border-radius: 50%;
    left: 54.5%;
    top: 50%;
}



@keyframes blinkSequence {
  0%, 9% {
    transform: scaleY(1);
  }
  10%, 12% {
    transform: scaleY(0);
  }
  13%, 19% {
    transform: scaleY(1);
  }
  20%, 24% {
    transform: scaleY(0);
  }
  25%, 74% {
    transform: scaleY(1);
  }
  75%, 79% {
    transform: scaleY(0);
  }
  80%, 100% {
    transform: scaleY(1);
  }
}

.leftEye, .rightEye {
  animation: blinkSequence 5s infinite;
  transform-origin: center;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #00307c;
  display: inline-block;
  border-radius: 100%;
  
  animation: shrink_grow 1.2s ease infinite;
  transform: scale(0);
}

.dot-2 {
  animation-delay: 0.2s;
}

.dot-3 {
  animation-delay: 0.4s;
}

@keyframes shrink_grow {
  0% {
    transform: scale(0);
  }
  
  50% {
    transform: scale(1);
  }
  
  100% {
    transform: scale(0);    
  }
}

.chatfaceContainer {
  margin: auto;
  position: absolute;
  bottom: 0;
  left: -5px;
  top: -1px;
  right: 0;
  height: 32px;
  width: 32px;
  animation: up-down 7.5s infinite ease-in-out;
}
.chatfaceContainer #chatbotdot {
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  width: 37.5px;
  height: 21.25px;
  border: 3px solid #fff;
  border-radius: 1.25rem;
}
.chatfaceContainer #chatbot-corner {
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 20.25px;
    right: -35.25px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6.25px solid #fff;
    transform: rotate(-36deg);
}
.chatfaceContainer #antenna {
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  top: -31.25px;
  height: 5px;
  width: 2.5px;
  background-color: #fff;
  animation: antenna-appear 7.5s infinite ease-in-out;
}
.chatfaceContainer #antenna #beam {
  position: absolute;
  top: -3.125px;
  left: -1.25px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #fff;
  animation: beam-appear 7.5s infinite ease-in-out;
}
.chatfaceContainer #antenna #beam-pulsar {
  position: absolute;
  top: -3.125px;
  left: -1.25px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #fff;
  animation: beam-pulsar-appear 7.5s infinite ease-in-out;
}
.chatfaceContainer .chatbotdot-dot {
  height: 4.375px;
  width: 4.375px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  left: -16.25px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-outer 7.5s infinite ease-in-out;
}
.chatfaceContainer .chatbotdot-dot:nth-child(2) {
  left: 0;
  animation: pulse-inner 7.5s infinite ease-in-out;
  animation-delay: 0.2s;
}
.chatfaceContainer .chatbotdot-dot:nth-child(3) {
  left: 16.25px;
  animation: pulse-outer 7.5s infinite ease-in-out;
  animation-delay: 0.4s;
}

@keyframes pulse-inner {
  0% {
    transform: scale(1);
  }
  7.5% {
    transform: scale(1.2);
  }
  15% {
    transform: scale(1);
  }
  22.5% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  37.5% {
    transform: scale(1.2);
  }
  45% {
    top: 0;
    transform: scale(1);
    height: 4.375px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transform: rotate(-370deg);
  }
  50% {
    top: 5.625px;
    height: 2.5px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    transform: rotate(10deg);
  }
  55% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(10deg);
  }
  65% {
    transform: rotate(-10deg);
  }
  65% {
    transform: rotate(0deg);
  }
  85% {
    top: 5.625px;
    height: 2.5px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    transform: rotate(0deg);
  }
  92.5% {
    top: 5.625px;
    height: 2.5px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    height: 4.375px;
    border-radius: 50%;
    transform: rotate(-360deg);
  }
}
@keyframes pulse-outer {
  0% {
    transform: scale(1);
  }
  7.5% {
    transform: scale(1.2);
  }
  15% {
    transform: scale(1);
  }
  22.5% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  37.5% {
    transform: scale(1.2);
  }
  45% {
    transform: scale(1);
    height: 4.375px;
  }
  55% {
    transform: scale(1);
    height: 1.25px;
  }
  60% {
    height: 4.375px;
  }
  75% {
    height: 4.375px;
  }
  80% {
    transform: scale(1);
    height: 1.25px;
  }
  85% {
    height: 4.375px;
  }
  100% {
    height: 4.375px;
  }
}
@keyframes antenna-appear {
  0% {
    visibility: hidden;
    top: -20px;
    height: 0;
  }
  50% {
    visibility: hidden;
    top: -20px;
    height: 0;
  }
  55% {
    visibility: visible;
    top: -26.25px;
    height: 5px;
  }
  95% {
    visibility: visible;
    top: -26.25px;
    height: 5px;
  }
  100% {
    top: -20px;
    height: 0;
  }
}
@keyframes beam-appear {
  0% {
    visibility: hidden;
    top: -3.125px;
    height: 0;
  }
  50% {
    visibility: hidden;
    top: -3.125px;
    height: 0;
  }
  55% {
    visibility: visible;
    top: -3.125px;
    height: 5px;
    width: 5px;
  }
  100% {
    visibility: visible;
    top: -3.125px;
    height: 5px;
    width: 5px;
  }
}
@keyframes beam-pulsar-appear {
  0% {
    visibility: hidden;
    top: -3.125px;
    height: 0;
  }
  50% {
    visibility: hidden;
    top: -3.125px;
    height: 0;
  }
  55% {
    visibility: visible;
    top: -3.125px;
    left: -1.25px;
    height: 5px;
    width: 5px;
    opacity: 1;
  }
  65% {
    top: -6.25px;
    left: -3.75px;
    height: 10px;
    width: 10px;
    opacity: 0;
    visibility: visible;
  }
  74% {
    visibility: hidden;
    opacity: 0;
  }
  75% {
    visibility: visible;
    top: -3.125px;
    left: -1.25px;
    height: 5px;
    width: 5px;
    opacity: 1;
  }
  85% {
    top: -6.25px;
    left: -3.75px;
    height: 10px;
    width: 10px;
    opacity: 0;
    visibility: visible;
  }
  94% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes up-down {
  0% {
    transform: translate(0);
  }
  12.5% {
    transform: translate(0, 5%);
  }
  25% {
    transform: translate(0);
  }
  37.5% {
    transform: translate(0, 5%);
  }
  50% {
    transform: translate(0);
  }
  62.5% {
    transform: translate(0, 5%);
  }
  75% {
    transform: translate(0);
  }
  87.5% {
    transform: translate(0, 5%);
  }
  100% {
    transform: translate(0);
  }
}