#offline-cart button{
    border-radius: 5px;
    background: #b432b9;
    border-bottom: 2px solid #88188c;
    justify-content: center;
    align-items: center;
}

.modal{
    display: none;
    position: fixed;
    width: 50%;
    top: 25%;
    left: 30%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    border-radius: 13px;
}

.btn{
    display: block;
    padding: 10px;
    margin: 0 auto;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    font-size: 30px;
    text-align: center;
    background: #ee46f4;
    cursor: pointer;
    border-radius: 100px;
    text-decoration: none;
    border: 0;
    margin-top: 5%;
    color: white;
}

.modal h5{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #393939;
}

.modal-body input{
    border-radius: 10px;
    border: 1px solid #393939;
    background: #F6F6F6;
    font-size: 18px;
    padding: 16px;
    font-family: 'DIN Pro';
    font-weight: 400;
    width: 100%;
}

.progress-container {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    #ee46f4,
    #ee46f4 10px,
    #b432b9 10px,
    #b432b9 20px
  );
  animation: fillBar 60s linear forwards, moveStripes 1s linear infinite;
}

/* Заполнение за 60 секунд */
@keyframes fillBar {
  from { width: 0%; }
  to { width: 100%; }
}

/* Движение полосок */
@keyframes moveStripes {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}

#doneModal h5{
    color: #ee46f4;
    font-size: 22px;
    margin-bottom: 2%;
}

#meetingPhoneModal{
  display: none;
  min-height: 540px;
}

.modal-backdrop{
  display: none;
}

.modal-dialog{
  width: 100%;
}

@media screen and (max-width:1450px) {
  .modal{
    width: 100%;
    left: 0;
  }
}

.modal.done{
  background-color: #F6F6F6;
  max-height: 180px;
}