.template-dialog {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;   
    justify-content: center;
    padding: 12px;
}

.template-background-white {
    background-color: #f8f5ec !important;
    border-radius: 50%;
}
    .template-background-white .mud-image {
        padding: 12px;
    }

.marketplace-square-interactive {
    position:  relative;
    cursor: pointer;
    transition: transform 0.2s;
    transform: scale(0.9);
    position: relative;
}

    .marketplace-square-interactive:hover, .marketplace-square-interactive.border-selected {
        transform: scale(1);
    }

.container-ribbon {
    position: absolute;
    top:100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    width: fit-content;
    background-color: var(--mud-palette-primary);

}


.create-card {
    border: 2px dashed var(--mud-palette-primary);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .create-card:hover {
        background-color: rgba(0, 0, 0, 0.04);
    }
.text-muted {
    color: var(--mud-palette-text-secondary);
    font-size: 0.75rem;
}


.square-card-summary {
    display: flex;
    gap: 8px;

}
    .square-card-summary-card {
        width: 100%;
        padding: 0.5em;
        border-width: 2px;
        border-style: solid;    
    }
        .square-card-summary-card .mud-typography {
            display: flex;
            align-content: center;
            justify-content: center;
            align-items: center;
        }

.message-list {
    height: 240px;
    overflow-y: auto;
}

.organization-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.truncate {
    white-space: nowrap;
    word-wrap: anywhere;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate:hover, .truncate:focus {
    overflow: visible;
    white-space: normal;
    width: auto;
}
.recommend-product, .border-selected {
    outline: solid 4px var(--mud-palette-primary);
}
.guide-recommend-action {
    border-radius: 50% 12px 12px 50%;
    background-color: var(--mud-palette-primary);
    height: 240px;
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: none;
    padding: 12px;
    padding-right: 0;
    transition: ease-in 200ms transform;
    transform: scale(0.85) rotate(-20deg);
    margin-bottom: 12px;
    position: relative;
}

.guide-recommend-action > svg {
    height: 100%;
    width: 100%;
    border-radius: 50% 0 0 50%;
    border: 32px double var(--mud-palette-background);
    border-right: none;
    padding: 12px 12px 12px 0;
} 
    
.guide-recommend-action:hover {
    transform: scale(1);
    cursor: pointer;
}



.m-fadeIn {
    visibility: visible;
    opacity: 1;
    animation: fadein 500ms;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.m-fadeOut {
    animation: fadeout 500ms;
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.shake-ani {
    animation: shake 6s cubic-bezier(.36,.07,.19,.97) forwards infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@keyframes shake {
    1%, 9% {
        transform: translate3d(-1px, 0, 0);
    }

    2%, 8% {
        transform: translate3d(1px, 0, 0);
    }

    3%, 5%, 7% {
        transform: translate3d(-3px, 0, 0);
    }

    4%, 6% {
        transform: translate3d(3px, 0, 0);
    }
    10% {
        transform: translate3d(0, 0, 0);
    }
}