/*! 
 Name : site2.css
 Description : StartTheGame.com  Web UI main CSS file.
 Author : Kerem Burak
 Created : 02.11.2024
*/

:root {
    --primary-color: #010080;
    --primary-light: #0100B3;
    --accent-color: #FFBC42;
    --accent-light: #FFD073;
    --bg-light: #F5F5F7;
    --success-color: #4CAF50;
    --danger-color: #E53E3E;
    --light-gray-color: #D6D6D6;
    --bg-white: #FFFFFF;
    --stg-link-color-purple: #5251A8;
}

body {
    /*font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;*/

    color: #333;
}

/* Header */
.navbar-brand-custom {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link-custom {
    color: rgba(1, 0, 128, 0.7) !important;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .nav-link-custom:hover {
        color: var(--primary-color) !important;
    }

    .nav-link-custom::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s;
    }

    .nav-link-custom:hover::after {
        width: 100%;
    }

    .nav-link-custom.dropdown-toggle::after {
        position: static;
        width: auto;
        height: auto;
        background: none;
        bottom: auto;
        left: auto;
        margin-left: auto;
    }

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

    .btn-primary-custom:hover {
        background-color: var(--primary-light);
        border-color: var(--primary-light);
        transform: scale(1.05);
    }

.btn-outline-primary-custom {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

    .btn-outline-primary-custom:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        transform: scale(1.05);
    }

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    /* width: 40px;
    height: 40px;
    object-fit: contain;*/
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-title-accent {
    color: var(--accent-color);
}

.xp-bar-container {
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.5rem;
    border: 2px solid rgba(1, 0, 128, 0.1);
}

.xp-bar {
    height: 12px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-light));
    border-radius: 50px;
    width: 0;
    transition: width 1.5s ease-out;
}

.floating-icon {
    position: absolute;
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Section Styles */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(1, 0, 128, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    border: 2px solid rgba(1, 0, 128, 0.2);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* How To Start Cards */
.step-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(1, 0, 128, 0.2);
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.step-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 188, 66, 0.4);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon-primary {
    background: rgba(1, 0, 128, 0.15);
    border: 2px solid rgba(1, 0, 128, 0.3);
    color: var(--primary-color);
}

.step-icon-accent {
    background: rgba(255, 188, 66, 0.15);
    border: 2px solid rgba(255, 188, 66, 0.3);
    color: var(--accent-color);
}

.xp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    border: 2px solid;
}

.xp-badge-primary {
    background: rgba(1, 0, 128, 0.1);
    border-color: rgba(1, 0, 128, 0.3);
    color: var(--primary-color);
}

.xp-badge-accent {
    background: rgba(255, 188, 66, 0.1);
    border-color: rgba(255, 188, 66, 0.3);
    color: var(--primary-color);
}

/* Marathon Cards */
.marathon-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .marathon-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.marathon-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .marathon-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s;
    }

.marathon-card:hover .marathon-image img {
    transform: scale(1.1);
}

.marathon-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
}

.marathon-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.marathon-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.marathon-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

    .marathon-title-overlay h3 {
        color: white;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

.marathon-company {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
}

.marathon-company-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.marathon-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.marathon-date-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
}

.marathon-date-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Test System */
.test-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(1, 0, 128, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.test-answer {
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .test-answer:hover {
        border-color: rgba(1, 0, 128, 0.5);
    }

    .test-answer.selected {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

.test-answer-letter {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    background: var(--bg-light);
    color: #666;
}

.test-answer.selected .test-answer-letter {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.difficulty-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 12px;
    border: 2px solid;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(1, 0, 128, 0.2);
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
}

/* Skill Progression */
.progression-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(1, 0, 128, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.level-circle {
    width: 192px;
    height: 192px;
    position: relative;
}

.level-circle-bg {
    stroke: #e5e5e5;
    fill: none;
    stroke-width: 12;
}

.level-circle-progress {
    stroke: url(#progressGradient);
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 553;
    stroke-dashoffset: 553;
    transition: stroke-dashoffset 2s ease-out;
    transform: rotate(-90deg);
    transform-origin: center;
}

.level-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-item {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(1, 0, 128, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

    .badge-item:hover {
        transform: scale(1.2) rotate(10deg);
    }

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(1, 0, 128, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    opacity: 0.15;
}

/* Footer */
.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #666;
}

    .social-icon:hover {
        background: var(--primary-color);
        color: white;
    }

/* Modal Styles */
.modal-content-custom {
    border-radius: 16px;
    border: none;
}

.form-control-custom {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

    .form-control-custom:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(1, 0, 128, 0.1);
    }

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

    .password-toggle:hover {
        color: var(--primary-color);
    }

.social-login-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: white;
}

    .social-login-btn:hover {
        border-color: var(--primary-color);
        background: var(--bg-light);
    }

/* Responsive */
@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}


/* footer */
footer {
    background-color: white;
    border-top: 2px solid #e5e5e5;
    padding: 3rem 0 1.5rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: var(--primary-color);
    }

.footer-dropdown {
    position: relative;
    display: inline-block;
}

    .footer-dropdown .footer-link {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .footer-dropdown .dropdown-arrow {
        font-size: 11px;
        transition: transform 0.25s ease;
        display: inline-block;
    }

    .footer-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

.footer-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 999;
    padding: 6px 0;
}

.footer-dropdown.active .footer-dropdown-menu {
    display: block;
}

.footer-dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

    .footer-dropdown-item:hover {
        /*background-color: #f5f5f5;*/
        color: var(--primary-color);
    }

.footer-dropdown:hover .footer-dropdown-menu {
    display: block;
}

.footer-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* custom style classes */

.bg-green {
    --gk-bg-opacity: 1;
    background-color: #00A354 !important;
    color: white !important
}

.bg-purple {
    --gk-bg-opacity: 1;
    background-color: #000080 !important;
    color: white !important
}

.footer-link-color {
    color: white !important;
}

    .footer-link-color:hover {
        color: white !important;
    }

.btn-outline-green {
    --gk-btn-color: #00A354;
    --gk-btn-border-color: #00A354;
    --gk-btn-hover-color: #fff;
    --gk-btn-hover-bg: #00A354;
    --gk-btn-hover-border-color: #00A354;
    --gk-btn-focus-shadow-rgb: 117, 79, 254;
    --gk-btn-active-color: #fff;
    --gk-btn-active-bg: #00A354;
    --gk-btn-active-border-color: #00A354;
    --gk-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    --gk-btn-disabled-color: #00A354;
    --gk-btn-disabled-bg: transparent;
    --gk-btn-disabled-border-color: #00A354;
    --gk-gradient: none
}

.btn-outline-purple {
    --gk-btn-color: #000080;
    --gk-btn-border-color: #000080;
    --gk-btn-hover-color: #fff;
    --gk-btn-hover-bg: #010080;
    --gk-btn-hover-border-color: #010080;
    --gk-btn-focus-shadow-rgb: 117, 79, 254;
    --gk-btn-active-color: #fff;
    --gk-btn-active-bg: #000080;
    --gk-btn-active-border-color: #000080;
    --gk-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    --gk-btn-disabled-color: #000080;
    --gk-btn-disabled-bg: transparent;
    --gk-btn-disabled-border-color: #000080;
    --gk-gradient: none
}

.navbar-toggler-stg {
    /*border: 1px solid #00A354 !important;*/
    border: 1px solid #000080 !important;
}

.icon-bar-stg {
    /*background-color: #00A354 !important;*/
    background-color: #000080 !important;
}

.error-message {
    background-color: #FFDDD6;
    color: #A14936;
    display: table;
    margin: 0 auto;
}

.system-error {
    text-align: center;
    border: 0.5px solid #FFDDD6;
    background-color: #FFDDD6;
    border-radius: 5px
}

.btn-stg-primary {
    --gk-btn-color: #fff;
    --gk-btn-bg: #754ffe;
    --gk-btn-border-color: #754ffe;
    --gk-btn-hover-color: #fff;
    --gk-btn-hover-bg: #6343d8;
    --gk-btn-hover-border-color: #5e3fcb;
    --gk-btn-focus-shadow-rgb: 138,105,254;
    --gk-btn-active-color: #fff;
    --gk-btn-active-bg: #5e3fcb;
    --gk-btn-active-border-color: #583bbf;
    --gk-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --gk-btn-disabled-color: #fff;
    --gk-btn-disabled-bg: #754ffe;
    --gk-btn-disabled-border-color: #754ffe
}

.btn-stg-purple {
    --gk-btn-color: #fff;
    --gk-btn-bg: #000080;
    --gk-btn-border-color: #000080;
    --gk-btn-hover-color: #fff;
    --gk-btn-hover-bg: #001080;
    --gk-btn-hover-border-color: #001080;
    --gk-btn-focus-shadow-rgb: 86,175,128;
    --gk-btn-active-color: #fff;
    --gk-btn-active-bg: #010180;
    --gk-btn-active-border-color: #010180;
    --gk-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --gk-btn-disabled-color: #fff;
    --gk-btn-disabled-bg: #000080;
    --gk-btn-disabled-border-color: #000080
}

.btn-stg-pinko {
    --gk-btn-color: #fff;
    --gk-btn-bg: #F1A8A8;
    --gk-btn-border-color: F1A8A8;
    --gk-btn-hover-color: #fff;
    --gk-btn-hover-bg: #F2ADBB;
    --gk-btn-hover-border-color: #F2ADBB;
    --gk-btn-focus-shadow-rgb: 86,175,128;
    --gk-btn-active-color: #fff;
    --gk-btn-active-bg: #EF98AA;
    --gk-btn-active-border-color: #EF98AA;
    --gk-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --gk-btn-disabled-color: #fff;
    --gk-btn-disabled-bg: #F1A8A8;
    --gk-btn-disabled-border-color: #F1A8A8
}


.div-container span {
    display: block;
    height: 50%;
}

.div-container {
    height: 50px;
}

    .div-container span.top {
        display: flex;
        align-items: flex-end;
    }

.my-nav-link-active {
    background-color: #e2e8f0 !important;
    /*color: #64748b !important*/
}

/*.nav-link:hover {
    color: cornflowerblue !important;
    text-decoration: underline !important
}*/

.input-group > input.sendemail {
    flex: 0 1 300px;
}

.logo-text {
    /*font-family: 'Helvetica Narrow', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;*/
    font-family: 'Poppins';
    font-stretch: condensed;
}

.text-navy-blue {
    color: #000080 !important;
}

.checkbox-custom-color-darkgray {
    border-color: var(--gk-gray-500) !important;
}

.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 12px;
    top: 42%;
    border-top: 5px solid #888;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.select2-selection.select2-selection--single {
    padding-right: 50px !important;
}

.right-arrow-icon-holder {
    position: relative;
}

    .right-arrow-icon-holder .fa {
        position: absolute;
        line-height: 24px;
        top: 42%;
        margin-top: -12px; /* Half of line height to keep left middle postion of container */
        right: 10px;
    }

.modal-content-height400 {
    min-height: 400px;
}

.modal-content-height500 {
    min-height: 500px;
}

/* Modern Filled Tabs */
/*.modern-tabs {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

    .modern-tabs .nav-tabs {
        border: none;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .modern-tabs .nav-link {
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 500;
        color: #6c757d;
        transition: all 0.3s ease;
    }

        .modern-tabs .nav-link:hover {
            background: #f8f9fa;
            color: #0d6efd;
        }

        .modern-tabs .nav-link.active {
            background: #0d6efd;
            color: white;
        }
*/
/* Content Animation */
.tab-pane.fade {
    transition: all 0.2s ease-out;
}

    .tab-pane.fade.show {
        animation: fadeIn 0.5s ease-out;
    }

/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/*.my-link {
}

    .my-link:hover {
        color: #ffffff !important;
        background-color: #593cc1 !important;
        text-decoration: none !important;
    }*/

/* btn-stg-light */

.btn-stg-light {
    color: #000000;
    background-color: #DDDBDE;
    border-color: #FFFFFF;
}

    .btn-stg-light:hover,
    .btn-stg-light:focus,
    .btn-stg-light:active,
    .btn-stg-light.active,
    .open .dropdown-toggle.btn-stg-light {
        color: #000000;
        background-color: #A5A3A8;
        border-color: #FFFFFF;
    }

    .btn-stg-light:active,
    .btn-stg-light.active,
    .open .dropdown-toggle.btn-stg-light {
        background-image: none;
    }

    .btn-stg-light.disabled,
    .btn-stg-light[disabled],
    fieldset[disabled] .btn-stg-light,
    .btn-stg-light.disabled:hover,
    .btn-stg-light[disabled]:hover,
    fieldset[disabled] .btn-stg-light:hover,
    .btn-stg-light.disabled:focus,
    .btn-stg-light[disabled]:focus,
    fieldset[disabled] .btn-stg-light:focus,
    .btn-stg-light.disabled:active,
    .btn-stg-light[disabled]:active,
    fieldset[disabled] .btn-stg-light:active,
    .btn-stg-light.disabled.active,
    .btn-stg-light[disabled].active,
    fieldset[disabled] .btn-stg-light.active {
        background-color: #DDDBDE;
        border-color: #FFFFFF;
    }

    .btn-stg-light .badge {
        color: #DDDBDE;
        background-color: #000000;
    }

/* btn-stg-light - EOF */

.sidenav.navbar .navbar-nav .active > .nav-link {
    background-color: var(--gk-gray-900) !important;
}

.bootstrap-select {
    border: 1px solid #E5E5E5 !important;
}

/*Profile Pic Start*/
.picture-container {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.picture {
    width: 106px;
    height: 106px;
    background-color: #999999;
    border: 4px solid #CCCCCC;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 0px auto;
    overflow: hidden;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s;
}

    .picture:hover {
        border-color: #2ca8ff;
        transition: all 0.2s ease;
    }

.content.ct-wizard-green .picture:hover {
    border-color: #05ae0e;
}

.content.ct-wizard-blue .picture:hover {
    border-color: #3472f7;
}

.content.ct-wizard-orange .picture:hover {
    border-color: #ff9500;
}

.content.ct-wizard-red .picture:hover {
    border-color: #ff3b30;
}

.picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.picture-src {
    width: 100%;
}
/*Profile Pic End*/

.iti {
    width: 100% !important;
}

.select-menu-scroll {
    overflow-y: scroll;
    max-height: 150px;
}

.border-red-1 {
    border: 1px solid #FF0000 !important;
    border-radius: 5px;
    /*  background-image: url("data:image/svg+xml; charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc2626' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc2626' stroke='none'/%3E%3C/svg%3E");
    background-position: right calc(.4em + .25rem) center;
    background-repeat: no-repeat;
    background-size: calc(.8em + .5rem) calc(.8em + .5rem);
    border-color: var(--gk-form-invalid-border-color);
    padding-right: calc(1.6em + 1rem)*/
}

.border-light-gray-1 {
    border: 1px solid #DCDCDC !important;
}

.border-color-red {
    border-color: #FF0000 !important;
}

.border-red-radius {
    border: 1.5px solid #FF0000 !important;
    border-radius: 6px;
}

.height-100 {
    height: 100px !important;
}


.avatar-selection:before {
    border: 2px solid var(--gk-white);
    border-radius: 50%;
    bottom: 15%;
    content: "";
    display: table;
    height: 30%;
    position: absolute;
    right: 8%;
    width: 30%
}

.btn-file {
    cursor: pointer !important;
}

.bi-folder2-open {
    cursor: pointer !important;
}

.border-bottom-gray-2 {
    border-bottom: 2px solid #CCCCCC;
}

/* btn STg dark sky blue */
.btn-stg-dark-sky-blue {
    color: #FFFFFF;
    background-color: #454599;
    border-color: #160D45;
}

    .btn-stg-dark-sky-blue:hover,
    .btn-stg-dark-sky-blue:focus,
    .btn-stg-dark-sky-blue:active,
    .btn-stg-dark-sky-blue.active,
    .open .dropdown-toggle.btn-stg-dark-sky-blue {
        color: #FFFFFF;
        background-color: #38267C;
        border-color: #160D45;
    }

    .btn-stg-dark-sky-blue:active,
    .btn-stg-dark-sky-blue.active,
    .open .dropdown-toggle.btn-stg-dark-sky-blue {
        background-image: none;
    }

    .btn-stg-dark-sky-blue.disabled,
    .btn-stg-dark-sky-blue[disabled],
    fieldset[disabled] .btn-stg-dark-sky-blue,
    .btn-stg-dark-sky-blue.disabled:hover,
    .btn-stg-dark-sky-blue[disabled]:hover,
    fieldset[disabled] .btn-stg-dark-sky-blue:hover,
    .btn-stg-dark-sky-blue.disabled:focus,
    .btn-stg-dark-sky-blue[disabled]:focus,
    fieldset[disabled] .btn-stg-dark-sky-blue:focus,
    .btn-stg-dark-sky-blue.disabled:active,
    .btn-stg-dark-sky-blue[disabled]:active,
    fieldset[disabled] .btn-stg-dark-sky-blue:active,
    .btn-stg-dark-sky-blue.disabled.active,
    .btn-stg-dark-sky-blue[disabled].active,
    fieldset[disabled] .btn-stg-dark-sky-blue.active {
        background-color: #454599;
        border-color: #160D45;
    }

    .btn-stg-dark-sky-blue .badge {
        color: #454599;
        background-color: #FFFFFF;
    }

.div-box {
    transition: all .3s linear;
    opacity: 1;
    transform: translateY(0px);
}

    .div-box.div-hide-bottom {
        opacity: 0;
        transform: translateY(30px);
    }

.table_morecondensed > thead > tr > th,
.table_morecondensed > tbody > tr > th,
.table_morecondensed > tfoot > tr > th,
.table_morecondensed > thead > tr > td,
.table_morecondensed > tbody > tr > td,
.table_morecondensed > tfoot > tr > td {
    padding: 2px;
}

.ease-load {
    opacity: 0;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
}

.bs-placeholder {
    color: darkgrey !important;
    background-color: white !important;
}

.blue-arrow {
    color: dodgerblue !important;
}

.mr-7 {
    margin-right: 7px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-12 {
    margin-right: 12px;
}

.mr-n4 {
    margin-right: -4px;
}

.mr-n7 {
    margin-right: -7px;
}

.mr-n10 {
    margin-right: -10px;
}

.list-item {
    padding-left: 15px !important;
    background-color: var(--gk-list-group-bg);
    color: var(--gk-list-group-color);
    display: block;
    position: relative
}

.overlay {
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

.sidenav.navbar .navbar-nav .nav-item .nav-link[data-bs-toggle="collapse"]:after {
    content: "\e92e";
    display: block;
    font-family: Feather;
    margin-left: auto;
    position: absolute;
    right: 1.5rem;
    transition: .5s ease;
    /*opacity: .9;*/
    /*color: red;*/
}

.navbar-vertical .navbar-nav .nav-item [aria-expanded=true].nav-link[data-bs-toggle=collapse]:after {
    transform: rotate(180deg);
    transition: all .3s ease-in
}

.sidenav.navbar .navbar-nav .nav-item [aria-expanded=true].nav-link[data-bs-toggle="collapse"]:after {
    transform: rotate(180deg);
    transition: all .3s ease-in
}

/*.sidenav.navbar .navbar-nav .nav-item .nav-link .sub-link-text:before {
    content: "\203A";
    display: block;
    font-family: Feather;
    font-weight: bolder;
    position: absolute;
    stroke-width: 3;
    left: -1px;
    bottom: 8px;*/
/*right: 1.5rem;*/
/*transition: .5s ease;*/
/*opacity: .9;*/
/*color: red;*/
/*}*/

.my-m15-left {
    margin-left: 1px;
}

.nav-my-link {
    color: var(--stg-link-color-purple) !important;
}

/***********************************************************/
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}
/*
.btn-white {
    background-color: white !important;
}*/

.dropdown-toggle.changed:after {
    color: #b5b8bb;
}


.select2-selection__placeholder {
    font-size: 14px;
}

.select2-option-style {
    font-size: 14px;
    padding: -1px !important;
    width: min-content;
}

.date-menu-item-qna {
    cursor: pointer;
    width: 100%;
}

.stg-logo span {
    color: #0A007D;
}

    .stg-logo span:nth-child(2n+1) {
        color: #F1A8A8;
    }

.p-data {
    counter-reset: list;
}

    .p-data > li {
        list-style: none;
        position: relative;
    }

        .p-data > li:before {
            counter-increment: list;
            content: counter(list, lower-alpha) ") ";
            position: absolute;
            left: -1.4em;
        }

.btn:hover {
    border-color: #CCD5E2 !important;
}

.btn-profile-date {
    --gk-btn-color: #354156;
    --gk-btn-border-color: #CCD5E2;
    --gk-btn-hover-color: none;
    --gk-btn-hover-bg: none;
    --gk-btn-hover-border-color: none;
    --gk-btn-focus-shadow-rgb: none;
    --gk-btn-active-color: none;
    --gk-btn-active-bg: #ffffff;
    --gk-btn-active-border-color: #CCD5E2;
    --gk-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --gk-btn-disabled-color: #CCD5E2;
    --gk-btn-disabled-bg: transparent;
    --gk-btn-disabled-border-color: #CCD5E2;
    --gk-gradient: none;
    --gk-btn-font-weight: 400 !important;
    min-width: 50px !important;
    width: 100%;
}

    .btn-profile-date:focus {
        background-color: var(--gk-input-bg);
        border-color: var(--gk-input-focus-border);
        box-shadow: var(--gk-input-focus-box-shadow);
        color: var(--gk-body-color);
        outline: 0
    }

.stg-input-control {
    /*width: 50% !important;*/
    min-width: 115px;
}

.span-padding-088rem {
    padding: 0.5rem 0.88rem;
}

.sidebar-toggle-initial-display-hidden {
    display: none;
}

.my-alert {
    background: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.my-button-250px {
    width: 250px;
    max-width: 100%;
    padding: 10px;
}

/* admin-add marathon - image uploader */

.img-div {
    position: relative;
    width: 46%;
    float: left;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    max-width: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.img-div:hover .image {
    opacity: 0.3;
}

.img-div:hover .middle {
    opacity: 1;
}

div[disabled] {
    pointer-events: none; /* <--- key point */
    opacity: 0.7;
}

.bg-color-lily {
    background-color: #F5F1FE;
}

.button-link {
    background-color: transparent;
    border: none;
}

    .button-link:hover {
        color: blue;
        text-decoration: underline;
    }

.w-grid-column-100 {
    width: 100px !important;
}

a[disabled] {
    pointer-events: none; /* <--- key point */
    opacity: 0.7;
}

.register-link-inactive {
    color: #afb9c7 !important;
}

.register-link-active {
    color: #6e00ff !important;
    cursor: pointer;
}

.social-login-bg {
    width: 3rem !important;
    height: 3rem !important;
}

.btn-pager {
    cursor: pointer !important;
}

.hide-element {
    display: none;
}

.body-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    /*background: white;*/
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.dropdown-item:hover, .dropdown-item:hover.dropdown-toggle:after {
    color: var(--primary-color) !important;
    background-color: var(--bg-white) !important;
}


/***************************************************************/
/*@media screen and (min-width: 668px) {
    #content {
        display: flex !important;
    }
}

@media screen and (max-width: 667px) {
    #content {
        display: block !important;
    }
}*/
/*@font-face {
    font-family: "Cooperative Regular";
    src: url("https://db.onlinewebfonts.com/t/74617c24138f5a2dac1287f09a23550b.eot");
    src: url("https://db.onlinewebfonts.com/t/74617c24138f5a2dac1287f09a23550b.eot?#iefix")format("embedded-opentype"), url("https://db.onlinewebfonts.com/t/74617c24138f5a2dac1287f09a23550b.woff2")format("woff2"), url("https://db.onlinewebfonts.com/t/74617c24138f5a2dac1287f09a23550b.woff")format("woff"), url("https://db.onlinewebfonts.com/t/74617c24138f5a2dac1287f09a23550b.ttf")format("truetype"), url("https://db.onlinewebfonts.com/t/74617c24138f5a2dac1287f09a23550b.svg#Cooperative Regular")format("svg");
}
*/
.lds-facebook,
.lds-facebook div {
    box-sizing: border-box;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-facebook div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 16px;
        background: #38267C;
        animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .lds-facebook div:nth-child(1) {
            left: 8px;
            animation-delay: -0.24s;
        }

        .lds-facebook div:nth-child(2) {
            left: 32px;
            animation-delay: -0.12s;
        }

        .lds-facebook div:nth-child(3) {
            left: 56px;
            animation-delay: 0s;
        }

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}



.lds-hourglass {
    /* change color here */
    color: #1c4c5b
}

    .lds-hourglass,
    .lds-hourglass:after {
        box-sizing: border-box;
    }

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-hourglass:after {
        content: " ";
        display: block;
        border-radius: 50%;
        width: 0;
        height: 0;
        margin: 8px;
        box-sizing: border-box;
        border: 32px solid currentColor;
        border-color: currentColor transparent currentColor transparent;
        animation: lds-hourglass 1.2s infinite;
    }

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

/* HTML: <div class="loader"></div> */
/*.saving-loader {
    width: 120px;
    height: 22px;
    border-radius: 40px;
    color: #FFFFFF;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

    .saving-loader::before {
        content: "";
        position: absolute;
        margin: 2px;
        width: 14px;
        top: 0;
        bottom: 0;
        left: -20px;
        border-radius: inherit;
        background: currentColor;
        box-shadow: -10px 0 12px 3px currentColor;
        clip-path: polygon(0 5%, 100% 0,100% 100%,0 95%,-30px 50%);
        animation: l14 1s infinite linear;
    }

@keyframes l14 {
    100% {
        left: calc(100% + 20px)
    }
}*/

.saving-loader {
    place-self: center;
    background: linear-gradient(90deg, #6495ED, #ccc, #6495ED) -100%/ 200%;
    /* being excessively careful with compat, 
	 * though this has been supported unprefixed and 
	 * in the shorthand across major browsers for a while */
    -webkit-background-clip: text;
    background-clip: text;
    /* use color, don't use -webkit-text-fill-color anymore, 
	 * was meant to solve a problem we haven't had in years */
    color: transparent;
    font: 600 clamp(2em, 4vw, 5em) exo;
    font-family: 'Cosmic', sans-serif;
    animation: shimmer 2s linear infinite
}

@keyframes shimmer {
    to {
        background-position: 100%
    }
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    -webkit-mask: linear-gradient(0deg,#000 55%,#0000 0) bottom/100% 18.18%;
    background: linear-gradient(#6495ED 0 0) bottom/100% 0% no-repeat #ddd;
    animation: l8 2s infinite steps(7);
}

@keyframes l8 {
    100% {
        background-size: 100% 115%
    }
}

/* back to top button styles */

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

    .back-to-top-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
    }

    .back-to-top-btn.show {
        display: flex;
    }

    .back-to-top-btn:active {
        transform: translateY(-2px);
    }

.progress-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    top: 0;
    left: 0;
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.progress-circle-fill {
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-dasharray: 282.74;
    stroke-dashoffset: 282.74;
    transition: stroke-dashoffset 0.1s linear;
}

.rocket-emoji {
    position: relative;
    z-index: 1;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.back-to-top-btn.scrolling .rocket-emoji {
    animation: rocketFly 1.5s ease-in-out forwards;
}

@keyframes rocketFly {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }

    100% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
}

.back-to-top-btn.scrolling {
    animation: buttonPulse 1.5s ease-in-out forwards;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .back-to-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .rocket-emoji {
        font-size: 22px;
    }

    .progress-circle-bg,
    .progress-circle-fill {
        stroke-width: 1.5;
    }
}

/* end of back to top button styles */



/* logo */
.brand-link {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    /*background: #ffffff;*/
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .brand-link:hover {
        transform: scale(1.05);
    }

/* ✨ Dinamik ışık çizgisi */
.sweep {
    position: absolute;
    width: 120px;
    height: 120%;
    pointer-events: none;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.7), transparent );
    transform: skewX(-25deg);
    opacity: 0;
}

.brand-link.active .sweep {
    animation: sweepMove 0.7s ease forwards;
}

@keyframes sweepMove {
    0% {
        opacity: 1;
        transform: translateX(0) skewX(-25deg);
    }

    100% {
        opacity: 0;
        transform: translateX(250px) skewX(-25deg);
    }
}

/* SVG ikon */
.play-icon {
    width: 40px;
    height: 40px;
    fill: #1e2a78;
}

    /* 🔥 Gerçek yuvarlatılmış üçgen */
    .play-icon path {
        fill: #1e2a78;
    }

/* Pulse */
.brand-link:hover .play-icon {
    animation: pulse 0.8s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
    color: #1e2a78;
}

/* Ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(30, 42, 120, 0.25);
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* TABLET */
@media (max-width: 768px) {
    .play-icon {
        width: 34px;
        height: 34px;
    }

    .brand-text {
        font-size: 16px;
    }

    .brand-link {
        gap: 10px;
        padding: 10px 18px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .play-icon {
        width: 28px;
        height: 28px;
    }

    .brand-text {
        font-size: 14px;
    }

    .brand-link {
        gap: 8px;
        padding: 8px 14px;
    }
}

/* SMALL MOBILE */
@media (max-width: 360px) {
    .play-icon {
        width: 24px;
        height: 24px;
    }

    .brand-text {
        font-size: 12px;
    }

    .brand-link {
        gap: 6px;
        padding: 6px 12px;
    }
}

/* end of logo */

/* basic style */
.stg-text-color-white {
    color: var(--stg-color-white) !important;
}
