/* GENERIC */
body {
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    margin: 30px auto;
}

h1 {
    font-size: 48px;
    color: #19388a;
    font-family: Helvetica, serif;
}

h2 {
    font-size: 18px;
    color: #19388a;
    font-family: Helvetica, serif;
}

h3 {
    font-size: 18px;
    color: black;
    font-family: Helvetica, serif;
}

a {
    font-size: 14px;
    color: #008ACF;
    font-family: Helvetica, serif;
}

img {
    max-width: 100%;
}

/* Login */
.login form {
    background: white;
    width: 400px;
    height: auto;
    box-shadow: 0px 0px 20px rgb(185 185 185 / 70%);
    font-family: Arial;
    position: relative;
    color: #333;
    border-radius: 10px;
    margin-top: 65px;
    padding: 30px;
}

/* HEADER */


/* BODY */
/* Products list */
.sentence {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
}
.products-row {
    padding-top: 10px;
    padding-bottom: 50px;
}
.products-row .card {
    width: 18rem;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 20px rgb(196 195 195 / 70%)
}
.products-row .card .card-img-top {
    padding: 10px;
    border-radius: 15px;
    max-height: 290px;
}
.products-row .card .card-text .year {
    font-size: 14px;
    font-weight: bold;
}
.products-row .card .card-text .desc {
    font-size: 13px;
}
.products-row .card .card-text a {
    margin-top: 15px;
}

/* Products list - Filters */
.filters .accordion-body {
    text-align: left;
}

/* Products list - Pagination */
.list-pagination .pagination {
    justify-content: center;
}

/* Product page */
.product {
    text-align: left;
}
.product h1 {
    color: black;
    font-size: 38px;
    font-weight: 900;
}
.product .organizations {
    margin: 10px 0;
}
.product .desc-short {
    font-weight: 600;
    font-style: italic;
    font-size: 22px;
    margin-bottom: 20px;
}
.product .categories .badge {
    color: #212529 !important;
    background-color: #ececec !important;
    margin-bottom: 10px;
}
.product .organizations span {
    font-size: 24px;
    font-weight: 600;
}
.product .params {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}
.product .param {
    margin: 5px 0;
}
.product .param .param-title {
    font-weight: 500;
}

/* FOOTER */
footer {
    color: grey;
}

footer .social .title {
    font-size: 2rem;
    color: black;
    margin: 20px auto;
}

footer .social ul {
    list-style: none;
}

footer .social ul li {
    display: inline-block;
}

footer .social ul li a {
    display: inline-block;
    width: 40px;
    margin-right: 25px;
}

footer .social .nl {
    margin: 30px auto;
    width: 260px;
}

footer .desc {
    font-size:24px;
    color:black;
}

/* PRODUCTS */


.flip-container {
    perspective: 1000px;
}

/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
    transform: rotateY(180deg);
}

.flip-container, .front, .back {
    width: 320px;
    height: 390px;
}

/* flip speed goes here */
.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;

    position: relative;
}

/* hide back of pane during swap */
.front, .back {
    backface-visibility: hidden;

    position: absolute;
    top: 0;
    left: 0;
}

/* front pane, placed above back */
.front {
    z-index: 2;
    /* for firefox 31 */
    transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
    transform: rotateY(180deg);
}

/* FORMS */
/* Modal */
button.close {
    border: none;
    background: none;
    font-size: 2em;
}
/* Actions */
.filters-actions a {
    text-decoration: none;
}
.filters-actions button {
    border: 0 solid transparent;
}
/* The slider */
.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

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

input:checked + .slider {
    background-color: #2196F3;
}

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

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

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

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

/* STATS - DASHBOARD */

.table-stats .link {
    text-decoration: none;
    text-align: left;
}

.table-stats .link:hover {
    font-weight: bold;
}

.stats-title {
    color: rgba(0,0,0,.55);
    background: #ECECEC
}

/* CSS Document */