/* beeldscherm maten */

/* desktop */
@media only screen and (max-width: 1025px) {
.only-desktop { display: none; }}

/*tablet landscape*/
@media only screen and (max-width: 3000px) and (min-width: 1022px) {
.only-tablet-l { display: none;}}
@media only screen and (max-width: 767px) and (min-width: 0px)   {
.only-tablet-l { display: none;}}

/*tablet portrait*/
@media only screen and (max-width: 3000px) and (min-width: 768px) {
.only-tablet { display: none;}}
@media only screen and (max-width: 736px) and (min-width: 0px)   {
.only-tablet { display: none;}}

/*Mobile landscape*/
@media only screen and (max-width: 3000px) and (min-width: 737px) {
.only-mobile-l { display: none;}}
@media only screen and (max-width: 417px) and (min-width: 0px)   {
.only-mobile-l { display: none;}}

/*Mobile portrait*/
@media only screen and (min-width: 418px) {
.only-mobile { display: none;}}

@media only screen and (max-width: 800px) {
.responsive #top #wrap_all #header .header_bg {
    background: rgba(255, 255, 255, 0.8);
}
.responsive #top #wrap_all #header {
    position: absolute;
}}

@media only screen and (min-width: 768px) and (max-width: 989px) {
.responsive #top #wrap_all #header { position: fixed; }
.responsive .header-scrolled #header_main .container {height: 60px !important; line-height: 60px !important; position: absolute;     background: rgba(255, 255, 255, 0.8);}
}



