/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Navigation
# Content
## Custom Element
### Accordion
# Gravity Forms
# Footer
# Media - Max
# Media - Min
--------------------------------------------------------------*/
:root {
  --white: #fff;
  --black: #000;
  --espresso: #35271e;
  --coffee: #a48e79;
  --cream: #e6d3c6;
  --plush: #fbf5ef;
  --shadow: rgba(16, 24, 40, 0.05) 0px 6px 15px -2px;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
.screenreader-only {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px; 
  overflow:hidden;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.treefrog-custom-header em,
.treefrog-custom-header i {
  display: block;
  font-family: "EB Garamond", serif;
  font-style: italic;
  line-height: 1.3;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
#hide-header {
  -webkit-transition: top 0.4s ease-in-out;
  -o-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.btn{
  position: relative;
  display: inline-block;
  padding: 15px 20px 15px 20px;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  text-align: center;
  box-shadow: unset !important;
  text-decoration: unset !important;
  color: var(--plush)!important;
  background-color: var(--espresso);
  border: 2px solid var(--espresso);
  overflow: hidden;
  border-radius: 4px;

  &:hover,
  &:focus{
    color: var(--espresso)!important;
    background-color: var(--cream);
  }
}
.btn .icon{
  padding-left: var(--padding-left);
  padding-right: var(--padding-left);
}
.btn::before {
    content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255,255,255,0.3)
  );
  transform: rotate(-45deg);
  opacity: 0;
}

.btn:hover::before {
  transition: all 1.5s ease;
  opacity: 1;
  top: 100%;
  left: 100%;
}




.btn.btn-white{
  color: var(--espresso)!important;
  background-color: var(--plush);
  border-color: var(--plush);

  &:hover,
  &:focus{
    color: var(--plush)!important;
    background-color: var(--espresso);
  }
}
.btn.btn-transparent{
  border-color: var(--plush);
  color: var(--plush)!important;
  background-color: transparent;

  &:hover,
  &:focus{
    color: var(--plush)!important;
    background-color: var(--espresso);
  }
}
/*--------------------------------------------------------------
## Custom Element
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gravity forms
--------------------------------------------------------------*/
.gform_required_legend{
  display: none!important;
}
.gform-body .gform_fields {
  row-gap: 18px!important;
}
.gfield_required .gfield_required_asterisk{
  font-size: 16px;
  color: var(--espresso);
}
.gform-body label.gfield_label,
.gform-body legend.gfield_label{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--espresso);
}
.gform-body input[type="text"], .gform-body input[type="number"], .gform-body input[type="email"], .gform-body input[type="url"], .gform-body input[type="password"], .gform-body input[type="search"], .gform-body input[type="reset"], .gform-body input[type="tel"], .gform-body input[type="date"], .gform-body select, .gform-body textarea {
  text-align: left !important;
  line-height: normal !important;
  padding: 10px 15px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  border: 1px solid var(--cream) !important;
  box-shadow: none !important;
  height: unset !important;
  outline: none !important;
  border-radius: 6px !important;
  background-color: #fff !important;

  &:focus{
    border-color: var(--espresso)!important;
  }
}
.gform-theme.gform-theme--framework.gform_wrapper .button.gform_button[type="submit"]{
  position: relative;
  display: inline-block;
  padding: 15px 20px 15px 20px;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  text-align: center;
  box-shadow: unset !important;
  text-decoration: unset !important;
  color: var(--plush)!important;
  background-color: var(--espresso);
  border: 2px solid var(--espresso);
  overflow: hidden;
  border-radius: 4px;
  
  &:hover,
  &:focus{
    color: var(--espresso)!important;
    background-color: var(--cream);
  }
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--coffee);
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--coffee);
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--coffee);
}
:-moz-placeholder { /* Firefox 18- */
  color: var(--coffee);
}

.gform-theme.gform-theme--framework.gform_wrapper .button.gform_button[type="submit"]::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255,255,255,0.3)
  );
  transform: rotate(-45deg);
  opacity: 0;
}

.gform-theme.gform-theme--framework.gform_wrapper .button.gform_button[type="submit"]:hover::before {
  transition: all 1.5s ease;
  opacity: 1;
  top: 100%;
  left: 100%;
}
/*--------------------------------------------------------------
## Inputs: Checkbox + Radio
--------------------------------------------------------------
.gform-theme--framework .gchoice input[type="checkbox"], 
.gform-theme--framework .gchoice input[type="radio"] {
  opacity: 0!important;
  position: absolute;  
  height: 0;
  width: 0;
}
.gform-theme--framework .gchoice .gfield-choice-input{
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  border: 0!important;
}
.gform-theme--framework .gchoice input[type='checkbox'] + label,
.gform-theme--framework .gchoice input[type='radio'] + label {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  line-height: 23px;
}
.gform-theme--framework .gchoice input[type='checkbox'] + label:before,
.gform-theme--framework .gchoice input[type='checkbox'] + label:after,
.gform-theme--framework .gchoice input[type='radio'] + label:before,
.gform-theme--framework .gchoice input[type='radio'] + label:after {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: .2s;
  transition: .2s;
}
.gform-theme--framework .gchoice input[type='checkbox']:not(:checked) + label:after,
.gform-theme--framework .gchoice input[type='radio']:not(:checked) + label:after  {
  width: 23px;
  height: 23px;
  border: 3px solid #000;
  top: 0px;
}
.gform-theme--framework .gchoice input[type='radio']:not(:checked) + label:after,
.gform-theme--framework .gchoice input[type='radio']:checked + label:after  {
  border-radius: 50%;
}
.gform-theme--framework .gchoice input[type='checkbox']:checked + label:after,
.gform-theme--framework .gchoice input[type='radio']:checked + label:after {
  top: 0;
  width: 23px;
  height: 23px;
  border: 3px solid #000;
  background-color: #000;
  z-index: 0;
}
.gform-theme--framework .gchoice input[type="checkbox"] + label:before,
.gform-theme--framework .gchoice input[type="radio"] + label:before {
  font-family: 'Font Awesome 5 Free';
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  content: '\f00c'!important;
  position: absolute; 
  top: 1px;
  left: 5px;
  opacity: 0;
}
.gform-theme--framework .gchoice input[type='checkbox']:checked + label:before,
.gform-theme--framework .gchoice input[type='radio']:checked + label:before {
    opacity: 1;
}
.gform-theme--framework .gchoice label{
  margin-left: 0!important;
}

*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Media - MAX
@media only screen and (min-width: 769px) and (max-width: 992px) {}
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .treefrog-custom-header em,
  .treefrog-custom-header i {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Media - MIN
--------------------------------------------------------------*/
@media only screen and (min-width: 993px) {

  
}