/* global styles */

/* Scrollbars */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background: rgba(40,50,60,0.3); 
  border-radius: 2px;
}

.hidden {display: none;}
.visible {display: block;}

/* Variables */
/* CI Colors and Fonts */
:root {
    --ciColor-black: rgb(0, 0, 0);
    --ciColor-bg: rgb(242, 242, 242);
    --ciColor-main: rgb(238, 0, 0);
    --ciColor-hover: rgb(209, 0, 0);
    --ciFont-regular: 'Roboto', sans-serif !important;
    --ciFont-light: 'Roboto Light', sans-serif !important;
    --ciFont-thin: 'Roboto Thin', sans-serif !important;
    --ciFont-medium: 'Roboto Medium', sans-serif !important;

}

/* Buttons */
.btn-all {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    width: auto;
    margin: 0;
    text-align: center;
    font-family: var(--ciFont-regular);
    font-size: 1rem;
    letter-spacing: .02em;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
}
.btn-all:hover {
    cursor: pointer;
}

.btn-all.btn-white{
 background-color: rgb(236, 124, 52) !important;
   color:white !important;

}

.btn-all.btn-white:hover{
  background-color: rgb(242, 168, 120) !important;
   color:black !important;
}

.spacing-right1 {
    margin: 0 0 0 1rem;
}

.spacing-right2 {
    margin: 0 0 0 2rem;
}

.btn-left {
    margin: 0;
}

iframe {
    height: 100%;
}


body {
  font-family: sans-serif;
  margin: 0;
  background-color: transparent;
  box-sizing: border-box;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

header {
  padding: 0;
  margin: 0;
position:absolute;
}

.wrapper-main-bg {
  height: calc(100% - 3rem);
  width: calc(100% - 3rem);
  margin: 1.5rem;
  background-color: var(--ciColor-bg);
  border-radius: 16px;
}

.background-image {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 0;
  height: 100%;
}

.right {
  background-color: transparent;
  border-radius: 16px;
  padding: 0;
  width: 60%;
  height: 100%;
}

.left {
    background-color: transparent;
    border-radius: 16px;
    padding: 0;
    /*flex: 1;*/
    text-align: center;
    position: absolute;
    /*top: 100px;*/
    /*width: 60%;*/
    /*height: calc(100% - 100px);*/
    width: 100%;
    height: 100%;
    top: 0;
}

.mic-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle at center, #e89bb0, #ba6183);
}

.left p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.right {
  width: 300px;
  text-align: center;
}

.right img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.right .status {
  color: #6d55b9;
  font-style: italic;
  font-size: 0.9rem;
}
.right .quote {
  margin-top: 1rem;
  font-style: italic;
  color: #444;
}


/* Menu on the left, including buttons from top to bottom */
.menu-wrapper-toptobottom { 
    width: 6rem;
    background: white;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 2000;
    border-right: 2px solid rgb(230, 235, 240);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.menu-top {

}
.menu-middle {

}
.menu-bottom {

}

/* Menu on top, including buttons from left to right */
.menu-wrapper-lefttoright { 
    width: 100%;
    background: transparent;
    height: 80px;
    position: relative;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 10;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.menu-left {
    text-align: center;;
    width: 25%;
    height: 80px;
    margin: 0;
    padding: 0 0 0 3%;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}
.menu-center {
    margin: 0 auto;
    text-align: center;
    padding: 0;
    width: 50%;
    height: 80px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;

}
.menu-right {
    width: 25%;
    height: 80px;
    margin: 0;
    padding: 0 2rem 0 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

#menu-title {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    color: var(--ciColor-black);
    font-family: var(--ciFont-light);
    font-size: 1.2rem;
    font-weight: normal !important;
    letter-spacing: .02em;
color:white !important;
	
}

.lc-header {

}
.lc-footer {

}
.lc-content {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}
.lc-content svg {
    width: 100%;
    height: 100%;
    padding-bottom: 5%;
}
.bot-aside {
    position: absolute;
    left: 3%;
    bottom: 5%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    z-index: 20;
}
.bot-button {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    background-image: url(../img/bot1_bg.svg);
}

.footer-wrapper {
    width: 100%;
    background: transparent;
    height: 100px;
    position: fixed;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    z-index: 10;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.progress-wrapper {
    width: 40%;
    padding: 0 0 5rem 0;
    margin: 0 auto;
}


.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
}
.logo {
    background-image: url(../img/logo_rag.svg);
    background-repeat: no-repeat;
    width: 100px;
    height: 20px;
}

/* * {border: 1px solid rgb(200,210,220);} */

#custom-overlay {
  background-color: rgba(0,0,0,.5) !important;
  color: rgb(0, 0, 0) !important;
  height: 100% !important;
  top: 0 !important;
  border-radius: 0 !important;
  padding: 30px !important;
}
#custom-overlay:not(.overlay-loading) > div {
  text-align:left !important;
  padding: 2.4rem 2rem 2.4rem 2rem !important;
  border-radius: 12px !important;
  height: auto !important;
  max-height: 100% !important;
}

#custom-overlay:not(.overlay-loading) > div {
  background: #fff !important;
}

#custom-overlay.overlay-loading{
color:white !important
}

#custom-overlay.overlay-loading div{
color:white !important;
border-color: #ce0058 rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.2)!important;
}


@media (min-width: 600px) and (max-width: 1080px) {
#custom-overlay:not(.overlay-loading) > div {
  padding: 1rem 4rem 4rem 4rem !important;
}
#custom-overlay {
 padding: 5% 5% !important;
}
.chat-input.px-1.py-1{
  background:linear-gradient(
  90deg,
  transparent 5%,
  white 20%,
  white 80%,
  transparent 95%
)
}

}

@media only screen and (min-width: 1081px) {
#custom-overlay:not(.overlay-loading) > div {
  padding: 2.4rem 6rem 2.4rem 6rem !important;
}
#custom-overlay {
 padding: 4% 22% !important;
 min-width:700px	
}
.chat-input.px-1.py-1{
  background:linear-gradient(
  90deg,
  transparent 5%,
  white 25%,
  white 75%,
  transparent 95%
)
}
}



#custom-overlay div button{
  margin: .5rem 2rem 0 0 !important;
}

.transparent, .h-100, #chat-container {
  background-color:rgba(1,1,1,0) !important
}

#custom-overlay h1 {

text-align:left;
}

#custom-overlay p{
  color: rgb(0, 0, 0) !important;
  font-size: 1.7rem;
  line-height: 140%;  
 margin:0 !important
 }

#custom-overlay li {
  color: rgb(0, 0, 0) !important;
  font-size: 1.7rem;
   line-height: 140%;
margin: 0 0 -5px 0 !important
 }


#custom-overlay h1 {
  color: rgb(0, 0, 0) !important;
 font-size: 2.2rem;
  line-height: 120%;
 }

#custom-overlay .btn.btn-primary{
font-size: 1.7rem;}

@media only screen and (min-width: 1080px){

#custom-overlay h1 {
font-size: 1.2rem;
  }

#custom-overlay p{
  font-size: 0.9rem;
}

#custom-overlay li {
  font-size: 0.9rem;
  }

#custom-overlay .btn.btn-primary{
font-size: 0.9rem;

}

}

#custom-overlay ul, #custom-overlay p ol {
 margin: -20px 0 -10px 0 !important
 }

.fusion-view-split #botdiv{
  	position: absolute;
  	left: 20px;
  	right: 20px;
  	height: calc(100% - 40px);
  	border-radius: 12px;
}


.fusion-view-window #botdiv{
	position:absolute;
	padding: 5vh 5% !important;
	width:calc(100% - 40px);
 	left: 20px;
  	right: 20px;
}



@media only screen and (min-width: 600px){
  #custom-overlay:not(.overlay-loading) >div {
    max-width: 100% !important;
  }
} 

.btn.btn-primary{
  border:none;
}

#custom-overlay .btn.btn-primary{
  background-color:#000;
    border:none;
border-radius: .3125rem;
    color: #fff;
text-transform: uppercase;
  padding: 1rem 2rem !important;
 }

#custom-overlay .btn.btn-primary:hover{
  background-color:  #ce0058;
    border:none;
    color: #fff;
transition: 0.5s ease background-color;
cursor:pointer;
}

#custom-overlay-close{
  display:none
}

@media (max-width:1000px){


}
