.bottom_item_elem_mobile{
    display: none;
}

.bottom_item_elem_cont {
    z-index: 999;
    position: fixed;
    left: 50%;
    bottom: -200px; /* Начальная позиция за экраном */
    transform: translateX(-50%); /* Центрирование по горизонтали */
    transition: bottom 2s ease-in-out; /* Плавная анимация перемещения */
    background-color: #333;
    color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bottom_item_elem_cont.show {
    bottom: 0;
}

.bottom_item_elem_desktop, .bottom_item_elem_mobile {
    width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    .bottom_item_elem_mobile{
        display: block;
    }
    .bottom_item_elem_desktop{
        display: none;
    }
}

