/* >>> navbar right side */

/* >>> SIDEBAR NAV */
.ecowds-live-chat {
  position: absolute;
  width: 160px;
  height: 210px;
  /* height: 10vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;
  text-align: center;
  /* background: #FFFFFF; */
  background-color: #8CC740;
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
  z-index: 1;
  padding: auto;
  color: #ffffff;
  font-size: 1rem;
}
.ecowds-live-chat div {
  margin: auto;
}
/* .ecowds-live-chat svg {
  fill: #ffffff;
  flex-basis: 100vw;
}
.ecowds-live-chat svg:hover {
  fill: black;
} */
.sidebar-custom-hover {
  transition: color 0.3s ease;
  background-color: none;
  color: #ffffff;
  fill: #ffffff;
}
.sidebar-custom-hover:hover {
  transition: color 0.3s ease;
  background-color: none;
  color: #000000;
  fill: #000000;
}
.sidebar-custom-hover a {
  font-size: 1rem;  
}
.ecowds-live-chat p {
  flex-basis: 100vw;
}
.ecowds-live-chat li {
  padding: 0 0 15px 0;
}
/* !!! SIDEBAR NAV */
#menuToggle {
  display: block;
  position: absolute;
  top: 35px;
  right: 84px;
  z-index: 998;
  -webkit-user-select: none;
  user-select: none;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.2rem;
}
#menuToggle input {
  display: block;
  width: 55px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 999; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: #ffffff;
  border-radius: 3px;
  color: black;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background-color: #ffffff;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}
#menu {
  position: absolute;
  width: 122px;
  height: 100vh;
  margin: -70px 0 0 0;
  padding: 100px 0 0 0;
  right: -42px;
  background-color: #8CC740;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);   
}
#menuToggle input:checked ~ ul {
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #menu {
    transform: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }
}
/* !!! navbar right side */

.noho {
  position: absolute;
  top: 70px;
  left: 40px;
  text-align: center;
  /* margin: -20px 38px 0 0; */
}

/* >>> chat-toggle */
.chat-toggle {
  position: absolute;
  top: 110px;
  left: 30px;
  margin: auto;
  display: flex;
  justify-content: center;
}
/* !!! chat-toggle */