.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group > .card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:first-child .card-img-top,
    .card-group > .card:first-child .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:first-child .card-img-bottom,
    .card-group > .card:first-child .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group > .card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:last-child .card-img-top,
    .card-group > .card:last-child .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:last-child .card-img-bottom,
    .card-group > .card:last-child .card-footer {
        border-bottom-left-radius: 0;
    }

    .card-group > .card:only-child {
        border-radius: 0.25rem;
    }

    .card-group > .card:only-child .card-img-top,
    .card-group > .card:only-child .card-header {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }

    .card-group > .card:only-child .card-img-bottom,
    .card-group > .card:only-child .card-footer {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }

    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }

    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

/*****************************************************************************************************/

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

/*****************************************************************************************************/

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

tr.collapse.show {
    display: table-row;
}

tbody.collapse.show {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/*****************************************************************************************************/

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next,
    .active.carousel-item-right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-prev,
    .active.carousel-item-left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-prev:focus, .carousel-control-prev:hover,
.carousel-control-next:focus,
.carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

/*body {*/
/*background-color: red !important;*/
/*}*/

/*****************************************************************************************************/
/*OWN STYLES*/
/*****************************************************************************************************/

.card .card-header a {
    color: white;
}

.card {
    margin: 5px;
    border-radius: 0;
}

.six-keys-form .card-header {
    border-radius: 0 !important;
}

/*.card.active-card .card-header {*/
/*background-color: #d12f25;*/
/*border-bottom: 1px solid #d12f25;*/
/*}*/

/*.card.active-card {*/
/*border: 1px solid #d12f25;*/
/*}*/

.card.complete-card .card-header {
    background-color: #00548e;
    border-bottom: 1px solid #00548e;
}

.card.complete-card {
    border: 1px solid #00548e;
}

.card.incomplete-card .card-header {
    background-color: #777;
    border-bottom: 1px solid #777;
}

.card.incomplete-card {
    border: 1px solid #777;
}

.card {
    font-family: sans-serif;
}

.card label {
    color: #d12f25;
}

.card .card-block {
    /*padding: .75rem 1.25rem;*/
    color: #777;
}

.card span.answer {
    padding: 0px 5px;
    /*position: relative;*/
    /*top: 1px;*/
    line-height: 30px !important;
    width: 100%;
    display: inline-block;
}

.card .btn-submit,
.card .btn-next-section {
    border: 1px solid #00548e;
    background-color: #00548e;
    padding: 5px;
    color: #fff !important;
    width: 100%;
    text-align: center;
}

.card .btn-submit:hover,
.card .btn-next-section:hover{
    border: 1px solid #d12f25;
    padding: 5px;
    background-color: #d12f25;
    color: #fff !important;
    cursor: pointer;
}

.card.incomplete-card a:hover {
    text-decoration: none;
}

.card-header {
    position: relative;
}

.accordian-control-mask {
    /*background-color: red;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.card .question-container {
    /*overflow: hidden;*/
    /*display: none;*/
    /*position: absolute;*/
    /*background-color: red;*/
    /*border: 1px solid red;*/
    /*top: 0;*/
    /*left: 0;*/
    padding: .75rem 1.25rem;
    transition: all 1s;
}

.card-block {
    position: relative;
}

.carousel-indicators li {
    background-color: pink;

}

.carousel-indicators li.active {
    background-color: black;
}

.carousel-indicators {
    background-color: red;
    margin-right: 0;
    margin-left: 0;
    position: static;
}

.progress-squares {
    /*background-color: red;*/
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 !important;
    padding: 0 !important;
}

.progress-squares li {
    list-style: none;
    display: block;
    margin: 0px 0px 0px 5px !important;
    height: 32px;
    width: 32px;
    position: relative;
}

.progress-squares li a {
    display: none;
}

.progress-squares li.complete a,
.progress-squares li.active a,
.progress-squares li.current a {
    display: block;
    width: 100%;
    height: 100%;
    /*background-color: pink;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.progress-squares li a svg {
    display: none;
}

.progress-squares li.complete a svg {
    display: block;
}

.progress-squares li.btn-next {
    color: #777777 !important;
    border: 1px solid #777;
    padding: 5px;
    width: auto;
    height: auto;
    line-height: 20px;
    font-size: 15px;
}

.progress-squares li.btn-next.current.active {
    color: #d12f25 !important;
    border: 1px solid #d12f25;
}

.progress-squares .btn-next.current.active:hover {
    border: 1px solid #d12f25;
    padding: 5px;
    background-color: #d12f25;
    color: #fff !important;
    cursor: pointer;
}

.progress-squares li.btn-next.current {
    color: #00548e !important;
    border: 1px solid #00548e;
}

.progress-squares .btn-next.current:hover {
    border: 1px solid #00548e;
    padding: 5px;
    background-color: #00548e;
    color: #fff !important;
    cursor: pointer;
}

li.progress-square {
    height: 20px;
    width: 20px;
    background-color: #777;
}

li.progress-square.complete.active, li.progress-square.active.current {
    background-color: #d12f25;
    transform: scale(1.5);
    border: 1px solid #d12f25;
}

li.progress-square.current {
    background-color: transparent;
    border: 1px solid #00548e;
    /*transform: scale(1.5);*/
}

li.progress-square.complete {
    background-color: #00548e;
}

li.progress-square.complete:hover,
li.progress-square.current:hover {
    transform: scale(1.2);
    cursor: pointer;
}

li.progress-square.active.complete:hover,
li.progress-square.active.current:hover {
    transform: scale(1.5);
    cursor: default;
}

.main-questions .question-container input {
    display: none;
}

.main-questions .question-container div:hover, .main-questions input[type="radio"]:checked ~ span.answer {
    background-color: rgba(0, 84, 142, 1);
    color: #fff;
    cursor: pointer;
}

.card a.collapse-control {
    color: #fff;
    cursor: pointer;
}

.card a.collapse-control:hover {
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}

.card.current-card a.collapse-control:hover {
    text-decoration: none !important;
    cursor: default;
}

.pull-right {
    float: right;
}

h5.card-title {
    margin: 0px !important;
    padding: 0px !important;
    font-size: 20px;
}

h1.section-complete {
    margin: 0 !important;
    padding: 0 !important;
    color: #d12f25 !important;
}

/* red: #d12f25*/
/* blue: #00548e */
/* grey: #777 */

/************************
CONTACT
************************/

.contact-questions input.radio,
.profit-calc input.radio {
    display: none;
}

.input-container div {
    display: inline-block;
}

.input-container.opt-ins div {
    display: block;
}

.input-container.opt-ins p {
    font-size: 15px;
}

.input-container.opt-ins a {
    /*color: blue;*/
}

.contact-questions span.radio-btn, .contact-questions input, .contact-questions textarea,
.profit-calc span.radio-btn, .profit-calc input, .profit-calc textarea {
    /*display: inline-block;*/
    border: 1px solid #777;
    width: auto;
    line-height: 30px;
    font-size: 16px;
    padding: 0px 5px;
    margin: 5px 0px;
}

.profit-calc textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
}

.contact-questions span.radio-btn:hover,
.profit-calc span.radio-btn:hover,
.contact-questions #title.error span.radio-btn:hover {
    color: #00548e;
    border: 1px solid #00548e;
    cursor: pointer;
    background-color: transparent;
}

.contact-questions .input-container,
.profit-calc .input-container {
    margin: 10px 0px 0px 0px;
}

.six-keys-form input[type="text"], .six-keys-form input[type="number"], .six-keys-form select, .six-keys-form option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}

.six-keys-form select {
    border-radius: 0;
    border: 1px solid #777;
    width: auto;
    line-height: 30px;
    font-size: 16px;
    padding: 0px 5px;
    color: #777;
}

.six-keys-form select.dropdown-selected {
    color: #000;
}

.six-keys-form option {
    border-radius: 0;
}

.six-keys-form *:focus {
    /*outline: #00548e auto 5px;*/
}

.six-keys-form .disclaimer {
    color: #00548e;
    font-size: 15px;
    display: block;
    margin: 5px 0px;
}

.six-keys-form .input-asterisks {
    display: inline-block;
    line-height: 30px;
    background-color: #777;
    border: 1px solid #777;
    padding: 0px;
    color: #fff;
    /*font-size:20px;*/
    padding-left: 1px;
    position: relative;
    bottom: 1px;
    /*float: left;*/
}

.six-keys-form .input-required {
    display: inline-block;

}

.contact-questions input[type="radio"]:checked ~ span.answer,
.profit-calc input[type="radio"]:checked ~ span.answer {
    background-color: #00548e;
    color: #fff;
    border: 1px solid #00548e;
}

.error-msg {
    width: 100%;
    background-color: orange;
    color: #fff;
    padding: 5px;
    margin: 5px 0px 15px;
    /*height: 25px;*/
}

.error-msg p {
    /*line-height: 25px;*/
    font-size: 15px;
    display: inline-block;
    margin: 0;
    padding-top: 2px;
}

.error-msg svg {
    height: 15px;
    /*background-color: red;*/
    margin: 0;
    position: relative;
    top: 2px;
    display: inline-block;
}

#contact-intro.error.disclaimer {
    color: orange;
}

.input-required.error span.radio-btn {
    background-color: orange;
    border: 1px solid orange;
    color: white;
}

.input-required.error .input-asterisks {
    background-color: orange;
    border-color: orange;
}

.input-required.error label,
.input-required.error strong,
.input-required.error .disclaimer,
.error.disclaimer {
    color: orange;
}

.input-required.error input {
    border-color: orange;
}

.input-required.error select {
    border-color: orange;
    color: orange;
}

.input-required.error input::placeholder {
    color: orange;
    opacity: 1; /* Firefox */
}

.input-required.error input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: orange;
}

.input-required.error input::-ms-input-placeholder { /* Microsoft Edge */
    color: orange;
}



/*****************************************************************************************************/

#how-gen-leads-other-text-input, #customer-contact-medium-text-input{
  display: none;
}
