.instruction-popup {
    position: fixed;
    width: 100%;
    min-height: 35%;
    bottom: 0;
    z-index: 20010;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 30px 16px 18px 16px;
}

.instruction-popup-layout {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: black;
    opacity: 0.5;
    z-index: 20000;
}

.instruction-popup .main-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    width: 100%;
    min-height: 0;
}

.instruction-popup .step-section {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.instruction-popup .step-span {
    max-width: 85%;
}

.instruction-popup .step-image-1 {
    max-width: 200px;
    max-height: 40px;
    object-fit: contain;
}

.instruction-popup .step-image-2 {
    max-height: 50px;
    max-width: 180px;
    object-fit: contain;
}

.instruction-popup .step-image-3 {
    max-height: 50px;
    max-width: 250px;
    object-fit: contain;
}

.instruction-popup #btn-close-popup {
    margin-top: 10px;
    width: 100%;
    height: 44px;
    border-radius: 10px;
}