/*=========================================================
    SWEEPSTAKES CALCULATOR
    sweepstakes-style.css
=========================================================*/


/*=========================================================
    GLOBAL
=========================================================*/

#sweepstakes-calculator,
#sweepstakes-calculator *,
#sweepstakes-calculator *::before,
#sweepstakes-calculator *::after {
    box-sizing: border-box;
}


/*=========================================================
    WRAPPER
=========================================================*/

.sweepstakes-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 50px auto;
    padding: 0 20px;
}


/*=========================================================
    SECTION
=========================================================*/

.sweepstakes-wrapper .sw-section {
    background: #F4F4F4;
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 25px;
    transition: .35s;
    overflow: hidden;
}

.sweepstakes-wrapper .sw-section.sw-active {
    opacity: 1;
}

.sweepstakes-wrapper .sw-section.sw-locked {
    opacity: .75;
}


/*=========================================================
    HEADER
=========================================================*/

.sweepstakes-wrapper .sw-section-header {
    margin-bottom: 30px;
}

.sweepstakes-wrapper .sw-step-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sweepstakes-wrapper .sw-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sweepstakes-wrapper .sw-header-left h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

.sweepstakes-wrapper .sw-header-right {
    max-width: 380px;
}

.sweepstakes-wrapper .sw-header-right p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}


/*=========================================================
    STEP NUMBER
=========================================================*/

.sweepstakes-wrapper .sw-step-number {
    width: 42px;
    height: 42px;
    background: #1D1D1B;
    color: #FFBD00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}


/*=========================================================
    MAIN LAYOUT
=========================================================*/

.sweepstakes-wrapper .sw-step-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 28px;
    align-items: start;
}


/*=========================================================
    FORM AREA
=========================================================*/

.sweepstakes-wrapper .sw-form-area {
    width: 100%;
}


/*=========================================================
    INPUT GRID
=========================================================*/

.sweepstakes-wrapper .sw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
}


/*=========================================================
    FIELD
=========================================================*/

.sweepstakes-wrapper .sw-field {
    width: 100%;
}

.sweepstakes-wrapper .sw-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}


/*=========================================================
    INPUT
=========================================================*/

.sweepstakes-wrapper .sw-input {
    height: 45px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
}

.sweepstakes-wrapper .sw-input span {
    width: 45px;
    min-width: 45px;
    text-align: center;
    font-size: 15px;
    color: #555;
}

.sweepstakes-wrapper .sw-input input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #111;
    padding: 0 12px;
}

.sweepstakes-wrapper .sw-input input::placeholder {
    color: #aaa;
}


/*=========================================================
    REMOVE NUMBER INPUT ARROWS
=========================================================*/

.sweepstakes-wrapper input[type="number"]::-webkit-inner-spin-button,
.sweepstakes-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sweepstakes-wrapper input[type="number"] {
    -moz-appearance: textfield;
}


/*=========================================================
    LOCKED STATE
=========================================================*/

.sweepstakes-wrapper .sw-locked {
    cursor: not-allowed;
}

.sweepstakes-wrapper .sw-locked .sw-input input {
    cursor: not-allowed;
    opacity: .6;
}

.sweepstakes-wrapper .sw-collapsed .sw-section-body {
    display: none;
}


/*=========================================================
    SUMMARY
=========================================================*/

.sweepstakes-wrapper .sw-summary {
    width: 100%;
    background: #1D1D1B;
    border-radius: 22px;
    padding: 16px;
    min-height: 260px;
    position: relative;
}

.sweepstakes-wrapper .sw-summary-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sweepstakes-wrapper .sw-summary-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/*=========================================================
    SUMMARY ITEM
=========================================================*/

.sweepstakes-wrapper .sw-summary-item {
    background: #2A2A28;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.sweepstakes-wrapper .sw-summary-item small {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.45;
}

.sweepstakes-wrapper .sw-summary-item div {
    color: #FFBD00;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.qc-bottom-row {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.qc-bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.qc-bottom-text {
    font-size: 24px;
    font-weight: 700;
}

/*=========================================================
    SUMMARY NOTE
=========================================================*/

.sweepstakes-wrapper .sw-summary-note {
    margin: 18px auto 0;
    color: #B0B0B0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    padding: 0 15px;
}

.sweepstakes-wrapper .sw-summary-note strong {
    color: #FFBD00;
}


/*=========================================================
    STEP 2
=========================================================*/

#sweepstakes-step2 .sw-step-layout {
    grid-template-columns: 1fr 350px;
}

#sweepstakes-step2 .sw-summary {
    min-height: 100%;
}

#sweepstakes-step2 .sw-summary-inner {
    gap: 15px;
}


/*=========================================================
    STEP 3
=========================================================*/

#sweepstakes-step3 .sw-step-layout {
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

#sweepstakes-step3 .sw-form-area {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#sweepstakes-step3 .sw-full {
    width: 100%;
}

#sweepstakes-step3 .sw-input {
    height: 46px;
}


/*=========================================================
    STEP 3 SUMMARY
=========================================================*/

#sweepstakes-step3 .sw-summary {
    min-height: auto;
}

#sweepstakes-step3 .sw-summary-item {
    padding: 18px 15px;
}

#sweepstakes-step3 .sw-summary-item div {
    font-size: 26px;
}

.sw-yearly{
    margin-top: 5px;
}

.sw-yearly span{
    font-size: 12px;
}

/*=========================================================
    RESULT SECTION
=========================================================*/

#sweepstakes-result .sw-section-header {
    margin-bottom: 25px;
}


/*=========================================================
    RESULT TOP
=========================================================*/

#sweepstakes-result .sw-result-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}


/*=========================================================
    BUTTONS
=========================================================*/

.sweepstakes-wrapper .sw-btn {
    height: 48px;
    padding: 0 28px;
    border: 0;
    outline: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.sweepstakes-wrapper .sw-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.sweepstakes-wrapper .sw-btn-dark {
    background: #1D1D1B;
    color: #fff;
}

.sweepstakes-wrapper .sw-btn-dark:hover:not(:disabled) {
    background: #000;
}

.sweepstakes-wrapper .sw-btn-light {
    background: #E9E9E9;
    color: #111;
}

.sweepstakes-wrapper .sw-btn-light:hover:not(:disabled) {
    background: #DCDCDC;
}


/*=========================================================
    SWEEPSTAKES RESULT BOX
=========================================================*/

#sweepstakes-result .sw-result-box {
    background: #FFBD00;
    border-radius: 18px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/*=========================================================
    RESULT ITEM
=========================================================*/

#sweepstakes-result .sw-result-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 22px 15px;
}

#sweepstakes-result .sw-result-item small {
    display: block;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

#sweepstakes-result .sw-result-item div {
    color: #111;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}


/*=========================================================
    RESULT HIGHLIGHT
=========================================================*/

#sweepstakes-result .sweepstakes-result-highlight {
    background: #1D1D1B;
}

#sweepstakes-result .sweepstakes-result-highlight small {
    color: #fff;
}

#sweepstakes-result .sweepstakes-result-highlight div {
    color: #FFBD00;
}


/*=========================================================
    CTA
=========================================================*/

#sweepstakes-result .sweepstakes-cta {
    margin-top: 30px;
    text-align: center;
}

#sweepstakes-result .sweepstakes-cta p {
    margin: 0 0 15px;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

#sweepstakes-result .sweepstakes-cta .sw-btn {
    min-width: 260px;
}


/*=========================================================
    FULL WIDTH RESULT ITEM
=========================================================*/

#sweepstakes-result .sweepstakes-result-full {
    grid-column: 1 / -1;
}

.sweepstakes-cta .sc-btn{
    background: #000;
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 992px) {

    .sweepstakes-wrapper {
        margin: 30px auto;
        padding: 0 15px;
    }

    .sweepstakes-wrapper .sw-section {
        padding: 25px;
        border-radius: 22px;
    }

    .sweepstakes-wrapper .sw-step-layout {
        grid-template-columns: 1fr;
    }

    .sweepstakes-wrapper .sw-grid {
        grid-template-columns: 1fr;
    }

    .sweepstakes-wrapper .sw-header-right {
        max-width: 100%;
    }

    .sweepstakes-wrapper .sw-step-info {
        display: block;
    }

    .sweepstakes-wrapper .sw-header-right {
        margin-top: 12px;
    }

    #sweepstakes-step2 .sw-step-layout {
        grid-template-columns: 1fr;
    }

    #sweepstakes-step3 .sw-step-layout {
        grid-template-columns: 1fr;
    }

    #sweepstakes-result .sw-result-top {
        justify-content: center;
        flex-wrap: wrap;
    }

    #sweepstakes-result .sw-result-box {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px;
    }

}


/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 600px) {

    .sweepstakes-wrapper .sw-section {
        padding: 20px;
        border-radius: 18px;
    }

    .sweepstakes-wrapper .sw-header-left h2 {
        font-size: 22px;
    }

    .sweepstakes-wrapper .sw-step-number {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    #sweepstakes-result .sw-result-box {
        grid-template-columns: 1fr;
    }

    #sweepstakes-result .sweepstakes-result-full {
        grid-column: auto;
    }

    #sweepstakes-result .sw-result-item div {
        font-size: 27px;
    }

    .sweepstakes-wrapper .sw-btn {
        width: 100%;
    }

    #sweepstakes-result .sweepstakes-cta .sw-btn {
        min-width: 0;
    }
    .qc-bottom-text {
        font-size: 18px;
        font-weight: 700;
    }

}