body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.test {
  height: 2000px;
  background: linear-gradient(white, lightgray);
}

#call-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  text-align: right;
}

#call-chat img {
  width: 10%;
  cursor: pointer;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  10% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.95;
  }
  20% {
    transform: scale(0.98) rotate(-2deg);
    opacity: 0.9;
  }
  30% {
    transform: scale(1.03) rotate(1deg);
    opacity: 0.95;
  }
  40% {
    transform: scale(0.99) rotate(-1deg);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.02) rotate(0.5deg);
    opacity: 0.97;
  }
}

.exit {
  text-align: right;
  cursor: pointer;
}

.obr,
#city-button,
#data-user-info {
  visibility: hidden;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgb(198 255 255), rgb(43 45 34));
  border: 2px solid rgb(17, 3, 2);
  border-radius: 12px;
  width: 20%;
  min-width: 200px;
  height: 40%;
  padding: 20px;
  max-width: 300px;
  max-height: 400px;
}

.obr h2{
  font-size: 30px;
  color: #4f9960;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}


#name-city, #phone-city{
  font-size: 25px;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}

#name-city{  
  color: #4f9960;
}



#phone-city{
  color: #f1f9b2;
}



#data-user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.obr input {
  width: 80%;
  min-height: 30px;
  margin: 10px auto;
  display: block;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

.disc,
.data-user,
.user-info {
  font-weight: bold;
  color: rgb(255, 204, 0);
  text-align: center;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;
}

.disc {
  margin-bottom: 20px;
}

.data-user {
  font-size: 20px;
}

.user-info {
  font-size: 25px;
  margin: 0 auto;
  padding-bottom: 15px;
}

.data-user div {
  padding-bottom: 10px;
}

.user-info div {
  padding-bottom: 15px;
}

.pull,
.city-obr {
  display: block;
  margin: 0 auto;
  background: linear-gradient(rgb(255 224 0), rgb(217 185 27));
  border: 2px solid rgb(17, 3, 2);
  border-radius: 8px;
  padding: 10px;
  color: rgb(57, 58, 53);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.city-obr {
  width: 80%;
  text-align: center;
  padding: 5px;
  margin: 20px;
}

.cont-city {
  display: block;
  margin: 0 auto;
}
