@charset "UTF-8";

.instruction-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .75);
    backdrop-filter: blur(2px);
    z-index: 999;
}

.instruction {
    position: relative;
    margin-top: 36px;
    padding: 16px;
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, .75);
    border-radius: 5px;
}

.instruction-header {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.instruction-header p:first-of-type {
    margin-right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
}

.instruction-image {
    position: absolute;
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instruction-footer {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px;
    width: calc(100% - 32px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.instruction-footer button {
    padding: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 48px;
    color: #fff;
    border: none;
    outline: none;
    background-color: transparent;
}

.display-none {
    display: none !important;
}