
.springtabs input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}


.faux-bullet::after {
    content: "\2022";
    width: 1em;
    height: 1em;
    font-size: 1.5em;
    text-align: center;
    padding-right: 5px;
    color: #696969;
}
.icon-accepted::after {
    content: "\2611";
    width: 1em;
    height: 1em;
    font-size: 1.5em;
    text-align: center;
    padding-right: 5px;
    color: #696969;
}
.icon-rejected::after {
    content: "\2612";
    width: 1em;
    height: 1em;
    font-size: 1.5em;
    text-align: center;
    padding-right: 5px;
    color: #972529;
}

.error-msg-txt {
    color: #972529;
}
.error-block-bg {
    background:#ffe1e1 !important;
}
.list-margin-left {
    margin-left:20px;
}

/* Accordion styles */
.springtabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.springtabs .tab {
    width: 100%;
    color: #000000;
    overflow: hidden;
}
.springtabs .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #DCDCDC;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
}

.springtabs .tab-label em {
    font-size: 80%;
    font-weight: normal;
}

.springtabs .tab-label:hover {
    background: #C0C0C0;
}
.springtabs .tab-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
}
.springtabs .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #333;
    background: rgba(220,220,220,0.80);
    transition: all 0.35s;
}
.springtabs .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #C0C0C0;
    cursor: pointer;
}
.springtabs .tab-close:hover {
    background: #C0C0C0;
}
.springtabs input:checked + .tab-label {
    background: #C0C0C0;
}
.springtabs input:checked + .tab-label::after {
    transform: rotate(90deg);
}
.springtabs input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
}

/* Stylized Summary/Stats Tables */
.table-summstats .header {
    background-color: #327a81;
    color: white;
    font-size: 1.5em;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.table-summstats .stat-value-bold {
    font-size: 1.3em;
    font-weight: bold;
}

.table-summstats .rejected {
    color: #972529;
}

.table-summstats .header em {
    font-size: 0.6em;
    font-weight: normal;
}

.table-summstats {
    border: 1px solid #327a81;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    max-width: calc(100% - 2em);
    margin: 1em auto;
    overflow: hidden;
    width: 800px;
}
.table-summstats table {
    width: 100%;
}
.table-summstats table td, .table-summstats table th {
    color: #2b686e;
    padding: 10px;
}
.table-summstats table td {
    text-align: center;
    vertical-align: middle;
}
.table-summstatsX table td:last-child {
    font-size: 0.95em;
    line-height: 1.4;
    text-align: left;
}
.table-summstats table th {
    background-color: #daeff1;
    font-weight: 300;
}
.table-summstats table tr:nth-child(2n) {
    background-color: white;
}
.table-summstats table tr:nth-child(2n+1) {
    background-color: #edf7f8;
}
@media screen and (max-width: 700px) {
    .table-summstats table {
        display: block;
    }
    .table-summstats td:first-child {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
    }
    .table-summstats td:not(:first-child) {
        clear: both;
        margin-left: 100px;
        padding: 4px 20px 4px 90px;
        position: relative;
        text-align: left;
    }
    .table-summstats td:not(:first-child):before {
        color: #91ced4;
        content: '';
        display: block;
        left: 0;
        position: absolute;
    }
    .table-summstats td:nth-child(2):before {
        content: 'Name:';
    }
    .table-summstats td:nth-child(3):before {
        content: 'Email:';
    }
    .table-summstats td:nth-child(4):before {
        content: 'Phone:';
    }
    .table-summstats td:nth-child(5):before {
        content: 'Comments:';
    }
    .table-summstats tr {
        padding: 10px 0;
        position: relative;
    }
    .table-summstats tr:first-child {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .table-summstats .header {
        background-color: transparent;
        color: #fff;
        font-size: 2em;
        font-weight: 700;
        padding: 0;
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    }

    .table-summstats td:first-child {
        background-color: #c8e7ea;
        border-bottom: 1px solid #91ced4;
        border-radius: 10px 10px 0 0;
        position: relative;
        top: 0;
        transform: translateY(0);
        width: 100%;
    }
    .table-summstats td:not(:first-child) {
        margin: 0;
        padding: 5px 1em;
        width: 100%;
    }
    .table-summstats td:not(:first-child):before {
        font-size: 0.8em;
        padding-top: 0.3em;
        position: relative;
    }
    .table-summstats td:last-child {
        padding-bottom: 1rem !important;
    }
    .table-summstats tr {
        background-color: white !important;
        border: 1px solid #6cbec6;
        border-radius: 10px;
        box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
        margin: 0.5rem 0;
        padding: 0;
    }
    .table-summstats {
        border: none;
        box-shadow: none;
        overflow: visible;
    }
}


.process-step-number {
    font-size: 20px;
    line-height: 24px;
    padding: 10px 0;
    flex-shrink: 0;
    font-weight: 500;
    /* color: #9eaecf; */
    width: 48px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid;
    margin-right: 15px;
    display: inline-block;
}

/* *************************** */
/* Stylized Radios */

.rbContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.rbContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
.rbContainer:hover input ~ .checkmark {
    background-color: #ccc;
}
.rbContainer input:checked ~ .checkmark {
    background-color: #2196F3;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.rbContainer input:checked ~ .checkmark:after {
    display: block;
}
.rbContainer .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/* VERTICAL STEPS LIST */
/* ====================================== */
.vertsteps {
    display: block;
    list-style: none;
    position: relative;
    width: 100%;
}

.vertsteps li {
    display: block;
    height: 100%;
    min-height: 70px;
    /* max-width: 215px; */
    width: 100%;
    text-align: left;
    color: rgba(57, 65, 80, 0.6);
}

.vertsteps li.complete .step {
    color: #ffffff;
    background: #00B289;
    border: 1px solid #00B289;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    /*line-height: 20px;*/
    vertical-align: middle;
    padding: 8px;
    padding-right: 5px;
}

.vertsteps li.complete .step i.fa {
    font-size: 20px !important;
    margin-left: 2px;
}

.vertsteps li.active .step {
    color: #0A65FF;
    background: rgba(10, 101, 255, 0.15);
    border: 1px solid #0A65FF;
}

.vertsteps li .step {
    background: #ffffff;
    color: rgba(57, 65, 80, 0.6);
    display: inline;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    border: 1px solid rgba(57, 65, 80, 0.6);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    padding: 10px;
    padding-left: 14px;
    padding-right: 12px;
}

.vertsteps li .title {
    display: inline;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
    top: 0;
}

.vertsteps li.active .title {
    color: #0A65FF;
}
.vertsteps-header {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: rgba(57, 65, 80, 0.8);
}


