.row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.row > [class*='col-'] > div {
    flex: 1;
}

ul {
    padding: 0;
}

.equal {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .row.equal {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .row > [class*='col-'] > div {
        margin: 10px;
    }
}

.equal > div {
    margin-bottom: 10px;
}

.card {
    background-color: #FFF;
    /*max-width: 400px;*/
    border: 1px solid transparent;
    padding: 15px 0;
    margin-bottom: 10px;
    display: grid;
    grid-template-areas: 'icon container container container container container container container container selector'
}

.card-selected {
    border: 1px solid orange;
}

.card-section-icon {
    grid-area: icon;
    display: flex;
    align-items: center;
    width: 60px;
}

.card-section-icon img {
    max-width: 40px;
    padding: 5px;
    display: block;
    margin: 0 auto;
}

.card-section-container {
    grid-area: container;
    border-left: 1px solid #EEE;
    padding: 0 10px;
    line-height: 1em;
    flex: 1;
}

.card-section-container > p {
    font-size: 0.8em;
    line-height: 1em;
    flex-grow: 1;
}


.card-section-container > ul {
    list-style: disc;
    padding-left: 20px;
    flex-grow: 1;
}

.card-section-container > ul > li {
    color: #8B8B8B;
    font-size: 0.8em;
    line-height: 1em;
}

.card-section-selector {
    grid-area: selector;
    display: flex;
    align-items: center;
    width: 55px;
    flex-grow: 1;
}


/* The container */
.card-section-selector > .container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin: 0 12.5px 12px 12.5px;
    cursor: pointer;
    user-select: none;
}

/* Hide the browser's default checkbox */
label.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 12.5px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: orange;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 10px;
    top: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.card-container {
    /*background: white;*/
    padding: 0 10px;
}

@media (max-width: 768px) {

    .card-price {
        float: left;
    }

    .card-container {
        padding: 0;
    }
}

@media (max-width: 968px) {
    .hide-phone {
        display: none !important;
    }
}

.card-section-footer {
    margin-top: 1em;
}

.card-section-footer p {
    font-size: 0.8em
}


.card-price {
    color: orange;
    font-size: 1.2em;
    float: right
}

/*Configurator small*/
.configurator-homepage {
    width: 100%;
    border-radius: 5px;
}

.configurator-homepage form {
    width: 100%;
}

.configurator-small {
    padding: 10px;
    box-shadow: 0 5px 20px -10px rgba(0, 0, 0, .35);
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    margin: 0 auto;
    z-index: 50;
}

.configurator-small > div {
    margin: 0 auto;
    box-shadow: 0 5px 20px -10px rgba(0, 0, 0, .35);
    display: block;
    background: #FFF;
    padding: 10px;
}

.configurator-small .custom-select {
    margin: 0;
}

/* Progress bar */
.progressbar-container {
    margin: 50px 0;
}

.progressbar li {
    list-style-type: none;
    width: 33%;
    float: left;
    font-size: 1em;
    position: relative;
    text-align: center;
    color: #7d7d7d;
    line-height: 1em;
}

.progressbar li:before {
    width: 30px;
    height: 30px;
    content: "";
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}

.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active {
    color: darkorange;
}

.progressbar li.active:before {
    border-color: orange;
    background-color: orange;
}

.progressbar li.active + li:after {
    background-color: orange;
}

.progressbar li.done:before {
    border-color: orange;
    background-color: orange;
}

.progressbar li.done + li:after {
    background-color: orange;
}

.progressbar li.inactive:before {
    border-color: #7d7d7d;
    background-color: #7d7d7d;
}

.progressbar li.inactive + li:after {
    background-color: #7d7d7d;
}
