/* -------------------------------------------- two-columns-based -------------------------------------------- */
.two-columns-based{
    display: block;
}

.two-columns-based * input{
    width: 100%;
}

.two-columns-based > fieldset > div > div {
    width: 49% !important;
    margin-right: 2% !important;
    float: left !important;
    position: relative !important;
}

.two-columns-based > fieldset > div > div:last-child {
    margin-right: 0 !important;
    float: right !important;
}

/* -------------------------------------------- four-columns-based -------------------------------------------- */
.four-columns-based{
    display: block;
}

.four-columns-based * input{
    width: 100%;
}

.four-columns-based > fieldset > div > div {
    width: 23.5% !important;
    margin-right: 2% !important;
    float: left !important;
    position: relative !important;
}

.four-columns-based > fieldset > div > div:last-child {
    margin-right: 0 !important;
}

/* --------------------------------------------- full-width-form -------------------------------------------- */
.full-width-form{
    display: block;
}

.full-width-form * input{
    width: 98% !important;
}

/* -------------------------------------------- address-bar -------------------------------------------- */
.address-bar{
    display: block;
}

.address-bar * input[type=text]{
    width: 100%;
}

.address-bar > fieldset > div > div {
    min-height: 110px;
    position: relative !important;
    margin-right: 1% !important;
}

.address-bar > fieldset > div > div:first-child {
    width: calc(98% - 48px) !important;
    float: left !important;
}

.address-bar > fieldset > div > div:last-child {
    width: 48px !important;
    float: right !important;
}

.address-bar-location-icon {
    width:48px;
    height: 48px;
    position: absolute !important;
    bottom: 0;
}

/* -------------------------------------------------- 1024 -------------------------------------------------- */
/* -------------------------------------------------- 1024 -------------------------------------------------- */
@media only screen and (max-width: 1024px) {
    .four-columns-based > fieldset > div > div {
        width: 49% !important;
        margin-right: 2% !important;
    }

    .four-columns-based > fieldset > div > div:nth-child(even) {
        margin-right: 0 !important;
    }
}

/* -------------------------------------------------- 768 -------------------------------------------------- */
/* -------------------------------------------------- 768 -------------------------------------------------- */
@media only screen and (max-width: 768px) {
    .four-columns-based > fieldset > div > div {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }


    .two-columns-based > fieldset > div > div {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }

    .two-columns-based > fieldset > div > div:last-child {
        float: none !important;
    }
}

