/* General styles */

html,
body {
    height: 100%;
}

body {
    font: 13px 'Roboto', sans-serif;
    color: #333;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
}

input,
textarea,
select {
    font: inherit;
}

blockquote {
    margin: 0;
    padding-left: 1em;
    border-left: 2px solid #b2b2b2;
}

:focus {
    outline: 0;
}

::-moz-focus-inner {
    border: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*noinspection CssInvalidPseudoSelector*/
::-ms-clear {
    display: none;
}

/* Webkit scrollbar */

/*noinspection CssInvalidPseudoSelector*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/*noinspection CssInvalidPseudoSelector*/
::-webkit-scrollbar-track {
    background: #f8f8f8;
}

/*noinspection CssInvalidPseudoSelector*/
::-webkit-scrollbar-thumb {
    background: #aaa;
}

/*noinspection CssInvalidPseudoSelector*/
::-webkit-scrollbar-thumb:active {
    background: #888;
}

/*noinspection CssInvalidPseudoSelector*/
::-webkit-scrollbar-thumb:window-inactive {
    background: #ccc;
}

/*noinspection CssInvalidPseudoSelector*/
::-webkit-scrollbar-corner {
    background: #f8f8f8;
}

/* Common page styles */

/* Paging navigator with pages and without additional container */

.paging-navigator {
    font-size: 0;
    text-align: center;
    display: table;
    table-layout: fixed;
    margin: 0 auto;
    padding: 0 8px;
}

.paging-navigator > * {
    display: table-cell;
    vertical-align: top;
    border: 1px solid #ccc;
    border-left-width: 0;
    min-width: 32px;
}

.paging-navigator > :first-child {
    border-left-width: 1px;
    border-radius: 2px 0 0 2px;
}

.paging-navigator > :last-child {
    border-radius: 0 2px 2px 0;
}

.first-paging-navigator {
    margin-top: 8px;
    margin-bottom: 8px;
}

.last-paging-navigator {
    margin-top: 8px;
}

.paging-navigator a {
    text-decoration: none;
}

.paging-navigator > .additionalContainer {
    display: none;
}

.paging-navigator .prev,
.paging-navigator .next {
    display: none;
}

.paging-navigator .first a,
.paging-navigator .prev a,
.paging-navigator .next a,
.paging-navigator .last a {
    display: block;
    width: 100%;
    height: 26px;
    background: #fff center no-repeat;
    background-size: auto 12px;
}

.paging-navigator .goto > a {
    display: block;
    width: 100%;
    height: 26px;
    line-height: 26px;
    background: #fff;
    font-size: 13px;
    padding: 0 8px;
}

.paging-navigator .first a:hover,
.paging-navigator .prev a:hover,
.paging-navigator .next a:hover,
.paging-navigator .last a:hover,
.paging-navigator .goto a:hover {
    background-color: #eee;
}

.paging-navigator .first a:active,
.paging-navigator .prev a:active,
.paging-navigator .next a:active,
.paging-navigator .last a:active,
.paging-navigator .goto a:active {
    background-color: #eee;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.paging-navigator .first a {
    background-image: url('../images/navigation/nav-double-left-ver-F8C048B33E0822C49B624A03DC37B295.svg');
}

.paging-navigator .prev a {
    background-image: url('../images/navigation/nav-left-ver-A4CE78C3F90C54DB9EF690F4D44022EB.svg');
}

.paging-navigator .next a {
    background-image: url('../images/navigation/nav-right-ver-AB48FB91A79C2D1851BE5185A7360C66.svg');
}

.paging-navigator .last a {
    background-image: url('../images/navigation/nav-double-right-ver-53C83133B4EB3883C271A555D70DA3D9.svg');
}

.paging-navigator .first a[disabled='disabled'],
.paging-navigator .prev a[disabled='disabled'],
.paging-navigator .next a[disabled='disabled'],
.paging-navigator .last a[disabled='disabled'] {
    opacity: 0.4;
    background-color: #ddd;
}

.paging-navigator .goto a[disabled='disabled'] {
    background: #ddd;
}

.paging-navigator .first a[disabled='disabled']:hover,
.paging-navigator .prev a[disabled='disabled']:hover,
.paging-navigator .next a[disabled='disabled']:hover,
.paging-navigator .last a[disabled='disabled']:hover {
    background-color: #ddd;
}

.paging-navigator .first a[disabled='disabled']:active,
.paging-navigator .prev a[disabled='disabled']:active,
.paging-navigator .next a[disabled='disabled']:active,
.paging-navigator .last a[disabled='disabled']:active {
    background-color: #ddd;
    box-shadow: none;
}

.paging-navigator .goto a[disabled='disabled']:active {
    box-shadow: none;
}

/* Pageable count combobox */

.pageable-count-combobox {
    width: 170px;
}

.pageable-count-combobox > label {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.pageable-count-combobox > label > div {
    display: table-cell;
    vertical-align: middle;
}

.pageable-count-combobox > label > .form-component-title {
    width: 110px;
}

/* Wicket ajax indicator */

.wicket-ajax-indicator {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    opacity: 0.4;
    background: #fff url('../images/loader-ver-580809DB6872E302829D27120469C4EA.gif') center no-repeat;
    animation: indicator-fade-in 0.4s;
}

.wicket-ajax-indicator img {
    display: none;
}

/*
 * Form components
 */

/* Default buttons */

.east-buttons-panel > div {
    display: flex;
    justify-content: end;
}

.east-buttons-panel > div > div:not(:last-child) {
    margin-right: 5px;
}

.default-button,
.primary-button,
.middle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 25px;
    line-height: 23px;
    padding: 0 8px;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.1s ease;
}

.middle-button {
    min-width: max-content;

}

.middle-button a {
    text-decoration: none;
}

a.default-button,
a.primary-button,
a.middle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.default-button:active,
.primary-button:active,
.middle-button:active {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.default-button {
    color: #333;
    border: none;
}

.default-button:hover {
    background: #e8e8e8;
}

.default-button:active {
    background: #f8f8f8;
}

a.default-button {
    text-decoration: underline #ccc;
    text-underline-offset: 3px;
}

.primary-button {
    color: #fff;
    border-color: #0e9992;
    background: #0fa69e;
}

.primary-button:hover {
    background: #11bfb6;
}

.primary-button:active {
    background: #0fa69e;
}

/* Add button */

.add-button {
    display: inline-block;
}

.add-button > a {
    display: block;
    text-decoration: none;
    font-weight: bold;
    min-height: 16px;
    padding-left: 20px;
    color: #0e9992;
    background: url('../images/plus-accent-ver-C5330B1EC91001D5AB97FCE65D9BCA72.svg') left center no-repeat;
    background-size: 16px 16px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
select,
textarea {
    border: 1px solid #ccc;
    background-color: #fff;
    transition: border 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
select {
    height: 25px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
select {
    padding: 0 4px;
    line-height: 25px;
}

textarea {
    padding: 4px;
    resize: vertical;
}

input[type='checkbox'] {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='password']:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(19, 216, 206, 0.3);
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #e1e1e1;
    opacity: 0.8;
}

/* Form component */

/* Hidden element */

.form-component-hidden {
    display: none;
}

/* One line layout */

.form-component {
    margin-bottom: 8px;
}

.form-component > label {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 25px;
}

.form-component > label > .form-component-title {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    width: 100px;
    padding-right: 8px;
    word-wrap: break-word;
}

.form-component > label > .form-component-editor {
    display: table-cell;
    vertical-align: middle;
}

.form-component > label > .form-component-reset {
    display: table-cell;
    vertical-align: middle;
    width: 25px;
    background: url('../images/erase-ver-769100DF9B69B4291381BAB9AFE2F667.svg') center no-repeat;
    background-size: 12px 12px;
}

.form-component input[type='text'],
.form-component input[type='tel'],
.form-component input[type='email'],
.form-component input[type='password'],
.form-component textarea,
.form-component select {
    width: 100%;
    display: block;
}

/* Two lines layout */

.form-component.stack {
    display: block;
}

.form-component.stack > label > .form-component-title {
    display: block;
    width: auto;
    margin-bottom: 4px;
}

.form-component.stack > label > .form-component-editor {
    display: block;
}

/* Buttons panel */

.buttons-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 16px;
    text-align: center;
}

.buttons-panel > div{
    display: flex;
    align-items: center;
}

.buttons-panel > div > * {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 4px;
}

.buttons-panel > div > :first-child {
    margin-left: 0;
}

.buttons-panel-full-margin {
    margin: 16px 0;
}

.buttons-panel .wicket-ajax-indicator {
    position: absolute;
    left: 0;
    top: 4px;
}

/* Visually disabled state */

.form-component-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

/* Checkbox form component */

.search-form-component.checkbox-view > label {
    margin-left: 140px;
}

/* Form components validation */

.form-component.invalid input[type='text'],
.form-component.invalid input[type='tel'],
.form-component.invalid input[type='email'],
.form-component.invalid input[type='password'],
.form-component.invalid textarea {
    border-bottom-color: #d8131d;
}

.form-component.invalid input[type='checkbox'] + label {
    color: #d8131d;
}

/* Checkbox form component */

.checkbox-view {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-view > input {
    opacity: 0;
    width: 14px;
    height: 14px;
    position: absolute;
}

.checkbox-view > label > .checker {
    position: relative;
    display: inline-block;
    top: 2px;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    background: #fff;
    transition: 0.1s border, 0.1s box-shadow;
}

.checkbox-view > label > span {
    vertical-align: top;
    color: #333;
    margin-left: 4px;
}

.checkbox-view > input:focus + label > .checker {
    box-shadow: 0 0 0 2px rgba(19, 216, 206, 0.3);
}

.checkbox-view > input + label > .checker:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 16px;
    height: 16px;
    background: url('../images/check-ver-5E41E61093F69522F527FB5D8B295623.svg') center no-repeat;
    background-size: 16px;
    opacity: 0;
    transition: 0.1s opacity;
}

.checkbox-view > input:checked + label > .checker:before {
    opacity: 1;
}

.checkbox-view > input:disabled + label > .checker {
    background-color: #e1e1e1;
    opacity: 0.8;
}

/* Styled checkbox */

.styled-checkbox {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.styled-checkbox .styled-checkbox-check {
    position: relative;
    display: inline-block;
    top: 2px;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    background: #fff;
    transition: 0.4s border, 0.4s box-shadow;
}

.styled-checkbox .styled-checkbox-label {
    display: inline;
    vertical-align: middle;
    color: #333;
    margin-left: 4px;
}

.styled-checkbox > input {
    opacity: 0;
    width: 14px;
    height: 14px;
    position: absolute;
}

.styled-checkbox > input:focus + .styled-checkbox-check {
    box-shadow: 0 0 0 2px rgba(19, 216, 206, 0.3);
}

.styled-checkbox > input + .styled-checkbox-check:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 16px;
    height: 16px;
    background: url('../images/check-ver-5E41E61093F69522F527FB5D8B295623.svg') center no-repeat;
    background-size: 16px;
    opacity: 0;
    transition: 0.1s opacity;
}

.styled-checkbox > input:checked + .styled-checkbox-check:before {
    opacity: 1;
}

.styled-checkbox > input:disabled + .styled-checkbox-check {
    background-color: #e1e1e1;
    opacity: 0.8;
}

/* Radiobutton form component */

.radiobutton-view {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radiobutton-view > input {
    opacity: 0;
    width: 14px;
    height: 14px;
    position: absolute;
}

.radiobutton-view > label > .checker {
    position: relative;
    display: inline-block;
    top: 2px;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    border-radius: 7px;
    background: #fff;
    transition: 0.1s border, 0.1s box-shadow;
}

.radiobutton-view > label > span {
    vertical-align: top;
    color: #333;
    margin-left: 4px;
}

.radiobutton-view > input:focus + label > .checker {
    box-shadow: 0 0 0 2px rgba(19, 216, 206, 0.3);
}

.radiobutton-view > input + label > .checker:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #0e9992;
    opacity: 0;
    transition: 0.1s opacity;
}

.radiobutton-view > input:checked + label > .checker:before {
    opacity: 1;
}

.radiobutton-view > input:disabled + label > .checker {
    background-color: #e1e1e1;
    opacity: 0.8;
}

/*
 * Combobox form component
 */

/* Combobox panel */

.combobox .attribute-editor-combobox {
    position: relative;
    cursor: default;
    color: #000;
}

/* Combobox field */

.combobox .mz-ul {
    list-style: none;
    min-height: 25px; /* Height of the component */
    margin: 0;
    padding-left: 6px;
    padding-right: 25px; /* Width of the arrow button */
    border: 1px solid #ccc;
    background: #fff;
    transition: border 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
}

.combobox .attribute-editor-combobox.focused .mz-ul {
    box-shadow: 0 0 0 2px rgba(19, 216, 206, 0.3);
}

.combobox .show-choices {
    font-size: inherit;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: url('../images/navigation/nav-down-ver-6E732241BAB54368B216076C963B94F9.svg') center no-repeat;
    background-size: 16px auto;
}

.combobox .mz-choice {
    display: block;
    line-height: 23px;
    margin: 0;
    padding: 0;
    cursor: default;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Combobox field for multiline selection */

.combobox--multiselect .mz-ul {
    font-size: 0;
    padding-left: 1px;
    padding-bottom: 1px;
}

.combobox--multiselect .mz-ul > li {
    display: inline-block;
    font-size: 11px;
    min-height: 21px;
    line-height: 19px;
}

.combobox--multiselect .mz-choice {
    font-size: 11px;
    border: 1px solid #ccc;
    margin: 1px 1px 0 0;
    padding: 0 18px 0 6px;
    background: #f1f1f1;
    white-space: normal;
}

.combobox--multiselect .remove-choice {
    position: absolute;
    display: block;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    background: url('../images/close-ver-759B1BC06B5713ACA0909DA25C57FF0D.svg') center no-repeat;
    background-size: 8px 8px;
}

/* Combobox dropdown list */

.combobox .panelPopup {
    border: 1px solid #ccc;
    border-top: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.combobox .content-container {
    max-height: 320px;
    overflow: auto;
}

.combobox .panelPopup .item {
    padding: 3px 6px;
}

.combobox .panelPopup .item:hover {
    background: #e1e1e1;
}

/* Combobox dropdown list multiselect */

.combobox--multiselect .panelPopup .content-container .item {
    position: relative;
    padding: 4px 4px 4px 30px;
}

.combobox--multiselect .panelPopup .content-container .item:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    background: #fff;
}

.combobox--multiselect .panelPopup .content-container .item:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
}

.combobox--multiselect .panelPopup .content-container .item.selected:after {
    background-image: url('../images/check-ver-5E41E61093F69522F527FB5D8B295623.svg');
}

/*
 * Date field input
 */

.date-field {
    padding-left: 4px;
    padding-right: 23px;
    background: #ffffff url('../images/calendar-ver-AFCC8455676FE3FEA7EB6964AF82CE7C.svg') right 3px center no-repeat;
    background-size: 16px 16px;
}

/* Feedback panel */

.feedbackPanel {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    font-size: 11px;
}

.feedbackPanelERROR {
    color: #d8131d;
    display: block;
    margin: 5px 0;
}

.form-feedback-label {
    color: #d8131d;
    font-size: 11px;
    margin: 10px 0;
}

.form-feedback-label--auth-totp {
    margin-left: 0 !important;
}

/* Message box of error pages */

.error-view {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    background: #fff;
}

.error-view .collapsible-layout-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    cursor: pointer;
    overflow: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.error-description {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
}

.error-view .collapsible-layout-content {
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    bottom: 0;
    border-top: 1px solid #ccc;
    overflow: auto;
}

.stack-trace-view pre {
    font: 14px Consolas, monospace;
    word-wrap: break-word;
    margin: 8px;
}

.error-view-button-container {
    text-align: center;
    margin-top: 8px;
}

/* Favorite button */

.favorite-button a {
    display: block;
    width: 16px;
    height: 16px;
    background: url('../images/favorite-add-ver-47CF370000114BA9FF52C9CE0A570059.svg') center no-repeat;
    background-size: 16px 16px;
}

.favorites-button-popup-wrapper {
    position: relative;
}

.favorites-button-popup {
    position: absolute;
    display: flex;
    top: 28px;
    right: 0;
    width: 280px;
    border: 1px solid #be1622;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    z-index: 99;
    overflow: hidden;
    font: 12px/1.4 'Tahoma', sans-serif;
    color: #626262;
}

.favorites-button-popup-right {
    position: absolute;
    display: flex;
    top: 28px;
    left: 0;
    width: 280px;
    border: 1px solid #be1622;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    z-index: 99;
    overflow: hidden;
    font: 12px/1.4 'Tahoma', sans-serif;
    color: #626262;
}

.favorites-button-popup-tree-holder {
    max-height: 440px;
    padding: 6px;
    overflow: auto;
}

.favorites-button-popup .data-tree .tree-node {
    display: flow-root;
    overflow: hidden;
}

.favorites-button-popup-right .data-tree .tree-node {
    display: flow-root;
    overflow: hidden;
}

.favorite-button.added a {
    background-image: url('../images/favorite-remove-ver-CB7134D8D002F8EB69DE50124B7D559B.svg');
}

.link-view {
    white-space: nowrap;
    overflow: hidden;
}

/* Dialog content */

.dialog-content {
    padding: 16px;
}

/* Qtip */

div.qtip-default-web {
    color: #a60f16;
    border: 2px solid #D87F84;
    background: #fff;
    font-size: 11px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    padding: 4px 8px;
    margin: 0 4px;
}

/* Crypt key indicator */

.default-crypt-key {
    height: 40px;
    margin-left: 100px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.default-crypt-key > span {
    display: block;
    line-height: 40px;
    padding-left: 22px;
}

.default-crypt-key > .connected {
    color: #0a736d;
    background: url('../images/encryption/key-accent-ver-7869FA7841ECD216C56CAB8794BBC64F.svg') left center no-repeat;
    background-size: 16px 16px;
}

.default-crypt-key > .disconnected {
    color: #444;
    background: url('../images/encryption/key-ver-588949DD48A4617DBB3B554F57D9E556.svg') left center no-repeat;
    background-size: 16px 16px;
}

/* Hiding element added by applet */

#deployJavaPlugin {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
}

/* Helper classes */

.helper-hidden {
    display: none;
}

/* Default lazy panel */

.default-lazy-panel.loading {
    position: relative;
    min-height: 32px;
}

.default-lazy-panel.loading:before {
    content: '';
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background: url('../images/loader-ver-580809DB6872E302829D27120469C4EA.gif') center no-repeat;
    background-size: 16px 16px;
}

/* Default pageable */

.default-pageable .pageable-content--loading .pageable-content {
    position: relative;
    min-height: 32px;
}

.default-pageable .pageable-content--loading .pageable-content:before {
    content: '';
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background: url('../images/loader-dark-ver-E65F610ED0F3699F680E9227E2A14354.svg') center no-repeat;
    background-size: 16px 16px;
    animation: loader-rotation 1s linear infinite;
}

.default-pageable .pageable-content > :not(:first-child) {
    margin-top: 12px;
}

/* Animation keyframes */

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes indicator-fade-in {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0.4;
    }
}

@keyframes zoom-y {
    0% {
        opacity: 0;
        transform: scale(1, 0.95);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes zoom {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slide-to-left {
    0% {
        opacity: 0;
        transform: translate(64px, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes slide-to-bottom {
    0% {
        opacity: 0;
        transform: translate(0, -25px);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Fonts */

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-regular-ver-65C636263C939570007BC4FC4673C062.eot');
    src: url('../fonts/roboto-regular-ver-65C636263C939570007BC4FC4673C062.eot') format('embedded-opentype'),
    url('../fonts/roboto-regular-ver-94CDAA8CD89C85D33BF20C831DC2D28E.woff2') format('woff2'),
    url('../fonts/roboto-regular-ver-ECDE059196CC73346806243C25E5705A.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-italic-ver-6645BA4463FE1FB124BD605A05CFCE06.eot');
    src: url('../fonts/roboto-italic-ver-6645BA4463FE1FB124BD605A05CFCE06.eot') format('embedded-opentype'),
    url('../fonts/roboto-italic-ver-82360DA0D1173CF880C203C77E863250.woff2') format('woff2'),
    url('../fonts/roboto-italic-ver-E418AC8BFC1C2715897C3AAEDF0910DB.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-bold-ver-B76224B9E87168B593C59956CC0C7D41.eot');
    src: url('../fonts/roboto-bold-ver-B76224B9E87168B593C59956CC0C7D41.eot') format('embedded-opentype'),
    url('../fonts/roboto-bold-ver-12974C4CF019B75BE582BB2B8B7FC277.woff2') format('woff2'),
    url('../fonts/roboto-bold-ver-41ED11A12CFB0051122AE87C158C6931.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-bolditalic-ver-02C6DC0B7D9F53578B7AE5C9F129D3D4.eot');
    src: url('../fonts/roboto-bolditalic-ver-02C6DC0B7D9F53578B7AE5C9F129D3D4.eot') format('embedded-opentype'),
    url('../fonts/roboto-bolditalic-ver-241E1FDA7D14FE60BB14B2CF52D03223.woff2') format('woff2'),
    url('../fonts/roboto-bolditalic-ver-46401B7D11A69A087D2005302C5298DC.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}