img {
    max-width: 100%;
}

.select_holder {
    margin-bottom: 10px;
}

.calc_select {
    width: 100%;
}

.calc_question {
    position: relative;
    display: flex;
    margin: 0;
    width: 100%;
    border: 1px solid #dcdbda;
    border-radius: 2px;
    color: #000000;
    background-color: #ffffff;
    font-weight: 700;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 15px;
    opacity: .4;
    min-height: 60px;
}

.calc_question:after {
    content: '';
    position: absolute;
    z-index: 5;
    top: 0;
    width: 100%;
    height: 100%;
}

.calc_question.active {
    opacity: 1;
}

.calc_question.active:after {
    display: none;
}

.calc_question_info {

}

.calc_question_text {
    margin: 0;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.calc_question_info_list {
    padding: 0 0 0 15px;
    display: none;
    margin: 10px;
}

.calc_question_option {
    display: flex;
}

.calc_question_state_label input,
.calc_question_option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.calc_question_label {
    cursor: pointer;
    color: rgb(233, 137, 4);
    background-color: white;
    border: 1px solid rgb(233, 137, 4);
    border-radius: 2px;
    font-size: 1rem;
    min-width: 60px;
    height: 30px;
    margin: 0 0 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.calc_question_label.active {
    background-color: rgb(233, 137, 4);
    color: white;
}

.calc_screen_state {

}

.calc_cover_state {

}

.calc_question_screen_state.active {
    display: block;
}

.calc_question_cover_state.active {
    display: block;
}

.calc_question_state_holder {
    display: none;
}

.calc_question_screen_state.active,
.calc_question_cover_state.active
{
    cursor: pointer;
}

.calc_question.active.opened .calc_question_state_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.calc_question_state_label {
    width: calc(50% - 5px);
    padding: 10px;
    transition: 0.4s all;
}

.calc_question_state_label.active,
.calc_question_state_label:hover {
    background-color: #2e3d46;
    color: #fff;
}

.calc_question_state_label p {
    min-height: 40px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.calc_message {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    padding: 40px 20px;
}

.get_offers_btn {
    position: relative;
}

.disabled-off, .disabled-off-one {
    /*background: none;*/
}

.hidden {
    display: none!important;
}

.select2-container--default .select2-selection--single {
    height: 60px;
    outline: none;
    display: flex;
    border-radius: 2px;
    align-items: center;
    border: 1px solid #dcdbda;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: initial;
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 17px;
    right: 10px;
}

.select2-container--default {
    width: 100%!important;
}

@media only screen and (max-width: 768px) {
    .calc_question {
        display: block!important;
    }

    .calc_question_label {
        width: 50%;
    }
}
