/**
 * bootstrap-navbar-mobile - v1.0.0 - 2019-02-06
 * https://github.com/chigozieorunta/bootstrap-navbar-mobile
 *
 * Copyright (c) 2019 Chigozie Orunta
 * Licensed MIT <https://github.com/chigozieorunta/bootstrap-navbar-mobile/blob/master/LICENSE>
**/

.mt-2 {
  margin-top: 0.5%;
}

.navbar-mobile {
    position: fixed;
    left: -480px; top: 0; bottom: 0;
    background: #191919;
    width: 75%; height: 100%;
    margin: 0 !important;
    border: none !important;
    transition: all 0.3s;
    padding: 0 !important;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.navbar-mobile > li > a {
    padding: 0 !important;
    border: none !important;
    border-bottom: 1px dashed #fff !important;
}

@media only screen and (min-width: 768px) {
    .navbar-mobile {
        position: initial !important;
        left: initial !important;
        top: initial !important;
        bottom: initial !important;
        background: transparent;
        width: initial !important; height: initial !important;
        margin: initial !important;
        transition: all 0.3s;
	box-shadow: none !important;
    }
    
    .navbar-mobile > li > a {
        padding: 30px !important;
	border: none !important;
    }
}