
#my_notif_close {
	 color:  black;
	 vertical-align: top;
	 margin-left:15px;
	 font-weight: 700;
	 font-size:15px;
	 margin-top: 15px;
}

#my_message {
		display:none;
		
  display: flex;
   left:40%;
	width:max-content;


  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  top: 2px; /* ma byt 0px */

  font-size: 1.7rem;
  z-index: 999;
      font-weight: 600;
    letter-spacing: 0.0333em;
    line-height: 1.25;
    margin: 0;
    opacity: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.15s linear;
}


@media (min-width: 769px) { /* Tablet screen */	
	#my_message22 {
		display:none;
		text-align: left;
		width:800px;
		margin-left:-400px;
		left:40%;
	  padding: 5px 10px;
	  border-radius: 5px;
	  position: absolute;
	  top: 2px; /* ma byt 0px */
	  background-color: #eee;
	  color:  #000;
	  z-index: 999;
	}
}
@media (max-width: 768px) { /* mobile screen */
	#my_message22 {
		display:none;
		text-align: left;
	  padding: 5px 10px;
	  border-radius: 5px;
	  position: absolute;
	  top: 0px;
	  background-color: #eee;
	  color:  #000;
	  z-index: 999;
	}
}
#my_notif_close2 {
	text-decoration: underline;
    background: #eee;
    color: #000;
	font-size: 20px;
    font-weight: 500;
	padding-bottom: 5px;
}	

.blink_me {
  animation: blinker 5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

