@media screen and (max-width : 1920px){
    .desk {
        visibility: hidden;

    }
    .div-only-mobile {
        visibility:visible;
    }
}
@media screen and (max-width : 1279px){
    .div-only-mobile {
        visibility:hidden;
        display: none;
    }

    .div-vis-mobile {
        visibility: visible;
    }

    .mobile-size {
        font-size: 1em;
    }

    .mobile-size-middle {
        margin-top: 60%;
        font-size: 1.75em;
    }

}
@media screen and (min-width : 1279px){
    .div-hide-desktop {
        visibility: hidden;
        display: none;
    }

    .mobile-size-middle {
        margin-top: 60%;
    }

}

@media screen and (max-width : 770px){
    .row-separator {
        margin-top: 96px;
    }

    .mobile-size {
        font-size: 2em;
    }

    .mobile-size-middle {
        font-size: xxx-large;
    }
}

/*.bg {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    background-image: url("../assets/waves2.svg"), linear-gradient(90deg, #364164, #24344a, #233b56);*/
/*    background-position: bottom;*/
/*    background-repeat: no-repeat;*/
/*    background-attachment: fixed;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

.bg {
    background-image: url("../assets/IMG_Factory.jpg");
    background-size: cover;
    width: 100%;
    height: auto;
}

.card-bg {
    border-radius: 0;
    background: rgb(41, 59, 64);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.8);
    color: aliceblue;
}

h2 {
    color: #eeeeee;
}

a:link {
    color: #eeeeee;
}

a:visited {
    color: #eeeeee;
}

a:hover {
    color: #80caff;
}

main {
    height: 100vh;
}

nav {
    height: 100vh;
}

.nav-item {
    background-clip: content-box;
    padding-left: 10px;
    padding-right: 10px;
}

.nav-block {
    display: block;
    text-decoration: none;
    background-color: #293b40;
    margin-top: 0;
    padding: 5px;
    border-radius: 0
}

.nav-text-big {
    font-size: 1.5rem;

}

.nav-text-small {
    font-size: 1rem;
    font-weight: lighter;
}

.btn-dark {
    color: #fff;
    background-color: #293b40;
    border-color: #293b40
}

::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar {
    width: 0;
}

tbody {
    display:block;
    overflow:auto;
}

thead, tbody tr {
    display:table;
    width:100%;
    table-layout:fixed;
}
thead {
    width: calc( 100% - 1em )
}
table {
    width:400px;
}

#real td, #real th {
    border: 0px solid #ddd;
}

#real tr:nth-child(even){background-color: rgba(242, 242, 242, 0.1);}

#real tr:hover {background-color: rgba(221, 221, 221, 0.3);}

#real th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #257955;
    color: white;
}

#real {
    border-collapse: collapse;
}

#pred td, #pred th {
    border: 0px solid #ddd;
}

#pred tr:nth-child(even){background-color: rgba(242, 242, 242, 0.1);}

#pred tr:hover {background-color: rgba(221, 221, 221, 0.3);}

#pred th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #1f5669;
    color: white;
}

#real {
    border-collapse: collapse;
}

.topnav {
    background-color: #293b40;
    overflow: hidden;
    height: 55px;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

ul {
    list-style: none;
    padding-left: 0;

}

 .styled-table {
     border-collapse: collapse;
     margin: 25px 0;
     font-size: 0.9em;
     font-family: sans-serif;
     min-width: 200px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 }

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 4px 5px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: rgba(36, 84, 30, 0.56);
}

.styled-table tbody tr:nth-of-type(odd) {
    background-color: rgba(44, 107, 32, 0.61);
}

.styled-table tbody tr:last-of-type {
    border-bottom: 0px solid #009879;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

