.widget {
  position: fixed;
  z-index: 100;
  right: 30px;
  bottom: 30px;
  width: 600px;
  padding: 20px 24px;
  background-color: #fff;
  border-radius: 20px;
  font-family: 'MuseoSans', Arial, sans-serif;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 #03030323;
}

.widget--hidden {
  display: none;
}

.widget__text {
  line-height: 1.5;
  text-align: justify;
}

.widget__control {
  margin-top: 20px;
}

.widget__button {
  padding: 15px 20px;
  border: none;
  border-radius: 20px;
  background-color: #2887ba;
  color: white;
  cursor: pointer;
}

.widget__button:hover {
  background-color: #146794;
}

@media screen and (max-width: 750px) {
  .widget {
    right: 0;
    bottom: 0;
    width: 100%;
  }
}