.add-post-dimmer {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    top: 0;
    left: 0;
    z-index: 1031;
    justify-content: flex-end;
    backdrop-filter: blur(3px);
    align-items: center;
}

.add-post-expandable-menu {
    display: block;
    min-width: 48px;
    min-height: 48px;
}

.add-post-expandable-menu-top {
    margin-left: 2px;
}

#addPostButtonTop {
    transition: all 0.5s;
}

#addPostButtonTop i {
    /*transition: all 0.5s;*/
}

.add-post-expandable-menu-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    padding: 8px;
    border-radius: 20px;
    transition: background-color 0.5s;
    margin-top: -8px;
}

.add-post-expandable-menu-buttons-wrapper-bottom {
    bottom: 0;
    z-index: 2;
    padding: 7px 0;
}

.add-post-expandable-menu-buttons-wrapper-bottom.expanded {
    padding: 8px;
   /* margin-left: -8px; */
}

.add-post-expandable-menu-buttons-wrapper.expanded {
    background-color: rgba(255, 255, 255, 0.4);
}

.add-post-expandable-menu-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #E23A4D;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.add-post-button-expandable {
    margin-left: 0!important;
}

.add-post-expandable-menu-button-lighter {
    background-color: #FCE1E6;
    border: 2px solid #FCE1E6;
    color: #E23A4D!important;
    transform: rotateZ(450deg) translateY(0);
}

.add-post-expandable-menu-button-text {
    position: absolute;
    right: 70px;
    font-size: 13px;
    font-weight: 900;
    min-width: max-content;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1), 0 0 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.add-post-expandable-menu-icon {
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.add-post-expandable-menu-icon-close {
    background: url('../../icons/add_post/close.svg');
}

.add-post-expandable-menu-icon-add-post {
    background: url('../../icons/add_post/post.svg');
}

.add-post-expandable-menu-icon-add-offer {
    background: url('../../updated-icons/updated-header-icons/header-offers-icon-white.svg');
}

.add-post-expandable-menu-icon-add-survey {
    background: url('../../icons/add_post/survey.svg');
}

.add-post-expandable-menu-icon-add-stories {
    background: url('../../icons/add_post/stories.svg');
}

.add-post-expandable-menu-icon-add-slider {
    background: url('../../icons/add_post/slider.svg');
}

@media only screen and (max-width: 1355px) {
    .add-post-expandable-menu {
        min-width: 44px;
        min-height: 44px;
    }
    .add-post-expandable-bottom {
        min-width: 24px; /* match to icon width */
        transition: width 0.5s;
    }
    .add-post-expandable-bottom-expanded {
        min-width: 56px;
        transition: width 0.5s;
    }

    .add-post-expandable-menu-button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 386px) {
    .add-post-expandable-bottom {
        margin-right: 11px; /* Adjust the margin or any other styles as needed */
    }

    .add-post-expandable-menu-buttons-wrapper-bottom.expanded {
        padding: 8px;
        margin-left: 8px;
    }
}
