body{
	background: #1e1e2f;
  max-width: 100vw;
  overflow-x: hidden;
 
}

main{
	background: #1e1e2f;
  
}
input:focus, select:focus {
  outline: none;       /* Removes the default outline */
  box-shadow: none;    /* Removes the default box-shadow */
}
.gradient-border-bottom {
    border-bottom: 1px solid transparent; 
    border-image: linear-gradient(to right, #3877ec, #c15f63); 
    border-image-slice: 0 0 100% 0; 
}
.gradient-border-top {
    border-top: 1px solid transparent; 
    border-image: linear-gradient(to right, #3877ec, #c15f63); 
    border-image-slice:1; 
}
.logo{
    max-height: 50px;
    margin-left: 25px;
}

#chatbox {
    min-width: 100%;
    max-width: 100%;
    margin: auto;
    background: var(--bg-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 0px;
    max-height: calc(100vh - 12.5vh);
   

}
#chatlog {
  min-width: 100%;
      padding-left: 5px;
    padding-right: 5px;
    max-height: calc(100vh - 12.5vh);
    overflow-y: auto;
    padding-top: 25px;
    padding-bottom: 175px;   
}

 .message {
      margin: 10px 0;
      display: flex;
      align-items: flex-end;
    }
    .user, .bot {
      max-width: 93%;
      padding: 10px;
      border-radius: 15px;
      position: relative;
      font-size: 0.95em;
      word-wrap: break-word;
      color: #fff;
    }
    .user {
      background: var(--user-bg);
      margin-left: auto;
      background: linear-gradient(299deg, rgba(39, 54, 69, 1) 0%, rgba(29, 43, 56, 1) 53%);
      box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.5);
      -webkit-box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.5);
      -moz-box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.5);
      
    }
    .bot {
      background: var(--bot-bg);
            background: linear-gradient(299deg, rgba(39, 54, 69, 1) 0%, rgba(29, 43, 56, 1) 53%);

      margin-right: auto;
       box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);
      -webkit-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);
      -moz-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);

    }
    .avatar {
      width: 30px;
      height: 30px;
      border-radius: 0%;
      margin: 0 10px;
      position:absolute;
      z-index: 3;
      top: 0;
      margin-top:10px;
      margin-left:0px;
    }
    .timestamp {
      font-size: 0.7em;
      color: #888;
      margin-top: 5px;
      text-align: right;
    }
    .status {
      font-size: 0.65em;
      color: #8d699a;
      text-align: right;
      margin-top: 2px;
    }
    .message-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .user-wrapper {
      align-items: flex-end;
    }
    .content{
      margin-left:45px;
      margin-top:5px;
    }

.btn-alt,
.input{
  width: 100%;
  padding: 5px;
  border: none;
}
#input{
 padding: 10px;
 margin-left: 5px;
 margin-top: auto;
 margin-bottom: auto;
}

.btn-alt{
   margin-top: auto;
  margin-bottom: auto;
  padding: 5px;
  margin-left:-12px;
  background: linear-gradient(130deg, rgba(56, 119, 236, 1) 0%, rgba(193, 95, 99, 1) 100%);
}

.btn-alt:active{
  transform: scale(0.9);
}

.inset{
  max-height: 100%;
  min-height: 100%;
  border-radius: 5px;
}

#loading {
  text-align: center;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position:fixed;
  z-index: 999999;
  background: rgba(30, 30, 47, 0.8);
}
.host{
  z-index: 95;
  position: absolute;
  min-height: 100%;
  min-width: 100%; /* Or a fixed pixel value */
  margin-left: auto;
  margin-right: auto;
}
.loaderdot{
  position: relative;
  width:17px;
  height:17px;
  background:#FFF;
  border-radius:100%;
  float:left;
  margin-right:6px;
  margin-left: 6px;
  padding-left: 6px;
}
.loading-0{
  -webkit-animation:bounce 1s infinite;
  -webkit-animation-delay:.1s;
  background:#3877ec;
  
}
.loading-1{
  -webkit-animation:bounce 1s infinite;
  -webkit-animation-delay:.3s;
  background:#8d699a;
}
.loading-2{
  -webkit-animation:bounce 1s infinite ease;
  -webkit-animation-delay:.5s;
  background:#c15f63;
}
@keyframes bounce {
  0%, 100% {
    opacity:1;
  }
  60% {
    opacity:.0;
   
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    opacity:1;
  }
  60% {
    opacity:.0;
   
  }
}

.bump{
  margin-right: 15px;
}

.fa-big{
  transform: scale(1.25);
}

.centerer {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  height: 100vh; /* Example: Centers within the viewport height */
}
.centerer-bar {
  min-width: 100vw;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  height: 10vh; /* Example: Centers within the viewport height */
}



.no-gradientbg{
  background-color: #ffffff !important;
  background: #ffffff !important;
}

.nav-item{
  margin-top: 10px;
  margin-bottom: 10px;
}
.gradient-icon {
  background-image: linear-gradient(130deg, rgba(56, 119, 236, 1) 0%, rgba(193, 95, 99, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* For Webkit browsers */
  color: transparent;
}
.gradient-ring {
  background-image: linear-gradient(130deg, rgba(56, 119, 236, 1) 0%, rgba(193, 95, 99, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* For Webkit browsers */
  color: transparent;
}

.nav-link{
  display: inline;
    text-decoration: none;
    background-image: linear-gradient(transparent, transparent),linear-gradient(transparent, transparent),linear-gradient(to right, transparent, transparent);
    background-repeat: no-repeat;
    background-position: 120%, 122%, 0 130%;
background-size: 100% 10px;
}


a.nav-link{
    background-image: linear-gradient(to right, rgba(56, 119, 236, 1), rgba(193, 95, 99, 1)); /* Red to Blue gradient */
  background-clip: text;
  -webkit-background-clip: text; /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent; /* For WebKit browsers */
  background-repeat: no-repeat;
    background-position: 120%, 122%, 0 175%;
background-size: 100% 30px;
font-weight: 400;
letter-spacing: 2px;
}

a.nav-link:hover{
    background-image: linear-gradient(to right, rgba(56, 119, 236, 1), rgba(193, 95, 99, 1)); /* Red to Blue gradient */
  background-clip: text;
  -webkit-background-clip: text; /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent; /* For WebKit browsers */
  background-repeat: no-repeat;
    background-position: 120%, 122%, 0 175%;
background-size: 100% 30px;
border-bottom: 1px solid transparent; 
    border-image: linear-gradient(to right, #3877ec, #c15f63); 
    border-image-slice: 0 0 100% 0; 
}


div.content p a{
  background-image: linear-gradient(to right, rgba(56, 119, 236, 1), rgba(193, 95, 99, 1)); /* Red to Blue gradient */
  background-clip: text;
  -webkit-background-clip: text; /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent; /* For WebKit browsers */
  background-repeat: no-repeat;
    background-position: 120%, 122%, 0 175%;
background-size: 100% 30px;

}

div.content p a:hover{
border-bottom: 1px solid transparent; 
    border-image: linear-gradient(to right, #3877ec, #c15f63); 
    border-image-slice: 0 0 100% 0; 
    
}



.noshow{
  opacity: 0;
}

.nosee{
  display: none;
}

footer{
  min-height: 12.5vh;
  max-height: 22.5vh;
  bottom: 0;
  margin-bottom: 0px;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}



*::-webkit-scrollbar-track
{
  background-color:transparent;
  border-radius: 10px;
}

*::-webkit-scrollbar
{
  width: 10px;
  background-color: transparent;
}

*::-webkit-scrollbar-thumb{
  border-radius: 10px;
background-color: #fff;
background-color: transparent;
}
.closemodalXX{
  text-align: right;
  padding-top: 22.5px;
  padding-right: 23px;
  background-image: linear-gradient(to right, rgba(56, 119, 236, 1), rgba(193, 95, 99, 1)); /* Red to Blue gradient */
  background-clip: text;
  -webkit-background-clip: text; /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent; /* For WebKit browsers */
  background-repeat: no-repeat;
    background-position: 120%, 122%, 0 125%;
    background-position: 50% 50%;
background-size: 130% 90px;

}



#image-modal {
  display: none;
  cursor: zoom-out;
}
#image-modal img {
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
  position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.imager:hover::before {
  cursor: pointer;
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  background: linear-gradient(90deg, #3877ec, #c15f63);
  border-radius: inherit;
  filter: blur(8px);
  opacity: 0.7;
}

.imgr{
max-width:300px;
min-width:300px; 
margin-top:10px;
margin-left:0px;
border-radius:15px;
}

.closemodal{
    text-align: right;
    padding-top: 90px;
    padding-right: 85px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: none;
}

.cmimg{
max-width: 25px;
max-height: 25px;
box-shadow: none;
}

.gradient-shadow {
  max-width:300px;
min-width:300px; 
  position: relative;
  border-radius: 12px;
  overflow: visible;
  z-index: 0;
  margin-left:-35px;
}

.gradient-shadow:hover{
  cursor: pointer;
}

.gradient-shadow:hover::before {
  cursor: pointer;
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  background: linear-gradient(90deg, #3877ec, #c15f63);
  border-radius: inherit;
  filter: blur(8px);
  opacity: 0.7;
}

.gradient-border-shadow {
  background: linear-gradient(90deg, #3877ec, #c15f63);
  padding: 4px;
  border-radius: 16px;
  display: inline-block;
}

.gradient-border-shadow img {
  display: block;
  border-radius: 12px;
}

.fixed-top{
  z-index: 1050;
}


.menu-overlay{
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background: transparent;
}

.hide{
  display: none;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    --bs-gutter-x: 0rem;
  }





#voiceBox{
  position: fixed;
  z-index: 1032;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  max-height: 100vh;
  max-width: 100vw;
  background: #0f0e47;
   transition: 0.25s ease-in-out;
   display: block;
   overflow: hidden;
}

.rightOut{
  margin-left: -250vw !important;
 display: none;
  background: transparent;
  transition: 0.25s ease-in-out;
  
}

.up{
  padding-left: 6px;
  position: fixed;
  z-index: 1032;
  margin-left: calc(50% - 50px);
  transition: 0.15s ease-in-out;
}

.up:active{
  transform: scale(0.75);
  transition: 0.15s ease-in-out;
}

    .circle {
        width: 100px;
        height: 100px;
        background-color: rgba(33,37,41, 1.0);
        border-radius: 50%;
    }


blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.containerblob {
  height: 100vh;
  width: 100vw;
}
.noblob{
  opacity: 1;
}
.blobWrap{
  display: nonex;
}
canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0f0e47;

}
audio {
  min-width: 100%;
  top: 0;
  left: 0;
  margin-left: -75%;
  margin-top: 172vh;
  position: absolute;
  z-index: 999;

}

#start:hover div span i.ringu{
  cursor: pointer;
   background-image: linear-gradient(130deg, rgba(56, 119, 236, 1) 0%, rgba(193, 95, 99, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* For Webkit browsers */
  color: transparent;
}
#voiceBox:hover{
  cursor: pointer;
}

canvas:hover{
  cursor: pointer;
}

.containerblob:hover{
  cursor: pointer;
}

.closevo{
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 0;
  margin-bottom: 4vh;
  margin-left: 4vw;
}




