.engine-selection-hidden {
    display: none;
}
.engine-selection-holder {
    display: block;
    position: relative;
    padding-bottom: 30px;
}
.engine-selection-holder .error-msg {
    display: none;
}
.engine-selection-holder.error {
    /*border: 1px solid #ff0000;*/
}
.engine-selection-holder.error .error-msg {
    color: #ff0000;
    font-style: italic;
    display: block;
    text-align: center;
    margin: 30px 0 0;
    font-size: 16px;
}
.engine-selection-holde:after {
    content: '';
    clear: both;
    display: block;
}
.engine-selection-holder * {
    margin: 0;
    padding: 0;
    /*-webkit-transition: all 300ms linear;*/
    /*-moz-transition: all 300ms linear;*/
    /*-ms-transition: all 300ms linear;*/
    /*-o-transition: all 300ms linear;*/
    /*transition: all 300ms linear;*/
}
.engine-selection-holder__list {
    display: block;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.engine-selection-holder__engine {
    list-style: none;
    display: block;
    cursor: pointer;
    text-align: left;
}
.engine-selection-holder__engine:first-child {
    padding-bottom: 20px;
}
.engine-selection-holder__engine--holder {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.engine-selection-holder__engine.active {
    /*border: 2px solid #0E3A2F;*/
}
.engine-selection-holder__engine--image {
    display: block;
    width: 100%;
    max-width: 151px;
    margin: 0 auto 10px;
    display: block;
}
.engine-selection-holder__engine.active .engine-selection-holder__engine--image,
.engine-selection-holder__engine:hover .engine-selection-holder__engine--image {
    /*transform: scale(1.1);*/
}
.engine-selection-holder__engine--name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    margin-right: 30px;
    width: calc(100% - 105px);
}
.engine-selection-holder__engine--icon {
    margin-right: 10px;
    width: 30px;
}
.engine-selection-holder__engine--description {
    display: block;
    width: 100%;
    text-align: center;
}
.engine-selection-holder__engine--description > b {
    display: block;
    width: 100%;
    text-align: center;
}
.engine-selection-holder__engine--checkbox {
    border: 1px solid #cccccc;
    width: 23px;
    height: 23px;
    display: block;
    margin-right: 10px;
    position: relative;
}
.engine-selection-holder__engine.active .engine-selection-holder__engine--checkbox:after {
    content: '';
    border-right: 3px solid #0E3A2F;
    border-bottom: 3px solid #0E3A2F;
    width: 6px;
    height: 12px;
    display: block;
    transform: rotate(45deg) translateX(0) translateY(-100%);
    position: absolute;
    top: 50%;
    left: -12%;
}
@media screen and (min-width: 600px) {
    .engine-selection-holder__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: 800px;
        margin: 0px auto;
    }
    .engine-selection-holder__engine {
        max-width: 50%;
        padding-bottom: 0px!important;
    }
}
@media screen and (min-width: 768px) {
    .engine-selection-holder__engine--name {
        font-size: 18px;
    }
}
