/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 21 2017 | 03:40:08 */
/* ***** All ***** */
@media only screen and (min-width: 1px){
	
}
/* ***** Desktop ***** */
@media only screen and (min-width: 1600px){
  
  	 /* Reverse Row */
    .lg_reversal {
        flex-direction              : row-reverse;
    }
  
  	/* Hide */
  	.lg_hide {
      	display						: none						!important;
  	}
	
}
/* ***** Laptop ***** */
@media only screen and (min-width: 1200px) and (max-width: 1599px){
  
  	 /* Reverse Row */
    .md_reversal {
        flex-direction              : row-reverse;
    }
  
  	/* Hide */
  	.md_hide {
      	display						: none						!important;
  	}
	
}
/* ***** Tablet ***** */
@media only screen and (min-width: 768px) and (max-width: 1199px){
  
  	 /* Reverse Row */
    .sm_reversal {
        flex-direction              : row-reverse;
    }
  
  	/* Hide */
  	.sm_hide {
      	display						: none						!important;
  	}
	
}
/* ***** Mobile ***** */
@media only screen and (max-width: 767px){
    
  	/* Reverse Row */
    .xs_reversal {
        flex-direction              : column-reverse;
    }
  
  	/* Hide */
  	.xs_hide {
      	display						: none						!important;
  	}
}