.messenger_facebook{display:none;}
.breadcrumb-item+.breadcrumb-item::before{color:#ffffff;}
#info {
  margin: 10px 0;
  font-size: 18px;
}
.page-header {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}
.game-container-wp .game-container {
    width: 500px;
    max-width: 100%;
    min-height: 65vh;
    margin: 0 auto;
}
#game {
  display: grid;
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
	max-width: 100%;
  max-height: 95vw;
  gap: 5px;
}
.cell {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  cursor: pointer;
      -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    touch-action: manipulation;
	position:relative;
}
.cell:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(https://seowebmaker.com/template/Default/media/minigame/color-vision-test/logoweb-w.png) no-repeat;
    background-size: 60%;
    background-position: center center;
    opacity: 0.09;
    pointer-events: visible;
}
#startBtn, #retryBtn {
    padding: 10px 20px;
    font-size: 22px;
    margin: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}
span.level {
  font-size: 26px;
  font-weight: bold;
}
#game-wp {
  position: relative;
}
#startBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modal button {
  margin-top: 15px;
  font-size: 22px;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
  background: #44aaee;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 8px #44aaff;
}
.modal-content {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  max-width: 95vw;
  width: 500px;
}
.modal-success .modal-content {
  background-color: #d4edda;
  color: #155724;
}
.modal-error .modal-content {
  background-color: #f8d7da;
  color: #721c24;
}
.modal-warning .modal-content {
  background-color: #fff3cd;
  color: #856404;
 
}
h2#modalTitle {
	font-size: 32px;
}
#modalComment {
  margin-top: 10px;
  font-size: 18px;
}
#modalMessage {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
}
.modal-content p{margin:0;}
.info-item-in {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
}
.info-item-time {
    position: absolute;
    top: -10px;
    right: 0;
    background: #fff;
    color: red;
    padding: 3px 4px 7px 8px;
    border-radius: 10px;
}
.info-item-time span {
    font-size: 22px;
    font-weight: bold;
}
.btn-wp {
    top: -15px;
    height: calc(100% + 15px);;
}
@media(max-width:767px){
	.game-container-wp .game-container {
		min-height: 60vh;
	}
	.info-item-time span {
		font-size: 20px;
	}
	#info {
		margin: 5px 0;
		font-size: 16px;
	}
	span.level {
		font-size: 16px;
	}
	#modalComment {
		font-size: 16px;
	}
	h2#modalTitle {
		font-size: 22px;
		font-weight: bold;
	}
	#modalMessage {
		font-size: 16px;
		font-weight: bold;
	}
}