
@font-face {
    font-family: Comfortaa;
    src: url("../fonts/Comfortaa-Regular.ttf");
  }

a {
    text-decoration: none;
    color: #031355;
    font-weight: bold;
}

.font-comfortaa{
    font-family: "Comfortaa";
}

.flex-text{
    font-size: clamp(1.3rem, 1vw + 1.3rem, 2.3rem);
}

.background-primary {
    background-color: #FFF1E5;
    color: black;
}

.background-secondary {
    background-color: #031355;
    color: white;
}

.color-primary{
    color: #FFF1E5;
}

.color-secondary{
    color: #031355;
}

.btn-custom {
    color: #F4F4EF;
    background-color: #031355;
    border-color: #031355
}

.btn-custom:hover {
    color: #F4F4EF;
    background-color: #031355DD;
    border-color: #031355;
}

.btn-custom:active{
    color: #F4F4EF !important;
    background-color: #03135588 !important;
    border-color: #031355 !important;
}

.content{
    padding-bottom: 100px;
}

.chat-online {
    color: #34ce57
}

.chat-offline {
    color: #e4606d
}

.chat-messages {
    display: flex;
    flex-direction: column;
    overflow-x: hidden !important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; 
    -webkit-overflow-y: scroll; 
    height: calc(100dvh - 190px);
}

.chat-message-left,
.chat-message-right {
    display: flex;
    flex-shrink: 0
}

.chat-message-left {
    margin-right: auto
}

.chat-message-right {
    flex-direction: row-reverse;
    margin-left: auto
}

.border-top {
    border-top: 1px solid #dee2e6!important;
}

#logo {
    max-width: 220px;
    width:100%;
}

.form-control:focus {
    border-color: #b2c1d4;
    box-shadow: 0 0 0 0.2rem rgba(178, 193, 212, 0.25);
} 

footer {
    position: fixed;
    height: 80px;
    bottom: 0;
}