#showroom {
    display: none;
    /*position: fixed;*/
    /*transform: translateY(-50%);*/
    top: 50%;
    width: 100%;
    padding: 74px 0 105px;

}
#showroom #scene {
    width: 512px;
    height: 512px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 24px 20px 30px
}
#showroom #scene canvas {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}
#showroom #showroom-variants {
    /*display: none;*/
    justify-content: space-between;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 1px 18px;
    -ms-overflow-style: none;
    width: 1540px;
    margin: 0 auto;
}
#showroom #showroom-variants::-webkit-scrollbar {
    width: 0;
    height: 0;
}
#showroom #showroom-variants div{
    box-sizing: content-box;
    display: inline-block;
    width: 304px;
    height: 152px;
    border-radius: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #4d5153;
    cursor: pointer;
    margin-right: 64px;
    border: 16px solid #1A191D;
}
#showroom #showroom-variants div:last-child {
    margin-right: 0;
}
#showroom #showroom-variants div.active {
    outline: 1px solid #FFFFFF;
}
#showroom #loader {
    width: 100%;
    height: 100%;
    background-color: #003055;
    position: relative;
    text-align: center;
    z-index: 5;
}
#showroom img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}
#showroom .back-button {
    display: none;
    margin: 78px auto 0;
    width: 394px;
    background: transparent;
    color: #fff;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
    user-select: none;
}
#showroom .back-button:hover {
    background: #fff;
    color: #1A191D;
}
#showroom #scene-wrapper {
    position: relative;
    width: 512px;
    height: 512px;
    margin: 0 auto 78px;
}
#showroom .arrow {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
}

#showroom .arrow.arrow-left {
    left: calc(-96px - 64px)
}
#showroom .arrow.arrow-right {
    transform: translateY(-50%) scaleX(-1);
    right: calc(-96px - 64px);
}
/*===========================*/
#showroom .screenshot-container,
#showroom .close-container {
    position: absolute;
    height: 64px;
    width: 64px;
    z-index: 1;
}
#showroom .screenshot-wrapper,
#showroom .close-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
#showroom .screenshot,
#showroom .close-app {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    cursor: pointer;
}
#showroom .screenshot.hovered,
#showroom .close-app.hovered {
    opacity: 0;
    transform: scale(1.05);
}
#showroom .screenshot.activated,
#showroom .close-app.activated {
    opacity: 0;
}
#showroom .screenshot-container:hover .screenshot.hovered,
#showroom .close-container:hover .close-app.hovered {
    opacity: 1;
}
#showroom .screenshot-container:active .screenshot.activated,
#showroom .close-container:active .close-app.activated {
    opacity: 1;
}
/*===========================*/
#showroom .screenshot-container {
    bottom: 0;
    left: 0;
}
#showroom .close-container {
    top: 0;
    right: 0;
}
/*===========================*/
@media (max-width: 1440px) {
    #showroom {
        padding: 128px 0;
    }
    #showroom #scene {
        width: 284px;
        height: 284px;
        border-radius: 20px 18px 20px 22px;
    }
    #showroom #showroom-variants {
        width: 812px;
    }
    #showroom #showroom-variants div {
        width: 228px;
        height: 114px;
        border-radius: 32px;
        margin-right: 40px;
        border: 12px solid #1A191D;
    }
    #showroom #showroom-variants div:last-child {
        margin-right: 0;
    }
    #showroom .back-button {
        width: 284px;
        font-size: 16px;
        line-height: 22px;
        padding: 15px 0;
    }
    #showroom #scene-wrapper {
        width: 284px;
        height: 284px;
        margin: 0 auto 84px;
    }
    #showroom .arrow {
        width: 48px;
        height: 48px;
    }
    #showroom .arrow.arrow-left {
        left: calc(-96px - 48px)
    }
    #showroom .arrow.arrow-right {
        right: calc(-96px - 48px);
    }
    #showroom .screenshot-container,
    #showroom .close-container {
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 820px) {
    #showroom #showroom-variants {width: 570px}
    #showroom .back-button {
        display: block;
    }
    #showroom .close-container {
        display: none;
    }
}
@media (max-width: 600px) {
    #showroom {
        padding: 113px 0;
    }
    #showroom #scene {
        width: 311px;
        height: 311px;
        border-radius: 20px 15px 20px 15px
    }
    #showroom #showroom-variants {
        width: 311px;
    }
    #showroom #showroom-variants div {
        width: 100px;
        height: 50px;
        border-radius: 18px;
        margin-right: 16px;
        border: 8px solid #1A191D;
    }
    #showroom .back-button {
        width: 311px;
        font-size: 16px;
        line-height: 22px;
        padding: 16px 0;
    }
    #showroom #scene-wrapper {
        width: 311px;
        height: 311px;
        margin: 0 auto 40px;
    }
    #showroom .arrow {
        display: none;
    }
    #showroom .back-button {
        margin-top: 40px;
    }
    #showroom .screenshot-container{
        width: 32px;
        height: 32px;
    }
}
