.modWbnTripPlaning {
    float: left;
    width: 100%;
    background-color: rgba(154,183,198,0.12);
    padding: 40px;
    box-sizing: border-box;
}
.modWbnTripPlaning.compact {
    padding: 35px 50px;
}
.modWbnTripPlaning .wbnTripPlaning {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    container-type: inline-size;
}
.modWbnTripPlaning .title {
    float: left;
    width: auto;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 50px;
}
.modWbnTripPlaning.compact .title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}
.modWbnTripPlaning .titleBlue {
    font-weight: 500;
    font-style: italic;
    color: #4A6F7C;
}
.modWbnTripPlaning .titleYellow {
    font-weight: 700;
    color: #FCCE4A;
}
.modWbnTripPlaning .steps {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
}
.modWbnTripPlaning.compact .steps {
    flex-direction: column;
    -webkit-flex-direction: column;
}
.modWbnTripPlaning .step {
    float: left;
    width: 140px;
    height: auto;
}
.modWbnTripPlaning.compact .step {
    width: 100%;
    margin-bottom: 40px;
}
.modWbnTripPlaning.compact .step:last-child {
    margin-bottom: 0;
}
.modWbnTripPlaning .number {
    font-size: 30px;
    font-weight: 600;
    line-height: 50px;
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 13px;
    color: #4A6F7C;
}
.modWbnTripPlaning.compact .number {
    float: left;
    width: 68px;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}
.modWbnTripPlaning .number:after {
    float: left;
    width: 44px;
    height: 3px;
    background-color: #FCCE4A;
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
}
.modWbnTripPlaning.compact .number::after {
    width: 5px;
    height: 44px;
    bottom: auto;
    left: auto;
    right: 0;
    top: 4px;
}
.modWbnTripPlaning .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    text-align: left;
}
.modWbnTripPlaning.compact .text {
    float: left;
    width: calc(100% - 68px);
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 16px;
}
.modWbnTripPlaning .button {
    margin-top: 60px;
}