* {
    outline: 0 !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    min-height: 100vh;
    box-sizing: border-box;
    background: #181818;
    color: #A9B7C6;
}

body > .container {
    padding: 75px 15px 50px;
}

p {
    margin-bottom: 0.5em;
}

p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #CC7832;
}

a {
    color: #5394EC;
}

.form-control {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #DDD !important;
    background-color: rgba(0, 0, 0, 0) !important;
}

.container {
    max-width: 1140px;
}

.button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: .375rem .75rem;
    line-height: 1.5em;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #5394EC;
    background: transparent none;
    border: 1px solid #5394EC;
    cursor: pointer;
}

.button:hover, .button:focus {
    color: #FFF;
    background-color: #5394EC;
}

.button:active {
    color: #FFF;
    background-color: #3c74b5;
}

.one-line, .two-lines {
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.one-line {
    -ms-line-clamp: 1;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.two-lines {
    -ms-line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.pagination {
    justify-content: center;
}

.page-link, .page-item.disabled .page-link {
    color: #AAA;
    border-color: rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0);
}

.page-link:hover, .page-link:focus {
    color: #DDD;
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.page-item.active .page-link {
    color: #DDD;
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
}

@media (min-width: 769px) {
    .mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body > .container {
        padding: 65px 15px 50px;
    }

    .desktop {
        display: none !important;
    }

    .row.vertical {
        flex-direction: column;
    }

    .row.vertical > div {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .row.vertical > div:not(:first-child) {
        margin-top: 0.5em;
    }
}