@keyframes gttFade {
    0% {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

:root {
    --gtt-green: #3aa655;
    --gtt-green-dark: #2e7d32;
    --gtt-primary: #2271b1;
    --gtt-border: #ccd0d4;
    --gtt-bg: #f6f7f7;
    --gtt-text: #1d2327;
    --gtt-radius: 6px;
    --gtt-shadow: 0 2px 8px rgba(0,0,0,.06);
    --gtt-transition: .18s ease;
    --gtt-toggle-bg: #ccd0d4
}

.gtt-main-title {
    font-size: 24px
}

.gtt-settings-wrap {
    width: 100%;
    max-width: 900px;
    margin-top: 20px
}

.gtt-tabs-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 5
}

.gtt-tab-item {
    background: var(--gtt-bg);
    border: 1px solid var(--gtt-primary);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    margin-bottom: 1px;
    transition: var(--gtt-transition)
}

.gtt-tab-item:hover {
    background: #fff
}

.gtt-tab-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    color: var(--gtt-text);
    font-weight: 500
}

.gtt-tab-link:focus {
    box-shadow: none
}

.gtt-active .gtt-tab-link,.gtt-tab-item:hover .gtt-tab-link {
    color: var(--gtt-primary)
}

.gtt-active,.gtt-tab-panel {
    background: #fff;
    position: relative;
    z-index: 10
}

.gtt-tab-panel {
    display: none;
    border: 1px solid var(--gtt-primary);
    padding: 25px;
    margin-top: -1px;
    border-radius: 0 6px 6px 6px;
    overflow: hidden;
    z-index: 1;
}

.gtt-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: #fff
}

.gtt-tab-panel.gtt-active {
    display: block
}

.gtt-tab-panel h2 {
    margin-top: 0;
    margin-bottom: 15px
}

.gtt-tab-panel input[type=number],.gtt-tab-panel input[type=text],.gtt-tab-panel select {
    max-width: 320px;
    border-radius: 4px;
    border: 1px solid var(--gtt-border);
    padding: 2px 2px 2px 10px;
    transition: .15s ease
}

.gtt-tab-panel select {
    max-width: 320px;
    border-radius: 4px;
    border: 1px solid var(--gtt-border);
    padding: 5px 24px 5px 10px;
    transition: .15s ease
}

.gtt-tab-panel input:focus,.gtt-tab-panel select:focus {
    border-color: var(--gtt-primary);
    box-shadow: 0 0 0 1px var(--gtt-primary);
    outline: 0
}

.glossary h3 {
    font-size: 16pt;
    font-weight: 700
}

.glossary-support ol li {
    margin-bottom: 10px
}

.glossary-support .button-primary {
    display: inline-block;
    font-size: 13px;
    line-height: 2.15;
    min-height: 30px;
    padding: 0 10px;
    cursor: pointer;
    border: 1px solid var(--gtt-primary);
    border-radius: 3px;
    background: var(--gtt-primary);
    color: #fff;
    text-decoration: none
}

.gtt-check {
    font-weight: 400;
    margin-top: 8px
}

.gtt-check input {
    margin-right: 8px
}

.gtt-onboarding {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px
}

.gtt-onboarding-card {
    background: #fff;
    max-width: 640px;
    padding: 40px 48px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    text-align: center;
    animation: gttFade .35s ease-out
}

.gtt-features li,.gtt-title {
    display: flex;
    align-items: center
}

.gtt-title {
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 600
}

.gtt-onboarding p {
    font-size: 16px;
    margin-bottom: 16px
}

.gtt-subtitle,p.gtt-subtitle {
    font-size: 15px;
    margin-bottom: 24px
}

.gtt-features {
    text-align: left;
    margin: 0 auto 30px;
    max-width: 420px;
    list-style: none;
    padding-left: 0
}

.gtt-features li {
    gap: 6px;
    font-size: 14px;
    margin-bottom: 8px
}

.gtt-features .dashicons {
    color: var(--gtt-primary);
    font-size: 20px;
    margin-top: -2px
}

.gtt-actions {
    margin-top: 10px
}

.gtt-actions .button-hero {
    padding: 10px 22px;
    font-size: 15px;
    margin-right: 10px
}

.button-hero {
    box-shadow: var(--gtt-shadow)
}

.gtt-tip {
    margin-top: 25px;
    font-size: 13px;
    color: #777
}

.gtt-plugin-icon img {
    border: 5px solid #eee;
    border-radius: 100px
}

.gtt-tagbox {
    border: 1px solid var(--gtt-border);
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    max-width: 420px;
    cursor: text;
    position: relative;
    min-height: 50px
}

.gtt-tag-selected {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px
}

.gtt-tag-chip {
    background: #e2e8f0;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--gtt-primary)
}

.gtt-tag-chip span {
    cursor: pointer;
    font-weight: 700
}

.gtt-tag-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--gtt-border);
    max-height: 220px;
    overflow: auto;
    z-index: 999
}

.gtt-tag-option {
    padding: 6px 10px;
    cursor: pointer
}

.gtt-tag-option:hover {
    background: #e9f2fb
}

.gtt-tag-option.active {
    background: #666;
    color: #fff;
    font-weight: 500;
    pointer-events: none;
    opacity: .6
}

.gtt-tag-option.active::after {
    content: "✔";
    float: right
}

.gtt-tag-input {
    min-width: 60px;
    display: inline-block;
    outline: 0;
    border: 0;
    margin-top: 4px
}

.gtt-tagbox:focus-within {
    border-color: var(--gtt-primary);
    box-shadow: 0 0 0 1px var(--gtt-primary)
}

.gtt-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    border-radius: 50%;
    background: #3b90d5;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    user-select: none
}

.gtt-help::after,.gtt-help::before {
    position: absolute;
    transition: .3s ease;
    pointer-events: none;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%) translateX(6px)
}

.gtt-help::after {
    content: attr(data-help);
    left: 32px;
    background: #eee;
    color: #333;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 200px;
    z-index: 9999;
    box-shadow: 0 0 2px rgb(34 113 177);
    border: 1px solid rgb(34 113 177)
}

.gtt-help::before {
    content: "";
    left: 20px;
    border: 6px solid transparent;
    border-right-color: #2271b1
}

.gtt-help.active::after,.gtt-help.active::before,.gtt-help:hover::after,.gtt-help:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.gtt-upgrade-wrap {
    max-width: 360px;
    background: #fff;
    border: 1px solid #00f;
    margin: 20px;
    padding: 20px;
    border-radius: 6px
}

.gtt-settings table tr {
    display: block;
    border-bottom: 1px solid #ddd;
    padding: 10px 0
}

.gtt-settings table tr:last-child {
    border-bottom: 0
}

.gtt-list,.gtt-list-disc {
    margin-left: 30px
}

.gtt-list-disc {
    list-style: disc
}

.gtt-switch-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px
}

.gtt-toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    vertical-align: middle
}

.gtt-toggle input, .gtt-toggle input:disabled {
    opacity: 0;
    width: 0;
    height: 0
}

.gtt-slider,.gtt-slider:before {
    position: absolute;
    transition: .25s ease
}

.gtt-slider {
    inset: 0;
    background: var(--gtt-toggle-bg);
    border-radius: 50px;
    cursor: pointer
}

.gtt-slider:before {
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,.25)
}

.gtt-toggle input:checked+.gtt-slider {
    background: linear-gradient(180deg,var(--gtt-green),var(--gtt-green-dark))
}

.gtt-toggle input:checked+.gtt-slider:before {
    transform: translateX(22px)
}

.gtt-toggle input:focus+.gtt-slider {
    box-shadow: 0 0 0 2px rgba(58,166,85,.25)
}

.gtt-toggle input:disabled+.gtt-slider {
    opacity: .5;
    cursor: not-allowed
}

.gtt-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 6px
}

.gtt-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.gtt-radio-ui,.gtt-radio-ui::after {
    border-radius: 50%;
    transition: .18s ease
}

.gtt-radio-ui {
    width: 18px;
    height: 18px;
    border: 1px solid var(--gtt-primary);
    position: relative;
    background: #fff;
    box-sizing: border-box;
}

.gtt-radio-ui::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--gtt-green-dark);
    transform: translate(-50%,-50%) scale(0)
}

.gtt-radio input:checked+.gtt-radio-ui::after {
    transform: translate(-50%,-50%) scale(1);
}

.gtt-radio:hover .gtt-radio-ui {
    box-shadow: 0 0 0 3px rgba(34,113,177,.15)
}

.gtt-radio input:focus+.gtt-radio-ui {
    box-shadow: 0 0 0 3px rgba(34,113,177,.25)
}

.gtt-radio input:disabled+.gtt-radio-ui {
    opacity: .5;
    cursor: not-allowed
}

.get-started, .get-started p {
	font-size: 14px;
	color: #333
}

@media screen and (max-width:771px) {
    .glossary-general,.glossary-support {
        padding: 20px 30px
    }

    .gtt-onboarding {
        margin-top: 10px;
        margin-left: -10px
    }

    .gtt-onboarding-card {
        background: 0 0;
        padding: 20px 25px;
        box-shadow: none
    }

    .gtt-actions .button-hero {
        margin: 10px
    }
}
