


.mobile-footer-container {
    width: 100vw;
    height: 72px;
    position: fixed;
    bottom: 0;
    left: 0;
}
.mobile-footer-image-container {
    width: 375px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.mobile-footer-image-container::after {
    content: "";
    position: absolute;
    left: 100%;
    width: 1000px;
    transform: translateX(-5px);
    top: 0;
    height: 100%;
    background-color: #fff;
    border-top: 2px solid #e8e8e8;
}
.mobile-footer-image-container::before {
    content: "";
    position: absolute;
    width: 1000px;
    left: 0;
    bottom: 0;
    transform: rotate(-180deg) translateX(-5px);
    transform-origin: left;
    height: 100%;
    background-color: #fff;
    border-bottom: 2px solid #e8e8e8;
}
.mobile-footer-img {
    width: 100%;
    height: 100%;
}
.mobile-footer-img path {
    stroke-width: 1px;
    stroke: #e8e8e8;
}
.mobile-footer-buttons {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 103px;
    width: 100%;
    left: 0;
    bottom: 16px;
    padding-inline: 26px;
}
.footer-mobile-left-section,
.footer-mobile-right-section {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 29px;
}
.footer-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: var(--default-phone-unactive-color);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    z-index: 2;
    text-wrap: nowrap;
}
.footer-btn span {
    fill: var(--default-phone-unactive-color);
    transition: fill 0.2s;
}
.mobile-footer-img path{
    fill: var(--default-background-menu-color);

}
.mobile-footer-image-container::before,.mobile-footer-image-container::after{
    background-color: var(--default-background-menu-color);

}

.footer-btn span::before {
    font-size:20px
}
.footer-btn::after {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--default-background-number-menu-color);
    opacity: 0;
    transition: opacity 0.2s;
}
@keyframes slidein {
    from {
        top: 50%;

    }

    to {
        top: -50%;
    }
}
.footer-basket-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    position: absolute;
    top: -50%;
    left: 50%;
    border:none;
    outline:none;
    background-color: var(--default-phone-basket-background-color);
    border-radius: 50%;
    animation-duration: 1s;
    animation-name:slidein;
    transform: translate(calc(-50% - 0.6px), 4.5px);
}
.footer-basket-btn svg path {
    fill: var(--default-basket-icon-color);
}
.footer-basket-btn svg {
    width: 28px;
    height: 28px;
}

.footer-basket-number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15px;
    right: 13px;
    min-width: 16px;
    min-height: 16px;
    background-color: var(--default-background-number-menu-color);
    border-radius: 50%;
    text-align: center;
    color: var(--default-basket-icon-color);
    font-size: 12px;
    font-weight: 400;
    user-select: none;
}
.active-footer-btn {
    position: relative;
    color: var(--default-phone-active-color);
}
.active-footer-btn span {
    fill: var(--default-phone-active-color);
}
.active-footer-btn::after {
    opacity: 1;
}
