	html, body {
	    padding: 0;
	    margin: 0;
	    font-family: 'Open Sans',Helvetica Neue,Helvetica,helvetica,arial,sans-serif;
	    font-size: 15px;
	    line-height: 16px;
	    background-color: #fff;	  
	    color: #000;
	}	
	
	*, ::after, ::before {
		box-sizing: border-box;
	}
	
	.container {
		width: 100%;
		padding-right: 1rem;
		padding-left: 1rem;
		margin-right: auto;
		margin-left: auto;
	}	
		
	@media (min-width: 1400px) {
		.container {
			max-width: 1340px;
		}
	}
	
	.r {
		border-radius: 3px;
	}	
		
	.row {
		display: flex;
		flex: 1 0 100%;
		flex-wrap: wrap;
		margin-top: 0;
		margin-right: calc(1.5rem / -2);
		margin-left: calc(1.5rem / -2);
	}
		
	.row > * {
		flex-shrink: 0;
		width: 100%;
		max-width: 100%;
		padding-right: calc(1.5rem / 2);
		padding-left: calc(1.5rem / 2);
		margin-top: 0;
	}		
		
	.col {
		flex: 1 0 0%;
	}		
	
	@media (min-width: 768px) {
		.col-md-2 {
  			flex: 0 0 16.666667%;
  			max-width: 16.666667%;
		}
		.col-md-10 {
  			flex: 0 0 83.333333%;
  			max-width: 83.333333%;
		}
	}
	
	.d-none {
		display: none!important;
	}
		
	.d-flex {
	    display: flex!important;
	}
	
	.justify-content-between {
	    justify-content: space-between!important;
	}
	
	.align-items-center {
		align-items: center!important;
	}

	.flex-column {
    	flex-direction: column!important;
	}
	
	a, a:hover {
	    color: #016fdf;
	    text-decoration: underline;
	}	
	
	h1 {
    	font-size: 32px;
    	line-height: 36px;
    	color: #181b20;
    	margin: 0 0 18px 0;
	}
	
	h2 {
		font-size: 22px;
		line-height: 34px;
	}
	
	h3 {
		font-size: 20px;
		line-height: 32px;
	}
	
	h4 {
		font-size: 18px;
		line-height: 30px;
	}
	
	h1, h2, h3, h4 {
		margin: 0 0 18px 0;
	}
	
	p, ul, li {
		padding: 0;
		margin: 0
	}	
	
	ul, li {
		list-style-type: none;
	}

 	p {
 		font-size: 18px;
 		line-height: 30px;
 	}

	.nmb {
		margin-bottom: 0px !important
	}	
	
	.hmb {
		margin-bottom: 9px !important
	}	
	
	.mb {
		margin-bottom: 18px !important
	}	
	
	.dmb {
		margin-bottom: 36px !important
	}
	
	.tmb {
		margin-bottom: 54px !important
	}
	
	table td {
		padding: 10px;
		border: 1px solid #ccc;
	}

	.btn-close {
	    box-sizing: content-box;
	    width: 18px;
	    height: 18px;
	    padding: 9px;
	    color: #000;
	    background: #0000 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/18px auto no-repeat;
	    border: 0;
	    border-radius: 0.375rem;
	    opacity: .5;
	}	
	.btn-close:hover {
		opacity: 1;
	}
	
	[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
	    cursor: pointer;
	}	
	
	.uppercase {
		text-transform: uppercase;
	}

	.text-center {
		text-align: center;
	}
	
	input, input.text {
	    padding: 7px 10px;
	    border-radius: 5px;
	    border: 1px solid #aaa;
	    background: #fff;
	    background: linear-gradient(to bottom,#f5f5f5 1%,#fff 5%);
	    box-shadow: 1px 1px 1px #f0f0f0 inset;
	    font-size: 14px;
	}	
	
	#autocomplete {
		display:none;
		position:absolute;
		top:0;
		left:0;
		font-size: 14px;
		line-height: 20px;
		background-color: #fff;
		width: 200px;
		box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
		z-index: 1100;
		border:1px solid #888;	
		max-height: 300px;
	    overflow-y: auto;
	    overflow-x: hidden;
	}
	
	#autocomplete a, #autocomplete div {
		display: block;
		padding: 8px;
		font-size: 18px;
		line-height: 26px;
		cursor: pointer;
		text-decoration: none;
		display: flex;
	}
	
	#autocomplete div {
		font-size: 14px;
	}
	
	#autocomplete a:hover {
		text-decoration: none;
	    background: #f1f1f2;
	}

	#autocomplete a img {
		width: 65px;
		margin-right: 10px;	
	}

	.text-big {
		font-size:16px;
		line-height:22px;
	}
	
	.text-bigger {
		font-size:20px;
		line-height:26px;
	}

	.fade {
	    opacity: 0;
	    transition: opacity .15s linear;
	}
	
	.fade.show {
	    opacity: 1;
	}
	
	.modal-open {
	    overflow: hidden;
	}
	
	.modal {
	    position: fixed;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    z-index: 1050;
	    display: none;
	    overflow: hidden;
	    outline: 0;
	}
	
	.modal.fade .modal-dialog {
	    transition: transform .3s ease-out;
	    transform: translate(0,-25%);
	}
	
	.modal.show .modal-dialog {
	    transform: translate(0,0);
	}
	
	.modal-open .modal {
	    overflow-x: hidden;
	    overflow-y: auto;
	}
	
	.modal-dialog {
	    position: relative;
	    width: auto;
	    margin: 10px;
	}
	
	.modal-content {
	    position: relative;
	    display: flex;
	    flex-direction: column;
	    background-color: #fff;
	    background-clip: padding-box;
	    border: 1px solid rgba(0,0,0,.2);
	    border-radius: 10px;
	    outline: 0;
	}
	
	.modal-backdrop {
	    position: fixed;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    z-index: 1040;
	    background-color: #222;
	}
	
	.modal-backdrop.fade {
	    opacity: 0;
	}
	
	.modal-backdrop.show {
	    opacity: 0.6;
	}
	
	.modal-header {
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    padding: 12px 15px;
	    border-bottom: 1px solid #eceeef
	}
	
	.modal-title {
	    margin: 0;
	    font-size: 16px;
	    line-height: 22px;
	}
	
	.modal-body {
	    position: relative;
	    flex: 1 1 auto;
	    padding: 15px
	}
	
	.modal-footer {
	    display: flex;
	    align-items: center;
	    justify-content: flex-end;
	    padding: 15px;
	    border-top: 1px solid #eceeef
	}
	
	.modal-footer>:not(:first-child) {
	    margin-left: .35rem
	}
	
	.modal-footer>:not(:last-child) {
	    margin-right: .35rem
	}
	
	.modal-scrollbar-measure {
	    position: absolute;
	    top: -9999px;
	    width: 50px;
	    height: 50px;
	    overflow: scroll
	}
	
	@media (min-width: 576px) {
	    .modal-dialog {
	        max-width:500px;
	        margin: 30px auto
	    }
	}
	
	button.close {
	    padding: 0;
	    cursor: pointer;
	    background: 0;
	    border: 0;
	    -webkit-appearance: none;
	}	
	.close {
	    position: absolute;
	    font-size: 35px;
	    font-weight: 700;
	    line-height: 1;
	    color: #000;
	    text-shadow: 0 1px 0 #fff;
	    opacity: .5;
	    top: 6px;
	    right: 12px;
	    z-index: 1;
	}	
	
	.ads {
		width: 100%;
		display: block;
		margin-bottom: 36px;		
	}	

	.search {
		position: relative;
		width: 50%;
	}	
	
	.profile a {
		font-size: 16px;
		margin-left: 14px;
	}	

	.offcanvas .search {
		width: 100%;
	}
	
	.search button {
		position: absolute;
	    top: 2px;
	    right: 2px;
	    background-color: #1a7f50;
	    height: calc(100% - 4px);
	    border-radius: 5px;
		padding: 5px 4px 4px 5px;
	    border:0;
	}
	
	.search input {
		width: 100%;
		padding-right: 50px;
		padding: 10px;
	}	

	.page {
		display: block;
		width: 100%;
   		height: auto;
   		margin-bottom: 1rem;
   		position: relative;
	}
	
	.page img {
		width: 100%;
		height: 100%;
	}
	
	.page-num {
	    position: absolute;
	    top: 5px;
	    right: 5px;
	    border: 1px solid #ddd;
	    background-color: #fff;
	    padding: 4px 8px;
	    margin: 4px;
	    border-radius: 5px;
	    font-size: 18px;
	}
	
	#header {
	    background-color: #fff;
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 10;
	    height: 60px;
	    align-items: center;
	    display: flex;
	}
	
	#header .container {
		align-items: center;
	}
	
	.logo {
		display: inline-block;	
		font-size: 32px;
		font-weight: 600;
		outline: 0;
		letter-spacing: -1px;
	}
	
	.logo, .logo:hover, .logo:visited {
		text-decoration: none;
		color: #423c3e;
	}
	
	.logo img {
		width: 32px;
		height: 32px;
		margin-bottom: -5px;
		margin-right: 5px;
		margin-top: -5px;
	}	

	.logo.footer {
		display: inline-flex;
		width: 100%;
		line-height: 40px;
		margin-top: -5px;
	}

	.logo.footer img {
		margin: 5px 5px 0 0;
	}
	
	.breadcrumb {
		display:flex;
		padding:0;
		margin: 0 0 18px 0;
	}
	
	.breadcrumb .nf:before {
    	padding: 0 9px;	
		color: #999;
    	content: "/";
	}
	
	.breadcrumb img {
		width: 20px;
    	height: 20px;
	}
	
	.navigation {
	    background-color: #fff;
	    padding: 0;
	    align-items: center;
	    display: flex;
		border-bottom: 1px solid rgb(215, 225, 230);
		overflow-x: auto;
		white-space: nowrap;
	}	
	
	.navigation li {
		align-items: center;
		height: 40px;		
		display: flex;
	}

	.navigation a {
		text-decoration:none;
		color: rgb(64, 85, 97);
		padding: 0 20px;
		margin: 0;
		text-align: center;
		display: flex;
		font-weight: bold;
		align-items: center;
		height: 40px;
	}

	.navigation a:hover, .navigation a.active {
		color: #000;
		border-bottom: 2px solid #222;
	}

	.navigation img {
		display: block;
		width: 36px;
		margin: auto;
		margin-bottom: 9px;
		opacity: 0.7;
	}	

	#offcanvas-menu, #profile-menu, #search-menu {
		margin-left: 20px;
	}

	#offcanvas-menu, #profile-menu, #search-menu {
		display: none;
	}
	
	#offcanvas-menu img, #profile-menu img, #search-menu img {
		width: 30px;
		height: 30px;
	}

	.offcanvas-header {
		font-size: 18px;
		line-height: 30px;		
	}
	
	.offcanvas {
	  position: fixed;
	  bottom: 0;
	  z-index: 1045;
	  display: flex;
	  flex-direction: column;
	  max-width: 100%;
	  color: #000;
	  visibility: hidden;
	  background-color: #fff;
	  background-clip: padding-box;
	  outline: 0;
	  transition: transform 0.3s ease-in-out;
	  top: 0;
	  right: 0;
	  width: 300px;
	  border-left: 1px solid #000;
	  transform: translateX(100%);
	  text-align: right;
	}
	@media (prefers-reduced-motion: reduce) {
	  .offcanvas {
	    transition: none;
	  }
	}
	.offcanvas.showing, .offcanvas.show:not(.hiding) {
	  transform: none;
	}
	.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
	  visibility: visible;
	}
	.offcanvas-backdrop {
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 1040;
	  width: 100vw;
	  height: 100vh;
	  background-color: #000;
	}
	.offcanvas-backdrop.fade {
	  opacity: 0;
	}
	.offcanvas-backdrop.show {
	  opacity: 0.5;
	}	
	.offcanvas-body {
		position: relative;
		padding: 54px 18px 18px 18px;
	}
	.offcanvas .btn-close {
		position: absolute;
		top: 10px;
		right: 10px;
	}
	
	.offcanvas ul {
	    display: flex;
	    flex-wrap: wrap;
	    padding-left: 0;
	    margin-bottom: 0;
	    list-style: none;
	}

	.offcanvas li {
		margin-bottom: 27px;
	}
	
	.offcanvas li a {
		display: block;
    	font-size: 16px;    	
    	text-decoration: none;
	}		
 
 	#categories {
 		margin-top: 60px;
 	}
 	
 	#content {
 		padding-top: 27px;
 	}

	span.new {
		background: #2476cd;
		color: #fff;
		padding: 5px;
		text-transform: uppercase;
		position: absolute;
		bottom: 8px;
		left: 6px;
		font-size: 14px;
		font-weight: bold;
		border-radius: 5px;
	}
 	 	
 	.offers, .brands, .shops ul {
	    flex-flow: row wrap;
    	display: flex;
 	}
 	
	.offer, .brand {
   		width: calc(16.666667% - 12px);
	    display: flex;
	    text-align: center;
	    flex-direction: column;
	    margin: 6px; 		
	}
	
	.latest-offers-list li {
		font-size: 18px;
    	line-height: 30px;
    	padding: 0 0 9px 0;
	}

	.shop {
		display: flex;
    	flex-direction: row;
	    align-items: center;
	    justify-content: space-between;
   		width: calc(33.3333333% - 12px);
		text-align: left;	
	    margin: 6px;
	    color: #222;
	    text-decoration: none;
	    border-width: 0;
		box-shadow: 0 1px 3px 0 #00000030;
    	transition: box-shadow .2s ease;	    
	    background-color: #fff;
	    border-radius: 16px;
	    height: 100px;
	    padding: 20px 0;	 
	}
	
	.shop .img {
		width: 100px;
		height: 100%;
		display: flex;
    	justify-content: center;
    	align-items: center;
	}
	
	.shop .img img {
		max-height: 100%;
    	max-width: 100%;
	}
	
	.shop .ctn {
		display: flex;
   		flex-direction: column;
    	width: 100%;
    	height: 100%;
    	justify-content: space-between;	
	}
	
	.offer {
	    margin-bottom: 36px;
	}
	
	.offer-full {
		width: 100%;
		display: flex;
	}
	.offer-details {
		
	}
	
	.offer h2 {
	    margin: 0 0 18px 0;
	}
	
	.offer h2 b {
		font-size: 18px;
		line-height: 22px;
		display: block;
		font-weight: normal;
		color: #5b5b5b;
	}	
	
	.offer .inner {
		width: 100%;
   		border-radius: 5px;
		background-color: #fff;
	    border-width: 0;
		box-shadow: 0 1px 3px 0 #00000030;
    	transition: box-shadow .2s ease;
		position:relative;   
	}
	
	.inactive .big {
	    opacity: .6;
	    filter: grayscale(100%);
	    filter: gray;
	}
	
	.brand a {
		align-items: center;  
		color: #222;
	    text-decoration: none;
	    border-width: 0;
		box-shadow: 0 1px 3px 0 #00000030;
    	transition: box-shadow .2s ease;	    
	    background-color: #fff;
	    border-radius: 16px;
	    margin: 0;
	    width: 100%;
	}	
	
	.brand a:hover {
		border-color: #808184;
	}

	.brand a {
		padding: 10px 0 15px 0;
	}

	.brand img {
		max-height: 50px;
		margin-bottom: 10px;
		max-width: 90%;
	}

	.big2 {
		height: 265px;
    	display: block;
    	overflow: hidden;
    	margin-bottom: 10px;	
	}

	.big {		
		position:relative;
	}

	.big, .big img {
		border-radius: 5px 5px 0 0;
		width: 100%;
		display: block;
		height: 250px;
    	overflow: hidden;
	}
	
	.big img {
    	height: 100%;
    	object-position: top left;
    	object-fit: cover;
	}
	
	.offer p {
		padding: 9px 9px 11px 9px;
		color: #222;
		font-size: 13px;
		line-height: 20px;
	}

	.offer p.new {
		padding-left:30px;
	}
		
	.offer .future {
		color: #006cdb;
	}
	
	.offer .today {
		background: #df282b;
		color: #fff;
		padding: 5px;
		font-size: 14px;
		font-weight: bold;
		border-radius: 5px;
	}
	
	.offer .more {
		text-align: left;
		color: #888;
		font-size: 13px;
		padding-top: 18px;
	}
	
	.p-links {
		padding: 0 0 18px 0;
	}
	
	.p-links ul li {
		display: inline-block;
		width: 25%
	}
	
	.p-links.v2 ul li {
		width: initial;
	}

	.p-links a {
		display: inline-flex;
		width: calc(100% - 10px);
		font-weight: normal;
		line-height: 28px;
		font-size: 18px;
		padding: 9px 16px;
	    text-decoration: none;
	    border: 1px solid #dadce0;
	    background-color: #fff;
	    border-radius: 16px;
	    margin: 5px;
		align-items: center;
	}

	.p-links a img {
		height: 20px;
		margin-right: 10px;
	}
	
	.p-links a:hover {
		border-color: #808184;
	}	
	
	.btn {
		text-align: center;
		border-radius: 5px;
		color: #fff;
		cursor: pointer;
		display: inline-block;
		font-weight: normal;
		font-size: 18px;
		line-height: 22px;
		overflow: visible;
		position: relative;
		text-decoration: none;
		width: auto;
		box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .15);
		border: 0;
		transition: all .1s ease;
		user-select: none;
		padding: 8px 14px;
		vertical-align: middle;
		border-radius: 24px;
		color: #fff;
	    background-color: #1a7f50;
	}

	.btn:hover {
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
		border-color: rgba(100, 100, 100, 0.3) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.35);	
	}
	
	.btn:hover, .btn:visited, .btn:active {
		text-decoration: none;
		color: #fff;
	}	
	
	.btn-grey {	
		background-color: #707077;
	}	

	ul.hrl {
		padding: 5px 0 5px 20px
	}
	
	ul.hrl li {
		padding: 0 8px;
		list-style-type: disc;
		font-size: 18px;
		line-height: 30px;
	}
	
	#footer {
		border-top: 1px solid #eee;
		background-color: #fff;
		padding: 36px 0;
	}	
	
	#footer ul {
	    display: flex;
	    flex-wrap: wrap;
	    padding-left: 0;
	    margin-bottom: 0;
	    list-style: none;
	}

	#footer li {
		margin-bottom: 18px;
	}
	
	#footer li a {
		display: block;
    	font-size: 16px;    	
    	text-decoration: none;
	}
	
	#footer .col {
		flex: 0 0 auto;
    	width: 33.3%;
	}

	@media (max-width: 990px) {
		.shop {
			width: calc(50% - 12px);
		}
		.offer, .brand {
			width: calc(33.333333% - 12px);
		}	
		#content {
			padding-top: 18px;
		}
		.p-links ul li {
			width: 50%
		}
		#offcanvas-menu, #profile-menu {
			display: inline-block;
		}
		.profile {
			display: none;
		}
		.search button {
			height: calc(100% - 6px);
		}
		.navigation a:hover, .navigation a.active {
			border-bottom: 0;
		}
		.navigation li:first-child a {
			padding-left: 0;
		}		
		span.new {
			left: initial;
			bottom: initial;
			top: 6px;
    		right: 6px;
		}		
		.offer p.new {
			padding-left: 0;
		}
	}

	@media (max-width: 800px) {
		.search {
    		width: 40%;
		}
		.logo {
			font-size: 26px;
		}		
	}	

	@media (max-width: 768px) {
		#footer .col {
    		flex: 0 0 auto;
    		width: 50%;
		}
	}
	
	@media (max-width: 576px) {
		h1 {
    		font-size: 26px;
    		line-height: 34px;		
		}
		h2 {
			font-size: 20px;
			line-height: 32px;
		}
		
		h3 {
			font-size: 18px;
			line-height: 30px;
		}
		
		h4, p {
			font-size: 16px;
			line-height: 28px;
		}
		.shop {
			width: calc(100% - 12px);
		}
		.offer, .brand {
			width: calc(50% - 12px);
		}	
		.offer p {
			font-size: 12px;
			line-height: 18px;
		}
		#footer .col {
    		flex: 0 0 auto;
    		width: 100%;
		}	
		.p-links ul li {
			width: 100%
		}
		#search-menu {
			display: inline-block;
		}
		#header-search {
			display: none;
		}
	}	