:root {
    --Primary-Color: rgb(30, 35, 60);
    --Secondary-Color: rgb(0, 115, 115);
    --Secondary-Color-Light: rgba(0, 115, 115, 0.04);
    --Third-Color: rgb(215, 80, 5);
    --Third-Color-Light: rgba(215, 80, 5, 0.04);
    --SubText-Color: rgb(120, 130, 135);
    --Green-Color: #19a974;
    --Red-Color: #e74c3c;
    --Primary-Font-Family: 'Montserrat';
}

html {
    background: rgb(245, 245, 245);
}

body {
    font-family: var(--Primary-Font-Family);
    font-size: 1rem;
    font-weight: 400;
    background: rgb(245, 245, 245);
    color: var(--Primary-Color);
}

html,
body {
    height: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

figure {
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
strong {
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 1.625rem;
    line-height: 1.5;
}

h2,
.h2 {
    font-size: 1.5rem;
    line-height: 1.5;
}

h3,
.h3 {
    font-size: 1.375rem;
    line-height: 1.5;
}

h4,
.h4 {
    font-size: 1.25rem;
    line-height: 1.5;
}

h5,
.h5 {
    font-size: 1.125rem;
    line-height: 1.5;
}

h6,
.h6 {
    font-size: 1rem;
    line-height: 1.5;
}

blockquote {
    width: 100%;
    margin: 30px auto;
    font-style: italic;
    padding: 30px 30px 25px 75px;
    border-left: 8px solid var(--Secondary-Color);
    position: relative;
    background: rgb(245, 245, 245);
}

blockquote::before {
    font-family: Arial;
    content: '\201C';
    position: absolute;
    left: 10px;
    top: -10px;
    color: var(--Secondary-Color);
    font-size: 4.5rem;
}

blockquote::after {
    content: '';
}

blockquote span {
    display: block;
    margin: 15px 0 0;
    font-size: .90rem;
    font-weight: 700;
}

button:focus,
button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

::selection {
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
}

.btn-primary {
    --bs-btn-bg: var(--Secondary-Color);
    --bs-btn-border-color: var(--Secondary-Color);
    --bs-btn-hover-bg: var(--Secondary-Color);
    --bs-btn-hover-border-color: var(--Secondary-Color);
    --bs-btn-active-bg: var(--Secondary-Color);
    --bs-btn-active-border-color: var(--Secondary-Color);
    --bs-btn-disabled-bg: var(--Secondary-Color);
    --bs-btn-disabled-border-color: var(--Secondary-Color);
}

.btn-outline-primary {
    --bs-btn-color: var(--Secondary-Color);
    --bs-btn-border-color: var(--Secondary-Color);
    --bs-btn-hover-bg: var(--Secondary-Color);
    --bs-btn-hover-border-color: var(--Secondary-Color);
    --bs-btn-active-bg: var(--Secondary-Color);
    --bs-btn-active-border-color: var(--Secondary-Color);
    --bs-btn-disabled-color: var(--Secondary-Color);
    --bs-btn-disabled-border-color: var(--Secondary-Color);
}

.btn-secondary {
    --bs-btn-bg: var(--Third-Color);
    --bs-btn-border-color: var(--Third-Color);
    --bs-btn-hover-bg: var(--Third-Color);
    --bs-btn-hover-border-color: var(--Third-Color);
    --bs-btn-active-bg: var(--Third-Color);
    --bs-btn-active-border-color: var(--Third-Color);
    --bs-btn-disabled-bg: var(--Third-Color);
    --bs-btn-disabled-border-color: var(--Third-Color);
}

.btn-outline-secondary {
    --bs-btn-color: var(--Third-Color);
    --bs-btn-border-color: var(--Third-Color);
    --bs-btn-hover-bg: var(--Third-Color);
    --bs-btn-hover-border-color: var(--Third-Color);
    --bs-btn-active-bg: var(--Third-Color);
    --bs-btn-active-border-color: var(--Third-Color);
    --bs-btn-disabled-color: var(--Third-Color);
    --bs-btn-disabled-border-color: var(--Third-Color);
}

.alert-primary {
    --bs-alert-color: var(--Secondary-Color);
    --bs-alert-bg: rgba(0, 115, 115, .25);
    --bs-alert-border-color: rgba(0, 115, 115, .5);
    --bs-alert-link-color: var(--Secondary-Color);
}

.alert-secondary {
    --bs-alert-color: var(--Third-Color);
    --bs-alert-bg: rgba(215, 80, 5, .15);
    --bs-alert-border-color: rgba(215, 80, 5, .5);
    --bs-alert-link-color: var(--Third-Color);
}

.brand-tabs .nav-link {
    color: #666;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    margin-right: 4px;
}

.brand-tabs .nav-link:hover {
    color: var(--Secondary-Color);
    background-color: rgba(0, 115, 115, 0.04);
    border-color: var(--Secondary-Color);
}

.brand-tabs .nav-link.active {
    background-color: var(--Secondary-Color) !important;
    color: #fff !important;
    border-color: var(--Secondary-Color) !important;
}

.text-brand {
    color: var(--Secondary-Color) !important;
}

.border-brand {
    border-color: var(--Secondary-Color) !important;
}

.bg-brand-light {
    background-color: var(--Secondary-Color-Light) !important;
}

.badge-step {
    background-color: var(--Third-Color) !important;
    color: #fff !important;
}

.cr-none {
    display: none
}

.cr-show {
    display: block
}

.cr-input *:focus {
    box-shadow: unset;
}

.cr-input label {
    display: block;
    margin: 0 0 2.5px;
    font-size: .95rem;
}

.cr-input input,
.cr-input select {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    background-color: rgb(245, 245, 245);
    border: 1px solid transparent;
    border-radius: 10px;
}

.cr-input input:focus,
.cr-input select:focus {
    border-color: var(--Secondary-Color);
    outline: 0;
}

.cr-input-with-tooltip {
    position: relative;
}

.cr-input-with-tooltip .cr-tooltip {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    cursor: pointer;
}

.cr-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cr-buttons button,
.cr-buttons a {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--Secondary-Color);
    color: #fff;
    border: 0;
    border-radius: 10px;
    margin: 0;
    text-decoration: none;
}

.cr-buttons button:hover,
.cr-buttons a:hover {
    opacity: 0.9;
}

.cr-title {
    margin: 0 0 10px;
    position: relative;
    text-align: center;
}

.cr-title h1,
.cr-title h2,
.cr-title h3 {
    margin: 10px 0;
    font-size: 1.25rem;
}

.cr-title span {
    display: block;
    margin: 15px 0 0;
    color: var(--SubText-Color);
}

.cr-title .cr-line {
    width: 100%;
    max-width: 50%;
    height: 1px;
    margin: 0 auto;
    position: relative;
    background: var(--Secondary-Color);
}

.cr-title .cr-line:before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: -1.75px;
    right: 0;
    background: var(--Secondary-Color);
    transform: rotate(50deg);
}

.cr-title .cr-line:after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: -1.75px;
    left: 0;
    background: var(--Secondary-Color);
    transform: rotate(-50deg);
}

.cr-pagination nav div a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 700;
    background: rgb(245, 225, 220);
    color: var(--Secondary-Color);
    border-radius: 15px;
}

.cr-offcanvas-section .cr-offcanvas {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: rgb(70, 155, 155);
    color: rgb(255, 255, 255)
}

.cr-offcanvas-section .cr-offcanvas .cr-logo {
    width: 100%;
    max-width: 150px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.cr-offcanvas-section .cr-offcanvas form {
    margin: 0 0 25px;
}

.cr-offcanvas-section .cr-offcanvas form input {
    width: 100%;
    padding: 15px 20px;
    background: rgb(255, 255, 255);
    border: 0;
    border-radius: 15px;
}

.cr-offcanvas-section .cr-offcanvas form input:focus {
    outline: 0;
}

.cr-offcanvas-section .cr-offcanvas strong {
    display: block;
    margin: 0 0 15px;
    padding: 10px 0;
    font-weight: 400;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.cr-offcanvas-section .cr-offcanvas nav {
    width: 100%;
    display: block;
    margin: 0 0 15px;
}

.cr-offcanvas-section .cr-offcanvas nav ul li {
    width: 100%;
    display: inline-block;
}

.cr-offcanvas-section .cr-offcanvas nav ul li img {
    width: 40px;
    height: 40px;
}

.cr-offcanvas-section .cr-offcanvas nav ul li a {
    display: inline-block;
    padding: 10px 0;
    color: rgb(255, 255, 255)
}

@media (max-width: 767px) {
    .cr-offcanvas-section .cr-offcanvas {
        width: 100%
    }
}

.cr-header-section {
    width: 100%;
    display: inline-block;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    overflow: hidden;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.cr-page .cr-header-section {
    padding: 0 0 45px;
}

.cr-header-section .cr-actions {
    padding: 15px 0;
}

.cr-header-section .cr-actions .cr-logo {
    display: block;
    text-align: center;
}

.cr-header-section .cr-actions .cr-logo img {
    max-width: 175px;
}

.cr-header-section .cr-actions .cr-responsive img {
    width: 35px;
}

.cr-scroll-section {
    width: 100%;
    margin: 5px 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cr-scroll-section::-webkit-scrollbar {
    width: 0;
    display: none;
}

.cr-header-section .cr-scroll-section .cr-content {
    display: table;
    margin: 0 auto;
    white-space: nowrap;
}

.cr-header-section .cr-scroll-section .cr-content .cr-item {
    display: inline-block;
}

.cr-header-section .cr-scroll-section .cr-content .cr-item>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 5px;
    color: rgb(255, 255, 255);
}

.cr-header-section .cr-scroll-section .cr-content .cr-item a span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cr-header-section .cr-scroll-section .cr-content .cr-item ul {
    min-width: 540px;
    padding: 5px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-header-section .cr-scroll-section .cr-content .cr-item ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    font-size: .90rem;
    color: var(--Primary-Color);
}

.cr-header-section .cr-scroll-section .cr-content .cr-item ul li a img {
    width: 15px;
    height: 15px
}

@media (max-width: 1100px) {
    .cr-header-section {
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }

    .cr-header-section .cr-actions .cr-logo img {
        max-width: 150px;
    }

    .cr-header-section .cr-scroll-section .cr-content .cr-item ul {
        min-width: 250px;
    }
}

.cr-section {
    width: 100%;
    display: inline-block;
    margin: 0 0 25px;
    padding: 15px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-desktop-section {
    margin: -45px auto 0
}

.cr-clue-section {
    display: none;
    margin: 0 auto
}

.cr-clue-section.cr-block {
    display: block;
}

.cr-clue-section.cr-desktop {
    display: block
}

.cr-clue-section .cr-heading {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 15px;
    padding: 0 0 0 20px;
    position: relative;
}

.cr-clue-section .cr-heading:before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 10.5px;
    left: 0;
    background: var(--Secondary-Color);
    border-radius: 50%;
}

.cr-clue-section .cr-heading:after {
    content: '';
    width: 10px;
    height: 1px;
    margin: 2.25px 0 0;
    position: absolute;
    top: 10px;
    left: 5px;
    background: var(--Secondary-Color);
}

@media (max-width: 1100px) {
    .cr-clue-section {
        display: block
    }

    .cr-clue-section.cr-desktop {
        display: none
    }
}

.cr-answer-section {
    max-height: 250px;
    margin: 30px 0 15px;
    position: relative;
}

.cr-answer-section>span {
    display: block;
    padding: 0 0 5px;
    font-size: .90rem;
    color: var(--SubText-Color);
}

.cr-answer-section .cr-back {
    padding: 0;
    font-size: .90rem;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 0;
    color: var(--Primary-Color);
    cursor: pointer;
}

.cr-answer-section .cr-boxes {
    text-align: center;
}

.cr-answer-section .cr-boxes .cr-splide {
    padding: 0 30px;
}

.cr-answer-section .cr-boxes .cr-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-answer-section .cr-boxes .cr-box span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(245, 245, 245);
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.cr-answer-section .cr-boxes .cr-box span:hover {
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
}

.cr-answer-section .cr-inputs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 15px;
}

.cr-answer-section .cr-inputs .cr-input {
    position: relative;
    border: 1px solid rgb(215, 215, 225);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 1px 2px 0 rgba(55, 195, 140, 0.05), 0 1px 3px 0 rgba(55, 195, 140, 0.1);
}

.cr-answer-section .cr-inputs .cr-input span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: rgb(235, 240, 240);
    font-size: .75rem;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.cr-answer-section .cr-inputs .cr-input input {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0;
    text-align: center;
    background: rgb(245, 245, 245);
    border: 0;
    border-radius: 0;
}

.cr-answer-section .cr-inputs input:focus {
    outline: 0;
}

.cr-answer-section .cr-back {
    display: none;
}

.cr-answer-section .cr-back img {
    position: relative;
    top: -1.25px;
    left: 5px;
}

.cr-answer-section .cr-action {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: 10px;
}

.cr-answer-section .cr-action:hover {
    opacity: .90;
}

.cr-answer-section .cr-action img {
    max-width: 20px;
}

.cr-answer-section .cr-boxes button[disabled] {
    opacity: .25;
}

.cr-crosswords-section {
    padding: 0 0 10px;
}

@media (max-width: 390px) {
    .cr-crosswords-section .col-4 {
        width: 50%;
    }
}

.cr-new-game-banner {
    width: 100%;
    display: inline-block;
    margin: 0 0 25px;
}

.cr-new-game-box {
    width: 100%;
    min-height: 145px;
    display: grid;
    grid-template-columns: 115px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at top right, rgba(0, 115, 115, .16), transparent 35%),
            linear-gradient(135deg, rgb(255, 255, 255), rgb(246, 255, 253) 58%, rgb(255, 242, 238));
    color: var(--Primary-Color);
    border: 1px solid rgba(0, 115, 115, .12);
    border-radius: 15px;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-new-game-box:hover {
    color: var(--Primary-Color);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 25, 40, .08);
}

.cr-new-game-image {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 115, 115, .15);
    border-radius: 15px;
}

.cr-new-game-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.cr-new-game-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 95px;
}

.cr-new-game-content .cr-new-game-subtitle {
    font-size: .80rem;
    font-weight: 700;
    color: var(--Third-Color);
}

.cr-new-game-content strong {
    font-size: 1.35rem;
    line-height: 1.35;
    color: var(--Primary-Color);
}

.cr-new-game-content span:last-child {
    max-width: 440px;
    font-size: .90rem;
    line-height: 1.6;
    color: var(--SubText-Color);
}

.cr-new-game-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    padding: 12px 18px;
    font-size: .85rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background: var(--Secondary-Color);
    border-radius: 10px;
}

.cr-new-game-action:after {
    content: '›';
    margin-left: 8px;
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .cr-new-game-box {
        grid-template-columns: 82px 1fr;
        gap: 15px;
        min-height: 0;
        padding: 16px;
    }

    .cr-new-game-image {
        width: 78px;
        height: 78px;
        padding: 10px;
    }

    .cr-new-game-content {
        padding-right: 80px;
    }

    .cr-new-game-content strong {
        font-size: 1.05rem;
    }

    .cr-new-game-content span:last-child {
        font-size: .80rem;
        line-height: 1.5;
    }

    .cr-new-game-action {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        margin-top: 2px;
    }
}

@media (max-width: 420px) {
    .cr-new-game-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cr-new-game-image {
        margin: 0 auto;
    }

    .cr-new-game-content {
        padding-right: 0;
    }
}

.cr-games-section {
    padding: 0 0 10px;
}

@media (max-width: 390px) {
    .cr-games-section .col-4 {
        width: 50%;
    }
}

.cr-posts-section ul li {
    width: 100%;
    display: inline-block;
    position: relative;
}

.cr-posts-section ul li a {
    width: 100%;
    display: block;
    padding: 5px 5px 5px 20px;
    position: relative;
    color: var(--Secondary-Color);
}

.cr-posts-section ul li a:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    left: 0;
}

.cr-posts-section.cr-first ul li a:before {
    background: url(../img/icon-nyt-mini.svg);
}

.cr-posts-section.cr-second ul li a:before {
    background: url(../img/icon-nyt-full.svg);
}

.cr-posts-section.cr-third ul li a:before {
    width: 5px;
    height: 5px;
    top: 13.5px;
    background: var(--Secondary-Color);
}

.cr-posts-section .cr-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    padding: 15px;
    position: relative;
    font-weight: 700;
    background: rgb(245, 225, 220);
    color: var(--Secondary-Color);
    border-radius: 15px;
}

.cr-blog-section .cr-post {
    width: 100%;
    display: inline-block;
    margin: 0 0 20px;
    padding: 15px;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    border-radius: 15px;
}

.cr-blog-section .cr-post img {
    width: 100%;
    border-radius: 15px;
}

.cr-blog-section .cr-post .cr-content .cr-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.5px 15px 1.5px;
    font-size: .95rem;
    background: rgb(255, 255, 255);
    color: var(--SubText-Color);
    border-radius: 300px;
}

.cr-blog-section .cr-post .cr-content h3 {
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.25;
}

.cr-blog-section .cr-post .cr-content .cr-date {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cr-blog-section .cr-post .cr-content .cr-date img {
    width: 25px;
}

.cr-blog-section .cr-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px;
    padding: 15px;
    font-weight: 700;
    background: rgb(245, 225, 220);
    color: var(--Secondary-Color);
    border-radius: 15px;
}

.cr-game-section .cr-games {
    width: 100%;
    display: inline-block;
    padding: 15px;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    border-radius: 15px;
}

.cr-game-section .cr-game {
    display: block;
    padding: 5px;
    color: rgb(255, 255, 255);
}

.cr-game-section .cr-game figure img {
    border-radius: 15px;
}

.cr-game-section .cr-game .cr-content {
    width: 100%;
    display: inline-block;
    padding: 15px 0 0;
}

.cr-game-section .cr-game .cr-content h3 {
    font-size: 1rem;
}

.cr-game-section .cr-game .cr-content .cr-date {
    margin: 10px 0 0;
}

.cr-game-section .cr-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 15px;
    padding: 15px;
    font-weight: 700;
    background: rgb(245, 225, 220);
    color: var(--Secondary-Color);
    border-radius: 15px;
}

.cr-footer-section {
    width: 100%;
    padding: 15px 0;
    background: rgb(255, 255, 255);
    text-align: center;
    border-radius: 30px 30px 0 0
}

.cr-footer-section .cr-logo {
    margin: 15px 0
}

.cr-footer-section .cr-logo img {
    max-width: 150px
}

.cr-footer-section .cr-about p {
    display: block;
    margin: 10px 0;
    padding: 0 0 15px;
    text-align: justify
}

.cr-footer-section .cr-about span {
    display: block;
    text-align: left
}

.cr-footer-section .cr-about ul {
    display: flex;
    gap: 15px
}

.cr-footer-section .cr-about ul li {
    width: auto;
    display: inline-block
}

.cr-footer-section strong {
    display: block;
    margin: 0 0 5px;
    padding: 15px 0;
    border-bottom: 1px solid rgb(215, 215, 225)
}

.cr-footer-section ul li {
    width: 100%;
    display: inline-block;
}

.cr-footer-section ul li a {
    display: block;
    padding: 7.5px 0;
    color: var(--Primary-Color);
    border-bottom: 1px solid rgb(245, 245, 245);
}

.cr-footer-section ul li:last-child a {
    border-bottom: 0
}

.cr-footer-section .cr-social {
    width: 100%;
    display: none;
    margin: 15px 0 0;
    padding: 15px 0 0;
    border-top: 1px dashed rgb(215, 215, 225);
    text-align: center;
}

.cr-footer-section .cr-social ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.cr-footer-section .cr-social ul li {
    width: auto;
    display: inline-block;
}

.cr-footer-section .cr-copyright {
    width: 100%;
    display: inline-block;
    margin: 15px 0 -15px;
    padding: 15px 0 0;
    border-top: 1px dashed rgb(215, 215, 225);
    text-align: center;
}

@media (max-width: 575px) {
    .cr-footer-section .cr-social {
        display: inline-block
    }

    .cr-footer-section .cr-about {
        display: none
    }
}

.cr-breadcrumb-section {
    width: 100%;
    float: right;
    display: inline-block;
    margin: 15px 0;
    padding: 0 15px
}

.cr-breadcrumb-section nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cr-breadcrumb-section nav ul li {
    display: inline-block;
}

.cr-breadcrumb-section nav ul li.cr-chevron {
    transform: rotate(180deg)
}

.cr-breadcrumb-section nav ul li.cr-home {
    position: relative;
    top: -2.5px;
}

.cr-breadcrumb-section nav ul li a {
    display: block;
}

@media (max-width: 767px) {
    .cr-breadcrumb-section {
        font-size: .90rem
    }
}

.cr-title-section {
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.cr-title-section h1 {
    display: block;
    font-size: 1.5rem;
}

.cr-title-section .cr-meta {
    color: var(--Secondary-Color);
}

.cr-preferred-source {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.cr-preferred-source a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(95, 99, 104);
    border-radius: 12px;
}

.cr-preferred-source a:hover {
    color: rgb(255, 255, 255);
    border-color: rgb(150, 150, 150);
}

.cr-preferred-source img {
    width: 28px;
    height: 28px;
    display: block;
    flex: 0 0 28px;
}

.cr-preferred-source-text {
    display: flex;
    flex-direction: column;
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.cr-preferred-source-text span {
    display: block;
}

.cr-date-section {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
    padding: 15px 0;
}

.cr-date-section .cr-label {
    display: block;
    margin: 10px 0;
    padding: 0 0 5px;
    text-align: center;
}

.cr-date-section .cr-date-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.cr-date-section .cr-date-button {
    flex: 0 0 calc((100% - 11rem) / 12);
    padding: 0;
    background: transparent;
    color: var(--SubText-Color);
    border: 0;
    scroll-snap-align: start;
}

.cr-date-section .cr-date {
    width: 100%;
    box-sizing: border-box;
}

.cr-date-section .cr-date {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px 5px;
    text-align: center;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-date-section .cr-date span {
    display: block;
    padding: 5px 0;
    font-size: .75rem;
    color: #000;
}

.cr-date-section .cr-date strong {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    background: transparent;
    color: var(--SubText-Color);
    font-weight: 400;
    border-radius: 50%;
}

.cr-date-section .cr-date-button.cr-active .cr-date {
    background: var(--Secondary-Color);
}

.cr-date-section .cr-date-button.cr-active .cr-date span {
    color: rgb(255, 255, 255);
}

.cr-date-section .cr-date-button.cr-active .cr-date strong {
    background: rgb(255, 255, 255);
}

.cr-date-section .cr-calendar {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 15px auto 0;
    padding: 15px 0;
    position: relative;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    border-radius: 15px;
    cursor: pointer
}

.cr-date-section .cr-calendar:hover {
    opacity: .90;
}

.cr-date-section .cr-calendar input {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

@media (max-width: 990px) {
    .cr-date-section .cr-date-button {
        flex-basis: calc((100% - 5rem) / 6);
    }
}

@media (max-width: 767px) {
    .cr-date-section .cr-date-list {
        gap: .5rem;
    }

    .cr-date-section .cr-date-button {
        flex-basis: calc((100% - 2rem) / 5);
    }
}

.cr-calendar-section input:focus {
    outline: 0;
    border-color: var(--Secondary-Color);
}

.cr-table-section {
    position: sticky;
    top: 0;
    text-align: center;
}

.cr-table-section h3 {
    display: block;
    margin: 10px 0;
}

.cr-table-section .cr-table ul {
    display: grid;
    grid-template-columns: repeat(var(--Grid-Cols), 1fr);
    gap: 0;
    border-right: 1px solid var(--Primary-Color);
    border-bottom: 1px solid var(--Primary-Color);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    list-style: none;
    background: var(--Primary-Color);
}

.cr-table-section .cr-table ul li {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgb(250, 250, 250);
    border-left: 1px solid var(--Primary-Color);
    border-top: 1px solid var(--Primary-Color);
}

.cr-table-section .cr-table ul {
    background: var(--Primary-Color);
}

.cr-table-section .cr-table ul li .cr-empty {
    background: var(--Primary-Color);
    pointer-events: none;
}

.cr-table-section .cr-table ul li>div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.cr-table-section .cr-table ul li>div:hover strong {
    color: rgb(215, 80, 5)
}

.cr-table-section .cr-table ul li>div.cr-active,
.cr-table-section .cr-table ul li>div.cr-active:hover strong {
    background: var(--Secondary-Color);
    color: rgb(245, 245, 245)
}

.cr-table-section .cr-table ul li>div i {
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    font-size: calc(0.75rem * var(--Font-Scale));
    font-style: normal;
    line-height: 1;
    opacity: .5;
}

.cr-table-section .cr-table ul li>div strong {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--Primary-Font-Family);
    font-size: calc(1.5rem * var(--Font-Scale));
    font-weight: normal
}

.cr-table-section .cr-table ul li>div span {
    opacity: 0;
    font-family: var(--Primary-Font-Family);
    font-size: calc(1.5rem * var(--Font-Scale));
    font-weight: 500;
    text-transform: capitalize;
    transform: scale(0);
    transition: all 0.25s ease-in-out;
    word-break: break-word;
}

.cr-table-section .cr-table ul li>div span.cr-select {
    opacity: 1;
    transform: scale(1);
}

.cr-table-section .cr-table ul li>div.cr-multi i {
    display: none;
}

.cr-table-section .cr-table ul li>div.cr-multi span {
    transform: translateX(-0.05rem) !important;
    font-size: calc(1rem * var(--Font-Scale)) !important;
}

.cr-table-section .cr-table ul li>div.cr-active strong {
    display: none;
}

.cr-table-section .cr-table ul li>div.cr-active span {
    opacity: 1;
    transform: scale(1);
}

.cr-table {
    --Font-Scale: 1;
}

.cr-table-section button {
    width: 100%;
    margin: 15px auto;
    padding: 15px 10px;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: 10px;
}

.cr-table-section button:hover {
    opacity: .90;
}

@media (max-width: 575px) {
    .cr-table-section .cr-table ul li>div strong,
    .cr-table-section .cr-table ul li>div span {
        font-size: 1rem
    }

    .cr-table-section .cr-table ul li>div.cr-multi span {
        transform: translateY(0.1rem) !important;
        font-size: calc(0.5rem * var(--Font-Scale)) !important;
    }
}

.cr-hint-section {
    margin: 30px 0 0;
}

.cr-hint-section .cr-hint {
    width: 100%;
    display: inline-block;
    margin: 0 0 20px;
    padding: 10px;
    background: rgb(245, 225, 220);
    border-radius: 15px;
}

.cr-hint-section .cr-hint .cr-header {
    display: block;
    margin: 0 0 15px;
    color: var(--Primary-Color);
}

.cr-hint-section .cr-hint .cr-header .cr-left {
    width: 15%;
}

.cr-hint-section .cr-hint .cr-header .cr-right {
    width: 85%;
    font-weight: 500;
}

.cr-hint-section .cr-hint .cr-header a {
    color: var(--Primary-Color);
    position: relative;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

.cr-hint-section .cr-hint .cr-header span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    color: var(--SubText-Color);
    border-radius: 50%;
}

.cr-hint-section .cr-hint .cr-footer .cr-answer {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    font-weight: 500;
    background: rgb(255, 255, 255);
    color: var(--Primary-Color);
    border-radius: 10px;
    cursor: pointer;
}

.cr-hint-section .cr-hint .cr-footer .cr-answer .cr-result {
    letter-spacing: 1.5px;
    text-transform: capitalize;
}

.cr-hint-section .cr-hint .cr-footer .cr-action {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    padding: 0 10px;
    background: rgb(215, 80, 5);
    color: rgb(255, 255, 255);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .cr-hint-section .cr-hint .cr-footer .cr-action {
        gap: unset;
        padding-left: 5px;
    }
}

.cr-hint-section .cr-more {
    width: 150px;
    height: 45px;
    display: table;
    margin: 5px auto 20px;
    font-size: .90rem;
    position: relative;
    font-weight: 700;
    background: rgb(245, 225, 220);
    color: var(--Secondary-Color);
    border-radius: 300px;
    cursor: pointer;
}

.cr-hint-section .cr-more:before {
    content: 'Load More';
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
}

.cr-hint-section .cr-more[aria-expanded='true']:before {
    content: 'Load Less';
}

.cr-hint-section .cr-more:hover {
    opacity: .90;
}

@media (max-width: 375px) {
    .cr-hint-section .cr-hint .cr-footer .col-3,
    .cr-hint-section .cr-hint .cr-footer .col-9 {
        width: 100%
    }
}

.cr-download-box .dl-card {
    transition: all 0.3s ease;
}

.cr-download-box .dl-card:hover {
    border-color: var(--Secondary-Color) !important;
    background-color: var(--Secondary-Color-Light) !important;
}

.cr-download-box .dl-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--Secondary-Color-Light);
    color: var(--Secondary-Color);
    transition: all 0.3s ease;
}

.cr-download-box .dl-card:hover .dl-icon {
    background-color: var(--Secondary-Color);
    color: #fff;
}

.cr-rating-section {
    margin: 30px 0 15px;
    text-align: center;
}

.cr-rating-section .cr-progress-section {
    position: relative;
}

.cr-rating-section .cr-progress-section:before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border-right: 1px dashed rgb(215, 215, 225);
}

.cr-rating-section .cr-progress-section .cr-status {
    display: block;
}

.cr-rating-section .cr-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.cr-rating-section .cr-button button {
    background: transparent;
    border: 0
}

.cr-rating-section .cr-button button img {
    width: 50px;
}

.cr-rating-section .cr-widget {
    height: 90px;
    padding: 30px 0 0;
    position: relative;
}

.cr-rating-section .cr-widget a {
    width: 10px;
    height: 30px;
    display: inline-block;
    margin: 1.5px;
    background: var(--SubText-Color);
    text-align: center;
    border-radius: 300px;
}

.cr-rating-section .cr-widget a:nth-child(-n+20) {
    height: calc(2.5px * var(--i));
}

.cr-rating-section .cr-widget a:nth-child(1) {
    --i: 1;
}

.cr-rating-section .cr-widget a:nth-child(2) {
    --i: 2;
}

.cr-rating-section .cr-widget a:nth-child(3) {
    --i: 3;
}

.cr-rating-section .cr-widget a:nth-child(4) {
    --i: 4;
}

.cr-rating-section .cr-widget a:nth-child(5) {
    --i: 5;
}

.cr-rating-section .cr-widget a:nth-child(6) {
    --i: 6;
}

.cr-rating-section .cr-widget a:nth-child(7) {
    --i: 7;
}

.cr-rating-section .cr-widget a:nth-child(8) {
    --i: 8;
}

.cr-rating-section .cr-widget a:nth-child(9) {
    --i: 9;
}

.cr-rating-section .cr-widget a:nth-child(10) {
    --i: 10;
}

.cr-rating-section .cr-widget a:nth-child(11) {
    --i: 11;
}

.cr-rating-section .cr-widget a:nth-child(12) {
    --i: 12;
}

.cr-rating-section .cr-widget a:nth-child(13) {
    --i: 13;
}

.cr-rating-section .cr-widget a:nth-child(14) {
    --i: 14;
}

.cr-rating-section .cr-widget a:nth-child(15) {
    --i: 15;
}

.cr-rating-section .cr-widget a:nth-child(16) {
    --i: 16;
}

.cr-rating-section .cr-widget a:nth-child(17) {
    --i: 17;
}

.cr-rating-section .cr-widget a:nth-child(18) {
    --i: 18;
}

.cr-rating-section .cr-widget a:nth-child(19) {
    --i: 19;
}

.cr-rating-section .cr-widget a:nth-child(20) {
    --i: 20;
}

.cr-rating-section .cr-widget a.cr-active,
.cr-rating-section .cr-widget a.cr-selected {
    background: var(--Secondary-Color);
}

.cr-rating-section .cr-widget .cr-current-rating {
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.cr-rating-section .cr-readonly a {
    cursor: default;
}

.cr-rating-section .cr-readonly a.cr-active,
.cr-rating-section .cr-readonly a.cr-selected {
    background: var(--Primary-Color);
}

@media (max-width: 575px) {
    .cr-rating-section .col-8,
    .cr-rating-section .col-4 {
        width: 100%
    }

    .cr-rating-section .cr-rating {
        margin: 15px 0 0;
    }
}

.cr-solutions-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 15px;
}

.cr-solutions-section ul li {
    width: 25%;
    display: inline-block;
    padding: 5px;
}

.cr-solutions-section ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 10px 15px;
    background: rgb(250, 250, 250);
    color: var(--Primary-Color);
    border: 1px solid rgb(245, 245, 245);
    border-radius: 10px;
}

.cr-solutions-section ul li a div {
    width: 100%;
    text-align: center;
}

.cr-solutions-section ul li a div img {
    width: 40px;
    height: 40px;
}

.cr-solutions-section ul li a strong {
    display: block;
}

.cr-solutions-section ul li a span {
    display: block;
    font-size: .75rem;
    color: var(--SubText-Color)
}

@media (max-width: 1240px) {
    .cr-solutions-section ul li {
        width: 33.33%
    }

    .cr-solutions-section ul li a {
        flex-direction: row-reverse
    }

    .cr-solutions-section ul li a div {
        width: auto
    }
}

@media (max-width: 1100px) {
    .cr-solutions-section ul li {
        width: 100%
    }

    .cr-solutions-section ul li a div {
        text-align: left !important;
    }
}

.cr-content-section .cr-section .cr-content {
    padding: 15px;
}

.cr-content-section .cr-section .cr-content strong {
    /*display: block;*/
}

.cr-cross-section .cr-section {
    padding: 0;
    overflow: hidden;
}

.cr-cross-section .cr-section .cr-red {
    width: 100%;
    margin: 0 0 15px;
    padding: 10px 0;
    background: rgb(245, 225, 220);
    color: rgb(215, 80, 5);
    text-align: center;
    font-size: initial;
    font-weight: initial;
}

.cr-cross-section .cr-section .cr-content {
    padding: 15px;
}

.cr-cross-section .cr-section .cr-content .cr-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.cr-cross-section .cr-section .cr-content .cr-inputs .cr-input {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0;
    position: relative;
    text-align: center;
    background: rgb(245, 245, 245);
    overflow: hidden;
    border: 1px solid rgb(215, 215, 225);
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(55, 195, 140, 0.05), 0 1px 3px 0 rgba(55, 195, 140, 0.1);
}

.cr-cross-section .cr-section .cr-content .cr-inputs .cr-input i {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: rgb(235, 240, 240);
    font-size: .75rem;
    font-style: normal;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.cr-cross-section .cr-section .cr-content .cr-inputs .cr-input strong {
    display: block;
    padding: 5px 0 0;
}

.cr-cross-section .cr-section .cr-content .cr-inputs .cr-input div,
.cr-cross-section .cr-section .cr-content .cr-inputs .cr-input span {
    padding: 5px 0 0;
    font-weight: 700;
}

.cr-cross-section .cr-section .cr-content .cr-buttons button {
    flex: 2;
    max-width: 295px;
}

.cr-cross-section .cr-section .cr-content .cr-buttons a {
    flex: 1;
    max-width: 145px;
    background: var(--Third-Color);
}

.cr-cross-section .cr-section .cr-content .cr-other {
    margin: 15px 0;
    padding: 15px 0 0;
    text-align: center;
}

.cr-cross-section .cr-section .cr-content .cr-other a {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0 0 15px;
    color: var(--Primary-Color);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.cr-cross-section .cr-section .cr-content .cr-other a img {
    transform: rotate(180deg);
}

@media (min-width: 1100px) {
    .cr-tabs-section {
        display: none
    }
}

.cr-tabs-section {
    width: 100%;
    padding: 5px 0;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    z-index: 10;
}

.cr-tabs-section ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-tabs-section ul li {
    width: 33.33%;
    display: inline-block;
    padding: 0 5px;
    position: relative
}

.cr-tabs-section ul li:before {
    content: '';
    width: 1px;
    height: 50%;
    position: absolute;
    top: 15px;
    left: 0;
    background: rgba(0, 80, 90)
}

.cr-tabs-section ul li:first-child:before {
    display: none
}

.cr-tabs-section ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2.5px 5px;
    font-size: .90rem;
    color: rgb(255, 255, 255);
    border-radius: .25rem;
}

.cr-tabs-section ul li a .cr-one {
    display: none;
}

.cr-tabs-section ul li a.cr-active {
    background: rgb(255, 255, 255);
    color: var(--Secondary-Color);
}

.cr-tabs-section ul li a.cr-active .cr-one {
    display: block;
}

.cr-tabs-section ul li a.cr-active .cr-two {
    display: none
}

.cr-page-section {
    /*margin: 0;*/
}

.cr-comments-section {
    width: 100%;
    display: inline-block;
    padding: 0 0 30px
}

.cr-comments-section .cr-note {
    display: block;
    margin: 0 0 15px;
}

.cr-comments-section .cr-save {
    display: block;
    margin: 10px 0 0;
    font-size: .95rem
}

.cr-comments-section .cr-save .cr-checkbox {
    position: absolute;
    opacity: 0;
}

.cr-comments-section .cr-save .cr-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.cr-comments-section .cr-save .cr-checkbox+label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: text-top;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-comments-section .cr-save .cr-checkbox:checked+label:before {
    background: var(--Secondary-Color);
}

.cr-comments-section .cr-save .cr-checkbox:checked+label:after {
    content: '';
    width: 2px;
    height: 2px;
    position: absolute;
    top: 10px;
    left: 5px;
    background: rgb(255, 255, 255);
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

.cr-comments-section input[type='text'],
.cr-comments-section input[type='email'],
.cr-comments-section input[type='number'],
.cr-comments-section textarea {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: rgb(255, 255, 255);
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-comments-section textarea {
    height: 150px;
    padding: 10px;
    resize: none;
}

.cr-comments-section textarea:focus,
.cr-comments-section input[type='text']:focus,
.cr-comments-section input[type='email']:focus,
.cr-comments-section input[type='number']:focus {
    outline: 0;
    border-color: var(--Secondary-Color);
}

.cr-comments-section input[type='submit'] {
    height: 40px;
    margin: 10px 0 0;
    padding: 0 15px;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: .25rem;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

.cr-comments-section input[type='submit']:hover {
    opacity: .90;
}

.cr-archive-section .cr-section {
    padding: 15px;
}

.cr-archive-section .cr-section .cr-cover {
    display: flex;
    align-items: center;
    gap: 15px
}

.cr-archive-section .cr-section .cr-cover img {
    width: 150px;
    display: block;
    margin: 0 auto;
}

.cr-archive-section .cr-section .cr-cover p {
    margin: 0 0 5px;
}

.cr-archive-section .cr-section .cr-cover ul {
    padding: 0 0 10px;
}

.cr-archive-section .cr-section .cr-cover ul li {
    width: 100%;
    display: inline-block;
}

.cr-404-section {
    width: 100%;
    display: inline-block;
    margin: 0 0 90px;
    padding: 90px 0;
    text-align: center;
}

.cr-404-section .cr-404 {
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 12rem;
    position: relative;
    justify-content: center;
    align-items: center;
}

.cr-404-section .cr-404:before,
.cr-404-section .cr-404:after {
    content: attr(data-tip);
    position: absolute;
    font-weight: 700;
    background: var(--Secondary-Color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 60%);
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 60%);
    -webkit-animation: WPL_Transition 1.5s infinite linear;
    animation: WPL_Transition 1.5s infinite linear;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.cr-404-section .cr-404:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 36%, 0 56%);
    clip-path: polygon(0 0, 190% 0, 100% 36%, 0 56%);
    -webkit-animation: WPL_Move 1.5s infinite linear;
    animation: WPL_Move 1.5s infinite linear;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.cr-404-section .cr-content {
    margin: 30px 0;
    padding: 0 0 60px;
    position: relative;
}

@-webkit-keyframes WPL_Transition {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translate(5px, -2%);
        transform: translate(5px, -2%)
    }
}

@keyframes WPL_Transition {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translate(5px, -2%);
        transform: translate(5px, -2%)
    }
}

@-webkit-keyframes WPL_Move {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translate(-5px, 2%);
        transform: translate(-5px, 2%)
    }
}

@keyframes WPL_Move {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translate(-5px, 2%);
        transform: translate(-5px, 2%)
    }
}

@media screen and (max-width: 480px) {
    .cr-404-section .cr-404 {
        font-size: 9rem;
    }
}

.modal-content {
    border: 0;
    border-radius: 15px;
    box-shadow: 0 1px 2px 0 rgba(15, 25, 40, 0.05), 0 1px 3px 0 rgba(15, 25, 40, 0.1);
}

/**/
a {
    color: var(--Secondary-Color);
}

p {
    margin-top: 1rem;
}

.table-dark {
    --bs-table-bg: var(--Secondary-Color);
    --bs-table-border-color: var(--Secondary-Color);
}

.cr-header-menu .dropdown-menu {
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 575px) {
    .cr-header-menu.cr-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        background-color: var(--Secondary-Color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .cr-header-menu.cr-sticky .cr-scroll-section {
        margin: 15px 0;
    }
}

.cr-card {
    width: 100%;
    display: inline-block;
    padding: 15px;
    text-align: center;
    background: rgb(250, 250, 250);
    color: var(--Primary-Text);
    border: 1px solid rgb(245, 245, 245);
    border-radius: 15px;
}

.cr-card img {
    width: 75px;
    height: 75px;
    display: block;
    margin: 0 auto;
}

.cr-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 0;
    font-weight: 500;
}

.cr-post-content ul,
.cr-post-content ol {
    margin: 1rem 0;
    padding-left: 20px;
}

@media (max-width: 575px) {
    .cr-blog-section .cr-post .cr-content .cr-category {
        font-size: 0.75rem;
    }
}

.single .cr-section > ul,
.single .cr-section > ol {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.archive.author .cr-posts-section .cr-title span {
    display: initial;
}

.search .cr-clue-section.cr-desktop {
    display: block;
}

.cr-author-avatar img {
    border-radius: 50%;
}

.cr-not-result {
    padding: 6rem 0 9rem 0;
}

@media (max-width: 767px) {
    .cr-not-result {
        padding: 2rem 0 3rem 0;
    }
}

.cr-answer-section input {
    text-transform: uppercase;
}

.cr-answer-section .splide__track {
    margin: 0 6px 0 8px;
}

.cr-answer-section .splide__list {
    display: flex;
    gap: 10px;
}

.cr-block .cr-answer-section .cr-boxes .cr-box span {
    width: 47px;
    height: 47px;
}

@media (max-width: 767px) {
    .cr-answer-section .cr-boxes .cr-box span {
        width: 48px;
        height: 48px;
    }

    .cr-block .cr-answer-section .cr-boxes .cr-box span {
        width: 49px;
        height: 49px;
    }
}

@media (max-width: 575px) {
    .cr-cross-section .cr-section .cr-content .cr-inputs .cr-input {
        width: 48px;
        height: 48px;
    }
}

.cr-analysis-post .cr-blog-section .cr-post {
    margin: 15px 0;
    padding: 30px;
    font-size: 1rem;
    line-height: 1.25;
}

@media (min-width: 991px) {
    .cr-analysis-post .cr-blog-section {
        max-width: 792px;
    }
}

.cr-guess-word {
    text-align: center;
}

.cr-guess-word .cr-content {
    max-width: 768px;
}

.cr-guess-word .badge {
    background-color: var(--Third-Color);
    color: #fff;
}

.cr-guess-word .cr-tiles {
    min-height: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.cr-guess-word .cr-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    padding: 0 .75rem;
    border: 1px solid #dee2e6;
    border-radius: .6rem;
    background: #fff;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: move;
    user-select: none;
}

.cr-guess-word .cr-placeholder {
    border: 2px dashed #adb5bd;
    border-radius: 10px;
    min-width: 56px;
    height: 56px;
}

.cr-guess-word .cr-tile.is-correct {
    border-color: var(--Green-Color);
}

.cr-guess-word .cr-tile.is-wrong {
    border-color: var(--Red-Color);
}

.cr-guess-word .cr-feedback {
    text-align: center;
    margin-top: 1rem;
}

.cr-guess-word .cr-guess-text {
    display: block;
    font-size: 1rem;
    font-weight: bold;
}

.cr-guess-word .cr-reveal {
    flex: 2;
    max-width: 295px;
}

.cr-guess-word .cr-reset {
    flex: 1;
    max-width: 145px;
    background: var(--Third-Color) !important;
}

.cr-guess-word .cr-reset img {
    transform: scale(0.9);
}

@media (max-width: 480px) {
    .cr-guess-word .cr-tiles {
        min-height: 48px;
    }

    .cr-guess-word .cr-tile {
        min-width: 48px;
        height: 48px;
    }

    .cr-guess-word .cr-placeholder {
        min-width: 48px;
        height: 48px;
    }

    .cr-guess-word .cr-feedback {
        font-size: 1rem;
    }
}

.cr-faqs .cr-section {
    background: rgba(0, 115, 115, 0.05);
}

.cr-faqs .cr-content {
    margin: 0 0 30px;
    text-align: center
}

.cr-faqs .cr-content h2 {
    margin: 0 0 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--Secondary-Color);
    text-align: center;
}

.cr-faqs .cr-content p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: rgb(75, 85, 105)
}

.cr-faqs .cr-faq-sidebar {
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 15px;
}

.cr-faqs .cr-faq-sidebar svg {
    width: 55px;
    height: 55px;
    margin: 0 0 15px;
    color: rgb(255, 255, 255);
    stroke-width: 1.5;
    filter: drop-shadow(0 2.5px 5px rgba(0, 0, 0, 0.15))
}

.cr-faqs .cr-faq-sidebar h3 {
    font-size: 1.375rem;
    font-weight: 700
}

.cr-faqs .cr-faq-sidebar span {
    display: block;
    margin: 10px 0;
    font-size: 0.95rem;
    opacity: 0.90
}

.cr-faqs .cr-faq {
    margin: 0 0 15px;
    position: relative;
    background: rgb(255, 255, 255);
    overflow: hidden;
    border: 1px solid rgba(0, 115, 115, 0.1);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    transform: translateY(0)
}

.cr-faqs .cr-faq:last-child {
    margin: 0
}

.cr-faqs .cr-faq button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 20px 20px;
    position: relative;
    font-weight: 600;
    text-align: left;
    color: rgb(50, 50, 50);
    border: 0;
    cursor: pointer;
    background: #fff;
    z-index: 1
}

.cr-faqs .cr-faq button:before {
    content: '+';
    width: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    opacity: .90
}

.cr-faqs .cr-faq[aria-expanded='true'] {
    border-color: var(--Secondary-Color);
}

.cr-faqs .cr-faq[aria-expanded='true'] button {
    background: var(--Secondary-Color);
    color: rgb(255, 255, 255);
}

.cr-faqs .cr-faq[aria-expanded='true'] button:before {
    content: '-';
}

.cr-faqs .cr-faq strong {
    color: var(--Secondary-Color)
}

.cr-hints .cr-content {
    margin: 0 0 15px
}

.cr-hints .cr-content span {
    display: block;
    margin: 0 0 5px;
}

.cr-hints .cr-content h2 {
    font-size: 1.25rem;
}

.cr-hints .cr-hint {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px;
    padding: 25px;
    background: rgb(245, 225, 220);
    border: 1px solid rgba(240, 145, 35, .25);
    border-radius: 10px;
    cursor: pointer
}

.cr-hints .cr-hint[aria-expanded='true'] {
    background: rgba(0, 115, 115, 0.05);
    border-color: rgb(0, 115, 115)
}

.cr-hints .cr-hint .cr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-weight: 500
}

.cr-hints .cr-hint .cr-header .cr-heading {
    display: flex;
    align-items: center;
    gap: 15px
}

.cr-hints .cr-hint .cr-header .cr-heading h3 {
    font-size: initial;
}

.cr-hints .cr-hint .cr-header .cr-action {
    background: var(--Third-Color);
    color: #fff;
    border-radius: 10px;
    padding: 8px 16px;
}

.cr-hints .cr-hint .cr-header .cr-action .icon-eye-off-light {
    display: none;
    transform: scale(0.7);
}

.cr-hints .cr-hint .cr-header .cr-action[data-state='hide'] .icon-light {
    display: none;
}

.cr-hints .cr-hint .cr-header .cr-action[data-state='hide'] .icon-eye-off-light {
    display: inline-block;
}

.cr-hints .cr-hint[aria-expanded='true'] .cr-header .cr-action {
    background: rgb(0, 115, 115);
}

.cr-hints .cr-hint .cr-header .cr-heading span {
    padding: 5px 15px;
    font-size: 0.875rem;
    font-weight: normal;
    color: rgb(0, 80, 90);
    background: rgba(0, 115, 115, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(0, 115, 115, 0.25);
    white-space: nowrap
}

.cr-hints .cr-answer {
    font-size: 1.125rem;
    font-weight: 700;
    padding-top: 10px;
    border-top: 1px dashed rgba(0, 113, 114, 0.2);
}

@media (max-width: 767px) {
    .cr-hints .cr-hint {
        padding: 15px;
    }

    .cr-hints .cr-hint .cr-header {
        flex-direction: column;
    }

    .cr-hints .cr-hint .cr-header .cr-heading {
        width: 100%;
    }

    .cr-hints .cr-hint .cr-header .cr-action {
        width: 100%;
        text-align: center;
    }
}

.cr-table-full {
    --Font-Scale: 0.8;
}

.cr-table-full ul li>div strong,
.cr-table-full ul li>div span {
    transform: translateX(0.1rem) !important;
}

.cr-table-large {
    --Font-Scale: 0.6;
}

.cr-table-large ul li>div strong,
.cr-table-large ul li>div span {
    transform: translateY(0.25rem) !important;
}

@media (max-width: 575px) {
    .cr-table-full ul li>div i {
        font-size: calc(0.55rem * var(--Font-Scale)) !important;
    }

    .cr-table-full ul li>div strong,
    .cr-table-full ul li>div span {
        transform: translate(0.1rem, 0.25rem) !important;
        font-size: calc(0.75rem * var(--Font-Scale)) !important;
    }

    .cr-table-large ul li>div i {
        display: none;
    }

    .cr-table-large ul li>div strong,
    .cr-table-large ul li>div span {
        transform: unset !important;
    }
}

@media (min-width: 575px) and (max-width: 1399px) {
    .cr-table-large ul li>div strong,
    .cr-table-large ul li>div span {
        font-size: calc(1rem * var(--Font-Scale)) !important;
    }
}

.cr-similar-clues .cr-clues-hint thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.cr-similar-clues .cr-clues-hint thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cr-similar-clues .cr-clues-hint thead th {
    border-bottom: none;
}

@media (max-width: 575px) {
    .cr-similar-clues .cr-title .cr-line {
        max-width: 30% !important;
    }
}

.cr-faq-accordion .cr-faq button h3 {
    font-size: initial;
}

.cr-btn {
    display: inline-block;
    padding: 15px;
    font-weight: 700;
    background: rgb(245, 225, 220);
    color: var(--Secondary-Color);
    border-radius: 15px;
}

.cr-answers-box {
    font-weight: bold;
    border: solid var(--Secondary-Color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.cr-tabs-section ul.cr-cols-2 li {
    width: 50%;
}

.cr-footer-section {
    padding-bottom: 6rem;
}

.page-id-366123 .cr-post-content .cr-section .cr-content p:first-child {
    margin-top: 0;
    margin-bottom: 0;
}

.page-id-366123 .cr-post-content .cr-section .cr-content p:nth-child(2) {
    margin-top: -1.5rem;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.braintestanswer, .sevenlittleanswer, .dailyjumbleanswer {
    font-weight: bold;
    border: solid var(--Secondary-Color);
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.aligncenter {
    clear: both;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

iframe {
    display: block;
    margin: 0 auto;
}

@media (max-width: 767px) {
    iframe {
        max-width: 100%;
    }
}