.am-modali {
    height: 0;
}

[id^="modal-"] {
    position: fixed;
    top: 0;
    left: 0;
	opacity: 0;
    background-color: rgba(0, 0, 0, .3);
	display: none;
	width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
	z-index: 150;
}

[id^="modal-"] .modal-close {
	position: absolute;
    border-radius: 50%;
	/* background: rgba(255, 255, 255, 0.8) url('../icons/x-circle.svg') no-repeat; */
    background: url('../icons/x-circle.svg') no-repeat;
	/* background-size: 50%; */
    background-position: center;
	height: 2rem;
	width: 2rem;
    top: 1.5rem;
    right: 3.5rem;
    cursor: pointer;
    z-index: 160;
}


[class*='open-'] {
	cursor: pointer;
}

[class*='open-'] .am-title-product {
    width: 95%;
}


[class*='open-'] .am-title-product::before {
    position: absolute;
    content: '+';
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    height: 15px;
    width: 15px;
    top: 1rem;
    right: 0;
    padding: 0.05rem;
    margin: 0;
    font-weight: 900;
    line-height: 1.4rem;
    border: 1.5px solid;
    border-radius: 50%;
}