.banner_adv_wrap {
    position: fixed;
    right: 0.5rem;
    bottom: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: end;
    gap: 1rem;
    z-index: 99;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.banner_adv_button {
    display: -webkit-flex;
    display: flex;
    white-space: nowrap;
    gap: 1rem;
    color: #fff;
    padding: 10px 30px 10px 10px;
    border: 1px solid transparent;
    border-radius: 4em;
    background: -webkit-linear-gradient(0deg, var(--theme-color-orange) 0%, var(--theme-color-red) 100%);
    background: linear-gradient(90deg, var(--theme-color-orange) 0%, var(--theme-color-red) 100%);
    box-shadow: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

.banner_adv_button:hover {
    color: #fff;
    background: -webkit-linear-gradient(0deg, var(--theme-color-red) 0%, var(--theme-color-orange) 100%);
    background: linear-gradient(90deg, var(--theme-color-red) 0%, var(--theme-color-orange) 100%);
    outline: unset;
}

.banner_adv_button_img {
    display: none;
    position: relative;
    width: 4rem;
    min-width: 4rem;
    height: 100%;
    border-radius: 4rem;
    overflow: hidden;
}

.banner_adv_button_img.active {
   display: block;
}

.banner_adv_button_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner_adv_button_info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}

.banner_adv_button_title {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
    color: inherit;
}

.banner_adv_button_desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1;
    color: var(--theme-color-violet);
}

.banner_adv_content {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(50%, 50%) scale(0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.banner_adv_content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, 0) scale(1);
    z-index: 1;
}

.banner_adv_item {
    display: none;
    width: 400px;
    max-width: calc(100vw - 1rem);
    color: inherit !important;
    border-radius: 2rem;
    overflow: hidden;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.banner_adv_item.active {
    display: block;
}

.banner_adv_item_img {
    width: 100%;
    height: auto;
}

.banner_adv_item_img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.banner_adv_item_video {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 66%;
}

.banner_adv_item_video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner_adv_item_timer {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.3em 0;
    font-size: 1rem;
    line-height: 1;
    color: inherit;
    border-radius: 0.5em;
    background: var(--theme-color-blue-light);
    opacity: 0.5;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.banner_adv_item_timer:hover {
    opacity: 1;
}

.banner_adv_item_timer .count {
    font-size: 0.7em;
    margin-left: 0.5em;
}

.banner_adv_item_timer .timer {
    text-align: center;
    width: 2em;
}

.banner_adv_info {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    max-width: calc(100% - 2rem);
    font-size: 0.7em;
    line-height: 1.2;
    color: inherit;
    text-align: center;
    padding: 0.3em 0.5em;
    border-radius: 0.5em;
    background: var(--theme-color-blue-light);
    opacity: 0.5;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.banner_adv_info:hover {
    opacity: 1;
}

.banner_adv_close {
    position: absolute;
    top: -3rem;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--theme-color-grey);
    background: var(--theme-color-blue-light);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

.banner_adv_close:hover {
    color: inherit;
   transform: rotate(180deg);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.banner_adv_close svg {
    width: 1.5rem;
    height: auto;
}

@media all and (max-width: 1200px){
    .banner_adv_wrap {
        bottom: 72px;
    }
}

@media all and (max-width: 767px){
    .banner_adv_wrap {
        max-width: calc(100% - 1rem);
        bottom: 48px;
    }

    .banner_adv_content {
        border-radius: 1rem;
    }
}