#avatar {
    width: 100%;
    height: 100%;
}
#avatar iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ifcbtn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px;
    /*background-color: #595959; /* Color de fondo oscuro */
    background: var(--btn-bg-color);
    color: var(--corporate-green);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra suave */
    cursor: pointer;
    overflow: hidden;
	justify-content: center;
	-webkit-user-select: none; /* Safari */
  	-ms-user-select: none; /* IE 10 and IE 11 */
  	user-select: none; /* Standard syntax */
}
.ifcbtn .btntext {
    z-index: 1;
	padding-right:5px;
}

.ifcbtn:hover {
	background: var(--btn-bg-color-hover);
}

.ifcbtn:active {
	transform: scale(0.95);
}

.ifcbtn img {
    width: 20px;
    height: 20px;
    z-index: 2;
    display: inline-block;
	padding: 5px;
    margin: 0 0 0 0;
}

#chat_toggle {
	position:fixed;
	top:215px;
	left:10px;
	/*
	border-radius:25px;
	height: 50px;
	width: 50px;
	*/	
	display:none;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.2s;
}

#chat {
	top: 260px;
	width: 400px;
	height: calc(100% - 270px);
	float:left;
	position: absolute;
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
}

.slide-in {
	animation: slide-in 0.5s forwards;
	-webkit-animation: slide-in 0.5s forwards;
}

.slide-out {
	animation: slide-out 0.5s forwards;
	-webkit-animation: slide-out 0.5s forwards;
}
	
@keyframes slide-in {
	100% { transform: translateX(0%); }
}

@-webkit-keyframes slide-in {
	100% { -webkit-transform: translateX(0%); }
}
	
@keyframes slide-out {
	0% { transform: translateX(0%); }
	100% { transform: translateX(-100%); }
}

@-webkit-keyframes slide-out {
	0% { -webkit-transform: translateX(0%); }
	100% { -webkit-transform: translateX(-100%); }
}


/*
#multimedia-container {
	position: absolute;
	z-index: 10;
	top: 20%;
	right:70px;
	height: 50vh;
	border-radius:10px;
	width: calc(70vh * 0.7);
	background-color: transparent;
}
#multimedia-container img {
	border-radius:10px;
	width:auto;
	height: 100%;
}
#multimedia-container video {
	width:300px;
}
#close-button {
	z-index: 10;
	position: absolute;
	margin: 0px;
	right: 0;
	padding: 0px;
    font-size: 1em;
    font-weight: bold;
    color: white;
    width: 2em;
    height: 2em;
    border-width: 0;
    border-radius: 10%;
    background-color: red;
	box-shadow: 0 0 5px 0px #000;
	cursor: pointer;
}
#close-button:hover {
	background-color: #f36262;
	box-shadow:none;
}


#list-iframe {
	position: absolute;
    right: 0;
	margin-top: 38px;
	width: 130%;
	height: 110%;
	border: none;
	border-radius:10px;
}
*/
#multimedia-container {
    position: fixed;
    z-index: 10;
    top: 20vh;
    right: 5vw;
    width: 400px;
    max-width: 90vw;
    height: 60vh;
    max-height: 80vh;
    border-radius: none;
    background-color: inherit;;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

#multimedia-container img,
#multimedia-container video {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;  
}

#close-button {
    z-index: 20;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1em;
    width: 1.6em;
    height: 1.6em;
    border: none;
    border-radius: 50%;
    background-color: red;
    color: white;
    box-shadow: 0 0 5px 0px #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#close-button:hover {
    background-color: #f36262;
    box-shadow: none;
}

#list-iframe {
    margin-top: 2.5em;
    width: 100%;
    height: 60%;
    min-height: 150px;
    border: none;
    border-radius: 10px;
}