.hide{
	display: none !important;
}
.title-f {
	font-size: 1.5rem;
}
.mb-1-5{
	margin-bottom: .5rem;
}

.mt-1-5{
	margin-top: .5rem;
}

.display-radio{
	display: flex;
	align-items: stretch;
}
@keyframes show{
    0%{
    z-index: 1;
    transform: scale(0.8);
    opacity: 0;
    }

    100%{
    z-index: 1;
    transform: scale(1);
    opacity: 1;
    }
}
@keyframes hide{
    0%{
    opacity: 1;
    }

    100%{
    opacity: 0;
    }
}
.animaShow{
    animation: 650ms show ease-out;
    animation-fill-mode: forwards;

}
.animaHide{
    animation: 650ms hide ease-out;
    animation-fill-mode: forwards;   
}
.acordeon{
    color: black;
    overflow: hidden;
}
.title-question{
    padding: 0.5em 1em;
    background:gray;
    color: white;
    user-select: none;
    display: flex;
    justify-content: space-between;
}
.title-bg-pink{
    background: #e10098;
}
.title-bg-green{
    background: #198754;
}
.content-question{
    background: #e8d7d7;
    overflow: hidden;
    padding: 0 1em;
    height: 0;
    transition: all 350ms ease-out;
}
.content_question_text{
    color: black;
}

.menu{
    height: 100vh;
    width: 100vh;
    position: absolute;
    background: gray;
    z-index: 1;
}
.salto{
	height:10px
}

@media (max-width: 768px) {
	.card-piscina{
    width: 100%;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: 1rem;
	  height: auto;
  }
	.contt{
		display: block;
    width: 100%;
    padding-right: 20px;
	}
	
}
@media (min-width: 768px) {
	.card-piscina{
    width: 50%;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: 1rem;
	  height: 185px;
  }
	.contt{
		display: flex; 
		width: 100%;
	}
}


.card-piscina-bg-green{
    background-color: #64ccc9;
	  color: #fff;
}

.card-piscina-bg-green .card-piscina__title{
	color: white !important;
}

.card-piscina__title {
    color: #282828;
}