/* Complete Popup Styles */
.complete-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    overflow-y: auto;
}

.complete-overlay.active {
    display: block;
}

/* Popup */
.complete-popup {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    gap: 24px;
    isolation: isolate;
    
    position: absolute;
    width: 460px;
    min-height: 370px;
    max-height: max-content;
    left: calc(50% - 460px/2);
    top: 50px;
    margin-bottom: 50px;
    
    /* White/White-Main */
    background: #FFFFFF;
    box-shadow: 0px 16px 30px -10px rgba(26, 34, 56, 0.2);
    border-radius: 20px;
}

/* Close Button - Frame 37148 */
.complete-close {
    box-sizing: border-box;
    
    position: absolute;
    width: 20px;
    height: 20px;
    right: 14px;
    top: 14px;
    
    /* Grey/Grey-borders */
    border: 0.5px solid #D9D9D9;
    border-radius: 80px;
    
    /* Inside auto layout */
    flex: none;
    order: 2;
    flex-grow: 0;
    z-index: 2;
    
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.complete-close:hover {
    background: #F5F5F5;
}

/* Checkmark */
.complete-checkmark {
    width: 72px;
    height: 72px;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    z-index: 0;
    position: relative;
}

.complete-checkmark svg {
    width: 72px;
    height: 72px;
}

/* Heading */
.complete-heading {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 8px;
    
    width: 388px;
    height: 104px;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 1;
}

/* Complete! title */
.complete-title {
    width: 388px;
    height: 30px;
    
    /* Desktop/H4 */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    /* identical to box height, or 150% */
    text-align: center;
    
    /* Main/Black Sea */
    color: #1A2238;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Description */
.complete-description {
    width: 388px;
    height: 66px;
    
    /* Desktop/Regular-16px */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    /* or 138% */
    text-align: center;
    
    /* Grey/Grey-text */
    color: #9197A6;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Buttons Container - Bttns */
.complete-buttons {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 12px;
    
    width: 388px;
    height: 74px;
    
    /* Inside auto layout */
    flex: none;
    order: 3;
    align-self: stretch;
    flex-grow: 0;
    z-index: 3;
}

/* Primary Button - Buttons orange */
.complete-btn-primary {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    
    width: 388px;
    height: 40px;
    
    /* Orange/Orange-Main */
    background: #FF6A3D;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    
    transition: background 0.2s ease;
}

.complete-btn-primary:hover {
    background: #E55A30;
}

/* Primary Button Label */
.complete-btn-primary span {
    width: 173px;
    height: 24px;
    
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    
    /* White */
    color: #FFFFFF;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Secondary Button - Stay on home page */
.complete-btn-secondary {
    width: 126px;
    height: 22px;
    
    /* Desktop/Regular-14px */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    /* identical to box height, or 157% */
    text-decoration-line: underline;
    
    /* Dark/Dark-Hover */
    color: #3C4661;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.complete-btn-secondary:hover {
    color: #1A2238;
} 