section.fixed-bottom-module__section {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    background: #fff;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

section.fixed-bottom-module__section.is-visible {
    opacity: 1;
    visibility: visible;
}
.fixed-bottom-module{
    padding: 12px 0;

}
.fixed-bottom-module__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.fixed-bottom-module__group{
    display: flex;
    align-items: center;
    gap: 16px;
}
.fixed-bottom-module__colored-text{
    display: flex;
    align-items: center;
    gap: 8px;
}
.fixed-bottom-module__btn.orange-btn{
    background-color: #ed731d;
    box-shadow: 0 0 16px 0 #ed731d66;
    border-radius: 12px;
    padding: 10px 24px;

margin: 0}

p.fixed-bottom-module__text,
a.fixed-bottom-module__btn.orange-btn p,
.fixed-bottom-module__colored-text>p{
    margin-bottom: 0;
}
a.fixed-bottom-module__btn.orange-btn p,
p.fixed-bottom-module__text
{
    font-size: 14px;
    line-height: 20px;
}
a.fixed-bottom-module__btn:hover{
    text-decoration: none;
}

p.fixed-bottom-module__text{
    color: #333333cc;
    font-weight: 600;
}
.fixed-bottom-module__colored-text>p{
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;}
.fixed-bottom-module__colored-text svg circle,
.fixed-bottom-module__colored-text svg polyline,
.fixed-bottom-module__colored-text>p{
    color: #ed731d;
}
.fixed-bottom-module__colored-text svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}


@media screen and ( max-width: 1024px ){
    .fixed-bottom-module{
padding: 12px 32px;
    }
}
@media screen and ( max-width: 800px ){
    .fixed-bottom-module__group{
        display: none;
    }
    .fixed-bottom-module__wrapper{
        display: block;
        width: fit-content;
        margin-right: unset;
        margin-left: unset;
    }
}