.root {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
    gap: 12px;
    background-color: var(--color-indigo-200);
}

.close {
    position: absolute;
    right: 12px;
    cursor: pointer;
}

.close svg {
    width: 20px;
}

@media screen and (width <= 768px) {
    .root {
        gap: 8px;
    }
}
