﻿
:root {
    --line-border-fill: #ff424b;
    --line-border-empty: #e6e6e6;
    --line-dark-border-empty: #969696;
}

.logo-image {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    /*width: 209px;
    height: 60px;*/
    opacity: 1;
    z-index: 2;
    top: 35px;
    margin-bottom: 80px;
    /*background: url(/images/btd_brand.svg) center center no-repeat;*/
}

#imgLogo {
    content: url(/images/btd_brand.svg);
    /*width: 200px;
    height: 60px;*/
}

.wizard-container {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 15px;
}

.wizard-container-footer {
    text-align: end;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    padding-top: 15px;
    padding-right: 20px;
}

.wizard-progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 90%;
    width: 100%;
}

    .wizard-progress-container::before {
        content: '';
        background-color: var(--line-border-empty);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        height: 2px;
        width: 100%;
        z-index: -1;
    }

.wizard-progress {
    background-color: var(--line-border-fill);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    z-index: -1;
    transition: 0.4s ease;
}

.wizard-circle {
    background-color: #fff;
    color: #999;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--line-border-empty);
    transition: 0.4s ease;
}

    .wizard-circle.active {
        border-color: var(--line-border-fill);
    }

.wizard-btn {
    background-color: var(--line-border-fill) !important;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 30px;
    margin: 5px;
    font-size: 14px;
}

    .wizard-btn:active {
        transform: scale(0.98);
    }

    .wizard-btn:focus {
        outline: 0;
        display: block;
    }

    .wizard-btn:disabled {
        background-color: var(--line-border-empty);
        cursor: not-allowed;
        display:none;
    }

.visible {
    visibility: visible;
}

.not-visible {
    visibility: hidden;
}