@charset "UTF-8";

button.POPUPS{
    margin-left: 5%;
	border-radius: 50px;
    border-radius: -16px;
    width: calc(80%);
    height: 100%;
    background: rgb(43, 94, 202);
    font-size: 1.2em;
	font-weight:bold;
    color: rgb(255, 255, 255);
    border: none;
    box-shadow: 0 1px 2px grey;
}
button.POPUPS:hover{
	background: rgb(28, 71, 163);
	color: rgb(209, 209, 209);
	cursor:pointer;
	font-size: 1.15em;
	font-weight:bold;
	box-shadow:none;
	border:solid 1px rgb(240,240,240);
}
.click_urapage{
    position: absolute;
    width: 13px;
    height: 13px;
    background: rgb(200,200,200,0);
    top: 57px;
    left: 381px;
    cursor: pointer;
    border-radius: 100%;
}
.click_urapage:hover{
	animation: flash 3s linear infinite;
}
@keyframes flash {
	0%,35%,60%,100%{
	  opacity: 3;
	  background:#ffee0059;
	}
	25%{
	  opacity: 3;
	  background:#80ff0050;
	}
	50%{
	  opacity: 3;
	  background:#0090ea42;
	}
	75%{
	  opacity: 3;
	  background:#ff14914b;
	}
  }