.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform .5s ease;
  border: 10px #8080801f solid;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 92%)
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  border-radius: 10px 0px 0px 10px;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

.overlay input[type=password] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  border-radius: 10px 0px 0px 10px;
  width: 80%;
  background: white;
}

.overlay input[type=password]:hover {
  background: #f1f1f1;
}

.overlay button {
  float: left;
  width: 20%;
  border-radius: 0px 10px 10px 0px;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #bbb;
}

.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: white;
    box-shadow: #e9f1f1 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}

.open-button {
border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    left: 28px;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 15px;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.chatwith.svelte-aoit06 .slide-in-left.svelte-aoit06 {
    -webkit-animation: svelte-aoit06-slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: svelte-aoit06-slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.chatwith.svelte-aoit06 .chatwith-bubble.svelte-aoit06 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    margin-bottom: 10px;
    min-width: 280px;
    width: 300px;
}

.chatwith-header.svelte-lkffd5.svelte-lkffd5 {
    position: relative;
    padding: 20px 10px 5px;
}

.close-chatwith.svelte-lkffd5.svelte-lkffd5 {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.close-chatwith.svelte-lkffd5 svg.svelte-lkffd5 {
    width: 25px;
    height: 25px;
}

.chatwith-header.svelte-lkffd5 .chatwith-intro.svelte-lkffd5 {
    text-align: center;
    color: white;
    font-size: 14px;
}

.chatwith.svelte-aoit06 .banner.svelte-aoit06 {
    height: auto;
    width: 100%;
    margin: auto;
    display: block;
}

.chatwith.svelte-aoit06 .people.svelte-aoit06 {
    background: white;
}
.chatwith.svelte-aoit06 .peopleScroll.svelte-aoit06 {
    overflow-y: scroll;
    max-height: 320px;
}
.chatwith-header.svelte-lkffd5 .profile-img.svelte-lkffd5 {
    display: block;
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 200px;
    background: white;
    -o-object-fit: cover;
    object-fit: cover;
}

.chatwith.svelte-aoit06.svelte-aoit06 {
    position: fixed;
    bottom: 10px;
    font-family: Arial, sans-serif;
}

.chatwith.svelte-aoit06 .person.svelte-aoit06:last-child {
    border-bottom: #fff 1px solid;
}

.chatwith.svelte-aoit06 .person.svelte-aoit06 {
    border-bottom: #efefef 1px solid;
    padding: 10px 0;
    background: #fff;
}
.chatwith-person.svelte-1m23jck .chatwith-active.svelte-1m23jck {
    cursor: pointer;
    line-height: 1.1em;
}
.chatwith-person.svelte-1m23jck .chatwith-singleperson.svelte-1m23jck {
    display: flex;
    color: #5c5b5b;
}
.chatwith-person.svelte-1m23jck .chatwith-avatar.svelte-1m23jck {
    flex: 1;
    display: flex;
    justify-content: center;
}
.chatwith-person.svelte-1m23jck .chatwith-avatar-pic.svelte-1m23jck {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: auto;
    display: block;
}
.chatwith-person.svelte-1m23jck .chatwith-persondata.svelte-1m23jck {
    flex: 3;
}
.chatwith-person.svelte-1m23jck .chatwith-post.svelte-1m23jck {
    font-size: 12px;
    color: #5c5b5b;
    line-height: 1.1em;
}
.chatwith-person.svelte-1m23jck .chatwith-name.svelte-1m23jck {
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0;
    line-height: 1.1em;
}
.chatwith-person.svelte-1m23jck .chatwith-active .chatwith-status.svelte-1m23jck {
    color: green;
}
.chatwith-person.svelte-1m23jck .chatwith-status.svelte-1m23jck {
    font-size: 11px;
    color: #ccc;
}
.chatwith-person.svelte-1m23jck .chatwith-active .chatwith-circle.svelte-1m23jck {
    background: green;
}
.chatwith-person.svelte-1m23jck .chatwith-circle.svelte-1m23jck {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    display: inline-block;
    background: #ccc;
}

canvas{
  display:block;
  vertical-align:bottom;
}
/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
