@font-face {
    font-family: 'EB Garamond Regular';
    src: url('fonts/EBGaramond-Regular.eot');
    src: url('fonts/EBGaramond-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/EBGaramond-Regular.woff') format('woff'),
    url('fonts/EBGaramond-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EB Garamond Medium';
    src: url('fonts/EBGaramond-Medium.eot');
    src: url('fonts/EBGaramond-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/EBGaramond-Medium.woff') format('woff'),
    url('fonts/EBGaramond-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #ddd;
    min-height: 600px;
    color: #212529;
    font-family: EB Garamond Medium serif;
	height: 100vh;
}

a {
    color: #77f;
}

hr {
    background-image: linear-gradient(to right, #999, #212529, #999);
    height: 1px;
    width: 50%;
}

.clear-both {
	clear: both;
}

.hidden {
    display: none;
}

.shown {
    display: block;
}

.navbar {
    background-color: #112;
}
.navbar-brand img {
    height: 1.5rem;
}
.navbar.mobile-only {
    display: none;
}

.navbar-admin .navbar {
    background-color: transparent;
}

.navbar-dark .navbar-brand:hover {
	color: #ccd;
}

.btn {
	padding: 10px 20px;
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    background: #112;
}

.content {
    background: #fff;
    padding: 10px;
}

.pagination .page-item.active .page-link {
    background-color: #5f5e6e;
}
.page-link {
	height: 100%;
}
.page-link span {
	line-height: 1.25rem;
}

.paging {
    margin: 10px 0;
}

.footer {
    background-image: linear-gradient(to top, #ddd, #ddd, #ddd, #eee, #fff);
    height: 100px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 40px;
    background-color: #fff;
}

div.account {
	margin: 10px;
    border-radius: .25rem !important;
}

div.account:hover {
    background: #444;
}

div.list {
    margin: 20px auto;
}

div.vidry-com {
    text-align: right;
}
div.mastodon {
    padding-left: 20px;
}
div.mastodon img {
    height: 53px;
}

div.vidry-com a {
    font-family: "EB Garamond Medium" sans-serif;
    font-size: 2em;
    font-style: italic;
    color: #000050;
}

div.vidry-com a:hover {
    text-decoration: none;
}

div.accounts table {
    margin: 10px auto;
}

div.accounts table td.balance {
    font-weight: bold;
}

form.login {
	width: 300px;
	margin: 50px auto;
}

form.login .form-group {
	width: 200px;
	margin: 5 auto;
	text-align: right;
}

form.login .form-group input {
	width: 100%;
	border: 1px solid #000;
}

.navbar-admin {
    background: #491217;
}

.light-grey {
    background: #aaa;
}

.navbar-admin a {
    color: #fff;
}

.navbar-nav a {
    color: #c8cbcf;
}

.nav-item-icon {
    margin: 0 10px;
}

div.admin table {
    margin: 10px 0;
}

div.admin table td a {
	color: #000;
}

div.account-name {
    display: flex;
    text-align: center;
}

div.account-name span {
    margin: auto 0;
}

table th {
    font-weight: bold;
    text-align: center;
}

table tr.link {
    cursor: pointer;
}
table tr.link:hover {
    background: rgba(64, 64, 128, 0.5);
}

th span.header-sortable {
    cursor: pointer;
}

.btn-light {
    border: none;
    background: transparent !important;
    cursor: pointer;
}

button.btn-light:hover {
    background: none;
}

button.btn-edit {
    color: #999;
}

button.btn-watch {
    color: #5B7;
}

button.btn-view {
    color: #57B;
}

button.btn-delete {
    color: #dc3545;
}

button.btn-download {
    margin-top: 50px;
}

.actions button {
    margin: 5px 0;
}

.code {
    font-size: 1.5rem;
    background: #ccc;
    padding: 3px;
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    float:right;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #887c90;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input.default:checked + .slider {
    background-color: #444;
}
input.primary:checked + .slider {
    background-color: #2196F3;
}
input.success:checked + .slider {
    background-color: #8bc34a;
}
input.info:checked + .slider {
    background-color: #3de0f5;
}
input.warning:checked + .slider {
    background-color: #FFC107;
}
input.danger:checked + .slider {
    background-color: #f44336;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

div.bottom-right {
    position: relative;
}

div.bottom-right button {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 15px;
}

.checkbox-label {
    height: 55px;
}

.btn-previous, .btn-next {
	font-size: x-large;
}

.btn-next {
	text-align: right;
}

div.bottom-navigation {
    height: 20px;
}

div.bottom-navigation ul {
	height: 20px;
}

div.bottom-navigation ul li {
	list-style-type: none;
	float: left;
	margin: 3px;
}

div.bottom-navigation ul.left {
    float: left;
}

div.bottom-navigation ul.right {
    float: right;
    margin-right: 40px;
}

form.admin button.btn.btn-search {
	width: 15%;
	margin: 5px;
}


.remember-me {
    margin: 0;
}

.remember-me .checkbox {
    margin: auto 0;
}

.remember-me .label {
    margin: 8px 10px 0;
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .container {
        padding: unset;
    }

    .admin {
        font-size: 1.3rem;
    }

    .navbar.mobile-only {
        display: flex;
    }
    .navbar.no-mobile {
        display: none;
    }
    .navbar ul {
        line-height: 2rem;
    }

    .navbar-collapse {
        padding-top: 10px;
        border-top: 1px solid #fff;
        margin-top: 5px;
    }

    ul.left {
        padding-left: 0;
    }
    div.bottom-navigation {
        font-size: 1.3rem;
    }
    div.bottom-navigation ul.right {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
}
