/* Adaptive template */
@media (max-width : 767px) {}

@media (min-width : 768px) {}

@media (min-width : 992px) {}

@media (min-width : 1200px) {}

/** Landing sections */
.landing section {
	padding-top: 48px;
	padding-bottom: 48px;
}

.landing section h2 {
	margin-top: 0px;
	margin-bottom: 32px;
}

.landing section h1 {
	margin-top: 0px;
	margin-bottom: 40px;
}

.landing section h3 {
	margin-top: 0px;
	margin-bottom: 24px;
}

.landing .comments {
	color: #7C7C7C;
	font-size: 12px;
	margin-top: -12px;
	margin-bottom: 24px;
}

.landing .appendix {
	margin-top: 40px;
}

/** Marked list */
.list-checks {
	padding: 0px;
}

.list-checks li {
	display: block;
	background: url(/static/coral/img/icon_check.svg) 0 4px no-repeat;
	background-size: 16px 16px;
	padding-left: 28px;
	padding-bottom: 4px;
}

@media (max-width : 767px) {
	.list-checks li {
		display: block;
		background: url(/static/coral/img/icon_check.svg) 0 3px no-repeat;
		background-size: 14px 14px;
		padding-left: 24px;
		padding-bottom: 2px;
	}
}

/** Boxes */
.box-frame {
	border: 1px solid #D2D7D6;
	border-radius: 12px;
	padding: 20px;
}

.box-white {
	background-color: #fff;
	border: 0px none;
	border-radius: 12px;
	padding: 20px;
}

.box-transparent {
	border: 0px none;
	border-radius: 12px;
	padding: 20px;
}

/** Flex blocks horizontal */
.flex-h-blocks {
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.flex-h-blocks>.flex-h-block {
	flex-basis: 1;
	flex-grow: 1;
	width: 100%;
	margin-left: 16px;
}

.flex-h-blocks>.flex-h-block-2 {
	width: 200%;
	flex-basis: 2;
	flex-grow: 2;
}


.flex-h-blocks .flex-h-block:nth-child(1) {
	margin-left: 0px;
}

@media (max-width : 767px) {
	.flex-h-blocks {
		display: block;
	}

	.flex-h-blocks>.flex-h-block {
		width: auto;
		margin-left: 0px;
		margin-top: 16px;
	}

	.flex-h-blocks>.flex-h-block:nth-child(1) {
		margin-top: 0px;
	}
}

/** Flex vertical blocks */
.flex-v-blocks {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.flex-v-blocks>.flex-v-block {
	flex-grow: 1;
	margin-top: 16px;
}

.flex-v-blocks>.flex-v-block:nth-child(1) {
	margin-top: 0px;
}


/** Simple vertical blocks */
.v-blocks {
	display: block;
}

.v-block {
	margin-top: 16px;
}

.v-block:nth-child(1) {
	margin-top: 0px;
}

/** List of buttons */
.list-buttons {
	list-style: none;
	padding-left: 0;
	margin: -16px 0px 0px -16px;
}

.list-buttons>li {
	display: inline-block;
	margin: 16px 0px 0px 16px;
}

@media (max-width : 767px) {
	.list-buttons {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		margin: 0px auto 0px auto;
	}

	.list-buttons>li {
		display: block;
		margin: 16px 0px 0px;
	}

	.list-buttons>li:nth-child(1) {
		margin: 0px;
	}

	.list-buttons>li>.btn {
		width: 100%;
	}
}

/** Left & up icon tool */
.icon-left {
	display: flex;
	align-items: center;
}

.icon-left img {
	display: block;
	width: 32px;
	margin-right: 16px;
	flex-shrink: 0;
}

.icon-left p {
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
	flex-grow: 1;
}

.icon-up {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.icon-up img {
	display: block;
	width: 32px;
	margin-bottom: 16px;
	flex-shrink: 0;
}

img.icon-lg {
	width: 64px;
}

img.icon-sm {
	width: 24px;
}

.icon-up p {
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
}

/** EOF */