:root {
    --base-color: #26304f;
    --base-text-color: white;
    --base-font-family: Arial, sans-serif;
    --base-font-size: 14px;
}

.ecommerce * {
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
}

.ecommerce h1,.ecommerce h2,.ecommerce h3,.ecommerce h4,.ecommerce h5,.ecommerce h6 {
    margin-bottom: 30px;
}
.ecommerce h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
}

.ecommerce .input-row,
.ecommerce .check-row {
    margin-bottom: 25px;
}

.ecommerce .input-row .input-title,
.ecommerce .check-row .check-title{
    margin-bottom: 10px;
}

.ecommerce .input-row .input-title label,
.ecommerce .check-row .check-title label{
    font-weight: bold;
    text-transform: uppercase;
}

.ecommerce .input-row input[type=text],
.ecommerce .input-row input[type=password],
.ecommerce .input-row input[type=number],
.ecommerce .input-row .vs__dropdown-toggle,
.ecommerce .input-row .input-password {
    border: 1px solid #ccc;
    height: 48px;
    width: 100%;
}
/* Firefox */
.ecommerce .input-row input[type=number] {
    -moz-appearance: textfield;
}

.ecommerce .check-row .check input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: auto;
}
.ecommerce .check-row .check input[type="checkbox"]:checked + label::after{
    content: "";
    top: 1px;
    left: -25px;
}

.ecommerce .check-row .check label {
    position: absolute;
    margin-left: 25px;
}
.ecommerce .check-row .check label::before {
    position: absolute;
    top: 1px;
    left: -25px;
    content: "";
    display: inline-block;
    height: 15px;
    width: 15px;
    border: 2px solid var(--base-color);
}
.ecommerce .check-row .check label::after {
    position: absolute;
    display: inline-block;
    height: 15px;
    width: 15px;
    background: var(--base-color);
    background-image: url(/media/1793/form-check.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.ecommerce .check-row .check-text {
    margin-left: 25px;
    text-align: justify;
}

.ecommerce .input-row .select-dropdown  {
    border: 1px solid #ccc;
    padding: 15px;
    width: 100%;
    height: 48px;
    background: #fff;
    box-sizing: border-box;
    background-image: url(/CDN/Content/images/common/arrow-down.png);
    background-size: 10px;
    background-position: 97% 50%;
    background-repeat: no-repeat;
    -webkit-border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.ecommerce .error,
.ecommerce .input-row .error {
    font-size: 11px;
    color: red;
    margin-top: 5px;
    font-weight: bold;
}

.ecommerce .submit-btn button.btn {
    background-color: var(--base-color);
    color: var(--base-text-color);
    float: right;
    cursor: pointer;
}

.ecommerce .submit-btn button.btn.left{
    float: left;
}

.steps .expirationTimer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 1em;
}

.steps .expirationTimer .expirationTimerMsg {
    font-size: 12pt;
    margin-bottom: 20px;
    border: 2px solid var(--base-color);
    padding: 5px 35px;
    text-align: center;
}

.steps .expirationTimer .expirationTimerMsg .time {
    font-size: 14pt;
    font-weight: bold;
    margin-left: 5px;
}