/* Стили для модального окна */
.modal {
  display: none; /* По умолчанию модальное окно скрыто */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
}

.modal-content {
  background-color: #e50c3e;
  margin: 15% auto;
  width: 80%;
  max-width: 400px;
  text-align: center;
}
.modal-content-main {
  padding: 20px;
}

.close {
  margin: 20px 0;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  width: 40px;
  padding: 10px 40px;
  background-color: yellow;
  border-radius:10px ;
  transition: 0.2s linear;
  font-size: 17px;
  color: #e50c3e;
  border-width: 1px;
    border-style: solid;
    cursor: pointer;
}

.close:hover {
    background: #e50c3e;
    color: #ffed01;
    font-size: 22px;
    transition: 0.2s linear;
  }

#progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 5px;
  height: 5px;
  position: relative;
  top: 0;
  left: 0;
}

/* Сам прогресс-бар */
#progress-bar {
  width: 100%; /* Изначально заполнен на 100% */
  height: 100%;
  background-color: #ffed01;
  border-radius: 5px;
  transition: width 0.1s linear; /* Плавное уменьшение ширины */
}
.modal__text {
  color: rgb(255, 255, 255);
}
