        * {box-sizing:border-box}

        
        /* Slideshow container */
        .w3-display-container {
          max-width: 1000px;
            position: relative;
        }

        /* Hide the images by default */


        /* Next & previous buttons */
        .w3-button {
          top: 0%;
          width: 50%;
          height: 100%;
          padding: 16px;
          color: white;
          opacity: 0%;
          font-size: 18px;
          transition: 0.6s ease;
          user-select: none;
        }
        .w3-display-left{
            position: absolute;
        }
        .w3-display-left:hover {
            cursor: url('ARROWHEADS/arrow-03.svg') 16 16, w-resize;    
        }
        
        .w3-display-right{
            position: absolute;
            right: 0px;
        }
        .w3-display-right:hover {
            cursor: url('ARROWHEADS/arrow-02.svg') 16 16, e-resize;
        }
        /* Position the "next button" to the right */
        .next {
          right: 0;
        }

        /* On hover, add cursor */
        .prev:hover {
            cursor: cell;
        }
        .next:hover {
            cursor: copy;
        }