/*
 * DESKTOP
 */
.no-padding {
    padding: 0;
}
.show-mobile {
    display: none;
}
.show-desktop {
    display: block;
}
.error-label {
    font-family: poppins;
    font-size: 12px;
    font-weight: 400;
    color:red;
    margin-bottom: 15px;
    float: left;
}
.error-input-border {
    border: 1px solid red !important;
}


/*
 * MOBILE
 */
@media (max-width: 1000px) {
    .show-mobile {
        display: block;
    }

    .show-desktop {
        display: none;
    }
}

@media (max-width: 400px) {

}

@media (min-width: 910px) and (max-width: 1600px) {


}

@media (min-width: 1000px) and (max-width: 1400px) {

}

@media (width: 1280px) and (height: 580px) and (orientation: landscape) {

}

@media (width: 580px) and (height: 1280px) {

}

@media (min-width: 1400px) and (max-width: 1700px) {

}

@media (min-width: 2000px) and (max-width: 2600px) {

}
