@charset "UTF-8";
/*!
Theme Name: Villagio
Description: Used to style the TinyMCE editor.
*/
/**
 * Table of Contents:
 *
 * 1.0 - Typography
 * 2.0 - Elements
 * 3.0 - Alignment
 * 4.0 - Media Elements
 * 5.0 - RTL
 */
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
*:focus {
  outline: none;
}

html {
  -webkit-box-sizing: border-box;
  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/ */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  color: #333333;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
  background: #ececec;
}

body#tinymce {
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0;
  text-rendering: optimizeLegibility;
  font-family: inherit;
  line-height: 1.4;
  font-weight: 700;
}

h1 {
  font-size: 32px;
  font-size: 2rem;
}

.entry-child-pages-list .entry-title,
h2 {
  font-size: 28px;
  font-size: 1.75rem;
}

h3 {
  font-size: 24px;
  font-size: 1.5rem;
}

h4 {
  font-size: 22px;
  font-size: 1.375rem;
}

h5 {
  font-size: 20px;
  font-size: 1.25rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
}

p {
  margin: 0 0 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #f4f4f4;
  padding: 1.71429em 2.28571em;
  max-width: 100%;
  overflow: auto;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.71429;
}

code, kbd, tt, var {
  background: #f3f3f3;
  padding: 0.063em 0.250em;
  font-family: inherit;
}

abbr, acronym {
  -webkit-text-decoration: underline dashed;
  text-decoration: underline dashed;
  cursor: help;
}

mark, ins {
  background: #333333;
  text-decoration: none;
  color: #fff;
  padding: 0 0.250em;
}

big {
  font-size: 125%;
}

h1 {
  margin-top: 1.3em;
  margin-bottom: 27;
}

h2 {
  margin-top: 1.5em;
  margin-bottom: 0.82em;
}

h3 {
  margin-top: 1.8em;
  margin-bottom: 0.91em;
}

h4 {
  margin-top: 1.97em;
  margin-bottom: 1.05em;
}

h5 {
  margin-top: 2.25em;
  margin-bottom: 1em;
}

h6 {
  margin-top: 2.75em;
  margin-bottom: 1.1em;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: border-color ease-in-out .15s, color ease-in-out .15s, background ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, color ease-in-out .15s, background ease-in-out .15s;
  transition: border-color ease-in-out .15s, color ease-in-out .15s, background ease-in-out .15s;
}

a:hover, a:active {
  outline: 0;
}

a:hover {
  color: #01bea0;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
blockquote, q {
  quotes: "" "";
}

blockquote {
  quotes: "" "";
  font-family: inherit;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  padding: 0.6em 0 0.6em 1.5em;
  margin: 0 0 1.25em;
  border: 4px solid #01bea0;
  border-width: 0 0 0 4px;
}

blockquote:before, blockquote:after {
  content: "";
}

blockquote cite,
blockquote small {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 400;
}

blockquote a cite,
blockquote a small {
  color: inherit;
  text-decoration: inherit;
}

blockquote p {
  margin: 0 0 0.72727em;
}

blockquote em,
blockquote i,
blockquote cite {
  font-style: normal;
}

blockquote strong,
blockquote b {
  font-weight: 400;
}

blockquote > :last-child {
  margin-bottom: 0;
}

hr {
  background-color: #e0e1e5;
  border: 0;
  height: 1px;
  margin: 4.15em 0 4.65em;
}

ul, ol {
  margin: 0 0 1.5em 1.25em;
  padding: 0;
}

ul li + li, ol li + li {
  margin-top: 0.6875em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-top: 0.6875em;
  margin-left: 1em;
  margin-bottom: 0;
}

dt {
  font-weight: 600;
}

dd {
  margin: 0 1.25em 1.45em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 0 0 1.5em;
}

@media screen and (min-width: 48em) {
  figure {
    margin: 0 0 1.45em;
  }
}

th,
td {
  border: 1px solid #f0f0f0;
  border-width: 1px 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 1.5em;
  table-layout: fixed;
  width: 100%;
}

thead {
  border-bottom: 2px solid #f0f0f0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

th {
  font-weight: 700;
}

th,
td {
  padding: 0.8em;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 2.625em;
  margin-bottom: 1.3125em;
  margin-top: .5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 2.625em;
  margin-bottom: 1.3125em;
  margin-top: .5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.site .avatar {
  border-radius: 50%;
}

.entry-content .wp-smiley,
.entry-summary .wp-smiley,
.comment-content .wp-smiley,
.textwidget .wp-smiley {
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.entry-content a img,
.entry-summary a img,
.comment-content a img,
.textwidget a img {
  display: block;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
  margin: 0 0 1.5em;
  max-width: 100%;
  vertical-align: middle;
}

@media screen and (min-width: 48em) {
  embed,
  iframe,
  object,
  video {
    margin: 0 0 1.45em;
  }
}

p > embed,
p > iframe,
p > object,
p > video {
  margin-bottom: 0;
}

.entry-content .wp-audio-shortcode a,
.entry-content .wp-playlist a {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
  margin: 0 0 1.5em;
}

@media screen and (min-width: 48em) {
  .wp-audio-shortcode,
  .wp-video,
  .wp-playlist.wp-audio-playlist {
    margin: 0 0 1.45em;
  }
}

.wp-playlist.wp-audio-playlist {
  padding-bottom: 0;
}

.wp-playlist .wp-playlist-tracks {
  margin-top: 0;
}

.wp-playlist-item .wp-playlist-caption {
  border-bottom: 0;
  padding: 0.7142857143em 0;
}

.wp-playlist-item .wp-playlist-item-length {
  top: 0.7142857143em;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption, .gallery-caption {
  margin-top: 0.3125em;
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 1.41667em 0 0;
  text-align: center;
  color: #666666;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1em;
  margin-left: -1em;
}

.gallery img {
  display: block;
  margin: 0 auto;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding-left: 1em;
  margin: 0 0 1em;
}

.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;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.rtl th {
  text-align: right;
}

.rtl ol {
  counter-reset: item;
}

.rtl ol li:before {
  left: auto;
  right: -1.5em;
}

.rtl li > ul,
.rtl li > ol {
  margin-left: 0;
  margin-right: 1.5em;
}

.rtl .mejs-offscreen {
  right: -10000px;
}

/*--------------------------------------------------------------
# Gutenberg
--------------------------------------------------------------*/
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.mphb_sc_rooms-wrapper.grid-view,
.mphb_sc_rooms-wrapper.is-style-grid {
  margin: 0;
}

.mphb_sc_rooms-wrapper.grid-view .pagination,
.mphb_sc_rooms-wrapper.is-style-grid .pagination {
  margin-top: 1.72222em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-price-wrapper strong, .mphb_sc_rooms-wrapper.grid-view .mphb-regular-price strong,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-price-wrapper strong,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-regular-price strong {
  min-width: 0;
  margin-right: 0.5em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-price,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-price {
  margin-right: 0.125em;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-room-type-images .mphb_room_type_categories_header_wrapper, .mphb_sc_rooms-wrapper.grid-view .mphb_room_type_featured_image_wrapper .mphb_room_type_categories_header_wrapper,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type-images .mphb_room_type_categories_header_wrapper,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb_room_type_featured_image_wrapper .mphb_room_type_categories_header_wrapper {
    left: 1.85em;
    right: 1.85em;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-regular-price,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-regular-price {
  margin: 1.25em 0;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-view-details-button,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-view-details-button {
  padding: 0.85714em 0 0;
  margin-bottom: 0.85714em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-view-details-button,
.mphb_sc_rooms-wrapper.grid-view .mphb-to-book-btn-wrapper,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-view-details-button,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-to-book-btn-wrapper {
  margin-top: 0.3125em;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view,
  .mphb_sc_rooms-wrapper.is-style-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-room-type:not(:first-of-type),
.mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type:not(:first-of-type) {
  margin-top: 2.78571em;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-room-type:not(:first-of-type),
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type:not(:first-of-type) {
    margin-top: 0;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-room-type,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type {
  padding: 0;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-room-type,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type {
    width: 33.3333%;
    padding: 0 1.875em 2.3125em;
  }
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb_room_type_featured_image_wrapper,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb_room_type_featured_image_wrapper {
    margin-left: -1.875em;
    margin-right: -1.875em;
    border-right: 1px solid #fff;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb_room_type_featured_image_wrapper img,
.mphb_sc_rooms-wrapper.is-style-grid .mphb_room_type_featured_image_wrapper img {
  display: block;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-room-type-title,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type-title {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 1.44444em;
  margin-bottom: 1.33333em;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-room-type-title,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type-title {
    font-size: 22px;
    font-size: 1.375rem;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-room-type-title a,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type-title a {
  text-decoration: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-gallery-thumbnail-slider,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-gallery-thumbnail-slider {
  display: none;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-bottom: 1px solid #e0e1e5;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type li,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type li {
  white-space: nowrap;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type li .mphb-attribute-title,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type li .mphb-attribute-title {
  display: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type li:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type li:before {
  font: normal normal normal 1rem/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: table-cell;
  content: "";
  padding-right: 0.875em;
  color: #666666;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  width: 2em;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type li:before,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type li:before {
    display: inline-block;
    border-bottom: 0px solid;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults:before,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults-capacity:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults-capacity:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children:before,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children-capacity:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children-capacity:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-facilities:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-facilities:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-view:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-view:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-size:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-size:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-bed-type:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-bed-type:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-categories:before,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-categories:before {
  content: "";
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type li,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type li {
  display: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type li + li,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type li + li {
  margin: 0;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-title,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-title {
  width: 126px;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-title,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-title {
    min-width: 0;
    width: auto;
  }
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-value, .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-title,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-value,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-attribute-title {
    display: inline-block;
    border-bottom: 0px solid;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children-capacity,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults-capacity,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-size,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children-capacity,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults-capacity,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-size {
  display: table-row;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children-capacity,
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults-capacity,
  .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-size,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-children-capacity,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-adults-capacity,
  .mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:first-of-type .mphb-room-type-size {
    width: 33.33%;
    display: block;
  }
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  border: 0px solid;
  margin: 2em 0 1.53846em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-value,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-value {
  color: #666666;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-room-type-children-capacity,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-room-type-adults-capacity,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-room-type-size,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-room-type-children-capacity,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-room-type-adults-capacity,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-room-type-size {
  display: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type a,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type a {
  color: inherit;
  text-decoration: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type a:hover,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type a:hover {
  color: #01bea0;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-title,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-title {
  min-width: 0;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type li,
.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-value, .mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-title,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type li,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-value,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type .mphb-attribute-title {
  display: inline;
  border: 0px solid;
  padding: 0;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type li:after,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type li:after {
  content: '\002f';
  margin: 0 0.30769em 0 0.53846em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-loop-room-type-attributes:last-of-type li:last-child:after,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-loop-room-type-attributes:last-of-type li:last-child:after {
  display: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-regular-price,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-regular-price {
  margin-top: 1.5625em;
}

.mphb_sc_rooms-wrapper.grid-view h3,
.mphb_sc_rooms-wrapper.is-style-grid h3 {
  display: none;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-room-type-title,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-room-type-title {
  margin: 1em 0 1.2em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-reserve-room-section .mphb-book-button,
.mphb_sc_rooms-wrapper.grid-view .mphb-reserve-room-section .mphb-confirm-reservation,
.mphb_sc_rooms-wrapper.grid-view .mphb-to-book-btn-wrapper,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-reserve-room-section .mphb-book-button,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-reserve-room-section .mphb-confirm-reservation,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-to-book-btn-wrapper {
  margin-top: 0.625em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-reserve-room-section .mphb-book-button,
.mphb_sc_rooms-wrapper.grid-view .mphb-reserve-room-section .mphb-confirm-reservation,
.mphb_sc_rooms-wrapper.grid-view .mphb-view-details-button-wrapper,
.mphb_sc_rooms-wrapper.grid-view .mphb-to-book-btn-wrapper,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-reserve-room-section .mphb-book-button,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-reserve-room-section .mphb-confirm-reservation,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-view-details-button-wrapper,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-to-book-btn-wrapper {
  display: inline-block;
  margin-right: 2.125em;
  vertical-align: top;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-to-book-btn-wrapper,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-to-book-btn-wrapper {
  float: left;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-rooms-quantity,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-rooms-quantity {
  width: auto;
  display: inline-block;
  min-width: 100px;
  margin-right: 1.0625em;
}

.mphb_sc_rooms-wrapper.grid-view .mphb-view-details-button-wrapper,
.mphb_sc_rooms-wrapper.is-style-grid .mphb-view-details-button-wrapper {
  margin-right: 0;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view.columns-2 .mphb-room-type,
  .mphb_sc_rooms-wrapper.is-style-grid.columns-2 .mphb-room-type {
    width: 50%;
  }
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view.columns-4 .mphb-room-type,
  .mphb_sc_rooms-wrapper.is-style-grid.columns-4 .mphb-room-type {
    width: 25%;
    padding-left: 1em;
    padding-right: 1em;
  }
}

.mphb_sc_rooms-wrapper.grid-view.columns-4 .mphb-room-type .mphb-room-type-title,
.mphb_sc_rooms-wrapper.is-style-grid.columns-4 .mphb-room-type .mphb-room-type-title {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper.grid-view.columns-4 .mphb-room-type .mphb_room_type_featured_image_wrapper,
  .mphb_sc_rooms-wrapper.is-style-grid.columns-4 .mphb-room-type .mphb_room_type_featured_image_wrapper {
    margin-left: -1em;
    margin-right: -1em;
  }
}

.mphb_sc_rooms-wrapper .mphb-room-type-images {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 48em) {
  .mphb_sc_rooms-wrapper .mphb-room-type-images {
    margin-bottom: 1.45em;
  }
}

.single .mphb_room_type .entry-content h2 {
  margin-top: 2.92308em;
  margin-bottom: 1.84615em;
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (min-width: 48em) {
  .single .mphb_room_type .entry-content h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.mphb_room_type_categories_header_wrapper {
  display: block;
  margin-bottom: 1.25em;
}

.mphb_room_type_categories_header_wrapper a {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #fff;
  background-color: #333333;
  padding: 0.42857em 0.71429em 0.28571em;
  display: inline-block;
  margin: 0.42857em 0.21429em 0 0;
  text-decoration: none;
}

.mphb_room_type_categories_header_wrapper a:hover {
  background: #01bea0;
}

.mphb-room-type-images,
.mphb_room_type_featured_image_wrapper {
  position: relative;
  display: block;
}

.mphb-room-type-images .mphb_room_type_categories_header_wrapper,
.mphb_room_type_featured_image_wrapper .mphb_room_type_categories_header_wrapper {
  position: absolute;
  bottom: 0;
  left: 1.25em;
  right: 1.25em;
  z-index: 2;
  display: block;
}

.comment-content .mphb-view-details-button, .entry-content .mphb-view-details-button, .entry-summary .mphb-view-details-button, .page-content .mphb-view-details-button {
  color: inherit;
}

body:not(.page-template-template-front-page) .mphb_sc_rooms-wrapper .mphb-room-type .mphb-loop-room-type-attributes:last-of-type {
  display: none;
}

.mphb-loop-room-type-attributes,
.mphb-single-room-type-attributes,
.mphb-widget-room-type-attributes {
  list-style: none;
  border-top: 1px solid #e0e1e5;
  display: table;
  width: 100%;
  margin: 1.5625em 0 1.25em;
}

.mphb-loop-room-type-attributes li,
.mphb-single-room-type-attributes li,
.mphb-widget-room-type-attributes li {
  display: table-row;
  width: 100%;
}

.mphb-loop-room-type-attributes .mphb-attribute-title,
.mphb-single-room-type-attributes .mphb-attribute-title,
.mphb-widget-room-type-attributes .mphb-attribute-title {
  padding: 0.8125em 0.8125em 0.8125em 0;
}

.mphb-loop-room-type-attributes .mphb-attribute-value,
.mphb-single-room-type-attributes .mphb-attribute-value,
.mphb-widget-room-type-attributes .mphb-attribute-value {
  padding: 0.8125em 0;
}

.mphb-loop-room-type-attributes .mphb-attribute-value,
.mphb-loop-room-type-attributes .mphb-attribute-title,
.mphb-single-room-type-attributes .mphb-attribute-value,
.mphb-single-room-type-attributes .mphb-attribute-title,
.mphb-widget-room-type-attributes .mphb-attribute-value,
.mphb-widget-room-type-attributes .mphb-attribute-title {
  display: table-cell;
  border-bottom: 1px solid #e0e1e5;
}

.mphb-loop-room-type-attributes .mphb-attribute-title,
.mphb-single-room-type-attributes .mphb-attribute-title,
.mphb-widget-room-type-attributes .mphb-attribute-title {
  color: #666666;
}

.mphb-loop-room-type-attributes a,
.mphb-single-room-type-attributes a,
.mphb-widget-room-type-attributes a {
  text-decoration: none;
}

.mphb-loop-room-type-attributes .mphb-attribute-title,
.mphb-single-room-type-attributes .mphb-attribute-title {
  min-width: 140px;
}

.mphb-loop-room-type-attributes a,
.mphb-single-room-type-attributes a {
  color: inherit;
}

.mphb-loop-room-type-attributes a:hover,
.mphb-single-room-type-attributes a:hover {
  text-decoration: none;
  color: #01bea0;
}

body .mphb_sc_rooms-wrapper .mphb-room-type:not(:first-of-type), body .mphb_sc_search_results-wrapper .mphb-room-type:not(:first-of-type) {
  margin-top: 6.25em;
}

body .mphb-to-book-btn-wrapper form {
  margin: 0;
}

body .mphb_sc_search_results-wrapper .mphb-regular-price,
body .mphb_sc_rooms-wrapper .mphb-regular-price {
  margin-top: 1.5625em;
}

body .mphb_sc_search_results-wrapper h3,
body .mphb_sc_rooms-wrapper h3 {
  display: none;
}

body .mphb_sc_search_results-wrapper .mphb-room-type-title,
body .mphb_sc_rooms-wrapper .mphb-room-type-title {
  margin: 1em 0 1.2em;
}

body .mphb_sc_search_results-wrapper .mphb-reserve-room-section .mphb-book-button,
body .mphb_sc_search_results-wrapper .mphb-reserve-room-section .mphb-confirm-reservation,
body .mphb_sc_search_results-wrapper .mphb-to-book-btn-wrapper,
body .mphb_sc_rooms-wrapper .mphb-reserve-room-section .mphb-book-button,
body .mphb_sc_rooms-wrapper .mphb-reserve-room-section .mphb-confirm-reservation,
body .mphb_sc_rooms-wrapper .mphb-to-book-btn-wrapper {
  margin-top: 0.625em;
}

body .mphb_sc_search_results-wrapper .mphb-reserve-room-section .mphb-book-button,
body .mphb_sc_search_results-wrapper .mphb-reserve-room-section .mphb-confirm-reservation,
body .mphb_sc_search_results-wrapper .mphb-view-details-button-wrapper,
body .mphb_sc_search_results-wrapper .mphb-to-book-btn-wrapper,
body .mphb_sc_rooms-wrapper .mphb-reserve-room-section .mphb-book-button,
body .mphb_sc_rooms-wrapper .mphb-reserve-room-section .mphb-confirm-reservation,
body .mphb_sc_rooms-wrapper .mphb-view-details-button-wrapper,
body .mphb_sc_rooms-wrapper .mphb-to-book-btn-wrapper {
  display: inline-block;
  margin-right: 2.125em;
  vertical-align: top;
}

body .mphb_sc_search_results-wrapper .mphb-to-book-btn-wrapper,
body .mphb_sc_rooms-wrapper .mphb-to-book-btn-wrapper {
  float: left;
}

body .mphb_sc_search_results-wrapper .mphb-rooms-quantity,
body .mphb_sc_rooms-wrapper .mphb-rooms-quantity {
  width: auto;
  display: inline-block;
  min-width: 100px;
  margin-right: 1.0625em;
}

body .entry-content .mphb-room-type-title {
  text-decoration: none;
  color: inherit;
}

body .mphb-view-details-button {
  color: inherit;
  text-transform: none;
  border: 1px solid transparent !important;
  border-bottom: 1px dotted currentColor !important;
  font-weight: 400;
  padding: 0.28571em 0 0;
  margin-bottom: 0.28571em;
  height: auto;
  margin-top: 1.28571em;
}

body .mphb-view-details-button, body .mphb-view-details-button:hover {
  background: transparent !important;
}

body .mphb-view-details-button:hover {
  color: #01bea0;
  text-decoration: none;
}

body .entry-content .mphb-view-details-button:hover {
  border-bottom: 1px dotted transparent !important;
}

body .mphb_sc_search-wrapper .mphb_sc_search-submit-button-wrapper {
  margin-top: 2.75rem;
}

body .mphb_sc_search_results-info {
  margin-bottom: 4.8125em;
}

body .mphb-recommendation {
  margin-top: 2.875em;
  margin-bottom: 5.9375em;
}

body .mphb-recommendation .mphb-tax-information {
  font-weight: 400;
  font-size: .875em;
}

body .mphb-recommendation-details-list {
  list-style: none;
  margin-left: 0;
}

body .mphb-recommendation-details-list .mphb-recommendation-item-guests {
  font-size: inherit;
  line-height: inherit;
  margin-top: 0.5em;
}

body .mphb-recommendation-details-list li + li {
  margin-top: 1.3125em;
}

body .mphb-recommendation-details-list .mphb-recommedation-item-subtotal {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
}

body .mphb-recommendation-total {
  font-size: 18px;
  font-size: 1.125rem;
}

body .mphb-recommendation-total .mphb-price {
  font-weight: 700;
}

body .mphb_sc_search_results-wrapper .mphb-recommendation .mphb-recommendation-reserve-button {
  float: left;
  clear: both;
  margin-top: 0.5625em;
}

body .mphb_sc_search_results-wrapper .mphb-reservation-cart {
  margin-bottom: 1.5em;
}

.mphb-price-wrapper strong,
.mphb-regular-price strong {
  font-weight: 400;
  min-width: 140px;
  display: inline-block;
}

.mphb-price-wrapper .mphb-price,
.mphb-regular-price .mphb-price {
  font-weight: 700;
}

.single-mphb_room_service .mphb-price-wrapper .mphb-price, .single-mphb_room_service
.mphb-regular-price .mphb-price {
  font-size: 20px;
  font-size: 1.25rem;
}

.single-mphb_room_type .mphb-regular-price {
  margin: 2.6em 0 4em;
}

.mphb-price-period {
  color: #666666;
}

.mphb-booking-form .mphb-reserve-btn {
  padding: 1.3em 3.4em;
  height: auto;
}

.mphb-booking-form .mphb-reserve-btn-wrapper {
  margin-top: 2.75rem;
  clear: both;
}

.mphb-booking-form .mphb-reserve-room-section .mphb-rooms-quantity {
  display: inline-block;
  width: auto;
  margin: 0 10px;
}

.mphb-booking-form .mphb-period-price {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.mphb-booking-form .mphb-period-price strong {
  min-width: auto;
}

input[type='text'].mphb-datepick.is-datepick {
  padding-right: 2.7em;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/calendar-o.svg);
  background-repeat: no-repeat;
  background-position: right 1.0625em top 1em;
  background-size: 1rem;
}

.mphb_sc_search-submit-button-wrapper .button,
.mphb-book-button,
.mphb-reserve-btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid #01bea0 !important;
  text-transform: uppercase;
  padding: 1em 2em !important;
  font-size: 14px !important;
  line-height: 1.57143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff !important;
  background-color: #01bea0 !important;
  height: auto;
}

.mphb_sc_booking_form-wrapper input[type="text"],
.mphb_sc_booking_form-wrapper select,
.mphb_sc_search-wrapper input[type="text"],
.mphb_sc_search-wrapper select {
  width: 100%;
  max-width: 418px;
  height: 3.125rem;
  padding: 0.75em 1.25em 0.875em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e0e1e5;
  border-radius: 0;
}

.mphb_sc_booking_form-wrapper label,
.mphb_sc_search-wrapper label {
  margin-bottom: 0.5625em;
  display: inline-block;
}

/*!
 * Getwid Style Kit v1.0.0
 * Copyright 2020 MotoPress
 * Import this file to the sass/scss file of your theme, which is to be loaded in block editor.
 * Example: @import "getwid-style-kit/scss/editor"
 *
 * For more information visit https://github.com/mototeam/
 * License GNU GPL v2 or later.
 */
/* common block styles */
body.page .entry-content > *.alignwide, body.single .entry-content > *.alignwide {
  width: auto;
  max-width: calc(100% + 1.2rem);
  margin-left: -.6em;
  margin-right: -.6em;
}

@media screen and (min-width: 62em) {
  body.page .entry-content > *.alignwide, body.single .entry-content > *.alignwide {
    margin-left: -2.5em;
    margin-right: 0;
    max-width: calc(100% + 2.5rem);
  }
}

@media screen and (min-width: 93.375em) {
  body.page .entry-content > *.alignwide, body.single .entry-content > *.alignwide {
    margin-left: -4.875em;
    max-width: calc(100% + 4.875rem);
  }
}

body.page .entry-content > *.alignfull, body.single .entry-content > *.alignfull {
  width: auto;
  max-width: calc(100% + 2.5rem);
  margin-left: -1.25em;
  margin-right: -1.25em;
}

@media screen and (min-width: 62em) {
  body.page .entry-content > *.alignfull, body.single .entry-content > *.alignfull {
    margin-right: 0;
    margin-left: -5em;
    max-width: calc(100% + 5rem);
  }
}

@media screen and (min-width: 93.375em) {
  body.page .entry-content > *.alignfull, body.single .entry-content > *.alignfull {
    margin-left: -9.75em;
    max-width: calc(100% + 9.75rem);
  }
}

body.page-template-template-full-width-page .entry-content > *.alignwide, body.page-template-template-full-width-grid-page .entry-content > *.alignwide, body.post-template-template-full-width-post .entry-content > *.alignwide {
  max-width: calc(100% + 1.2rem);
  width: auto;
  margin-left: -.6em;
  margin-right: -.6em;
}

@media screen and (min-width: 62em) {
  body.page-template-template-full-width-page .entry-content > *.alignwide, body.page-template-template-full-width-grid-page .entry-content > *.alignwide, body.post-template-template-full-width-post .entry-content > *.alignwide {
    margin-left: -2.5em;
    margin-right: -2.5em;
    max-width: calc(100% + 5em);
  }
}

@media screen and (min-width: 93.375em) {
  body.page-template-template-full-width-page .entry-content > *.alignwide, body.page-template-template-full-width-grid-page .entry-content > *.alignwide, body.post-template-template-full-width-post .entry-content > *.alignwide {
    margin-left: -4.0625em;
    margin-right: -4.0625em;
    max-width: calc(100% + 8.125em);
  }
}

body.page-template-template-full-width-page .entry-content > *.alignfull, body.page-template-template-full-width-grid-page .entry-content > *.alignfull, body.post-template-template-full-width-post .entry-content > *.alignfull {
  width: auto;
  max-width: calc(100% + 2.5rem);
  margin-left: -1.25em;
  margin-right: -1.25em;
}

@media screen and (min-width: 62em) {
  body.page-template-template-full-width-page .entry-content > *.alignfull, body.page-template-template-full-width-grid-page .entry-content > *.alignfull, body.post-template-template-full-width-post .entry-content > *.alignfull {
    margin-left: -5em;
    margin-right: -5em;
    max-width: calc(100% + 10em);
  }
}

@media screen and (min-width: 93.375em) {
  body.page-template-template-full-width-page .entry-content > *.alignfull, body.page-template-template-full-width-grid-page .entry-content > *.alignfull, body.post-template-template-full-width-post .entry-content > *.alignfull {
    margin-left: -9.75em;
    margin-right: calc( -26.64% - 9.75em);
    max-width: calc(126.64% + 19.5em);
  }
}

body.page-template-template-front-page .entry-content > *.alignwide {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (min-width: 62em) {
  body.page-template-template-front-page .entry-content > *.alignwide {
    margin-left: -19.7%;
    margin-right: -19.7%;
    max-width: 139.4%;
  }
}

@media screen and (min-width: 93.375em) {
  body.page-template-template-front-page .entry-content > *.alignwide {
    margin-left: -14.625em;
    margin-right: -14.625em;
    max-width: calc(100% + 29.25em);
  }
}

body.page-template-template-front-page .entry-content > *.alignfull {
  width: auto;
  max-width: calc(100% + 2.5rem);
  margin-left: -1.25em;
  margin-right: -1.25em;
}

@media screen and (min-width: 62em) {
  body.page-template-template-front-page .entry-content > *.alignfull {
    margin-left: calc( -19.7% - 2.5em);
    margin-right: calc( -19.7% - 2.5em);
    max-width: calc(139.4% + 5em);
  }
}

@media screen and (min-width: 93.375em) {
  body.page-template-template-front-page .entry-content > *.alignfull {
    margin-left: -17.125em;
    margin-right: -17.125em;
    max-width: calc(100% + 34.25em);
  }
}

body.page-template-template-wide-screen-page .entry-content > *.alignwide {
  max-width: calc(100% + 1.25em);
  width: auto;
  margin-left: -.625em;
  margin-right: -.625em;
}

@media screen and (min-width: 62em) {
  body.page-template-template-wide-screen-page .entry-content > *.alignwide {
    margin-left: -1.25em;
    margin-right: -1.25em;
    max-width: calc(100% + 2.5em);
  }
}

body.page-template-template-wide-screen-page .entry-content > *.alignfull {
  width: auto;
  max-width: calc(100% + 2.5rem);
  margin-left: -1.25em;
  margin-right: -1.25em;
}

@media screen and (min-width: 62em) {
  body.page-template-template-wide-screen-page .entry-content > *.alignfull {
    margin-left: -2.5em;
    margin-right: -2.5em;
    max-width: calc(100% + 5em);
  }
}

/* wp-block-paragraph styles */
/* wp-block-image styles */
.wp-block-image {
  margin-bottom: 28px;
}

.wp-block-image .alignleft {
  margin-right: 2.625em;
  margin-bottom: 1.3125em;
  margin-top: .5em;
}

.wp-block-image .alignright {
  margin-left: 2.625em;
  margin-bottom: 1.3125em;
  margin-top: .5em;
}

.wp-block-image figure {
  margin-bottom: 0;
}

.wp-block-image figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 1.41667em 0 0;
  text-align: center;
  color: #666666;
}

/* wp-block-gallery styles */
.wp-block-gallery {
  margin-bottom: 28px;
}

.wp-block-gallery .blocks-gallery-caption {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  color: #666666;
  width: 100%;
}

.wp-block-gallery.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .wp-block-gallery.columns-1 .blocks-gallery-item {
    width: calc((100% - 16px * 0) / 1);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n), .wp-block-gallery.columns-1 .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

.wp-block-gallery.columns-2 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 16px * 1) / 2);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n), .wp-block-gallery.columns-2 .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

.wp-block-gallery.columns-3 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 16px * 2) / 3);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n), .wp-block-gallery.columns-3 .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

.wp-block-gallery.columns-4 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .wp-block-gallery.columns-4 .blocks-gallery-item {
    width: calc((100% - 16px * 3) / 4);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n), .wp-block-gallery.columns-4 .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

.wp-block-gallery.columns-5 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .wp-block-gallery.columns-5 .blocks-gallery-item {
    width: calc((100% - 16px * 4) / 5);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n), .wp-block-gallery.columns-5 .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

.wp-block-gallery.columns-6 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .wp-block-gallery.columns-6 .blocks-gallery-item {
    width: calc((100% - 16px * 5) / 6);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n), .wp-block-gallery.columns-6 .blocks-gallery-item:last-child {
    margin-right: 0;
  }
}

/* wp-block-quote styles */
.wp-block-quote {
  margin: 0 0 1.25em;
}

@media screen and (min-width: 48em) {
  .wp-block-quote {
    margin: 0 0 1.04167em;
  }
}

.wp-block-quote p:last-of-type {
  margin-bottom: 0;
}

.wp-block-quote.has-text-align-right {
  border-width: 0 4px 0 0;
  padding: 0.6em 1.5em 0.6em 0;
}

@media screen and (min-width: 48em) {
  .wp-block-quote.has-text-align-right {
    padding: 0.91667em 1.66667em 0.91667em 0;
  }
}

.wp-block-quote.has-text-align-center {
  border-width: 0 4px 0 4px;
  padding: 0.6em 1.5em 0.6em 1.5em;
}

@media screen and (min-width: 48em) {
  .wp-block-quote.has-text-align-center {
    padding: 0.91667em 1.66667em 0.91667em 1.5em;
  }
}

.wp-block-quote.is-style-large {
  margin: 0 0 1.25em;
  padding: 0.6em 0 0.6em 1.5em;
}

@media screen and (min-width: 48em) {
  .wp-block-quote.is-style-large {
    padding: 0.91667em 0 0.91667em 1.66667em;
    margin: 0 0 1.04167em;
  }
}

.wp-block-quote.is-style-large cite {
  font-size: 12px;
  font-size: 0.75rem;
}

/* wp-block-file styles */
.wp-block-file .wp-block-file__button {
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: .75em 1.25em;
  font-size: 13px;
  line-height: 1.28571;
  border-radius: 0;
  background-color: #01bea0;
  -webkit-transition: background ease-in-out .15s, color ease-in-out .15s, border ease-in-out .15s;
  -o-transition: background ease-in-out .15s, color ease-in-out .15s, border ease-in-out .15s;
  transition: background ease-in-out .15s, color ease-in-out .15s, border ease-in-out .15s;
}

.wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:active {
  color: #fff;
  background-color: #333333;
  text-decoration: none;
}

/* wp-block-code styles */
.wp-block-code code {
  background: transparent;
  padding: 0;
  font-family: "Lato", sans-serif;
}

/* wp-block-preformatted styles */
/* wp-block-pullquote styles */
.wp-block-pullquote {
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-color: #01bea0;
  color: inherit;
  margin: 0 0 1.25em;
}

.wp-block-pullquote p {
  font-size: inherit;
  margin-bottom: .666667em;
}

.wp-block-pullquote p:last-of-type {
  margin-bottom: 0;
}

.wp-block-pullquote blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  line-height: 1.4;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 48em) {
  .wp-block-pullquote blockquote {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.wp-block-pullquote.is-style-solid-color {
  padding-left: 1em;
  padding-right: 1em;
}

.wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: inherit;
}

.wp-block-pullquote.is-style-solid-color blockquote p:last-child {
  margin-bottom: 0;
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
  text-transform: uppercase;
}

.wp-block-pullquote.is-style-solid-color blockquote.has-text-color p, .wp-block-pullquote.is-style-solid-color blockquote.has-text-color cite {
  color: inherit;
}

/* wp-block-table styles */
.wp-block-table table {
  margin-bottom: 0;
}

/* wp-block-verse styles */
pre.wp-block-verse {
  white-space: pre-wrap;
}

/* wp-block-group styles */
.wp-block-group {
  margin-bottom: 28px;
}

.wp-block-group.has-background {
  padding: 20px 30px;
}

.wp-block-group .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}

/* wp-block-button styles */
.wp-block-button {
  color: #fff;
  margin-bottom: 1.45em;
}

.wp-block-button .wp-block-button__link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  text-transform: uppercase;
  padding: 0.92929em 2em;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.57143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #01bea0;
  -webkit-transition: background ease-in-out .15s, color ease-in-out .15s, border ease-in-out .15s;
  -o-transition: background ease-in-out .15s, color ease-in-out .15s, border ease-in-out .15s;
  transition: background ease-in-out .15s, color ease-in-out .15s, border ease-in-out .15s;
}

.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link:active {
  color: #fff;
  background-color: #333333;
  text-decoration: none;
}

.is-style-outline {
  color: #01bea0;
}

.is-style-outline .wp-block-button__link {
  border-color: currentColor;
  border-width: 2px;
}

.is-style-outline .wp-block-button__link:not(.has-background) {
  background: transparent;
}

.is-style-outline .wp-block-button__link:hover, .is-style-outline .wp-block-button__link:focus, .is-style-outline .wp-block-button__link:active {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}

/* wp-block-columns styles */
.wp-block-columns {
  margin-bottom: 0;
}

@media (min-width: 48em) {
  .wp-block-columns {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.wp-block-column {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-bottom: 28px;
}

@media (min-width: 48em) {
  .wp-block-column {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.wp-block-column:nth-child(2n), .wp-block-column:not(:first-child) {
  margin-left: 0;
}

@media (min-width: 48em) {
  .wp-block-column:nth-child(2n), .wp-block-column:not(:first-child) {
    margin-left: 16px;
  }
}

.wp-block-column > *:last-child {
  margin-bottom: 0;
}

/* wp-block-media-text styles */
.wp-block-media-text {
  margin-bottom: 28px;
}

/* wp-block-separator styles */
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* wp-block-archives styles */
.wp-block-archives {
  margin-bottom: 28px;
}

/* wp-block-calendar styles */
/* wp-block-categories styles */
.wp-block-categories {
  margin-bottom: 28px;
}

/* wp-block-latest-comments styles */
.wp-block-latest-comments {
  margin-left: 0;
}

/* wp-block-latest-posts styles */
.wp-block-latest-posts {
  margin-left: 0;
}

@media (min-width: 48em) {
  .wp-block-latest-posts.columns-2 li {
    width: calc((100% / 2) - 16px);
  }
  .wp-block-latest-posts.columns-3 li {
    width: calc((100% / 3) - 16px);
  }
  .wp-block-latest-posts.columns-4 li {
    width: calc((100% / 4) - 16px);
  }
  .wp-block-latest-posts.columns-5 li {
    width: calc((100% / 5) - 16px);
  }
  .wp-block-latest-posts.columns-6 li {
    width: calc((100% / 6) - 16px);
  }
}

/* wp-block-search styles */
/* wp-block-rss styles */
.wp-block-rss.is-grid li {
  margin: 0 16px 16px 0;
}

@media (min-width: 48em) {
  .wp-block-rss.columns-2 li {
    width: calc((100% / 2) - 16px);
  }
  .wp-block-rss.columns-3 li {
    width: calc((100% / 3) - 16px);
  }
  .wp-block-rss.columns-4 li {
    width: calc((100% / 4) - 16px);
  }
  .wp-block-rss.columns-5 li {
    width: calc((100% / 5) - 16px);
  }
  .wp-block-rss.columns-6 li {
    width: calc((100% / 6) - 16px);
  }
}

/* wp-block-video styles */
/* wp-block-cover styles */
.wp-block-cover {
  margin-bottom: 28px;
}

.wp-block-cover .wp-block-cover__inner-container > *:last-child {
  margin-bottom: 0;
}

/* wp-block-audio styles */
/* common editor block styles */
body {
  background: #fff;
  color: #333333;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}

@media screen and (min-width: 48em) {
  body {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
  }
}

.editor-post-title__block .editor-post-title__input {
  font-family: "Lato", sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
}

/* Width of blocks */
.wp-block {
  margin-left: 0;
  max-width: 800px;
}

/* Width of "wide" blocks */
.wp-block[data-align="wide"] {
  max-width: calc(100% + 1.2rem + 92px);
  margin-left: calc(-.6rem - 46px);
  margin-right: calc(-.6rem - 46px);
}

@media screen and (min-width: 62em) {
  .wp-block[data-align="wide"] {
    margin-left: calc(-2.5rem - 46px);
    margin-right: calc(-2.5rem - 46px);
    max-width: calc(100% + 5rem + 92px);
  }
}

@media screen and (min-width: 93.375em) {
  .wp-block[data-align="wide"] {
    margin-left: calc(-4.875rem - 46px);
    margin-right: calc(-4.875rem - 46px);
    max-width: calc(100% + 7.75rem + 92px);
  }
}

/* Width of "full-wide" blocks */
.wp-block[data-align="full"] {
  max-width: calc(100% + 2.5rem + 92px);
  margin-left: calc(-1.25rem - 46px);
  margin-right: calc(-1.25rem - 46px);
}

@media screen and (min-width: 62em) {
  .wp-block[data-align="full"] {
    margin-left: calc(-5rem - 46px);
    margin-right: calc(-5rem - 46px);
    max-width: calc(100% + 10rem + 92px);
  }
}

@media screen and (min-width: 93.375em) {
  .wp-block[data-align="full"] {
    margin-left: calc(-9.75rem - 46px);
    margin-right: calc(-9.75rem - 46px);
    max-width: calc(100% + 19.5rem + 92px);
  }
}

.block-editor-writing-flow,
.editor-writing-flow {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

@media screen and (min-width: 62em) {
  .block-editor-writing-flow,
  .editor-writing-flow {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (min-width: 93.375em) {
  .block-editor-writing-flow,
  .editor-writing-flow {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

/* wp-block-paragraph editor styles */
/* wp-block-image editor styles */
/* wp-block-gallery editor styles */
/* wp-block-quote editor styles */
.wp-block-quote {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 48em) {
  .wp-block-quote {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.wp-block-quote .wp-block-quote__citation {
  margin-top: 1.45em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: inherit;
}

.wp-block-quote.has-text-align-right {
  border-right: 4px solid #01bea0;
}

.wp-block-quote.has-text-align-center {
  border-right: 4px solid #01bea0;
  border-left: 4px solid #01bea0;
}

.wp-block-quote.is-style-large {
  border-left: 4px solid #01bea0;
}

/* wp-block-file editor styles */
/* wp-block-code editor styles */
.wp-block-code {
  padding: 0;
  border-radius: 0;
  border: 0;
  font-size: 16px;
  font-size: 1rem;
}

.wp-block-code .editor-plain-text {
  color: inherit;
  font-size: inherit;
  font-family: "Lato", sans-serif;
  background: #f4f4f4;
  padding: 1.71429em 2.28571em;
  max-width: 100%;
  overflow: auto;
  line-height: 1.71429;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (min-width: 48em) {
  .wp-block-code .editor-plain-text {
    padding: 1.95em 1.45em;
  }
}

/* wp-block-preformatted editor styles */
@media screen and (min-width: 48em) {
  .wp-block-preformatted pre {
    padding: 1.95em 1.45em;
  }
}

/* wp-block-pullquote editor styles */
.wp-block-pullquote blockquote .block-editor-rich-text p {
  font-size: inherit;
}

.wp-block-pullquote .wp-block-pullquote__citation {
  margin-top: 1.45em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: inherit;
}

.wp-block-pullquote.is-style-solid-color {
  border: 0;
}

.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {
  margin-top: 1.45em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: inherit;
}

/* wp-block-table editor styles */
/* wp-block-verse editor styles */
.wp-block-verse pre {
  color: inherit;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 48em) {
  .wp-block-verse pre {
    padding: 1.95em 1.45em;
  }
}

/* wp-block-group editor styles */
/* wp-block-button editor styles */
/* wp-block-columns editor styles */
@media (min-width: 48em) {
  .wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="core/column"] {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

@media (min-width: 48em) {
  .wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout:nth-child(2n), .wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout:not(:first-child) {
  margin-left: 0;
}

@media (min-width: 48em) {
  .wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout:nth-child(2n), .wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout:not(:first-child) {
    margin-left: 16px;
  }
}

/* wp-block-media-text editor styles */
/* wp-block-separator editor styles */
/* wp-block-archives editor styles */
ul.wp-block-archives {
  padding-left: 0;
}

/* wp-block-calendar editor styles */
/* wp-block-categories editor styles */
.wp-block-categories ul {
  padding-left: 0;
}

/* wp-block-latest-comments editor styles */
/* wp-block-latest-posts editor styles */
/* wp-block-search editor styles */
/* wp-block-rss editor styles */
.wp-block-rss {
  padding-left: 0;
}

.wp-block-rss.is-grid li {
  margin: 0 16px 16px 0;
}

/* wp-block-video editor styles */
/* wp-block-cover editor styles */
/* wp-block-audio editor styles */
/* common getwid block styles */
.wp-block-getwid-images-slider,
.wp-block-getwid-media-text-slider,
.wp-block-getwid-post-slider,
.wp-block-getwid-post-carousel {
  margin-bottom: 28px;
}

@media (min-width: 48em) {
  .wp-block-getwid-images-slider,
  .wp-block-getwid-media-text-slider,
  .wp-block-getwid-post-slider,
  .wp-block-getwid-post-carousel {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.wp-block-getwid-images-slider .slick-prev,
.wp-block-getwid-images-slider .slick-next,
.wp-block-getwid-media-text-slider .slick-prev,
.wp-block-getwid-media-text-slider .slick-next,
.wp-block-getwid-post-slider .slick-prev,
.wp-block-getwid-post-slider .slick-next,
.wp-block-getwid-post-carousel .slick-prev,
.wp-block-getwid-post-carousel .slick-next {
  background: #01bea0;
  color: #fff;
  height: 50px;
  width: 50px;
  text-align: center;
  -webkit-transition: opacity ease-in-out .15s, color ease-in-out .15s, background ease-in-out .15s;
  -o-transition: opacity ease-in-out .15s, color ease-in-out .15s, background ease-in-out .15s;
  transition: opacity ease-in-out .15s, color ease-in-out .15s, background ease-in-out .15s;
  padding-bottom: 2px;
}

.wp-block-getwid-images-slider .slick-prev:hover,
.wp-block-getwid-images-slider .slick-next:hover,
.wp-block-getwid-media-text-slider .slick-prev:hover,
.wp-block-getwid-media-text-slider .slick-next:hover,
.wp-block-getwid-post-slider .slick-prev:hover,
.wp-block-getwid-post-slider .slick-next:hover,
.wp-block-getwid-post-carousel .slick-prev:hover,
.wp-block-getwid-post-carousel .slick-next:hover {
  background: #333333;
  color: #fff;
}

.wp-block-getwid-images-slider .slick-prev:before,
.wp-block-getwid-images-slider .slick-next:before,
.wp-block-getwid-media-text-slider .slick-prev:before,
.wp-block-getwid-media-text-slider .slick-next:before,
.wp-block-getwid-post-slider .slick-prev:before,
.wp-block-getwid-post-slider .slick-next:before,
.wp-block-getwid-post-carousel .slick-prev:before,
.wp-block-getwid-post-carousel .slick-next:before {
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  text-indent: 0;
  margin: 0;
  color: inherit;
  opacity: 1;
  text-shadow: none;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
}

.wp-block-getwid-images-slider .slick-prev,
.wp-block-getwid-media-text-slider .slick-prev,
.wp-block-getwid-post-slider .slick-prev,
.wp-block-getwid-post-carousel .slick-prev {
  padding-right: 3px;
  left: 25px;
}

@media (min-width: 48em) {
  .wp-block-getwid-images-slider .slick-prev,
  .wp-block-getwid-media-text-slider .slick-prev,
  .wp-block-getwid-post-slider .slick-prev,
  .wp-block-getwid-post-carousel .slick-prev {
    left: -60px;
  }
}

.wp-block-getwid-images-slider .slick-prev:before,
.wp-block-getwid-media-text-slider .slick-prev:before,
.wp-block-getwid-post-slider .slick-prev:before,
.wp-block-getwid-post-carousel .slick-prev:before {
  content: "";
}

.wp-block-getwid-images-slider .slick-next,
.wp-block-getwid-media-text-slider .slick-next,
.wp-block-getwid-post-slider .slick-next,
.wp-block-getwid-post-carousel .slick-next {
  padding-left: 3px;
  right: 25px;
}

@media (min-width: 48em) {
  .wp-block-getwid-images-slider .slick-next,
  .wp-block-getwid-media-text-slider .slick-next,
  .wp-block-getwid-post-slider .slick-next,
  .wp-block-getwid-post-carousel .slick-next {
    right: -60px;
  }
}

.wp-block-getwid-images-slider .slick-next:before,
.wp-block-getwid-media-text-slider .slick-next:before,
.wp-block-getwid-post-slider .slick-next:before,
.wp-block-getwid-post-carousel .slick-next:before {
  content: "";
}

@media (min-width: 48em) {
  .wp-block-getwid-images-slider.has-arrows-inside,
  .wp-block-getwid-media-text-slider.has-arrows-inside,
  .wp-block-getwid-post-slider.has-arrows-inside,
  .wp-block-getwid-post-carousel.has-arrows-inside {
    padding-right: 0;
    padding-left: 0;
  }
}

.wp-block-getwid-images-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-images-slider.has-arrows-inside .slick-next,
.wp-block-getwid-media-text-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-media-text-slider.has-arrows-inside .slick-next,
.wp-block-getwid-post-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-post-slider.has-arrows-inside .slick-next,
.wp-block-getwid-post-carousel.has-arrows-inside .slick-prev,
.wp-block-getwid-post-carousel.has-arrows-inside .slick-next {
  text-shadow: none;
}

.wp-block-getwid-images-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-media-text-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-post-slider.has-arrows-inside .slick-prev,
.wp-block-getwid-post-carousel.has-arrows-inside .slick-prev {
  left: 25px;
}

.wp-block-getwid-images-slider.has-arrows-inside .slick-next,
.wp-block-getwid-media-text-slider.has-arrows-inside .slick-next,
.wp-block-getwid-post-slider.has-arrows-inside .slick-next,
.wp-block-getwid-post-carousel.has-arrows-inside .slick-next {
  right: 25px;
}

.wp-block-getwid-images-slider.alignfull.has-arrows-outside,
.wp-block-getwid-media-text-slider.alignfull.has-arrows-outside,
.wp-block-getwid-post-slider.alignfull.has-arrows-outside,
.wp-block-getwid-post-carousel.alignfull.has-arrows-outside {
  padding-left: 0;
  padding-right: 0;
}

.getwid-padding-top-small {
  padding-top: 10px;
}

.getwid-padding-top-medium {
  padding-top: 25px;
}

.getwid-padding-top-normal {
  padding-top: 40px;
}

.getwid-padding-top-large {
  padding-top: 60px;
}

.getwid-padding-bottom-small {
  padding-bottom: 10px;
}

.getwid-padding-bottom-medium {
  padding-bottom: 25px;
}

.getwid-padding-bottom-normal {
  padding-bottom: 40px;
}

.getwid-padding-bottom-large {
  padding-bottom: 60px;
}

.getwid-padding-left-small {
  padding-left: 10px;
}

.getwid-padding-left-medium {
  padding-left: 25px;
}

.getwid-padding-left-normal {
  padding-left: 40px;
}

.getwid-padding-left-large {
  padding-left: 60px;
}

.getwid-padding-right-small {
  padding-right: 10px;
}

.getwid-padding-right-medium {
  padding-right: 25px;
}

.getwid-padding-right-normal {
  padding-right: 40px;
}

.getwid-padding-right-large {
  padding-right: 60px;
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-top-small {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-top-medium {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-top-normal {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-top-large {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-bottom-small {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-bottom-medium {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-bottom-normal {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-bottom-large {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-left-small {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-left-medium {
    padding-left: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-left-normal {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-left-large {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-right-small {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-right-medium {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-right-normal {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-padding-tablet-right-large {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-top-small {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-top-medium {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-top-normal {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-top-large {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-bottom-small {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-bottom-medium {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-bottom-normal {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-bottom-large {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-left-small {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-left-medium {
    padding-left: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-left-normal {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-left-large {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-right-small {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-right-medium {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-right-normal {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-padding-mobile-right-large {
    padding-right: 60px !important;
  }
}

.getwid-margin-top-small {
  margin-top: 10px !important;
}

.getwid-margin-top-medium {
  margin-top: 25px !important;
}

.getwid-margin-top-normal {
  margin-top: 40px !important;
}

.getwid-margin-top-large {
  margin-top: 60px !important;
}

.getwid-margin-bottom-small {
  margin-bottom: 10px !important;
}

.getwid-margin-bottom-medium {
  margin-bottom: 25px !important;
}

.getwid-margin-bottom-normal {
  margin-bottom: 40px !important;
}

.getwid-margin-bottom-large {
  margin-bottom: 60px !important;
}

.getwid-margin-left-small {
  margin-left: 10px;
}

.getwid-margin-left-medium {
  margin-left: 25px;
}

.getwid-margin-left-normal {
  margin-left: 40px;
}

.getwid-margin-left-large {
  margin-left: 60px;
}

.getwid-margin-right-small {
  margin-right: 10px;
}

.getwid-margin-right-medium {
  margin-right: 25px;
}

.getwid-margin-right-normal {
  margin-right: 40px;
}

.getwid-margin-right-large {
  margin-right: 60px;
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-top-small {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-top-medium {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-top-normal {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-top-large {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-bottom-small {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-bottom-medium {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-bottom-normal {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-bottom-large {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-left-small {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-left-medium {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-left-normal {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-left-large {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-right-small {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-right-medium {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-right-normal {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-margin-tablet-right-large {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-top-small {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-top-medium {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-top-normal {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-top-large {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-bottom-small {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-bottom-medium {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-bottom-normal {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-bottom-large {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-left-small {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-left-medium {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-left-normal {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-left-large {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-right-small {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-right-medium {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-right-normal {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-margin-mobile-right-large {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-font-size-tablet-small {
    font-size: 0.5em !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-font-size-tablet-normal {
    font-size: 1em !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-font-size-tablet-large {
    font-size: 1.5em !important;
  }
}

@media screen and (max-width: 61.9375em) {
  .getwid-font-size-tablet-huge {
    font-size: 2em !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-font-size-mobile-small {
    font-size: 0.5em !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-font-size-mobile-normal {
    font-size: 1em !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-font-size-mobile-large {
    font-size: 1.5em !important;
  }
}

@media screen and (max-width: 47.9375em) {
  .getwid-font-size-mobile-huge {
    font-size: 2em !important;
  }
}

/* wp-block-getwid-accordion styles */
/* wp-block-getwid-advanced-heading styles */
/* wp-block-getwid-banner styles */
.wp-block-getwid-banner {
  margin-bottom: 28px;
}

/* wp-block-getwid-button-group styles */
.wp-block-getwid-button-group {
  margin-bottom: 28px;
}

/* wp-block-getwid-circle-progress-bar styles */
.wp-block-getwid-circle-progress-bar {
  margin-bottom: 28px;
}

/* wp-block-getwid-contact-form styles */
.wp-block-getwid-contact-form {
  margin-bottom: 28px;
}

/* wp-block-getwid-content-timeline styles */
/* wp-block-getwid-countdown styles */
.wp-block-getwid-countdown {
  margin-bottom: 28px;
}

/* wp-block-getwid-counter styles */
.wp-block-getwid-counter {
  margin-bottom: 28px;
}

/* wp-block-getwid-custom-post-type styles */
.wp-block-getwid-custom-post-type {
  margin-bottom: 28px;
}

.wp-block-getwid-custom-post-type .wp-block-getwid-custom-post-type__post {
  margin-top: 60px;
}

.wp-block-getwid-custom-post-type .wp-block-getwid-custom-post-type__post .wp-block-getwid-custom-post-type__post-title a {
  text-decoration: none;
  color: inherit;
}

.wp-block-getwid-custom-post-type .wp-block-getwid-custom-post-type__post .wp-block-getwid-custom-post-type__post-title a:hover {
  color: #01bea0;
}

/* wp-block-getwid-icon styles */
.wp-block-getwid-icon {
  margin-bottom: 28px;
}

/* wp-block-getwid-icon-box styles */
.wp-block-getwid-icon-box {
  margin-bottom: 28px;
}

/* wp-block-getwid-image-box styles */
.wp-block-getwid-image-box {
  margin-bottom: 28px;
}

/* wp-block-getwid-image-hotspot styles */
.wp-block-getwid-image-hotspot {
  margin-bottom: 28px;
}

/* wp-block-getwid-image-slider styles */
/* wp-block-getwid-image-stack styles */
.wp-block-getwid-images-stack {
  margin-bottom: 28px;
}

/* wp-block-getwid-instagram styles */
.wp-block-getwid-instagram {
  margin-bottom: 28px;
}

/* wp-block-getwid-mailchimp styles */
.wp-block-getwid-mailchimp {
  margin-bottom: 28px;
}

/* wp-block-getwid-map styles */
.wp-block-getwid-map {
  margin-bottom: 28px;
}

/* wp-block-getwid-media-text-slider styles */
/* wp-block-getwid-person styles */
.wp-block-getwid-person {
  margin-bottom: 28px;
}

/* wp-block-getwid-posts-carousel styles */
.wp-block-getwid-post-carousel {
  overflow: hidden;
}

.wp-block-getwid-post-carousel .wp-block-getwid-post-carousel__post .wp-block-getwid-post-carousel__post-title {
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 48em) {
  .wp-block-getwid-post-carousel .wp-block-getwid-post-carousel__post .wp-block-getwid-post-carousel__post-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.wp-block-getwid-post-carousel .wp-block-getwid-post-carousel__post .wp-block-getwid-post-carousel__post-title a {
  color: inherit;
  text-decoration: none;
}

.wp-block-getwid-post-carousel .wp-block-getwid-post-carousel__post .wp-block-getwid-post-carousel__post-title a:hover {
  color: #01bea0;
}

/* wp-block-getwid-posts-slider styles */
.wp-block-getwid-post-slider .wp-block-getwid-post-slider__post .wp-block-getwid-post-slider__post-title a {
  text-decoration: none;
}

.wp-block-getwid-post-slider .wp-block-getwid-post-slider__post .wp-block-getwid-post-slider__post-title a:hover {
  color: #01bea0;
}

/* wp-block-getwid-price-box styles */
.wp-block-getwid-price-box {
  margin-bottom: 28px;
}

/* wp-block-getwid-price-list styles */
.wp-block-getwid-price-list {
  margin-bottom: 28px;
}

.wp-block-getwid-price-list .wp-block-getwid-price-list__title a {
  text-decoration: none;
  color: inherit;
}

.wp-block-getwid-price-list .wp-block-getwid-price-list__title a:hover {
  color: #01bea0;
}

/* wp-block-getwid-progress-bar styles */
.wp-block-getwid-progress-bar {
  margin-bottom: 28px;
}

/* wp-block-getwid-recent-posts styles */
.wp-block-getwid-recent-posts {
  margin-bottom: 28px;
}

.wp-block-getwid-recent-posts .wp-block-getwid-recent-posts__post .wp-block-getwid-recent-posts__post-title a {
  color: inherit;
  text-decoration: none;
}

.wp-block-getwid-recent-posts .wp-block-getwid-recent-posts__post .wp-block-getwid-recent-posts__post-title a:hover {
  color: #01bea0;
}

/* wp-block-getwid-section styles */
.wp-block-getwid-section {
  margin-bottom: 28px;
}

/* wp-block-getwid-social-links styles */
.wp-block-getwid-social-links {
  margin-bottom: 28px;
}

/* wp-block-getwid-tabs styles */
.wp-block-getwid-tabs {
  margin-bottom: 28px;
}

/* wp-block-getwid-testimonial styles */
.wp-block-getwid-testimonial {
  margin-bottom: 28px;
}

/* wp-block-getwid-toggle styles */
.wp-block-getwid-toggle {
  margin-bottom: 28px;
}

/* wp-block-getwid-video-popup styles */
.wp-block-getwid-video-popup {
  margin-bottom: 28px;
}

/* wp-block-getwid-video-popup styles */
.wp-block-getwid-video-popup {
  margin-bottom: 28px;
}

/* common getwid block editor styles */
/* wp-block-getwid-accordion editor styles */
/* wp-block-getwid-advanced-heading editor styles */
/* wp-block-getwid-banner editor styles */
/* wp-block-getwid-button-group editor styles */
.wp-block-getwid-button-group .wp-block-button {
  margin-bottom: 0;
}

/* wp-block-getwid-circle-progress-bar editor styles */
/* wp-block-getwid-contact-form editor styles */
/* wp-block-getwid-content-timeline editor styles */
/* wp-block-getwid-countdown editor styles */
/* wp-block-getwid-counter editor styles */
/* wp-block-getwid-custom-post-type editor styles */
/* wp-block-getwid-icon editor styles */
/* wp-block-getwid-icon-box editor styles */
/* wp-block-getwid-image-box editor styles */
/* wp-block-getwid-image-hotspot editor styles */
/* wp-block-getwid-image-slider editor styles */
/* wp-block-getwid-image-stack editor styles */
/* wp-block-getwid-instagram editor styles */
/* wp-block-getwid-mailchimp editor styles */
/* wp-block-getwid-map editor styles */
/* wp-block-getwid-media-text-slider editor styles */
/* wp-block-getwid-person editor styles */
/* wp-block-getwid-posts-carousel editor styles */
/* wp-block-getwid-posts-slider editor styles */
/* wp-block-getwid-price-box editor styles */
/* wp-block-getwid-price-list editor styles */
/* wp-block-getwid-progress-bar editor styles */
/* wp-block-getwid-recent-posts editor styles */
/* wp-block-getwid-section editor styles */
/* wp-block-getwid-social-links editor styles */
/* wp-block-getwid-tabs editor styles */
/* wp-block-getwid-testimonial editor styles */
/* wp-block-getwid-toggle editor styles */
/* wp-block-getwid-video-popup editor styles */
/* wp-block-getwid-video-popup editor styles */
:root .has-secondary-color {
  color: #333;
}

:root .has-secondary-background-color {
  background-color: #333;
}

:root .has-light-gray-color {
  color: #ececec;
}

:root .has-light-gray-background-color {
  background-color: #ececec;
}

:root .has-primary-color {
  color: #01bea0;
}

:root .has-primary-background-color {
  background-color: #01bea0;
}

:root .has-gray-color {
  color: #e0e1e5;
}

:root .has-gray-background-color {
  background-color: #e0e1e5;
}

:root .has-white-color {
  color: #fff;
}

:root .has-white-background-color {
  background-color: #fff;
}

:root .has-black-color {
  color: #000;
}

:root .has-black-background-color {
  background-color: #000;
}

html .mceContentBody {
  max-width: 886px;
}
