
.header-dashboard {
    background: #eaeaea;
    color: white;
    padding: 130px 0 10px;
}

/* Bootstrap pagination */
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

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

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777 !important;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

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

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

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

/* End of Bootstrap pagination */

/* Django messages */

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* End of Django messages*/

li.has-children.active > ul {
    display: block;
}

#sidemenu {
    list-style: none;
    display: block;
    background-color: #f6f7f8;
    margin: 0 30px;
    border-radius: 4px;
    line-height: 30px;
}

#sidemenu li {
    padding: 10px 10px 10px 20px;
    border-bottom: 1px solid #eaedf1;
}

#sidemenu li.active a {
    color: #28c;
}

#sidemenu li a {
    padding: 0 15px 0 20px;
    display: block;
    font-size: 14px;
    line-height: inherit;
    border-radius: 3px;
    color: rgb(51, 51, 51);
    font-weight: 300;
}

.category-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.category-btn:active {
    bottom: inherit;
}

.call-to-action-title {
    color: white;
}

.call-to-action {
    color: white;
    background-image: url('../img/backgrounds/backcomputer.jpg');
    min-height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.full-width {
    width: 100%;
    text-align: left;
}

.article-content img {
    max-width: 100%;
}

.faq-article-title {
    color: #73859f;
    font-weight: unset;
}

.changelog-type.clickable {
    cursor: pointer;
}

.log {
    position: absolute;
    top: 20px;
    right: 0;
}

.changelog-update-descriptions {
    margin-bottom: 30px;
}

.button:active {
    bottom: inherit;
}

.no-result {
    padding: 100px 0;
    margin: 20px 0;
    text-align: center;
    border: 1px dashed lightgray;
}

.image-detail-news {
    width: 100%;
}

.languages-list li {
    text-align: left;
}

.languages-list button,
.languages-list button:focus,
.languages-list button:active,
.languages-list button:hover {
    border: none;
    background: none;
    outline: none;
    white-space: nowrap;
}

.languages-list button {
    position: relative;
    -webkit-transition: color .25s ease;
    -moz-transition: color .25s ease;
    -ms-transition: color .25s ease;
    -o-transition: color .25s ease;
    transition: color .25s ease;
    padding: 15px 25px
}

.languages-list button:hover {
    color: #28c
}

.languages-list button:hover:before {
    opacity: 1
}

.languages-list button:hover:after {
    width: 60%
}

.languages-list button:after {
    position: absolute;
    display: block;
    width: 0;
    height: 1px;
    left: 50%;
    bottom: -1px;
    background-color: #42a0df;
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width .25s ease;
    -moz-transition: width .25s ease;
    -ms-transition: width .25s ease;
    -o-transition: width .25s ease;
    transition: width .25s ease
}

.pos-relative {
    position: relative;
}

.header-back-bg {
    background: rgba(255, 255, 255, 0.6);
}

.login-content {
    background-image: url('../img/backgrounds/login_back2.jpg');
    background-repeat: round;
    background-size: 100%;
}

.contactmessage {
    height: 100px;
    overflow: scroll;
    font-size: 0.8em;
    line-height: 1.2em;
    color: darkgray;
    margin-bottom: 0;
}

/*.js-footer-is-fixed {*/
/*z-index:-1;*/
/*}*/

.spinner {
    height: 60px;
    width: 60px;
    animation: rotate 0.8s infinite linear;
    border: 6px solid #28c;
    border-right-color: transparent;
    border-radius: 50%;

    text-align: center;
    color: white;
    font-weight: 600;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -15px;
    margin-left: -15px;

}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

iframe {
    border: 1px solid lightgray;
}

/*Collapse effect*/

.collapse-btn {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.collapsibleContent {
    margin-bottom: 1%;
    margin-left: 3%;
    text-align: justify;
}

.collapse-btn:hover {
    background-color: #ccc;
}

.collapse-btn::before {
    content: "\f0da";
    margin-right: 10px;
    font-family: "FontAwesome";
    color: #00b7ec;
}

.collapse-btn.active::before {
    content: "\f0d7";
    color: #00b7ec;
}

/*Home icon*/

.home-icon {
    position: absolute;
    left: 26px;
    width: 86px;
    top: 10%;
}

#particles-js > .container {
    position: relative;
    z-index: 10;
}

#page-content img, .img-responsive {
    max-width: 100%;

}

.center-txt {
    position: absolute;
    top: -420px;
    left: 275px;
}

.black {
    color: black;
}

#particles-js {
    background-color: #112446;
    position: relative;
}

#particles-js canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
}

.page-info {
    padding: 50px 0;
}

.header-back.header-back-simple.header-back-small {
    position: relative;
}

.page-info-simple .page-title {
    font-weight: 200;
    color: #fff;
    margin-bottom: 10px;
    font-size: 3em;
}

/* NAVBAR & HEADER */

.header-back-default {
    background: #112446;
}

.header-back-small {
    padding: 35px 0;
}

.logo-image {
    border-right: 3px solid #3d537b;
    padding-right: 30px;
}

.logo-image img {
    padding: 10px;
    width: 150px;
    max-width: 150px;
    height: auto;
}

#main-logo {
    background: white;
    padding: 30px;
    height: 170px;
}

#main-title {
    color: white;
    text-transform: uppercase;
    font-size: 17px;
    padding-top: 10px;
    letter-spacing: 1px;
    font-weight: 400;
    border-top: 2px solid white;
    margin: 0px 22%;
    text-align: center;
    position: relative;
    bottom: 4px;
}

.menu {
    line-height: 60px;
}

.btn-link {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

@media screen and (max-width: 640px) {
    .logo-image img {
        width: 120px;
        max-width: 120px;
    }

    .logo-image {
        border-right: 1px solid #3d537b;
        padding-right: 10px;
    }

    #main-title {
        margin: 0 1rem;
    }
}

.header-over {
    background: 0 0;
    position: relative;
    z-index: 20;
    border: none;
}

#footer-logo img {
    padding: 10px;
    height: 100px;
}

#login-logo img {
    height: 100px;
}