.bottom-panel {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 100000;
    bottom: 8px;
}


.bottom-panel__element-wrapper {
    padding-top: 8px;
    height: 60px;
    background: #DEE3ED;
    align-items: center;
    position: fixed;
    display: flex;
    bottom: 7.5px;
    z-index: 100000;
}

.bottom-panel__element-wrapper.panel-element-left {
    left: 8px;
}

.bottom-panel__element-wrapper.panel-element-right {
    right: 8px;
}

.bottom-panel__row {
    background: #DEE3ED;
    height: 8px;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10000;
}


.bottom-decor-border {
    position: absolute;
}

.bottom-decor-border-left {
    transform: rotateX(180deg);
    right: -68px;
    bottom: 0;
}

.bottom-decor-border-right {
    transform: rotateX(180deg) rotateY(180deg);
    left: -68px;
    bottom: 0;
}

.bottom-panel__btn {
    padding: 9.5px;
    min-width: 240px;
    position: relative;
    z-index: 3;
}

.bottom-panel__btn:hover {
    border-color: #FF5A46;
}

.bottom-panel__phone {
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
    z-index: 3;
}

.bottom__border-decor {
    position: absolute;
    width: 20px;
    height: 18px;
    top: -17.5px;
    transform: rotateX(180deg);
}

.bottom-border-decor-right {
    right: 0;
}

.bottom-border-decor-left {
    left: 0;
}

@media screen and (max-width: 1199.98px) {
    .bottom-panel__row {
        height: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .panel-element-left:has(.btn-without-content) .bottom-panel__btn,
    .panel-element-left:has(.btn-without-content) .bottom-decor-border-left {
        display: none;
    }

    .panel-element-left:has(.btn-without-content) .bottom__border-decor {
        min-width: 20px;
        top: unset;
        bottom: 0;
    }
}

@media screen and (max-width: 1023.98px) {
    .bottom-decor-border,
    .bottom-panel__row {
        display: none;
    }

    .bottom-panel {
        background: #DEE3ED;
    }

    .bottom-panel__btn {
        margin-right: 0;
        min-width: 150px;
        padding: 9px;
        min-height: 46px;
        max-height: 46px;
    }

    .bottom-panel__phone {
        margin-left: 0;
        gap: 10px;
        letter-spacing: -0.06em;
    }

    .bottom-panel__element-wrapper {
        height: auto;
        bottom: -0.5px;
    }

    .bottom-panel__element-wrapper.panel-element-left {
        left: 5px;
        padding: 10.5px 0 10.5px 10px;
        width: 100%;
        max-width: 170px;
    }

    .bottom-panel__element-wrapper.panel-element-right {
        right: 5px;
        justify-content: flex-end;
        padding: 10.5px 10px 10.5px 10px;
        width: calc(100% - 170px);
    }


    .bottom-panel__wrapper {
        padding: 11px 15px 10px 15px;
        gap: 10px;
    }
}

@media screen and (max-width: 374.98px) {
    .bottom-panel__btn {
        min-width: 130px;
    }

    .bottom-panel__element-wrapper.panel-element-right {
        width: calc(100% - 150px);
    }

    .bottom-panel__phone {
        gap: 6px;
    }

}