.tour-pop-up {
  display: none;
}

@media screen and (max-width: 600px) {
  .tour-pop-up {
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow-y: hidden;
    z-index: 100;
  }

  .hidden {
    display: none;
  }

  .tour-pop-up-content {
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 20px;
    flex-wrap: wrap;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 90%;
    max-width: 960px;
    height: 580px;
    margin: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  .tour-pop-up .tour-pop-up-content {
    padding: 25px;
  }

  .tour-pop-up-content .close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
  }

  .init-tour .tour-info {
    justify-content: start;
    padding: 55px 0 65px;
  }

  .init-tour .tour-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0;
  }

  .tour-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }

  .tour-info h3 {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    padding: 20px 20px 0;
    margin-bottom: 10px;
  }

  .tour-info p {
    text-align: justify;
    line-height: 17px;
    padding: 0 20px;
  }

  .tour-info .img-content {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }

  .tour-info .start-btn,
  .tour-info .ready-btn {
    font-size: 18px;
    display: flex;
    justify-content: center;
    min-height: 50px;
    width: 150px;
    margin-top: 55px;
  }

  .tour-pop-up-content .finish-btn {
    cursor: pointer;
  }

  .tour-pop-up-content .finish-btn:hover {
    font-weight: 500;
  }

  .tour-info .btns-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tour-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .tour-btns span {
    font-size: 14px;
    font-weight: 500;
  }

  .tour-btns button {
    font-size: 14px;
    min-height: 40px;
    width: 120px;
    display: flex;
    justify-content: center;
  }

  .tour-btns button img {
    margin-right: 10px;
  }

  .tour-info .img-container {
    background-color: #f4f4f4;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
  }

  .tour-step-2 .tour-info .img-container,
  .tour-step-6 .tour-info .img-container {
    padding: 30px 20px;
  }
  
  .tour-step-6 .tour-info .img-container,
  .tour-step-7 .tour-info .img-container,
  .tour-step-8 .tour-info .img-container {
    padding: 40px;
  }

  .tour-step-1 .tour-info .img-content {
    max-height: 140px;
  }

  .tour-step-2 .tour-info .img-content,
  .tour-step-6 .tour-info .img-content {
    max-height: 50px;
  }

  .tour-step-5 .tour-info .img-content {
    max-height: 220px;
  }
 
  .tour-step-7 .tour-info .img-content,
  .tour-step-8 .tour-info .img-content {
    max-height: 40px;
  }

  .tour-step-10 .tour-info .img-content {
    max-height: 230px;
  }

  .user-tour.tour-info .img-content.tour-step-2 {
    max-height: 180px;
  }

  .last-tour .tour-info {
    justify-content: center;
  }

  .last-tour .tour-info .img-content {
    width: auto;
    max-height: 90px;
  }

  .last-tour .tour-info h3 {
    margin-bottom: 15px;
    text-align: center;
  }

  .last-tour .tour-info p {
    font-size: 16px;
    padding: 0;
    text-align: center;
  }

  .last-tour .tour-info button {
    margin-top: 35px;
  }
}

@media screen and (max-width: 390px) {
  .tour-btns {
    margin-bottom: 40px;
  }
}
