/*
	 jQuery Mosaic v0.15.2
	 https://github.com/tin-cat/jquery-mosaic
 */

 .jQueryMosaic {
	width: 100%;
	float: left;
	box-sizing: border-box;
	overflow: hidden;
}

.jQueryMosaic > div,
.jQueryMosaic > a,
.jQueryMosaic > img {
	float: left;
}

.jQueryMosaic > .item {
	position: relative;
}

.jQueryMosaic > .item.withImage {
	background-size: cover;
}

.jQueryMosaic > .item > .overlay {
	opacity: 0;
	position: absolute;
	left: 0px; right: 0px; top: 0px; bottom: 0px;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
}

.jQueryMosaic > .item:hover > .overlay {
	opacity: 1;
}

.jQueryMosaic > .item > .overlay > .texts {
	position: absolute;
	left: 0px; right: 0px; bottom: 0px;
	padding: 15pt;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
}

.jQueryMosaic > .item > .overlay > .texts h1,
.jQueryMosaic > .item > .overlay > .texts h2 {
	margin: 0;
	line-height: 1.3em;
}

.jQueryMosaic > .item > .overlay > .texts h1 {
	font-size: 17pt;
}

.jQueryMosaic > .item > .overlay > .texts h2 {
	font-size: 13pt;
}
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
@charset "UTF-8";
@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Regular.eot");
  src: url("../fonts/FoundersGrotesk-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/FoundersGrotesk-Regular.woff2") format("woff2"), url("../fonts/FoundersGrotesk-Regular.woff") format("woff"), url("../fonts/FoundersGrotesk-Regular.ttf") format("truetype"), url("../fonts/FoundersGrotesk-Regular.svg#FoundersGrotesk-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-LightItalic.eot");
  src: url("../fonts/FoundersGrotesk-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/FoundersGrotesk-LightItalic.woff2") format("woff2"), url("../fonts/FoundersGrotesk-LightItalic.woff") format("woff"), url("../fonts/FoundersGrotesk-LightItalic.ttf") format("truetype"), url("../fonts/FoundersGrotesk-LightItalic.svg#FoundersGrotesk-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Light.eot");
  src: url("../fonts/FoundersGrotesk-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/FoundersGrotesk-Light.woff2") format("woff2"), url("../fonts/FoundersGrotesk-Light.woff") format("woff"), url("../fonts/FoundersGrotesk-Light.ttf") format("truetype"), url("../fonts/FoundersGrotesk-Light.svg#FoundersGrotesk-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Semibold.eot");
  src: url("../fonts/FoundersGrotesk-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/FoundersGrotesk-Semibold.woff2") format("woff2"), url("../fonts/FoundersGrotesk-Semibold.woff") format("woff"), url("../fonts/FoundersGrotesk-Semibold.ttf") format("truetype"), url("../fonts/FoundersGrotesk-Semibold.svg#FoundersGrotesk-Semibold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/icomoon/icomoon.woff?jza70m");
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
  content: "\e901";
}

.icon-sorteable:before {
  content: "\e91c";
}

.icon-check:before {
  content: "\e900";
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

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

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

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

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

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > *, .row-cols-1 > *::after, .row-cols-1 > *::before {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > *, .row-cols-2 > *::after, .row-cols-2 > *::before {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > *, .row-cols-3 > *::after, .row-cols-3 > *::before {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > *, .row-cols-4 > *::after, .row-cols-4 > *::before {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > *, .row-cols-5 > *::after, .row-cols-5 > *::before {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > *, .row-cols-6 > *::after, .row-cols-6 > *::before {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > *, .row-cols-sm-1 > *::after, .row-cols-sm-1 > *::before {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > *, .row-cols-sm-2 > *::after, .row-cols-sm-2 > *::before {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > *, .row-cols-sm-3 > *::after, .row-cols-sm-3 > *::before {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > *, .row-cols-sm-4 > *::after, .row-cols-sm-4 > *::before {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > *, .row-cols-sm-5 > *::after, .row-cols-sm-5 > *::before {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > *, .row-cols-sm-6 > *::after, .row-cols-sm-6 > *::before {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > *, .row-cols-md-1 > *::after, .row-cols-md-1 > *::before {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > *, .row-cols-md-2 > *::after, .row-cols-md-2 > *::before {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > *, .row-cols-md-3 > *::after, .row-cols-md-3 > *::before {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > *, .row-cols-md-4 > *::after, .row-cols-md-4 > *::before {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > *, .row-cols-md-5 > *::after, .row-cols-md-5 > *::before {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > *, .row-cols-md-6 > *::after, .row-cols-md-6 > *::before {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > *, .row-cols-lg-1 > *::after, .row-cols-lg-1 > *::before {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > *, .row-cols-lg-2 > *::after, .row-cols-lg-2 > *::before {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > *, .row-cols-lg-3 > *::after, .row-cols-lg-3 > *::before {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > *, .row-cols-lg-4 > *::after, .row-cols-lg-4 > *::before {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > *, .row-cols-lg-5 > *::after, .row-cols-lg-5 > *::before {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > *, .row-cols-lg-6 > *::after, .row-cols-lg-6 > *::before {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > *, .row-cols-xl-1 > *::after, .row-cols-xl-1 > *::before {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > *, .row-cols-xl-2 > *::after, .row-cols-xl-2 > *::before {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > *, .row-cols-xl-3 > *::after, .row-cols-xl-3 > *::before {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > *, .row-cols-xl-4 > *::after, .row-cols-xl-4 > *::before {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > *, .row-cols-xl-5 > *::after, .row-cols-xl-5 > *::before {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > *, .row-cols-xl-6 > *::after, .row-cols-xl-6 > *::before {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > *, .modal-footer > *::after, .modal-footer > *::before {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.alert {
  font-size: 1rem;
  font-style: italic;
  padding-top: 15px;
  border-radius: 0;
}
.alert strong {
  font-style: normal;
}
.alert-secondary {
  background-color: #f3f3f3;
}

.dropdown-toggle {
  color: #00253E;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.dropdown-toggle::after {
  width: 10px;
  height: 10px;
  border: 0;
  background: transparent url(../images/icons/chevron-down.svg) no-repeat center;
  background-size: contain;
  margin-left: 10px;
  transform: translateY(-1px);
  vertical-align: middle;
}
.dropdown-menu {
  border-radius: 0;
  padding: 0;
}
.dropdown-item {
  padding: 15px 15px 10px;
}
.dropdown-divider {
  margin: 0;
}
.dropdown_user .dropdown-toggle {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.dropdown_user .dropdown-toggle::after {
  transform: translateY(0);
}
.dropdown_user .dropdown-toggle picture {
  width: 25px;
  border-radius: 50%;
  margin-right: 5px;
  overflow: hidden;
}
.dropdown_user .dropdown-toggle span {
  display: none;
  margin-top: 5px;
}
@media only screen and (min-width: 768px) {
  .dropdown_user .dropdown-toggle span {
    display: block;
  }
}
.dropdown_user .dropdown-menu {
  min-width: 300px;
  margin: 22px 0 0;
}
.dropdown_user_card {
  padding: 15px;
}
.dropdown_user_card_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  background: #f3f3f3;
}
.dropdown_user_card_wrap picture {
  flex: 0 0 32px;
  border-radius: 3px;
  overflow: hidden;
}
.dropdown_user_card_wrap p, .dropdown_user_card_wrap ol, .dropdown_user_card_wrap .list, .dropdown_user_card_wrap .activity_content ul, .activity_content .dropdown_user_card_wrap ul, .dropdown_user_card_wrap .p {
  flex: 0 0 calc(100% - 32px);
  font-size: 17px;
  padding-left: 10px;
  margin-top: 5px;
  margin-bottom: 0;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-edition .dropdown-toggle::after {
  background: transparent url(../images/icons/chevron-down-white.svg) no-repeat center;
  background-size: contain;
  margin-top: -10px;
}

@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1350px;
  }
}
@media only screen and (min-width: 1800px) {
  .container {
    max-width: 1500px;
  }
}

.modal {
  border-radius: 0;
}
.modal *, .modal *::after, .modal *::before {
  border-radius: 0;
}
.modal-content {
  border: 0;
}
.modal-body {
  padding: 0;
}
.modal-participation {
  pointer-events: none;
}
.modal-participation .modal-dialog {
  max-width: 580px;
}
.modal-jury .modal-dialog {
  max-width: 580px;
}
.modal-error {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.modal-error-content {
  display: none;
  position: sticky;
  width: 100%;
  top: 0px;
  left: 0;
  border-radius: 0px;
  z-index: 9999;
}
.modal-footer {
  position: sticky;
  width: 100%;
  bottom: 0;
  background: white;
}

.card {
  background: transparent;
  cursor: pointer;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  opacity: 0.85;
}
.card-body {
  padding: 1rem 0;
}
.card-body p, .card-body ol, .card-body .list, .card-body .activity_content ul, .activity_content .card-body ul, .card-body .p {
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.card-body h5 {
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.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-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

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

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

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

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

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

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

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

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-file-invoice-dollar:before {
  content: "\f571";
}

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

.fa-file-medical-alt:before {
  content: "\f478";
}

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

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

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

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

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

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

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

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

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

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

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

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

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

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

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

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

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

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

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

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.dropzone {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  align-items: initial;
  position: relative;
  width: 100%;
  min-height: 230px;
  background: #E6EAEA url(../images/contest/participation-placeholder.svg) no-repeat center;
  background-size: auto 50%;
  border: 0;
  padding: 0;
}
.dropzone .dz-message {
  color: #b7b7b7;
  font-size: 1rem;
  margin: 0 0 20px;
}
.dropzone .dz-preview {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
}
.dropzone .dz-preview.dz-image-preview {
  background: #E6EAEA;
}
.dropzone .dz-preview:not(.dz-processing) {
  position: relative;
  height: auto;
}
.dropzone .dz-preview:not(.dz-processing) .dz-image {
  display: block;
  position: relative;
  width: 100%;
  height: initial;
  border-radius: 0;
  background: #000;
}
.dropzone .dz-preview:not(.dz-processing) .dz-image::before {
  content: "";
  display: block;
  padding-top: 66.66666667%;
}
.dropzone .dz-preview:not(.dz-processing) .dz-image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.dropzone .dz-preview:not(.dz-processing) .dz-image img {
  transition: all 0.3s;
}
.dropzone .dz-preview .dz-details {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dropzone .dz-preview:hover:not(.dz-processing) .dz-image img {
  filter: none;
  opacity: 0.7;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner, button.mfp-close::-moz-focus-inner, button.mfp-arrow::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-bg {
  background: #F4F1EA;
  opacity: 1;
}
.mfp-close {
  display: none;
}
.mfp-content {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .mfp-content {
    padding: 0 35px;
  }
}
.mfp-figure::after {
  background: transparent;
  box-shadow: none;
}
.mfp-figure figure img.mfp-img {
  padding: 75px 0 150px;
}
.mfp-figure figure figcaption {
  bottom: 150px;
  padding: 30px 0;
  transform: translateY(100%);
}
.mfp-bottom-bar {
  position: initial;
  margin-top: 0;
}
.mfp-title {
  color: #00253E;
}
.mfp-title h3 {
  font-size: 2rem;
  margin-bottom: 0;
}
.mfp-title p, .mfp-title ol, .mfp-title .list, .mfp-title .activity_content ul, .activity_content .mfp-title ul, .mfp-title .p {
  font-size: 1.3rem;
  margin-bottom: 0;
}

button.mfp, button.mfp-close, button.mfp-arrow {
  display: block;
  width: 75px;
  height: auto;
  text-indent: -99999999px;
  margin: 0;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  button.mfp, button.mfp-close, button.mfp-arrow {
    width: 70px;
  }
}
button.mfp::before, button.mfp-close::before, button.mfp-arrow::before {
  content: "";
  position: relative;
  display: block;
  padding-top: 100%;
  border: 0;
  margin: 0;
}
button.mfp-arrow {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  transform: none;
}
button.mfp-arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
  margin: 0;
}
button.mfp-arrow:active {
  margin: 0;
}
button.mfp-arrow-left {
  transform: translateX(calc(-100% - 5px));
}
@media only screen and (min-width: 1200px) {
  button.mfp-arrow-left {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
  }
}
button.mfp-arrow-left::after {
  background: transparent url(../images/icons/icon-chevron-left.svg) no-repeat center;
  background-size: 25%;
}
@media only screen and (min-width: 1200px) {
  button.mfp-arrow-right {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }
}
button.mfp-arrow-right::after {
  background: transparent url(../images/icons/icon-chevron-right.svg) no-repeat center;
  background-size: 25%;
}
button.mfp-close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent url(../images/icons/icon-close.svg) no-repeat center;
  background-size: 35%;
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar, .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-blue {
  --swiper-pagination-color: #007bff;
}

.swiper-pagination-indigo {
  --swiper-pagination-color: #6610f2;
}

.swiper-pagination-purple {
  --swiper-pagination-color: #6f42c1;
}

.swiper-pagination-pink {
  --swiper-pagination-color: #e83e8c;
}

.swiper-pagination-red {
  --swiper-pagination-color: #dc3545;
}

.swiper-pagination-orange {
  --swiper-pagination-color: #fd7e14;
}

.swiper-pagination-yellow {
  --swiper-pagination-color: #ffc107;
}

.swiper-pagination-green {
  --swiper-pagination-color: #28a745;
}

.swiper-pagination-teal {
  --swiper-pagination-color: #20c997;
}

.swiper-pagination-cyan {
  --swiper-pagination-color: #17a2b8;
}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-gray {
  --swiper-pagination-color: #6c757d;
}

.swiper-pagination-gray-dark {
  --swiper-pagination-color: #343a40;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #fff;
}

:root {
  --tagify-dd-color-primary: rgb(53,149,246);
  --tagify-dd-bg-color: white;
  --tagify-dd-item-pad: .3em .5em;
}

.tagify {
  --tags-disabled-bg: #F1F1F1;
  --tags-border-color: #DDD;
  --tags-hover-border-color: #CCC;
  --tags-focus-border-color: #00253E;
  --tag-border-radius: 3px;
  --tag-bg: #00253E;
  --tag-hover: #D3E2E2;
  --tag-text-color: #fff;
  --tag-text-color--edit: black;
  --tag-pad: 0.3em 0.5em;
  --tag-inset-shadow-size: 1.1em;
  --tag-invalid-color: #D39494;
  --tag-invalid-bg: rgba(211, 148, 148, 0.5);
  --tag-remove-bg: rgba(211, 148, 148, 0.3);
  --tag-remove-btn-color: #fff;
  --tag-remove-btn-bg: none;
  --tag-remove-btn-bg--hover: #c77777;
  --input-color: #495057;
  --tag--min-width: 1ch;
  --tag--max-width: auto;
  --tag-hide-transition: 0.3s;
  --placeholder-color: #00253E;
  --placeholder-color-focus: #00253E;
  --loader-size: .8em;
  --readonly-striped: 1;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid var(--tags-border-color);
  padding: 0;
  line-height: 0;
  cursor: text;
  outline: none;
  position: relative;
  box-sizing: border-box;
  transition: 0.1s;
}
@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}
@keyframes rotateLoader {
  to {
    transform: rotate(1turn);
  }
}
.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
  --tags-border-color: var(--tags-hover-border-color);
}
.tagify[disabled] {
  background: var(--tags-disabled-bg);
  filter: saturate(0);
  opacity: 0.5;
  pointer-events: none;
}
.tagify[readonly].tagify--select, .tagify[disabled].tagify--select {
  pointer-events: none;
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select), .tagify[disabled]:not(.tagify--mix):not(.tagify--select) {
  cursor: default;
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) > .tagify__input, .tagify[disabled]:not(.tagify--mix):not(.tagify--select) > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div, .tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div {
  padding: var(--tag-pad);
}
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before, .tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}
@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify[readonly] .tagify__tag__removeBtn, .tagify[disabled] .tagify__tag__removeBtn {
  display: none;
}
.tagify--loading .tagify__input > br:last-child {
  display: none;
}
.tagify--loading .tagify__input::before {
  content: none;
}
.tagify--loading .tagify__input::after {
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #EEE #BBB #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  content: "" !important;
  margin: -2px 0 -2px 0.5em;
}
.tagify--loading .tagify__input:empty::after {
  margin-left: 0;
}
.tagify + input,
.tagify + textarea {
  position: absolute !important;
  left: -9999em !important;
  transform: scale(0) !important;
}
.tagify__tag {
  display: inline-flex;
  align-items: center;
  margin: 5px 0 5px 5px;
  position: relative;
  z-index: 1;
  outline: none;
  line-height: normal;
  cursor: default;
  transition: 0.13s ease-out;
}
.tagify__tag > div {
  vertical-align: top;
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--tag-pad);
  color: var(--tag-text-color);
  line-height: inherit;
  border-radius: var(--tag-border-radius);
  white-space: nowrap;
  transition: 0.13s ease-out;
}
.tagify__tag > div > *, .tagify__tag > div > *::after, .tagify__tag > div > *::before {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: var(--tag--min-width);
  max-width: var(--tag--max-width);
  transition: 0.8s ease, 0.1s color;
}
.tagify__tag > div > *[contenteditable], .tagify__tag > div > [contenteditable]::after, .tagify__tag > div > [contenteditable]::before {
  outline: none;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  cursor: text;
  margin: -2px;
  padding: 2px;
  max-width: 350px;
}
.tagify__tag > div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: tags--bump 0.3s ease-out 1;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
}
.tagify__tag:hover:not([readonly]) div::before, .tagify__tag:focus div::before {
  --tag-bg-inset: -2.5px;
  --tag-bg: var(--tag-hover);
}
.tagify__tag--loading {
  pointer-events: none;
}
.tagify__tag--loading .tagify__tag__removeBtn {
  display: none;
}
.tagify__tag--loading::after {
  --loader-size: .4em;
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #EEE #BBB #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  margin: 0 0.5em 0 -0.1em;
}
.tagify__tag--flash div::before {
  animation: none;
}
.tagify__tag--hide {
  width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: var(--tag-hide-transition);
  pointer-events: none;
}
.tagify__tag--hide > div > *, .tagify__tag--hide > div > *::after, .tagify__tag--hide > div > *::before {
  white-space: nowrap;
}
.tagify__tag.tagify--noAnim > div::before {
  animation: none;
}
.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div > span {
  opacity: 0.5;
}
.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before {
  --tag-bg: var(--tag-invalid-bg);
  transition: 0.2s;
}
.tagify__tag[readonly] .tagify__tag__removeBtn {
  display: none;
}
.tagify__tag[readonly] > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}
@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify__tag--editable > div {
  color: var(--tag-text-color--edit);
}
.tagify__tag--editable > div::before {
  box-shadow: 0 0 0 2px var(--tag-hover) inset !important;
}
.tagify__tag--editable > .tagify__tag__removeBtn {
  pointer-events: none;
}
.tagify__tag--editable > .tagify__tag__removeBtn::after {
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}
.tagify__tag--editable.tagify--invalid > div::before {
  box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important;
}
.tagify__tag__removeBtn {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font: 14px/1 Arial;
  background: var(--tag-remove-btn-bg);
  color: var(--tag-remove-btn-color);
  width: 14px;
  height: 14px;
  margin-right: 4.6666666667px;
  margin-left: auto;
  overflow: hidden;
  transition: 0.2s ease-out;
}
.tagify__tag__removeBtn::after {
  content: "×";
  transition: 0.3s, color 0s;
}
.tagify__tag__removeBtn:hover {
  color: white;
  background: var(--tag-remove-btn-bg--hover);
}
.tagify__tag__removeBtn:hover + div > span {
  opacity: 0.5;
}
.tagify__tag__removeBtn:hover + div::before {
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, rgba(211, 148, 148, 0.3)) inset !important;
  transition: box-shadow 0.2s;
}
.tagify:not(.tagify--mix) .tagify__input br {
  display: none;
}
.tagify:not(.tagify--mix) .tagify__input *, .tagify:not(.tagify--mix) .tagify__input *::after, .tagify:not(.tagify--mix) .tagify__input *::before {
  display: inline;
  white-space: nowrap;
}
.tagify__input {
  flex-grow: 1;
  display: inline-block;
  min-width: 110px;
  margin: 5px;
  padding: var(--tag-pad);
  line-height: normal;
  position: relative;
  white-space: pre-wrap;
  color: var(--input-color);
  box-sizing: inherit;
  /* Seems firefox newer versions don't need this any more
  @supports ( -moz-appearance:none ){
      &::before{
          line-height: inherit;
          position:relative;
      }
  }
  */
}
@-moz-document url-prefix() {}
.tagify__input:empty::before {
  position: static;
}
.tagify__input:focus {
  outline: none;
}
.tagify__input:focus::before {
  transition: 0.2s ease-out;
  opacity: 0;
  transform: translatex(6px);
  /* ALL MS BROWSERS: hide placeholder (on focus) otherwise the caret is placed after it, which is weird */
  /* IE Edge 12+ CSS styles go here */
}
@supports (-ms-ime-align: auto) {
  .tagify__input:focus::before {
    display: none;
  }
}
.tagify__input:focus:empty::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  color: #00253E;
  color: var(--placeholder-color-focus);
}
@-moz-document url-prefix() {
  .tagify__input:focus:empty::after {
    display: none;
  }
}
.tagify__input::before {
  content: attr(data-placeholder);
  height: 1em;
  line-height: 1em;
  margin: auto 0;
  z-index: 1;
  color: var(--placeholder-color);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
.tagify__input::after {
  content: attr(data-suggest);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  min-width: calc(100% - 1.5em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre; /* allows spaces at the beginning */
  color: var(--tag-text-color);
  opacity: 0.3;
  pointer-events: none;
  max-width: 100px;
}
.tagify__input .tagify__tag {
  margin: 0 1px;
}
.tagify--mix {
  display: block;
}
.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  display: block;
}
.tagify--mix .tagify__input::before {
  height: auto;
  display: none;
  line-height: inherit;
}
.tagify--mix .tagify__input::after {
  content: none;
}
.tagify--select::after {
  content: ">";
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font: 16px monospace;
  line-height: 8px;
  height: 8px;
  pointer-events: none;
  transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
  transition: 0.2s ease-in-out;
}
.tagify--select[aria-expanded=true]::after {
  transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2);
}
.tagify--select .tagify__tag {
  position: absolute;
  top: 0;
  right: 1.8em;
  bottom: 0;
}
.tagify--select .tagify__tag div {
  display: none;
}
.tagify--select .tagify__input {
  width: 100%;
}
.tagify--empty .tagify__input::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  display: inline-block;
  width: auto;
}
.tagify--mix .tagify--empty .tagify__input::before {
  display: inline-block;
}
.tagify--focus {
  --tags-border-color: var(--tags-focus-border-color);
  transition: 0s;
}
.tagify--invalid {
  --tags-border-color: #D39494;
}
.tagify__dropdown {
  position: absolute;
  z-index: 9999;
  transform: translateY(1px);
  overflow: hidden;
}
.tagify__dropdown[placement=top] {
  margin-top: 0;
  transform: translateY(-100%);
}
.tagify__dropdown[placement=top] .tagify__dropdown__wrapper {
  border-top-width: 1.1px;
  border-bottom-width: 0;
}
.tagify__dropdown[position=text] {
  box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), 0.1);
  font-size: 0.9em;
}
.tagify__dropdown[position=text] .tagify__dropdown__wrapper {
  border-width: 1px;
}
.tagify__dropdown__wrapper {
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: var(--tagify-dd-bg-color);
  border: 1px solid;
  border-color: var(--tagify-dd-color-primary);
  border-bottom-width: 1.5px;
  border-top-width: 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  transition: 0.25s cubic-bezier(0, 1, 0.5, 1);
}
.tagify__dropdown__header:empty {
  display: none;
}
.tagify__dropdown__footer {
  display: inline-block;
  margin-top: 0.5em;
  padding: var(--tagify-dd-item-pad);
  font-size: 0.7em;
  font-style: italic;
  opacity: 0.5;
}
.tagify__dropdown__footer:empty {
  display: none;
}
.tagify__dropdown--initial .tagify__dropdown__wrapper {
  max-height: 20px;
  transform: translateY(-1em);
}
.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper {
  transform: translateY(2em);
}
.tagify__dropdown__item {
  box-sizing: border-box;
  padding: var(--tagify-dd-item-pad);
  margin: 1px;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  outline: none;
  max-height: 60px;
  max-width: 100%;
  /* custom hidden transition effect is needed for horizontal-layout suggestions */
}
.tagify__dropdown__item--active {
  background: var(--tagify-dd-color-primary);
  color: white;
}
.tagify__dropdown__item:active {
  filter: brightness(105%);
}
.tagify__dropdown__item--hidden {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 1px;
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--tagify-dd-item--hidden-duration, 0.3s) !important;
}
.tagify__dropdown__item--hidden > *, .tagify__dropdown__item--hidden > *::after, .tagify__dropdown__item--hidden > *::before {
  transform: translateY(-100%);
  opacity: 0;
  transition: inherit;
}

.tagify__input {
  font-size: 1rem;
  font-style: italic;
  padding: 15px 10px 10px;
  margin: 0;
}
.tagify__input::before {
  color: #b7b7b7;
}
.tagify__tag > div {
  padding: 10px 10px 5px;
}
.tagify__tag > div::before {
  background: #00253E;
}
.tagify__tag:hover:not([readonly]) div::before, .tagify__tag:focus div::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: none;
  background: #00253E;
}

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

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

*, *::after, *::before {
  box-sizing: border-box;
  font-variant-ligatures: normal;
}
body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

strong {
  font-weight: 700;
}

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

button, button.mfp-arrow, button.mfp-close {
  color: #007bff;
  background: transparent;
  border: 0;
  padding: 0;
  outline: 0;
}
button:active, button:focus, button:hover {
  outline: 0;
}

html {
  scroll-padding-top: 200px;
}
html *, html *::after, html *::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #111111;
  font-size: 14px;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
}

#page-content {
  min-height: 100vh;
}

body:not([data-path=home]) #page-content {
  padding-top: 71px;
}
@media only screen and (min-width: 768px) {
  body:not([data-path=home]) #page-content {
    padding-top: 70.56px;
  }
}
@media only screen and (min-width: 1200px) {
  body:not([data-path=home]) #page-content {
    min-height: calc(100vh - 77px);
    padding-top: 61px;
  }
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1, .h1 {
  font-size: 3rem;
}
@media only screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1440px) {
  h1, .h1 {
    font-size: 4.3rem;
  }
}

h2, .h2 {
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  h2, .h2 {
    font-size: 3.3rem;
  }
}
@media only screen and (min-width: 1440px) {
  h2, .h2 {
    font-size: 3.5rem;
  }
}

h3, .h3 {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  h3, .h3 {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1440px) {
  h3, .h3 {
    font-size: 3rem;
  }
}

h4, .h4 {
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  h4, .h4 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1440px) {
  h4, .h4 {
    font-size: 2.4rem;
  }
}

h5, .h5 {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  h5, .h5 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1440px) {
  h5, .h5 {
    font-size: 2rem;
  }
}

h6, .h6 {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  h6, .h6 {
    font-size: 1.4rem;
  }
}

.title {
  font-weight: bold;
  text-transform: uppercase;
}

p, ol, .list, .activity_content ul, .p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  p, ol, .list, .activity_content ul, .p {
    font-size: 1.5rem;
  }
}
p.prominent, ol.prominent, .prominent.list, .activity_content ul.prominent, .prominent.p {
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  p.prominent, ol.prominent, .prominent.list, .activity_content ul.prominent, .prominent.p {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  p.prominent, ol.prominent, .prominent.list, .activity_content ul.prominent, .prominent.p {
    font-size: 2.75rem;
  }
}
p.discreet, ol.discreet, .discreet.list, .activity_content ul.discreet, .discreet.p {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  p.discreet, ol.discreet, .discreet.list, .activity_content ul.discreet, .discreet.p {
    font-size: 1.2rem;
  }
}

.p_small {
  font-size: 1.15rem;
}

.list li, .activity_content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.list li::before, .activity_content ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: -30px;
  font-size: 5rem;
}

ol {
  padding-left: 25px;
}
@media only screen and (min-width: 768px) {
  ol {
    padding-left: 50px;
  }
}
ol li {
  position: relative;
  margin-bottom: 20px;
  counter-increment: li;
}
ol li::before {
  content: counter(li) ".";
  position: absolute;
  left: -15px;
  transform: translateX(-100%);
}
@media only screen and (min-width: 768px) {
  ol li::before {
    left: -30px;
  }
}
ol.margin-10 li {
  margin-bottom: 10px;
}

a {
  color: #00253E;
  text-decoration: none;
}
a:hover {
  color: #00253E;
  text-decoration: underline;
}
a span {
  text-decoration: inherit;
}
a.accent {
  color: #FF6633;
  text-decoration: underline;
}
a.accent:hover {
  color: #D93800;
}
a.brand {
  color: #00253E;
  text-decoration: underline;
}
a.brand:hover {
  color: #0C395A;
}
a.white {
  color: #fff;
  text-decoration: underline;
}

blockquote {
  position: relative;
  color: #FF6633;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 30px 0;
}
@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 2rem;
  }
}

small {
  font-size: 1rem;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) {
  small {
    font-size: 0.85rem;
  }
}
small a {
  font-weight: bold;
  text-decoration: underline;
}

sup {
  font-size: 65%;
}

picture,
figure {
  display: block;
}

img, video {
  display: block;
  width: 100%;
}

b-container {
  display: block;
}

.bg_accent {
  color: #fff;
  background: #FF6633;
}
.bg_alt {
  color: #00253E;
  background: #F4F1EA;
}
.bg_brand {
  color: #fff;
  background: #00253E;
}
.bg_white {
  color: #00253E;
  background: #fff;
}

.button, .pagination > div a {
  display: inline-block;
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 16px 50px;
  box-shadow: none;
  outline: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.button_block {
  display: block;
  width: 100%;
}
.button_xsmall {
  padding: 9px 15px;
}
.button_small {
  padding: 9px 25px;
}
.button_medium {
  padding: 13px 35px;
}
.button_large {
  padding: 13px 50px;
}
.button_xlarge {
  padding: 16px 60px;
}
.button_brand {
  color: #fff;
  border-color: #00253E;
  background: #00253E;
}
.button_brand:hover {
  color: #fff;
  border-color: #0C395A;
  background: #0C395A;
}
.button_brand_o {
  color: #00253E;
  background: transparent;
  border-color: #00253E;
}
.button_brand_o:hover {
  color: #fff;
  border-color: #00253E;
  background: #00253E;
}
.button_accent {
  color: #fff;
  border-color: #FF6633;
  background: #FF6633;
}
.button_accent:hover {
  color: #fff;
  border-color: #D93800;
  background: #D93800;
}
.button_accent_o {
  color: #FF6633;
  background: transparent;
  border-color: #FF6633;
}
.button_accent_o:hover {
  color: #fff;
  border-color: #FF6633;
  background: #FF6633;
}
.button_white {
  color: #00253E;
  border-color: #fff;
  background: #fff;
}
.button_white:hover {
  color: #00253E;
  border-color: #e9e9e9;
  background: #e9e9e9;
}
.button_white_o {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.button_white_o:hover {
  color: #00253E;
  border-color: #fff;
  background: #fff;
}
.button_white_link {
  color: #fff;
  background: transparent;
  border-color: transparent;
}
.button_white_link:hover {
  color: #00253E;
  border-color: #fff;
  background: #fff;
}
.button_danger {
  color: #fff;
  border-color: #F85353;
  background: #F85353;
}
.button_danger:hover {
  color: #fff;
  border-color: #d14242;
  background: #d14242;
}
.button_danger_o {
  color: #F85353;
  background: transparent;
  border-color: #F85353;
}
.button_danger_o:hover {
  color: #fff;
  border-color: #F85353;
  background: #F85353;
}
.button[disabled], .pagination > div a[disabled] {
  cursor: wait;
}
.button[disabled]:hover, .pagination > div a[disabled]:hover {
  color: #fff;
  border-color: #FF6633;
  background: #FF6633;
}

.button.with-icon, .pagination > div a.with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.button.with-icon .icon, .pagination > div a.with-icon .icon {
  width: 20px;
}

.has-collapsable b-collapsable {
  position: relative;
  display: none;
  overflow: hidden;
}
.has-collapsable b-collapsable.full-collapsable-height {
  height: 0;
}
.has-collapsable .collapsable-trigger {
  display: inline-flex;
  align-items: center;
}

.has-collapsable.uncollapsed > b-collapsable {
  display: block;
}

figure {
  position: relative;
}
figure figcaption {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: initial;
  color: #00253E;
  background: #F4F1EA;
  background: linear-gradient(0deg, rgba(244, 241, 234, 0.8) 0%, rgba(244, 241, 234, 0.4) 60%, rgba(244, 241, 234, 0) 100%);
  padding: 15px 20px;
}
@media only screen and (min-width: 1200px) {
  figure figcaption {
    text-align: right;
  }
}
figure figcaption.caption_white {
  color: #fff;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.heading {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.heading_image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(-6px);
}
.heading h1, .heading h2, .heading h3, .heading h4, .heading h5, .heading h6,
.heading .h1, .heading .h2, .heading .h3, .heading .h4, .heading .h5, .heading .h6 {
  margin-bottom: 0;
}

.input-default label, .select-default label, .textarea-default label {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.input-default input, .select-default input, .textarea-default input {
  width: 100%;
  min-height: 35px;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #dedede;
  padding: 15px 10px 10px;
}
.input-default input:focus-visible, .select-default input:focus-visible, .textarea-default input:focus-visible {
  border: 1px solid #00253E;
  outline: 0;
}
.input-default input::-moz-placeholder, .select-default input::-moz-placeholder, .textarea-default input::-moz-placeholder {
  color: #b7b7b7;
  font-style: italic;
}
.input-default input::placeholder, .select-default input::placeholder, .textarea-default input::placeholder {
  color: #b7b7b7;
  font-style: italic;
}
.input-default .explanation, .select-default .explanation, .textarea-default .explanation {
  color: #b7b7b7;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.3;
}
.input-default .explanation-instagram, .select-default .explanation-instagram, .textarea-default .explanation-instagram {
  margin-top: 10px;
  color: #b7b7b7;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.3;
}

.textarea-default textarea {
  width: 100%;
  min-height: 35px;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #dedede;
  padding: 15px 10px 10px;
  resize: vertical;
}
.textarea-default textarea:focus-visible {
  border: 1px solid #00253E;
  outline: 0;
}
.textarea-default textarea::-moz-placeholder {
  color: #b7b7b7;
  font-style: italic;
}
.textarea-default textarea::placeholder {
  color: #b7b7b7;
  font-style: italic;
}

.form-group.textarea label {
  margin-bottom: 10px;
  display: block;
}
.form-group.textarea .character-count-container {
  margin-top: 15px;
}
.form-group.textarea textarea.form-control {
  resize: vertical;
}
.form-group.textarea .textarea-default textarea {
  border: none;
  padding: 0;
}

.character-count-container {
  display: flex;
  justify-content: space-between;
  color: #b7b7b7;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.3;
}
.character-count-container .character-count {
  color: #087b08;
}
.character-count-container .character-count.invalid {
  color: #F85353;
}

.select-default select {
  width: 100%;
  min-height: 35px;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #dedede;
  padding: 15px 10px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent url(../images/icons/chevron-down.svg) no-repeat calc(100% - 10px);
  background-size: 10px;
  padding: 15px 30px 10px 10px;
}
.select-default select:focus-visible {
  border: 1px solid #00253E;
  outline: 0;
}
.select-default select::-moz-placeholder {
  color: #b7b7b7;
  font-style: italic;
}
.select-default select::placeholder {
  color: #b7b7b7;
  font-style: italic;
}
.select-default select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.select-default select::-ms-expand {
  display: none;
}

.form-text, .form-check, .form-radio {
  margin-bottom: 1rem;
}
.form-text a, .form-check a, .form-radio a {
  text-decoration: underline;
}
.form-group {
  font-size: 1rem;
  border: 1px solid #dedede;
  padding: 20px 20px 15px;
  margin-bottom: 20px;
}
.form-group label {
  color: #B2BDC5;
}
.form-group small {
  display: block;
  margin-top: 15px;
  color: #b7b7b7;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.3;
}
.form-control {
  display: block;
  width: 100%;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 10px 0 0;
}
.form-control::-moz-placeholder {
  color: #00253E;
}
.form-control::placeholder {
  color: #00253E;
}
.form-control[type=date] {
  text-transform: uppercase;
}
.form-check {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-check input {
  position: absolute;
  bottom: 0;
  left: 9px;
  height: 1px;
  width: 1px;
  z-index: -1;
}
.form-check label {
  font-size: 1rem;
  line-height: 30px;
  padding-left: 45px;
  cursor: pointer;
}
.form-check label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #dedede;
}
.form-check label::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 3px;
  width: 30px;
  height: 20px;
  background: transparent url(../images/icons/check.svg) no-repeat center;
  background-size: contain;
}
.form-check input:checked ~ label::after {
  display: block;
}
.form-check input:focus-visible ~ label::before {
  border-color: black;
}
.form-check input.must-check:focus ~ label::before {
  border-color: red !important;
}
.form-error {
  display: block;
  color: #F85353 !important;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 10px;
}

form .password-wrapper {
  position: relative;
}
form .password-wrapper input {
  padding-right: 45px;
}
form .password-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
}
form .password-wrapper button:focus-visible {
  border: 1px solid #0C395A;
}
form .password-wrapper button i {
  color: #000;
}

form-field .error {
  color: #F85353;
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: normal;
}

.form-check small.error {
  color: #F85353;
  display: block;
  padding-left: 45px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pagination {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}
.pagination > div {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .pagination > div {
    width: auto;
    text-align: left;
    margin-bottom: 0;
  }
}
.pagination > div a {
  display: none;
  position: relative;
  min-width: 47px;
  text-align: center;
  padding-right: 15px;
  padding-left: 15px;
  background: transparent;
  border: 1px solid #00253E;
  margin-right: 0;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .pagination > div a {
    margin-right: 5px;
  }
}
.pagination > div a:first-child {
  display: inline-block;
  margin-left: 0 !important;
}
.pagination > div a:first-child::after {
  display: none !important;
}
.pagination > div a:last-child {
  display: inline-block;
  margin-right: 0 !important;
}
.pagination > div a:last-child::after {
  display: none !important;
}
.pagination > div a:hover {
  color: #fff;
  background: #00253E;
}
.pagination > div.pagination_regular[data-current="1"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(1) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(0) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(0):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"] a:nth-child(0):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(0):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"] a:nth-child(0):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(2) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(2):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"] a:nth-child(2):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="1"] a:nth-child(2):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"] a:nth-child(2):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(2) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(2) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(2)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(3) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(3):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(3):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(3):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"].pagination_first a:nth-child(3):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(0) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(0)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(-1) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(-1):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(-1):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(-1):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="1"].pagination_last a:nth-child(-1):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="2"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(2) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(1) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(1):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"] a:nth-child(1):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(1):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"] a:nth-child(1):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(3) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(3):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"] a:nth-child(3):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="2"] a:nth-child(3):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"] a:nth-child(3):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(3) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(3) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(3)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(4) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(4):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(4):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(4):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"].pagination_first a:nth-child(4):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(1) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(1)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(0) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(0):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(0):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(0):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="2"].pagination_last a:nth-child(0):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="3"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(3) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(2) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(2):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"] a:nth-child(2):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(2):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"] a:nth-child(2):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(4) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(4):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"] a:nth-child(4):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="3"] a:nth-child(4):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"] a:nth-child(4):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(4) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(4) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(4)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(5) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(5):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(5):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(5):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"].pagination_first a:nth-child(5):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(2) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(2)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(1) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(1):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(1):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(1):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="3"].pagination_last a:nth-child(1):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="4"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(4) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(3) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(3):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"] a:nth-child(3):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(3):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"] a:nth-child(3):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(5) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(5):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"] a:nth-child(5):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="4"] a:nth-child(5):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"] a:nth-child(5):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(5) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(5) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(5)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(6) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(6):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(6):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(6):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"].pagination_first a:nth-child(6):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(3) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(3)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(2) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(2):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(2):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(2):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="4"].pagination_last a:nth-child(2):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="5"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(5) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(4) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(4):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"] a:nth-child(4):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(4):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"] a:nth-child(4):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(6) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(6):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"] a:nth-child(6):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="5"] a:nth-child(6):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"] a:nth-child(6):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(6) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(6) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(6)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(7) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(7):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(7):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(7):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"].pagination_first a:nth-child(7):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(4) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(4)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(3) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(3):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(3):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(3):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="5"].pagination_last a:nth-child(3):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="6"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(6) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(5) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(5):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"] a:nth-child(5):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(5):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"] a:nth-child(5):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(7) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(7):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"] a:nth-child(7):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="6"] a:nth-child(7):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"] a:nth-child(7):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(7) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(7) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(7)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(8) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(8):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(8):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(8):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"].pagination_first a:nth-child(8):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(5) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(5)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(4) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(4):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(4):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(4):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="6"].pagination_last a:nth-child(4):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="7"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(7) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(6) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(6):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"] a:nth-child(6):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(6):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"] a:nth-child(6):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(8) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(8):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"] a:nth-child(8):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="7"] a:nth-child(8):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"] a:nth-child(8):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(8) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(8) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(8)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(9) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(9):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(9):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(9):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"].pagination_first a:nth-child(9):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(6) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(6)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(5) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(5):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(5):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(5):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="7"].pagination_last a:nth-child(5):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="8"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(8) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(7) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(7):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"] a:nth-child(7):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(7):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"] a:nth-child(7):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(9) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(9):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"] a:nth-child(9):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="8"] a:nth-child(9):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"] a:nth-child(9):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(9) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(9) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(9)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(10) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(10):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(10):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(10):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"].pagination_first a:nth-child(10):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(7) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(7)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(6) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(6):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(6):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(6):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="8"].pagination_last a:nth-child(6):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="9"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(9) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(8) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(8):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"] a:nth-child(8):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(8):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"] a:nth-child(8):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(10) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(10):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"] a:nth-child(10):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="9"] a:nth-child(10):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"] a:nth-child(10):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(10) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(10) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(10)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(11) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(11):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(11):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(11):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"].pagination_first a:nth-child(11):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(8) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(8)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(7) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(7):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(7):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(7):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="9"].pagination_last a:nth-child(7):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="10"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(10) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(9) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(9):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"] a:nth-child(9):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(9):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"] a:nth-child(9):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(11) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(11):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"] a:nth-child(11):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="10"] a:nth-child(11):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"] a:nth-child(11):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(11) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(11) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(11)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(12) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(12):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(12):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(12):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"].pagination_first a:nth-child(12):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(9) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(9)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(8) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(8):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(8):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(8):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="10"].pagination_last a:nth-child(8):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="11"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(11) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(10) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(10):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"] a:nth-child(10):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(10):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"] a:nth-child(10):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(12) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(12):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"] a:nth-child(12):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="11"] a:nth-child(12):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"] a:nth-child(12):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(12) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(12) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(12)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(13) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(13):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(13):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(13):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"].pagination_first a:nth-child(13):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(10) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(10)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(9) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(9):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(9):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(9):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="11"].pagination_last a:nth-child(9):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="12"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(12) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(11) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(11):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"] a:nth-child(11):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(11):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"] a:nth-child(11):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(13) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(13):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"] a:nth-child(13):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="12"] a:nth-child(13):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"] a:nth-child(13):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(13) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(13) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(13)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(14) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(14):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(14):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(14):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"].pagination_first a:nth-child(14):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(11) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(11)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(10) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(10):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(10):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(10):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="12"].pagination_last a:nth-child(10):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="13"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(13) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(12) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(12):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"] a:nth-child(12):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(12):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"] a:nth-child(12):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(14) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(14):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"] a:nth-child(14):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="13"] a:nth-child(14):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"] a:nth-child(14):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(14) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(14) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(14)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(15) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(15):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(15):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(15):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"].pagination_first a:nth-child(15):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(12) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(12)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(11) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(11):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(11):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(11):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="13"].pagination_last a:nth-child(11):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="14"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(14) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(13) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(13):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"] a:nth-child(13):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(13):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"] a:nth-child(13):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(15) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(15):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"] a:nth-child(15):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="14"] a:nth-child(15):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"] a:nth-child(15):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(15) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(15) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(15)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(16) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(16):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(16):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(16):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"].pagination_first a:nth-child(16):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(13) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(13)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(12) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(12):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(12):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(12):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="14"].pagination_last a:nth-child(12):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="15"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(15) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(14) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(14):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"] a:nth-child(14):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(14):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"] a:nth-child(14):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(16) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(16):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"] a:nth-child(16):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="15"] a:nth-child(16):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"] a:nth-child(16):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(16) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(16) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(16)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(17) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(17):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(17):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(17):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"].pagination_first a:nth-child(17):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(14) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(14)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(13) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(13):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(13):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(13):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="15"].pagination_last a:nth-child(13):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="16"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(16) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(15) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(15):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"] a:nth-child(15):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(15):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"] a:nth-child(15):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(17) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(17):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"] a:nth-child(17):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="16"] a:nth-child(17):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"] a:nth-child(17):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(17) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(17) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(17)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(18) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(18):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(18):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(18):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"].pagination_first a:nth-child(18):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(15) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(15)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(14) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(14):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(14):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(14):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="16"].pagination_last a:nth-child(14):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="17"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(17) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(16) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(16):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"] a:nth-child(16):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(16):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"] a:nth-child(16):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(18) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(18):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"] a:nth-child(18):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="17"] a:nth-child(18):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"] a:nth-child(18):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(18) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(18) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(18)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(19) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(19):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(19):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(19):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"].pagination_first a:nth-child(19):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(16) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(16)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(15) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(15):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(15):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(15):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="17"].pagination_last a:nth-child(15):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="18"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(18) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(17) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(17):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"] a:nth-child(17):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(17):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"] a:nth-child(17):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(19) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(19):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"] a:nth-child(19):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="18"] a:nth-child(19):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"] a:nth-child(19):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(19) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(19) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(19)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(20) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(20):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(20):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(20):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"].pagination_first a:nth-child(20):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(17) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(17)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(16) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(16):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(16):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(16):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="18"].pagination_last a:nth-child(16):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="19"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(19) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(18) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(18):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"] a:nth-child(18):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(18):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"] a:nth-child(18):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(20) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(20):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"] a:nth-child(20):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="19"] a:nth-child(20):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"] a:nth-child(20):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(20) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(20) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(20)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(21) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(21):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(21):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(21):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"].pagination_first a:nth-child(21):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(18) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(18)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(17) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(17):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(17):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(17):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="19"].pagination_last a:nth-child(17):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="20"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(20) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(19) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(19):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"] a:nth-child(19):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(19):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"] a:nth-child(19):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(21) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(21):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"] a:nth-child(21):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="20"] a:nth-child(21):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"] a:nth-child(21):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(21) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(21) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(21)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(22) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(22):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(22):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(22):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"].pagination_first a:nth-child(22):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(19) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(19)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(18) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(18):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(18):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(18):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="20"].pagination_last a:nth-child(18):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="21"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(21) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(20) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(20):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"] a:nth-child(20):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(20):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"] a:nth-child(20):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(22) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(22):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"] a:nth-child(22):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="21"] a:nth-child(22):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"] a:nth-child(22):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(22) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(22) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(22)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(23) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(23):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(23):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(23):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"].pagination_first a:nth-child(23):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(20) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(20)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(19) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(19):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(19):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(19):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="21"].pagination_last a:nth-child(19):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="22"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(22) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(21) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(21):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"] a:nth-child(21):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(21):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"] a:nth-child(21):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(23) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(23):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"] a:nth-child(23):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="22"] a:nth-child(23):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"] a:nth-child(23):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(23) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(23) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(23)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(24) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(24):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(24):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(24):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"].pagination_first a:nth-child(24):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(21) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(21)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(20) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(20):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(20):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(20):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="22"].pagination_last a:nth-child(20):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="23"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(23) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(22) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(22):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"] a:nth-child(22):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(22):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"] a:nth-child(22):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(24) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(24):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"] a:nth-child(24):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="23"] a:nth-child(24):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"] a:nth-child(24):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(24) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(24) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(24)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(25) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(25):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(25):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(25):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"].pagination_first a:nth-child(25):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(22) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(22)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(21) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(21):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(21):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(21):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="23"].pagination_last a:nth-child(21):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="24"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(24) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(23) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(23):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"] a:nth-child(23):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(23):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"] a:nth-child(23):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(25) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(25):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"] a:nth-child(25):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="24"] a:nth-child(25):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"] a:nth-child(25):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(25) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(25) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(25)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(26) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(26):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(26):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(26):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"].pagination_first a:nth-child(26):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(23) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(23)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(22) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(22):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(22):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(22):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="24"].pagination_last a:nth-child(22):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="25"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(25) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(24) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(24):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"] a:nth-child(24):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(24):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"] a:nth-child(24):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(26) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(26):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"] a:nth-child(26):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="25"] a:nth-child(26):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"] a:nth-child(26):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(26) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(26) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(26)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(27) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(27):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(27):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(27):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"].pagination_first a:nth-child(27):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(24) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(24)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(23) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(23):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(23):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(23):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="25"].pagination_last a:nth-child(23):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="26"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(26) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(25) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(25):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"] a:nth-child(25):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(25):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"] a:nth-child(25):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(27) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(27):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"] a:nth-child(27):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="26"] a:nth-child(27):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"] a:nth-child(27):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(27) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(27) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(27)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(28) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(28):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(28):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(28):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"].pagination_first a:nth-child(28):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(25) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(25)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(24) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(24):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(24):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(24):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="26"].pagination_last a:nth-child(24):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="27"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(27) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(26) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(26):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"] a:nth-child(26):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(26):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"] a:nth-child(26):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(28) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(28):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"] a:nth-child(28):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="27"] a:nth-child(28):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"] a:nth-child(28):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(28) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(28) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(28)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(29) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(29):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(29):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(29):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"].pagination_first a:nth-child(29):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(26) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(26)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(25) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(25):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(25):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(25):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="27"].pagination_last a:nth-child(25):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="28"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(28) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(27) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(27):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"] a:nth-child(27):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(27):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"] a:nth-child(27):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(29) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(29):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"] a:nth-child(29):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="28"] a:nth-child(29):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"] a:nth-child(29):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(29) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(29) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(29)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(30) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(30):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(30):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(30):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"].pagination_first a:nth-child(30):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(27) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(27)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(26) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(26):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(26):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(26):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="28"].pagination_last a:nth-child(26):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="29"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(29) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(28) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(28):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"] a:nth-child(28):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(28):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"] a:nth-child(28):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(30) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(30):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"] a:nth-child(30):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="29"] a:nth-child(30):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"] a:nth-child(30):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(30) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(30) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(30)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(31) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(31):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(31):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(31):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"].pagination_first a:nth-child(31):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(28) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(28)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(27) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(27):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(27):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(27):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="29"].pagination_last a:nth-child(27):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="30"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(30) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(29) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(29):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"] a:nth-child(29):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(29):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"] a:nth-child(29):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(31) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(31):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"] a:nth-child(31):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="30"] a:nth-child(31):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"] a:nth-child(31):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(31) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(31) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(31)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(32) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(32):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(32):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(32):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"].pagination_first a:nth-child(32):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(29) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(29)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(28) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(28):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(28):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(28):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="30"].pagination_last a:nth-child(28):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="31"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(31) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(30) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(30):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"] a:nth-child(30):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(30):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"] a:nth-child(30):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(32) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(32):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"] a:nth-child(32):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="31"] a:nth-child(32):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"] a:nth-child(32):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(32) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(32) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(32)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(33) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(33):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(33):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(33):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"].pagination_first a:nth-child(33):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(30) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(30)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(29) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(29):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(29):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(29):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="31"].pagination_last a:nth-child(29):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="32"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(32) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(31) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(31):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"] a:nth-child(31):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(31):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"] a:nth-child(31):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(33) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(33):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"] a:nth-child(33):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="32"] a:nth-child(33):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"] a:nth-child(33):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(33) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(33) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(33)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(34) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(34):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(34):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(34):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"].pagination_first a:nth-child(34):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(31) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(31)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(30) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(30):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(30):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(30):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="32"].pagination_last a:nth-child(30):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="33"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(33) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(32) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(32):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"] a:nth-child(32):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(32):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"] a:nth-child(32):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(34) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(34):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"] a:nth-child(34):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="33"] a:nth-child(34):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"] a:nth-child(34):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(34) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(34) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(34)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(35) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(35):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(35):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(35):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"].pagination_first a:nth-child(35):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(32) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(32)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(31) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(31):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(31):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(31):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="33"].pagination_last a:nth-child(31):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="34"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(34) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(33) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(33):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"] a:nth-child(33):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(33):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"] a:nth-child(33):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(35) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(35):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"] a:nth-child(35):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="34"] a:nth-child(35):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"] a:nth-child(35):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(35) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(35) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(35)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(36) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(36):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(36):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(36):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"].pagination_first a:nth-child(36):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(33) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(33)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(32) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(32):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(32):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(32):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="34"].pagination_last a:nth-child(32):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="35"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(35) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(34) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(34):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"] a:nth-child(34):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(34):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"] a:nth-child(34):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(36) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(36):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"] a:nth-child(36):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="35"] a:nth-child(36):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"] a:nth-child(36):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(36) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(36) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(36)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(37) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(37):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(37):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(37):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"].pagination_first a:nth-child(37):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(34) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(34)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(33) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(33):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(33):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(33):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="35"].pagination_last a:nth-child(33):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="36"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(36) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(35) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(35):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"] a:nth-child(35):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(35):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"] a:nth-child(35):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(37) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(37):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"] a:nth-child(37):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="36"] a:nth-child(37):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"] a:nth-child(37):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(37) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(37) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(37)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(38) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(38):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(38):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(38):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"].pagination_first a:nth-child(38):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(35) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(35)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(34) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(34):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(34):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(34):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="36"].pagination_last a:nth-child(34):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="37"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(37) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(36) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(36):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"] a:nth-child(36):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(36):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"] a:nth-child(36):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(38) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(38):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"] a:nth-child(38):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="37"] a:nth-child(38):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"] a:nth-child(38):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(38) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(38) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(38)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(39) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(39):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(39):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(39):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"].pagination_first a:nth-child(39):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(36) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(36)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(35) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(35):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(35):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(35):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="37"].pagination_last a:nth-child(35):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="38"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(38) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(37) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(37):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"] a:nth-child(37):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(37):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"] a:nth-child(37):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(39) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(39):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"] a:nth-child(39):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="38"] a:nth-child(39):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"] a:nth-child(39):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(39) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(39) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(39)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(40) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(40):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(40):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(40):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"].pagination_first a:nth-child(40):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(37) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(37)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(36) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(36):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(36):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(36):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="38"].pagination_last a:nth-child(36):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="39"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(39) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(38) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(38):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"] a:nth-child(38):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(38):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"] a:nth-child(38):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(40) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(40):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"] a:nth-child(40):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="39"] a:nth-child(40):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"] a:nth-child(40):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(40) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(40) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(40)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(41) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(41):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(41):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(41):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"].pagination_first a:nth-child(41):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(38) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(38)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(37) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(37):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(37):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(37):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="39"].pagination_last a:nth-child(37):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="40"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(40) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(39) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(39):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"] a:nth-child(39):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(39):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"] a:nth-child(39):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(41) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(41):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"] a:nth-child(41):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="40"] a:nth-child(41):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"] a:nth-child(41):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(41) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(41) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(41)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(42) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(42):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(42):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(42):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"].pagination_first a:nth-child(42):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(39) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(39)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(38) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(38):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(38):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(38):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="40"].pagination_last a:nth-child(38):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="41"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(41) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(40) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(40):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"] a:nth-child(40):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(40):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"] a:nth-child(40):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(42) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(42):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"] a:nth-child(42):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="41"] a:nth-child(42):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"] a:nth-child(42):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(42) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(42) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(42)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(43) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(43):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(43):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(43):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"].pagination_first a:nth-child(43):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(40) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(40)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(39) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(39):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(39):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(39):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="41"].pagination_last a:nth-child(39):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="42"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(42) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(41) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(41):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"] a:nth-child(41):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(41):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"] a:nth-child(41):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(43) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(43):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"] a:nth-child(43):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="42"] a:nth-child(43):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"] a:nth-child(43):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(43) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(43) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(43)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(44) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(44):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(44):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(44):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"].pagination_first a:nth-child(44):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(41) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(41)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(40) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(40):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(40):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(40):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="42"].pagination_last a:nth-child(40):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="43"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(43) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(42) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(42):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"] a:nth-child(42):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(42):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"] a:nth-child(42):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(44) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(44):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"] a:nth-child(44):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="43"] a:nth-child(44):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"] a:nth-child(44):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(44) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(44) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(44)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(45) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(45):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(45):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(45):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"].pagination_first a:nth-child(45):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(42) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(42)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(41) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(41):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(41):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(41):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="43"].pagination_last a:nth-child(41):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="44"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(44) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(43) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(43):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"] a:nth-child(43):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(43):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"] a:nth-child(43):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(45) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(45):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"] a:nth-child(45):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="44"] a:nth-child(45):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"] a:nth-child(45):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(45) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(45) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(45)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(46) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(46):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(46):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(46):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"].pagination_first a:nth-child(46):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(43) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(43)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(42) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(42):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(42):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(42):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="44"].pagination_last a:nth-child(42):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="45"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(45) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(44) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(44):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"] a:nth-child(44):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(44):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"] a:nth-child(44):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(46) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(46):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"] a:nth-child(46):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="45"] a:nth-child(46):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"] a:nth-child(46):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(46) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(46) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(46)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(47) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(47):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(47):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(47):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"].pagination_first a:nth-child(47):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(44) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(44)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(43) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(43):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(43):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(43):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="45"].pagination_last a:nth-child(43):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="46"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(46) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(45) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(45):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"] a:nth-child(45):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(45):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"] a:nth-child(45):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(47) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(47):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"] a:nth-child(47):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="46"] a:nth-child(47):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"] a:nth-child(47):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(47) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(47) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(47)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(48) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(48):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(48):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(48):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"].pagination_first a:nth-child(48):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(45) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(45)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(44) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(44):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(44):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(44):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="46"].pagination_last a:nth-child(44):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="47"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(47) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(46) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(46):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"] a:nth-child(46):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(46):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"] a:nth-child(46):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(48) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(48):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"] a:nth-child(48):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="47"] a:nth-child(48):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"] a:nth-child(48):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(48) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(48) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(48)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(49) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(49):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(49):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(49):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"].pagination_first a:nth-child(49):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(46) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(46)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(45) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(45):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(45):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(45):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="47"].pagination_last a:nth-child(45):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="48"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(48) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(47) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(47):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"] a:nth-child(47):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(47):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"] a:nth-child(47):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(49) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(49):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"] a:nth-child(49):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="48"] a:nth-child(49):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"] a:nth-child(49):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(49) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(49) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(49)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(50) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(50):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(50):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(50):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"].pagination_first a:nth-child(50):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(47) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(47)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(46) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(46):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(46):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(46):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="48"].pagination_last a:nth-child(46):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="49"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(49) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(48) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(48):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"] a:nth-child(48):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(48):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"] a:nth-child(48):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(50) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(50):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"] a:nth-child(50):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="49"] a:nth-child(50):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"] a:nth-child(50):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(50) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(50) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(50)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(51) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(51):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(51):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(51):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"].pagination_first a:nth-child(51):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(48) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(48)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(47) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(47):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(47):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(47):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="49"].pagination_last a:nth-child(47):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="50"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(50) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(49) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(49):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"] a:nth-child(49):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(49):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"] a:nth-child(49):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(51) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(51):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"] a:nth-child(51):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="50"] a:nth-child(51):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"] a:nth-child(51):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(51) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(51) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(51)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(52) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(52):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(52):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(52):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"].pagination_first a:nth-child(52):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(49) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(49)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(48) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(48):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(48):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(48):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="50"].pagination_last a:nth-child(48):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="51"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(51) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(50) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(50):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"] a:nth-child(50):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(50):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"] a:nth-child(50):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(52) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(52):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"] a:nth-child(52):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="51"] a:nth-child(52):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"] a:nth-child(52):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(52) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(52) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(52)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(53) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(53):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(53):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(53):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"].pagination_first a:nth-child(53):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(50) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(50)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(49) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(49):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(49):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(49):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="51"].pagination_last a:nth-child(49):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="52"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(52) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(51) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(51):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"] a:nth-child(51):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(51):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"] a:nth-child(51):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(53) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(53):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"] a:nth-child(53):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="52"] a:nth-child(53):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"] a:nth-child(53):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(53) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(53) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(53)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(54) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(54):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(54):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(54):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"].pagination_first a:nth-child(54):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(51) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(51)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(50) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(50):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(50):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(50):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="52"].pagination_last a:nth-child(50):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="53"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(53) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(52) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(52):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"] a:nth-child(52):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(52):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"] a:nth-child(52):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(54) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(54):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"] a:nth-child(54):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="53"] a:nth-child(54):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"] a:nth-child(54):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(54) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(54) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(54)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(55) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(55):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(55):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(55):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"].pagination_first a:nth-child(55):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(52) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(52)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(51) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(51):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(51):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(51):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="53"].pagination_last a:nth-child(51):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="54"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(54) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(53) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(53):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"] a:nth-child(53):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(53):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"] a:nth-child(53):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(55) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(55):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"] a:nth-child(55):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="54"] a:nth-child(55):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"] a:nth-child(55):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(55) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(55) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(55)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(56) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(56):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(56):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(56):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"].pagination_first a:nth-child(56):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(53) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(53)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(52) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(52):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(52):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(52):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="54"].pagination_last a:nth-child(52):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="55"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(55) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(54) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(54):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"] a:nth-child(54):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(54):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"] a:nth-child(54):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(56) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(56):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"] a:nth-child(56):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="55"] a:nth-child(56):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"] a:nth-child(56):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(56) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(56) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(56)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(57) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(57):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(57):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(57):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"].pagination_first a:nth-child(57):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(54) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(54)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(53) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(53):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(53):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(53):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="55"].pagination_last a:nth-child(53):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="56"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(56) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(55) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(55):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"] a:nth-child(55):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(55):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"] a:nth-child(55):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(57) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(57):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"] a:nth-child(57):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="56"] a:nth-child(57):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"] a:nth-child(57):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(57) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(57) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(57)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(58) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(58):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(58):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(58):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"].pagination_first a:nth-child(58):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(55) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(55)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(54) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(54):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(54):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(54):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="56"].pagination_last a:nth-child(54):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="57"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(57) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(56) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(56):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"] a:nth-child(56):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(56):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"] a:nth-child(56):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(58) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(58):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"] a:nth-child(58):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="57"] a:nth-child(58):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"] a:nth-child(58):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(58) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(58) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(58)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(59) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(59):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(59):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(59):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"].pagination_first a:nth-child(59):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(56) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(56)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(55) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(55):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(55):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(55):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="57"].pagination_last a:nth-child(55):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="58"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(58) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(57) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(57):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"] a:nth-child(57):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(57):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"] a:nth-child(57):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(59) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(59):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"] a:nth-child(59):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="58"] a:nth-child(59):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"] a:nth-child(59):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(59) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(59) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(59)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(60) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(60):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(60):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(60):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"].pagination_first a:nth-child(60):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(57) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(57)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(56) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(56):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(56):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(56):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="58"].pagination_last a:nth-child(56):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="59"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(59) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(58) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(58):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"] a:nth-child(58):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(58):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"] a:nth-child(58):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(60) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(60):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"] a:nth-child(60):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="59"] a:nth-child(60):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"] a:nth-child(60):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(60) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(60) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(60)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(61) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(61):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(61):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(61):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"].pagination_first a:nth-child(61):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(58) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(58)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(57) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(57):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(57):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(57):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="59"].pagination_last a:nth-child(57):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="60"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(60) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(59) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(59):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"] a:nth-child(59):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(59):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"] a:nth-child(59):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(61) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(61):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"] a:nth-child(61):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="60"] a:nth-child(61):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"] a:nth-child(61):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(61) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(61) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(61)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(62) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(62):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(62):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(62):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"].pagination_first a:nth-child(62):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(59) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(59)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(58) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(58):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(58):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(58):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="60"].pagination_last a:nth-child(58):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="61"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(61) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(60) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(60):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"] a:nth-child(60):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(60):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"] a:nth-child(60):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(62) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(62):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"] a:nth-child(62):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="61"] a:nth-child(62):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"] a:nth-child(62):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(62) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(62) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(62)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(63) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(63):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(63):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(63):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"].pagination_first a:nth-child(63):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(60) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(60)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(59) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(59):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(59):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(59):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="61"].pagination_last a:nth-child(59):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="62"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(62) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(61) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(61):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"] a:nth-child(61):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(61):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"] a:nth-child(61):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(63) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(63):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"] a:nth-child(63):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="62"] a:nth-child(63):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"] a:nth-child(63):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(63) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(63) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(63)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(64) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(64):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(64):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(64):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"].pagination_first a:nth-child(64):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(61) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(61)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(60) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(60):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(60):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(60):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="62"].pagination_last a:nth-child(60):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="63"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(63) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(62) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(62):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"] a:nth-child(62):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(62):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"] a:nth-child(62):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(64) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(64):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"] a:nth-child(64):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="63"] a:nth-child(64):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"] a:nth-child(64):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(64) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(64) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(64)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(65) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(65):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(65):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(65):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"].pagination_first a:nth-child(65):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(62) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(62)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(61) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(61):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(61):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(61):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="63"].pagination_last a:nth-child(61):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="64"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(64) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(63) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(63):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"] a:nth-child(63):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(63):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"] a:nth-child(63):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(65) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(65):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"] a:nth-child(65):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="64"] a:nth-child(65):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"] a:nth-child(65):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(65) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(65) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(65)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(66) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(66):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(66):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(66):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"].pagination_first a:nth-child(66):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(63) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(63)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(62) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(62):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(62):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(62):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="64"].pagination_last a:nth-child(62):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="65"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(65) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(64) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(64):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"] a:nth-child(64):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(64):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"] a:nth-child(64):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(66) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(66):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"] a:nth-child(66):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="65"] a:nth-child(66):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"] a:nth-child(66):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(66) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(66) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(66)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(67) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(67):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(67):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(67):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"].pagination_first a:nth-child(67):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(64) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(64)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(63) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(63):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(63):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(63):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="65"].pagination_last a:nth-child(63):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="66"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(66) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(65) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(65):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"] a:nth-child(65):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(65):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"] a:nth-child(65):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(67) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(67):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"] a:nth-child(67):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="66"] a:nth-child(67):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"] a:nth-child(67):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(67) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(67) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(67)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(68) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(68):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(68):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(68):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"].pagination_first a:nth-child(68):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(65) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(65)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(64) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(64):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(64):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(64):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="66"].pagination_last a:nth-child(64):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="67"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(67) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(66) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(66):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"] a:nth-child(66):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(66):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"] a:nth-child(66):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(68) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(68):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"] a:nth-child(68):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="67"] a:nth-child(68):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"] a:nth-child(68):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(68) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(68) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(68)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(69) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(69):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(69):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(69):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"].pagination_first a:nth-child(69):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(66) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(66)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(65) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(65):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(65):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(65):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="67"].pagination_last a:nth-child(65):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="68"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(68) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(67) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(67):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"] a:nth-child(67):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(67):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"] a:nth-child(67):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(69) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(69):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"] a:nth-child(69):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="68"] a:nth-child(69):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"] a:nth-child(69):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(69) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(69) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(69)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(70) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(70):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(70):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(70):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"].pagination_first a:nth-child(70):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(67) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(67)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(66) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(66):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(66):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(66):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="68"].pagination_last a:nth-child(66):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="69"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(69) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(68) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(68):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"] a:nth-child(68):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(68):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"] a:nth-child(68):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(70) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(70):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"] a:nth-child(70):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="69"] a:nth-child(70):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"] a:nth-child(70):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(70) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(70) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(70)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(71) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(71):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(71):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(71):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"].pagination_first a:nth-child(71):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(68) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(68)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(67) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(67):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(67):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(67):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="69"].pagination_last a:nth-child(67):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="70"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(70) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(69) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(69):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"] a:nth-child(69):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(69):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"] a:nth-child(69):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(71) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(71):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"] a:nth-child(71):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="70"] a:nth-child(71):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"] a:nth-child(71):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(71) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(71) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(71)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(72) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(72):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(72):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(72):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"].pagination_first a:nth-child(72):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(69) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(69)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(68) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(68):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(68):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(68):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="70"].pagination_last a:nth-child(68):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="71"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(71) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(70) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(70):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"] a:nth-child(70):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(70):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"] a:nth-child(70):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(72) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(72):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"] a:nth-child(72):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="71"] a:nth-child(72):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"] a:nth-child(72):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(72) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(72) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(72)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(73) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(73):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(73):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(73):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"].pagination_first a:nth-child(73):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(70) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(70)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(69) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(69):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(69):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(69):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="71"].pagination_last a:nth-child(69):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="72"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(72) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(71) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(71):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"] a:nth-child(71):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(71):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"] a:nth-child(71):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(73) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(73):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"] a:nth-child(73):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="72"] a:nth-child(73):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"] a:nth-child(73):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(73) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(73) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(73)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(74) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(74):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(74):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(74):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"].pagination_first a:nth-child(74):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(71) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(71)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(70) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(70):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(70):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(70):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="72"].pagination_last a:nth-child(70):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="73"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(73) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(72) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(72):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"] a:nth-child(72):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(72):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"] a:nth-child(72):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(74) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(74):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"] a:nth-child(74):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="73"] a:nth-child(74):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"] a:nth-child(74):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(74) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(74) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(74)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(75) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(75):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(75):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(75):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"].pagination_first a:nth-child(75):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(72) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(72)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(71) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(71):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(71):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(71):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="73"].pagination_last a:nth-child(71):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="74"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(74) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(73) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(73):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"] a:nth-child(73):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(73):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"] a:nth-child(73):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(75) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(75):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"] a:nth-child(75):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="74"] a:nth-child(75):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"] a:nth-child(75):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(75) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(75) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(75)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(76) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(76):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(76):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(76):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"].pagination_first a:nth-child(76):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(73) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(73)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(72) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(72):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(72):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(72):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="74"].pagination_last a:nth-child(72):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="75"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(75) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(74) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(74):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"] a:nth-child(74):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(74):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"] a:nth-child(74):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(76) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(76):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"] a:nth-child(76):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="75"] a:nth-child(76):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"] a:nth-child(76):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(76) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(76) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(76)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(77) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(77):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(77):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(77):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"].pagination_first a:nth-child(77):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(74) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(74)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(73) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(73):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(73):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(73):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="75"].pagination_last a:nth-child(73):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="76"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(76) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(75) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(75):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"] a:nth-child(75):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(75):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"] a:nth-child(75):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(77) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(77):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"] a:nth-child(77):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="76"] a:nth-child(77):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"] a:nth-child(77):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(77) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(77) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(77)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(78) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(78):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(78):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(78):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"].pagination_first a:nth-child(78):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(75) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(75)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(74) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(74):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(74):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(74):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="76"].pagination_last a:nth-child(74):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="77"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(77) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(76) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(76):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"] a:nth-child(76):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(76):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"] a:nth-child(76):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(78) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(78):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"] a:nth-child(78):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="77"] a:nth-child(78):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"] a:nth-child(78):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(78) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(78) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(78)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(79) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(79):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(79):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(79):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"].pagination_first a:nth-child(79):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(76) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(76)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(75) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(75):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(75):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(75):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="77"].pagination_last a:nth-child(75):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="78"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(78) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(77) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(77):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"] a:nth-child(77):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(77):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"] a:nth-child(77):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(79) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(79):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"] a:nth-child(79):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="78"] a:nth-child(79):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"] a:nth-child(79):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(79) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(79) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(79)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(80) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(80):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(80):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(80):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"].pagination_first a:nth-child(80):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(77) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(77)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(76) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(76):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(76):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(76):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="78"].pagination_last a:nth-child(76):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="79"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(79) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(78) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(78):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"] a:nth-child(78):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(78):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"] a:nth-child(78):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(80) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(80):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"] a:nth-child(80):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="79"] a:nth-child(80):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"] a:nth-child(80):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(80) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(80) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(80)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(81) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(81):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(81):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(81):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"].pagination_first a:nth-child(81):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(78) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(78)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(77) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(77):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(77):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(77):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="79"].pagination_last a:nth-child(77):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_regular[data-current="80"] a {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(80) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(79) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(79):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"] a:nth-child(79):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(79):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"] a:nth-child(79):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(81) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(81):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"] a:nth-child(81):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="80"] a:nth-child(81):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"] a:nth-child(81):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(81) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(81) {
    margin-right: 5px;
  }
}
.pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(81)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(82) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(82):not(:nth-last-child(2)) {
  margin-right: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(82):not(:nth-last-child(2)) {
    margin-right: 47px;
  }
}
.pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(82):not(:nth-last-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  right: 0;
  color: #00253E !important;
  transform: translateX(100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"].pagination_first a:nth-child(82):not(:nth-last-child(2))::after {
    width: 57px;
  }
}
.pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(79) {
  margin-left: 0;
}
.pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(79)::after {
  display: none;
}
.pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(78) {
  display: inline-block;
}
.pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(78):not(:nth-child(2)) {
  margin-left: 28px;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(78):not(:nth-child(2)) {
    margin-left: 47px;
  }
}
.pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(78):not(:nth-child(2))::after {
  content: "...";
  position: absolute;
  width: 30px;
  left: 0;
  color: #00253E !important;
  transform: translateX(-100%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .pagination > div.pagination_extended[data-current="80"].pagination_last a:nth-child(78):not(:nth-child(2))::after {
    width: 57px;
  }
}
.pagination .button_brand {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .pagination .button_brand {
    width: auto;
  }
}

.text_brand {
  color: #00253E !important;
}
.text_accent {
  color: #FF6633 !important;
}
.text_alt {
  color: #F4F1EA !important;
}
.text_white {
  color: #fff !important;
}

small.required_notice {
  display: block;
  margin-bottom: 20px;
}

search-bar {
  display: flex;
}

search-bar input-container {
  position: relative;
  flex-grow: 1;
}
search-bar input-container input {
  display: block;
  height: 46px;
  width: 100%;
  padding: 10px;
  padding-left: 40px;
  padding-top: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}
search-bar input-container input:hover {
  border-color: #bfbfbf;
}
@media only screen and (min-width: 768px) {
  search-bar input-container input {
    min-width: 350px;
  }
}
search-bar input-container b-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

search-bar select-container {
  position: relative;
  display: flex;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  search-bar select-container {
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
  }
}
search-bar select-container select {
  height: 46px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background-color: #ffffff;
  outline: none;
  -webkit-appearance: none;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
}
search-bar select-container select:hover {
  border-color: #bfbfbf;
}
@media only screen and (max-width: 767px) {
  search-bar select-container select {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
  }
}
@media only screen and (min-width: 768px) {
  search-bar select-container select {
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-right: 15px;
  }
}
search-bar select-container label {
  margin-top: 4px;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  search-bar select-container label {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  search-bar select-container b-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    pointer-events: none;
  }
}

.activities {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: -40px;
}
.activities_item {
  flex: 0 0 100%;
  text-decoration: none !important;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .activities_item {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 992px) {
  .activities_item {
    flex: 0 0 33.33333334%;
  }
}
@media only screen and (min-width: 1200px) {
  .activities_item {
    flex: 0 0 25%;
  }
}
.activities_image {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.activities_image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.activities_image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.activities_image img {
  transition: transform 0.3s;
}
.activities_date, .activity_date {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.activities_date span, .activity_date span {
  position: relative;
  padding: 6px 10px 0 13px;
}
.activities_date span::before, .activity_date span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  top: 50%;
  left: 0;
  background: #00253E;
  transform: translateY(-50%);
}
.activities_date span:first-child, .activity_date span:first-child {
  padding-left: 0;
}
.activities_date span:first-child::before, .activity_date span:first-child::before {
  display: none;
}
.activities_place, .activity_place {
  font-size: 1rem;
}
.activities_title {
  font-size: 2rem;
  line-height: 1.2;
  transition: color 0.3s;
}
@media only screen and (min-width: 1800px) {
  .activities_title {
    font-size: 2.4rem;
  }
}
.activities_item:hover .activities_image img {
  transform: scale(1.1) translateZ(0);
}
.activities_item:hover .activities_title {
  color: #FF6633;
}

.activity {
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  .activity {
    padding: 75px 0;
  }
}
.activity_image {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.activity_image::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.activity_image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.activity_date {
  font-size: 1.1rem;
}
@media only screen and (min-width: 768px) {
  .activity_date {
    font-size: 1.3rem;
  }
}
.activity_place {
  font-size: 1.1rem;
}
@media only screen and (min-width: 768px) {
  .activity_place {
    font-size: 1.3rem;
  }
}
.activity_content {
  margin: 30px 0;
}
@media only screen and (min-width: 768px) {
  .activity_content {
    margin: 50px 0;
  }
}
.activity_contributor {
  color: #fff;
  background: #00253E;
  padding: 30px;
}
.activity_contributor ul li {
  margin-bottom: 10px;
}
.activity_contributor ul li a {
  font-size: 1.3rem;
  color: #FF6633;
  text-decoration: none;
}

.boxes [class*=col] {
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  .boxes [class*=col] {
    padding: 40px 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .boxes [class*=col] {
    padding: 50px 60px;
  }
}
@media only screen and (min-width: 1800px) {
  .boxes [class*=col] {
    padding: 75px 120px;
  }
}
.boxes [class*=col] [class*=col] {
  padding: 0 30px;
}
@media only screen and (min-width: 768px) {
  .boxes [class*=col] [class*=col] {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 992px) {
  .boxes [class*=col] [class*=col] {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .boxes [class*=col] [class*=col] {
    padding: 0 60px;
  }
}
.boxes__image {
  display: block;
  position: relative;
  width: 100%;
}
.boxes__image::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.boxes__image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .boxes__image {
    height: 100%;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .boxes__image::before {
    padding-top: 0;
  }
}
.boxes__map {
  display: block;
  position: relative;
  width: 100%;
}
.boxes__map::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.boxes__map img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 992px) {
  .boxes__map {
    height: 100%;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .boxes__map::before {
    padding-top: 0;
  }
}
.boxes__map img {
  width: 90%;
  height: 90%;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.curtain {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00253E;
  z-index: 100;
}
.curtain__main {
  display: none;
  opacity: 0;
}
.curtain_loader {
  position: absolute;
  width: 400px;
  top: 50%;
  left: 50%;
  background: #00253E;
  transform: translate(-50%, -50%);
}

.follow {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.follow li {
  margin-right: 1rem;
}
.follow li:last-child {
  margin-right: 0;
}
.follow li a {
  display: block;
  width: 15px;
}

.gallery {
  width: 100%;
}
.gallery_item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: initial;
  width: 100%;
  color: #00253E !important;
  background: #fff;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .gallery_item {
    margin-bottom: 60px;
  }
}
.gallery_item:last-child {
  margin-bottom: 0;
}
.gallery_item figure {
  width: 100%;
}
.gallery_item h1, .gallery_item h2, .gallery_item h3, .gallery_item h4, .gallery_item h5, .gallery_item h6 {
  font-weight: bold;
}
.gallery_item_heading {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex: 0 0 100%;
}
@media only screen and (min-width: 1200px) {
  .gallery_item_heading {
    padding-bottom: 35px;
    padding-bottom: 0;
  }
}
.gallery_item_title {
  flex: 0 0 100%;
  padding: 15px;
}
@media only screen and (min-width: 768px) {
  .gallery_item_title {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .gallery_item_title {
    flex: 0 0 75%;
  }
}
@media only screen and (min-width: 1200px) {
  .gallery_item_title {
    padding: 0 60px;
  }
}
.gallery_item_title h3 {
  margin-bottom: 0;
}
.gallery_item_title p, .gallery_item_title .p, .gallery_item_title .list, .gallery_item_title ol, .gallery_item_title .activity_content ul, .activity_content .gallery_item_title ul {
  margin-bottom: 5px;
}
.gallery_item_title p:last-child, .gallery_item_title .p:last-child, .gallery_item_title .list:last-child, .gallery_item_title ol:last-child, .gallery_item_title .activity_content ul:last-child, .activity_content .gallery_item_title ul:last-child {
  margin-bottom: 0;
}
.gallery_item_content {
  display: none;
  flex: 0 0 100%;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .gallery_item_content {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .gallery_item_content {
    flex: 0 0 33.33333334%;
    padding: 0 30px 35px;
  }
  .gallery_item_content:nth-child(3n) {
    padding-left: 60px;
  }
  .gallery_item_content:nth-child(3n+2) {
    padding-right: 60px;
  }
}
.gallery_item_content h6 {
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .gallery_item_content h6 {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .gallery_item_content p, .gallery_item_content .p, .gallery_item_content .list, .gallery_item_content ol, .gallery_item_content .activity_content ul, .activity_content .gallery_item_content ul {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .gallery_item_content p:last-child, .gallery_item_content .p:last-child, .gallery_item_content .list:last-child, .gallery_item_content ol:last-child, .gallery_item_content .activity_content ul:last-child, .activity_content .gallery_item_content ul:last-child {
    margin-bottom: 0;
  }
}
.gallery_item_mention .gallery_item_heading {
  padding-bottom: 35px;
}
.gallery_item_mention .gallery_item_content.gallery_item_message {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .gallery_item_mention .gallery_item_content.gallery_item_message {
    flex: 0 0 66.66666667%;
    padding: 0 60px 35px;
  }
}
.gallery_popup_trigger {
  position: absolute;
  width: 60px;
  top: 0;
  right: 0;
  background: #FF6633;
  transform: translateY(-100%);
  transition: background 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .gallery_popup_trigger {
    width: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .gallery_popup_trigger {
    position: relative;
    transform: none;
  }
}
@media only screen and (min-width: 1800px) {
  .gallery_popup_trigger {
    flex: 0 0 150px;
    width: auto;
  }
}
.gallery_popup_trigger:hover {
  background: #D93800;
}
.gallery_popup_trigger::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gallery_popup_trigger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: transparent url(../images/icons/icon-expand.svg) no-repeat center;
  background-size: 35%;
}

.hero_home {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .hero_home {
    height: 100vh;
    height: 100svh;
  }
}
@media only screen and (min-width: 1200px) {
  .hero_home {
    height: calc(100vh - 61px);
    margin-top: 61px;
  }
}

.hero_home a {
  text-decoration: underline;
}

.hero_home p, .hero_home .p, .hero_home .list, .hero_home ol, .hero_home .activity_content ul, .activity_content .hero_home ul {
  line-height: 1.3;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .hero_home p, .hero_home .p, .hero_home .list, .hero_home ol, .hero_home .activity_content ul, .activity_content .hero_home ul {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1800px) {
  .hero_home p, .hero_home .p, .hero_home .list, .hero_home ol, .hero_home .activity_content ul, .activity_content .hero_home ul {
    font-size: 1.4rem;
  }
}
.hero_home p:last-child, .hero_home .p:last-child, .hero_home .list:last-child, .hero_home ol:last-child, .hero_home .activity_content ul:last-child, .activity_content .hero_home ul:last-child {
  margin-bottom: 0;
}

.hero_home .hero_logo {
  display: block;
  position: absolute;
  width: calc(100% - 145px);
  max-width: 950px;
  top: 15px;
  left: 15px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .hero_home .hero_logo {
    width: 60%;
    top: 25px;
    left: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .hero_home .hero_logo {
    width: calc(70% - 60px);
  }
}
@media only screen and (min-width: 1200px) {
  .hero_home .hero_logo {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .hero_home .hero_bg {
    height: calc(100vh - 250px);
    height: calc(100svh - 250px);
  }
}
@media only screen and (min-width: 1200px) {
  .hero_home .hero_bg {
    height: calc(100vh - 61px);
  }
}
.hero_home .hero_bg video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@media only screen and (min-width: 1200px) {
  .hero_home.hero_phase_1 .hero_main {
    display: grid;
    grid-template-columns: 1fr 450px;
  }
}

.hero_home.hero_phase_1 .hero_content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .hero_home.hero_phase_1 .hero_content {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1200px) {
  .hero_home.hero_phase_1 .hero_content {
    flex-direction: column;
    border-top: 1px solid #00253E;
    border-left: 1px solid #00253E;
  }
}

.hero_home.hero_phase_1 .hero_content_heading {
  padding: 50px 30px 30px;
}
.hero_home.hero_phase_1 .hero_content_heading .h4 {
  font-weight: bold;
}

.hero_home.hero_phase_1 .hero_button {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 150px;
  padding: 30px;
  background: #FF6633;
  text-transform: uppercase;
  font-size: 1.35rem;
  font-weight: bold;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .hero_home.hero_phase_1 .hero_button {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 250px;
    width: 400px;
  }
}
@media only screen and (orientation: landscape) and (min-width: 1200px) and (max-height: 900px) {
  .hero_home.hero_phase_1 .hero_button {
    max-height: 25vh;
    max-height: 25svh;
  }
}
@media only screen and (min-width: 1200px) {
  .hero_home.hero_phase_1 .hero_button {
    width: auto;
  }
}
.hero_home.hero_phase_1 .hero_button:hover {
  background: #D93800;
  text-decoration: none;
}
.hero_home.hero_phase_1 .hero_button img {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.hero_home.hero_phase_1 .hero_button.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.juries {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .juries {
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 992px) {
  .juries {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media only screen and (min-width: 1200px) {
  .juries {
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 1800px) {
  .juries {
    margin-right: -40px;
    margin-left: -40px;
  }
}
.juries_item {
  flex: 0 0 100%;
  max-width: 425px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .juries_item {
    flex: 0 0 50%;
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) {
  .juries_item {
    flex: 0 0 25%;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .juries_item {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1800px) {
  .juries_item {
    padding: 0 40px;
  }
}
.juries_item p, .juries_item .p, .juries_item .list, .juries_item ol, .juries_item .activity_content ul, .activity_content .juries_item ul {
  font-size: 1.2rem;
}
.juries_image {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}
.juries_image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.juries_image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .juries_image {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .juries_image {
    width: 100%;
    margin-bottom: 35px;
  }
}
.juries_header {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .juries_header {
    margin-bottom: 20px;
  }
}
.juries_header h1,
.juries_header h2,
.juries_header h3,
.juries_header h4,
.juries_header h5,
.juries_header h6,
.juries_header .h1,
.juries_header .h2,
.juries_header .h3,
.juries_header .h4,
.juries_header .h5,
.juries_header .h6 {
  margin-bottom: 5px;
}
.juries_description {
  margin-bottom: 5px;
}
.juries_social {
  display: block;
}
.juries_social li {
  display: inline-block;
  margin: 0 5px 0 0;
}
.juries_social li a {
  display: inline-block;
  width: 32px;
  background: #fff;
  border-radius: 50%;
  height: 32px;
  text-align: center;
  padding-top: 7px;
}
.juries_social li a img {
  height: 70%;
}
.juries_website a {
  font-size: 1rem;
  color: #fff;
  text-decoration: underline;
}
.juries_in_process {
  height: 300px;
  display: flex;
  align-items: center;
}

#login_section {
  display: grid;
  grid-template-columns: 100%;
  min-height: calc(100vh - 50px);
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  #login_section {
    min-height: calc(100vh - 71px);
  }
}
@media only screen and (min-width: 992px) {
  #login_section {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1200px) {
  #login_section {
    grid-template-columns: 1fr 500px;
    min-height: calc(100vh - 138px);
    padding: 75px 120px;
  }
}
#login_section .login_image {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  padding: 35px !important;
}
#login_section .login_image picture {
  display: block;
  position: relative;
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
#login_section .login_image picture::before {
  content: "";
  display: block;
  padding-top: 0;
}
#login_section .login_image picture img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#login_section .login_image svg {
  position: relative;
  max-width: 1700px;
}
#login_section .login_content {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 30px !important;
}
@media only screen and (min-width: 768px) {
  #login_section .login_content {
    padding: 40px !important;
  }
}
#login_section .login_content form {
  flex: 0 0 100%;
}
#login_section .login_content form .login-options {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) {
  #login_section .login_content form .login-options {
    align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  #login_section .login_content form .login-options {
    flex-direction: column;
  }
}
#login_section .login_content form .login-options a {
  font-size: 1rem;
}
#login_section .login_content form .login-options .form-text {
  text-align: right;
}
@media only screen and (max-width: 575px) {
  #login_section .login_content form .login-options .form-text {
    align-self: center;
  }
}
#login_section .login_content form .window-separator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  text-align: center;
  width: 100%;
  padding: 35px 0;
}
#login_section .login_content form .window-separator::before, #login_section .login_content form .window-separator::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #D8D8D8;
}
#login_section .login_content form .window-separator .text {
  display: inline-block;
  padding: 8px 24px;
  font-size: 1rem;
  flex-shrink: 0;
}

#signup_section .login_wrap {
  padding: 30px;
  min-height: calc(100vh - 50px);
}
@media only screen and (min-width: 768px) {
  #signup_section .login_wrap {
    min-height: calc(100vh - 71px);
  }
}
@media only screen and (min-width: 1200px) {
  #signup_section .login_wrap {
    min-height: calc(100vh - 138px);
    padding: 75px 120px;
  }
}

#signup_section .login_content {
  max-width: 600px;
  padding: 30px;
  margin-inline: auto;
}

#reset_password_section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 50px);
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  #reset_password_section {
    min-height: calc(100vh - 71px);
  }
}
@media only screen and (min-width: 1200px) {
  #reset_password_section {
    min-height: calc(100vh - 138px);
    padding: 75px 120px;
  }
}

#reset_password_section .login_content {
  max-width: 500px;
  padding: 30px;
}

#jury_login_section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 50px);
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  #jury_login_section {
    min-height: calc(100vh - 71px);
  }
}
@media only screen and (min-width: 1200px) {
  #jury_login_section {
    min-height: calc(100vh - 138px);
    padding: 75px 120px;
  }
}

#jury_login_section .login_content {
  width: 100%;
  max-width: 500px;
  padding: 30px;
}

#login_section form form-field,
#signup_section form-field,
#reset_password_section form-field {
  display: block;
  margin-bottom: 25px;
}

.mosaic_item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mosaic_item_overlay {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  width: 100%;
  height: calc(100% + 5px);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.mosaic_item_overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00253E;
  opacity: 0.8;
}
.mosaic_item_overlay:hover {
  opacity: 1;
}
.mosaic_item_overlay_content {
  position: relative;
  width: 100%;
  padding: 30px;
}
.mosaic_item_overlay_content h3 {
  margin-bottom: 5px;
}
.mosaic_item_overlay_content p, .mosaic_item_overlay_content .p, .mosaic_item_overlay_content .list, .mosaic_item_overlay_content ol, .mosaic_item_overlay_content .activity_content ul, .activity_content .mosaic_item_overlay_content ul {
  font-size: 18px;
  margin-bottom: 0;
}

.news {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: -40px;
}
.news_item {
  flex: 0 0 100%;
  text-decoration: none !important;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .news_item {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 992px) {
  .news_item {
    flex: 0 0 33.33333334%;
  }
}
.news_image {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.news_image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.news_image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_image img {
  transition: transform 0.3s;
}
.news_date {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.news_date span {
  position: relative;
  padding: 6px 10px 0 13px;
}
.news_date span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  top: 50%;
  left: 0;
  background: #00253E;
  transform: translateY(-50%);
}
.news_date span:first-child {
  padding-left: 0;
}
.news_date span:first-child::before {
  display: none;
}
.news_place {
  font-size: 1rem;
}
.news_title {
  font-size: 2rem;
  line-height: 1.2;
  transition: color 0.3s;
}
@media only screen and (min-width: 1800px) {
  .news_title {
    font-size: 2.4rem;
  }
}
.news_item:hover .news_image img {
  transform: scale(1.1) translateZ(0);
}
.news_item:hover .news_title {
  color: #FF6633;
}

.separator {
  position: relative;
  width: 100%;
}
.separator::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media only screen and (min-width: 992px) {
  .separator::before {
    padding-top: 40%;
  }
}
.separator figure {
  display: block;
  position: relative;
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.separator figure::before {
  content: "";
  display: block;
  padding-top: 0;
}
.separator figure img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.separator .swiper-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sponsors {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: -30px;
  margin-left: -30px;
  margin-bottom: 30px;
}
.sponsors_item {
  display: block;
  flex: 0 0 50%;
  padding: 10px 25px;
}
@media only screen and (min-width: 768px) {
  .sponsors_item {
    flex: 0 0 20%;
  }
}
.sponsors_item figure {
  display: block;
  position: relative;
  width: 100%;
}
.sponsors_item figure::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.sponsors_item figure img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.video {
  display: block;
  position: relative;
  width: 100%;
}
.video::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.video img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.3;
}
.video_horizontal::before {
  padding-top: 50%;
}
.video_button {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 50%;
  background: #FF6633 url(../images/icons/icon-play.svg) no-repeat center;
  background-size: 35%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
  cursor: pointer;
  z-index: 1;
}
.video_button::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.video_button:hover {
  background: #D93800 url(../images/icons/icon-play.svg) no-repeat center;
  background-size: 35%;
}

.winners {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .winners {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media only screen and (min-width: 1440px) {
  .winners {
    margin-right: -40px;
    margin-left: -40px;
  }
}
.winners_item {
  flex: 0 0 100%;
}
@media only screen and (min-width: 768px) {
  .winners_item {
    flex: 0 0 50%;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 992px) {
  .winners_item {
    flex: 0 0 25%;
  }
}
@media only screen and (min-width: 1440px) {
  .winners_item {
    padding: 0 40px;
  }
}
.winners_item_bg {
  display: block;
  position: relative;
  width: 100%;
}
.winners_item_bg::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.winners_item_bg img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.winners_item_info {
  color: #00253E;
  padding-top: 20px;
}
.winners_item_info p, .winners_item_info .p, .winners_item_info .list, .winners_item_info ol, .winners_item_info .activity_content ul, .activity_content .winners_item_info ul {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 5px;
}

#newsletter ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
#newsletter ::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
#newsletter :-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
#newsletter :-moz-placeholder {
  /* Firefox 18- */
  color: white;
}

#mc_embed_signup .button, #mc_embed_signup .pagination > div a, .pagination > div #mc_embed_signup a {
  width: 100%;
}

.certamen #newsletter_section {
  border-top: 1px solid #0C395A;
}

#faqs_section .h6.title {
  text-align: center;
}

#faqs_section .faq-category {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#faqs_section .faq-category-trigger {
  justify-content: space-between;
  width: 100%;
  padding: 30px 0 !important;
  border-bottom: 1px solid #b7b7b7;
  text-align: left;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  color: #fff;
  cursor: pointer;
}
#faqs_section .faq-category-trigger:hover, #faqs_section .faq-category-trigger:hover > b-icon::before, #faqs_section .faq-category-trigger:focus-visible, #faqs_section .faq-category-trigger:focus-visible > b-icon::before {
  border-color: #e9e9e9;
}
#faqs_section .faq-category-trigger .faq-category-title {
  margin-bottom: 0;
  font-weight: bold;
}
#faqs_section .faq-category-trigger > b-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  transition: transform 0.2s ease-in-out;
}
@media only screen and (min-width: 992px) {
  #faqs_section .faq-category-trigger > b-icon {
    height: 30px;
    width: 30px;
  }
}
#faqs_section .faq-category-trigger > b-icon::before {
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-color: #b7b7b7;
  transform: rotate(45deg);
}

#faqs_section .faq-category.uncollapsed .faq-category-trigger b-icon {
  transform: rotate(180deg);
}

#faqs_section .faq-category.uncollapsed .faq-category-trigger {
  border-color: transparent !important;
}

#faqs_section .faq-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-bottom: 50px;
}

#faqs_section .faq-item {
  padding: 0;
  background-color: #0C395A;
}
#faqs_section .faq-item button {
  width: 100%;
  padding: 20px;
  text-align: left;
  border: 1px solid transparent;
  font-family: "Founders Grotesk", Helvetica, Arial, sans-serif;
  color: #fff;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  #faqs_section .faq-item button {
    padding: 40px;
  }
}
#faqs_section .faq-item button:hover .faq-question, #faqs_section .faq-item button:focus-visible .faq-question {
  text-decoration: underline;
}
#faqs_section .faq-item .faq-question, #faqs_section .faq-item .faq-answer p, #faqs_section .faq-item .faq-answer .p, #faqs_section .faq-item .faq-answer .list, #faqs_section .faq-item .faq-answer ol, #faqs_section .faq-item .faq-answer .activity_content ul, .activity_content #faqs_section .faq-item .faq-answer ul {
  max-width: 1000px;
  margin: 0;
  word-break: break-word;
}
#faqs_section .faq-item .faq-answer {
  padding: 20px;
  font-weight: 300;
}
@media only screen and (min-width: 992px) {
  #faqs_section .faq-item .faq-answer {
    padding: 40px;
  }
}
#faqs_section .faq-item.uncollapsed button {
  padding-bottom: 15px;
}
#faqs_section .faq-item.uncollapsed .faq-answer {
  padding-top: 0;
}

#faqs_section .faq-question-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
#faqs_section .faq-question-wrapper b-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  transition: transform 0.2s ease-in-out;
}
@media only screen and (min-width: 992px) {
  #faqs_section .faq-question-wrapper b-icon {
    height: 30px;
    width: 30px;
  }
}
#faqs_section .faq-question-wrapper b-icon::before, #faqs_section .faq-question-wrapper b-icon::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
#faqs_section .faq-question-wrapper b-icon::after {
  position: absolute;
  transform: rotate(90deg);
}

#faqs_section .faq-item.uncollapsed b-icon {
  transform: rotate(45deg);
}

.header, .header-contest {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #F4F1EA;
  padding: 15px 15px 10px;
  z-index: 100;
  transition: background 0.3s;
}
@media only screen and (min-width: 768px) {
  .header, .header-contest {
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .header, .header-contest {
    padding: 0 30px;
  }
}
.header hr, .header-contest hr {
  display: block;
  width: 1px;
  height: 61px;
  margin: 0 15px;
  border: 0;
  background: #00253E;
  transform: translateY(-1px);
}
.header_logo {
  position: absolute;
  width: 100px;
  left: 15px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .header_logo {
    width: 150px;
    left: 30px;
  }
}
.header_menu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00253E;
  padding: 72px 15px 15px;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .header_menu {
    padding: 115px 30px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .header_menu {
    display: block !important;
    position: relative;
    height: auto;
    width: auto;
    top: auto;
    left: auto;
    background: transparent;
    padding: 0;
    opacity: 1 !important;
  }
}
.header_menu::before, .header_menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 1200px) {
  .header_menu::before, .header_menu::after {
    display: none;
  }
}
.header_menu::before {
  background: #00253E;
}
.header_actions {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding-right: 40px;
}
@media only screen and (min-width: 1200px) {
  .header_actions {
    padding-right: 0;
  }
}
.header_trigger {
  position: absolute;
  width: 57px;
  height: 100%;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .header_trigger {
    width: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .header_trigger {
    display: none;
  }
}
.header_trigger span {
  position: absolute;
  width: 25px;
  height: 2px;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .header_trigger span {
    width: 20px;
  }
}
.header_trigger span:nth-child(1) {
  top: calc(50% - 4px);
}
.header_trigger span:nth-child(4) {
  top: calc(50% + 4px);
}

body[data-path=home] .header, body[data-path=home] .header-contest {
  background: transparent;
}
@media only screen and (min-width: 1200px) {
  body[data-path=home] .header, body[data-path=home] .header-contest {
    background: #F4F1EA;
  }
}
body[data-path=home] .header.has-bg, body[data-path=home] .has-bg.header-contest {
  background: #F4F1EA;
}
body[data-path=home] .header.has-bg .header_trigger span, body[data-path=home] .has-bg.header-contest .header_trigger span {
  background: #00253E;
}
body[data-path=home] .header.has-bg .profile_button::before, body[data-path=home] .has-bg.header-contest .profile_button::before {
  background: transparent url(../images/icons/lock.svg) no-repeat center;
  background-size: contain;
}
body[data-path=home] .header.has-bg .profile_button a, body[data-path=home] .has-bg.header-contest .profile_button a {
  color: #00253E;
}
body[data-path=home] .header:not(.has-bg) .header_trigger span, body[data-path=home] .header-contest:not(.has-bg) .header_trigger span {
  background-color: #ffffff !important;
}
body[data-path=home] .header_logo {
  opacity: 0;
  transition: opacity 0.3s;
}
body[data-path=home] .header_logo.no-visible {
  opacity: 0 !important;
}
body[data-path=home] .header_logo.visible {
  opacity: 1 !important;
}
body[data-path=home] .header.nav-is-open .header_logo, body[data-path=home] .nav-is-open.header-contest .header_logo {
  opacity: 1 !important;
}
body[data-path=home] .header.nav-is-open .header_logo.no-visible, body[data-path=home] .nav-is-open.header-contest .header_logo.no-visible, body[data-path=home] .header.nav-is-open .header_logo.visible, body[data-path=home] .nav-is-open.header-contest .header_logo.visible {
  opacity: 1 !important;
}
body[data-path=home] .header.nav-is-open .dropdown_user .dropdown-toggle span, body[data-path=home] .nav-is-open.header-contest .dropdown_user .dropdown-toggle span {
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  body[data-path=home] .header:not(.has-bg) .dropdown_user .dropdown-toggle::after, body[data-path=home] .header-contest:not(.has-bg) .dropdown_user .dropdown-toggle::after {
    background: transparent url(../images/icons/chevron-down-white.svg) no-repeat center;
    background-size: contain;
  }
}
@media only screen and (max-width: 1199px) {
  body[data-path=home] .header:not(.has-bg) .dropdown_user .dropdown-toggle span, body[data-path=home] .header-contest:not(.has-bg) .dropdown_user .dropdown-toggle span {
    display: none !important;
  }
}

body:not([data-path=home]) .header_logo {
  opacity: 1 !important;
}

body[data-path^="actividad/"] .header, body[data-path^="actividad/"] .header-contest {
  border-bottom: 5px solid #FF6633;
}

.dropdown_user button span {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 1199px) {
  .header, .header-contest {
    height: 71px;
  }
  .header:not(.nav-is-open) .header_trigger span, .header-contest:not(.nav-is-open) .header_trigger span {
    background-color: #000 !important;
  }
  body:not([data-path=home]) .header:not(.nav-is-open) .profile_button a, body:not([data-path=home]) .header-contest:not(.nav-is-open) .profile_button a {
    color: #00253E;
  }
  body:not([data-path=home]) .header:not(.nav-is-open) .profile_button::before, body:not([data-path=home]) .header-contest:not(.nav-is-open) .profile_button::before {
    background: transparent url(../images/icons/lock.svg) no-repeat center !important;
  }
  /* Make logo resize on scroll on mobile */
  body[data-path=home] :not(.has-bg) .header_logo {
    transform: scale(1.4);
  }
  body[data-path=home] .header_logo {
    transform-origin: top left;
    transition: transform 0.2s ease-in-out;
  }
}
.footer {
  display: none;
  border-top: 1px solid #E6EAEA;
  padding-right: 60px;
  padding-left: 60px;
}
@media only screen and (min-width: 1200px) {
  .footer {
    display: block;
  }
}

ul.credits {
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  ul.credits {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  ul.credits {
    text-align: right;
    margin-bottom: 0;
  }
}
ul.credits li {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  ul.credits li {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  ul.credits li {
    display: inline-block;
    font-size: 1rem;
    border-left: 1px solid #E6EAEA;
    margin-bottom: 0;
  }
  ul.credits li.facebook, ul.credits li.instagram {
    display: none;
  }
}
ul.credits li a {
  color: #fff;
  font-size: inherit;
}
@media only screen and (min-width: 1200px) {
  ul.credits li a {
    display: block;
    color: #00253E;
    padding: 30px 25px;
  }
}

@media only screen and (min-width: 992px) {
  ul.legal {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  ul.legal {
    position: relative;
    bottom: auto;
    left: auto;
  }
}
ul.legal li {
  display: inline-block;
  margin-right: 10px;
}
ul.legal li.copyright {
  display: block;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  ul.legal li.copyright {
    display: inline-block;
    margin-bottom: 0;
  }
}
ul.legal li a {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
  ul.legal li a {
    color: #00253E;
    font-size: 1rem;
  }
}

.navigation {
  position: relative;
  height: 100%;
  z-index: 1;
}
.navigation_wrap {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: inherit;
}
@media only screen and (min-width: 992px) {
  .navigation_wrap {
    flex-flow: row wrap;
    align-items: center;
  }
}
.navigation_wrap .follow {
  margin-top: 4rem;
}
.navigation_wrap .follow li {
  margin-bottom: 0;
}
.navigation_wrap .follow li a {
  width: 30px;
  margin: 0;
  margin-right: 2rem;
}
.navigation nav {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .navigation nav {
    width: auto;
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation nav {
    flex: 0 0 auto;
  }
}
.navigation nav ul li {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul li {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.navigation nav ul li a, .navigation nav ul li .has-dropdown-link {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .navigation nav ul li a, .navigation nav ul li .has-dropdown-link {
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul li a, .navigation nav ul li .has-dropdown-link {
    color: #00253E;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
  }
}
.navigation nav ul li.has-dropdown {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul li.has-dropdown {
    margin-right: 15px;
  }
}
.navigation nav ul li.has-dropdown .has-dropdown-link {
  position: relative;
  cursor: pointer;
}
.navigation nav ul li.has-dropdown .has-dropdown-link::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: calc(50% - 10px);
  right: -40px;
  background: transparent url(../images/icons/plus.svg) no-repeat center;
  background-size: 100%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul li.has-dropdown .has-dropdown-link::after {
    width: 10px;
    height: 10px;
    top: auto;
    right: auto;
    border: 0;
    background: transparent url(../images/icons/chevron-down.svg) no-repeat center;
    background-size: contain;
    margin-left: 10px;
    transform: translateY(-1px);
    vertical-align: middle;
  }
}
.navigation nav ul li.has-dropdown .dropdown-menu {
  margin-top: 0 !important;
}
.navigation nav ul li.has-dropdown:hover .dropdown-menu {
  display: block;
}
.navigation nav ul li.active a {
  color: #FF6633;
  text-decoration: none;
}
.navigation nav ul li.navigation_cta a {
  background: #FF6633;
  text-decoration: none;
  padding: 18px 30px 10px;
  transition: background 0.3s;
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul li.navigation_cta a {
    padding: 15px 30px 10px;
  }
  .navigation nav ul li.navigation_cta a:hover {
    background: #D93800;
  }
}
.navigation nav ul li.navigation_cta.active a {
  color: #fff;
  background: #FF6633;
}
.navigation nav ul.navigation_lang {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 992px) {
  .navigation nav ul.navigation_lang {
    position: initial;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul.navigation_lang {
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }
}
.navigation nav ul.navigation_lang li {
  display: block;
  text-align: right;
}
@media only screen and (min-width: 992px) {
  .navigation nav ul.navigation_lang li {
    display: inline-block;
    text-align: left;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul.navigation_lang li {
    margin-right: 0;
  }
}
.navigation nav ul.navigation_lang li a {
  font-size: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul.navigation_lang li a {
    font-size: 1rem;
  }
}
.navigation nav ul.navigation_lang li.active a {
  text-decoration: underline;
}
.navigation nav ul.navigation_follow {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .navigation nav ul.navigation_follow {
    display: inline-block;
  }
}
.navigation nav ul.navigation_follow li a {
  width: 15px;
  transform: translateY(2px);
}
.navigation_footer {
  width: 100%;
  color: #fff;
}
@media only screen and (min-width: 992px) {
  .navigation_footer {
    width: auto;
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation_footer {
    display: none;
  }
}
.navigation_footer div[class*=col] {
  position: initial;
}

@media only screen and (max-width: 992px) {
  .navigation_wrap {
    flex-flow: column;
  }
}
@media only screen and (max-width: 992px) and (max-height: 460px) {
  .navigation_wrap .follow {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .navigation_wrap .credits {
    margin-bottom: 15px;
  }
}
.participation {
  min-height: calc(100vh - 138px);
}
.participation .container {
  max-width: 1180px;
}

.disclaimer {
  position: relative;
}
.disclaimer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.4;
}
.disclaimer_header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .disclaimer_header {
    padding: 30px 40px;
  }
}
.disclaimer_header *, .disclaimer_header *::after, .disclaimer_header *::before {
  display: inline-block;
}
.disclaimer_header h1, .disclaimer_header h2, .disclaimer_header h3, .disclaimer_header h4, .disclaimer_header h5, .disclaimer_header h6,
.disclaimer_header .h1, .disclaimer_header .h2, .disclaimer_header .h3, .disclaimer_header .h4, .disclaimer_header .h5, .disclaimer_header .h6 {
  line-height: 1;
  margin-top: 9px;
}
@media only screen and (min-width: 768px) {
  .disclaimer_header h1, .disclaimer_header h2, .disclaimer_header h3, .disclaimer_header h4, .disclaimer_header h5, .disclaimer_header h6,
  .disclaimer_header .h1, .disclaimer_header .h2, .disclaimer_header .h3, .disclaimer_header .h4, .disclaimer_header .h5, .disclaimer_header .h6 {
    margin-bottom: 0;
  }
}
.disclaimer_header .button, .disclaimer_header .pagination > div a, .pagination > div .disclaimer_header a {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .disclaimer_header .button, .disclaimer_header .pagination > div a, .pagination > div .disclaimer_header a {
    display: inline-block;
    width: auto;
  }
}
.disclaimer_content {
  position: relative;
  border-top: 1px solid #00253E;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .disclaimer_content {
    padding: 30px 40px;
  }
}
.disclaimer_content p, .disclaimer_content .p, .disclaimer_content .list, .disclaimer_content ol, .disclaimer_content .activity_content ul, .activity_content .disclaimer_content ul {
  font-size: 18px;
}
.disclaimer_content p:last-child, .disclaimer_content .p:last-child, .disclaimer_content .list:last-child, .disclaimer_content ol:last-child, .disclaimer_content .activity_content ul:last-child, .activity_content .disclaimer_content ul:last-child, .disclaimer_content p:last-of-type, .disclaimer_content .p:last-of-type, .disclaimer_content .list:last-of-type, .disclaimer_content ol:last-of-type, .disclaimer_content .activity_content ul:last-of-type, .activity_content .disclaimer_content ul:last-of-type {
  margin-bottom: 0;
}
.disclaimer_warning {
  position: relative;
  padding-left: 30px;
}
.disclaimer_warning::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: -5px;
  left: 0;
  background: #F1C40F url(../images/icons/icon-exclamation.svg) no-repeat center;
  background-size: auto 60%;
  border-radius: 50%;
}

.participacion .your-entries-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.participacion .entries {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .participacion .entries {
    grid-template-columns: repeat(3, 1fr);
  }
}

.participacion .category-container {
  margin-bottom: 50px;
}

.participacion .entries-item image-container {
  position: relative;
  display: block;
  margin-bottom: 20px;
  aspect-ratio: 1;
  cursor: pointer;
}
.participacion .entries-item image-container:hover .entries-tools {
  opacity: 1;
}
.participacion .entries-item image-container .entries-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.participacion .entries-item hm-container {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.participacion .entries-item hm-container img {
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.participacion .entries-info h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media only screen and (min-width: 768px) {
  .participacion .entries-info h3 {
    font-size: 1.2rem;
  }
}

.participacion .entries-tools {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) {
  .participacion .entries-tools {
    opacity: 0;
    transition: opacity 0.3s;
  }
}
.participacion .entries-tools::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
}
@media only screen and (min-width: 1200px) {
  .participacion .entries-tools::before {
    opacity: 0.4;
  }
}
.participacion .entries-tools button {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.4);
  pointer-events: visible;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  .participacion .entries-tools button {
    box-shadow: 0px;
    transition: box-shadow 0.3s;
  }
}
.participacion .entries-tools button:nth-child(1) {
  right: 65px;
  top: 15px;
  right: 15px;
  bottom: auto;
}
.participacion .entries-tools button:nth-child(2) {
  right: 15px;
  top: 65px;
  right: 15px;
  bottom: auto;
}
.participacion .entries-tools button:hover {
  box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.4);
}
.participacion .entries-tools button img {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translate(-50%, -50%);
}

.photo_exif_data ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: initial;
  margin-top: 10px;
  margin-right: -15px;
  margin-left: -15px;
}
.photo_exif_data ul li {
  flex: 0 0 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .photo_exif_data ul li {
    flex: 0 0 33.33333334%;
  }
}
.photo_exif_data ul li span {
  display: block;
  font-size: 1rem;
  font-style: normal;
}
.photo_exif_data ul li span:first-child {
  font-weight: bold;
  margin-bottom: 5px;
}

@media only screen and (min-width: 1200px) {
  .header-contest {
    height: 61px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-contest .header_menu {
    display: none !important;
  }
}
.header-contest_tools {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.header-contest_tools nav ul li a {
  color: #00253E;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
.header-contest hr {
  height: 36px;
  transform: translateY(-2px);
}
.header-contest .dropdown_user {
  transform: translatey(-2px);
}
@media only screen and (min-width: 1200px) {
  .header-contest .navigation nav {
    margin-left: 15px;
  }
}
.header-contest .navigation nav ul.navigation_lang li:first-child {
  margin-left: 0;
}
.header-contest.nav-is-open .header-contest_tools > nav ul li a {
  color: #fff;
}
.header-contest.nav-is-open .dropdown_user .dropdown-toggle span {
  color: #fff;
}
.header-contest.nav-is-open .dropdown_user .dropdown-toggle::after {
  background: transparent url(../images/icons/chevron-down-white.svg) no-repeat center;
  background-size: contain;
}

.participations {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .participations {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.participations picture.duplicated {
  border-top: 2px solid;
  -o-border-image: repeating-linear-gradient(90deg, #333333, black 10px, yellow 10px, yellow 20px) 20;
     border-image: repeating-linear-gradient(90deg, #333333, black 10px, yellow 10px, yellow 20px) 20;
}
.participations_filter select {
  width: 150px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  background: transparent url(../images/icons/chevron-down-white.svg) no-repeat calc(100% - 10px);
  background-size: 10px;
}
.participations_filter select:focus-visible {
  border: 1px solid #fff;
}
.participations_filter select option {
  color: #00253E;
  font-weight: normal;
}
.participations_item {
  position: relative;
  flex: 0 0 100%;
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .participations_item {
    flex: 0 0 33.33333334%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.participations_image {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
}
.participations_image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.participations_image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.participations_tools {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) {
  .participations_tools {
    opacity: 0;
    transition: opacity 0.3s;
  }
}
.participations_tools::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
}
@media only screen and (min-width: 1200px) {
  .participations_tools::before {
    opacity: 0.4;
  }
}
.participations_shortcuts {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
}
.participations_shortcuts_scoring button {
  width: 30px !important;
  height: 30px !important;
}
.participations_checks {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
}
.participations_debate {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
}
.participations_debate button:first-child {
  margin-left: 0;
}
.participations_debate_average {
  position: absolute !important;
  width: 50px !important;
  height: 50px !important;
  bottom: 15px;
  left: 15px;
  font-size: 23px;
}
.participations_prizes {
  position: absolute;
  bottom: 45px;
  left: 50px;
}
.participations_prizes_gold {
  background: #FFD700 !important;
}
.participations_prizes_silver {
  background: #BEC2CB !important;
}
.participations_prizes_bronze {
  background: #CD7F32 !important;
}
.participations button {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
  color: #00253E;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.4);
  margin-left: 10px;
  pointer-events: visible;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  .participations button {
    box-shadow: 0px;
    transition: all 0.5s;
  }
}
.participations button:first-of-type {
  margin-left: 0;
}
.participations button:hover {
  background: #ececec;
}
@media only screen and (min-width: 1200px) {
  .participations button:hover {
    box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.4);
  }
}
.participations button.selected {
  color: #fff;
  background: #FF6633;
}
.participations button.selected:hover {
  color: #fff;
  background: #D93800;
}
.participations button svg {
  position: absolute;
  max-width: 18px;
  max-height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1200px) {
  .participations button svg path {
    transition: all 0.5s;
  }
}
.participations button.finalist {
  background: #FF6633;
}
.participations button.finalist:hover {
  background: #D93800;
}
.participations button.finalist svg path {
  fill: #ffffff;
}
.participations button.hm-empathy {
  background: #9b59b6;
}
.participations button.hm-empathy:hover {
  background: #8e44ad;
}
.participations button.hm-empathy svg path {
  fill: #ffffff;
}
.participations button.hm-positive {
  background: #1abc9c;
}
.participations button.hm-positive:hover {
  background: #16a085;
}
.participations button.hm-positive svg path {
  fill: #ffffff;
}
.participations button.hm-mpa {
  background: #3498db;
}
.participations button.hm-mpa:hover {
  background: #2980b9;
}
.participations button.hm-mpa svg path {
  fill: #ffffff;
}
.participations_image:hover .participations_tools {
  opacity: 1;
}
.participations_modal {
  cursor: initial;
}
.participations_modal .modal-dialog {
  max-width: 580px;
}
.participations_modal .modal-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.participations_modal_image {
  position: relative;
  display: block;
  flex: 0 0 100%;
}
.participations_modal_image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4) url(../images/icons/icon-target-blank-white.svg) no-repeat center;
  background-size: 55px;
  opacity: 0;
  transition: opacity 0.4s;
}
.participations_modal_image picture {
  display: block;
  width: 100%;
  background: #000;
}
.participations_modal_image picture img {
  position: relative;
  width: 100%;
  max-height: 390px;
  -o-object-fit: contain;
     object-fit: contain;
}
.participations_modal_image:hover::after {
  opacity: 1;
}
.participations_modal_actions {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 0 0 100%;
}
.participations_modal_actions button {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: initial;
  width: auto;
  flex: 1 0 0%;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none !important;
  margin: 0;
  padding: 15px 10px 10px;
}
.participations_modal_actions button svg {
  position: relative;
  display: inline-block;
  top: initial;
  left: initial;
  margin-right: 5px;
  transform: translateY(-2px);
}
.participations_modal_actions button.finalist, .participations_modal_actions button.hm-empathy, .participations_modal_actions button.hm-positive, .participations_modal_actions button.hm-mpa {
  color: #00253E;
  background: transparent;
}
.participations_modal_actions button.finalist svg path, .participations_modal_actions button.hm-empathy svg path, .participations_modal_actions button.hm-positive svg path, .participations_modal_actions button.hm-mpa svg path {
  fill: #00253E;
}
.participations_modal_actions button.finalist:hover, .participations_modal_actions button.finalist.selected, .participations_modal_actions button.hm-empathy:hover, .participations_modal_actions button.hm-empathy.selected, .participations_modal_actions button.hm-positive:hover, .participations_modal_actions button.hm-positive.selected, .participations_modal_actions button.hm-mpa:hover, .participations_modal_actions button.hm-mpa.selected {
  color: #fff;
}
.participations_modal_actions button.finalist:hover svg path, .participations_modal_actions button.finalist.selected svg path, .participations_modal_actions button.hm-empathy:hover svg path, .participations_modal_actions button.hm-empathy.selected svg path, .participations_modal_actions button.hm-positive:hover svg path, .participations_modal_actions button.hm-positive.selected svg path, .participations_modal_actions button.hm-mpa:hover svg path, .participations_modal_actions button.hm-mpa.selected svg path {
  fill: #fff;
}
.participations_modal_actions button.finalist:hover {
  background: #FF6633;
}
.participations_modal_actions button.finalist.selected {
  background: #FF6633;
}
.participations_modal_actions button.finalist.selected:hover {
  background: #D93800;
}
.participations_modal_actions button.hm-empathy:hover {
  background: #9b59b6;
}
.participations_modal_actions button.hm-empathy.selected {
  background: #9b59b6;
}
.participations_modal_actions button.hm-empathy.selected:hover {
  background: #8e44ad;
}
.participations_modal_actions button.hm-positive:hover {
  background: #1abc9c;
}
.participations_modal_actions button.hm-positive.selected {
  background: #1abc9c;
}
.participations_modal_actions button.hm-positive.selected:hover {
  background: #16a085;
}
.participations_modal_actions button.hm-mpa:hover {
  background: #3498db;
}
.participations_modal_actions button.hm-mpa.selected {
  background: #3498db;
}
.participations_modal_actions button.hm-mpa.selected:hover {
  background: #2980b9;
}
.participations_modal_actions button .scoring {
  font-size: 20px;
  font-weight: bold;
}
.participations_modal_nav {
  position: fixed;
  width: 70px;
  top: 50vh;
  transform: translateY(-50%);
  transition: all 0.5s;
  cursor: pointer;
}
.participations_modal_nav::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.participations_modal_prev {
  left: 0;
  background: #F4F1EA url(../images/icons/icon-chevron-left.svg) no-repeat center;
  background-size: 25%;
}
.participations_modal_prev:hover {
  background: #EBE1CB url(../images/icons/icon-chevron-left.svg) no-repeat center;
  background-size: 25%;
}
.participations_modal_prev.participations_modal_nav-disabled {
  background: #6f6b63 url(../images/icons/icon-chevron-left.svg) no-repeat center;
  background-size: 25%;
  cursor: default;
}
.participations_modal_next {
  right: 0;
  background: #F4F1EA url(../images/icons/icon-chevron-right.svg) no-repeat center;
  background-size: 25%;
}
.participations_modal_next:hover {
  background: #EBE1CB url(../images/icons/icon-chevron-right.svg) no-repeat center;
  background-size: 25%;
}
.participations_modal_next.participations_modal_nav-disabled {
  background: #6f6b63 url(../images/icons/icon-chevron-right.svg) no-repeat center;
  background-size: 25%;
  cursor: default;
}

.profile h1, .profile h2, .profile h3, .profile h4, .profile h5, .profile h6,
.profile .h1, .profile .h2, .profile .h3, .profile .h4, .profile .h5, .profile .h6 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
}
.profile p, .profile .p, .profile .list, .profile ol, .profile .activity_content ul, .activity_content .profile ul {
  font-size: 18px;
  margin-bottom: 5px;
}
.profile p:last-child, .profile .p:last-child, .profile .list:last-child, .profile ol:last-child, .profile .activity_content ul:last-child, .activity_content .profile ul:last-child, .profile p:last-of-type, .profile .p:last-of-type, .profile .list:last-of-type, .profile ol:last-of-type, .profile .activity_content ul:last-of-type, .activity_content .profile ul:last-of-type {
  margin-bottom: 0;
}
.profile strong {
  font-weight: bold;
}
.profile hr {
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px solid #00253E;
  margin: 0;
}
.profile_content {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .profile_content {
    padding: 40px;
  }
}
.profile_content_group {
  margin-bottom: 20px;
}
.profile_content_group:last-child, .profile_content_group:last-of-type {
  margin-bottom: 0;
}
.profile_content_title {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.profile_content#qualifies_for_hm {
  background-color: #F4F1EA;
}
.profile_content#qualifies_for_hm title-wrapper {
  display: block;
  margin-bottom: 25px;
}
.profile_content#qualifies_for_hm title-wrapper .title {
  margin-bottom: 0px;
  font-size: 1.2rem;
  font-weight: bold;
}
.profile_content#qualifies_for_hm input,
.profile_content#qualifies_for_hm select,
.profile_content#qualifies_for_hm .form-check label::before {
  background-color: white;
}
.profile_user {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
}
@media only screen and (min-width: 992px) {
  .profile_user {
    text-align: center;
  }
}
.profile_user #personal_info-full_name {
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.profile_user_image {
  display: inline-block;
  position: relative;
  width: 65px;
}
@media only screen and (min-width: 768px) {
  .profile_user_image {
    width: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .profile_user_image {
    margin: 0 auto 20px;
  }
}
.profile_user_image picture {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.profile_user_image picture::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.profile_user_image picture img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile_user_image_badge {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  background: #3498DB url(../images/icons/validated.svg) no-repeat center;
  background-size: auto 45%;
  border-radius: 50%;
}
.profile_user_data {
  padding-left: 20px;
}
@media only screen and (min-width: 992px) {
  .profile_user_data {
    flex: 0 0 100%;
    padding: 0;
  }
}
.profile_not_validated .profile_image_badge {
  background: #F1C40F url(../images/icons/icon-exclamation.svg) no-repeat center;
  background-size: auto 60%;
}
.profile_anchor {
  position: relative;
  text-align: center;
  padding: 25px 20px 20px;
}
.profile_anchor::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.15;
}
.profile_anchor a {
  position: relative;
  color: white;
  text-transform: uppercase;
  padding: 0 20px;
}
.profile_anchor a::before, .profile_anchor a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% - 3px);
  left: 0;
  background: transparent url(../images/icons/chevron-down-white.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
.profile_anchor a::after {
  left: auto;
  right: 0;
}
.profile_button {
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  list-style: none;
  text-transform: uppercase;
}
.profile_button::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 20px;
  top: calc(50% - 2px);
  left: 0;
  background: transparent url(../images/icons/lock-white.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s;
}
@media only screen and (min-width: 1200px) {
  .profile_button::before {
    background: transparent url(../images/icons/lock.svg) no-repeat center;
    background-size: contain;
  }
}
.profile_button a {
  display: block;
  color: #fff;
  padding: 23px 10px;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .profile_button a {
    padding: 15px 15px 10px 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .profile_button a {
    color: #00253E;
  }
}
.profile_button span {
  display: none;
}
@media only screen and (min-width: 768px) {
  .profile_button span {
    display: block;
  }
}
.profile_nav_heading {
  padding: 40px 40px 20px;
}
.profile_nav ul li {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: 18px;
  border-top: 1px solid #00253E;
  padding: 25px 60px 20px 40px;
  transition: all 0.5s;
  cursor: pointer;
}
.profile_nav ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 15px;
  background: transparent url(../images/icons/icon-chevron-right.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
.profile_nav ul li:hover {
  background: #ececec;
}
.profile_nav ul li.active {
  color: #FF6633;
  background: #F4F1EA;
}
.profile_nav ul li.active::after {
  background: transparent url(../images/icons/icon-chevron-right-accent.svg) no-repeat center;
  background-size: contain;
}
.profile_nav ul li.active:hover {
  background: #EBE1CB;
}
.profile_nav_icon {
  position: relative;
  padding-left: 30px;
}
.profile_nav_icon svg {
  position: absolute;
  width: 22px;
  top: calc(50% - 4px);
  left: 0;
  transform: translateY(-50%);
}

.tags li {
  display: inline-block;
  background: #ececec;
  border-radius: 3px;
  margin-right: 5px;
  padding: 10px 10px 5px;
}
.tags li:last-child {
  margin-right: 0;
}

.mare-popularis #page-content {
  background-color: #F4F1EA;
}

.mare-popularis #page_title b-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  max-width: 800px;
  padding-block: 50px;
  text-align: center;
}
.mare-popularis #page_title b-container h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.mare-popularis #searchbar_section b-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 30px 10px;
}
@media only screen and (max-width: 767px) {
  .mare-popularis #searchbar_section b-container {
    flex-direction: column;
  }
}

.mare-popularis .entries-section {
  background-color: #F4F1EA;
}
.mare-popularis .entries-section b-container {
  padding-block: 20px;
}

.mare-popularis .entry-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 60px 30px;
}
@media only screen and (min-width: 768px) {
  .mare-popularis .entry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .mare-popularis .entry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 2500px) {
  .mare-popularis .entry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mare-popularis .entry image-container {
  display: flex;
  margin-bottom: 20px;
  background-color: #EBE1CB;
  aspect-ratio: 3/2;
}
.mare-popularis .entry image-container picture {
  height: 100%;
  width: 100%;
}
.mare-popularis .entry image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}

.mare-popularis .entry text-container,
.mare-popularis .mfp-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.mare-popularis .entry text-container .entry-title,
.mare-popularis .mfp-title .entry-title {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  .mare-popularis .entry text-container .entry-title,
  .mare-popularis .mfp-title .entry-title {
    font-size: 1.8rem;
  }
}
.mare-popularis .entry text-container .entry-contestant,
.mare-popularis .mfp-title .entry-contestant {
  font-size: 1.1rem;
}
@media only screen and (min-width: 992px) {
  .mare-popularis .entry text-container .entry-contestant,
  .mare-popularis .mfp-title .entry-contestant {
    font-size: 1.2rem;
  }
}
.mare-popularis .entry text-container .entry-conservation_message,
.mare-popularis .mfp-title .entry-conservation_message {
  max-width: 50em;
  margin-top: 25px;
  font-size: 1.2em;
}
@media only screen and (max-width: 767px) {
  .mare-popularis .entry text-container .entry-conservation_message,
  .mare-popularis .mfp-title .entry-conservation_message {
    margin-bottom: 100px;
  }
}
.mare-popularis .entry text-container button-container,
.mare-popularis .mfp-title button-container {
  display: block;
  flex-shrink: 0;
}

.mare-popularis .entry text-container p.entry-conservation_message, .mare-popularis .entry text-container .entry-conservation_message.p, .mare-popularis .entry text-container .entry-conservation_message.list, .mare-popularis .entry text-container ol.entry-conservation_message, .mare-popularis .entry text-container .activity_content ul.entry-conservation_message, .activity_content .mare-popularis .entry text-container ul.entry-conservation_message {
  display: none;
}

.mare-popularis .mfp-title {
  padding-right: 0;
}

.mare-popularis .vote-entry {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.mare-popularis .vote-entry svg {
  fill: transparent;
  stroke: #00253E;
}
.mare-popularis .vote-entry:hover svg {
  fill: #fd9471;
  stroke: #fd9471;
}
.mare-popularis .vote-entry.liked svg {
  fill: #FF6633;
  stroke: #FF6633;
}
.mare-popularis .vote-entry.liked:hover svg {
  fill: #D93800;
  stroke: #D93800;
}

.mare-popularis #votes_information #votes_left_indicator {
  display: block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.mare-popularis #votes_information a {
  text-decoration: underline;
  font-size: 1rem;
}

.mare-popularis #entries_separator {
  padding-block: 50px;
  text-align: center;
}
@media only screen and (min-width: 1800px) {
  .mare-popularis #entries_separator {
    padding-block: 100px;
  }
}
.mare-popularis #entries_separator b-container {
  display: flex;
  align-items: center;
}
.mare-popularis #entries_separator b-container::before, .mare-popularis #entries_separator b-container::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #00253E;
}
.mare-popularis #entries_separator h3 {
  min-width: 300px;
  margin-bottom: 0;
  padding-inline: 15px;
  font-size: 2rem;
}
@media only screen and (min-width: 1440px) {
  .mare-popularis #entries_separator h3 {
    flex-shrink: 0;
    padding-inline: 30px;
  }
}
@media only screen and (min-width: 1800px) {
  .mare-popularis #entries_separator h3 {
    font-size: 2.5rem;
  }
}

.mare-popularis b-pagination {
  display: block;
  margin-bottom: 50px;
}
.mare-popularis b-pagination button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mare-popularis #all_entries {
  margin-bottom: 50px;
}

.mare-popularis #login_modal p, .mare-popularis #login_modal .p, .mare-popularis #login_modal .list, .mare-popularis #login_modal ol, .mare-popularis #login_modal .activity_content ul, .activity_content .mare-popularis #login_modal ul {
  font-size: 1rem;
}
.mare-popularis #login_modal #login_email {
  width: 100%;
  padding: 15px;
  border: 1px solid #dedede;
  outline: none;
}
.mare-popularis #login_modal #login_email:focus-visible {
  border-color: #00253E;
}
.mare-popularis #login_modal .button, .mare-popularis #login_modal .pagination > div a, .pagination > div .mare-popularis #login_modal a {
  padding-inline: 30px;
}

.mare-popularis #no_voted_photos_section {
  text-align: center;
}

.mare-popularis #continue_voting_section {
  padding-block: 50px;
}
.mare-popularis #continue_voting_section button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mare-popularis button.mfp-close, button.mfp-arrow {
  position: fixed;
  background: rgba(244, 241, 234, 0.8117647059);
}

.jury #entries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media only screen and (min-width: 768px) {
  .jury #entries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jury #jury-section-container .profile_user_data h4 {
  display: none;
}
.jury #jury-section-container.can-submit .profile_user_data h4 {
  display: none;
}
.jury #jury-section-container.can-submit button#submit-button {
  display: block;
}
.jury #jury-section-container.can-submit button.entry-button:not(.disabled) {
  pointer-events: all;
}
.jury #jury-section-container:not(.can-submit) .profile_user_data h4 {
  display: block;
}
.jury #jury-section-container:not(.can-submit) button#submit-button {
  display: none;
}
.jury #jury-section-container:not(.can-submit) button.entry-button {
  pointer-events: none !important;
}

.jury.selection #entries-grid .entry-item {
  position: relative;
  background-color: #0C395A;
}
.jury.selection #entries-grid .entry-item:hover .image-container {
  filter: brightness(0.8);
}
.jury.selection #entries-grid .entry-item .image-container {
  transition: filter 0.2s ease-in-out;
  cursor: pointer;
}
.jury.selection #entries-grid .entry-item img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.jury.selection #entries-grid .entry-item:not(.selected):hover button {
  pointer-events: all;
  opacity: 1;
  transform: scale(1);
}
.jury.selection #entries-grid .entry-item button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #FF6633;
  color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.jury.selection #entries-grid .entry-item button:hover {
  background-color: #D93800;
}
.jury.selection #entries-grid .entry-item:not(.selected) button {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  background-color: #fff;
  color: #FF6633;
}
.jury.selection #entries-grid .entry-item:not(.selected) button:hover {
  background-color: #fd9471;
  color: white;
}

.jury.selection #jury-section-container:not(.can-submit) .entry-item:not(.selected) button.entry-button {
  display: none;
}

.jury.scoring #entries-grid .entry-item {
  position: relative;
  background-color: #0C395A;
}
.jury.scoring #entries-grid .entry-item:hover .image-container {
  filter: brightness(0.8);
}
.jury.scoring #entries-grid .entry-item .image-container {
  transition: filter 0.2s ease-in-out;
  cursor: pointer;
}
.jury.scoring #entries-grid .entry-item img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.jury.scoring #entries-grid .entry-item:not(.selected):hover button {
  pointer-events: all;
  opacity: 1;
  transform: scale(1);
}
.jury.scoring #entries-grid .entry-item:not(.selected):hover button.disabled {
  pointer-events: none;
  opacity: 0.2;
  cursor: not-allowed;
}
.jury.scoring #entries-grid .entry-item .scoring-buttons-container {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.jury.scoring #entries-grid .entry-item .scoring-buttons-container button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #FF6633;
  color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.jury.scoring #entries-grid .entry-item .scoring-buttons-container button.selected {
  pointer-events: all;
  opacity: 1;
  transform: scale(1);
  background-color: #FF6633;
  color: white;
}
.jury.scoring #entries-grid .entry-item .scoring-buttons-container button:hover {
  background-color: #D93800;
}
.jury.scoring #entries-grid .entry-item:not(.selected) button {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  background-color: #fff;
  color: #FF6633;
}
.jury.scoring #entries-grid .entry-item:not(.selected) button:hover {
  background-color: #D93800;
  color: white;
}

.jury.scoring #jury-section-container:not(.can-submit) li.entry-item .scoring-buttons-container.thumb-buttons button:not(.selected) {
  display: none;
}

#select-entry-button-container {
  margin: 10px;
}
#select-entry-button-container button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 100%;
  background-color: #FF6633;
  border: 1px solid #FF6633;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
#select-entry-button-container button:hover {
  background-color: #D93800;
}
#select-entry-button-container:not(.selected) button {
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #FF6633;
}
#select-entry-button-container:not(.selected) button:hover {
  background-color: #fd9471;
  color: white;
}

.jury-entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.jury-entry-tags .jury-entry-tag {
  background-color: #797979;
  color: white;
  padding: 10px 15px 7px;
  border-radius: 5px;
}

#modal-entry .scoring-buttons-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#modal-entry .scoring-buttons-container button {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #111111;
  cursor: pointer;
}
#modal-entry .scoring-buttons-container button:hover {
  background-color: #D93800;
  color: white;
}
#modal-entry .scoring-buttons-container button.disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: default;
}
#modal-entry .scoring-buttons-container button.selected {
  background-color: #FF6633;
  color: white;
}

.jury #modal-max-selections,
.jury #modal-score-error {
  z-index: 5000;
  background-color: rgba(0, 0, 0, 0.5);
}

.boxes__image img.certament-hero-logo {
  width: 80%;
  object-fit: contain;
  align-items: center;
  margin: 0 auto;
}