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

    width: 400px;
    height: 800px;
    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;
        border-top: solid black 1px;
        border-bottom: solid black 1px;
        &-right {
            &-top {
                position: absolute;
                width: 20px;
                height: 60px;
                background-color: var(--piece-background-color);
                top: 25%;
                right: -20px;
                transform: translateY(-50%);  
            }

            &-bottom {
                position: absolute;
                width: 20px;
                height: 60px;
                background-color: var(--piece-background-color);
                bottom: 25%;
                right: -20px;
                transform: translateY(+50%);  
            }

        }
    
    }

    &-form {
        height: 100%;
        padding: 0px 10px 0px 10px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        z-index: 2;
        label {
            font-size: 20px;
            font-weight: lighter;
            margin-top: 10px;
            margin-bottom: 5px;
        }  
        input {
            height: 40px;
            border-radius: 10px;
            border: none;
            padding: 5px 10px 5px 10px;
        }
        textarea {
            border-radius: 20px;
            padding: 10px;
            border: none;
            resize: none;
            flex-grow: 1;
        }
        &-title {
            margin-top: 20px;
            font-size: 25px;
            font-family: 'Glacial Indifference Bold';
        }
        &-universe {
            display: flex;
            flex-direction: column;
            margin-top: 10px;
        }
        &-support {
            display: flex;
            flex-direction: column;
        }
        &-duration {
            display: flex;
            flex-direction: column;
        }
        &-intrigue{
            height: 40%;
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            textarea {
                background-image: url("../../../assets/background-images/graal.png");
                background-position: center;
                background-repeat: no-repeat;
                background-size: 30%;
            }
        }
        &-other {
            display: flex;
            flex-direction: column;
            margin-bottom: 25px;
            height: 40%;
            textarea {
                background-image: url("../../../assets/background-images/autre.png");
                background-position: center;
                background-repeat: no-repeat;
                background-size: 30%;
            }
        }
    }

}