.btn-agendar:hover {
    background: #3e5062 !important;
    color: white !important;
}

.container.pb-5::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #838383;
    margin: 0 auto 40px auto;
}

.fuso-horario {
    align-items: center;
    display: flex;
    flex-direction: column;
    color: #828282;
    padding: 0;
}

.fuso-header {
    display: flex;
    justify-content: space-between;
    align-self: center;
    font-weight: bold;
    font-size: 14px;
    padding: 0;
}

.fuso-titulo,
.fuso-pais,
.fuso-dias,
.fuso-hora,
.fuso-utc {
    flex: 1;
}

.fuso-content {
    display: flex;
    justify-content: space-between;
    align-self: center;
    font-size: 12px;
    padding: 0;
}

.fuso-titulo{
    color: #828282;
}

/* .fuso-hora,
.fuso-utc {
    width: 40px;
}

.fuso-dias {
    width: 100px;
} */

.contact-online::after,
.contact-offline::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.contact-online::after {
    background: rgb(11, 230, 11);
}

.contact-offline::after {
    background: red;
}

.toggle-select{
    border: none;
    background: none;
    color: blue;
    padding: 10px;
    cursor: pointer;
}

.toggle-select:hover{
    background: none;
    text-decoration: underline;
}

.toggle-select:focus{
    outline: none;
}
/* 
.modal-time{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */

.select-container{
    background: #8080801f;
    border: none;
    border-radius: 5px;
    padding: 5px;
}


.calendly-overlay {
    z-index: 99999999999999;
}

/*cards*/
.card__deck {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(290px, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin: 0 0 120px 0;
  }
  
  .card__deck .card {
    -ms-grid-column-align: center;
    justify-self: center;
    max-width: 380px;
    -webkit-box-shadow: 0px 2px 4px 1px rgba(184, 184, 184, 0.5);
    box-shadow: 0px 2px 4px 1px rgba(184, 184, 184, 0.5);
    border-radius: 10px;
    border: none;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .card__deck .card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0px 5px 6px 1px rgba(184, 184, 184, 0.5);
    box-shadow: 0px 5px 6px 1px rgba(184, 184, 184, 0.5);
  }
  
  .card__deck .card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
  }
  
  .card__deck .card__title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .card__deck .card__title-container .card__title {
    margin: 0 20px 0 15px;
    font-weight: bold;
  }
  
  .card__deck .card__img-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ccddf2;
    border-radius: 50%;
    line-height: 1;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  
  .card__deck .card__img {
    height: 20px;
  }
  /*fim-cards*/