.gw-calc {
    display: flex;
    justify-content: space-between;
}

.gw-calc-form {
    width: 60%;
}

.gw-calc-results {
    width: 38%;
}

.gw-calc-form input {
    text-align: left !important;
    padding: 0 15px !important;
    height: 42px !important;
    vertical-align: middle !important;
    font-size: 14px !important;
    margin-bottom: 15px;
}

.gw-calc-form select {
    margin-bottom: 15px;
}

.row_1,
.row_2 {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
}

.row_1 .gw-calc-input-group,
.row_2 .gw-calc-input-group {
    width: 48%;
    margin-right: 2%;
}

.gw-calc-input-group {
    width: 98%;
}

.gw-calc-button {
    background-color: var(--wd-primary-color) !important;
    display: block !important;
    color: #000 !important;
    line-height: 1em !important;
    padding: 20px 42px !important;
    font-size: 18px !important;
}

.gw-calc-button:hover {
    background-color: #96f796 !important;
}

.gw-calc-results {
    padding: 40px;
    border: 1px solid #96f796;
    background-color: #f0faf1;
}

.gw-calc-result-note-desc {
    font-size: 15px;
}

#gw-result-goal-cpm,
#gw-result-goal-diet {
    font-size: 26px;
    font-weight: 500 !important;
}

#gw-result-goal-diet {
    color: #5f8c4b !important;
}

.gw-calc-results i {
    color: #bbf9bb;
}

.result-diets-button {
    line-height: 1em !important;
    font-weight: 500;
    padding: 18px 42px;
    font-size: 18px;
    background-color: #000;
    color: #fff;
    line-height: 1em !important;
    transition: 0.3s all;
    display: inline-block;
}

.result-diets-button:hover {
    color: #000;
    background-color: #96f796;
}

@media only screen and (max-width: 1023px) {
    .gw-calc {
        flex-direction: column;
    }

    .gw-calc-form {
        width: 100%;
        margin-bottom: 40px;
    }

    .gw-calc-results {
        width: 100%;
    }

    .row_1 .gw-calc-input-group,
    .row_2 .gw-calc-input-group {
        width: 100%;
        margin-right: 0;
    }

    .gw-calc-input-group {
        width: 100%;
    }

    .gw-calc-results {
        padding: 30px;
    }

    .gw-calc-button {
        width: 100%;
    }
}