
/*navbar*/
.navbar {
        background-color:#5482C0;
    color: white;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 3%;
    /*    margin-top: .5%;*/
    height: 50px;
    box-sizing: border-box;
    display: block;
    /*    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15),
            0px 10px 10px rgba(0, 0, 0, 0.1);*/
    /*    border-radius: 9px;*/
    position: relative;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    position: sticky;
 
}

.navbar .logo {
    min-width:8%;
    margin-right: 3%;
    text-transform: uppercase;
    font-family: Sans-serif;
    font-weight: 300;
    font-size: 20pt;
}

.navbar .logo a {
    text-decoration: none;
    color:white;
}

.navbar ul {
    list-style: none;
    min-width:60%;
    padding: 0;
    margin-right: 4em;

}

.navbar ul li {
    display: inline;
    text-decoration: none;
}

.navbar ul li a {
    padding: 0.25em 1em 0.25em 1em;
    color:white;
    text-decoration: none;
    font-family: Sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.navbar ul li a :hover {
    padding: 0.25em 1em 0.25em 1em;
    color:white;
    text-decoration: none;
    font-family: Sans-serif;
    font-weight: 400;
    font-size: 18px;
}

 
.table{


    margin-top : 1%;
    width: 100%;
    max-width: 100%;

    border-collapse: collapse;
    border-spacing: 0;
    box-shadow: 0 2px 15px rgba(64,64,64,.7);
    border-radius: 12px 12px 0 0;
    overflow: hidden;

}

.previous {


    color: white;
    background-color: #BC9C34;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    height: 2.5em;
    padding: 5px;
}
.previous:hover {

    box-shadow: 0px 7px 10px grey;

    transform: translateY(-2px);
}

.containerB {
    margin-top: 1%;
    margin-bottom: 1%;
    padding-bottom: 20px;
    width:90%;
    margin-right: 5%;
    margin-left: 5%;
    
    /*    display: flex;*/
    justify-content: space-between;
    align-items: center;
}
.table td , .table th{
    padding: 10px 10px;
    text-align: center;

    overflow-wrap: break-word;
    word-wrap: break-word;

}
.table th{
    
    background-color: #5482C0;
    color: white;
    
    font-weight: 80;
    font-size: 16px;
    text-shadow: 1px 1px #546e7a
        ;


}
.table tr{
    width: 100%;
    max-width: 100%;
    background-color: #fafafa;
   
}
.table tr:nth-child(even){
    background-color: #eeeeee;
}
* {
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .navbar {
        position: relative;
    }
    .navbar.logo {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar ul li a {
        text-align: left;
        font-size: 15px;
    }
}
@media screen and (max-width: 600px) {
    .navbar ul li a {
        text-align: left;
        font-size: 15px;
    }
}

@media screen and (max-width: 338px) {
    .navbar {
        position: relative;
    }
    .navbar.logo {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar ul li a {
        text-align: left;
        font-size: 10px;
    }
}
@media screen and (max-width: 880px) {
    .navbar{
        min-width: 300%;
    }
    .container {
        min-width: 300%;
    }
     table{
        min-width: 300%;
    }
}
@media screen and (max-width: 400px) {
    .navbar{
        min-width: 400%;
    }
    .container {
        min-width: 400%;
    }
    table{
        min-width: 350%;
    }

}