:root {
  --marginLeft: 4%;
  --contentHeight: 88vh;
  --footerHeight: 4%;
  --footerFontSize: 0.8em;
  --footerLogoSize: 90%;
  --h1Size: 1.5em;
  --h2Size: 1.5em;
  --pSize: 0.9em;
  --capSize: 0.9vw;
  --slideShowDescription: 1em;
  --pageTitleCol: rgb(0, 0, 0);
  --timeLineh1: 1.1em;
  --timelineh2: 0.8em;
  --navBarHeight: 0;
  --burgerStackTop: 33%;
  --burgerWidth: 70%;
  --burgerStackRight: 7px;
  --burgerCol: black;
  --burgerCol_2: rgb(121, 121, 121);
  --hoverCol: #000000;
  --clickedCol: #636fff;
  --burgerItemCol: #63666b;
  --secondary_color: #ebebeb;
  --tertiary_color: rgb(223, 223, 223);
  --background_color: linear-gradient(rgb(245, 245, 245), rgb(216, 216, 216));
  /* linear-gradient(rgb(255, 255, 255) 0%, rgb(235, 235, 235) 30%, rgb(223, 223, 223) 60%); */
  --burgerItemSize: 10pt;
  --accentCol: #ffd000;
  --timingFunction: cubic-bezier(0.98, 0.01, 0.59, 1.49);
}

h1,
h2,
p {
  font-family: 'Outfit', sans-serif;
  font-optical-sizing: auto;
}

h1 {
  font-size: var(--h1Size);
}

p {
  font: var(--pSize);
}

a {
  text-decoration: none;
  color: black;
  font-family: 'Outfit', sans-serif;
}

p>a,
#copy {
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

p>a:hover,
#copy:hover {
  font-weight: 400;
  text-decoration: underline;
}

body {
  font-family: 'Outfit', sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  margin: 2%;
  margin-top: 1%;
  justify-content: space-between;
  /* background-image: url("/assets/ah_background.jpg");  */
  background: var(--background_color);
  background-attachment: fixed;
  /*edit*/
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 0px;
  cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--accentCol);
  cursor: pointer;
}

.nav {
  /* background-color: pink; */
  width: 100vw;
  min-height: var(--navBarHeight);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  margin-bottom: 1.5%;
}


.nav>div:nth-of-type(1) {
  /*Header Contailer*/
  /* background-color: skyblue; */
  width: 95%;
}

.nav>div:nth-of-type(1)>h1 {
  font-size: var(--h1Size);
  font-weight: 300;
  display: inline-block;
  margin: 0px;
  margin-right: 1%;
  line-height: 0.1;
  color: var(--pageTitleCol);
  font-weight: 600;
  font-variant: small-caps;
}

.nav>div:nth-of-type(1)>h2 {
  font-size: var(--h2Size);
  margin: 0px;
  line-height: 1.4;
  color: var(--pageTitleCol);
  font-weight: 300;
}

.nav>div:nth-of-type(1)>h2>span,
.nav>div:nth-of-type(1)>h1>span,
.nav>div:nth-of-type(1)>h1>a>span {
  --delay: calc((var(--char-index) + 1)*100ms);
  /*here*/
  -webkit-animation: PageTitle_breathe__1Qmss 10s infinite both;
  animation: PageTitle_breathe__1Qmss 10s infinite both;
  -webkit-animation-delay: var(--delay);
  animation-delay: var(--delay);
  animation-fill-mode: forwards;
  transform-origin: center;
  transform: scale(1) translate(0%, 0%);
  margin-left: -0.75px;
  /* -webkit-animation-play-state: paused;
  animation-play-state: paused */
}

@keyframes PageTitle_breathe__1Qmss {
  0% {
    font-variation-settings: "wght" 500;
    color: #000000;
    /* letter-spacing: -.07em */
  }

  5% {
    font-variation-settings: "wght" 300;
    /* color:var(--accentCol); */
    /* letter-spacing: -.1em */
  }

  10% {
    font-variation-settings: "wght" 300;
    /* color:var(--clickedCol); */
    /* letter-spacing: -.1em */
  }

  100% {
    font-variation-settings: "wght" 500;
    color: #000000;
    /* letter-spacing: -.07em */
  }
}

div.burger {
  width: 75px;
  height: 0px;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
}


div.burger>div.icon {
  border: solid 1px var(--burgerCol_2);
  /* width: var(--navBarHeight);  */
  /* height: calc(var(--navBarHeight) - var(--burgerStackTop)); */
  /* padding-top: var(--burgerStackTop); */
  /* transition: all 0.25s; */
}

div.burger>div.icon>p {
  margin: 0;
  text-align: center;
  background-color: black;
  color: var(--secondary_color) !important;
}

div.burger>div.icon>p:hover {
  color: black !important;
  background-color: var(--secondary_color)
}

div.burger>div.icon:hover {
  /* transform:translateY(-5px); */
  cursor: pointer;
  /* background-color: var(--hoverCol); */
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div.icon:hover>p {
  color: var(--secondary_color);
}

div.burger>div.icon>div {
  display: none;
  width: var(--burgerWidth);
  height: 10%;
  background-color: var(--burgerCol);
  border-radius: 10px;
  margin: auto;

  margin-bottom: 10px;
  /* margin-left:10%; */
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div.icon:hover>div {
  background-color: var(--secondary_color);
}

div.burger[data-state="open"]>div.icon>div:nth-of-type(1) {
  transform: rotate(30deg) translateY(5px) translateX(var(--burgerStackRight));

}

div.burger[data-state="open"]>div.icon>div:nth-of-type(2) {
  transform: rotate(-30deg) translateY(-5px) translateX(var(--burgerStackRight));

}

div.burger>div:not(:first-of-type) {
  background-color: var(--secondary_color);
  border: solid 1px var(--burgerCol_2);
  border-top: none;
}

div.burger>div:last-of-type {
  border-bottom: none;
}

div.burger>div:not(:first-of-type):hover {
  background-color: var(--hoverCol);
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div:not(:first-of-type)>a {
  color: black;
  text-decoration: none;
}

div.burger>div:not(:first-of-type)>a>p,
div.burger>div.icon>p {
  margin: 0;
  padding-top: 10%;
  padding-bottom: 10%;
  font-size: calc(var(--burgerItemSize) * 0.9);
  text-align: center;
  color: black;
  font-weight: 300;

  text-transform: uppercase;
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div:not(:first-of-type):hover>a>p {
  color: var(--secondary_color);
}

div.burger[data-state="closed"]>div:not(:first-of-type) {
  display: none;
}

div.burger[data-state="open"] {
  /* width: 8%; */
  /* height:100%; */
}

div.burger[data-state="open"]>div:not(:first-of-type) {
  display: block;
}

div.page {
  /* background-color: pink; */
  height: var(--contentHeight);
  /* max-width:calc(100vw - 12%); */
  /* border: solid 1px var(--burgerCol_2); */
  flex-grow: 1;
  order: 2;
  display: flex;
  overflow: hidden;
  /* padding: 5px; */
}

div.content {
  background-color: var(--secondary_color); 
  /* height: 100%; */
  height: fit-content;
  order: 2;
  width: 100%;
  overflow: hidden;
  border: solid 1px black;
  margin: auto;
}

div.desc>h1 {
  margin: 0;
  width: 100%;
  margin-left: var(--marginLeft) !important;
  align-self: flex-end;
  margin-top: 2%;
}

div.desc>h2 {
  margin: 0;
  margin-left: var(--marginLeft) !important;
  width: 100%;
  align-self: end;
  font-size: var(--h1Size);
}

div.desc>h3 {
  margin: 0;
  display: inline-block;
  width: fit-content;
  margin-left: var(--marginLeft) !important;
  width: 100%;
}

div.desc {
  font-size: var(--pSize);
  font-weight: 200;

}

div.desc>p {
  /* font-size: var(--pSize);
  overflow-y: auto; */
  margin-left: var(--marginLeft) !important;
  margin-right: var(--marginLeft) !important;
  width: 100%;
  text-align: left;
  align-self: baseline;
}

div.desc>p.feat {
  /* font-size: var(--pSize); */
  margin-bottom: 2%;
  margin-top: 0;
  width: 100%;
}

li {
  list-style-type: " ";
  /*☍⎎⏣☼▸⬖☂⧨✷✺*/
  padding-left: 1%;
  /* font-size: var(--pSize); */
  font-family: 'Outfit';
}

li::marker {
  /* animation-name: spin; */
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg) translateY(0px);
  }

  50% {
    transform: rotate(180deg) translateY(-2px);
  }

  100% {
    transform: rotate(360deg) translateY(0px);
  }
}

li.highlight {
  color: var(--thirdCol);
}

ul {
  padding-left: 5%;
  margin-top: 0;
  width: 100%;
}

div.content>div>div.desc {
  /* background-color: pink; */
  width: 50%;
  flex-basis: auto;
  display: flex;
  flex-direction: row;
  /* padding-right: 2%; */
  /* margin-left: 5px; */
  flex-wrap: wrap;
  /* align-content: center; */
  /* height: 100%; */
  align-items: center;
  overflow-y: auto;
  overflow-x: clip;
  border-right: solid 1px black;
}

div.content>div>div.media {
  /* background-color: salmon; */
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  justify-content: space-between;
}

div.media {
  overflow: hidden;
  align-content: center;
}

div.media>img {
  height: auto;
  width: 100%;
  margin: auto;
}

div.media>img.portrait {
  width: auto;
  height: 100%;
}

div.media>video {
  height: auto;
  width: 100%;
  margin: auto;
  margin-bottom: 2%;
}

div.main1by2>div.media>video.card {
  /* width: 35% !important;
  height:100%; */
}

div.media>video.card {
  margin-bottom: 0%;
}

div.media>video.portrait {
  height: 100%;
  width: auto;
}

div.media>img:not(:first-of-type) {
  margin-top: 2%;
}

div.media>.pdf {
  height: 100%;
  width: 90%;
  margin: auto;
}

div.media>p.caption {
  padding-left: 2%;
  padding-right: 2%;
  font-size: var(--capSize);
  font-weight: 300;
}

div.media>.youtube {
  height: 90%;
  width: 100%;
  margin: auto;
}

div.media>div.slideshow {
  width: 100%;
  height: 100%;
  background-color: black;
}

div.media>div.slideshow>div:not(div.UI) {
  height: 100%;
  text-align: center;
  display: none;
}

div.media>div.slideshow>div[data-state="0"] {
  display: block !important;
}

div.slideshow>div>img {
  height: 100%;
}

div.slideshow>div.UI {
  /* background-color: red; */
  width: 6.5%;
  height: 4%;
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 2%;
  margin-left: 27%;
  margin-top: 1%;
}

div.slideshow>div.UI>div {
  /* background-color: yellow; */
  height: 100%;
  width: 50%;
  z-index: 2;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.slideshow>div.UI>div:hover {
  /* background-color: red; */
  transform: scale(0.8);
}

div.slideshow>div.description {
  /* background-color: pink; */
  background-color: #0000008a;
  width: 60%;
  height: auto !important;
  position: sticky;
  bottom: 20%;
  margin: auto;
}

div.slideshow>div.description>p {
  font-size: var(--slideShowDescription);
  color: white;
  background-color: #0000007a;
  width: fit-content;
  text-align: center;
  margin: auto;
}

div.UI>div[data-role="forward"] {
  background-image: url("assets/left_arrow.png");
}

div.UI>div[data-role="back"] {
  background-image: url("assets/right_arrow.png");
}

div.slideshow>div>video {
  height: 100%;
  width: auto;
}

div.media>div.card {
  --delay: calc((var(--char-index) + 1)*300ms);
  /*here*/
 
  display: inline-block;
  font-size: var(--h1Size) !important;
  /* border: 0.5px solid black; */
  /* background-image:none!important; */
  border-left: none;
  border-bottom: none;
  justify-content: center;
  min-width: 100%;
  /* max-height: 15%; */
  flex-grow: 1;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
  animation-name: card_warp;
  animation-play-state: paused;
  animation-duration: 100s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  /* animation-delay: var(--delay); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  overflow: hidden;
}

div.media>div.card.wide {
  width: 100%;
  overflow: hidden;
}


div.desc>div.card {
  /* background-color: var(--secondary_color); */
  font-size: 2em;
  padding: 2%;
  border-top: 0.5px solid black;
  border-left: none;
  border-right: none;
  border-bottom: none;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  flex-grow: 1;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
  /* margin-top: 50%; */
  overflow: hidden;
  align-self: flex-end;
}

div.desc>div.card:nth-of-type(2) {
  border-left: 0.5px solid black;
  ;
}

div.desc>div.card>a>h2 {
  font-size: 80%;
  margin: 0;
  color: black;
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.media>div.card:hover {
  background-color: var(--hoverCol);
  cursor: pointer;
  background-size: cover;
  animation-play-state: running;
  /* background-blend-mode: hard-light; */
  /* Blend the color with the image */
  /* transform: scale(1.1); */
}

div.media>div.card>a>h2 {
  color: black;
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
  font-size: var(--h1Size);
  padding: 0;
  padding-left: 2%;
  margin: 0;
  margin-top: 1%;
  margin-bottom: 1%;

}

div.media>div.card:hover>a>h2 {

  color: var(--accentCol);
  text-shadow: none;

}

div.desc>div.card:hover {
  background-color: var(--hoverCol);
  cursor: pointer;
  /* transform: scale(1.1); */
}

div.desc>div.card:hover>a>h2 {
  color: var(--secondary_color);
  text-shadow: none;
}

div.media>div.card#crea:hover>a>h2,
div.media>div.card#thre:hover>a>h2 {
  color: white
}

/* div.media>div.card#jam{
  background-image:url('/assets/cards/JAM_SocialPost_1_V1.png')!important;
}
div.media>div.card#brid{
  background-image:url('/assets/cards/game_grab_02.jpg')!important;
}
div.media>div.card#crea{
  background-image:url('/assets/cards/snapshot\ \(37\).png')!important;
}

div.media>div.card#inst{
  background-image:url('/assets/cards/portrait_2.jpg')!important;
}
div.media>div.card#thre{
  background-image:url('/assets/cards/portrait_2.jpg')!important;
} */
div.media>div.card#crea:hover,
div.media>div.card#thre:hover {
  filter: invert(100%);
}

div.card[data-highlight='true'] {
  animation-name: highlight;
  animation-play-state: running;
  animation-duration: 2s;
  animation-timing-function: var(--timingFunction);
  animation-iteration-count: infinite;
}

div.media>div>a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

div.media>div>a>h2 {
  /* margin: 0; */
  height: 100%;
  /* margin-top: auto; */
  width: 95%;
  text-align: left;
  padding: 5%;
  text-shadow: 1px 1px 0 #ebebeb69,
    -1px 1px 0 #ebebeb69,
    -1px -1px 0 #ebebeb69,
    1px -1px 0 #ebebeb69;
}

@keyframes card_warp {
  0% {
    background-position: center right;
  }

  30% {
    background-position: top right;
  }

  70% {
    background-position: bottom right;
  }

  100% {
    background-position: center right;
  }
}

div.desc>div>a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

div.desc>p>img {
  width: 100%;
  margin-top: 5%;
}

div.desc>h1>span,
div.desc>p>span,
li>span {
  /* font-size: calc(var(--pSize) * 0.6);
  font-style: italic; */
  opacity: 0;
  /* font-size: calc(var(--pSize) * 0.6); */
  animation: typing;
  animation-duration: 0.5s;
  animation-delay: calc(10ms * var(--char-index));
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  /*cubic-bezier(0, 1.2, 0, 1.01);*/
  animation-iteration-count: 1;
  animation-play-state: running;

  -webkit-animation: typing 0.5s;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-play-state: running;
}

div.desc>p>a>span {
  /* animation-duration: 0.1s;
  animation-delay: calc(5ms * var(--char-index));
  animation-timing-function: linear;
  -webkit-animation: typing 0.1s linear 0s forwards;
  -webkit-animation-delay: calc(15ms * var(--char-index));
  -webkit-animation-timing-function: linear; */
}

div.content[data-state='closed'] {
  display: none;

}

div.main,
div.main1by1,
div.main1by1f,
div.main1by2,
div.main1by2f {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 20vh;
  max-height: 87vh;
}

div.main1by1>div.desc {
  width: 50%;
}

div.main1by1>div.media {
  width: 50%;
}

div.main1by1f>div.desc {
  width: 50%;
  order: 2;
}

div.main1by1f>div.media {
  width: 50%;
  order: 1;
}

div.main1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

div.main1>div.desc {
  width: 100% !important;
  height: 20%;
}

div.main1>div.desc>h1 {
  text-align: center;
  margin-left: var(--marginLeft) !important;
}

div.main1>div.desc>p {
  display: none;
}

div.main1>div.media {
  width: 100% !important;
  height: 80%;
}

div.main1by2>div.desc {
  width: 30% !important;
}

div.main1by2>div.media {
  width: 70% !important;
}

div.main1by2f>div.desc {
  width: 30% !important;
  order: 2;

}

div.main1by2f>div.media {
  width: 70% !important;
  order: 1;
}

div.timeline {
  /* background-color: skyblue; */
  /* max-width: 7vw; */
  /* width: 75px; */
  margin-top: 1%;
  margin-right: 1%;
  /* margin-left: -2%; */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  order: 1;
  /* transform: translateX(calc(100% * 0.125)); */
}

div.line {
  background-color: rgba(0, 0, 0, 0.2);
  width: 2px;
  flex-grow: 1;
  margin: auto;
}

div.line:nth-of-type(1) {
  display: none;
}

div.segment {
  background-color: black;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
  transform: scale(0.75);
  width: 110%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 4px solid;
}

div.segment[data-highlight='true'] {
  animation-name: highlight;
  animation-play-state: running;
  animation-duration: 2s;
  animation-timing-function: var(--timingFunction);
  animation-iteration-count: infinite;

}

@keyframes highlight {
  0% {
    border-color: black;
  }

  25% {
    border-color: var(--accentCol);
  }

  50% {
    border-color: black;
  }

  100% {
    border-color: black
  }
}

div.segment:hover {
  animation-play-state: paused;
  background-color: var(--hoverCol) !important;
  border-color: var(--hoverCol) !important;
}

div.segment.active {
  /* background-color: var(--clickedCol); */
  /* border-radius: 5px; */
  animation-play-state: paused;
  background-color: var(--accentCol) !important;
  border-color: var(--accentCol) !important;
  transform: scale(1);
}

div.segment>h1 {
  /* background-color: green; */
  margin: 0;
  text-align: center;
  font-size: var(--timeLineh1);
  font-weight: 400;
  /* max-width: 7vw;
  min-width: 5vw; */
  color: white;
  margin-bottom: 2%;
  overflow-wrap: anywhere;
}

div.segment>h2 {
  /* background-color: purple; */
  margin: 0;
  margin-top: 5%;
  font-size: 0em;
  text-align: center;
  color: white;
  font-weight: 400;
  display: none;
  transition: font-size 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.segment.active>h2 {
  display: block;
  font-size: var(--timelineh2);
}

#loading {
  width: 100%;
  height: fit-content;
  /* background-color: purple; */
  position: absolute;
  top: 0;
  z-index: 3;
  top: 50%;
  /* display: none; */
}

#loading>div {
  width: 100px;
  height: 100px;
  margin: auto;
  background-image: url("assets/video_loading.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: calc(50% - 25%);
  animation-name: loading;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

}

div.media>img+#loading {
  display: none;
}

div.media>iframe {
  border: none;
  overflow: hidden;
}

div.media>iframe+#loading {
  display: none;
}

div.media>div.link+#loading {
  display: none;
}

div.media>div.slideshow+#loading {
  display: none;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

#loading.hide {
  display: none !important;
}

div.footer {
  /* background-color: pink; */
  /* display: flex;
  flex-wrap: nowrap;
  gap: 2%;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row; */
  width: calc(98% - var(--marginLeft));
  /* height: calc(var(--footerHeight) - 2%); */
  position: fixed;
  bottom: 0px;
  margin: 0;
  padding: 1%;
  overflow: hidden;
}

div.footer>div.desc {
  max-width: 100%;
  text-align: center;
  align-self: end;

}

div.footer>div.desc>p {
  margin: 0 !important;
  font-size: var(--footerFontSize);
}

div.footer>div:not(.desc) {
  height: var(--footerLogoSize);
  align-self: end;
}

div.footer>div:not(.desc):nth-of-type(1) {}

div.footer>div:not(.desc):nth-last-of-type(1) {
  height: calc(var(--footerLogoSize) - 10%);

}

div.footer>div:not(.desc)>a>img {
  height: 100%;
}

div.chatbot {
  position: fixed;
  display: block;
  bottom: 0;
  right: 0;
  background-color: red;
  z-index: 50;
}

div.chatbot>iframe {
  /* position: absolute; */
}

div.chatbot>iframe:nth-last-of-type(1) {
  /*Chat Bot*/

  margin-right: 1rem;
  margin-bottom: 6rem;
  /* display: block;*/
  position: absolute;
  right: 0px;
  bottom: 0px;
  pointer-events: auto;
  overflow: hidden;
  height: 65vh;
  border: 2px solid rgb(226, 232, 240);
  border-radius: 0.375rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  width: 30rem;
}

div.chatbot>iframe:nth-last-of-type(2) {
  /*Chat Button*/
  z-index: 50;
  margin-right: 1rem;
  margin-bottom: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  border: 0;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  color-scheme: none;
  background: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@keyframes typing {
  0% {
    opacity: 0;

  }

  100% {
    opacity: 1;


  }

}