.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%
}

@media only screen and (min-width: 601px) {
    .container {
        width:85%
    }
}

@media only screen and (min-width: 993px) {
    .container {
        width:70%
    }
}



@media only screen and (max-width: 600px) {
    .hide-on-small-only,.hide-on-small-and-down {
        display:none !important
    }
}

@media only screen and (max-width: 992px) {
    .hide-on-med-and-down {
        display:none !important
    }
}

@media only screen and (min-width: 601px) {
    .hide-on-med-and-up {
        display:none !important
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .hide-on-med-only {
        display:none !important
    }
}

@media only screen and (min-width: 993px) {
    .hide-on-large-only {
        display:none !important
    }
}

@media only screen and (min-width: 1201px) {
    .hide-on-extra-large-only {
        display:none !important
    }
}

@media only screen and (min-width: 1201px) {
    .show-on-extra-large {
        display:block !important
    }
}

@media only screen and (min-width: 993px) {
    .show-on-large {
        display:block !important
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .show-on-medium {
        display:block !important
    }
}

@media only screen and (max-width: 600px) {
    .show-on-small {
        display:block !important
    }
}

@media only screen and (min-width: 601px) {
    .show-on-medium-and-up {
        display:block !important
    }
}

@media only screen and (max-width: 992px) {
    .show-on-medium-and-down {
        display:block !important
    }
}

@media only screen and (max-width: 600px) {
    .center-on-small-only {
        text-align:center
    }
}



.hide {
    display: none !important
}

.left-align {
    text-align: left
}

.right-align {
    text-align: right
}

.center,.center-align {
    text-align: center
}

.left {
    float: left !important
}

.right {
    float: right !important
}



.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}


.no-padding {
    padding: 0 !important
}

