/* ************************************************************************************************/
/* NAVBAR                                                                                         */
/* ************************************************************************************************/
.navbar {
	font-size: 16px;
	background-color: #121212;
}

.navbar-brand {
	margin: -1vh 0vh -0.5vh -0.55vh;
}

.navbar-nav {
	list-style: none;
	text-transform: uppercase;
}

.navbar-nav a {
	text-decoration: none;
	letter-spacing: .25rem;
	display: block;
	padding: 1em;
	color: #f5f5f5;
}

.nav-item a:hover {
	color: #6a9258;
}

.nav-item a:focus {
	color: #6a9258;
}

.nav-item .dropdown-item {
	color: #f5f5f5;
}

.nav-item .dropdown-item:hover {
	background-color: #6a9258;
	color: #f5f5f5;
}

.nav-item .dropdown-item:focus {
	background-color: #6a9258;
	color: #f5f5f5;
}

.nav-item .dropdown-toggle:focus {
	color: #f5f5f5;
}

.nav-item .dropdown-toggle img {
	width: 25px;
	height: 25px;
	border-radius: 50%;
}

.navbar-toggler {
    border-color: #121212;
    background-color: #121212;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(245, 245, 245, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* ************************************************************************************************/
/* FOOTER                                                                                         */
/* ************************************************************************************************/
.footer {
    position: fixed;
    bottom: 0;
    height: 4rem;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    background-color: #121212;
    z-index: 99999;
}

.footer-links {
    text-align: center;
}

.footer-links li {
    display: inline;
}

.footer-links li + li::before {
    content: "• ";
}

.footer-links ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.footer-links a {
    color: #f5f5f5;
    font-size: 15px; 
    text-decoration: none; 
    text-transform: uppercase;
}

.footer-links a:hover, a:active {
    color: #6a9258;
}

/*************************************************************************************************/
/* FEATURES                                                                                      */
/*************************************************************************************************/
.box-background {
    background-color: #282828;
}

.box {
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    padding:0 20px 20px 20px;
    max-width: 500px;
}

.box-title {
    color: #f5f5f5;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.box .box-content {
    padding: 16px;
    border-radius: 0 0 2px 2px;
    box-sizing: border-box;
}

.box .box-content p {
    color:#f5f5f5;
    text-transform:none;
}

/*************************************************************************************************/
/* PAGINATION                                                                                    */
/*************************************************************************************************/
.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 0;
}

.pagination a {
    border-radius: 0!important;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #d9d9d9 !important;
    background-color: #4f4f4f !important;
    border: 1px solid #262626 !important;
}

.page-link:hover {
        z-index: 2;
        color: #fff !important;
        text-decoration: none;
        background-color: #a4a4a4 !important;
        border-color: #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #808080 !important;
    border-color: #353535;
}

/*************************************************************************************************/
/* BUTTONS                                                                                       */
/*************************************************************************************************/
.btn-color {
    color:#f5f5f5;
    background-color: #6a9258;
}

.btn-color:hover {
    color:#f5f5f5;
    background-color: #6a9232;
}


/*************************************************************************************************/
/* BADGES                                                                                       */
/*************************************************************************************************/
.badge-feature-color {
    background-color: #717171;
}

/*************************************************************************************************/
/* TAB PANELS                                                                                       */
/*************************************************************************************************/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	background-color: #6a9232;
	color: #f5f5f5;
}

.nav-tabs > li > a {
	background-color: #6a9232;
	color: #f5f5f5;
}

#pills-verify-tab, #pills-create-tab, #pills-reset-tab, #pills-update-tab, #pills-url-tab {
    color: #f5f5f5;
}