
@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/ois/fonts/fa-regular-400.ttf");
}

.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400; }
  
:root {
    --font-primary: Arial, Helvetica, sans-serif;
    --font-secondary: "Times New Roman", Times, serif;


    --white: #fff;
    --black: #000;
    --body-bg: #fff;
    --body-text: #000;
    --primary: #B71234;


    --danger: var(--primary);
    --success: #0C8346;
    --warning: #CCA43B;


    --grey: #E8E8E8;
    --grey-dk: #6C6768;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-plus:before {
    content: "\f067";
}

.fa-file:before {
    content: "\f15b";
}

.fa-chevron-right:before {
    content: "\f054";
}

*,
:after,
:before {
	box-sizing: border-box
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent
}

body {
	line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block
}

nav ul {
	list-style: none
}

blockquote {
	quotes: none
}

blockquote:after,
blockquote:before {
	content: "";
	content: none
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent
}

ins {
	text-decoration: none
}

ins,
mark {
	background-color: #ff9;
	color: var(--black)
}

mark {
	font-style: italic;
	font-weight: 700
}

del {
	text-decoration: line-through
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0
}

input,
select {
	vertical-align: middle
}

button span {
	position: relative
}

address {
	font-style: normal
}

a,
button,
input,
select,
textarea {
	outline: none
}

button::-moz-focus-inner {
	padding: 0;
	border: 0
}

body {
	background: var(--body-bg);
	width: 100%
}

body,
button,
input,
select,
textarea {
	font-size: 14px;
	line-height: 20px;
	font-family: var(--font-primary);
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: var(--body-text)
}

a {
	color: var(--primary);
	text-decoration: underline
}

a:hover {
	text-decoration: none
}

::-moz-selection {
	color: var(--white);
	background: var(--primary)
}

::selection {
	color: var(--white);
	background: var(--primary)
}

.page {
	width: 1260px;
	padding: 0 40px;
	margin: 0 auto;
	max-width: 100%
}

@media (max-width:1023px) {
	.page {
		padding: 0 20px
	}
}

.page__header {
	display: flex;
	align-items: center;
	padding: 40px 0
}

.page__header .page-name {
	flex: 1;
	margin-left: 40px
}

.page__content {
	padding-bottom: 80px
}

@media (max-width:1023px) {
	.page__header {
		display: block
	}
	.page__header .page-name {
		margin-left: 0;
		margin-top: 10px
	}
	.page__content {
		padding-bottom: 40px
	}
}

.btn {
	display: inline-block;
	vertical-align: middle;
	border: 0;
	margin: 0;
	padding: 0;
	background: none;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	position: relative;
	border-radius: 30px;
	text-decoration: none;
	transition: all .2s ease
}

.btn--primary {
	padding: 12px 30px;
	border: 2px solid var(--primary);
	background: var(--primary);
	color: var(--white);
	line-height: 30px
}

.btn--primary:hover {
	background: var(--white);
	color: var(--primary)
}

.btn--black {
	padding: 13px 38px;
	border: 2px solid var(--black);
	background: var(--black);
	color: var(--white);
	line-height: 30px
}

.btn--black:hover {
	background: var(--white);
	color: var(--black)
}

.buttons-list {
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
	margin-bottom: -10px
}

.buttons-list .btn {
	margin-left: 40px;
	margin-bottom: 10px
}

@media (max-width:767px) {
	.buttons-list {
		margin-top: 40px
	}
}

.form-row {
	display: flex;
	align-items: center;
	margin: 0 -10px;
	padding-bottom: 15px;
	width: 800px;
	max-width: calc(100% + 20px)
}

.form-row--full {
	width: auto
}

.form-col {
	flex: 1;
	padding: 0 10px
}

.form-col:not(:only-child) .form-item--checkbox {
	padding-top: 10px
}

.form-col--actions {
	flex-grow: 0;
	padding-top: 10px
}

.form-col--380 {
	flex: 0 1 400px
}

.form-item__title {
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: -.05em;
	margin-bottom: 20px
}

.form-item__head {
	padding-bottom: 8px;
	border-bottom: 2px solid var(--grey);
	margin-bottom: 30px
}

.form-item__head .form-item__title {
	margin-bottom: 0
}

.form-item__labels {
	display: flex;
	align-items: flex-end;
	padding-left: 10px;
	margin-bottom: -10px;
	position: relative;
	padding-right: 20px;
	z-index: 20
}

.form-item__labels__item {
	display: block;
	padding: 2px 5px;
	background: var(--primary);
	border-radius: 3px;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--white);
	margin-left: 10px;
	position: relative
}

.form-item__labels__item--black {
	background: var(--black);
}

.form-item__labels__item--required {
    color: var(--primary);
    font-size:20px;
    font-weight: 1000;
	background: none
}

.form-item__labels__item + .form-item__labels__item--required {
    margin-left: 0;
}

.form-item__help {
	margin-top: 20px;
	padding-left: 40px;
	font-size: 14px;
	line-height: 18px
}

.form-item__help ul {
	padding-left: 20px;
	list-style: none;
	margin: 20px 0
}

.form-item__help ul li {
	position: relative
}

.form-item__help ul li:before {
	content: "";
	position: absolute;
	top: 7px;
	left: -14px;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: var(--black)
}

.form-item__help ul li+li {
	margin-top: 10px
}

.form-item__help ul:first-child {
	margin-top: 0
}

.form-item__help ul:last-child {
	margin-bottom: 0
}

.form-item__help p {
	margin: 10px 0
}

.form-item__help p:first-child {
	margin-top: 0
}

.form-item__help p:last-child {
	margin-bottom: 0
}

.form-item__help a {
	color: var(--black)
}

.form-item__actions {
	margin-top: 20px
}

.add-row {
    margin-top: 2px;
}

.form-item__actions a {
	display: inline-flex;
	align-items: center;
	vertical-align: top;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	padding-top: 10px;
}

.form-item__actions a i {
	width: 20px;
	flex-shrink: 0;
	text-align: center
}

.form-item__actions a .link__label {
	text-decoration: underline
}

.form-item__actions a:hover .link__label {
	text-decoration: none
}

.form-item--search input,
.form-item--text input {
	display: block;
	width: 100%;
	background: var(--white);
	border: 2px solid var(--grey);
	box-sizing: border-box;
	border-radius: 6px;
	font-size: 14px;
	line-height: 14px;
	padding: 16px;
	height: 50px
}

.form-item--search input {
	padding-left: 48px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE5Ljg0NCAxOC44MmwtNC43MjctNC43MjZjLS4xMTctLjA3OC0uMjM0LS4xNTYtLjM1MS0uMTU2aC0uNTA4YzEuMjEtMS40MDcgMS45OTItMy4yODIgMS45OTItNS4zMTNDMTYuMjUgNC4xNzIgMTIuNTc4LjUgOC4xMjUuNSAzLjYzMy41IDAgNC4xNzIgMCA4LjYyNWE4LjExOSA4LjExOSAwIDAwOC4xMjUgOC4xMjVjMi4wMzEgMCAzLjg2Ny0uNzQyIDUuMzEzLTEuOTUzdi41MDhjMCAuMTE3LjAzOS4yMzQuMTE3LjM1MWw0LjcyNiA0LjcyN2MuMTk2LjE5NS41MDguMTk1LjY2NCAwbC44OTktLjg5OWMuMTk1LS4xNTYuMTk1LS40NjggMC0uNjY0ek04LjEyNSAxNC44NzVhNi4yMTkgNi4yMTkgMCAwMS02LjI1LTYuMjUgNi4yNDMgNi4yNDMgMCAwMTYuMjUtNi4yNWMzLjQzOCAwIDYuMjUgMi44MTMgNi4yNSA2LjI1YTYuMjQzIDYuMjQzIDAgMDEtNi4yNSA2LjI1eiIgZmlsbD0iIzAwMCIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+);
	background-position: left 18px center;
	background-repeat: no-repeat
}

.form-item--select select {
	display: block;
	width: 100%;
	background: var(--white);
	border: 2px solid var(--grey);
	box-sizing: border-box;
	border-radius: 6px;
	font-size: 14px;
	line-height: 14px;
	padding: 16px 58px 16px 16px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjQ3NyAxLjA2M0wxNi43MzQuMjhjLS4xOTUtLjE5NS0uNTA3LS4xOTUtLjY2NCAwTDkgNy4zNTEgMS44OS4yODJjLS4xNTYtLjE5NS0uNDY4LS4xOTUtLjY2MyAwbC0uNzQzLjc4MWMtLjE5NS4xNTctLjE5NS40NyAwIC42NjVMOC42NDggOS44OWEuNDUuNDUgMCAwMC42NjUgMGw4LjE2NC04LjE2NGMuMTk1LS4xOTYuMTk1LS41MDggMC0uNjY1eiIgZmlsbD0iIzAwMCIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+);
	background-position: right 19px center;
	background-repeat: no-repeat
}

.form-item--date>.form-item__input {
	display: flex;
	width: 540px;
	max-width: 100%
}

.form-item--date>.form-item__input .form-item {
	flex: 1
}

@media (min-width:480px) {
	.form-item--date>.form-item__input .form-item select {
		border-radius: 0;
		border-left: 0;
		border-right: 0
	}
	.form-item--date>.form-item__input .form-item:first-child select {
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
		border-left: 2px solid var(--grey)
	}
	.form-item--date>.form-item__input .form-item:last-child select {
		border-top-right-radius: 6px;
		border-bottom-right-radius: 6px;
		border-right: 2px solid var(--grey)
	}
	.form-item--date>.form-item__input .form-item:not(:first-child) {
		position: relative
	}
	.form-item--date>.form-item__input .form-item:not(:first-child):before {
		content: "";
		position: absolute;
		width: 2px;
		height: 20px;
		background: var(--grey);
		top: 50%;
		transform: translateY(-50%);
		left: -1px
	}
	.form-item--date>.form-item__input .form-item--day {
		flex: 0 0 150px
	}
	.form-item--date>.form-item__input .form-item--year {
		flex: 0 0 160px
	}
}

.form-item--checkbox, .form-item--radio {
	padding-top: 20px
}

.form-item--checkbox input, .form-item--radio input {
	display: none
}

.form-item--checkbox input:checked+label:before {
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-weight: 400;
	content: "\f00c";
	background: var(--black);
	line-height: 30px
}

.form-item--radio input:checked+label:before {
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-weight: 400;
	content: "\f00c";
	background: var(--black);
	line-height: 30px
}

.form-item--checkbox label, .form-item--radio label {
	display: flex;
	align-items: flex-start;
	padding: 5px 0;
	font-size: 16px;
	line-height: 16px
}

.form-item--checkbox label:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: var(--grey);
	color: var(--white);
	font-size: 20px;
	text-align: center;
	margin: -5px 10px -5px 0;
	flex-shrink: 0
}

.form-item--radio label:before {
    content: "";
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50px;
	background: var(--grey);
	color: var(--white);
	font-size: 20px;
	text-align: center;
	margin: -5px 10px -5px 0;
	flex-shrink: 0
}

.form-item--checkbox-list>.form-item__input {
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
	margin-bottom: -20px
}

.form-item--checkbox-list>.form-item__input .form-item {
	flex: 0 0 33.333%;
	max-width: 33.333%;
	padding-left: 20px;
	padding-top: 0;
	margin-bottom: 20px
}

.form-item--group {
	padding-top: 20px
}

.form-item--group .form-item--text input {
	padding: 6px;
	height: 40px
}

.form-item--group .form-item--select select {
	padding-top: 6px;
	padding-left: 6px;
	padding-bottom: 6px;
	height: 40px
}

.form-item--group .form-item__rows {
	counter-reset: rows
}

.form-item--group .form-item__rows__row {
	display: flex;
	align-items: center;
	margin: 0 -5px
}

.form-item--group .form-item__rows__row:before {
	display: block;
	counter-increment: rows;
	content: counter(rows) ".";
	font-size: 16px;
	line-height: 18px;
	padding-left: 5px;
	flex: 0 0 30px
}

.form-item--group .form-item__rows__row__col {
	flex: 1;
	padding: 0 5px
}

.form-item--group .form-item__rows__row__col__label {
	display: block;
	font-weight: 700;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-top: 2px;
	margin-bottom: 18px;
	margin-left: 5px
}

.form-item__rows__row__col__label span {
    font-size: 18px;
    font-weight: 1000;
}

.form-item--group .form-item__rows__row__col--80 {
	flex: 0 0 90px
}

.form-item--group .form-item__rows__row__col--110 {
	flex: 0 0 120px
}

.form-item--group .form-item__rows__row__col--120 {
	flex: 0 0 130px
}

.form-item--group .form-item__rows__row__col--140 {
	flex: 0 0 150px
}

.form-item--group .form-item__rows__row__col--160 {
	flex: 0 0 170px
}

.form-item--group .form-item__rows__row__col--180 {
	flex: 0 0 190px
}

.form-item--group .form-item__rows__row__col--200 {
	flex: 0 0 210px
}

.form-item--group .form-item__rows__row__col--240 {
	flex: 0 0 250px
}

.form-item--group .form-item__rows__row:first-child:before {
	padding-top: 30px
}

.form-item--group .form-item__rows__row:nth-last-child(2) {
	padding-bottom: 30px
}

.form-item--group .form-item__rows__row:not(:first-child) .form-item__rows__row__col__label {
	display: none
}

.form-item--group .form-item__rows__row+.form-item__rows__row {
	margin-top: 10px
}

.form-actions {
	margin-top: 20px
}

@media (max-width:1279px) {
	.form-item--group .form-item__rows__row {
		display: block;
		margin: 0;
		width: 780px;
		max-width: 100%
	}
	.form-item--group .form-item__rows__row:before {
		padding-left: 0;
		margin-bottom: 10px
	}
	.form-item--group .form-item__rows__row__col {
		padding: 0 0 10px
	}
	.form-item--group .form-item__rows__row__col__label {
		margin-bottom: 8px
	}
	.form-item--group .form-item__rows__row:first-child:before {
		padding-top: 0
	}
	.form-item--group .form-item__rows__row:not(:first-child) .form-item__rows__row__col__label {
		display: block
	}
}

@media (max-width:767px) {
	.form-row {
		display: block;
		margin: 0;
		max-width: 100%
	}
	.form-col {
		padding: 0 0 20px
	}
	.form-col:last-child {
		padding-bottom: 0
	}
	.form-col:not(:only-child) .form-item--checkbox {
		padding-top: 0
	}
	.form-item--checkbox-list>.form-item__input .form-item {
		flex-basis: 50%;
		max-width: 50%
	}
}

@media (max-width:479px) {
	.form-item--date>.form-item__input {
		display: block
	}
	.form-item--date>.form-item__input .form-item+.form-item {
		margin-top: 10px
	}
	.form-item--checkbox-list>.form-item__input {
		display: block;
		margin-left: 0;
		margin-bottom: 0
	}
	.form-item--checkbox-list>.form-item__input .form-item {
		max-width: none;
		padding-left: 0;
		margin-bottom: 0
	}
	.form-item--checkbox-list>.form-item__input .form-item+.form-item {
		margin-top: 20px
	}
}

.form-item__rows {
    overflow-x: scroll;
    white-space: nowrap
}

.page-name {
	font-family: var(--font-secondary);
	font-style: italic;
	font-weight: 400;
	font-size: 30px;
	line-height: 65%;
	color: var(--black);
	letter-spacing: -.1em;
	text-transform: uppercase;
	text-align: right
}

.page-logo img {
	display: block
}

.events-list {
	padding-bottom: 40px
}

.events-list__group__head {
	padding-bottom: 8px;
	border-bottom: 2px solid var(--grey)
}

.events-list__group__head h2 {
	font-weight: 700;
	font-size: 26px;
	line-height: 40px;
	letter-spacing: -.05em
}

.events-list__group+.events-list__group {
	margin-top: 25px
}

.events-list__item {
	display: flex;
	align-items: flex-start;
	margin-top: 20px
}

.events-list__item__dates {
	display: flex;
	align-items: center;
	flex: 0 0 110px;
	margin-right: 20px
}

.events-list__item__dates__from,
.events-list__item__dates__to {
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	line-height: 25px;
	flex: 0 0 50px
}

.events-list__item__dates__from small,
.events-list__item__dates__to small {
	display: block;
	font-size: 12px;
	line-height: 15px
}

.events-list__item__dates__to {
	margin-left: 10px;
	position: relative
}

.events-list__item__dates__to:before {
	content: "-";
	font-size: 14px;
	line-height: 16px;
	top: 50%;
	position: absolute;
	width: 10px;
	text-align: center;
	transform: translateY(-50%);
	right: 100%
}

.events-list__item__category {
	display: block;
	font-weight: 700;
	font-size: 10px;
	line-height: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 5px
}

.events-list__item__location {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px
}

.events-list__item__location:before {
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-weight: 400;
	content: "\f041";
	flex: 0 0 20px;
	text-align: center
}

.events-list__item__body {
	flex: 1
}

.events-list__item__body h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: -.05em;
	margin-bottom: 5px
}

.events-list__item__body h3 a {
	text-decoration: none
}

.events-list__item__flex {
    display: flex;
	align-items: flex-start
}

.events-list__item__flex + .events-list__item__flex {
    margin-top: 10px
}

.events-list__item__objective {
    flex: 0 0 100px;
    font-weight: 700;
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase
}

.events-list__item__details {
	flex: 0 0 330px;
	margin-left: 20px
}

.events-list__item__details__title {
	display: block;
	font-weight: 700;
	font-size: 10px;
	line-height: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 5px
}

.events-list__item__details__text {
	font-size: 14px;
	line-height: 15px
}

@media (max-width:767px) {
	.events-list {
		padding-bottom: 0
	}
	.events-list__item {
		display: block
	}
	.events-list__item__dates {
		margin-right: 0;
		margin-bottom: 10px
	}
	.events-list__item__details {
		margin-left: 0;
		margin-top: 10px
	}
}

.event-detail {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-left: -20px;
	margin-bottom: -40px
}

.event-detail__item {
	padding-left: 20px;
	margin-bottom: 30px;
	width: 100%
}

.event-detail__item h2 {
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 5px;
	color: var(--primary)
}

.event-detail__item__body {
	font-size: 15px;
	line-height: 20px
}

.event-detail__item__body a {
	color: var(--black)
}

.event-detail__item--50 {
	flex: 0 0 50%;
	max-width: 50%
}

@media (max-width:767px) {
	.event-detail {
		display: block;
		margin-left: 0;
		margin-bottom: 0
	}
	.event-detail__item {
		padding-left: 0;
		margin-bottom: 0
	}
	.event-detail__item--50 {
		max-width: none
	}
	.event-detail__item+.event-detail__item {
		margin-top: 20px
	}
}

.page-title {
	margin-bottom: 40px
}

.page-title h1 {
	font-size: 30px
}

.page-title h1,
.page-title h2 {
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -.05em
}

.page-title h2 {
	font-size: 20px
}

.filters .form-row {
	width: auto
}

.filters .form-col--actions .btn {
	width: 180px
}

@media (max-width:1023px) {
	.filters .form-col--380 {
		flex: 1
	}
}

.messages-list {
	margin-bottom: 40px
}

.messages-list .message+.message {
	margin-top: 10px
}

.message {
	display: flex;
	align-items: center;
	border: 3px solid var(--warning);
	border-radius: 3px;
	font-size: 14px;
	line-height: 20px;
	padding: 7px
}

.message:before {
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-weight: 400;
	content: "\f06a";
	color: var(--warning);
	margin-right: 20px;
	flex: 0 0 20px;
	text-align: center
}

.message--danger,
.message--success {
	color: var(--white);
	font-weight: 700;
	padding-top: 1px;
	padding-left: 1px;
	padding-bottom: 1px
}

.message--danger:before,
.message--success:before {
	flex: 0 0 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 3px;
	background: var(--white)
}

.message--danger {
	background: var(--danger);
	border-color: var(--danger)
}

.message--danger:before {
	content: "\f00d";
	color: var(--danger)
}

.message--success {
	background: var(--success);
	border-color: var(--success)
}

.message--success:before {
	content: "\f00c";
	color: var(--success)
}

.block {
	margin-top: 80px
}

.block__head {
	padding-bottom: 8px;
	border-bottom: 2px solid var(--grey)
}

.block__head h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	letter-spacing: -.05em
}

.block__body .files-list {
	margin-top: 20px
}

@media (max-width:767px) {
	.block {
		margin-top: 40px
	}
}

.table {
	border-collapse: separate
}

.table thead tr th {
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--primary);
	padding: 20px 10px 14px;
	text-align: left;
	border-bottom: 1px solid var(--grey)
}

.table thead tr th:first-child {
	padding-left: 0
}

.table thead tr th:last-child {
	padding-right: 0
}

.table tbody tr td {
	padding: 13px 10px 16px;
	font-size: 14px;
	line-height: 18px;
	border-bottom: 1px solid var(--grey)
}

.table tbody tr td:first-child {
	padding-left: 0
}

.table tbody tr td:last-child {
	padding-right: 0
}

.table--timetable tbody tr td:nth-child(2) {
	white-space: nowrap
}

.table-wrap {
	overflow: auto;
	max-width: 100%
}

.files-list__item {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 20px
}

.files-list__item i {
	flex: 0 0 20px;
	text-align: center;
	margin-right: 10px
}

.files-list__item a {
	color: var(--black);
	text-decoration: underline
}

.files-list__item a:hover {
	text-decoration: none
}

.files-list__item__details {
	margin-left: 10px;
	color: var(--grey-dk)
}

#ajax {
    vertical-align: middle;
}

.fileUpload {
  position: relative;
  overflow: hidden;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  text-decoration: underline;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.language_link {
color: var(--primary);
}


