@charset "UTF-8";
/*
Theme Name: Congrats Child
Theme URI: https://congrats.qodeinteractive.com
Description: A child theme of Congrats
Author: Elated Themes
Author URI: https://qodeinteractive.com
Version: 1.0
Text Domain: congrats
Template: congrats
*/
root {
  --qode-main-color: $color1 !important;
  --qode-secondary-color: $color1 !important;
  --qode-header-light-color: $bg1 !important;
  --qode-header-light-hover-color: $bg1 !important;
  --qode-header-dark-color: $color2 !important;
  --qode-header-dark-hover-color: $color2 !important;
  --qode-button-bg-hover-color: $color3 !important;
  --qode-button-border-hover-color: $color3 !important;
}

/**
 * uaplus.css version 0.0.1
 */
/**
 * Different box model
 * 
 * We use the traditional box model, where the padding and border 
 * of the element is drawn inside and not outside the specified 
 * width and height. That makes combining relative and absolute 
 * units in properties like <code>inline-size</code> and 
 * <code>block-size</code> easier.
 * 
 * 2025/05/22 :where(html) のgutter外すこと！！！

* {
  box-sizing: border-box;

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

/**
 * Improve focus styles
 *
 * Add spacing between content and its focus outline.
 */
:focus-visible {
  outline-offset: 3px;
}

/**
 * Disable text size adjustment
 * 
 * To improve readability on non-mobile optimized websites, browsers
 * like mobile Safari increase the default font size when you switch
 * a website from portrait to landscape. We don't want that for our 
 * optimized sites.
 *
 * See https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
 */
:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  line-height: 1.5;
}

/**
 * Increase line height
 *
 * Long paragraphs are easier to read if the line height is higher.
 */
/**
 * Add scrollbar gutter
 *
 * Prevent the page from “jumping” when switching from a long to a short page.
 *
 */
/**
 * Remove UA styles for h1s nested in sectioning content
 *
 * Nesting h1s in section, articles, etc., shouldn't influence the 
 * styling of the heading since nesting doesn't influence 
 * semantics either.
 * 
 * See https://github.com/whatwg/html/issues/7867#issuecomment-2632395167
 * See https://github.com/whatwg/html/pull/11102
 * See https://html.spec.whatwg.org/#sections-and-headings
 */
:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

/**
 * Improve abbreviations with titles
 * 
 * The abbr element with the title isn't helpful regarding 
 * accessibility because support is inconsistent, and it's only 
 * accessible to some users. Still, it's commonly used. 
 * This rule shows a dotted underline on abbreviations in all 
 * browsers (there's a bug in Safari) and changes the cursor.
 * 
 * See https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
 */
:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/**
 * Optimize mark element in Forced Colors Mode
 *
 * The colors of the mark element don't change in Forced Colors Mode,
 * which can be problematic. Use system colors instead.
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
 */
@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
/**
 * Announce del, ins, and s to screen readers
 * 
 * With the exception of NVDA (2024.4.2), which announces "deletion",
 * none of the common screen readers announces the <s> element.
 * Voice Over on macOS and iOS and Narrator don't announce 
 * <ins> and <del>. Usually, screen readers not announcing text-level
 * semantics is something we just accept, but devs using elements 
 * like <s> without knowing that they may not convey semantics is a 
 * common issue. We announce the start and end of stricken, inserted,
 * and deleted content with pseudo-elements. For languages other 
 * than English, you should provide translations, e.g. :lang(de) 
 * :where(s::before) { content: "Durchgestrichener Text Beginn "; }
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html
 */
:where(del, ins, s)::before, :where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}
:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}
:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}
:where(ins)::after {
  content: " insertion end";
}

/**
 * Avoid overflow caused by embedded content
 * 
 * Ensure that embedded content (audio, video, images, etc.) 
 * doesn't overflow its container.
 */
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/**
 * Prevent fieldsets from causing overflow
 *
 * Reset the default `min-inline-size: min-content` to prevent
 * children from stretching fieldsets
 *
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
:where(fieldset) {
  min-inline-size: 0;
}

/**
 * Turn labels into block elements
 * 
 * Labels for inputs, selects, and textarea should be block 
 * elements.
 */
:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

/**
 * Increase the block-size of textareas
 *
 * The default height of textareas is small. We increase it a bit.
 */
:where(textarea:not([rows])) {
  min-block-size: 6em;
}

/**
 * Inherit font styling in form elements
 * 
 * buttons, inputs, selects, and textarea should have the same font
 * family and size as the rest of the page.
 */
:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

/**
 * Normalize search input styles
 *  
 * Remove the rounded corners of search inputs on macOS and IOS 
 * and normalize the background color
 */
:where([type=search]) {
  -webkit-appearance: textfield;
  appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
/**
 * Maintain direction in some input types
 * 
 * Some input types should remain left-aligned in right-to-left
 * languages,but only if the value isn't empty because the 
 * placeholder should be right-aligned.
 *
 * See https://rtlstyling.com/posts/rtl-styling#form-inputs
 */
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

/**
 * Improve table styling
 *  
 * With the default styling, tables are hard to scan. These rules 
 * add padding and collapsed borders.
 */
:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

/**
 * Fading dialogs
 *  
 * Add fade in and fade out transitions for the dialog element
 * and backdrops
 */
:where(dialog) {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}
:where(dialog)::backdrop {
  background: oklch(0% 0 0/0.3);
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]) {
  opacity: 1;
}
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]) {
    opacity: 0;
  }
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
/**
 * Increase specificity of [hidden]
 *  
 * Make it harder to accidentally unhide elements with the 
 * [hidden] attribute while still maintaining the until-found 
 * functionality.
 */
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

@font-face {
  font-family: "IBMPlexMono-Italic";
  src: url("/wp-content/uploads/2025/07/IBMPlexMono-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "MrDafoe";
  src: url("/wp-content/uploads/2025/07/MrDafoe-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Blenny";
  src: url("/wp-content/uploads/2025/07/blenny.woff2") format("woff2");
}
@font-face {
  font-family: "Kotonomo Black";
  src: url("/wp-content/uploads/2025/07/Kotonomo-Black-Kw-N.woff2") format("woff2");
}
@font-face {
  font-family: "Kotonomo Bold";
  src: url("/wp-content/uploads/2025/07/Kotonomo-Bold-Kw-N.woff2") format("woff2");
}
@font-face {
  font-family: "Kotonomo Regular";
  src: url("/wp-content/uploads/2025/07/Kotonomo-Regular-Kw-N.woff2") format("woff2");
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: "Blenny", "Kotonomo Black", sans-serif !important;
  font-weight: normal !important;
  text-transform: none !important;
  letter-spacing: 0.05px !important;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Blenny", "Kotonomo Black", sans-serif !important;
  font-weight: 4normal00 !important;
  text-transform: none !important;
  letter-spacing: 0.05px !important;
}

body,
p,
li,
button,
input,
label {
  font-family: "Kotonomo Regular", sans-serif !important;
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
  letter-spacing: 0.05px !important;
}

p {
  line-height: 1.9 !important;
}

strong,
b,
th {
  font-family: "Kotonomo Bold", sans-serif !important;
  font-weight: normal !important;
}

strong,
b {
  background: linear-gradient(transparent 50%, rgba(255, 160, 219, 0.3) 50%);
}

pre,
code {
  font-family: "IBMPlexMono-Italic", "Kotonomo Regular", monospace !important;
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
  letter-spacing: -0.05px !important;
}

h1 i,
h2 i {
  font-family: "MrDafoe", "Kotonomo Black", sans-serif !important;
  font-weight: normal !important;
  font-size: 120% !important;
}

.hero-font p {
  font-family: "Blenny", "Kotonomo Black", sans-serif !important;
  font-weight: normal !important;
  font-size: 60px !important;
}

.qodef-blog-item h2 {
  font-family: "Blenny", "Kotonomo Black", sans-serif !important;
  font-weight: normal !important;
  font-size: 24px !important;
}

.signature-font p {
  font-size: 70px !important;
  font-family: "MrDafoe", sans-serif !important;
}

a.qodef-e-info-author {
  font-size: 11px !important;
}

.qodef-side-area-custom-link,
.likebtn-wrapper * {
  font-family: "Kotonomo Bold", sans-serif !important;
  font-weight: normal !important;
}

.glossary-entry table th {
  width: 25%;
}

.glossaryItemTitle {
  margin-bottom: 0 !important;
  font-weight: 800;
}

.glossaryItemBody {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2rem !important;
}

.cmtt-tooltip-featured-image {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
}

.cmtt_synonyms_wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.2rem !important;
  display: flex;
}

.cmtt_synonyms_title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.2rem !important;
  margin-right: 0.3rem;
}

.cmtt_synonyms {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.2rem !important;
}

.cm-glossary.table.modern ul.glossaryList > li {
  border: none !important;
}

.nowrap {
  white-space: nowrap !important;
}

div#ez-toc-container {
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
}
div#ez-toc-container .ez-toc-js-icon-con svg path {
  fill: #4f725e !important;
}
div#ez-toc-container .ez-toc-js-icon-con,
div#ez-toc-container .ez-toc-toggle label,
div#ez-toc-container .ez-toc-cssicon {
  border: 1px solid #4f725e !important;
}
div#ez-toc-container ul.ez-toc-list li {
  font-size: 13px !important;
}
div#ez-toc-container ul.ez-toc-list a {
  color: #4f725e !important;
}

.wp-block-separator {
  position: relative !important;
  border: none !important;
  display: block !important;
  height: 1rem !important;
  width: 100% !important;
}
.wp-block-separator:after {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 7px !important;
  content: "" !important;
  background-image: -webkit-repeating-linear-gradient(135deg, #555555, #555555 1px, transparent 2px, transparent 5px) !important;
  background-image: repeating-linear-gradient(-45deg, #555555, #555555 1px, transparent 2px, transparent 5px) !important;
  background-size: 7px 7px !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}

hr {
  background-color: transparent !important;
  border: none !important;
}
hr:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100% !important;
}

.elementor-lightbox .elementor-lightbox-image {
  box-shadow: none !important;
}

.qodef-header--standard #qodef-page-header-inner {
  border-bottom: none !important;
}

.qodef-title--breadcrumbs {
  display: none !important;
}

#qodef-side-area-close svg path {
  fill: #f76ca4 !important;
}

.qodef-side-area-logo {
  height: 30px !important;
}

.home .qodef-header-sticky {
  background-color: #f2e3e3 !important;
}

.admin-bar #qodef-side-area-close {
  top: 45px !important;
  right: 20px !important;
}

a .qodef-menu-item-text {
  font-family: "Kotonomo Bold", sans-serif !important;
  font-weight: normal !important;
}

.qodef-opener-icon .qodef-menu-opener-text {
  font-family: "Kotonomo Bold", sans-serif !important;
  font-weight: normal !important;
}

#qodef-page-mobile-header {
  background-color: #f2e3e3 !important;
}

#qodef-page-footer-top-area .qodef-col-num--4.qodef-col-layout--50 .qodef-grid-inner .qodef-grid-item:first-child:before {
  background: transparent !important;
}

#qodef-page-footer-top-area .qodef-col-num--4.qodef-col-layout--50 .qodef-grid-inner .qodef-grid-item:nth-child(2) {
  padding-left: 0 !important;
}

#qodef-page-footer-top-area-inner {
  padding-bottom: 0 !important;
}

#qodef-page-footer-bottom-area-inner .qodef-grid .qodef-grid-item {
  text-align: center !important;
}

#qodef-page-footer.qodef-skin--dark div {
  background-color: #1b2720 !important;
}

.elementor-element-2d5bad0 svg path {
  fill: #f76ca4 !important;
}

.signature-font p {
  line-height: 1.2 !important;
}

.green p {
  color: #1b2720 !important;
}

#qodef-author-info h5 {
  font-family: "Blenny", "Kotonomo Black", sans-serif !important;
  font-weight: 900 !important;
  font-style: italic !important;
}
#qodef-author-info p {
  font-size: 14px !important;
}

.qodef-page-sidebar-section li,
.qodef-page-sidebar-section p {
  font-size: 14px !important;
}
.qodef-page-sidebar-section h3 {
  font-size: 22px !important;
}

#respond input[type=email],
#respond input[type=text] {
  border-top: 1px solid;
}

p label {
  font-size: 16px !important;
}

.txt .elementor-widget-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.txt .wp-block-group__inner-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.qodef-skin--dark.qodef-header-sticky {
  background-color: #dfe9de !important;
}

.sbi_load_btn,
.sbi_follow_btn a,
.sby_load_btn,
.sby_follow_btn a {
  background-color: #4f725e !important;
  font-size: 13px !important;
  line-height: 1 !important;
}
.sbi_load_btn span,
.sbi_load_btn svg path,
.sbi_follow_btn a span,
.sbi_follow_btn a svg path,
.sby_load_btn span,
.sby_load_btn svg path,
.sby_follow_btn a span,
.sby_follow_btn a svg path {
  color: #fff !important;
  fill: #fff !important;
}
.sbi_load_btn:hover,
.sbi_follow_btn a:hover,
.sby_load_btn:hover,
.sby_follow_btn a:hover {
  background-color: #1b2720 !important;
  box-shadow: inset 0 0 10px 20px #1b2720 !important;
}

body #sb_youtube_sbyUCFWtGMmZ1aSK4YOZV64I6g4 .sby_follow_btn a:hover {
  background-color: #1b2720 !important;
  box-shadow: inset 0 0 10px 20px #1b2720 !important;
}

svg path[fill=currentColor] {
  fill: #fff !important;
}

#sb_instagram #sbi_load * {
  color: #fff !important;
}

body .sb_youtube[id^=sb_youtube_] .sby_load_btn .sby_btn_text,
body .sb_youtube[id^=sb_youtube_] .sby_load_btn .sby_loader,
body.et-db #et-boc .sb_youtube[id^=sb_youtube_] .sby_load_btn .sby_btn_text,
body.et-db #et-boc .sb_youtube[id^=sb_youtube_] .sby_load_btn .sby_loader,
body .sb_youtube[id^=sb_youtube_] .sby_footer .sby_follow_btn,
body.et-db #et-boc .sb_youtube[id^=sb_youtube_] .sby_footer .sby_follow_btn,
body .sb_youtube[id^=sb_youtube_] *,
body.et-db #et-boc .sb_youtube[id^=sb_youtube_] * {
  color: #fff !important;
}

.qodef-blog .qodef-e-info-author,
.qodef-blog-top-content .entry-date,
.qodef-blog-top-content .qodef-e-categories-holder a {
  font-family: "Kotonomo Regular", sans-serif !important;
  font-weight: normal !important;
}

.single-post .qodef-menu-opener-text {
  color: #1b2720 !important;
}
.single-post #qodef-page-mobile-header {
  background-color: #dfe9de !important;
}

.qodef-portfolio-project-info .qodef-e-info-item,
.qodef-portfolio-project-info a,
.qodef-portfolio-project-info p:not(.qodef-e-label) {
  font-family: "IBMPlexMono-Italic", monospace !important;
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
  letter-spacing: -0.05px !important;
  text-transform: none !important;
}
.qodef-portfolio-project-info .qodef-e-info-item:hover,
.qodef-portfolio-project-info a:hover,
.qodef-portfolio-project-info p:not(.qodef-e-label):hover {
  color: #f7afcc !important;
}

.qodef-e-info-holder {
  margin-top: -1rem !important;
}

.portfolio-item-template-default h1 {
  font-size: 50px !important;
}
.portfolio-item-template-default .elementor-post-info__terms-list {
  font-family: "IBMPlexMono-Italic", monospace !important;
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
  letter-spacing: -0.05px !important;
  text-transform: none !important;
}
.portfolio-item-template-default .elementor-post-info__terms-list a:hover {
  color: #f7afcc !important;
}

.qodef-m-filter .qodef-m-filter-item,
.qodef-grid-inner article .qodef-e-info > *,
.url * {
  font-family: "IBMPlexMono-Italic", monospace !important;
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
  letter-spacing: -0.05px !important;
  text-transform: none !important;
}
.qodef-m-filter .qodef-m-filter-item a:hover,
.qodef-grid-inner article .qodef-e-info > * a:hover,
.url * a:hover {
  color: #f7afcc !important;
}

.portfolio-item-template-default h1 {
  line-height: 1.4 !important;
}/*# sourceMappingURL=style.css.map */