/**
 * GG Tindertrio Frontend Styles
 */

:root {
    --gg-tt-bg: #9a9a7a;
    --gg-tt-bg-dark: #6a6a5a;
    --gg-tt-text: var(--text-color);
    --gg-tt-accent: #699540;
    --gg-tt-accent-light: #6a9c6e;
    --gg-tt-border: #fff;
    --gg-tt-shadow: rgba(0, 0, 0, 0.2);
    --gg-tt-overlay-bg: #000;
    --gg-tt-overlay-color: #fff;
}

.gg-tindertrio .sdct-blog-grid-item:last-child {
    --body-background: #eee6d7;
    --text-color: #000000;
    --link-color: #000000;
    --link-color-hover: #000000;
    --tile-link-color: var(--link-color);
    --tile-link-color-hover: var(--link-color-hover);
    --tile-background: #b1ae9d;
    --tile-heading-color: #ffffff;
    --disruptor-tile: #8c8a7d;
    --disruptor-heading-color: #ffffff;
    --disruptor-tile-color: #000000;
    --disruptor-tile-link-color: #000000;
    --disruptor-tile-link-color-hover: #000000;
    --tinder-popup-background: #99b758;
    --popup-heading-color: #ffffff;
    --popup-text-color: #000000;

    --announcement-tile-background: var(--tinder-popup-background);

    --text-transform: uppercase;

    --text-font: "Relevant", sans-serif;
    --heading-font: "Relevant", sans-serif;
}

.gg-tindertrio-quiz {
    overflow: hidden;
}

.gg-tindertrio-loading {
    padding: 40px;
    text-align: center;
    color: var(--tile-heading-color);
}

/* Screens */
.gg-tt-screen {
    @media (min-width: 600px) {
        padding: 20px;
    }
}

/* Header */
.gg-tt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gg-tt-text);
    margin-bottom: 15px;

    display: none;
}

.gg-tt-label {
    display: none;
}

.gg-tt-progress,
.gg-tt-points-possible {
    opacity: 0.8;
}

/* Subtitle Bar */
.gg-tt-subtitle-bar {
    color: var(--tile-heading-color);
    text-align: left;
    padding: 8px 15px 8px 0;
    font-weight: 400;
    letter-spacing: 1px;

    @media (min-width: 600px) {
        margin: -20px -20px 20px;
    }
}

/* Start Screen */
.gg-tt-start {
    position: relative;
}

.gg-tt-start-icon {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gg-tt-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: var(--tile-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gg-tt-start-icon img {
    width: 90px;
    height: 90px;
}

.gg-tt-start .gg-tt-title-section {
    margin-bottom: 20px;
}

.gg-tt-title {
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--gg-tt-text);
}

.gg-tt-subtitle {
    margin: 0;
    color: var(--gg-tt-text);
}

.gg-tt-start-plants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.gg-tt-start-plant {
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gg-tt-start-plant img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.gg-tt-start-text {
    line-height: 1.5;
    color: var(--gg-tt-text);
    margin-bottom: 20px;
}

.gg-tt-start-text p {
    margin: 0;
}

.gg-tt-theme-question {
    color: var(--tile-heading-color);
    margin-bottom: 20px;
}

.gg-tt-theme-question p {
    margin: 0;
}

/* Difficulty Selection */
.gg-tt-question-text {
    margin-bottom: 20px;
    color: var(--gg-tt-text);
}

.gg-tt-difficulty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.gg-tt-info-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gg-tt-overlay-bg);
    color: var(--gg-tt-overlay-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 1rem;
    z-index: 10;
    cursor: pointer;
}

.gg-tt-difficulty-item {
    position: relative;
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gg-tt-difficulty-radio {
    display: none;
}

/* Info button */
.gg-tt-info-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 0;
    background: var(--gg-tt-overlay-bg);
    color: var(--gg-tt-overlay-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 16px 19px;
    line-height: 1;
    font-size: 1.25rem;
}

.gg-tt-info-btn:hover {
    background: var(--gg-tt-accent);
}

/* Info button outer corner positions */
[data-position="top-left"] .gg-tt-info-btn {
    top: -32px;
    left: -32px;
    align-items: flex-end;
    justify-content: flex-end;
}

[data-position="top-right"] .gg-tt-info-btn {
    top: -32px;
    right: -32px;
    align-items: flex-end;
    justify-content: flex-start;
}

[data-position="bottom-left"] .gg-tt-info-btn {
    bottom: -32px;
    left: -32px;
    align-items: flex-start;
    justify-content: flex-end;
}

[data-position="bottom-right"] .gg-tt-info-btn {
    bottom: -32px;
    right: -32px;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Info overlay on tile */
.gg-tt-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gg-tt-overlay-bg);
    color: var(--gg-tt-overlay-color);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: calc(1rem - 2px);
    z-index: 2;
}

.gg-tt-info-overlay p {
    margin: 0;
    line-height: 1.6;
}

/* Difficulty icon and label */
.gg-tt-difficulty-icon {
    width: 130px;
    height: 130px;
    margin-bottom: 8px;
}

.gg-tt-difficulty-label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Selection circle */
.gg-tt-select-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 0;
    background: var(--gg-tt-overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.gg-tt-select-circle:hover {
    background: unset;
}

.selected .gg-tt-select-circle {
    background: var(--gg-tt-accent);
}

.selected .gg-tt-select-circle::after {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--tile-heading-color);
    border-radius: 50%;
    position: absolute;
}
.gg-tt-select-circle::before {
    content: "";
    width: 26px;
    height: 26px;
    border: 2px solid var(--gg-tt-border);
    border-radius: 50%;
    position: absolute;
}

/* Selection circle inner corner positions */
[data-position="top-left"] .gg-tt-select-circle {
    bottom: -32px;
    right: -32px;
}
.selected[data-position="top-left"] .gg-tt-select-circle:after {
    top: 20px;
    left: 20px;
}
[data-position="top-left"] .gg-tt-select-circle:before {
    top: 14px;
    left: 14px;
}

[data-position="top-right"] .gg-tt-select-circle {
    bottom: -32px;
    left: -32px;
}
.selected[data-position="top-right"] .gg-tt-select-circle:after {
    top: 20px;
    right: 20px;
}
[data-position="top-right"] .gg-tt-select-circle:before {
    top: 14px;
    right: 14px;
}

[data-position="bottom-left"] .gg-tt-select-circle {
    top: -32px;
    right: -32px;
}
.selected[data-position="bottom-left"] .gg-tt-select-circle:after {
    bottom: 20px;
    left: 20px;
}
[data-position="bottom-left"] .gg-tt-select-circle:before {
    bottom: 14px;
    left: 14px;
}

[data-position="bottom-right"] .gg-tt-select-circle {
    top: -32px;
    left: -32px;
}
.selected[data-position="bottom-right"] .gg-tt-select-circle:after {
    bottom: 20px;
    right: 20px;
}
[data-position="bottom-right"] .gg-tt-select-circle:before {
    bottom: 14px;
    right: 14px;
}

/* Question Screen */
.gg-tt-question-title {
    text-align: left;
    font-weight: 600;
    color: var(--tile-heading-color);
    @media (min-width: 600px) {
        margin: -20px -20px 20px;
    }
}

.gg-tt-instruction {
    text-align: left;
    color: var(--gg-tt-text);
    opacity: 0.8;
    margin: 0 0 20px;
}

.gg-tt-status-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.gg-tt-status-label {
    color: var(--tile-heading-color);
    font-weight: 600;
}

.gg-tt-question-area {
    position: relative;
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gg-tt-plant-display {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 1rem;
}

.gg-tt-plant-label {
    position: absolute;
    border-radius: 50%;
    border: 0;
    width: 80px;
    height: 80px;
    background: var(--text-color);
    color: #fff;
    font-weight: 600;
    display: flex;
    padding: 11px 18px;
    z-index: 1;
    font-size: 1.3rem;
}

/* A = top-left */
.gg-tt-plant-label[data-label="A"] {
    top: -36px;
    left: -36px;
    align-items: flex-end;
    justify-content: flex-end;
}

/* B = top-right */
.gg-tt-plant-label[data-label="B"] {
    top: -36px;
    right: -36px;
    align-items: flex-end;
    justify-content: flex-start;
}

/* C = bottom-left */
.gg-tt-plant-label[data-label="C"] {
    bottom: -36px;
    left: -36px;
    align-items: flex-start;
    justify-content: flex-end;
}

/* D = bottom-right */
.gg-tt-plant-label[data-label="D"] {
    bottom: -36px;
    right: -36px;
    align-items: flex-start;
    justify-content: flex-start;
}

.gg-tt-plant-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

/* Answer Area */
.gg-tt-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 12px 0 12px 40px;
}

.gg-tt-text-input {
    flex: 1;
    border-width: 0 0 2px 0;
    border-style: solid;
    border-color: var(--gg-tt-border);
    border-radius: 0;
    background: transparent;
    outline: none;
    padding: 4px 0;
    color: inherit;
}
.sib-email-area::placeholder,
.gg-tt-text-input::placeholder {
    color: var(--gg-tt-border);
}

.gg-tt-freetext-result {
    flex: 1;
    padding: 4px 0;
}

.gg-tt-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 25px;
}

.gg-tt-choice {
    display: flex;
    align-items: center;
    gap: 15px;
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 1rem;
    padding: 5px 15px;
    cursor: pointer;
    /* transition: background 0.2s; */
}

/* .gg-tt-choice:hover {
    background: rgba(255, 255, 255, 1);
} */

.gg-tt-choice input {
    display: none;
}

.gg-tt-choice-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gg-tt-text);
    background: var(--tile-heading-color);
    border-radius: 50%;
    position: relative;
}

.gg-tt-choice input:checked + .gg-tt-choice-radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: var(--text-color);
    border-radius: 50%;
}

.gg-tt-choice-correct .gg-tt-choice-radio:after {
    background: var(--gg-tt-accent) !important;
}
.gg-tt-choice-correct .gg-tt-choice-text {
    /* color: var(--tile-heading-color); */
    font-weight: 700;
    span {
        font-weight: 400;
    }
}

.gg-tt-choice-text .gg-tt-choice-fantasy {
    color: var(--gg-tt-overlay-color);
}

.gg-tt-choice-correct .gg-tt-choice-radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: var(--tile-heading-color);
    border-radius: 50%;
}

.gg-tt-choice-wrong .gg-tt-choice-radio:after {
    background: #c00 !important;
}

.gg-tt-choice-wrong .gg-tt-choice-radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: var(--tile-heading-color);
    border-radius: 50%;
}

.gg-tt-choice-text {
    flex: 1;
}

/* Solution Display */
.gg-tt-solution {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    padding: 15px;
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

.gg-tt-solution-icon {
    position: absolute;
    right: -15px;
    z-index: 2;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gg-tt-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: var(--tile-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gg-tt-solution-icon img {
    width: 90px;
    height: 90px;
}

.gg-tt-solution.correct {
    background: var(--gg-tt-accent);
}

.gg-tt-solution.wrong {
    background: #c00;
}

.gg-tt-solution-message {
    font-weight: 600;
    color: var(--tile-heading-color);
}

.gg-tt-correct-label,
.gg-tt-user-label {
    color: #666;
    display: block;
}

.gg-tt-correct-name {
    color: var(--gg-tt-accent);
    display: block;
    margin-top: 2px;
}

.gg-tt-user-name {
    color: #c00;
    text-decoration: line-through;
    display: block;
    margin-top: 2px;
}

/* Footer */
.gg-tt-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
    position: relative;
}

.gg-tt-footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gg-tt-score {
    font-weight: 400;
    color: var(--gg-tt-text);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation Buttons */
.gg-tt-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.gg-tt-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gg-tt-btn svg {
    width: 24px;
    height: 24px;
}

.gg-tt-links-btn,
.gg-tt-btn-play {
    background: var(--gg-tt-accent);
    color: var(--gg-tt-border);
    border: 2px solid var(--gg-tt-border);
}
.gg-tt-btn-pause,
.gg-tt-btn-play {
    margin-right: 13px;
}

.gg-tt-btn-play:hover:not(:disabled) {
    background: var(--gg-tt-accent-light);
}

.gg-tt-btn-pause {
    background: transparent;
    color: var(--tile-heading-color);
    border: 2px solid var(--gg-tt-border);
}

.gg-tt-btn:disabled {
    /* opacity: 0.5; */
    cursor: not-allowed;
}

/* Theme Screen */
.gg-tt-theme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.gg-tt-theme-plant {
    position: relative;
    cursor: pointer;
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    overflow: visible;
    transition: border-color 0.2s;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gg-tt-theme-plant img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: calc(1rem - 2px);
}

.gg-tt-theme-plant .gg-tt-plant-label {
    padding: 11px 18px;
}

.gg-tt-theme-plant.selected {
    border-color: var(--gg-tt-border);
}

.gg-tt-theme-plant .gg-tt-select-circle:hover {
    background: var(--tile-background);
}

.gg-tt-circle-correct {
    background: var(--gg-tt-accent) !important;
}

.gg-tt-circle-wrong {
    background: #c00 !important;
}

.gg-tt-theme-grid {
    position: relative;
}

.gg-tt-theme-overlay {
    grid-column: 1 / -1;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gg-tt-accent);
    color: var(--gg-tt-overlay-color);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 10px 20px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 4;
    text-align: center;
}

.gg-tt-theme-solution {
    text-align: center;
    font-weight: 600;
    color: var(--gg-tt-accent);
}

/* Result Screen */
.gg-tt-result-score {
    text-align: left;
    margin-bottom: 5px !important;
    color: var(--gg-tt-text);
    text-transform: uppercase;
}

.gg-tt-result-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.gg-tt-result-icon {
    position: relative;
    text-align: center;
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    padding: 15px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gg-tt-result-icon.selected {
    background: var(--gg-tt-accent);
}

.gg-tt-result-icon img {
    width: 120px;
    height: 120px;
    margin-bottom: 8px;
}

.gg-tt-result-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.gg-tt-result-message {
    text-align: left;
    flex: 1;
    width: 100%;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 10px 20px;
    background: var(--gg-tt-accent);
}

.gg-tt-result-title {
    margin: 0 0 10px;
    font-weight: 600;
    color: var(--gg-tt-overlay-color);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 10px 20px;
    background: var(--gg-tt-accent);
}

.gg-tt-result-message p {
    margin: 0;
    color: var(--gg-tt-text);
    font-weight: 600;
}
.gg-tt-result-message p:last-child {
    color: var(--gg-tt-border);
}

/* Links Screen */
.gg-tt-links-title {
    display: none;
    text-align: left;
    color: var(--tile-heading-color);
    @media (min-width: 600px) {
        margin: -20px -20px 20px;
    }
}

.gg-tt-links-subtitle {
    text-align: left;
    color: var(--gg-tt-text);
    opacity: 0.8;
    margin: 0 0 20px;
}

.gg-tt-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.gg-tt-links-plant {
    position: relative;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.gg-tt-links-plant img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.gg-tt-links-info {
    /* position: absolute; */
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--tile-heading-color);
    padding: 10px;
    border-radius: 0 0 calc(1rem - 2px) calc(1rem - 2px);
    flex: 1;
}

.gg-tt-links-german {
    display: block;
    font-weight: 400;
    color: var(--tile-heading-color);
}

.gg-tt-links-latin {
    display: block;
    font-style: italic;
    color: var(--tile-heading-color);
    opacity: 0.8;
}

.gg-tt-links-btn {
    position: absolute;
    bottom: 20px;
    right: 12px;
    z-index: 2;
    /* background: var(--text-color);
    color: var(--tile-heading-color);
    border: 2px solid var(--gg-tt-border); */
    /* width: 60px;
    height: 60px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .gg-tt-links-btn svg {
    width: 32px;
    height: 32px;
} */

/* Preview Screen */
.gg-tt-preview-title {
    text-align: left;
    color: var(--tile-heading-color);
    @media (min-width: 600px) {
        margin: -20px -20px 20px;
    }
}

.gg-tt-preview-subtitle {
    text-align: left;
    color: var(--gg-tt-text);
    opacity: 0.8;
    margin: 0 0 20px;
}
.gg-tt-preview-subtitle input:not([type="submit"]) {
    width: 100%;
    border-radius: 0;
}
@media (min-width: 600px) {
    .gg-tt-preview-subtitle input {
        margin-left: 60px !important;
    }
}

.gg-tt-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.gg-tt-preview-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid var(--gg-tt-border);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Final Navigation */
.gg-tt-final-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    margin-top: 60px;
}

.gg-tt-nav-link {
    color: var(--tile-heading-color);
    text-decoration: none;
    cursor: pointer;
}

.gg-tt-nav-link:hover {
    text-decoration: underline;
}

/* Error State */
.gg-tindertrio-error {
    padding: 20px;
    text-align: center;
    color: #c00;
    background: #fff0f0;
    border-radius: 1rem;
}

/* Responsive */
@media (max-width: 599px) {
    .gg-tt-links-btn {
        display: none;
    }
    .gg-tindertrio-quiz {
        max-width: 100%;
        border-radius: 0;
    }

    .gg-tt-result-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .gg-tt-start-icon {
        width: 100px;
        height: 100px;
    }

    .gg-tt-difficulty-item {
        padding: 5px;
    }
    .gg-tt-difficulty-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 0;
    }

    .gg-tt-result-icon img {
        width: 100px;
        height: 100px;
    }

    .gg-tt-solution-icon {
        width: 100px;
        height: 100px;
    }

    .gg-tt-start-icon img,
    .gg-tt-solution-icon img {
        width: 75px;
        height: 75px;
    }

    .gg-tt-difficulty-label {
        letter-spacing: 0.2px;
    }

    .gg-tt-select-circle {
        width: 60px;
        height: 60px;
    }

    .selected .gg-tt-select-circle::after {
        width: 10px;
        height: 10px;
    }

    .gg-tt-select-circle::before {
        width: 20px;
        height: 20px;
    }
    [data-position="top-left"] .gg-tt-select-circle {
        bottom: -24px;
        right: -24px;
    }
    .selected[data-position="top-left"] .gg-tt-select-circle:after {
        top: 15px;
        left: 15px;
    }
    [data-position="top-left"] .gg-tt-select-circle:before {
        top: 10px;
        left: 10px;
    }
    [data-position="top-right"] .gg-tt-select-circle {
        bottom: -24px;
        left: -24px;
    }
    .selected[data-position="top-right"] .gg-tt-select-circle:after {
        top: 15px;
        right: 15px;
    }
    [data-position="top-right"] .gg-tt-select-circle:before {
        top: 10px;
        right: 10px;
    }
    [data-position="bottom-left"] .gg-tt-select-circle {
        top: -24px;
        right: -24px;
    }
    .selected[data-position="bottom-left"] .gg-tt-select-circle:after {
        bottom: 15px;
        left: 15px;
    }
    [data-position="bottom-left"] .gg-tt-select-circle:before {
        bottom: 10px;
        left: 10px;
    }
    [data-position="bottom-right"] .gg-tt-select-circle {
        top: -24px;
        left: -24px;
    }
    .selected[data-position="bottom-right"] .gg-tt-select-circle:after {
        bottom: 15px;
        right: 15px;
    }
    [data-position="bottom-right"] .gg-tt-select-circle:before {
        bottom: 10px;
        right: 10px;
    }

    .gg-tt-info-btn {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        padding: 12px 14px;
    }

    /* Info button outer corner positions */
    [data-position="top-left"] .gg-tt-info-btn {
        top: -24px;
        left: -24px;
    }

    [data-position="top-right"] .gg-tt-info-btn {
        top: -24px;
        right: -24px;
    }

    [data-position="bottom-left"] .gg-tt-info-btn {
        bottom: -24px;
        left: -24px;
    }

    [data-position="bottom-right"] .gg-tt-info-btn {
        bottom: -24px;
        right: -24px;
    }

    .gg-tt-plant-label {
        width: 60px;
        height: 60px;
        padding: 8px 14px;
        font-size: 1rem;
    }

    .gg-tt-plant-label[data-label="A"] {
        top: -24px;
        left: -24px;
    }

    /* B = top-right */
    .gg-tt-plant-label[data-label="B"] {
        top: -24px;
        right: -24px;
    }

    /* C = bottom-left */
    .gg-tt-plant-label[data-label="C"] {
        bottom: -24px;
        left: -24px;
    }

    /* D = bottom-right */
    .gg-tt-plant-label[data-label="D"] {
        bottom: -24px;
        right: -24px;
    }
}
