/*
Theme Name: Litart
Theme URI: https://sinups.net
Author: Cojocari Andrei
Author URI: https://sinups.net
Description: Litartis a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
Version: 1.0
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: litart

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.form-style {
  padding: 30px 0;
  background-color: #fff;
  position: relative;
  min-height: 400px;
}
.form-style h4 {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
}
.form-style .form-view {
  position: relative;
  transition: opacity 0.3s, visibility 0.3s;
}
.form-style .form-is-sending {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.form-style .form-is-more {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.form-style.is-sending .form-view {
  opacity: 0;
  visibility: hidden;
}
.form-style.is-sending .form-is-sending {
  opacity: 1;
  visibility: visible;
}
.form-style.is-sending-complete .form-view {
  opacity: 0;
  visibility: hidden;
}
.form-style.is-sending-complete .form-is-more {
  opacity: 1;
  visibility: visible;
}

.form-group input[type="text"].rf-error, .form-group input[type="password"].rf-error, .form-group input[type="email"].rf-error, .form-group textarea.rf-error ,.form-group input[type="tel"].rf-error {
  border-color: #f04040;
}
.form-group textarea {
  height: 100px;
  padding: 10px;
  overflow: auto;
  resize: none;
}
.pa-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  margin: -25px 0 0 -25px;
  border: 3px solid #ebebeb;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: cssload-spin 1325ms infinite linear;
}
@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 59.6875em) {
  .form-style {
    padding: 30px 10%;
  }
}

.fatal {
	border:3px solid red;
}
img.border-image { 
border: 3px solid #eee;
padding:3px; 
margin:3px;
}