/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 09.06.2017, 18:06:36
    Author     : Bolodya
*/

.info-block-desktop {
	display:block;
}

.info-block-mobile {
	display:none;
}

@media (max-width: 768px) {

	.info-block-desktop {
		display:none;
	}
	
	.info-block-mobile {
		display:block;
	}
}