/*
Theme Name:	 PWC Divi Child
Theme URI:
Description: Divi Child Theme for Pete Williams Site
Author: Dom Goucher
Author URI: 
Template:	 Divi
Version:	 1.0.0
License:  
License URI:  
Tags:  
Text Domain: 
*/


/* Handles Infusionsoft pasted forms

	Requires Code Module to be given a Class of infusion-form */

div.infusion-form form {
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
color: rgb(10, 10, 10);
display: block;
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
font-size: 16px;
font-weight: normal;
line-height: 24px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
}

div.infusion-form form input{
 display: block;
 width: 100%;
 border-radius: 5px;
 font-size: 18px;
 padding: 0 10px;
margin-top: 10px;
 border: 0;
 font-family: 'Roboto', sans-serif;
 font-weight: 200;
 color: #c2c2c2
 }

[type='text'] {
 display: block;
 box-sizing: border-box;
 width: 100%;
 height: 2.4375rem;
 margin: 0 0 1rem;
 padding: 0.5rem;
 border: 1px solid #cacaca;
 border-radius: 0;
 background-color: #fefefe;
 box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
 font-family: inherit;
 font-size: 1rem;
 font-weight: normal;
 line-height: 1.5;
 color: #0a0a0a;
 transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none; 
}

[type='text']:focus {
 outline: none;
 border: 1px solid #8a8a8a;
 background-color: #fefefe;
 box-shadow: 0 0 5px #cacaca;
 transition: box-shadow 0.5s, border-color 0.25s ease-in-out; 

}

 div.infusion-form form input:active,
 div.infusion-form form input:focus{

 border: 0;
 }

 div.infusion-form form button{
 display: block;
 background: #dd3127;
 border: 0;
 color: #fff;
 font-size: 20px;
 text-transform: uppercase;
 padding: 15px 45px;
 text-align: center;
 border-radius: 10px;
border: 2px solid;
 margin: 10px auto;
 }

 div.infusion-form form button:hover {
 border: 2px solid transparent
}

/* Handles custom buttons
	
	Blue background, white text, Green on hover

	Requires a tag to be given a Class of pgr-offer-button (potentially inside a Code Module)  */
	
a.pgr-button-offer {
  display: inline-block;
  border-radius: 4px;
  background-color: #0082d8;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em !important;
  padding: 10px 20px 10px 20px;
  transition: all 0.4s;
  cursor: pointer;
}

a.pgr-button-offer:hover {
  background-color: #7cda24;
}