/*

This stylesheet is to make the website ( which the user sees ) Responsive
This is NOT the 'beheer' part of the website

*/
/* ----------- @ MEDIA ----- RESPONSIVE CHANGES ------- */
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

@media only screen and (max-width: 992px) {
    .nav-link{
        padding: 12px !important;
    }
    .navbar-nav li{
        border-bottom: 1px solid gray;
    }
    .navbar-nav li:last-of-type{
        border-bottom: none;
    }
    .nav-item:hover .dropdown-menu{
       display: none;
        visibility: hidden; 
    }
    #SendButton1, #SendButton2{
        max-width: 100% !important;
        text-align: left !important;
        padding: 8px 8px 8px 32px;
        margin: 2px 10px 2px 10px;
        background-color: RGB(32,66,112) !important;
    }
    #SendButton3{ margin: 2px 10px 2px 10px; !important; background-color: RGB(32,66,112) !important; }
    #SendButton4{ background-color: RGB(32,66,112) !important; }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .copy{
        font-size: 12px !important;
    }
    .pr_details_header > h1{
        font-size: 20px !important;
    }
    .pr_details_header > h3{
       font-size: 16px !important;
    }
    footer .paper{
        font-size: 10px !important;
    }
    footer .paper h4{
        font-size: 14px !important;
    }
} 



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
} 



/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
} 



/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
} 



/* Navbar responsive purpose only */
@media only screen and (max-width: 1030px) {
    .divider-vertical {
        display: none;
        visibility: hidden;
    }
    .nav div ul li{
        text-align: center !important;
        float: none;
        display: block;
        justify-content: center;
        align-content: center;
        padding-left: 1px;
        padding-right: 1px;
    }
    .dropdown-item{
    text-align: center !important;
    }
}



/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}