/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
## Bootstrap Sameheight
## Miscellaneous
## Font Fix Screen
--------------------------------------------------------------*/

/* - Normalize - */
* {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
  }
  html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  body {
    margin: 0;
    overflow-x: hidden;
  }
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  audio,
  canvas,
  progress,
  video {
    display: inline-block;
    vertical-align: baseline;
  }
  footer caption {
    color: #7a7c93;
  }
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  [hidden],
  template {
    display: none;
  }
  a {
    background-color: transparent;
  }
  a:active,
  a:focus,
  a:hover {
    outline: none !important;
  }
  abbr[title] {
    border-bottom: 1px dotted;
  }
  b,
  strong {
    font-weight: bold;
  }
  dfn {
    font-style: italic;
  }
  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,
  tt,
  var {
    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;
    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;
  }
  .wp-block-search__input {
    width: 100%;
    height: 45px;
    padding: 0 8px;
    border-radius: 5px;
    background-color: #FFF;
    border: 1px solid #D1D1D1;
  }
  .wp-block-search__input:focus-visible {
    outline: 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;
    margin: 15px 0;
    width: 100%;
  }
  .wp-block-table thead {
    border: none;
  }
  td,
  th {
    padding: 0;
  }
  
  /* - Typography -*/
  p {
    margin-bottom: 20px;
  }
  dfn,
  cite,
  em {
    font-style: italic;
  }
  cite {
    font-weight: 500;
  }
  address {
    margin: 0 0 1.5em;
  }
  pre {
    background: #fff;
    font-family: Menlo,Consolas,monaco,monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
  }
  abbr,
  acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
  }
  mark,
  ins {
    background: transparent;
    text-decoration: none;
  }
  big {
    font-size: 125%;
  }
  
  /* - Elements -*/
  html {
    box-sizing: border-box;
  }
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  body {
    background: #fff;
  }
  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 1em 1em 0;
    padding-right: 20px;
  }
  ul {
    list-style: disc;
  }
  ol {
    list-style: decimal;
  }
  li > ul,
  li > ol {
    margin-bottom: 0;
    margin-right: 1.3em;
  }
  dt {
    font-weight: bold;
    margin-bottom: 10px;
  }
  dd {
    margin: 0 1.5em 1.5em;
  }
  img {
    height: auto;
    max-width: 100%;
  }
  figure {
    margin: 1em 0;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 15px 0;
    width: 100%;
  }
  table th,
  table td {
    border: 1px solid #e3e3e3;
    padding: 5px;
    text-align: center;
  }
  .wp-block-file .wp-block-file__button {
    line-height: 18px;
    padding: 10px 20px;
    background-color: #D0EFEE;
    color: var(--petslist-heading-color);
  }
  .wp-block-file .wp-block-file__button:hover {
    color: #ffffff;
    background-color: var(--petslist-primary-color);
  }
  /* - Forms -*/
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    background-color: var(--petslist-primary-color);
    border: medium none;
    color: inherit;
    padding: 2px 15px;
    color: #fff;
    border-radius: 4px;
    border-color: var(--petslist-primary-color) !important;
  }
  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 {
    width: 100%;
    color: #bbbbbb;
    height: 50px;
    padding: 0 20px;
  }
  select {
    border: 1px solid #ccc;
  }
  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;
  }
  textarea {
    width: 100%;
  }
  form.post-password-form label > input {
      background: #fff;
      border: 1px solid #dfdfdf;
      padding: 10px 8px;
    border-radius: 4px;	
  }
  form.post-password-form input {
      padding: 16px 15px;
      font-weight: 700;
  }
  select:focus {
    outline: none;
  }
  select:-webkit-focusring,
  select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
  }
  
  /* - Links -*/
  a:link,
  a:visited {
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      text-decoration: none;
  }
  a:hover,
  a:focus,
  a:active {
    text-decoration: none;
  }
  a:focus {
    outline: thin dotted;
  }
  a:hover,
  a:active {
    outline: 0;
  }
  
  /* - Accessibility -*/
  .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;
    right: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
  }
  #content[tabindex="-1"]:focus {
    outline: 0;
  }
  
  /* - Alignments -*/
  .alignleft {
    display: inline;
    float: right;
    margin-left: 1.5em;
  }
  .alignright {
    display: inline;
    float: left;
    margin-right: 1.5em;
    clear: both;
  }
  .aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: 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 - */
  .widget {
    margin: 0 0 1.875em;
  }
  .widget select {
    padding: 8px 10px;
      width: 100%;
      outline: none;
      border: 1px solid #D6E2E2;
      background-color: transparent;
  }
  footer .widget select {
    border-color: #7a7c93;
  }
  
  /* - Content - */
  .sticky {
      display: block;
  }
  .blog-style-1 .sticky {
      display: block;
      margin-bottom: 15px;
      padding: 30px 30px 1px;
  }
  .blog-block.sticky,
  .sticky .blog-block--style1,
  .sticky .blog-block--style2 .blog-block__content {
    background-color: #fef1f3;
  }
  .byline,
  .updated:not(.published) {
    display: none;
  }
  .single .byline,
  .group-blog .byline {
    display: inline;
  }
  .page-links {
    clear: both;
    margin: 0 0 1.5em;
  }
  
  /* - Comments - */
  .comment-content a {
    word-wrap: break-word;
  }
  .bypostauthor {
    display: block;
  }
  ol.wp-block-latest-comments {
    padding-right: 0;
  }
  
  /* - Infinite scroll - */
  .infinite-scroll .posts-navigation,
  .infinite-scroll.neverending .site-footer {
    display: none;
  }
  .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;
  }
  embed,
  iframe,
  object {
    max-width: 100%;
  }
  .responsive-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
  }
  .responsive-container iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* - Captions - */
  .wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
  }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-right: auto;
    margin-left: 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;
    vertical-align: top;
    width: 100%;
  }
  .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;
  }
  
  /* - Posts and pages - */
  .byline,
  .updated:not(.published) {
    display: none;
  }
  .page-links {
    clear: both;
    margin: 0 0 1.5em;
  }
  
  /* Gutenberg */
  .has-large-font-size {
    line-height: 1.2;
  }
  .wp-block-group.has-background {
      margin-bottom: 20px;
  }
  ul.wp-block-post-template {
    margin: 0;
  }
  ul.wp-block-post-template li {
      margin-bottom: 30px;
  }
  ul.wp-block-post-template .wp-block-post-title {
      margin-bottom: 12px;
  }
  nav.wp-block-query-pagination {
    margin-bottom: 20px;
  }
  .wp-block-cover {
    margin-bottom: 20px;
  }
  .wp-block-media-text,
  .wp-block-video {
    margin-top: 20px;
  }
  .wp-block-table tfoot {
    border-top: 0;
  }
  /* - Bootstrap Sameheight - */
  @media (min-width: 1200px) {
    .auto-clear > .col-lg-1:nth-child(12n+1) {
      clear: right;
    }
    .auto-clear > .col-lg-2:nth-child(6n+1) {
      clear: right;
    }
    .auto-clear > .col-lg-3:nth-child(4n+1) {
      clear: right;
    }
    .auto-clear > .col-lg-4:nth-child(3n+1) {
      clear: right;
    }
    .auto-clear > .col-lg-6:nth-child(odd) {
      clear: right;
    }
  }
  @media (min-width: 992px) and (max-width: 1199px) {
    .auto-clear > .col-md-1:nth-child(12n+1) {
      clear: right;
    }
    .auto-clear > .col-md-2:nth-child(6n+1) {
      clear: right;
    }
    .auto-clear > .col-md-3:nth-child(4n+1) {
      clear: right;
    }
    .auto-clear > .col-md-4:nth-child(3n+1) {
      clear: right;
    }
    .auto-clear > .col-md-6:nth-child(odd) {
      clear: right;
    }
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .auto-clear > .col-sm-1:nth-child(12n+1) {
      clear: right;
    }
    .auto-clear > .col-sm-2:nth-child(6n+1) {
      clear: right;
    }
    .auto-clear > .col-sm-3:nth-child(4n+1) {
      clear: right;
    }
    .auto-clear > .col-sm-4:nth-child(3n+1) {
      clear: right;
    }
    .auto-clear > .col-sm-6:nth-child(odd) {
      clear: right;
    }
  }
  @media (max-width: 767px) {
    .auto-clear > .col-1:nth-child(12n+1) {
      clear: right;
    }
    .auto-clear > .col-2:nth-child(6n+1) {
      clear: right;
    }
    .auto-clear > .col-3:nth-child(4n+1) {
      clear: right;
    }
    .auto-clear > .col-4:nth-child(3n+1) {
      clear: right;
    }
    .auto-clear > .col-6:nth-child(odd) {
      clear: right;
    }
  }
  
  /* - Miscellaneous - */
  @media (min-width: 768px) and (max-width: 991px) {
    .ipad-fix {
      width: 100%;
    }
    .ipad-fix-pad {
      width: 100%;
      padding-bottom: 30px;
    }
    .ipad-width-50,
    .width-50 {
      width: 50%;
    }
    .center-background {
      background: none;
    }
  }
  @media ( max-width: 767px ) {
    .ipad-fix-pad {
      width: 100%;
      padding-bottom: 30px;
    }
  }
  .padding-right-fix {
    padding-left: 50px;
  }
  @media ( max-width: 767px ) {
    .padding-right-fix {
      padding-left: 0px;
    }
  }
  .no-gutter > [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Button */
  .wp-block-button {
    margin-bottom: 15px;
  }
  .wp-block-button.aligncenter {
    text-align: center;
  }
  
  /* Gutenberg Color */
  .has-petslist-primary-background-color.is-style-solid-color blockquote {
    background: var(--petslist-primary-color);
  }
  .has-petslist-secondary-background-color.is-style-solid-color blockquote {
    background: var(--petslist-secondary-color);
  }
  .has-petslist-dark-gray-background-color.is-style-solid-color blockquote {
    background: #070c3e;
  }
  .has-petslist-light-gray-background-color.is-style-solid-color blockquote {
    background: #F6F9F9;
  }
  
  .has-petslist-primary-color { color: var(--petslist-primary-color); }
  .has-petslist-secondary-color { color: var(--petslist-secondary-color); }
  .has-petslist-dark-gray-color { color: #070c3e; }
  .has-petslist-light-gray-color { color: #F6F9F9; }
  
  .has-petslist-primary-background-color { background-color: var(--petslist-primary-color);}
  .has-petslist-secondary-background-color { background-color: var(--petslist-secondary-color);}
  .has-petslist-dark-gray-background-color { background-color: #070c3e; }
  .has-petslist-light-gray-background-color { background-color: #F6F9F9;}
  
  .wp-block-button a.has-petslist-primary-color { color: var(--petslist-primary-color);}
  .wp-block-button a.has-petslist-secondary-color { color: var(--petslist-secondary-color);}
  .wp-block-button a.has-petslist-dark-gray-color { color: #070c3e;}
  .wp-block-button a.has-petslist-light-gray-color { color: #F6F9F9;}
  
  .wp-block-button .has-petslist-primary-background-color { background-color: var(--petslist-primary-color);}
  .wp-block-button .has-petslist-secondary-background-color { background-color: var(--petslist-secondary-color);}
  .wp-block-button .has-petslist-dark-gray-background-color { background-color: #070c3e;}
  .wp-block-button .has-petslist-light-gray-background-color { background-color: #F6F9F9;}