/*--------------------------------------------------------------
/* For reusable layout
========================================================================== */

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: transparent;
	min-height: 100vh;
	/* Fallback for when there is no custom background color defined. */
}

/* To push the footer on bottom of the page */ 
#page {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.site-footer {
	margin-top: auto;
	padding: 0 15px;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 15px;
}

ul, ol {
	margin: 0;
	padding-left: 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 15px;
}

img {
	height: auto;
	max-width: 100%;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Container */ 

.header-container {
	width: 100%;
	max-width: 100%;
	padding-left: 25px;
	padding-right: 25px;
}
.footer-container {
	width: 1200px; 
	max-width: 100%;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 1024px) {
	.header-container {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media (min-width: 1366px) {
	.header-container {
		padding-left: 120px;
		padding-right: 120px;
	}
}


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.page-content,
.entry-content,
.entry-summary ,
.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/*--------------------------------------------------------------
## Max width
--------------------------------------------------------------*/

.mw-260 {
	margin: 0 auto; 
	max-width: 260px;
}
.mw-360 {
	margin: 0 auto; 
	max-width: 360px;
}
.mw-400 {
	margin: 0 auto; 
	max-width: 400px;
}
.mw-500 {
	margin: 0 auto; 
	max-width: 500px;
}
.mw-526 {
	margin: 0 auto; 
	max-width: 546px;
}
.mw-600 {
	margin: 0 auto; 
	max-width: 600px;
}

.mw-50 {
	max-width: 50%;
}

.fl-row.mw-100 .fl-row-content {
	width: 100%;
}

.min-height-0 {
	min-height: 0;
}

.position-relative {
	position: relative;
	z-index: 2;
}

.z10 {
	z-index: 7;
}

.zhover:hover {
	position: relative;
	z-index: 10;
}

.ml-0 {
	margin-left: 0 !important;
}

@media (max-width: 1600px) {
	.ml-md-0  .fl-col-content {
		margin-left: 0 !important;
	}
}

@media (min-width: 1024px) {
	.min-width-628 {
	    min-width: 628px !important;
	    max-width: 628px !important;
	}

	.min-width-628 + div {
		width: calc(100% - 628px);
	}
}

.mr-0 {
	margin-right: 0 !important;
}

/*TRENDS*/
.mr-6 {
	margin-right: 6% !important;
}
.ml-6 {
	margin-left: 6% !important;
}

.mt-0 {
	margin-top: 0 !important;
}

@media (max-width: 767px) {
	.mt-sm-auto .fl-row-content {
		margin-top: auto;
	}
	.mt-sm-auto {
		margin-top: auto !important;
	}
}

@media (max-width: 1023px) {
	.mt-md-auto {
		margin-top: auto !important;
	}
}

.no-overflow {
	overflow: hidden;
}

/*--------------------------------------------------------------
## Mobile
--------------------------------------------------------------*/

@media (min-width: 1024px) {
	.mobile {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.fl-visible-desktop, .fl-visible-desktop-medium {
		display: none !important;
		
	}
}


/*--------------------------------------------------------------
## Header row
--------------------------------------------------------------*/

@media (min-width: 768px) {
	.header-row .fl-col-group .fl-col .fl-col-group {
		display: flex;
		flex-direction: column;
		flex-basis: 50%;
		justify-content: center;
	}
}

/*--------------------------------------------------------------
## Table
--------------------------------------------------------------*/

table {
	border-collapse: collapse;
	margin-bottom: 0;
}

td {
	padding: 12px 0;
	border-bottom: 1px solid #23252B; 
}

td a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

td a img {
	display: inline-block;
}

td a:before {
	content: "";
	display: block;
	position: absolute;
	height: 0px;
	width: 0px;
	z-index: -1;
	border-radius: 36px;
	background-color: #E0E6EF;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all ease-in-out 0.2s;
}

td a:hover:before {
	height: 36px;
	width: 36px;
}

/*--------------------------------------------------------------
## Scroll
--------------------------------------------------------------*/

::-webkit-scrollbar {
	width: 10px;
}
 
::-webkit-scrollbar-track {
	background: #C4C4C4;
	opacity: 0.3;
	border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
	background: #868686;
	opacity: 0.3;
	border-radius: 10px;
}

/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/

.error-404 {
	padding: 12vh 15vw;
}


/*--------------------------------------------------------------
## STICKY
--------------------------------------------------------------*/
.fixed-form {
    position: sticky;
    top: 180px;
}
@media screen and (min-width: 768px) {
    .form-container > .fl-col-content > .fl-module {
        position:sticky;
        top: 180px
	}	
}
