/* Logo Doctorweb */
:root {
  --color-client1: #b1bfd2;
  --color-client2: #204096;
  --color-client3: #f0f0f0;
  --color-client4: #cdc7c7;
  --color-client5: #666666;
  --color-client6: #2d2d2d;
  --color-client7: #ebe5e5;
  --color-client8: #0187c4;
}
  .doctorweb .doc1{
    width: 2%;
    animation: 10s doc infinite ease;
  }
  .doctorweb .doc2{
    width: 10%;
  }
  @keyframes doc {
    0% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(360deg);
    }
    90% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }}
 /* Logo Doctorweb */
 .btn-whatsapp {
  display: block;
  width: 75px;
  height: 75px;
  position: fixed;
  right: 2px;
  bottom: 2px;
  border-radius: 100px;
  text-align: center;
  z-index: 999;
  font-size: 60px;
  background-image: linear-gradient(to top, #00ba85, #00c17f, #00c778, #12cd70, #25d366);
  transition: .5s;
  border: 3px solid #204096(255, 255, 255, .5);
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.btn-whatsapp i {
  color: #fff;
  transition: .5s;
  display: block;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}
.btn-whatsapp span {
  font-size: .2em;
  position: absolute;
  right: 0px;
  top: -10px;
  width: 20px;
  height: 20px;
  background-color: #de2f36;
  color: #fff;
  border-radius: 100px;
  line-height: 20px;
  -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
  animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
  animation-delay: 1s;
}
@keyframes iconw {

  0%,
  100% {
      transform: scale(.8)
  }

  50% {
      transform: scale(1)
  }
}
.btn-whatsapp p {
  background: #f2f2f2;
  position: absolute;
  bottom: 0px;
  padding: 10px;
  right: 20px;
  font-size: 14px;
  border: 4px solid #204096(255, 255, 255, .5);
  border-radius: 20px 20px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px;
  line-height: normal;
  -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
  animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both slide-in-right;
  width: 200px;
  animation-delay: 1.5s;
}

.btn-whatsapp .close {
  font-size: .25em;
  color: #204096;
  border-radius: 100px;
  -webkit-animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
  animation: .5s cubic-bezier(.25, .46, .45, .94) 2s both scale-in-center;
  background-color: #f2f2f2;
  bottom: 60px;
  right: 15px;
  z-index: 999;
  padding: 1px;
  width: 20px;
  height: 20px;
  position: absolute;
  text-decoration: none;
  border: 1px solid #f2f2f2;
  line-height: 1;
  animation-delay: 2s;
}
.wtext{
  transform: scale(0);
  transition: .5s ease;
}
.show {
  transform: scale(1) !important;
  transition: .5s ease;
}
@-webkit-keyframes slide-in-right {
  0% {
      -webkit-transform: translateX(1000px);
      transform: translateX(1000px);
      opacity: 0
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1
  }
}
@keyframes slide-in-right {
  0% {
      -webkit-transform: translateX(1000px);
      transform: translateX(1000px);
      opacity: 0
  }

  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1
  }
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff; 
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-client1);
    transition: .5s;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-client2);
    transition: .5s;
  }
  .social-bar {
    position: fixed;
    right: 0.5%;
    top: 40%;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
    cursor: pointer;
  }
  .icono {
    color: #fff !important;
    text-decoration: none;
    height: 50px;
    width: 50px;
    display: flex;
    transition: all 0.5s;
    margin-top: 10%;
    position: relative;
    border-radius: 100px;
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    background-color: var(--color-client2);
    transition: all 0.5s ease;
    /* border: 2px solid #204096(255, 255, 255, 0.5); */
    border: 2px solid #fff;
  }
  /* .icono:hover {
    border: 2px solid #88ca51;
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
  } */
  .icono:before {
    background-color: var(--color-client2);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 30px;
    left: 0;
    top: 0;
    z-index: -1;
    transform: scale(0, 0);
    transition: all 0.5s ease;
  }
  .icono:hover:before {
    z-index: 1;
    transform: scale(1.1);
    transition: all 0.5s ease;
  }
  .icono span {
    background: #fff;
    padding: 5%;
    padding-left: 20%;
    padding-right: 20%;
    font-size: 0.5em;
    border-radius: 10px;
    color: var(--color-client2);
    position: absolute;
    right: 55px !important;
    top: 5px !important;
    transform: scale(0);
    width: max-content;
  }
  .icono:hover span {
    transition: all 0.5s ease;
    transform: scale(1);
  }
  .icono .fa {
    z-index: 2;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .icono .fab {
    z-index: 2;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
@media only screen and (min-width: 320px) and (max-width: 767px){
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 105%;
    left: 20px;
    font-size: 24px;
    z-index: 99;
    background: var(--color-client1);
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: 1s ease;
    border-radius: 50%;
}
  .social-bar {
    position: fixed;
    right: 0.5%;
    top: 50%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
    cursor: pointer;
  }
  .icono {
    color: #fff !important;
    text-decoration: none;
    height: 40px;
    width: 40px;
    display: flex;
    transition: all 0.5s;
    margin-top: 10%;
    position: relative;
    border-radius: 100px;
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    background-color: var(--color-client2);
    transition: all 0.5s ease;
    border: 2px solid #204096(255, 255, 255, 0.5);
  }
  .centertextr{
    text-align: center;
  }
  .doctorweb .doc1{
    width: 6%;
  }
  .doctorweb .doc2{
    width: 35%;
  }
.doctorweb {
    display: block;
}
}