*{
    padding: 0;
    margin: 0;
    border: 0;
    background-color:none;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;    
}
.box-callInput {
    padding: 35px 30px;
    border-radius:10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    align-items: center;

}
#phoneInput {
    padding: 10px 10px;
    border-radius:7px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    /* outline: #2196f3 solid 2px; */
    margin-right: 15px;
}
.imgCall {
    width: 40px;
    height: 40px;
    transition: all 0.2s ease;
}
#callBtn:hover .imgCall{
    cursor: pointer;
    scale: 1.1;
}
#phoneInput:focus{
    outline: #2196f3 solid 2px;
}
.wrapper-callInput.unactive {
    display: none;
}
/* incomming call */
.containerCall.inComming {
    display: none;
}

.containerCall.inComming.active {
    display: flex;
}

.containerCall.inComming.answer.active {
  display: flex;
}

.containerCall {
    background-color: rgb(211, 211, 81);
    max-width: 35%;
    max-height: 70%;
    border-radius: 20px;
}
.form-call {
  display: none;
}

.form-call.active {
  display: block;
}

.imgCall {
  width: 40px;
  opacity: 0.7;
}

.formImguser {
  margin-bottom: 50px;
}

.imgCall:hover {
  cursor: pointer;
  opacity: 1;
}

.containerCall {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buttonForm {
  display: flex;
}

.userImg {
  width: 100px;
}

.box-call {
    padding: 15px 17px;
    border-radius: 100px;
    background-color: #fff;
    transition: all 0.4s ease;
}
.box-call.calling.ml {
  margin-left: 250px;
}
.call-animation.unactive {
    display: none;
  }
  
  .answerCall{
    position: relative;
    width: 135px;
    height: 135px;
    border-radius: 100%;
    border: solid 5px #fff;
    background: #fff;
  }
  
  .answerCall.active {
    display: block;
  }
  
  #answer.unactive {
    display: none;
  }
  
  .img-circle--answer {
    width: 135px;
    height: 135px;
    border-radius: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
  }
  /* loader call */
  .lds-ellipsis {
    /* display: inline-block; */
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
    /* margin-bottom: 30px; */
  }
  .lds-ellipsis.active {
    display: inline-block;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  /* toast */
.formNoti {
  position:fixed;
  top:15px;
  right:15px;
  z-index: 2;
}
.toast {
  transition: all linear 0.4s;
  display:flex;
  padding: 20px 15px;
  border-left: 5px solid;
  align-items: center;
  background-color: rgb(233, 233, 233);
  border-radius:7px;
  animation: right-out ease 0.3s, fade-out ease 0.4s 3s forwards;
}
.toast + .toast {
  margin-top: 15px;
}
@keyframes right-out {
  from {
    opacity: 0;
    transform: translateX(110%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-out {
  to {
    opacity: 0;
  }
}
.toast:hover {
  cursor: pointer;
}
.toast__icon {
  margin-right: 15px;
}
.toast__body {
  margin-right: 40px;
}
.toast__icon,
.toast__close{
    padding: 0 16px;
    font-size:24px
}

.toast--warn {
  border-left: 5px solid #ee3325;
}
.toast--icon--warn{
  color: #ee3325;
}

.toast--info {
  border-left: 5px solid #e0d60a;
}
.toast--icon--info{
  color: #e0d60a;
}
/* answers */

/* call animation */
.call-animation {
  background: #fff;
  width: 135px;
  height: 135px;
  position: relative;
  margin: 0 auto;
  border-radius: 100%;
  border: solid 5px #fff;
  animation: play 2s ease infinite;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.answerCall.calling{
  display: none;
  position: relative;
  width: 135px;
  height: 135px;
  border-radius: 100%;
  border: solid 5px #fff;
  background: #fff;
}

.answerCall.calling.active {
  display: block;
}

#answer.unactive {
  display: none;
}

.img-circle--answer {
  width: 135px;
  height: 135px;
  border-radius: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.img-circle {
  width: 135px;
  height: 135px;
  border-radius: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}
@keyframes play {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(198, 67, 67, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(198, 67, 67, 0.4),
      0 0 0 20px rgba(198, 67, 67, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(198, 67, 67, 0.4),
      0 0 0 30px rgba(198, 67, 67, 0.2);
  }
}

#phoneNumberanswer,
#phoneNumbercall {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #fff;
}
#stopWatch,
#stopWatchanswer {
  display: none;
  font-size: 17px;
  margin-bottom:20px;
}
#stopWatchanswer.active,
#stopWatch.active {
  display: block;
}