
/* Validacni hlasky napr. nakupni proces, registrace, ... */
span.error {
    display: inline-block;
    font-size: 12px;
    color: #D00;
    padding-left: 10px;
    font-style: italic;
	
}

/* Validacni hlasky generovaneho formulare (tj. toho administrovaltelneho) */
.generated-form span.error 
{
	position: relative;
	top: 10px;	
	
	color: #ffffff;
	background: #de920f;
	font-size: 16px;
	padding: 10px;
	bottom: 59px;
	right: 0px;
	
}

.phone-number {
  width: 60% !important;
}

.conditions-agreement-wrapper > div 
{
  position: relative;
}

.conditions-agreement-wrapper span.error
{
  display: block;
  z-index: 25;
  height: 36px;
  width: auto;
  position: absolute;
  top: -60px;
  left: -130px;
  right: auto;
  bottom: auto;
  color: #ffffff;
  background: #f16d2c!important;
  font-size: 16px;
  padding: 7px;
  cursor: pointer;
  white-space: nowrap;
}
.conditions-agreement-wrapper span.error:after
{
  content: "";
  display: block;
  z-index: 25;
  position: absolute;
  top: 35px;
  left: 140px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #f16d2c transparent transparent transparent;
} 

@media only screen and ( max-width: 1220px ) 
{
  .conditions-agreement-wrapper span.error {
    left: -160px;
  }
  
  .conditions-agreement-wrapper span.error:after {
    left: 150px;
  }

}
@media only screen and (max-width: 900px) {
  .conditions-agreement-wrapper span.error {
    display: block;
    z-index: 25;
    height: auto;
    width: 290px;
    position: absolute;
    top: -100px;
    left: auto;
    right: auto;
    bottom: auto;
    color: #ffffff;
    background: #f16d2c;
    font-size: 16px;
    padding: 7px;
    cursor: pointer;
    white-space: normal;
  }
  .conditions-agreement-wrapper span.error:after {
    content: "";
    display: block;
    z-index: 25;
    position: absolute;
    top: 70px;
    left: 0px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #f16d2c transparent transparent transparent;
  }
}


