.wrapp {
	margin-top: 20px;
}
.wrapp h1 {
	font-size: 50px;
	font-weight: bold;
}
.left_text {
    color: #555555;
}
.right_text {

}
.logo {
    margin-top: 25px;
    margin-bottom: 25px;
}
.articleContent {
    color: #818181;
    font-size: 22px;
}
.sform {
	font-size: 18px;
}
.js-form-descriptor {
	width: 75%;
}
.js-form-name {
	width: 75%;
}
.js-form-email {
	width: 75%;
}
.js-form-amount {
	width: 50%;
}
.js-form-currency {
	width: 50%;
}
.js-form-date {
  width: 50%;
}
#descr {
	width: 50%;
}
.s-ticket_text {
    font-size: 25px;
    font-weight: bold;
    color: #555;
}
.spinner-wrapper {
    background-color: rgba(255,255,255,0.5);;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

/* Notifications & Loaders */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 17px 24px;
    background: rgba(247, 247, 247, 0.67);
    box-shadow: 0px 0px 1px rgba(0,0,0,0.46), 0px 1px 3px rgba(0,0,0,0.1);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999999;
}

.notification.notice {
    color: #FFF;
    margin: 0px;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.8), 0px 1px 4px rgba(0,0,0,0.06);
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    border-radius: 0px;
    text-align: center;
    background: #008AD0;
}

.notification.success {
    color: #FFF;
    margin: 0px;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.8), 0px 1px 4px rgba(0,0,0,0.06);
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    border-radius: 0px;
    text-align: center;
    background: #32b245;
}

.notification.error {
    color: #FFF;
    margin: 0px;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.8), 0px 1px 4px rgba(0,0,0,0.06);
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    border-radius: 0px;
    text-align: center;
    background: #D03D56;
}

.spinner {
  width: 40px;
  height: 40px;
  right: 50%;
  top: 50%;
  position: absolute;
  z-index: 999;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #578bea;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}