/*
 Theme Name: Imprendi Facile
 Theme URI: https://imprendifacile.it
 Author: Imprendi Facile
 Author URI: https://imprendifacile.it
 Version: 1.0
 Template: bricks
 Text Domain: imprendifacile
*/

/* Variables CSS */
:root {
    --if-primary-color: #EC6806;
    --if-primary-dark: #803803;
    --if-primary-light: #FCE6D7;
    --if-success-color: #059669;
    --if-success-dark: #047857;
    --if-text-primary: #1f2937;
    --if-text-secondary: #6b7280;
    --if-text-light: #9ca3af;
    --if-background: #ffffff;
    --if-background-light: #f9fafb;
    --if-border-light: #e5e7eb;
    --if-border-focus: #EC6806;
    --if-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --if-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --if-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --if-radius-sm: 0.375rem;
    --if-radius-md: 0.5rem;
    --if-radius-lg: 0.75rem;
    --if-radius-xl: 1rem;
}

/* LearnDash */
#ld-profile .ld-profile-summary,
#ld-profile button[aria-controls="ld-course-search"],
#ld-tab-panel-content img:first-child {
    display: none;
}

.learndash-wrapper:not(.ld-registration__outer-wrapper):not(.learndash-wrapper--modern) .ld-button,
.learndash-wrapper:not(.ld-registration__outer-wrapper):not(.learndash-wrapper--modern) #learndash_mark_complete_button,
.learndash-wrapper:not(.ld-registration__outer-wrapper):not(.learndash-wrapper--modern) .learndash_mark_complete_button,
.learndash-wrapper:not(.ld-registration__outer-wrapper):not(.learndash-wrapper--modern) .ld-button-primary,
#ld-profile .ld-expand-button {
    border-radius: 5px;
    color: #fff!important;
}
.learndash-wrapper:not(.ld-registration__outer-wrapper):not(.learndash-wrapper--modern) .sfwd-mark-complete:after {
    font-size: 12px;
}

/* formidable */
.frm_checkbox a {
    text-decoration: underline;
}

/* Intro Step */
.if-intro-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--if-text-secondary);
    margin-bottom: 2rem;
}

.if-intro-cta {
    background: var(--if-primary-light);
    padding: 1.5rem;
    border-radius: var(--if-radius-lg);
    border-left: 4px solid var(--if-primary-color);
    text-align: center;
}

.if-intro-cta p {
    margin-bottom: 0.5rem;
    color: var(--if-text-primary);
}

.if-intro-cta p:last-child {
    margin-bottom: 0;
    color: var(--if-text-secondary);
    font-size: 0.9rem;
}

/* Assessment Container */
#if-assessment-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
}

/* Progress Bar */
.if-progress-bar {
    background: var(--if-background-light);
    border-radius: var(--if-radius-xl);
    padding: 0.25rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--if-shadow-sm);
}

.if-progress-fill {
    background: linear-gradient(135deg, var(--if-primary-color) 0%, var(--if-primary-dark) 100%);
    height: 1rem;
    border-radius: var(--if-radius-lg);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20%;
    position: relative;
    overflow: hidden;
}

.if-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.if-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--if-text-primary);
    z-index: 10;
}

/* Steps */
.if-step {
    display: none;
    margin-bottom: 1.5rem;
}

.if-step.active {
    display: block;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateY(1rem);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.if-step h2 {
    color: var(--if-text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.if-step h3 {
    color: var(--if-text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.125rem;
}

/* Questions */
.if-question {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--if-background-light);
    border-radius: var(--if-radius-lg);
    border: 1px solid var(--if-border-light);
	border-left: 4px solid var(--if-primary-color);
    transition: all 0.3s ease;
}

.if-question:hover {
    box-shadow: var(--if-shadow-md);
    transform: translateY(-1px);
}

.if-question-text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--if-text-primary);
    line-height: 1.6;
    font-weight: 500;
}

/* Radio Group */
.if-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.if-radio-option input[type="radio"] {
    display: none;
}

.if-radio-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    border: 2px solid var(--if-border-light);
    border-radius: var(--if-radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    background: var(--if-background);
    min-height: 80px;
    text-align: center;
}

.if-radio-option label strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--if-primary-color);
    margin-bottom: 0.25rem;
}

.if-radio-option label small {
    color: var(--if-text-secondary);
    font-weight: 400;
    line-height: 1.4;
}

.if-radio-option input[type="radio"]:checked + label {
    border-color: var(--if-primary-color);
    background: var(--if-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 104, 6, 0.15);
}

.if-radio-option input[type="radio"]:checked + label strong {
    color: var(--if-primary-dark);
}

.if-radio-option label:hover {
    border-color: var(--if-primary-color);
    transform: translateY(-1px);
    box-shadow: var(--if-shadow-md);
}

/* Blocks Grid */
.if-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.if-block-option {
    background: var(--if-background);
    border: 2px solid var(--if-border-light);
    border-radius: var(--if-radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.if-block-option:hover {
    border-color: var(--if-primary-color);
    transform: translateY(-2px);
    box-shadow: var(--if-shadow-lg);
}

.if-block-option.selected {
    border-color: var(--if-primary-color);
    background: var(--if-primary-light);
    box-shadow: 0 8px 25px rgba(236, 104, 6, 0.15);
}

.if-block-option.selected::before {
    transform: scaleX(1);
}

.if-block-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--if-text-primary);
    font-size: 1rem;
}

.if-block-description {
    color: var(--if-text-secondary);
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.5;
}

.if-block-option.selected .if-block-title {
    color: var(--if-primary-dark);
}

/* Blocchi disabilitati */
.if-block-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

.if-block-option.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--if-border-light);
}

/* Contatore selezioni */
.selection-counter {
    color: var(--if-primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.blocks-step h3 small {
    display: block;
    margin-top: 0.5rem;
}

/* User Fields */
.if-user-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.if-field-group {
    display: flex;
    flex-direction: column;
}

.if-field-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--if-text-primary);
    font-size: 0.875rem;
}

.if-field-group input {
    padding: 0.5rem 1rem;
    border: 2px solid var(--if-border-light);
    border-radius: var(--if-radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--if-background);
    line-height: 1;
    min-height: 60px;
}

.if-field-group input:focus {
    outline: none;
    border-color: var(--if-border-focus);
    box-shadow: 0 0 0 3px rgba(236, 104, 6, 0.1);
    background: var(--if-background);
}

.if-field-group input::placeholder {
    color: var(--if-text-light);
}

/* Navigation */
.if-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1rem;
}

.if-btn {
    padding: 0.875rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.if-btn-primary {
    background: var(--if-primary-color);
    color: white;
}

.if-btn-primary:hover {
    opacity: 0.8;
}

.if-btn-secondary {
    background: var(--if-text-secondary);
    color: white;
    box-shadow: var(--if-shadow-md);
}

.if-btn-secondary:hover {
    background: var(--if-text-primary);
    opacity: 0.8;
}

.if-btn-success {
    background: var(--if-success-color);
    color: white;
}

.if-btn-success:hover {
    opacity: 0.8;
}

.if-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Messages */
.if-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem 1.25rem;
    border-radius: var(--if-radius-lg);
    margin: 1rem 0;
    border-left: 4px solid #dc2626;
    font-weight: 500;
}

.if-success {
    background: #f0fdf4;
    color: #16a34a;
    padding: 1rem 1.25rem;
    border-radius: var(--if-radius-lg);
    margin: 1rem 0;
    border-left: 4px solid #16a34a;
    font-weight: 500;
}

/* Loading */
#if-loading {
    text-align: center;
    padding: 2rem;
    color: var(--if-text-secondary);
}

#if-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--if-border-light);
    border-radius: 50%;
    border-top-color: var(--if-primary-color);
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    #if-assessment-container {
        padding: 0;
    }
    
    .if-step {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .if-step h2 {
        font-size: 1.5rem;
    }
    
    .if-step h3 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .if-radio-group {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .if-radio-option label {
        padding: 0.75rem 0.5rem;
        min-height: 70px;
        font-size: 0.8rem;
    }
    
    .if-radio-option label strong {
        font-size: 1.125rem;
    }
    
    .if-blocks-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .if-block-option {
        padding: 1.25rem;
    }
    
    .if-user-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .if-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .if-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }
    
    .if-question {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .if-question-text {
        font-size: 0.9rem;
    }
}


.if-results-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 1.5rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--if-text-primary);
	line-height: 1.6;
}

/* Header */
.if-results-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem;
	background: linear-gradient(135deg, var(--if-primary-light) 0%, rgba(252, 230, 215, 0.3) 100%);
	border-radius: var(--if-radius-xl);
	border: 1px solid var(--if-border-light);
}

.if-results-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--if-primary-dark);
	margin-bottom: 0.5rem;
}

.if-results-subtitle {
	font-size: 1.125rem;
	color: var(--if-text-secondary);
	margin-bottom: 0;
}

/* Answers Container - Versione Definitiva con Colori */
.if-answers-container {
    margin-bottom: 2rem;
}

.if-answers-section {
    margin-bottom: 2.5rem;
    background: var(--if-background-light);
    border-radius: var(--if-radius-lg);
    overflow: hidden;
    border: 1px solid var(--if-border-light);
}

.if-answers-section:last-child {
    margin-bottom: 0;
}

.if-answers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--if-primary-color) 0%, var(--if-primary-dark) 100%);
    color: white;
    margin: 0;
}

.if-answers-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.if-answers-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.if-answers-total {
    color: white;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: var(--if-radius-md);
    backdrop-filter: blur(10px);
}

.if-answers-percentage {
    color: white;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: var(--if-radius-md);
    backdrop-filter: blur(10px);
}

.if-questions-list {
    padding: 0;
    margin: 0;
}

.if-question-answer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--if-background);
    border-bottom: 1px solid var(--if-border-light);
    transition: all 0.3s ease;
}

.if-question-answer:last-child {
    border-bottom: none;
}

.if-question-answer:hover {
    background: var(--if-primary-light);
    transform: translateX(5px);
}

.if-question-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
}

.if-question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--if-primary-color), var(--if-primary-dark));
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(236, 104, 6, 0.3);
}

.if-question-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--if-text-primary);
    font-weight: 500;
}

.if-answer-given {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    min-width: 100px;
}

.if-answer-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--if-success-color), #047857);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.4);
}

.if-answer-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--if-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--if-primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--if-primary-color);
    text-align: center;
}

/* Responsive con Colori Mantenuti */
@media (max-width: 768px) {
    .if-answers-container {
        padding: 1.5rem;
    }
    
    .if-answers-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
        text-align: center;
    }
    
    .if-answers-section-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .if-answers-summary {
        justify-content: center;
    }
    
    .if-question-answer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .if-question-text {
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .if-answer-given {
        align-self: center;
        flex-direction: row;
        gap: 0.75rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .if-answers-container {
        padding: 1rem;
    }
    
    .if-answers-header {
        padding: 1rem;
    }
    
    .if-question-answer {
        padding: 1rem;
    }
    
    .if-question-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .if-question-content {
        font-size: 0.9rem;
    }
    
    .if-question-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }
    
    .if-answer-value {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .if-answers-total,
    .if-answers-percentage {
        font-size: 1rem;
        padding: 0.375rem 0.625rem;
    }
}

/* Sections Scores */
.if-sections-container {
	margin-bottom: 3rem;
}

.if-section-title {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--if-text-primary);
}

.if-sections-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.if-section-card {
	background: var(--if-background);
	border-radius: var(--if-radius-xl);
	padding: 2rem;
	box-shadow: var(--if-shadow-lg);
	border: 1px solid var(--if-border-light);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.if-section-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.if-section-header {
	margin-bottom: 1.5rem;
}

.if-section-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--if-text-primary);
	margin-bottom: 0.5rem;
}

.if-section-subtitle {
	font-size: 1rem;
	color: var(--if-text-secondary);
	font-weight: 400;
}

/* Score Circle */
.if-score-circle {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 1.5rem;
}

.if-score-svg {
	transform: rotate(-90deg);
	width: 100%;
	height: 100%;
}

.if-score-circle-bg {
	fill: none;
	stroke: var(--if-border-light);
	stroke-width: 10;
}

.if-score-circle-fill {
	fill: none;
	stroke: var(--if-primary-color);
	stroke-width: 10;
	stroke-linecap: round;
	transition: stroke-dasharray 1.5s ease-in-out;
}

.if-score-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.if-score-percentage {
	font-size: 2rem;
	font-weight: 700;
	color: var(--if-primary-color);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.if-score-fraction {
	font-size: 0.875rem;
	color: var(--if-text-secondary);
	font-weight: 500;
}

/* Level Badge */
.if-level-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.if-level-eccellente { 
	background: #d1fae5; 
	color: #065f46; 
	border: 1px solid #10b981;
}
.if-level-buono { 
	background: #dbeafe; 
	color: #1e40af; 
	border: 1px solid #3b82f6;
}
.if-level-medio { 
	background: #fef3c7; 
	color: #92400e; 
	border: 1px solid #f59e0b;
}
.if-level-debole { 
	background: #fce7f3; 
	color: #be185d; 
	border: 1px solid #ec4899;
}
.if-level-critico { 
	background: #fee2e2; 
	color: #dc2626; 
	border: 1px solid #ef4444;
}

.if-level-description {
	font-size: 0.9rem;
	color: var(--if-text-secondary);
	line-height: 1.5;
	max-width: 280px;
	margin: 0 auto;
}

/* Blocks Section */
.if-blocks-container {
	background: var(--if-background);
	border-radius: var(--if-radius-xl);
	padding: 2rem;
	box-shadow: var(--if-shadow-lg);
	border: 1px solid var(--if-border-light);
	margin-bottom: 3rem;
}

.if-blocks-title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1.5rem;
	color: var(--if-text-primary);
}

.if-blocks-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.if-block-item {
	background: var(--if-background-light);
	padding: 1.25rem;
	border-radius: var(--if-radius-lg);
	border-left: 4px solid #ef4444;
	display: flex;
	align-items: center;
}

.if-block-item::before {
	content: '⚠️';
	font-size: 1.5rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.if-block-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--if-text-primary);
}

/* Footer */
.if-results-footer {
	text-align: center;
	padding: 2rem;
	background: var(--if-background-light);
	border-radius: var(--if-radius-lg);
	color: var(--if-text-secondary);
	font-size: 0.875rem;
}

.if-assessment-results {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
	align-items: center;
    margin-top: 50px;
}
.if-assessment-results h3 {
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.if-results-container {
		padding: 1rem;
	}
	
	.if-results-title {
		font-size: 2rem;
	}
	
	.if-sections-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.if-section-card {
		padding: 1.5rem;
	}
	
	.if-score-circle {
		width: 120px;
		height: 120px;
	}
	
	.if-score-percentage {
		font-size: 1.75rem;
	}
	
	.if-blocks-list {
		grid-template-columns: 1fr;
	}

	/* LearnDash */
	.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content h1 {
		font-size: 1.5rem;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.if-results-header {
		padding: 1.5rem;
	}
	
	.if-section-card {
		padding: 1.25rem;
	}
	
	.if-score-circle {
		width: 100px;
		height: 100px;
	}
	
	.if-score-percentage {
		font-size: 1.5rem;
	}
	
	.if-section-name {
		font-size: 1.25rem;
	}
	.if-assessment-results {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.if-results-footer {
		padding: 1rem;
	}
}

/*WOOCOMMERCE*/
.show-password-input {
    background-color: transparent!important;
}
#billing_invoice_type-description {
    margin-top: 10px;
    display: block;
}
.cart-collaterals {
	margin-top: 50px;
}
.woocommerce-checkout h3 {
	margin-bottom: 20px;
}
.woocommerce-cart .woocommerce {
	padding: 0!important;
}
.woocommerce-form-login-toggle,
.woocommerce-form-coupon-toggle {
	margin-bottom: 10px;
}

.woocommerce-checkout .woocommerce-form.woocommerce-form-login.login{
    padding: 20px;
    border: 1px solid #eee;
    margin: -11px 0 0;
}
.woocommerce-checkout form.checkout_coupon {
    margin: -11px 0 30px 0!important;
    background: transparent!important;
    border: 1px solid #eee;
}
.woocommerce-cart .checkout-button {
	width: 100%;
	padding: 25px 40px!important;
	margin-bottom: 10px;
	transition: opacity .5s;
}
.woocommerce-cart .checkout-button:hover {
	opacity: .75;
} 
.woocommerce-cart .checkout-button + p {
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
}
.woocommerce-form-coupon button,
.woocommerce-checkout .woocommerce-form-login__submit,
button[name="save_account_details"],
button[name="save_address"], 
.login .woocommerce-button,
.lost_reset_password .button,
.wc-forward,
#place_order  {
	padding: 15px 40px!important;
	min-height: 50px!important;
    line-height: 1;
	border-radius: 10px;
	background-color: var(--bricks-color-ahrqww)!important;
	color: #fff!important;
	transition: all .5s;
}
.lost_reset_password .button, 
.login .woocommerce-button,
.wc-forward,
#place_order {
	width: 100%;
}
.woocommerce-form.woocommerce-form-login {
    padding: 0;
    border: 0;
    text-align: left;
}
.woocommerce-form-coupon button:hover,
.woocommerce-checkout .woocommerce-form-login__submit:hover,
button[name="save_account_details"]:hover,
button[name="save_address"]:hover,
.login .woocommerce-button:hover,
.lost_reset_password .button:hover,
.woocommerce-cart .checkout-button:hover,
.wc-forward:hover,
#place_order:hover {
	opacity: .75;
}
.woocommerce-info a {
	text-decoration: none!important;
}
.input-text:not(.qty) {
    border-radius: 5px;
    border-color: #ccc;
    min-height: 50px;
}
.woocommerce .select2-selection {
    min-height: 50px;
    border-radius: 5px!important;
    border-color: #ccc!important;
    line-height: 50px!important;
}

/*THANK YOU STYLE*/
.woocommerce .woocommerce-notice.woocommerce-notice--success {
    color: var(--bricks-color-ahrqww)!important;
    margin-top: 0;
}
.woocommerce-order-received .brxe-post-content {
	width: 100%;
}
.woocommerce-order-received .brxe-post-content h2,
.woocommerce-MyAccount-content h2{
	font-size: 25px;
	margin-bottom: 20px;
}
.woocommerce-order-received .woocommerce-order h2{
	font-size: 25px;
	margin-bottom: 20px;
}

/*MY ACCOUNT*/
.address-list {
    margin-top: 7px;
    font-size: 14px;
    color: #555;
    line-height: 1.2;
}
.woocommerce-MyAccount-content h3{
	margin-bottom: 20px;
}

.woocommerce-MyAccount-content fieldset {
    border: 0!important;
    padding: 0!important;
}
.woocommerce-MyAccount-content fieldset legend {
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 20px;
}
.woocommerce-MyAccount-content .edit {
	display: flex;
	text-decoration: underline;
	margin-bottom: 20px;
	font-weight: 700;
}

/*MY ACCOUNT NAVIGATION*/
.woocommerce-account .woocommerce-MyAccount-navigation {
	background: transparent!important;
}
.woocommerce-MyAccount-navigation-link {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid #eee;
}
.woocommerce-MyAccount-navigation-link::before {
	content: '';
	display: flex;
	width: 25px;
	background-size: contain;
	background-repeat: no-repeat;
	height: 25px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
	color: #212121!important;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	color: var(--bricks-color-ahrqww)!important;
}
.woocommerce-MyAccount-navigation-link--dashboard::before{
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-speedometer2" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4zM3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707zM2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10zm9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5zm.754-4.246a.389.389 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.389.389 0 0 0-.029-.518z"/><path fill-rule="evenodd" d="M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A7.988 7.988 0 0 1 0 10zm8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3z"/></svg>');
}
.woocommerce-MyAccount-navigation-link--orders::before{
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-ticket" viewBox="0 0 16 16"><path d="M0 4.5A1.5 1.5 0 0 1 1.5 3h13A1.5 1.5 0 0 1 16 4.5V6a.5.5 0 0 1-.5.5 1.5 1.5 0 0 0 0 3 .5.5 0 0 1 .5.5v1.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 11.5V10a.5.5 0 0 1 .5-.5 1.5 1.5 0 1 0 0-3A.5.5 0 0 1 0 6V4.5ZM1.5 4a.5.5 0 0 0-.5.5v1.05a2.5 2.5 0 0 1 0 4.9v1.05a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-1.05a2.5 2.5 0 0 1 0-4.9V4.5a.5.5 0 0 0-.5-.5h-13Z"/></svg>');
}
.woocommerce-MyAccount-navigation-link--downloads::before{
	background-image: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.woocommerce-MyAccount-navigation-link--edit-address::before{
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pin-map" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M3.1 11.2a.5.5 0 0 1 .4-.2H6a.5.5 0 0 1 0 1H3.75L1.5 15h13l-2.25-3H10a.5.5 0 0 1 0-1h2.5a.5.5 0 0 1 .4.2l3 4a.5.5 0 0 1-.4.8H.5a.5.5 0 0 1-.4-.8l3-4z"/><path fill-rule="evenodd" d="M8 1a3 3 0 1 0 0 6 3 3 0 0 0 0-6zM4 4a4 4 0 1 1 4.5 3.969V13.5a.5.5 0 0 1-1 0V7.97A4 4 0 0 1 4 3.999z"/></svg>');
}
.woocommerce-MyAccount-navigation-link--edit-account::before{
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-person" viewBox="0 0 16 16"><path d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z"/></svg>');
}
.woocommerce-MyAccount-navigation-link--customer-logout::before{
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-box-arrow-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z"/><path fill-rule="evenodd" d="M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z"/></svg>');
}

/*RESPONSIVE*/
@media(min-width:991px){
	.woocommerce-cart-form .coupon {
		flex-direction: column;
	}
	.woocommerce-cart-form .coupon input {
		width: 100%!important;
	}
	form.woocommerce-ResetPassword.lost_reset_password {
		padding: 100px 0;
	}
	.woocommerce-cart-form tbody td {
		padding: 10px!important;
	}
}

@media(max-width:767px){
	#payment {
		padding: 0!important;
        border: 0!important;
	}
	#billing_first_name_field {
		margin-bottom: 1.2em!important;
	}
	.woocommerce-info {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	.woocommerce-checkout form.checkout_coupon {
	    display: flex;
	    flex-direction: column;
	    gap: 7px;
	}
	.woocommerce-checkout form.checkout_coupon button,
	.woocommerce-checkout .woocommerce-form-login__submit {
		width: 100%;
	}
	#order_review_heading {
		margin-top: 50px;
	}
}