.piece {
    --piece-background-color: #d0bbdb;

    width: 400px;
    height: 400px;
    position: relative;
    background-color: var(--piece-background-color);

    &-menu {
        position: absolute;
        width: 150px;
        height: 50px;
        background-color: #f7f7f7;
        z-index: -1;
        top: -51px;
        left: 50%;
        transform: translateX(-50%);
        transition: transform 0.5s ease;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border: solid black 1px;
        display: flex;
        padding: 15px 20px 15px 20px;
        justify-content: space-around;
        mat-icon {
            cursor: pointer;
            transform: scale(1.1);
        }
        mat-icon:hover {
            opacity: 0.75;
        }
    }
    &-menu.show {
        transform: translateX(-50%) translateY(0);
    }
    &-menu.hide {
        transform: translateX(-50%) translateY(100%);
    }

    &-attach {
        z-index: 1;
        border-right: solid black 1px;
        &-right {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--piece-background-color);
        }
        &-left {
            &-top {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                position: absolute;
                left: -25px;
                top: 25%;
                background-color: var(--background-color);
                transform: translateY(-50%);
            }
            &-bottom {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                position: absolute;
                left: -25px;
                bottom: 25%;
                background-color: var(--background-color);
                transform: translateY(50%);
            }
        }
    }
    &-form {
        height: 100%;
        padding: 0px 10px 0px 35px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        z-index: 2;
        &-title {
            margin-top: 20px;
            font-size: 25px;
            font-family: 'Glacial Indifference Bold';
        }


        &-comment {
            transform: scale(1.2);
            position: absolute;
            top: 25px;
            right: 5%;
            background-color: white;
            padding: 4px;
            border-radius: 50%;
        }

        &-objective{
            height: 100%;
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            label {
                font-size: 20px;
                font-weight: lighter;
            }
            textarea {
                margin-top: 10px;
                border-radius: 20px;
                padding: 10px;
                border: none;
                resize: none;
                flex-grow: 1;
                margin-bottom: 25px;
                background-image: url("../../../assets/background-images/obj2.png");
                background-position: center;
                background-repeat: no-repeat;
                background-size: 30%;
            }
        }
    }
}