#cct-survey-container input.cct-survey-text-input {
    padding: 0.8em 1.25em;
    width: 100%;
    margin-bottom:1em;
    border-radius:100px;
}

#cct-survey-container label {
    width: 100%;
    margin-bottom: 1em;
    font-weight:700;
    font-size:1.3em;
}

#cct-survey-container button.cct-survey-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1000px;
    transition: 0.25s all ease-in-out;
    display: inline-flex;
    column-gap: 0.5em;
    align-items: center;
    justify-content: center;
    border-width: 2px;
    background: #0b97d5;
    border: 2px solid #0b97d5;
    color: #fff;
}

#cct-survey-container button.cct-survey-button:after {
    font-family: 'Material Symbols Outlined';
    content: '\e941';
    font-size: 1.4em;
    line-height: 1em;
}

#cct-survey-container button.cct-survey-button:hover {
    background: #007db5;
    border: 2px solid #007db5;
    color: #fff;
}

#cct-survey-container button.cct-survey-button:disabled {
    opacity:0.5;
}

#cct-survey-container button.cct-survey-button:disabled:hover {
    background: #0b97d5;
    border: 2px solid #0b97d5;
}


#cct-survey-container button.cct-survey-multiple-choice {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-decoration: none;
    padding: 1rem 1.5rem 1rem 2rem;
    border-radius: 1000px;
    transition: 0.25s all ease-in-out;
    display: block;
    border-width: 2px;
    background: #eee;
    border: 2px solid #ddd;
    color: #000;
    width:100%;
    margin-bottom:0.5em;
    text-align:left;
}

#cct-survey-container button.cct-survey-multiple-choice:hover {
    background:#ddd;
}


#cct-survey-container button.cct-survey-checklist-option {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-decoration: none;
    padding: 1rem 1.5rem 1rem 2rem;
    border-radius: 1000px;
    transition: 0.25s all ease-in-out;
    display: flex;
    border-width: 2px;
    background: #eee;
    border: 2px solid #ddd;
    color: #000;
    width:100%;
    margin-bottom:0.5em;
    text-align:left;
    line-height:1em;
    align-items:center;
}

#cct-survey-container button.cct-survey-checklist-option:hover {
    background:#ddd;
}

#cct-survey-container button.cct-survey-checklist-option.selected {
    background:#7fd3f8;
    border-color:#0b97d5;
}

#cct-survey-container button.cct-survey-checklist-option.selected:before {
    font-family: 'Material Symbols Outlined';
    content: '\e5ca';
    font-size: 1.4em;
    line-height: 0rem;
    margin-left:-1.4rem;
}

#cct-survey-container .question-image-wrapper {
    position: relative;
    width:100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5em;
}

#cct-survey-container .question-image-wrapper img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.cct-fade {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cct-hidden {
    opacity: 0;
}

#cct-progress-bar {
    display:flex;
    align-items:center;
    gap:1em;
}

#cct-progress-bar .progress {flex-grow:1;}

#cct-progress-bar #progress_text {font-size:0.8em;}



.cct-survey-list-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin: 30px 0;
}

.cct-survey-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    overflow:hidden;
    position:relative;
}

.cct-survey-card.completed > *:not(.survey-status) {
    opacity: 0.5;
}

.cct-survey-card:not(.completed):hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cct-survey-card .survey-thumbnail-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    background-color: #f5f5f5;
}

.cct-survey-card .survey-thumbnail-wrapper img.survey-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cct-survey-card .survey-content {
    padding: 20px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cct-survey-card .survey-header {
    margin-bottom: 15px;
}

.cct-survey-card .survey-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.cct-survey-card .survey-status {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #fff;
    display:flex;
    align-items:center;
    column-gap:0.5em;
    position:absolute;
    top:5px;
    right:5px;
}

.cct-survey-card .survey-status.completed {
    background-color: #4caf50;
}

.cct-survey-card .survey-status.pending {
    background-color: #f39c12;
}

.cct-survey-card .btn {
    font-size:0.65em;
    padding:0.75em 1.2em 0.75em 1.5em;
}

.cct-survey-card .btn.disabled {
    cursor: not-allowed;
    padding:0.75em 1.5em;
}

.cct-survey-card .locked-survey {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0b97d5;
    font-weight: 700;
}

.cct-survey-card .survey-upgrade-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cct-survey-card .incentive {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9em;
    display:flex;
    align-items:center;
    gap:0.2em;
}

.cct-survey-card .incentive a {
    line-height:1em;
}


.cct-demographics-survey {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
    background:#f9f9f9;
    border:1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    flex-wrap: wrap;
    position:relative;
}

.cct-demographics-survey h3 {
    display: flex;
    align-items: center;
}

.cct-demographics-survey .survey-status {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    column-gap: 0.5em;
    margin-left: 10px;
}

.cct-demographics-survey .survey-status.completed {
    background-color: #4caf50;
}

.cct-demographics-survey .survey-status.pending {
    background-color: #f39c12;
}





.page-template-page-surveys .woo_mini_cart {
    bottom: -100px;
}








