 /* Style the Image Used to Trigger the Modal */
 #myImg {
     border-radius: 5px;
     cursor: pointer;
     transition: 0.3s;
 }

 #myImg:hover {
     opacity: 0.7;
 }

 /* The Modal (background) */
 #avisoInstagram {
     display: none;
     /* Hidden by default */
     position: fixed;
     /* Stay in place */
     z-index: 9999;
     /* Sit on top */
     padding-top: 0px !important;
     /* Location of the box */
     left: 0;
     top: 18% !important;
     width: 100%;
     /* Full width */
     height: 80%;
     /* Full height */
     overflow: auto;
     /* Enable scroll if needed */
     background-color: transparent;
     /* Fallback color */
     background-color: transparent;
     /* Black w/ opacity */
 }

 /* Modal Content (Image) */
 #myImg {
     margin: auto;
     display: block;
     width: 100%;
     max-width: 950px;
     background-color: transparent !important;
     border: transparent !important;
 }

 /* Add Animation - Zoom in the Modal */
 #myImg {
     animation-name: zoom;
     animation-duration: 0.6s;
 }

 @keyframes zoom {
     from {
         transform: scale(0)
     }

     to {
         transform: scale(1)
     }
 }

 /* 100% Image Width on Smaller Screens */
 @media only screen and (max-width: 700px) {
     #myImg {
         width: 100%;
     }
 }
