﻿/*https://css-tricks.com/forums/topic/bootstrap-full-width-navbar-with-centered-menu-items/ */



.btn {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

.btn-xlg {
    padding: 18px 28px;
    font-size: 22px; /*change this to your desired size*/
    line-height: normal;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}



.wrapper-xs-margin {
    margin-top:0;
}


/* Bootstrap v3.2.0 http://stackoverflow.com/questions/18424798/twitter-bootstrap-3-how-to-use-media-queries*/
/* Extra Small Devices, .visible-xs-* */
@media (max-width: 767px) {

    .wrapper-xs-margin {
    margin-top: 64px;
}


        
}

/* Small Devices, .visible-sm-* */
@media (min-width: 768px) and (max-width: 991px) {



}

/* Medium Devices, .visible-md-* */
@media (min-width: 992px) and (max-width: 1199px) {


    /* http://stackoverflow.com/questions/19911763/how-to-adjust-gutter-in-bootstrap-3-grid-system */
    div[class^="col-"]:not(:first-child) {
        padding-left: 25px;
    }

    div[class^="col-"]:not(:last-child) {
        padding-right: 25px;
    }
}

/* Large Devices, .visible-lg-* */
@media (min-width: 1200px) {

    /* http://stackoverflow.com/questions/19911763/how-to-adjust-gutter-in-bootstrap-3-grid-system */
    div[class^="col-"]:not(:first-child) {
        padding-left: 25px;
    }

    div[class^="col-"]:not(:last-child) {
        padding-right: 25px;
    }
}
