/**
 * Feature Name: Forms CSS File
 * Version:			0.9  
 * Author:			web dev media UG
 * Author URI:		http://web-dev-media.de
 * Created on : 09.08.2016, 11:32:20
 */
.wrapper-form input[type="text"], .wrapper-form input[type="email"], .wrapper-form input[type="url"], .wrapper-form textarea {
    width: 100%;
    border-width: 0;
    border-style: solid;
    border-radius: 4px;
    color: #262626;
    background: #dadada;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1), inset 0 1px 3px 0 rgba(0, 0, 0, 0.7)
    }
.wrapper-form input {
    line-height: 50px;
    padding-left: 10px
    }
.wpcf7 .screen-reader-response {
    display: none
    }
.wpcf7-not-valid-tip {
    color: #f00
    }
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 7px
    }
.wpcf7-form-control-wrap.offers, .wpcf7-form-control-wrap.salutation, .wpcf7-form-control-wrap.contact {
    display: inline-block
    }
.offers .first, .salutation .first, .contact .first {
    margin-left: 10px
    }
.wpcf7-submit.btn {
    padding: 0 55px
    }
.wpcf7-list-item {
    margin-right: 25px
    }
.wpcf7-textarea {
    display: block;
    padding: 10px
    }
#form-contact .wpcf7-textarea, #form-coupon .wpcf7-textarea, #form-job .wpcf7-textarea {
    min-height: 227px
    }
#form-corporaterates .wpcf7-textarea {
    min-height: 313px
    }
#form-contact .wpcf7-textarea {
    min-height: 137px
    }
.preferred-contact {
    margin: 20px 0 38px;
    line-height: 50px
    }
.preferred-contact .wpcf7-form-control-wrap {
    margin-bottom: 0
    }
.body-mprivat input[type="submit"] {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 4px
    }
.body-metropol input[type="submit"], .body-mirabell input[type="submit"] {
    border: 0
    }
.note {
    margin-top: 20px;
    margin-bottom: 10px
    }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="url"], .wpcf7 textarea {
    box-shadow: none;
    border-radius: 0;
    border-width: 1px
    }
.wpcf7 .select2-container {
    border-width: 1px;
    border-style: solid
    }
.wpcf7 .select2-dropdown {
    margin-left: -1px;
    border-radius: 0
    }
.wpcf7 .select2-dropdown--below {
    margin-top: -2px
    }
.wpcf7 .select2-dropdown--below.select2-dropdown::before, .wpcf7 .select2-dropdown--below.select2-dropdown::after {
    content: none
    }
.wpcf7 *:focus {
    outline: 0
    }
/*
.wpcf7-list-item {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wpcf7-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.wpcf7-list-item-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

 On mouse-over, add a grey background color 
.wpcf7-list-item:hover input ~ .wpcf7-list-item-label {
  background-color: #ccc;
}

 When the radio button is checked, add a blue background 
.wpcf7-list-item input:checked ~ .wpcf7-list-item-label {
  background-color: #2196F3;
}

 Create the indicator (the dot/circle - hidden when not checked) 
.wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: none;
}

 Show the indicator (dot/circle) when checked 
.wpcf7-list-item input:checked ~ .wpcf7-list-item-label:after {
  display: block;
}

 Style the indicator (dot/circle) 
.wpcf7-list-item-label:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}*/