/*
 * Base structure
 */

html, body, .v-wrap {
    height: 100%;
    margin: 0;
}

.container {
    padding-top: 0px;
    padding-bottom: 0px;
    margin: auto;
    color: white;
}

.container h1 {
    /* font-family: 'Abril Fatface', cursive; */
    font-size: 28px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    line-height: 1.5em;
    font-weight: 400;
}

.container .title {
    font-family: 'Poppins',arial;
    text-transform: uppercase;
    letter-spacing: 2px;
	font-size: 25px;
	margin-bottom: 20px;
	line-height: 1.7em;
    word-wrap: break-word;
    color: #fcffbf;
}

.tag a {
    display: inline-block;
    padding: 2.5px 7px;
    margin: 2.5px;
    font-size: 12px !important;
    color: #333333;
    background: #ebebeb;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    font-style: normal;
    font-family: "Poppins";
}

/*
 * Navbar
 */
.navbar {
    min-height: 60px;
}

.localization-icons img {
    width: 21px;
    opacity: 0.3;
}

.localization-icons img:hover,
.localization-icons img.active {
    opacity: 1;
}

/**
 * Sidebar
 */

.list-group-borderless .list-group-item {
    border: 0 !important;
}

.list-group-borderless .list-group-item.active {
    color: #007bff;
    background-color: inherit;
    font-weight: bold;
}

.list-group-borderless .list-group-item i {
    color: #666;
    width: 25px;
}

.list-group-borderless .list-group-item.active i {
    color: #007bff;
}

/**
 * Social Buttons
 */
.btn-social:hover {
    opacity: 0.85;
    text-decoration: none;
}

.btn-facebook, .btn-facebook:hover {
    color: #3B5998;
}

.btn-twitter, .btn-twitter:hover {
    color: #55ACEE;
}

.btn-google, .btn-google:hover {
    color: #dd4b39;
}

/**
 * Login Page Form Wrapper
 */
.form-wrapper { display: none; }
.form-wrapper.active { display: block; }

/**
 * Misc
 */

.page-header small {
    font-size: 1rem;
}

.blockquote {
    font-size: 1rem;
}

.table th {
    font-size: 0.85rem;
    color: #666;
}

.dropdown-item i {
    color: #666;
}

label .required {
    color: #a00;
}

.table-responsive {
    min-height: 200px;
}

/**
 * Responsive CSS Rules
 */
 @media (min-width : 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width : 992px) {
    .table-responsive {
        overflow-x: visible;
    }

    .container {
        max-width: 100%;
    }
}

@media (max-width : 768px) {
    .list-group-borderless {
        margin-bottom: 20px;
    }

    .localization-icons {
        margin-top: 15px;
        margin-bottom: 10px;
        display: flex !important;
        justify-content: space-evenly;
    }

    .container {
        max-width: 100%;
    }
}

