/*!
Theme Name: vividgreetings
Theme URI: http://vividgreetings.com/
Author: Expanda
Author URI: http://expanda.co/
Description: Custom theme for vividgreetings.com
Version: 1.0.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
:root {
	--blue-light: #0e49a0;
	--blue: #06306e;
	--blue-dark: #021b53;
	--sky-blue: #649ff7;

	--gold: #a18e65;
	--gold-light: #c7b895;
	--gold-extra-light: #efe1c4;

	--font-color: #0c0c0c;
	--row-width: 1720px;

	--h1-font-size: 48px;
	--h2-font-size: 32px;
	--h3-font-size: 28px;
	--h4-font-size: 24px;
	--h5-font-size: 20px;
	--h6-font-size: 16px;

	--font-size--large: 32px;
	--font-size--medium: 20px;
}

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--font-color);
	font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 500;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1 {
	font-size: var(--h1-font-size);
}

h2 {
	font-size: var(--h2-font-size);
}

h3 {
	font-size: var(--h3-font-size);
}

h4 {
	font-size: var(--h4-font-size);
}

h5 {
	font-size: var(--h5-font-size);
	text-transform: uppercase;
	margin: 0;
	color: var(--gold);
}

h6 {
	font-size: var(--h6-font-size);
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: var(--gold);
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: var(--gold-light);
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
.button,
button:not(.naked-link),
input[type="button"],
input[type="reset"],
input[type="submit"],
.hero__content a,
.wp-block-button__link {
	color: var(--font-color);
	text-transform: uppercase;
	font-weight: 600;
	border: 4px solid var(--gold-light);
	background: var(--gold);
	background: linear-gradient(90deg, var(--gold) 0%, var(--gold-extra-light) 47%, var(--gold) 100%);
	padding: 14px 30px 16px;
	border-radius: 6px;
	cursor: pointer;
	display: inline-block;
}

.wp-block-button__link:active, .wp-block-button__link:focus, .wp-block-button__link:hover, .wp-block-button__link:visited {
	color: var(--font-color);
}

.button:hover,
button:not(.naked-link):hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.hero__content a:hover,
.wp-block-button__link:hover {
	color: var(--font-color);
	background: linear-gradient(90deg, var(--gold-extra-light) 0%, var(--gold) 47%, var(--gold-extra-light) 100%);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

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: var(--font-color);
}

/* clears the 'X' from Internet Explorer */
input.hide-clear[type=search]::-ms-clear,
input.hide-clear[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; 
}

/* clears the 'X' from Chrome */
input.hide-clear[type="search"]::-webkit-search-decoration,
input.hide-clear[type="search"]::-webkit-search-cancel-button,
input.hide-clear[type="search"]::-webkit-search-results-button,
input.hide-clear[type="search"]::-webkit-search-results-decoration {
  display: none; 
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.search-form {
	position: relative;
	max-width: 900px;
	margin-left: auto;
	width: 100%;
}

input.search-form__field {
	padding-right: 40px;
	text-align: right;
	width: 100%;
	-webkit-appearance:none;
}

.search-form__submit {
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;
	border: none;
	padding: 0 10px;
	height: 100%;
	display: flex;
	align-items: center;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.clamp, .wp-block-columns, .wp-block-group__inner-container {
	max-width: var(--row-width);
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.clamp--narrow {
	max-width: 1000px;
}

.wp-block-columns {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.site-header {
	background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
	padding: 20px;
}

.site-header__content {
	display: grid;
	grid-template-areas: "logo search"
		"logo navigation";
	grid-template-columns: 240px 1fr;
	grid-template-rows: auto 30px;
	grid-column-gap: 120px;
	max-width: 1400px;
}

.site-branding {
	grid-area: logo;
}

.site-title { margin: 0; }

.site-search {
	grid-area: search;
	display: flex;
	align-items: center;
}

.site-navigation {
	grid-area: navigation;
	width: 100%;
}

.hero {
	border-bottom: 20px solid var(--gold);
	position: relative;
}

.hero__content {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
	z-index: 5;
}

.hero__content h1 {
	color: #fff;
	font-weight: normal;
	margin: 2em 0 0;
}

.hero__content h2 {
	color: var(--sky-blue);
	margin: 0 0 1em;
}

.hero__content a {
	padding: 12px 24px;
	font-size: 1.25rem;
}

.hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.featured-cards__content {
	display: flex;
	align-items: center;
}

.featured-cards__text {
	flex: 1;
	font-size: 20px;
}

.featured-cards__cards {
	flex: 2;
	padding-left: 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 32px;
}

.ecard-list__content {
	display: grid;
	grid-template-areas: 
		"menu header"
		"menu content"
		"menu loading";
	grid-template-columns: 300px 1fr;
	padding: 60px 20px;
}

.ecard-list__menu {
	grid-area: menu;
	position: sticky;
	top: 0;
}

.ecard-list__menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecard-list__menu ul ul {
	margin-left: 20px;
}

.ecard-list__menu a {
	position: relative;
	padding: 6px 0 6px 20px;
	display: block;
	color: var(--font-color);
}

.ecard-list__menu .selected {
	font-weight: bold;
}

.ecard-list__menu a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -7px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 10px;
	border-color: transparent transparent transparent var(--gold);
}

.ecard-list__header {
	grid-area: header;
	margin-bottom: 40px;
}

.ecard-list__header p:first-child {
	margin-top: 0;
}

.ecard-list__header p:last-child {
	margin-bottom: 0;
}

.ecard-list__title {
	font-size: var(--font-size--large);
	margin: 0 0 20px;
}

.ecard-list__cards {
	grid-area: content;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	--card-width: 100%;
	--card-margin: 0px;
	margin: 0 calc(var(--card-margin) / -2);
}

.ecard-list .ecard {
	flex: 0 0 calc(var(--card-width) - var(--card-margin));
	width: calc(var(--card-width) - var(--card-margin));
	margin: 0 calc(var(--card-margin) / 2) 30px;
}

@media screen and (min-width: 56em) {
	.ecard-list__cards {
		--card-margin: 20px;
		--card-width: 50%;
	}
}

@media screen and (min-width: 75em) {
	.ecard-list__cards {
		--card-width: 33.3333%;
	}
}

@media screen and (min-width: 98em) {
	.ecard-list__cards {
		--card-width: 25%;
	}
}

@media screen and (min-width: 112em) {
	.ecard-list__cards {
		--card-width: 20%;
	}
}

.ecard__title {
	text-align: center;
	color: var(--font-color);
	transition: all 0.4s;
	margin-top: 12px;
}

.ecard:hover .ecard__title {
	color: var(--gold);
}

.ecard-list__cards--loading {
	grid-area: loading;
}

.ecard--skeleton {
	transition: all 0.4s;
}

.ecard-list__cards.no-more-to-load .ecard--skeleton {
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.ecard__image {
	width: 100%;
	aspect-ratio: 16/9;
	position: relative;
	overflow: hidden;
}

.ecard__image img,
.ecard__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.4s;
}

.ecard__video {
	opacity: 0;
	visibility: hidden;
}

.ecard.js-video-loaded:hover .ecard__image img {
	opacity: 0;
}

.ecard.js-video-loaded:hover .ecard__video {
	opacity: 1;
	visibility: visible;
}

@-webkit-keyframes placeholderShimmer {
	0% {
	  background-position: -468px 0;
	}
  
	100% {
	  background-position: 468px 0;
	}
}

line,
square,
rectangle,
.shimmer {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 1000px;
  display: inline-block;
  position: relative;

  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
}

line {
	height: 1em;
	width: 100%;
}

rectangle {
	width: 100%;
	aspect-ratio: 16/9;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 5px 15px;
	font-size: 1.25rem;
}

.main-navigation li:last-child a {
	padding-right: 0;
}

.main-navigation a:hover {
	color: var(--gold);
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 1100px;
		margin-left: auto;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

.custom-work .wp-block-columns {
	max-width: 1480px;
	padding-top: 70px;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	text-decoration: underline;
}

.site-footer__contact {
	background: var(--gold);
	background: linear-gradient(90deg, var(--gold) 0%, var(--gold-extra-light) 47%, var(--gold) 100%);
	padding: 50px 20px;
	font-size: 1.5rem;
	text-align: center;
}

.site-footer__contact a {
	color: var(--blue-light);
}

.site-footer__subscribe {
	background: var(--blue-dark);
	padding: 32px 0;
	color: #fff;
}

.site-footer__subscription-form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer__subscription-fields {
	display: flex;
	flex-wrap: wrap;
	margin-left: 80px;
}

.site-footer__subscription-form label {
	flex: 0 0 100%;
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.site-footer__subscription-form button {
	padding: 8px 24px;
	flex: 0 0 auto;
}

.site-footer__subscription-form input {
	flex: 1;
	text-align: right;
	margin-right: 32px;
	padding: 10px 20px;
	border-radius: 6px;
}

.site-footer__widgets {
	background: var(--blue);
	padding: 150px 0;
	color: #fff;
}

.site-footer__widgets .widget {
	max-width: 1280px;
	margin: 0 auto;
}

.site-footer__copyright {
	background: var(--blue);
	color: #fff;
	text-align: center;
	padding: 32px 20px;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.white-text, .text--white {
	color: #fff;
}

.suck-content-up {
	margin-bottom: -80px;
}

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.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;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
