/*
 * Promobar 
 */
/*#52771B*/
/* promobar */
/*#7e3bd0*/
/*#d03bc4*/
/* media up to # */
/* media from # up */
.promobar {
  display: none;
  position: relative;
  height: 40px;
  color: #fff;
  -webkit-transition: all .5 ease;
  transition: all .5 ease;
  top: 0;
  left: 0;
  right: 0;
  background: #afbaaa;
  overflow: hidden;
  width: 100%;
  -webkit-animation: promobar 2s ease;
  animation: promobar 2s ease;
  display: none; }

.page-start .promobar {
  display: block; }

.promobar-closed {
  -webkit-animation: promo-slide-out 1s ease;
  animation: promo-slide-out 1s ease; }

@-webkit-keyframes promobar {
  0% {
    background: #afbaaa; }
  50% {
    background: #EE5A1C; }
  100% {
    background: #afbaaa; } }

@keyframes promobar {
  0% {
    background: #afbaaa; }
  50% {
    background: #EE5A1C; }
  100% {
    background: #afbaaa; } }

@-webkit-keyframes promo-slide-out {
  0% {
    background: #afbaaa; }
  100% {
    background: #EE5A1C; } }

@keyframes promo-slide-out {
  0% {
    background: #afbaaa; }
  100% {
    background: #EE5A1C; } }

.promobar-close {
  position: absolute;
  right: 20px;
  top: 7px;
  width: 30px;
  height: 30px;
  clear: both;
  cursor: pointer; }
  .promobar-close:after, .promobar-close:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 2px;
    border-radius: 3px;
    background-color: #fff;
    right: 14px; }
  .promobar-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .promobar-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.promobar-content {
  width: 960px;
  margin: 0 auto;
  text-align: center;
  padding-top: 7px;
  position: relative; }

.promobar-input {
  border-radius: 6px;
  border: none;
  padding: 1px 4px 1px 12px;
  height: 26px;
  overflow: visible;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0 8px;
  color: #aaa;
  -webkit-appearance: none;
  vertical-align: baseline; }

.promobar-button {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 6px;
  background: none;
  padding: 2px 10px 2px 10px;
  margin: 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none !important;
  font-size: 1.3rem;
  line-height: 2rem;
  vertical-align: top;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }
  .promobar-button:hover {
    color: #EE5A1C;
    border-color: #EE5A1C;
    background: none; }

/* Media */
@media (max-width: 775px) {
  .promobar-content {
    width: 100%; } }

@media (min-width: 665px) and (max-width: 775px) {
  .promobar-button {
    font-size: 1.1rem; } }
