.hasPadding10 {
    padding: 10px !important;
}

.is-italic {
    font-style: italic;
}

.is-bold {
    font-weight: bold;
}
.is-marginless {
    margin: 0 !important;
}

.is-paddingless {
    padding: 0!important;
}

.has-padding-12 {
    padding: 12px !important;
}

.has-margin-bottom-10 {
    margin-bottom: 10px;
}

.has-margin-bottom-20 {
    margin-bottom: 20px;
}

.has-margin-bottom-50 {
    margin-bottom: 50px;
}

.is-aligned-right {
    text-align: right;
}

.has-line-height-2-5 {
    line-height: 2.5;
}

.no-float {
    float: none;
}

.has-line-height-55 {
    line-height: 55px;
}

.has-margin-right-15 {
    margin-right: 15px;
}

.flexHolder {
    display: flex;
    justify-content: space-between;
}
.inputHolder {
    /*display: inline-block;
    width: 19%;*/
    flex-direction: row;
    width: 18%;
}

.mobileOnly {
    display: none !important;
}
@media only screen and (max-width: 767px) {
    .flexHolder {
        flex-direction: column;
    }
    .inputHolder {
        /*display: inline-block;
        width: 19%;*/
        /*flex-direction: column;*/
        width: 100%;
    }
    .mobileOnly {
        display: block !important;
    }
    .desktopOnly {
        display: none !important;
    }
}