/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.5.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.memory-game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media(min-width: 800px){
	.memory-game-grid {
	  grid-template-columns: 1fr 1fr 1fr;
	  gap: 20px;
}
}

.memory-card {
  perspective: 1000px;
  cursor: pointer;
	min-height:160px;
}

.memory-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.memory-card.flipped .memory-inner {
  transform: rotateY(180deg);
}

.memory-front,
.memory-back {
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border: 6px solid #3d2424;
  border-radius: 15.79px;
  backface-visibility: hidden;
  top: 0;
}

.memory-front {
  background: #3d2424;
}

.memory-back {
  background: #3d2424;
  transform: rotateY(180deg);
}

.memory-front img,
.memory-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-label {
  position: absolute;
	bottom: -4px;
    left: -2px;
  background-color: #3d2424;
  color: #edc463;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "IBM Plex Sans", sans-serif;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 1.3px;
  border-radius: 0 10px 0 10px;
	z-index: 1;
}

textarea{
    resize: none;
}


.wc-block-components-local-pickup-select .wc-block-components-radio-control__secondary-label{
  display: none;
}