.mcnote-container {
    display: flex;
    background-color: white;
    padding: 4px;
    background: rgba(79, 61, 59, 0.15);
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

.mcnote-right-box {
    padding: 5px 10px;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    background: #4F3D3B;
    align-items: center;
    gap: 10px;
}

.mcnote-swiper .swiper-wrapper {
    height: 30px;
}

@media screen and (max-width: 480px) {
    .mcnote-container {
        flex-direction: column;
        align-items: center;
        background-color: unset;
    }

    .mcnote-right-box {
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .mcnote-swiper .swiper-wrapper {
        height: 60px;
    }

    .mcnote-swiper {
        background: rgba(79, 61, 59, 0.15);
        border-radius: 0.5rem;
    }
}

.mcnote-swiper .swiper-slide {
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}