﻿

.wizard-path-container {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.wizard-path-table {
    width:100%;
    border-spacing: 0;
}

.wizard-path-step {
    text-align: center;
    height: 30px;
    vertical-align:middle;
    color: #fff;
    background-color: #006FB3;
    cursor: pointer;
}

.wizard-path-step:not(.active):hover {
    text-decoration: underline;
    opacity: .9;
}
.wizard-path-step:first-child {
    border-left: 1px solid #006FB3;
}

.wizard-path-step.active {
    text-align: center;
    height: 30px;
    vertical-align:middle;
    color: #006FB3;
    background-color: #fff;
    border-top: 1px solid #006FB3;
}

.wizard-path-step.last {
    background-color: #32A674; 
    color: #fff;
    width: 60px;
    font-variant: small-caps;
    font-weight: bold;
}

.wizard-path-step.last.active {
    background-color: #fff; 
    color: #32A674;
    border-right: 1px solid #006FB3;
}

.wizard-steps-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 30px - 60px);
    white-space: nowrap;
    overflow: hidden;
}

.wizard-buttons-container {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 60px;
}

.wizard-buttons-container table {
    width: 100%;
    height: 100%;
}


.wizard-buttons-container table td:first-child div {
    float: left;
    width: 105px;
}
.wizard-buttons-container table td:last-child div {
    float: right;
    width: 105px;
}

.wizard-buttons-container table input[type=button] {
    width: 100px;
    height: 25px;
}


.wizard-step {
    display: inline-flex;
    vertical-align:top;
}

.wizard-step-content {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    white-space: normal;
    text-align: justify;
}

.wizard-steps-container {
    border: 1px solid #006FB3;
    border-top: none;
}
.wizard-buttons-container input[type=button] {
    padding: 3px 12px;
    top: 9px;
    max-width: 200px;
}

/*ajnew_styles below*/
.taxb-intro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.taxb-intro-item {
    flex: 0 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 30px;
    color: white;
    text-align: center;
    width: 30%;
    padding: 32px 18px;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    display: flex;
    align-items: center;
    flex-direction: column;
    scale: 0.9;
}

.taxb-intro-item--selected {
    opacity: 1;
    scale: 1.0;
}

.taxb-intro-item-subtitle {
    font-size:12px;
    margin-top:6px;
    font-style: italic;
}

.taxb-intro-item:not(.taxb-intro-item--selected):hover {
    opacity: 0.7;
    scale: 1;
}

.taxb-intro-item--selected:hover {
    opacity: 1;
    scale: 1.05;
}

.taxb-output-type-title {
    text-align: left;
}

.taxb-output-type-note {
    text-align: left;
    margin-top: 15px;
    float: left;
}

.taxb-output-type-item {
    border-bottom: 1px solid #cccccc;
    background: #f6f6f6;
    padding: .4em 1em;
    cursor: pointer;
}

.taxb-output-type-item:not(.taxb-output-type-item--selected):hover {
    border-bottom: 1px solid #cccccc;
    background: #ededed;
    color: #2b2b2b;
}

.taxb-output-type-item--selected {
    border-bottom: 1px solid #003eff;
    background: #007fff;
    color: #fff;
}

.taxb-output-type-item--disabled {
    opacity: 0.4;
}

@media (max-width: 200px) {
    .taxb-intro-item {
        width: 100%;
    }
}

.taxb-blinkable {
    transition: 0.7s;
}
