
.mysmallbox {
    position: relative;
    margin: 10px auto;
    padding: 16px 0px;
    width: 100%;
    height: auto;
    background: transparent;
}

    .mysmallboxContainer {
        position: relative;
        width: 100%;
    	height: auto;
        margin: 0 auto;
        padding: 0;
        overflow: hidden;
    }

        .mysmallboxWindow {
            position: relative;
            width: 100%;
            height: 0;
            margin: 0;
            padding-bottom: 56.25%;
            overflow: hidden;
            z-index: 23;
            background-size: cover;
        }

            .mysmallboxWindow div { 
	        	max-width: 100%;
	        	width: 100% !important;
	        	max-height: 0;
	        	padding-bottom: 56.25%;
	        	background-size: cover;
	        	background-position: center;
	        }
                .mysmallboxWindow div img { display: block; width: 100%; height: auto; }
    

		        .mysmallboxNavigation {
		            position: relative;
		            width: 100%;
		            list-style-type: none;
					overflow: hidden;
					height: 44px;
					line-height: 44px;
					margin: 0;
					padding: 0;
		            z-index: 30;
		        }
		
		            .mysmallboxNavigation li {
		                display: inline-block;
		                width: 14px;
		                height: 14px;
		                line-height: 14px; 
		                margin: 0 6px 0 0;
		                padding: 0px;
		                font-size: 1px !important;
		                line-height: 11px;
		                background-color: var(--primary-color);
		                text-align: center;
		                vertical-align: middle;
		            }
		    
						/* style below however you want */
						.mysmallboxNavigation li.on, .mysmallboxNavigation li:hover {
						    background-color: var(--secondary-color);
						}
    
    
        .mysmallboxDescriptions {
            position: relative;
            overflow: hidden; /* highly recommend that the overflow is hidden to prevent image bleeding on the website */
            z-index: 20; /* keep this: it sets the position */

            /* style below however you want */
            width: 100%;
            height: auto;
            color: #ffffff;
            line-height: 1.5;
            text-align: left;
            z-index: 24;
        }
    
            /* style below however you want */
            .mysmallboxDescriptions div {
                position: relative;
                height: 100%;            /* keep this as it ensures there is not a flicker on the text */
                padding: 0;
                margin: 0 auto;
            }
    
        .mysmallboxAnchor {
            position: absolute;
            width: 100%;
    		height: 100%;
       		top:0;
       		left:0;
            z-index: 25;
        }
    
        .mysmallboxOverlay {
            position: absolute;
            width: 100%;
        	height: 100%;
        	top:0;
        	left:0;
        	display: none;
            z-index: 22;
        }