#xsd-region-promo {
    position: fixed;
    left: calc(50% - 160px);
    top: calc(50% - 120px);
    width: 490px;
    height: 250px;
    -border: red 1px solid;

    z-index: 100;

    transition: 1s;
}
#xsd-region-promo .wheel {
    background-image: url("images/wheel.svg?v3");
    left: 54px;
    top: 147px;
    width: 90px;
    height: 90px;
    background-size: 90px;
    background-position: 0 0;
    position: absolute;

    animation-duration: 3s;
    animation-name: xsd-wheel;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0;

    margin-top: 20px;
    transition: 2s;
}
#xsd-region-promo .wheel.wheel-2 {
    left: 360px;
}

#xsd-region-promo .bg1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url("images/car2.svg?v2");
    background-position: 0 0;
    background-size: 320px;
    background-repeat: no-repeat;
    transition: 1s;
    opacity: 1;
}
#xsd-region-promo .bg2 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url("images/car1.svg?v3");
    background-position: -49px -244px;
    background-size: 582px;
    background-repeat: no-repeat;
    transition: 2s;
    opacity: 0;
}
#xsd-region-promo .text {
    position: absolute;
    width: 240px;
    height: 120px;
    left: 40px;
    top: 10px;
    no-border: green 1px solid;
    color: white;
    text-align:  center;
    font-size: 18px;
    line-height: 24px;
    font-weight:  bold;
    display: flex;
    justify-content: center;
    align-items: center;

}

#xsd-region-promo .promo-btn {
    position: absolute;
    left: 80px;
    top: 160px;
    width: 40px;
    text-align: center;
    -border: rebeccapurple 1px solid;
    color: white;
    font-weight:  bold;
    cursor: pointer;
    transition: 0s;
}

#xsd-region-promo.active {
    /*background-image: url("images/car1.svg");
    background-position: -49px -244px;
    background-size: 582px;*/
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-name: xsd-drive;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    margin-top: 10px;
}

#xsd-region-promo.active .promo-btn {
    opacity: 0;
}

#xsd-region-promo.active .bg1 {
    opacity: 0;
 }
#xsd-region-promo.active .bg2 {
    opacity: 1;
}

@keyframes xsd-drive {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100vmax);
    }
}

@keyframes xsd-wheel {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(350deg);
    }
}

#xsd-region-promo.active .wheel {
    opacity: 1;
    margin-top:0;
}