/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

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

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

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

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

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

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  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.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

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

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


h1,
h2,
h3,
h4,
h5,
hr,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

[x-cloak] { display: none;
}

.normal-font {
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.sidebar-banners .ad-400x170 .adsanity-inner {
  height: auto;
  padding-bottom: inherit;
}

.ad-row {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ad-alignnone .ad-row>div {
  margin: 0px;
}

.grande-banners .ad-alignnone {
  gap: 1rem;
}

@media (min-width: 640px) {
  .grande-banners .ad-alignnone {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.petite-1 .ad-alignnone {
  gap: 1rem;
}

@media (min-width: 640px) {
  .petite-1 .ad-alignnone {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

article p, article.post-content ul, article.page ul, article hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

article.post ol li, article.page ol li {
  list-style-type: decimal;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  margin-left: 2rem;
}

article.page ul li, article.post ul li, article.post-content ul li {
  list-style-type: disc;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  margin-left: 2rem;
}

article.post ul.gform_fields li, article.page ul.gform_fields li {
  list-style-type: none;
}

#menu-dashboard-1 li {
  list-style-type: none;
  margin: 0.25rem;
}

body > p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.btn {
  --tw-border-opacity: 1;
  border-color: rgba(12, 52, 85, var(--tw-border-opacity));
  border-width: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  text-transform: uppercase;
}

h3 span.ptag { font-weight: 700; font-size: 1.5rem; line-height: 2rem;
}

.ptag {
  --tw-bg-opacity: 1;
  background-color: rgba(88, 135, 171, var(--tw-bg-opacity));
  display: inline-block;
  font-family: Elsie, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.gform_wrapper {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  max-width: 20rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 640px) {
  .gform_wrapper {
    border-radius: 0.375rem;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .gform_wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
  }
}

.pdw-glogin .gform_wrapper {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.pdw-glogin > p {
  margin: 2rem;
}

.gform_title { font-size: 1rem; line-height: 1.5rem; margin-bottom: 1rem;
}

.ginput_container input[type=url], .ginput_container input[type=email], .ginput_container input[type=tel], .ginput_container input[type=text], .ginput_container input[type=password], .ginput_container select {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-radius: 0.25rem;
  border-width: 1px;
  display: block;
  height: 2.25rem;
  margin-bottom: 0.5rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.ginput_container input[type=url]::-moz-placeholder, .ginput_container input[type=email]::-moz-placeholder, .ginput_container input[type=tel]::-moz-placeholder, .ginput_container input[type=text]::-moz-placeholder, .ginput_container input[type=password]::-moz-placeholder, .ginput_container select::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.ginput_container input[type=url]:-ms-input-placeholder, .ginput_container input[type=email]:-ms-input-placeholder, .ginput_container input[type=tel]:-ms-input-placeholder, .ginput_container input[type=text]:-ms-input-placeholder, .ginput_container input[type=password]:-ms-input-placeholder, .ginput_container select:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.ginput_container input[type=url]::placeholder, .ginput_container input[type=email]::placeholder, .ginput_container input[type=tel]::placeholder, .ginput_container input[type=text]::placeholder, .ginput_container input[type=password]::placeholder, .ginput_container select::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.ginput_container input[type=url], .ginput_container input[type=email], .ginput_container input[type=tel], .ginput_container input[type=text], .ginput_container input[type=password], .ginput_container select {
  --tw-text-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-text-opacity));
  width: 100%;
}

.gform_submission_error {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.ginput_container_textarea textarea{
  padding: 0.5rem;
}

.ginput_container_textarea textarea::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.ginput_container_textarea textarea:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.ginput_container_textarea textarea::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.ginput_container_textarea textarea {
  --tw-text-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-text-opacity));
  width: 100%;
}

@media (min-width: 640px) {
  .ginput_complex {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ginput_complex span label {
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.gfield_radio {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 640px) {
  .gfield_radio {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gfield_radio label {
  margin-left: 0.25rem;
}

.gfield_radio li {
  padding-bottom: 0.25rem;
}

#gform_fields_7 .gfield_label {
  display: none;
}

.gform_confirmation_message_7 {
  --tw-text-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-text-opacity));
}

/*
    .ginput_container > input,
    .ginput_container > select {
        @apply w-full h-9 mb-2 py-1 px-2 text-sm placeholder-pdw-dark focus:ring-indigo-500 focus:border-indigo-500 block border-pdw-gray;
    }
    */

.gfield.gf-half, .gfield.gf-left-half {
  grid-column: span 1 / span 1;
}

.gform_validation_container {
  display: none;
}

.gform_footer .gform_button {
  min-width: 25%;
  --tw-bg-opacity: 1;
  background-color: rgba(204, 153, 146, var(--tw-bg-opacity));
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  text-transform: uppercase;
}

.validation_message, .validation_error {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.pum-content.popmake-content {
  outline: none;
}

.gform_fields {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gfield, .gfield--width-full {
  grid-column: span 2 / span 2;
}

.gfield.gfield--width-half {
  grid-column: span 1 / span 1;
}

#gform_wrapper_59 {
  background-color: transparent;
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#gform_wrapper_61 {
  background-color: transparent;
  padding-bottom: 0px;
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

textarea#input_61_4 {
  max-height: 120px;
}

#gform_wrapper_59 input::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

#gform_wrapper_59 input:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

#gform_wrapper_59 input::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.gfield_required {
  padding-left: 0.25rem;
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.gform_confirmation_wrapper { --tw-bg-opacity: 1; background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); --tw-border-opacity: 1; border-color: rgba(254, 202, 202, var(--tw-border-opacity)); border-width: 1px; padding: 1.5rem;
}

.gfield_description {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.gfield_description.validation_message {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* .gform_fields > li { @apply mb-3;} */

.gf_login_links { margin-left: 1.5rem; margin-right: 1.5rem;
}

.gf_login_links a {
  --tw-border-opacity: 1;
  border-color: rgba(12, 52, 85, var(--tw-border-opacity));
  border-width: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  text-transform: uppercase;
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  margin-top: 0px;
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
  text-decoration: none;
}

#content {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#content .h3 { font-size: 1rem; line-height: 1.5rem; padding: 0px;
}

#content h1, #content h2, #content h3 {
  margin-bottom: 1rem;
}

#content a, article a {
  text-decoration: underline;
}

#ui-datepicker-div {
  --tw-bg-opacity: 1;
  background-color: rgba(12, 52, 85, var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.ui-datepicker .ui-datepicker-calendar  .ui-state-default {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.ui-datepicker-calendar td {
  font-size: 0.75rem;
  line-height: 1rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  text-align: center;
}

.ui-datepicker-title select {
  padding: 0.125rem;
  --tw-text-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-text-opacity));
  width: 50%;
}

a.ui-datepicker-next, a.ui-datepicker-prev {
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.25rem;
  text-align: center;
  width: 50%;
}

.img-pdw-gray {
  filter: invert(100%) sepia(0%) saturate(7180%) hue-rotate(233deg) brightness(118%) contrast(85%);
}

.img-pdw-blue {
  filter: invert(40%) sepia(76%) saturate(251%) hue-rotate(172deg) brightness(88%) contrast(91%);
}

.img-pdw-featured {
  filter: invert(21%) sepia(81%) saturate(2347%) hue-rotate(338deg) brightness(103%) contrast(101%);
}

.img-pdw-wisdom {
  filter: invert(79%) sepia(36%) saturate(5498%) hue-rotate(319deg) brightness(109%) contrast(90%);
}

.img-pdw-made {
  filter: invert(79%) sepia(89%) saturate(3430%) hue-rotate(337deg) brightness(94%) contrast(92%);
}

.img-pdw-honeymoons {
  filter: invert(82%) sepia(22%) saturate(422%) hue-rotate(114deg) brightness(94%) contrast(81%);
}

.img-pdw-dark {
  filter: invert(10%) sepia(19%) saturate(3811%) hue-rotate(195deg) brightness(91%) contrast(106%);
}

.img-pdw-white {
  filter: invert(100%) sepia(0%) saturate(2882%) hue-rotate(243deg) brightness(115%) contrast(100%);
}

.img-pdw-gray {
  filter: invert(99%) sepia(2%) saturate(472%) hue-rotate(205deg) brightness(115%) contrast(82%);
}

@media (min-width: 768px)
    {
  .md\:hiframe.post-iframe iframe{
    height: 500px;
    min-width: 690px;
  }
}

@media (min-width: 1024px)
    {
  .md\:hiframe.post-iframe iframe{
    min-width: 800px;
    max-width: 80%;
  }
}

.post-iframe iframe {
  width: 100%;
  height: 208px;
}

article iframe {
  max-width: 100%;
  margin: 0 auto;
}

#tinymce {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pdw-images {
  display: grid;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.25rem;
  width: 100%;
  gap: 0.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1200px;
}

.pdw-images .pdw-double {
  gap: 0px;
  grid-column: span 2 / span 2;
}

.pdw-images .size-medium {
  width: 100%;
}

.pdw-images .pdw-double img {
  width: 100%;
}

.pdw-images > img {
  width: 100%;
  gap: 0px;
  grid-column: span 2 / span 2;
}

.main-content {
  max-width: 1800px;
  margin: 0 auto;
}

.comment .comment-body { --tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); display: flex; flex-wrap: wrap; margin-bottom: 1rem; padding: 1.5rem;
}

.comment .comment-meta { --tw-border-opacity: 1; border-color: rgba(235, 232, 231, var(--tw-border-opacity)); border-bottom-width: 2px; display: flex; flex-direction: row; align-items: center; padding-bottom: 0.5rem; width: 100%;
}

@media (min-width: 768px) {
  .comment .comment-meta {
    border-bottom-width: 0px;
    border-right-width: 2px;
    flex-direction: column;
    margin-right: 1.5rem;
    padding: 1rem;
    width: 8rem;
  }
}

.comment .comment-author { display: flex; flex-direction: column; align-items: center;
}

.comment .avatar { border-radius: 9999px;
}

.comment .comment-author .fn { font-size: 0.75rem; line-height: 1rem; margin-top: 0.5rem; margin-bottom: 0.5rem; text-align: center;
}

.comment .says { display: none;
}

.comment .comment-metadata { font-size: 0.75rem; line-height: 1rem; margin-left: 1rem;
}

@media (min-width: 768px) {
  .comment .comment-metadata {
    margin-left: 0px;
    text-align: center;
  }
}

.comment .edit-link { display: block; margin-top: 0.5rem;
}

.comment .comment-content { flex: 0 1 60%; flex-grow: 1;
}

.comment .reply { margin-top: 0px; text-align: right; width: 100%;
}

.comment .comment-reply-link {
  --tw-border-opacity: 1;
  border-color: rgba(12, 52, 85, var(--tw-border-opacity));
  border-width: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0px;
}

.comment .children {
  margin-left: 1rem;
}

.comment-respond { margin-left: auto; margin-right: auto; max-width: 32rem;
}

.comment-metadata time {
  font-size: 11px;
}

.pagination {
  width: 100%;
}

@media (min-width: 640px) {
  .pagination {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .pagination {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .pagination {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .pagination {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .pagination {
    max-width: 1536px;
  }
}

.pagination {
  border-top-width: 2px;
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  padding-top: 1.5rem;
}

.screen-reader-text {
  display: none;
}

.nav-links > .page-numbers:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(235, 232, 231, var(--tw-bg-opacity));
}

.nav-links > .page-numbers {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-radius: 0.25rem;
  border-width: 2px;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.nav-links > .current {
  --tw-bg-opacity: 1;
  background-color: rgba(235, 232, 231, var(--tw-bg-opacity));
}

.dashboard-tile {
  --tw-bg-opacity: 1;
  background-color: rgba(88, 135, 171, var(--tw-bg-opacity));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  text-decoration: none;
}

li.menu_separator {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  border-top-width: 1px;
  max-width: 80%;
}

.pdw-submission > div:nth-child(odd) > div {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.pdw-submission > div:nth-child(even) > div {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.pdw-submission p {
  margin: 0px;
}

#frm_field_1_container,
    #frm_field_2_container,
    #frm_field_3_container,
    #frm_field_4_container,
    #frm_field_5_container,
    #frm_field_6_container,
    #frm_field_158_container {
  display: none;
}

#pmpro_form {
  max-width: 640px;
}

#loginform label { font-weight: 500; font-size: 0.875rem; line-height: 1.25rem; margin-bottom: 0.25rem;
}

h3 span#wp-submit { font-weight: 700; font-size: 1.5rem; line-height: 2rem;
}

#wp-submit {
  --tw-bg-opacity: 1;
  background-color: rgba(204, 153, 146, var(--tw-bg-opacity));
  cursor: pointer;
  display: inline-block;
  font-family: Elsie, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.pmpro_login_wrap .pmpro_actions_nav {
  text-align: left;
}

.pmpro_login_wrap .pmpro_actions_nav a {
  --tw-border-opacity: 1;
  border-color: rgba(12, 52, 85, var(--tw-border-opacity));
  border-width: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0px;
  text-decoration: none;
}

.pmpro_login_wrap hr, .pmpro_login_wrap h2 {
  display: none;
}

form#loginform input.input, form.pmpro_form input[type=text].input, form.pmpro_form input[type=email].input, form.pmpro_form input[type=number].input, form.pmpro_form input[type=password].input, form.search-form input.search-field {
  --tw-border-opacity: 1;
  border-color: rgba(88, 135, 171, var(--tw-border-opacity));
  border-width: 2px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  max-width: 100%;
  padding: 0.5rem;
}

form#loginform input.input::-moz-placeholder, form.pmpro_form input[type=text].input::-moz-placeholder, form.pmpro_form input[type=email].input::-moz-placeholder, form.pmpro_form input[type=number].input::-moz-placeholder, form.pmpro_form input[type=password].input::-moz-placeholder, form.search-form input.search-field::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

form#loginform input.input:-ms-input-placeholder, form.pmpro_form input[type=text].input:-ms-input-placeholder, form.pmpro_form input[type=email].input:-ms-input-placeholder, form.pmpro_form input[type=number].input:-ms-input-placeholder, form.pmpro_form input[type=password].input:-ms-input-placeholder, form.search-form input.search-field:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

form#loginform input.input::placeholder, form.pmpro_form input[type=text].input::placeholder, form.pmpro_form input[type=email].input::placeholder, form.pmpro_form input[type=number].input::placeholder, form.pmpro_form input[type=password].input::placeholder, form.search-form input.search-field::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

form#loginform input.input, form.pmpro_form input[type=text].input, form.pmpro_form input[type=email].input, form.pmpro_form input[type=number].input, form.pmpro_form input[type=password].input, form.search-form input.search-field {
  width: 100%;
}

#pmpro_account .pmpro_box h3 {
  margin-bottom: 1rem;
}

.pmpro_checkout-fields .pmpro_checkout-field > label {
  display: none;
}

.pmpro_checkout-field-checkbox > p {
  margin-left: 1.5rem;
}

.pmpro_asterisk {
  display: none;
}

.pmpro_tax_field {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

form.pmpro_form .pmpro_tax_field label {
  font-weight: 500;
  margin-left: 0.5rem;
}

.pmpro-level-3 form.pmpro_form .pmpro_tax_field {
  display: none;
}

.pmpro_alert {
  margin-bottom: 1rem;
  max-width: 640px;
}

#pmpro_payment_method {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.pmpro_radio {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
}

h3 span#pmpro_payment_method th { font-weight: 700; font-size: 1.5rem; line-height: 2rem;
}

#pmpro_payment_method th {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-bottom-width: 1px;
  display: block;
  font-family: Elsie, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

#pmpro_form  #pmpro_payment_information_fields h3 {
  display: flex;
  display: none;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#pmpro_payment_information_fields h3 span {
  margin: 0;
}

#pmpro_submit_span {
  display: block;
  margin-top: 2rem;
}

.search-submit {
  --tw-bg-opacity: 1;
  background-color: rgba(12, 52, 85, var(--tw-bg-opacity));
  border-radius: 0.25rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  text-transform: uppercase;
}

.pmpro_submit hr {
  display: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  #pmpro_user_fields .pmpro_checkout-fields {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .pmpro_checkout-field-bemail {
    grid-column: span 2 / span 2;
  }
}

#pmpro_form #pmpro_payment_information_fields .pmpro_checkout-fields-display-seal
    {
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
}

.pmpro_checkout_gateway-stripe form#pmpro_form #pmpro_payment_information_fields .pmpro_checkout-field .StripeElement {
  --tw-border-opacity: 1;
  border-color: rgba(88, 135, 171, var(--tw-border-opacity));
  border-width: 2px;
}

form.pmpro_form #pmpro_payment_information_fields .pmpro_checkout-fields .pmpro_checkout-field label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
}

#pmpro_form #pmpro_pricing_fields h3 {
  display: none;
}

.pmpro_checkout-fields > p {
  display: none;
}

.pmpro_checkout-fields > p.levellist {
  display: block;
}

h3 span.levelnametext { font-weight: 700; font-size: 1.5rem; line-height: 2rem;
}

.levelnametext {
  font-family: Elsie, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}

.menu-dashboard-container .sub-menu {
  display: none;
}

.menu-dashboard-container .current-menu-item .sub-menu, .menu-dashboard-container .current-menu-ancestor .sub-menu {
  display: block;
}

#pmpro_level_cost {
  display: none;
  margin-bottom: 2rem;
}

.pmpro-level-3 #pmpro_level_cost {
  display: none;
}

#pmpro_checkout_box-checkout_boxes > h3 {
  display: none;
}

#pmpro_checkout_box-checkout_boxes > hr {
  display: none;
}

#pmpro_tos_checked_div {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.leveldesctext {
  display: block;
  margin-top: 1rem;
  max-width: 42rem;
}

form.pmpro_form .pmpro_checkout-field-checkbox label {
  font-weight: 500;
  margin-left: 0.5rem;
  vertical-align: top;
}

form.pmpro_form .pmpro_checkout-field-select label, form.pmpro_form .pmpro_checkout-field-multiselect label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pmpro_checkout-field-radio {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .pmpro_checkout-field-radio {
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

form.pmpro_form label.pmprorh_radio_label {
  font-weight: 500;
}

form.pmpro_form .pmpro_checkout-field-radio > label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  form.pmpro_form .pmpro_checkout-field-radio > label {
    grid-column: span 2 / span 2;
  }
}

.pmpro_checkout-field-radio > .pmpro_checkout-field-radio-item {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-bottom: 0.5rem;
  vertical-align: top;
}

@media (min-width: 640px) {
  .pmpro_checkout-field-radio > p {
    grid-column: span 2 / span 2;
  }
}

#pmpro_form .pmpro_checkout-field-multiselect.banner_extra {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}

#pmpro_form select.pdw_extra_multiselect {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-width: 1px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  max-width: none;
  padding: 1rem;
  width: 100%;
}

.pdw_deselect {
  font-size: 0.75rem;
  line-height: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: right;
  text-decoration: none;
}

select.pdw_extra_select {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-width: 1px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 1rem;
  width: 100%;
}

#au_wide_div > p {
  margin-top: 0px;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

select#listing_country,
    select#listing_category,
    select#honeymoon_category,
    select#listing_state {
  max-width: none;
}

#pmpro_checkout_box-checkout_boxes #default_title_div, #pmpro_checkout_box-checkout_boxes #upgrade_title_div {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  border-bottom-width: 1px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 1rem;
}

#pmpro_checkout_box-checkout_boxes #payment_title_div{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 1rem;
}

#extra_state_div > p {
  margin-top: 0px;
}

#listing_country_div label, #listing_category_div label, #honeymoon_category_div label, #listing_state_div label {
  display: none;
}

#pmpro_checkout_box-checkout_boxes {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  margin-bottom: 1rem;
}

#pmpro_checkout_box-checkout_boxes .pmpro_checkout-field {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pdw-membership-inner table, .pmpro_table {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-width: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.pdw-membership-inner table th, .pmpro_table th {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem;
}

.pdw-membership-inner table td, .pmpro_table td {
  max-width: 18rem;
  padding: 0.5rem;
}

#pmpro_account-membership .pmpro_table th:nth-child(2) {
  display: none;
}

#pmpro_account-membership .pmpro_table td:nth-child(2) {
  display: none;
}

article #pmpro_account .pmpro_box {
  border-style: none;
  margin: 0px;
  padding: 0px;
}

.pdw-loggedin #pmpro_user_fields.pmpro_checkout {
  display: none;
}

.pdw-facet-filters .facetwp-facet {
  margin: 0px;
}

.pdw-facets .facetwp-facet {
  margin: 0px;
}

.pdw-facets {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 90%;
  --tw-text-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-text-opacity));
  width: 100%;
}

@media (min-width: 768px) {
  .pdw-facets {
    max-width: 640px;
  }
}

@media (min-width: 1024px) {
  .pdw-facets {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }
}

.dir-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0%;
  opacity: 0.5;
  position: relative;
}

.dir-link.wedding {
  --tw-bg-opacity: 1;
  background-color: rgba(88, 135, 171, var(--tw-bg-opacity));
}

.dir-link.honeymoon {
  --tw-bg-opacity: 1;
  background-color: rgba(141, 203, 208, var(--tw-bg-opacity));
}

a.dir-link:after {
  content: " ";
  position: absolute;
  display: block;
  width: 35px;
  height: 100%;
  top: 0;
  z-index: 99;
}

a.dir-link.wedding.current { opacity: 1;
}

a.dir-link.honeymoon.current { opacity: 1;
}

a.dir-link.wedding.current:after {
  --tw-bg-opacity: 1;
  background-color: rgba(88, 135, 171, var(--tw-bg-opacity));
  transform-origin: bottom left;
  transform: skew(30deg, 0deg);
  right: -35px;
}

a.dir-link.honeymoon.current:after {
  --tw-bg-opacity: 1;
  background-color: rgba(141, 203, 208, var(--tw-bg-opacity));
  transform-origin: bottom left;
  transform: skew(-30deg, 0deg);
  left: -35px;
}

.inspired-facets .facetwp-facet {
  margin-bottom: 0px;
}

.inspired-facets .facetwp-facet .facetwp-dropdown {
  min-width: 20rem;
}

.facetwp-type-search span.facetwp-input-wrap {
  width: 100%;
}

.facetwp-type-search input.facetwp-search {
  border-width: 1px;
  padding: 0.5rem;
}

.facetwp-type-search input.facetwp-search::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.facetwp-type-search input.facetwp-search:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.facetwp-type-search input.facetwp-search::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.facetwp-type-search input.facetwp-search {
  width: 100%;
}

@media (min-width: 1280px) {
  .has-sidebar .xl\:max-w-sm {
    max-width: 22rem;
  }
}

#popmake-927586 {
  --tw-bg-opacity: 1;
  background-color: rgba(12, 52, 85, var(--tw-bg-opacity));
}

#gform_fields_61 label,
    #gform_fields_61 legend,
    #gform_fields_59 label,
    #gform_fields_59 legend,
    #gform_fields_57 label {
  display: none;
}

#field_61_6 legend, #field_61_6 label {
  display: block;
}

.gchoice {
  display: flex;
  align-items: center;
}

.gfield-choice-input {
  margin-right: 0.5rem;
}

.gfield_label_before_complex {
  padding-top: 0.5rem;
}

#field_57_1 {
  padding: 0;
  margin: 0;
}

#gform_fields_57 .gfield_label {
  display: none;
}

#gform_wrapper_57 {
  background: transparent;
  max-width: 350px;
  font-size: 0.675rem;
  padding-left: 0;
  padding-right: 0;
}

#gform_wrapper_57 .ginput_complex {
  display: block;
}

#gform_fields_57 input {
  --tw-bg-opacity: 1;
  background-color: rgba(235, 232, 231, var(--tw-bg-opacity));
  border-radius: 0px;
  width: 100%;
  min-width: 18rem;
}

#gform_submit_button_57 {
  margin-top: 0;
  float: right;
  min-width: 200px;
}

.shadow-full {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#pdw_newsletter_div {
  padding-bottom: 2rem;
}

span.toggler_span {
  float: left;
  margin-right: 0.625rem;
  margin-left: -1.5rem;
}

textarea.cancel_reason {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  border-width: 1px;
  height: 5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1rem;
  padding: 0.5rem;
  width: 100%;
}

h3 span.font-elsie { font-weight: 700; font-size: 1.5rem; line-height: 2rem;
}

.pdw-caption {
  display: block;
  margin-top: -0.75rem;
}

.pmpro_payment-discount-code {
  margin-bottom: 20px;
}

form.pmpro_form .pmpro_payment-discount-code label {
  font-weight: 500;
  font-size: 14px;
}

.film .post-iframe iframe {
  height: 222px;
}

.gfilters {
  position: relative;
}

.custom-loader {
  position: absolute;
  background-image: url("https://mir-s3-cdn-cf.behance.net/project_modules/disp/35771931234507.564a1d2403b3a.gif");
  background-position: center;
  background-repeat: no-repeat;
}

.glightbox {
  cursor: pointer;
}

.nepre a { text-decoration: none;
}

.pdwsrch {
  padding-top: 1px;
}

a.pdw_next_date:before {
  content: "Next Payment Date: ";
  font-weight: 700;
}

a.pdw_next_date {
  display: block;
}

a#pmpro_actionlink-cancel[href$="levelstocancel=3"] {
    display: none;
}

a#pmpro_actionlink-cancel[href$="levelstocancel=5"] {
    display: none;
}

.with_frm_style .frm_top_container .frm_primary_label {
    font-size: small;
}

html { font-weight: 500;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.bg-pdw-gray {
  --tw-bg-opacity: 1;
  background-color: rgba(235, 232, 231, var(--tw-bg-opacity));
}

.bg-pdw-blue {
  --tw-bg-opacity: 1;
  background-color: rgba(88, 135, 171, var(--tw-bg-opacity));
}

.bg-pdw-featured {
  --tw-bg-opacity: 1;
  background-color: rgba(220, 77, 84, var(--tw-bg-opacity));
}

.bg-pdw-you {
  --tw-bg-opacity: 1;
  background-color: rgba(204, 153, 146, var(--tw-bg-opacity));
}

.bg-pdw-wisdom {
  --tw-bg-opacity: 1;
  background-color: rgba(237, 157, 132, var(--tw-bg-opacity));
}

.bg-pdw-made {
  --tw-bg-opacity: 1;
  background-color: rgba(230, 182, 69, var(--tw-bg-opacity));
}

.bg-pdw-honeymoons {
  --tw-bg-opacity: 1;
  background-color: rgba(141, 203, 208, var(--tw-bg-opacity));
}

.bg-pdw-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(12, 52, 85, var(--tw-bg-opacity));
}

.bg-pdw-inspired {
  --tw-bg-opacity: 1;
  background-color: rgba(101, 165, 154, var(--tw-bg-opacity));
}

.bg-opacity-25 {
  --tw-bg-opacity: 0.25;
}

.border-current {
  border-color: currentColor;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.border-pdw-gray {
  --tw-border-opacity: 1;
  border-color: rgba(235, 232, 231, var(--tw-border-opacity));
}

.border-pdw-blue {
  --tw-border-opacity: 1;
  border-color: rgba(88, 135, 171, var(--tw-border-opacity));
}

.border-pdw-featured {
  --tw-border-opacity: 1;
  border-color: rgba(220, 77, 84, var(--tw-border-opacity));
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-none {
  border-style: none;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.last\:border-0:last-child {
  border-width: 0px;
}

.last\:border-r-0:last-child {
  border-right-width: 0px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-2 {
  flex: 1 0 50%;
}

.flex-3 {
  flex: 1 0 33%;
}

.flex-article {
  flex: 0 1 60%;
}

.flex-sidebar {
  flex: 0 1 40%;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.order-first {
  order: -9999;
}

.font-elsie {
  font-family: Elsie, sans-serif;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.h-0 {
  height: 0px;
}

.h-4 {
  height: 1rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-52 {
  height: 13rem;
}

.h-56 {
  height: 14rem;
}

.h-60 {
  height: 15rem;
}

.h-72 {
  height: 18rem;
}

.h-80 {
  height: 20rem;
}

.h-96 {
  height: 24rem;
}

.h-125 {
  height: 31.25rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-2xs {
  font-size: .6875rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.list-none {
  list-style-type: none;
}

.m-0 {
  margin: 0px;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-11 {
  margin: 2.75rem;
}

.m-12 {
  margin: 3rem;
}

.m-14 {
  margin: 3.5rem;
}

.m-20 {
  margin: 5rem;
}

.m-24 {
  margin: 6rem;
}

.m-28 {
  margin: 7rem;
}

.m-40 {
  margin: 10rem;
}

.m-auto {
  margin: auto;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-ml-2 {
  margin-left: -0.5rem;
}

.-mb-16 {
  margin-bottom: -4rem;
}

.max-w-8 {
  max-width: 8rem;
}

.max-w-12 {
  max-width: 12rem;
}

.max-w-15 {
  max-width: 15rem;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-full {
  max-width: 100%;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-lg {
  max-width: 1024px;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.max-w-xs-1 {
  max-width: 18rem;
}

.max-w-ninety {
  max-width: 90%;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.object-mid {
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.p-16 {
  padding: 4rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.pb-0 {
  padding-bottom: 0px;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.placeholder-pdw-dark::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.placeholder-pdw-dark:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.placeholder-pdw-dark::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-placeholder-opacity));
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.left-0 {
  left: 0px;
}

.-top-4 {
  top: -1rem;
}

.-top-28 {
  top: -7rem;
}

.top-1\/2 {
  top: 50%;
}

* {
  --tw-shadow: 0 0 #0000;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.fill-current {
  fill: currentColor;
}

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

.text-right {
  text-align: right;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.text-pdw-gray {
  --tw-text-opacity: 1;
  color: rgba(235, 232, 231, var(--tw-text-opacity));
}

.text-pdw-featured {
  --tw-text-opacity: 1;
  color: rgba(220, 77, 84, var(--tw-text-opacity));
}

.text-pdw-you {
  --tw-text-opacity: 1;
  color: rgba(204, 153, 146, var(--tw-text-opacity));
}

.text-pdw-wisdom {
  --tw-text-opacity: 1;
  color: rgba(237, 157, 132, var(--tw-text-opacity));
}

.text-pdw-made {
  --tw-text-opacity: 1;
  color: rgba(230, 182, 69, var(--tw-text-opacity));
}

.text-pdw-honeymoons {
  --tw-text-opacity: 1;
  color: rgba(141, 203, 208, var(--tw-text-opacity));
}

.text-pdw-dark {
  --tw-text-opacity: 1;
  color: rgba(12, 52, 85, var(--tw-text-opacity));
}

.hover\:text-pdw-featured:hover {
  --tw-text-opacity: 1;
  color: rgba(220, 77, 84, var(--tw-text-opacity));
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.align-top {
  vertical-align: top;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.w-2 {
  width: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-36 {
  width: 9rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-52 {
  width: 13rem;
}

.w-60 {
  width: 15rem;
}

.w-72 {
  width: 18rem;
}

.w-80 {
  width: 20rem;
}

.w-125 {
  width: 31.25rem;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-3\/4 {
  width: 75%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-full {
  width: 100%;
}

.z-50 {
  z-index: 50;
}

.z-top {
  z-index: 1000;
}

.z-top-all {
  z-index: 999999;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

.col-span-2 {
  grid-column: span 2 / span 2;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-12 {
  --tw-rotate: -12deg;
}

.translate-x-full {
  --tw-translate-x: 100%;
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@media (min-width: 640px) {

  .sm\:border-pdw-gray {
    --tw-border-opacity: 1;
    border-color: rgba(235, 232, 231, var(--tw-border-opacity));
  }

  .sm\:border-r-2 {
    border-right-width: 2px;
  }

  .sm\:border-l-2 {
    border-left-width: 2px;
  }

  .sm\:block {
    display: block;
  }

  .sm\:grid {
    display: grid;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:justify-around {
    justify-content: space-around;
  }

  .sm\:justify-evenly {
    justify-content: space-evenly;
  }

  .sm\:flex-3 {
    flex: 1 0 33%;
  }

  .sm\:flex-article {
    flex: 0 1 60%;
  }

  .sm\:flex-grow-0 {
    flex-grow: 0;
  }

  .sm\:m-2 {
    margin: 0.5rem;
  }

  .sm\:m-8 {
    margin: 2rem;
  }

  .sm\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:mr-1 {
    margin-right: 0.25rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {

  .md\:border-b-0 {
    border-bottom-width: 0px;
  }

  .md\:border-l-2 {
    border-left-width: 2px;
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:justify-around {
    justify-content: space-around;
  }

  .md\:justify-evenly {
    justify-content: space-evenly;
  }

  .md\:flex-2 {
    flex: 1 0 50%;
  }

  .md\:float-right {
    float: right;
  }

  .md\:h-48 {
    height: 12rem;
  }

  .md\:h-125 {
    height: 31.25rem;
  }

  .md\:h-150 {
    height: 37.5rem;
  }

  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:m-0 {
    margin: 0px;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:ml-12 {
    margin-left: 3rem;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }

  .md\:max-w-screen-sm {
    max-width: 640px;
  }

  .md\:max-w-ninety {
    max-width: 90%;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:pl-0 {
    padding-left: 0px;
  }

  .md\:pr-6 {
    padding-right: 1.5rem;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:pr-16 {
    padding-right: 4rem;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:top-1 {
    top: 0.25rem;
  }

  .md\:left-20 {
    left: 5rem;
  }

  .md\:top-28 {
    top: 7rem;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-56 {
    width: 14rem;
  }

  .md\:w-64 {
    width: 16rem;
  }

  .md\:w-80 {
    width: 20rem;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-4\/5 {
    width: 80%;
  }

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:flex-initial {
    flex: 0 1 auto;
  }

  .lg\:m-2 {
    margin: 0.5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mr-1 {
    margin-right: 0.25rem;
  }

  .lg\:ml-16 {
    margin-left: 4rem;
  }

  .lg\:max-w-none {
    max-width: none;
  }

  .lg\:max-w-sm {
    max-width: 24rem;
  }

  .lg\:max-w-lg {
    max-width: 32rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:pr-12 {
    padding-right: 3rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:w-80 {
    width: 20rem;
  }

  .lg\:w-96 {
    width: 24rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

@media (min-width: 1280px) {

  .xl\:h-64 {
    height: 16rem;
  }

  .xl\:max-w-sm {
    max-width: 24rem;
  }

  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .\32xl\:container {
    width: 100%;
  }

  @media (min-width: 640px) {
    .\32xl\:container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {
    .\32xl\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {
    .\32xl\:container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {
    .\32xl\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1536px) {
    .\32xl\:container {
      max-width: 1536px;
    }
  }
}

@media print {

  .print\:hidden {
    display: none;
  }
}