html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: Arial, sans-serif;
    background-color: #f5f5fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}*/


input {
    background-color: #F3F2F8 !important;
    height: 5vh;
}
button{
    height: 5vh;
}

.container {
    padding: 20px;
    text-align: center;
}

.loginBackGround{
    background-image: url(../images/backgroundLogin.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.info-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    font-size: 14px;
    color: #555;
}

.info-card .info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e0f7fa;
    color: #00796b;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.wait-time {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

    .wait-time .icon {
        font-size: 40px;
        color: #00acc1;
        margin-bottom: 10px;
    }

    .wait-time h4 {
        font-size: 16px;
        color: #333;
        margin-bottom: 5px;
    }

    .wait-time span {
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00acc1;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

    .button:hover {
        background-color: #007c91;
    }

    .button .icon {
        font-size: 20px;
        margin-right: 10px;
    }

.queue-container{
    display: none !important;
}
.loader {
    width: 15rem;
    height: 15rem;
    border: 22px solid #00A8B5;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 22px;
    top: 0;
    background: #FFf;
    width: 20px;
    height: 20px;
    transform: translate(-50%, 50%);
    border-radius: 50%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#cardLogin {
    width: 40%;
    height: fit-content;
    padding: 2rem 3rem;
    border-radius: 0.8rem;
}

#hambrguerMenu {
    border: 0;
    color: white;

}

#hambrguerMenu:focus {
    outline: 0 !important;
    box-shadow: 0 0 0;
}

#hambrguerMenu span img{
    color: #00a8b5;
}

#contentCardJoinQueue{
    width: 40%;
}

#menuCallButtons {
    background-color: #00A8B5;
    height: 7vh;
}

/*#videoCall video {
    width: 48%;
}*/