
.container-instruction{
	display: flex
;
    justify-content: end;
    /* margin-left: 100px; */
    position: absolute;
    right: 0;
}
#openPopup-instruction {
      padding: 10px 20px;
      font-size: 16px;
      background: #28a745;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;

	  
    }

    .popup-instruction {
      position: fixed;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
 
      background: white;
      border: 1px solid #ccc;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      transition: top 0.5s ease;
      z-index: 1000;
	  max-width: 700px;
    width: 97%;
    }

    .popup-content-instruction {
       padding: 20px;
  position: relative;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 90vw; /* რომ არასდროს იყოს ძალიან ფართო */
  box-sizing: border-box;
    }

    .close-instruction {
      position: absolute;
      top: 10px;
      right: 9px;
      font-size: 25px;
      cursor: pointer;
      color: #333;
    }
	.hide-instructionn{
		display:none;
	}
	.show-instructionn{
		display:block;
	}
    .popup-instruction.show-instruction {
      top: 80px;
    }

    .popup-instruction.hidden-instruction {
      top: -100%;
    }
.popup-instruction {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
    .popup-content-instruction h2 {
      margin-top: 0;
      color: #007bff;
      font-size: 18px;
    }

    .popup-content-instruction ul {
      padding-left: 20px;
    }

    .popup-content-instruction li {
      margin-bottom: 6px;
    }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* შავი გამჭვირვალე */
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 410px) {
	.popup-content-instruction h2{
	font-size:15px;
	}

}
