body{
    background: #35AFD3;
}
.logo{
    width: 200px;
    transition: all 0.3s ease-in-out;
    position: relative;
	/*z-index: 9999;*/
}

.logo:hover {
    transform: scale(3.5) translateY(30px);
    z-index: 9999;
    background-color: #fff;
    border-radius: 0 0 3rem 3rem;
}
.btn-test {
	margin-bottom: 2px;
}
.btn-test small {
	font-size: 11px;
	display: block;
}
label{
    cursor: pointer;
}
.list-group-item:hover{
    background: #f6f6f6;
}
iframe{
	border-radius: 0.5rem;
}
.chatbox {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    background: white;
}

h1{
    background: #fff;
}

.chat{
    height: 435px;
    border-radius: 0 0 0.5rem 0.5rem;
}

.chattitle{
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #fafafa;
    max-height: 300px;
}

.chat-message {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.chat-message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.chat-message-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-message-name {
    font-weight: bold;
    color: #495057;
}

.chat-message-email {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: normal;
    font-style: italic;
}

.chat-message-time {
    color: #6c757d;
    font-size: 0.75rem;
}

.chat-message-text {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-form {
    padding: 1rem;
    border-top: 1px solid #ddd;
    background: white;
    border-radius: 0 0 0.5rem 0.5rem;
}
.descarga{
    margin-left: 3px;
    margin-right: 3px;
}
img{
    max-width: 100%;
}
svg {
	margin-right: 2px;
    margin-bottom: 3px;
}
footer{
    background-color: #f6f6f6;
}
footer img{
    width: 100%;
    max-width: 350px;
}
#copyright{
    color: #666;
    font-size: 0.9rem;
}
h1{
    color: #000;
    font-size: 2.4rem;
}
h1 small{
    color: #C7281E;
}
h1 span{
    color: #000;
    font-weight: 800;
}

#copyright a{
    color: #93C998;
}
#copyright a:hover{
    color: #000;
}
#copyright img{
    width: 125px;
    margin-bottom: 1rem;
}

.form-signin{
    background: #f6f6f6;
    padding: 2rem;
}
.btn.btn-primary{
    background-color: #93C998;
    border-color: #93C998;
}
.btn.btn-primary:hover{
    background-color: #686F6A;
    border-color: #686F6A;
}
.btn.btn-primary:active,
.btn.btn-primary:focus{
    background-color: #000;
    border-color: #000;
}
.descarga .btn.btn-primary{
    margin-left: -30px;
}

.dropdown-menu.show{
    width: 100%;
}

.ponente{
    background: #28839E;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #fff;
    height: 100%;
}
.ponente-img{
    border-radius: 50%;
    max-width: 200px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px;
    }
}

@media only screen and (max-width: 600px){
    h1{
        font-size: 1.4rem;
    }
    .descarga .btn.btn-primary{
        margin-left: 0;
    }
	.logo{
		
		transition: none;
	}
	.logo:hover {
		transform: none;
		z-index: 9999;
		background-color: #fff;
		border-radius: 0 0 3rem 3rem;
	}
}