/*! dtbaker-themes - v1.0.2  *//*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 29px;
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1;
   font-style: italic;
}

h2 {
  font-size: 19px;
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  //margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  font-family: sans-serif;
  font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
body {
  line-height: 1.8em;
}
p {
  margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
# Page Widths
--------------------------------------------------------------*/
.inner-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (min-width: 37.5em) {
  .inner-wrap {
    padding: 0 40px;
  }
}
.pastel_page_option_width_full #page_inner_wrap {
  max-width: 100%;
  padding: 0;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
/** this sets the sticky footer
 https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css
 */
html {
  height: 100%;
}
body {
  height: 100%;
  /* 1, 3 */
}
#page {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#page > header,
#page > footer {
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  /* 2 */
}
#page > #header-content,
#page > main {
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0;
  width: 100%;
}
#page > #header-content:after,
#page > main:after {
  content: '\00a0';
  /* &nbsp; */
  display: block;
  margin-top: 1.5em;
  height: 0px;
  visibility: hidden;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  //margin: 0 0 1.5em 3em;
  line-height: 1.8em;
  word-wrap: break-word;
}
.entry-title {
  word-wrap: break-word;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}
table th {
  font-weight: 700;
  padding: 9px 12px;
}
table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
}
table.no-border th,
table.no-border td {
  border: 0;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  background: #f6f4f5;
  font-family: inherit;
  line-height: 1;
  padding: .6em 2em .6em;
  text-transform: uppercase;
  transition: background-color 500ms linear;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #d5d3d4;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  background-color: #f5f4f4;
  border-radius: 3px;
  padding: 12px 9px;
  border: 1px solid #f0f0f0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}
/*--------------------------------------------------------------
# Page Background
--------------------------------------------------------------*/
#page {
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.ccc_header_multiple #page {
  background-position: 0 0, 100% 0;
  background-size: auto, auto;
  background-repeat: no-repeat;
}
/*--------------------------------------------------------------
# Header & Logo
--------------------------------------------------------------*/
.site-header {
  text-align: left;
  position: relative;
  background: url(../img/bg_circles.png) no-repeat center top;
}
.ccc_header_ .site-header,
.ccc_header_none .site-header {
  background: none;
}
.site-header #header_bg_image {
  background: url(../img/header_grass3.png) repeat-x 0 0;
  height: 53px;
}
.ccc_header_headertreedrawnpng .site-header #header_bg_image {
  background: url(../img/header_grass2.png) no-repeat 0 0;
}
.site-header .site-branding {
  font-size: 16px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 37.5em) {
  .site-header .site-branding {
    text-align: left;
  }
}
.site-header .site-branding img {
  vertical-align: middle;
}
.site-header .site-branding .site-title {
  vertical-align: middle;
  display: inline-block;
}
.site-header .site-branding .site-title div {
  padding: 0;
  margin: 0;
  line-height: 1;
}
.site-header .site-branding .site-title div a {
  text-decoration: none;
  display: inline-block;
}
.site-header .site-branding .site-title p {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 37.5em) {
  .site-header .site-branding:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
}
.site-header #header {
  position: relative;
  z-index: 5;
  height: 260px;
}
.site-header #header #cloud1_wrap,
.site-header #header #cloud2_wrap,
.site-header #header #cloudshop_wrap {
  display: none;
}
@media screen and (min-width: 37.5em) {
  .site-header #header #cloudshop_wrap {
    display: block;
    background: url(../img/cloud1.png) no-repeat top right;
    position: absolute;
    z-index: 8;
    /* above menu and decal */
    width: 168px;
    height: 122px;
    left: 361px;
    top: 0;
  }
  .site-header #header #cloudshop_wrap > div {
    height: 50px;
    margin-top: 58px;
    color: #037b8d;
    font-size: 0.6em;
    text-align: center;
    line-height: 1.2em;
    vertical-align: middle;
  }
  .site-header #header #cloudshop_wrap > div span.div {
    color: #dcd2c2;
    padding: 0 3px;
  }
  .site-header #header #cloudshop_wrap > div a {
    color: #037b8d;
  }
  .site-header #header #cloud1_wrap {
    display: block;
    background: url(../img/cloud_sml.png) no-repeat top right;
    position: absolute;
    z-index: 8;
    /* above menu and decal */
    width: 103px;
    height: 107px;
    left: 529px;
    top: 0;
  }
  .site-header #header #cloud1_wrap > div {
    margin-top: 66px;
    height: 70px;
    color: #90795f;
    font-size: 0.5em;
    text-align: center;
    line-height: 1.1em;
    text-transform: uppercase;
  }
  .site-header #header #cloud2_wrap {
    display: block;
    background: url(../img/cloud1.png) no-repeat top right;
    position: absolute;
    z-index: 8;
    /* above menu and decal */
    width: 168px;
    height: 122px;
    top: -26px;
    left: 615px;
  }
  .site-header #header #cloud2_wrap > div {
    height: 50px;
    color: #037b8d;
    margin-top: 60px;
    font-size: 0.8em;
    text-align: center;
    line-height: normal;
  }
}
@media screen and (min-width: 37.5em) {
  .site-header #main_menu_decal {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center bottom;
    background-repeat: no-repeat;
	background-image: url(../img/header_decal.png);
  }
  .ccc_header_headertreedrawnpng .site-header #main_menu_decal {
    background-position: center top;
  }
}
body.logo_pos_def .site-header,
body.logo_pos_small .site-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
body.logo_pos_def .site-header .site-branding,
body.logo_pos_small .site-header .site-branding {
  display: block;
  position: absolute;
  top: 0;
  height: 60px;
  left: 31px;
  vertical-align: middle;
}
body.home.logo_pos_def .site-header,
body.logo_pos_large .site-header {
  text-align: center;
  margin-bottom: 0;
}
body.home.logo_pos_def .site-header .site-branding,
body.logo_pos_large .site-header .site-branding {
  padding: 50px 0;
  position: relative;
  top: auto;
  left: auto;
  height: auto;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
  text-decoration: none;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#main_menu_wrap #main_menu {
  position: relative;
  min-height: 50px;
}
#main_menu_wrap #main_menu:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 5px;
  z-index: 3;
}
#main_menu_wrap #main_menu .main-navigation {
  font-size: 18px;
  clear: both;
  display: block;
  width: 100%;
  padding: 4px 0 0px 9px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 37.5em) {
  #main_menu_wrap #main_menu .main-navigation {
    position: absolute;
  }
}
#main_menu_wrap #main_menu .main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
@media screen and (min-width: 37.5em) {
  #main_menu_wrap #main_menu .main-navigation ul {
    display: block;
  }
}
.ccc_header_ #main_menu_wrap #main_menu .main-navigation ul,
.ccc_header_none #main_menu_wrap #main_menu .main-navigation ul {
  text-align: center;
}
#main_menu_wrap #main_menu .main-navigation ul ul {
  text-transform: none;
}
#main_menu_wrap #main_menu .main-navigation.toggled ul {
  display: block;
}
.main-navigation > div > ul > li {
  position: relative;
}
.main-navigation > div > ul > li:after {
  content: '|';
  position: absolute;
  top: 5px;
  right: -5px;
}
.main-navigation > div > ul > li:last-child:after {
  display: none;
}
.main-navigation li {
  display: block;
  position: relative;
}
@media screen and (min-width: 37.5em) {
  .main-navigation li {
    display: inline-block;
  }
}
.main-navigation a {
  display: block;
  text-decoration: none;
  padding: 7px 15px;
}
.main-navigation ul ul {
  position: relative;
  margin: 0 10px 0;
  z-index: 100;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/*
.main-navigation.toggled ul ul{
  display:none;
}
.main-navigation.toggled ul li.focus > ul {
  display:block;
}*/
@media screen and (min-width: 37.5em) {
  .main-navigation ul ul {
    float: left;
    position: absolute;
    top: 41px;
    left: -999em;
    text-align: left;
    margin: 0 0 0 -6px;
  }
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li {
  border-bottom: 1px solid #EFEFEF;
  display: block;
}
.main-navigation ul ul li a {
  padding: 12px 20px;
  white-space: nowrap;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
/* Small menu. */
.menu-toggle {
  display: block;
}
.menu-toggle {
  margin: 0 auto 30px;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.elementor-widget-sidebar .widget,
aside.widget-area .widget {
  margin: 10px;
  padding: 0;
}
@media screen and (min-width: 37.5em) {
  .elementor-widget-sidebar .widget,
  aside.widget-area .widget {
    margin: 40px 20px 0;
  }
}
.elementor-widget-sidebar .widget .widget-title,
aside.widget-area .widget .widget-title {
  background: #efecdb url(../img/sidebar_title_bg.png) right bottom no-repeat;
  padding: 6px 15px 3px;
  border-radius: 7px;
}
@media screen and (min-width: 37.5em) {
  .with-right-sidebar aside.widget-area .widget {
    margin: 40px 40px 0 0;
  }
  .with-left-sidebar aside.widget-area .widget {
    margin: 40px 0px 0 40px;
  }
}
/* Make sure select elements fit in widgets. */
.widget input,
.widget select {
  max-width: 100%;
}
.widget a {
  /*font-weight: bold;*/
  text-decoration: none;
}
.widget p {
  margin: 0 0 10px;
}
.widget a:hover,
.widget a:focus,
.widget a:active {
  text-decoration: underline;
}
.widget ul {
  margin: 0;
  /*0 6px 0 10px !important;*/
  padding: 0;
  list-style: none;
}
.widget ul ul {
  margin-left: 1em;
}
.widget ul li {
  margin: 0px;
  padding: 0;
  line-height: inherit;
}
.widget ul li a {
  padding: 12px 5px;
  display: block;
}
.widget_content > ul > li > a,
.widget div > ul > li ul.children a,
.widget ul > li ul.children a,
.widget div > ul > li.has-children > a,
.widget ul > li.has-children > a {
  display: block;
  position: relative;
}
.widget ul .widget ul li a,
.widget ul li a:link,
.widget ul li a:visited,
.widget-title {
  text-decoration: none;
}
.widget ul li a:hover {
  /*color:#9a7138;*/
}
/* Calendar Widget */
#calendar_wrap {
  padding-left: 7px;
}
.widget_calendar #wp-calendar {
  width: 95%;
  text-align: center;
}
.widget_calendar #wp-calendar caption,
.widget_calendar #wp-calendar td,
.widget_calendar #wp-calendar th {
  text-align: center;
}
.widget_calendar #wp-calendar caption {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 0 3px 0;
  text-transform: uppercase;
}
.widget_calendar #wp-calendar th {
  border-top: 1px solid #edebdf;
  border-bottom: 1px solid #edebdf;
  font-weight: bold;
}
.widget_calendar #wp-calendar tfoot td {
  border-top: 1px solid #edebdf;
  border-bottom: 1px solid #edebdf;
}
.widget_calendar a {
  font-weight: bold;
  text-decoration: underline;
}
/* social */
.widget_social_icons-description span {
  width: auto;
}
.widget_social_icons a.webicon:hover,
.widget_social_icons a.webicon {
  margin: 5px;
}
p.widget_social_icons_size_large {
  margin: 0 -6px;
}
/*categories*/
.widget.widget_recent_entries ul li {
  padding-bottom: 5px;
}
.widget_archive li,
.widget_categories li {
  position: relative;
}
.widget_archive li span,
.widget_categories li span {
  /*margin:-21px 5px 0 0;*/
  position: absolute;
  right: 9px;
  top: 12px;
}
.widget_rss li {
  margin: 0 5px 10px !important;
}
.widget_rss li .rsswidget {
  display: block !important;
  font-weight: bold;
  padding: 5px !important;
}
.widget_rss li .rss-date {
  font-style: italic;
}
.widget_rss li span,
.widget_rss li div,
.widget_rss li cite {
  padding: 5px;
}
.widget_recent_entries li a {
  /*font-weight: bold;*/
}
.widget_recent_entries li > span {
  display: block;
  padding: 0px 0 5px 10px;
  font-style: italic;
  font-size: 0.8em;
}
.widget_tag_cloud .tagcloud a {
  display: inline-block;
  text-transform: uppercase;
  padding: 0 10px 10px;
}
.widget_rss li,
.widget_recent_comments li {
  padding: 10px 0 !important;
}
.widget_rss li a,
.widget_recent_comments li a {
  display: inline !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}
#footer_widgets {
  padding: 0 0 40px;
}
#footer_widgets .widget-columns {
  padding: 0 10px;
}
#footer_widgets .widget-columns > section.widget {
  margin-bottom: 20px;
}
@media screen and (min-width: 37.5em) {
  #footer_widgets .widget-columns {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  #footer_widgets .widget-columns > section.widget {
    width: 2%;
    display: table-cell;
    vertical-align: top;
    padding: 0 45px 0 0;
  }
}
#footer_widgets .widget-title {
  text-align: left;
}
#footer_widgets ul.menu li a:before {
  content: '>';
  left: 0;
  padding-right: 9px;
  top: 3px;
  font-size: 0.8em;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media screen and (min-width: 37.5em) {
  .site-content.with-right-sidebar .content-area {
    float: left;
    margin: 0 -30.4% 0 0;
    width: 100%;
  }
  .site-content.with-right-sidebar .site-main {
    margin: 0 34% 0 0;
  }
  .site-content.with-right-sidebar .widget-area {
    float: right;
    overflow: hidden;
    width: 30.4%;
  }
  .site-content.with-left-sidebar .content-area {
    float: right;
    margin: 0 0 0 -30.4%;
    width: 100%;
  }
  .site-content.with-left-sidebar .site-main {
    margin: 0 0 0 34%;
  }
  .site-content.with-left-sidebar .widget-area {
    float: left;
    overflow: hidden;
    width: 30.4%;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer#footer {
  padding: 70px 0 20px;
  color: #686868;
  margin-bottom: 30px;
}
footer#footer input {
  background: #FFF;
  border: 1px solid #f0f0f0;
  padding: 8px;
}
footer#footer .site-info {
  text-align: center;
  font-size: 0.8em;
}
footer#footer .widget_nav_menu ul.menu {
  margin-top: -7px;
}
footer#footer .dtbaker-social-icons-widget ul.dtbaker-social-icons-list {
  margin-top: -7px;
}
footer#footer .wpcf7-form {
  margin-top: 5px;
}
footer#footer .widget ul li a {
  padding: 7px 5px;
}
/* bg */
#footer {
  text-align: center;
  font-size: 0.8em;
  padding: 40px;
}
.footer_image_tree #grass {
  position: relative;
  clear: both;
  background: url(../img/grass_tile.png) bottom repeat-x;
}
.footer_image_tree #singrass {
  position: relative;
  clear: both;
  background: url(../img/grass_tile.png) bottom repeat-x;
}
.footer_image_tree #grass > div {
  background: url(../img/footer_design.png) no-repeat center bottom;
 height: 220px;
 margin-top:-10px;
}
.footer_image_tree #singrass > div {
  background: url(../img/footer_no.png) no-repeat center bottom;
 height: 220px;
 margin-top:-10px;
}
.footer_image_kids #grass {
  position: relative;
  clear: both;
  background: url(../img/grass_tile.png) bottom repeat-x;
}
.footer_image_kids #grass > div {
  background: url(../img/footer-drawn.png) no-repeat center top;
  height: 220px;
}
.footer_image_grass #grass {
  position: relative;
  height: 50px;
  clear: both;
  background: url(../img/grass_tile.png) bottom repeat-x;
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Blog Post Summary
--------------------------------------------------------------*/
article.blog.sticky .blog-title h2 :before {
  content: "\f006";
  font: normal normal normal 14px/1 FontAwesome;
  padding-right: 7px;
}
article.blog .entry-header {
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
article.blog .entry-header .blog-title {
  padding: 6px;
}
article.blog .entry-header .blog-widget {
  position: absolute;
  right: 20px;
  width: 90px;
  height: 124px;
  padding: 13px 10px 13px;
  text-align: left;
  z-index: 2;
}
@media screen and (max-width: 37.5em) {
  article.blog .entry-header .blog-widget {
    display: none;
  }
}
article.blog .entry-header .blog-widget:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
article.blog .entry-header .blog-widget .blog-widget-inner {
  display: inline-block;
  vertical-align: middle;
}
article.blog .entry-header .blog-widget a {
  display: table;
  clear: both;
  margin: 6px 0 11px;
  width: 100%;
  text-decoration: none;
}
article.blog .entry-header .blog-widget a i,
article.blog .entry-header .blog-widget a span {
  display: table-cell;
  width: 50%;
  text-align: center;
}
article.blog .entry-header .blog-widget a i {
  font-size: 1.4em;
  color: #656565;
  transition: color 0.3s;
}
article.blog .entry-header .blog-widget a:hover i {
  color: #434343;
}
article.blog .entry-header .blog-widget a.comment-count span {
  font-size: 1.2em;
}
article.blog .entry-header .blog-widget a.share-button span {
  font-size: 0.8em;
}
article.blog .entry-header .blog-widget .share-buttons {
  position: absolute;
  background: rgba(255, 255, 255, 0.58);
  padding: 4px;
  width: 135px;
  right: 100%;
  top: 0;
  display: none;
}
article.blog .entry-header .blog-widget .share-buttons a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin: 0 3px 3px 3px;
  font-size: 11px;
  line-height: 16px;
  width: 32px;
  height: 32px;
  text-indent: -999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
article.blog .entry-header .blog-widget .share-buttons a.share-facebook {
  background-image: url("../img/facebook_32.png");
}
article.blog .entry-header .blog-widget .share-buttons a.share-twitter {
  background-image: url("../img/twitter_32.png");
}
article.blog .entry-header .blog-widget .share-buttons a.share-google {
  background-image: url("../img/googleplus_32.png");
}
article.blog .entry-header .blog-widget .share-buttons a.share-pinterest {
  background-image: url("../img/pinterest_32.png");
}
article.blog .entry-header .blog-widget .share-buttons a.share-linkedin {
  background-image: url("../img/linkedin_32.png");
}
article.blog .entry-header .blog-widget .share-buttons a.share-email {
  background-image: url("../img/email_32.png");
}
article.blog .entry-header .blog-widget .share-clicked .share-buttons {
  display: block;
}
article.blog .entry-header .blog-title {
  color: #000;
}
article.blog .entry-header .blog-title a.time-link {
  text-decoration: none;
}
article.blog .entry-header .blog-title a {
  color: inherit;
}
article.blog .entry-header .blog-title .entry-title {
  margin: 0;
  padding: 13px 0 0 0;
  color: #037b8d;
}
article.blog .entry-header .blog-title .entry-title a {
  color: #037b8d;
  text-decoration: none;
}
article.blog .entry-header .entry-meta {
  display: block;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 37.5em) {
  article.blog .entry-header .entry-meta {
    margin: 9px 37px 0;
  }
}
article.blog .entry-content {
  margin: 0;
}
article.blog .blog-title {
  padding: 20px 10px 20px;
}
@media screen and (min-width: 37.5em) {
  article.blog .blog-title {
    padding: 40px 10px 25px;
  }
}
article.blog.has-post-thumbnail .blog-widget {
  position: absolute;
  right: 20px;
  width: 90px;
  padding: 13px 10px 3px;
  text-align: left;
  height: auto;
  z-index: 2;
}
article.blog.has-post-thumbnail .blog-widget:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
}
@media screen and (min-width: 37.5em) {
}
article.blog.has-post-thumbnail .entry-meta-wrap {
  position: relative;
  display: inline-block;
}
article.blog.has-post-thumbnail .entry-meta-wrap:before {
  content: '';
  position: absolute;
  border-top: 1px solid #efecdb;
  right: 100%;
  margin-right: 10px;
  top: 13px;
  width: 1000px;
}
article.blog.has-post-thumbnail .entry-meta-wrap:after {
  content: '';
  position: absolute;
  border-top: 1px solid #efecdb;
  left: 100%;
  margin-left: 10px;
  top: 13px;
  width: 1000px;
}
article.blog.has-post-thumbnail.ccc_featured_image_style_hide .blog-image {
  display: none;
}
article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-image img,
article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-image img,
article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-image img {
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 37.5em) {
  article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-title,
  article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-title,
  article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
  }
  article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-title:before,
  article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-title:before,
  article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-title:before {
    display: block;
    content: '';
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    bottom: -30px;
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
    z-index: 1;
  }
  article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-title:after,
  article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-title:after,
  article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-title:after {
    display: block;
    content: '';
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    bottom: -30px;
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
    z-index: 1;
  }
}
article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-title h1,
article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-title h1,
article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-title h1,
article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-title h2,
article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-title h2,
article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-title h2,
article.blog.blog-summary.has-post-thumbnail.ccc_featured_image_style_fancy-hide-single .entry-header .blog-title div,
article.blog.blog-single.has-post-thumbnail.ccc_featured_image_style_fancy-hide-summary .entry-header .blog-title div,
article.blog.has-post-thumbnail.ccc_featured_image_style_fancy .entry-header .blog-title div {
  z-index: 2;
  position: relative;
}
article.blog .post-details {
  border-bottom: 1px solid #EFEFEF;
  padding: 12px 1.5em;
}
article.blog .edit-link {
  padding: 1.5em;
  display: inline-block;
}
article.blog-summary {
  position: relative;
  margin-bottom: 60px;
}
article.blog-summary.ccc_featured_image_style_normal-hide-summary .blog-image,
article.blog-summary.ccc_featured_image_style_fancy-hide-summary .blog-image {
  display: none;
}
article.blog-summary .entry-title {
  font-size: 24px;
}
article.blog-summary .entry-content {
  padding: 0;
  line-height: 1.6em;
}
article.blog-summary .entry-footer {
  display: none;
}
article.blog-summary .blog_button {
  text-align: center;
  width: 100%;
}
article.blog-summary .blog_button a {
  display: inline-block;
  border: 1px solid #e5e2cf;
  background: #f7f4e5;
  padding: 10px 16px;
  border-radius: 5px;
  color: #e40019;
  text-decoration: none;
  line-height: 1;
}
article.blog-single .entry-content {
  margin-top: 40px;
}
article.blog-single.ccc_featured_image_style_fancy-hide-single .blog-image,
article.blog-single.ccc_featured_image_style_normal-hide-single .blog-image {
  display: none;
}
/*--------------------------------------------------------------
## Blog Columns
--------------------------------------------------------------*/
.blog_posts_2 .blog.blog-summary,
.ccc_post_option_columns_2 .blog.blog-summary {
  width: 48%;
  margin-bottom: 5%;
  display: inline-block;
  vertical-align: top;
  margin-right: 2%;
}
.blog_posts_2 .blog.blog-summary .entry-content,
.ccc_post_option_columns_2 .blog.blog-summary .entry-content {
  min-height: 216px;
}
.blog_posts_2 .blog.blog-summary:nth-child(even),
.ccc_post_option_columns_2 .blog.blog-summary:nth-child(even) {
  margin-right: 0;
}
@media only screen and (max-width: 480px) {
  .blog_posts_2 .blog.blog-summary,
  .ccc_post_option_columns_2 .blog.blog-summary {
    width: auto;
    display: block;
    max-width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .blog_posts_2 .blog.blog-summary .blog-title,
  .ccc_post_option_columns_2 .blog.blog-summary .blog-title {
    position: relative !important;
  }
  .blog_posts_2 .blog.blog-summary .blog-title:before,
  .ccc_post_option_columns_2 .blog.blog-summary .blog-title:before,
  .blog_posts_2 .blog.blog-summary .blog-title:after,
  .ccc_post_option_columns_2 .blog.blog-summary .blog-title:after {
    display: none !important;
  }
}
.blog_posts_3 .blog.blog-summary,
.ccc_post_option_columns_3 .blog.blog-summary {
  width: 31.5%;
  margin-bottom: 3%;
  display: inline-block;
  vertical-align: top;
  margin-right: 2%;
}
.blog_posts_3 .blog.blog-summary .entry-content,
.ccc_post_option_columns_3 .blog.blog-summary .entry-content {
  min-height: 216px;
}
.blog_posts_3 .blog.blog-summary:nth-child(3n),
.ccc_post_option_columns_3 .blog.blog-summary:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 480px) {
  .blog_posts_3 .blog.blog-summary,
  .ccc_post_option_columns_3 .blog.blog-summary {
    width: auto;
    display: block;
    max-width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .blog_posts_3 .blog.blog-summary .blog-title,
  .ccc_post_option_columns_3 .blog.blog-summary .blog-title {
    position: relative !important;
  }
  .blog_posts_3 .blog.blog-summary .blog-title:before,
  .ccc_post_option_columns_3 .blog.blog-summary .blog-title:before,
  .blog_posts_3 .blog.blog-summary .blog-title:after,
  .ccc_post_option_columns_3 .blog.blog-summary .blog-title:after {
    display: none !important;
  }
}
.blog-summary .blog-widget {
  display: none;
}
.blog_posts[data-output="date"] .blog-image,
.blog_posts[data-output="date"] .blog_button {
  display: none;
}
.blog_posts_1 .blog.blog-summary {
  border-top: 1px solid #efecdb;
  margin-right: 0 !important;
  width: 100% !important;
}
.blog_posts_1 .blog.blog-summary .entry-meta-wrap:after,
.blog_posts_1 .blog.blog-summary .entry-meta-wrap:before {
  display: none;
}
.blog_posts_1 .blog.blog-summary p {
  padding: 0;
  margin: 7px 0 0;
}
.blog_posts_1 .blog.blog-summary .entry-content {
  min-height: auto;
}
.blog_posts_2 .blog.blog-summary:nth-child(even) {
  margin-right: 0 !important;
}
.blog_posts_2 .blog.blog-summary:nth-child(3n) {
  margin-right: 2% !important;
}
.blog_posts_3 .blog.blog-summary:nth-child(even) {
  margin-right: 2% !important;
}
.blog_posts_3 .blog.blog-summary:nth-child(3n) {
  margin-right: 0 !important;
}
/*--------------------------------------------------------------
## Post Navigation
--------------------------------------------------------------*/
.comment-navigation,
.posts-navigation,
.post-navigation {
  padding: 1.5em;
  margin: 0 0 1.5em 90px;
}
.comment-navigation .nav-previous a,
.posts-navigation .nav-previous a,
.post-navigation .nav-previous a {
  text-decoration: none;
}
.comment-navigation .nav-previous a:before,
.posts-navigation .nav-previous a:before,
.post-navigation .nav-previous a:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f060";
  padding-right: 10px;
}
.comment-navigation .nav-next a,
.posts-navigation .nav-next a,
.post-navigation .nav-next a {
  text-decoration: none;
}
.comment-navigation .nav-next a:after,
.posts-navigation .nav-next a:after,
.post-navigation .nav-next a:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f061";
  padding-left: 10px;
}
.page-links {
  position: relative;
  text-align: center;
}
.page-links .page-links-inner {
  padding: 1.5em;
  margin: 0 auto 1.5em auto;
  display: inline-block;
}
.page-links .page-links-inner span {
  display: inline-block;
  padding: 5px 8px;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#header-content-inner {
  margin-top: 40px;
}
.content-area {
  padding: 10px;
}
@media screen and (min-width: 37.5em) {
  .content-area {
    padding: 45px;
  }
}
.index-wrapper:after {
  content: '';
  display: table;
  clear: both;
}
/*--------------------------------------------------------------
## Page Title
--------------------------------------------------------------*/
.ccc_page_option_title_hide .page > .entry-header {
  display: none;
}
.ccc_page_option_title_hide .blog-single > .entry-header > .blog-title {
  display: none;
}
.ccc_page_option_title_hide div.product .product_title {
  display: none;
}
.ccc_page_option_title_hide #main > .page-header > h1.page-title {
  display: none;
}
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.inner-content-width {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom:0px;
}
.letra {
	
	margin-right: auto;
	margin-left: 20px;
	margin-top: 30px;
	padding-bottom:0px;
	float: left;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 1.5em;
	text-align: left;	
	padding-left:50px;
}
.letra_cuerpo{
	
	height:300px; 
	overflow: auto;	
}
	
.letra_foto {
  max-width: 290px;
  margin-right: 30px;
  margin-left: auto;
  margin-top: 30px;
  padding-bottom:0px;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  float: right;
}
.ccc_page_option_width_full #main-content {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
#comments {
  padding: 0 0 1.5em;
}
#comments section.comments-list article.pingback.bypostauthor .comment-wrap,
#comments section.comments-list article.comment.bypostauthor .comment-wrap {
  background: #f5f3f4;
}
#comments section.comments-list article.pingback .comment-meta,
#comments section.comments-list article.comment .comment-meta {
  position: absolute;
  width: 90px;
  text-align: center;
}
#comments section.comments-list article.pingback .comment-meta .author-date h4.comment-author,
#comments section.comments-list article.comment .comment-meta .author-date h4.comment-author {
  margin: 0;
  padding: 10px 0 5px 0;
  font-size: 16px;
  font-weight: normal;
  word-wrap: break-word;
}
#comments section.comments-list article.pingback .comment-meta .author-date h4.comment-author a,
#comments section.comments-list article.comment .comment-meta .author-date h4.comment-author a {
  text-decoration: none;
}
#comments section.comments-list article.pingback .comment-meta .author-date a.comment-edit-link,
#comments section.comments-list article.comment .comment-meta .author-date a.comment-edit-link {
  font-size: 0.6em;
  text-decoration: none;
}
#comments section.comments-list article.pingback .comment-meta figure,
#comments section.comments-list article.comment .comment-meta figure {
  margin: 0;
}
#comments section.comments-list article.pingback .comment-wrap,
#comments section.comments-list article.comment .comment-wrap {
  border: 1px solid #f0f0f0;
  padding: 1.5em;
  margin: 0 0 1.5em 74px;
}
@media screen and (min-width: 480px) {
  #comments section.comments-list article.pingback .comment-wrap,
  #comments section.comments-list article.comment .comment-wrap {
    margin: 0 0 1.5em 105px;
  }
}
@media screen and (min-width: 480px) {
  #comments section.comments-list article.pingback section.child-comments,
  #comments section.comments-list article.comment section.child-comments {
    padding-left: 23px;
  }
}
#comments #respond {
  border: 1px solid #f0f0f0;
  padding: 1.5em;
  margin: 0 0 1.5em;
}
#comments #respond .comment-notes {
  font-size: 0.8em;
}
#comments #respond label {
  width: 100px;
  display: inline-block;
  vertical-align: top;
}
#comments #respond textarea {
  width: calc(100% - 110px);
}
@media screen and (max-width: 404px) {
  #comments #respond textarea {
    width: 100%;
  }
}
#comments #respond input[type="text"],
#comments #respond input[type="email"],
#comments #respond input[type="url"] {
  max-width: 100%;
}
#comments #respond .form-submit {
  margin-left: 103px;
}
.no-comments {
  text-align: center;
  padding: 10px;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 1em 0;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
/*--------------------------------------------------------------
# Plugin CSS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Elementor Tweaks
--------------------------------------------------------------*/
.elementor-element .elementor-icon-box-content .elementor-icon-box-title a {
  color: inherit;
}
.elementor-image-gallery figure figcaption {
  background-color: #fdf5f5;
  padding: 5px;
}
.elementor-widget-container {
  padding-top: 1px;
}
.elementor-editor-active .elementor-widget-container {
  min-height: 50px;
}
.elementor-widget-icon-box.elementor-view-default.elementor-position-left .elementor-widget-container {
  display: inline-block;
}
/*--------------------------------------------------------------
  ## Instagram Widgets
  --------------------------------------------------------------*/
ul.instagram-pics {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
ul.instagram-pics li {
  display: inline-block;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 80px;
  width: 33%;
}
ul.instagram-pics li a {
  border: 0 !important;
}
ul.instagram-pics li img {
  max-width: 100%;
  height: auto;
}
.null-instagram-feed p {
  display: none;
}
/*--------------------------------------------------------------
## Social Icons Widget
--------------------------------------------------------------*/
.dtbaker-social-icons-widget {
  text-align: center;
}
.dtbaker-social-icons-widget ul {
  text-align: center;
}
.dtbaker-social-icons-widget ul li.dtbaker-social_icons-list__item {
  text-align: center;
}
.dtbaker-social-icons-widget ul li.dtbaker-social_icons-list__item a {
  border: 0 !important;
}
.dtbaker-social-icons-widget ul li.dtbaker-social_icons-list__item i {
  margin: 2px;
}
.dtbaker-social-icons-widget ul li.dtbaker-social_icons-list__item i a {
  border: 0;
  padding: 4px 1px;
}
/*--------------------------------------------------------------
## Contact Form 7
--------------------------------------------------------------*/
div.wpcf7 {
  margin: 0;
  padding: 0;
  line-height: 0.8em;
}
div.wpcf7 p {
  line-height: 0.8em;
}
div.wpcf7 input.wpcf7-text,
div.wpcf7 textarea {
  display: inline-block;
  font-size: 1em;
}
div.wpcf7 input,
div.wpcf7 textarea {
  max-width: 100%;
}
div.wpcf7 textarea {
  height: 100px;
}
div.wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 15px;
  border: 1px solid #FBEED5;
  border-radius: 3px;
}
div.wpcf7-mail-sent-ok {
  background: #DFF0D8;
  color: #468847;
}
div.wpcf7-mail-sent-ng {
  background: #F2DEDE;
  color: #B94A48;
}
div.wpcf7-spam-blocked {
  background: #F2DEDE;
  color: #B94A48;
}
div.wpcf7-validation-errors {
  background: #FCF8E3;
  color: #C09853;
}
span.wpcf7-form-control-wrap {
  position: relative;
}
span.wpcf7-not-valid-tip {
  color: #B94A48;
  display: block;
  font-size: 1em;
  left: 0;
  margin: 5px 0 10px;
  padding: 0;
  position: relative;
  top: 0;
  z-index: 100;
}
span.wpcf7-not-valid-tip-no-ajax {
  color: #FF0000;
  display: block;
  font-size: 1em;
}
span.wpcf7-list-item {
  display: block;
  margin-left: 0.5em;
  width: auto;
}
.wpcf7-display-none {
  display: none;
}
div.wpcf7 img.ajax-loader {
  border: medium none;
  margin-left: 4px;
  vertical-align: middle;
}
div.wpcf7 .watermark {
  color: #888888;
}
div.wpcf7 input.wpcf7-not-valid,
div.wpcf7 textarea.wpcf7-not-valid {
  border: 1px solid #B94A48;
}
div.wpcf7 input.wpcf7-submit {
  cursor: pointer;
}
#footer div.wpcf7 input.wpcf7-submit {
  padding: 10px 20px;
}
div.wpcf7 label {
  cursor: pointer;
  width: auto;
  display: block;
}
div.wpcf7 .screen-reader-response {
  border: 0 none;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@-webkit-keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.elementor-image-carousel {
  max-height: 300px;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: fadeInFromNone 0.5s ease-out;
          animation: fadeInFromNone 0.5s ease-out;
}
.elementor-image-carousel.slick-initialized {
  max-height: auto;
  overflow: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Contact Form 7
--------------------------------------------------------------*/
.cf7-grid * {
  box-sizing: border-box;
}
.cf7-grid-col {
  width: 50%;
  float: left;
  padding-right: 9.8%;
}
.cf7-grid-col:nth-child(2) {
  padding-right: 0;
}
div.wpcf7 input,
div.wpcf7 textarea {
  margin-bottom: 15px;
}
div.wpcf7 textarea {
  height: 180px;
}
body.site_color_white {
  /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
}
body.site_color_white #main-content {
  background: #FFFFFF;
}
body.site_color_white #main_menu_wrap #main_menu:before {
  background: #2e909b;
}
body.site_color_white #main_menu_wrap #main_menu nav button.menu-toggle {
  background: #2e909b;
  color: #FFFFFF;
}
body.site_color_white .main-navigation ul ul {
  background: #2e909b;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
body.site_color_white .main-navigation ul ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 37.5em) {
  body.site_color_white .main-navigation > div > ul > li:after {
    color: rgba(255, 255, 255, 0.3);
  }
}
body.site_color_white .elementor-divider-separator {
  border-top-color: #2e909b;
}
body.site_color_white .elementor-button:focus,
body.site_color_white .elementor-button:hover,
body.site_color_white .elementor-button:visited {
  color: #000000;
}
body.site_color_white.woocommerce ul.products li.product span.price,
body.site_color_white .dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div span.price,
body.site_color_white.woocommerce ul.products li.product a h3,
body.site_color_white .dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a h3 {
  color: #333333;
}
body.site_color_white article.blog {
  background: #FFFFFF;
}
body.site_color_white pre {
  background: #2e909b;
}
body.site_color_white input[type="text"],
body.site_color_white input[type="email"],
body.site_color_white input[type="url"],
body.site_color_white input[type="password"],
body.site_color_white input[type="search"],
body.site_color_white input[type="number"],
body.site_color_white input[type="tel"],
body.site_color_white input[type="range"],
body.site_color_white input[type="date"],
body.site_color_white input[type="month"],
body.site_color_white input[type="week"],
body.site_color_white input[type="time"],
body.site_color_white input[type="datetime"],
body.site_color_white input[type="datetime-local"],
body.site_color_white input[type="color"],
body.site_color_white textarea {
  color: #000000;
  background-color: #FFFFFF;
  border-color: rgba(46, 144, 155, 0.4);
}
body.site_color_white div.pp_woocommerce .pp_content_container {
  background: #ffffff;
}
body.site_color_white #add_payment_method .cart-collaterals .cart_totals tr td,
body.site_color_white #add_payment_method .cart-collaterals .cart_totals tr th,
body.site_color_white.woocommerce-cart .cart-collaterals .cart_totals tr td,
body.site_color_white.woocommerce-cart .cart-collaterals .cart_totals tr th,
body.site_color_white.woocommerce-checkout .cart-collaterals .cart_totals tr td,
body.site_color_white.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-color: #efecdb;
}
body.site_color_white.woocommerce .widget_shopping_cart .total,
body.site_color_white .woocommerce.widget_shopping_cart .total {
  border-top-color: #efecdb;
}
body.site_color_white.woocommerce form.checkout_coupon,
body.site_color_white .woocommerce form.login,
body.site_color_white .woocommerce form.register {
  border-color: #efecdb;
}
body.site_color_white.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #ffffff;
  border-color: #efecdb;
}
body.site_color_white.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
  box-shadow: 2px 2px 0 #ffffff;
  border-color: #efecdb;
}
body.site_color_white.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  box-shadow: -2px 2px 0 #ffffff;
  border-color: #efecdb;
}
body.site_color_white.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
body.site_color_white.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  border-bottom-color: #efecdb;
}
body.site_color_white .woocommerce #respond input#submit.alt,
body.site_color_white .woocommerce a.button.alt,
body.site_color_white .woocommerce button.button.alt,
body.site_color_white .woocommerce input.button.alt,
body.site_color_white.woocommerce #respond input#submit.alt,
body.site_color_white.woocommerce a.button.alt,
body.site_color_white.woocommerce button.button.alt,
body.site_color_white.woocommerce input.button.alt {
  background: #2e909b;
  border-color: #2e909b;
  color: #FFFFFF;
  padding: 13px 20px;
}
body.site_color_white article.blog .entry-header .blog-widget,
body.site_color_white article.blog .entry-header .blog-widget .share-buttons {
  background: rgba(255, 255, 255, 0.58);
}
body.site_color_white article.blog .entry-header .blog-widget:after {
  border-top: 20px solid rgba(255, 255, 255, 0.58);
}
body.site_color_white table {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body.site_color_white table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
body.site_color_white #comments #respond,
body.site_color_white .posts-navigation,
body.site_color_white .post-navigation {
  border: 1px solid #efecdb;
}
body.site_color_white article.blog .post-details {
  border-bottom: 1px solid #efecdb;
  border-top: 1px solid #efecdb;
  color: #68af45;
}
body.site_color_white article.blog .post-details a {
  color: #68af45;
}
body.site_color_white .page-links .page-links-inner {
  border: 1px solid #2e909b;
}
body.site_color_white .page-links .page-links-inner span {
  border: 1px solid #2e909b;
  background: #cee6e5;
}
body.site_color_white .page-links .page-links-inner a span {
  background: #cee6e5;
}
body.site_color_white .elementor-widget-sidebar .widget ul li a,
body.site_color_white aside.widget-area .widget ul li a {
  border-bottom: 1px solid #efecdb;
}
body.site_color_white .widget_rss li,
body.site_color_white .widget_recent_comments li {
  border-bottom: 1px solid #efecdb;
}
body.site_color_white .elementor-image-gallery figure figcaption {
  background-color: #FFFFFF;
  border-bottom: 1px solid #2e909b;
}
body.site_color_white footer#footer input {
  background: #FFFFFF;
  border: 1px solid #d2d2d2;
  color: #000000;
}
body.site_color_white footer#footer .site-info {
  text-align: center;
  font-size: 0.8em;
}
/*--------------------------------------------------------------
# WooCommerce
--------------------------------------------------------------*/
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 0;
}
.cart_totals h2 {
  text-align: center;
}
.woocommerce #reviews h3 {
  margin: 10px 0 24px;
}
.dtbaker_woocommerce_product_slider {
  margin: 0;
  overflow: hidden;
  height: 340px;
  visibility: hidden;
}
.dtbaker_woocommerce_product_slider.slick-initialized {
  visibility: visible;
  height: auto;
}
@media screen and (min-width: 37.5em) {
  .dtbaker_woocommerce_product_slider.slick-initialized {
    margin: 0 20px;
    overflow: visible;
  }
}
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product {
  float: left;
}
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div {
  width: 193px;
  margin: 0 auto 20px;
}
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div .star-rating {
  position: relative;
  float: none;
  display: inline-block;
}
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a {
  overflow: visible;
}
.woocommerce span.onsale {
  width: 44px;
  padding: 2px;
  height: 44px;
  margin: -12px -7px 0 0 !important;
  line-height: 37px;
}
.woocommerce .products .star-rating {
  display: inline-block;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 30.8%;
}
@media only screen and (max-width: 768px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 48%;
  }
}
.woocommerce .related ul.products li.product,
.woocommerce-page .related ul.products li.product {
  width: 28.8%;
}
@media only screen and (max-width: 768px) {
  .woocommerce .related ul.products li.product,
  .woocommerce-page .related ul.products li.product {
    width: 48%;
  }
}
.woocommerce ul.products li.product a,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a {
  margin-top: 6px;
  display: block;
  position: relative;
  z-index: 10;
  border: 0;
  outline: 0;
  text-align: center;
  border-radius: 0;
}
.woocommerce ul.products li.product a.button,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a.button {
  margin: 7px 0 0 0;
}
.woocommerce ul.products li.product a img,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a img {
  margin: 0;
}
.woocommerce ul.products li.product a h3,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a h3 {
  padding: 17px 0 9px;
  font-size: 20px;
  margin: 0;
}
.woocommerce ul.products li.product span.price,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div span.price {
  font-size: 14px;
  padding-bottom: 5px;
}
.woocommerce ul.products li.product span.price del,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div span.price del {
  display: inline;
}
.woocommerce ul.products li.product span.price ins,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div span.price ins {
  font-weight: normal;
}
.woocommerce select {
  color: #000;
}
.woocommerce .input-text.qty {
  padding: 13px 9px;
}
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list,
.woocommerce .widget_shopping_cart .widget_shopping_cart_content .cart_list {
  margin-bottom: 15px;
}
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list li a,
.woocommerce .widget_shopping_cart .widget_shopping_cart_content .cart_list li a {
  margin-right: 53px;
  padding: 0;
}
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list li a img,
.woocommerce .widget_shopping_cart .widget_shopping_cart_content .cart_list li a img {
  margin-right: -45px;
  margin-top: 10px;
}
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list li span.quantity,
.woocommerce .widget_shopping_cart .widget_shopping_cart_content .cart_list li span.quantity {
  font-size: 0.9em;
  padding-left: 5px;
}
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove,
.woocommerce .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove {
  top: 14px;
  left: -7px;
  padding: 1px;
  color: #f7b2b2 !important;
  margin-right: 0 !important;
}
.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons,
.woocommerce .widget_shopping_cart .widget_shopping_cart_content p.buttons {
  text-align: center;
}
.woocommerce form .form-row textarea {
  height: 6em;
}
.woocommerce-checkout-payment {
  color: #000;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce ul.products li.product a.button,
.dtbaker_woocommerce_product_slider .dtbaker_woocommerce_product > div a.button {
  background: #f7f4e5;
  border: 1px solid #e5e2cf;
  border-radius: 5px;
  padding: 7px;
  font-weight: 300;
  text-transform: none;
}
.gallery .gallery-icon a,
.dtbaker_photo_border div a,
.woocommerce-main-image,
.ccc-image-wrap {
  display: block;
  background: #f7f4e5;
  border: 1px solid #e5e2cf;
  border-radius: 5px;
  padding: 5px;
  line-height: 0;
}
.gallery .gallery-icon a img,
.dtbaker_photo_border div a img,
.woocommerce-main-image img,
.ccc-image-wrap img {
  display: inline-block;
}
.gallery .gallery-icon a {
  display: inline-block !important;
}
/** postit notes **/
.ccc-column-postit {
  background-image: url(../img/postit-tile.png), url(../img/postit-top.png), url(../img/postit-footer.png);
  background-repeat: repeat-y, no-repeat, no-repeat;
  background-position: center top, center top, center bottom;
  background-clip: padding-box, border-box, border-box;
  background-origin: padding-box, border-box, border-box;
  border-top: 115px solid transparent;
  border-bottom: 132px solid transparent;
}
.ccc-column-postit > div {
  margin: -81px auto -111px auto;
  max-width: 264px;
}
/** slider decoration **/
.ccc-slider-pretty .slick-slide {
  position: relative;
}
.ccc-slider-pretty .slick-slide .slick-slide-inner:before {
  content: '';
  display: block;
  position: absolute;
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.ccc-slider-pretty .slick-slide:nth-child(3n+1) .slick-slide-inner:before {
  background-image: url(../img/slide1-over-left.png), url(../img/slide1-over-right.png);
}
.ccc-slider-pretty .slick-slide:nth-child(3n+2) .slick-slide-inner:before {
  background-image: url(../img/slide2-over-left.png), url(../img/slide2-over-right.png);
}
.ccc-slider-pretty .slick-slide:nth-child(3n+3) .slick-slide-inner:before {
  background-image: url(../img/slide3-over-left.png), url(../img/slide3-over-right.png);
}
.ccc-slider-caption {
  display: none;
}
@media screen and (min-width: 37.5em) {
  .ccc-slider-caption {
    position: absolute;
    display: block;
    bottom: 6px;
    left: 6px;
    padding: 10px 20px;
    background: #522f15;
    color: #fff;
    opacity: 0.8;
  }
}
/** testimonials **/
.dtbaker_testimonials_slider .dtbaker_testimonial .dtbaker_testimonial_inner {
  padding: 40px 70px;
  font-size: 16px;
}
.dtbaker_testimonials_slider .dtbaker_testimonial .dtbaker_testimonial_inner:before {
  left: 38px;
  display: block;
  content: '';
  background-image: url(../img/quote-top.png);
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
.dtbaker_testimonials_slider .dtbaker_testimonial .dtbaker_testimonial_inner:after {
  right: 38px;
  display: block;
  content: '';
  background-image: url(../img/quote-bottom.png);
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
.newsletter-submit {
  text-align: center;
}
.newsletter-submit p {
  margin: 0;
  padding: 0;
}
.newsletter-submit .wpcf7-text {
  margin: 21px 0 0 0;
}
.newsletter-submit .wpcf7-submit {
  margin: 21px 0 0 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  padding: 16px 2em 13px;
}
.site-content .widget-area {
  padding-bottom: 40px;
}
.ccc-image-button-labels .elementor-widget-container {
  background-repeat: no-repeat;
  max-width: 315px;
  height: 114px;
  position: relative;
  margin: 0 auto 20px;
}
@media screen and (min-width: 37.5em) {
  .ccc-image-button-labels .elementor-widget-container {
    margin: 0 0 10px;
  }
}
.ccc-image-button-labels .elementor-widget-container .elementor-image-box-img {
  position: absolute;
  right: 0;
  top: 7px;
}
.ccc-image-button-labels .elementor-widget-container .elementor-image-box-content {
  text-align: left;
  padding: 1px 0 4px 20px;
}
.ccc-image-button-labels .elementor-widget-container .elementor-image-box-content .elementor-image-box-title {
  color: #333;
  font-size: 25px;
  padding: 0;
  margin: 28px 0 7px;
}
