.slide-download{
    position: relative;
}

.slide-buttons {
    position: absolute;
    display: flex;
    gap: 50px;
    bottom: 15%;
    left: 14%;
}

.slide-buttons .button-item {
    display: flex;
    width: 200px;
    height: auto;
    border-radius: 30px;
    background: #F5F5F5;
    border: none;
    font-size: 18px;
    color: #4e4c46;
    place-items: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    padding: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
}

.slide-buttons .button-item:nth-child(1) {
    background-color: #FFFFFF;
}

.slide-buttons .button-item:nth-child(2) {
    background-color: #eaca88;
}

.slide-buttons .button-item span {
    margin-left: 10px;
}

.slide-buttons img {
    width: 34px !important;
    height: auto !important;
}

.slide-buttons .qr-wrapper {
    width: 8.333vw;
    height: 9.375vw;
    border-radius: 0.521vw;
    padding: 0.677vw 0.625vw 0.469vw 0.625vw;
    position: absolute;
    top: -183px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 2;
    background: linear-gradient(360deg,
            rgba(255, 251, 240, 1) 0%,
            rgba(255, 237, 205, 1) 100%);
    color: #666666;
    font-size: 0.625vw;
    text-align: center;
}

.slide-buttons .qr-wrapper.inverted {
    top: -11vw;
}

.slide-buttons .qr-wrapper.left {
    left: -140%;
    top: 0;
}

.slide-buttons .qrcode>* {
    width: 7.083vw !important;
    height: 7.083vw !important;
}

.button-item:hover .qr-wrapper {
    display: block;
}

.slide-buttons .hint {
    margin-top: 0.269vw;    
    font-weight: 700;
}

@media (max-width: 1080px) {
    .slide-buttons {
        bottom: 15%;
        left: 5%;
        gap: 7.5px;
    }

    .slide-buttons .button-item {
        width: 100px;
        font-size: 12px;
        padding: 2.5px;
    }

    .slide-buttons img {
        width: 12px !important;
    }

    .slideshow .overlay .container .line .title h2,
    .slideshow .overlay .container .line .ur-here,
    .slideshow .overlay .container .line .ur-here a {
        color: #000000;
        background-color: #FFFFFF;
        padding: 5px;
    }
}