@import url(skin/pink.flag/css/fonts.css);

body {
}

.button {
    background-color: #ED2F2F;
    border: none;
    color: white;
	font-family: "LuloCleanBold";
    padding: 1px 1px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
	width: 180px !important;
	height: 40px !important;
}

.button:hover {
	background-color: #FF1717;
}

button {
	animation-duration: 1.5s;
	animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
  }

  to {
    margin-left: 0%;
  }
}