
/* For mobile phones: */
@media only screen and (max-width: 600px) {
    /* Hide some main calendar stuff */
    .fc-dayGridMonth-button.fc-button.fc-button-primary {display: none;}
    .fc-listMonth-button.fc-button.fc-button-primary {display: none;}
    .fc-listDay-button.fc-button.fc-button-primary {display: none;}

    /* Top menu should be Hamburger menu style */
      .menu-button-container {
        display: flex;
      }
      .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
      }
      #menu-toggle ~ .menu li {
        display: none;
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
      }
      #menu-toggle:checked ~ .menu li {
        display: flex;
        border: 1px solid #333;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
      }
      .menu > li {
        display: flex;
        z-index: 10000;
        position: relative;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #222;
      }
      .menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
      }

    /* End of Top menu should be Hamburger menu style */

    /* Profiel pagina */
    .pf-icon {
        max-width: 25%;
        height: auto;
    }
    /* end of Profiel pagina */

    /* pricing pagina */
    .bancontactLogoClass {
        width: 40%;
        height: auto;
    }
    /* end of pricing pagina */

}


/* Extra small devices (phones, 600px and down) */
/*@media only screen and (max-width: 600px) {...}

/* 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) {...}*/

/* Extra large devices (large laptops and desktops, 1200px and up) */
/*@media only screen and (min-width: 1200px) {...}*/