.step-progress-container {
    padding: 0 120px;
}
.step-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.step-point {
    font-size: 22px;
    color: #535353;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
}
.step-point.passed,
.step-point.active {
    color: #225db3;
}
.step-point .label {
    margin-bottom: 20px;
}
.step-point .step-circle {
    border: 3px solid #969696;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background: #fff;
    z-index: 3;
    transition: all 0.2s ease-in-out;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-point.passed .step-circle,
.step-point.active .step-circle {
    border-color: #225db3;
}
.step-point.passed .step-circle {
    background-color: #225db3;
}

.step-progress .progress-line {
    position: absolute;
    width: calc(100% - 64px);
    height: 5px;
    left: 32px;
    bottom: 16px;
    z-index: 1;
    background-color: #969696;
}
.step-progress .progress-line.filled {
    background-color: #225db3;
    z-index: 2;
    width: 0;
    transition: all 0.2s ease-in-out;
}
.step-progress.half-passed .progress-line.filled {
    width: calc(50% - 32px)
}
.step-progress.full-passed .progress-line.filled {
    width: calc(100% - 64px)
}

.step-content-container {
    padding: 40px 0;
}
.step-tabs {
    position: relative;
    width: 100%;
}

.step-tab .heading__sub {
    font-size: 18px;
    font-weight: 400;
}


.results-summary {
    background: #f6f6f6;
    padding: 35px;
    height: 100%;
    color: #000;
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    box-sizing: border-box;
}
.results-summary .panels-count-text a {
    display: inline-block;
    padding: 0 4px;
    font-weight: bold;
}
.results-summary .panels-count-text a:hover {
    text-decoration: none;
}

.results-summary .panel-type label {
    font-family: Gotham, sans-serif;
    font-weight: 500;
    font-size: 15px;
}

.results-summary .revenue .show-full-results {
    font-size: 16px;
}
.results-summary .revenue .show-full-results a {
    outline: none;
}
.results-summary .revenue .price {
    font-weight: 500;
    font-size: 50px;
    padding: 10px 0;
    font-family: Gotham, sans-serif;
}
.results-summary .revenue .price::after,
.results-summary .revenue .price::before {
    content: '';
    height: 5px;
    background-color: #ffd840;
    margin: 5px auto;
    display: block;
    width: 100px;
}

.roof-results .advice-btn {
    font-size: 17px;
}
.roof-results .full-results {
    display: none;
    padding: 35px;
    background: #fff;
    color: #000;
    position: relative;
}
.roof-results .full-results .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #225db3;
}
.roof-results .full-results p {
    line-height: 23px;
}
.roof-results .full-results strong {
    font-family: Gotham, sans-serif;
    font-weight: 500;
}
.roof-results .full-results .title {
    font-size: 35px;
}
.roof-results + .offset {
    background: rgba(0,0,0, 0.66);
    position: fixed;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease;
}

.roof-results.full-results-mode {
    position: relative;
    z-index: 11;
}
.roof-results.full-results-mode .full-results {
    display: block;
}
.roof-results.full-results-mode .roof-panels-container {
    display: none;
}
.roof-results.full-results-mode + .offset {
    opacity: 1;
    z-index: 10;
    height: 100%;
}

.roof-panels-container .panels-view {
    display: flex;
    padding: 20px 0;
    margin: 0 -15px;
}
.roof-panels-container.plain_roof .panels-view {
    display: none;
}
.roof-panels-container .panels-view > div {
    margin: 0 15px;
}
.roof-panels-container .panels-view label {
    font-size: 20px;
    cursor: pointer;
}
.roof-panels-container .panels-view input {
    margin-right: 10px;
}

#roof__panel__wrap {
    background: url('../images/roof-tiles-bg.png') 0 0;
    margin-right: 30px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px
}
.roof-panels-container.plain_roof #roof__panel__wrap {
    background: url('../images/roof-gravel-bg.jpg') 0 0;
}

.roof__panel > div {
    height: 100%;
}

.size__solar {
    font-size: 20px;
}
.size__solar.roof-width {
    position: absolute;
    width: 100%;
    top: -35px;
}
.size__solar.roof-height {
    right: -40px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.solar__item {
    padding-left: 0 !important;
}
.solar__item__panel {
    background: url('../images/solarPanel_sm.png') 50% 50% no-repeat;
    background-size: cover;
}
.roof-horizontal .solar__item__panel {
    background-image: url('../images/solarPanel_sm_horizontal.png');
}
.roof-plain .grid__solar {
    perspective: 300px;
    -webkit-perspective: 300px;
}
.roof-plain .solar__item {
    -webkit-transform: rotateX(10deg);
    transform: rotateX(10deg);
    -webkit-box-shadow: -7px 5px 10px -5px #000000;
    box-shadow: -7px 5px 10px -5px #000000;
}

.solar__item a.remove_btn {
    position: absolute;
    right: -5px;
    top: -5px;
    border-radius: 5px;
    background-color: #ffd840;
    padding: 3px;
    transition: all 0.15s ease-in-out;
    opacity: 0.9;
}
.solar__item a.remove_btn > span {
    color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 1px;
}
.solar__item a.remove_btn:hover {
    opacity: 1;
    transform: scale(1.1, 1.1);
}
.solar__item a.add_btn {
    display: none;
    height: 100%;
    color: #fff;
    justify-content: center;
    align-items: center;
}
.solar__item a.add_btn > span {
    transition: all 0.15s ease-in-out;
    opacity: 0.7;
}
.solar__item a.add_btn:hover > span {
    transform: scale(1.2, 1.2);
    opacity: 1;
}

.solar__item.disabled .solar__item__panel {
    opacity: 0.5;
}
.solar__item.disabled a.add_btn {
    display: flex;
}
.solar__item.disabled a.remove_btn {
    display: none;
}

.klantenvertellen-container {
    background: #f6f6f6;
    padding: 80px;
}
.reviews-info {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.reviews-info .rating {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.reviews-info .score {
    color: #000;
    font-size: 70px;
    line-height: 70px;
    margin-left: 30px;
}
.reviews-info .random-review .title {
    font-family: Gotham, sans-serif;
}

.orange-stripe::after {
    content: '';
    height: 5px;
    background-color: #ffd840;
    margin: 5px auto;
    display: block;
    width: 100px;
}


@media (max-width: 959px) {
    .uk-grid-medium {
        margin-left: 0;
    }
    .uk-grid-medium > * {
        padding-left: 0;
    }
    .uk-grid-medium form .uk-width-1-2 {
        padding: 0 10px;
    }
}
@media (max-width: 768px) {
    .step-progress-container {
        padding: 0 10px;
    }

}
@media (max-width: 639px) {
    .klantenvertellen-container {
        padding: 60px;
    }

    #calculationTool .uk-grid.uk-grid-medium {
        margin-left: 0;
        margin-right: 0
    }

    #calculationTool .roof-results.uk-grid-medium > .uk-width-1-2@m {
        padding-left: 0 !important;
    }
}
@media (max-width: 480px) {
    .results-summary {
        padding: 20px;
    }
    .klantenvertellen-container {
        padding: 40px 20px;
    }
    .reviews-info .rating {
        flex-direction: column;
    }
    .reviews-info .score {
        margin-left: 0;
    }
    .reviews-info .klanten_logo {
        margin-bottom: 30px;
    }

    #calculationTool form .uk-width-1-2 {
        width: 100%;
    }

    .roof-panels-container .panels-view {
        flex-direction: column;
        padding: 0 20px 20px;
    }
    .roof-panels-container .panels-view > div {
        margin: 5px 15px;
    }
}
