html, body {  

  color: #1f1f1f;
}
.img-logo {
    width: 260px;
    align-content: center;
    text-align: center;
}
.card-organization {
  border: 1px solid lightgray;
  margin: 0.5rem;
  padding-top: 20px;
}
/*.card-organization a, .card-organization a:hover, a:hover, a{
  text-decoration: none;
  color: #1f1f1f;
}*/
#div2{
    height:80px;
    width: 100%;
    background-color: red;
    display:flex;
    justify-content: center;
    align-items: center;
}

.client-box {
  margin: 2rem 2rem;
  background-color: white;
  text-align: center;
  border-radius: 0.8em;
  /*min-height: 35rem !important;*/
  box-shadow: 1px 1px 6px #646464;
}

.send-box {
  margin: 2rem 2rem;
  background-color: white;
  border-radius: 0.8em;
  box-shadow: 1px 1px 6px #646464;
}

.imgs {
  min-height: 20rem;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
}
.modal-header .close {
  color:white;
}
.btn-save {
  display: flex;
  justify-content: center;
  font-size: 18px !important;
  font-weight: 500;

}

.footer {
  color: #1d1d1d;
  font-weight: 600;
  background-color: transparent !important;
  border-top: none;
  height: 60px;
}
.dayOfWeek {
  text-align: center !important;
  float: none;
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #b3b3b3;
  background-color: transparent;
}

.modal-content {
  border: none !important;
}

.pulsating-circle {
  background-color: #3e3e3e;
  position: fixed;
  bottom:6%;
  right: 2%;
  z-index: 9;
  transform: translateX(-50%) translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.pulsating-circle:before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 50%;
    background-color: #c23030;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  
  .pulsating-circle:after {
    content: '';
    position: absolute;
    left: 0; 
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #3e3e3e;
    background-image: url('../img/call.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size:70%;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
  }


@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}

.no-data {
    border: 3px dashed lightgray;
}
.no-data:before {
    content:  "";
    /*background-image: url('/img/plus-circle-solid.svg');*/
    width: 50px;
    height: 50px;
    position: absolute;
    margin-top: 2rem;

}
.no-data:after {
    /*content: '¿No ve la empresa que buscaba? Agregue una nueva';*/
    position: absolute;
    margin-top: 6rem;
}

/********************Eliminar controles de numeros **********************/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/********************Eliminar controles de numeros **********************/


