@charset 'UTF-8';
/* @import url('../../fonts/fonts.css'); */
html {
  text-rendering : optimizeLegibility;
  display : flex;
  scroll-behavior : smooth;
}

body, html {
  -webkit-font-smoothing : antialiased;
  height : 100%;
  width : 100%;
}

html, body {
  height : 100%;
}

body {
  font-family : 'Nunito-Sans', sans-serif;
  font-weight : 400;
  overflow-x : hidden;
  display : flex;
  flex-direction : column;
  min-height : -webkit-fill-available;
}

.wrapper {
  display : flex;
  flex-direction : column;
/*  height : 100%; */
}
.wrapper .wrapper-content {
  flex : 1 0 auto;
}
.wrapper .wrapper-sticky {
  flex-shrink : 0;
}

.pace-progress {
  z-index : 100;
  background-color : #5846A0 !important;
}

body.loader-running {
  overflow : hidden;
}

body.loaded {
  overflow-x : hidden;
  overflow-y : auto;
}

.js-loader {
  display : flex;
  justify-content : center;
  align-items : center;
  flex-direction : column;
  width : 100%;
  height : 100%;
  background : #FFFFFF;
  position : fixed;
  left : 0;
  right : 0;
  top : 0;
  bottom : 0;
  z-index : 9999;
}

.loading-logo {
  position : absolute;
  left : 50%;
  transform : translateX(-50%);
  top : 40%;
}
.loading-logo img {
  height : 40px;
}

.loading {
  position : absolute;
  top : 50%;
  left : 50%;
  transform : translate(-50%, -50%);
  width : 120px;
  height : 120px;
  border-radius : 50%;
  border : 3px solid transparent;
}

.loading .effect-1, .loading .effect-2 {
  position : absolute;
  width : 100%;
  height : 100%;
  border : 3px solid transparent;
  border-left : 3px solid #5846A0;
  border-radius : 50%;
  box-sizing : border-box;
}

.loading .effect-1 {
  -webkit-animation : rotate 1s ease infinite;
          animation : rotate 1s ease infinite;
}

.loading .effect-2 {
  -webkit-animation : rotateOpacity 1s ease infinite 0.1s;
          animation : rotateOpacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  position : absolute;
  width : 100%;
  height : 100%;
  border : 3px solid transparent;
  border-left : 3px solid #5846A0;
  -webkit-animation : rotateOpacity 1s ease infinite 0.2s;
          animation : rotateOpacity 1s ease infinite 0.2s;
  border-radius : 50%;
  box-sizing : border-box;
}

.loading .effects {
  transition : all 0.3s ease;
}

@-webkit-keyframes rotate {
  0% {
    transform : rotate(0deg);
  }
  100% {
    transform : rotate(1turn);
  }
}

@keyframes rotate {
  0% {
    transform : rotate(0deg);
  }
  100% {
    transform : rotate(1turn);
  }
}

@-webkit-keyframes rotateOpacity {
  0% {
    transform : rotate(0deg);
    opacity : 0.1;
  }
  100% {
    transform : rotate(1turn);
    opacity : 1;
  }
}

@keyframes rotateOpacity {
  0% {
    transform : rotate(0deg);
    opacity : 0.1;
  }
  100% {
    transform : rotate(1turn);
    opacity : 1;
  }
}

.loader-stripes {
  display : flex;
  align-items : center;
  justify-content : center;
}
.loader-stripes span {
  width : 5.7px;
  -webkit-animation : stripes 1s cubic-bezier(0.8, 0.5, 0.2, 1.4) infinite;
          animation : stripes 1s cubic-bezier(0.8, 0.5, 0.2, 1.4) infinite;
  margin : 0 2px;
  border-radius : 10px;
  background-color : #5846A0;
  transition : all 0.2s ease-in-out;
}
.loader-stripes span.line-1 {
  height : 17.1px;
  -webkit-animation-delay : 0.1s;
          animation-delay : 0.1s;
}
.loader-stripes span.line-2 {
  height : 26.6px;
  -webkit-animation-delay : 0.2s;
          animation-delay : 0.2s;
}
.loader-stripes span.line-3 {
  height : 36px;
  -webkit-animation-delay : 0.4s;
          animation-delay : 0.4s;
}
.loader-stripes span.line-4 {
  height : 21.8px;
  -webkit-animation-delay : 0.6s;
          animation-delay : 0.6s;
}
.loader-stripes span.line-5 {
  height : 12.3px;
  -webkit-animation-delay : 0.8s;
          animation-delay : 0.8s;
}

@-webkit-keyframes stripes {
  0%, 100% {
    opacity : 0;
  }
  33% {
    opacity : 1;
  }
  66% {
    opacity : 0;
  }
}

@keyframes stripes {
  0%, 100% {
    opacity : 0;
  }
  33% {
    opacity : 1;
  }
  66% {
    opacity : 0;
  }
}

.js-i-load, .js-loader-action {
  position : absolute;
  left : 0;
  right : 0;
  top : 0;
  bottom : 0;
  display : flex;
  justify-content : center;
  align-items : center;
  z-index : 9999;
  background-color : #FFFFFF;
}
.js-i-load .spinner-grow, .js-loader-action .spinner-grow {
  color : #5846A0;
}

.js-loader-action {
  display : none;
  background-color : rgba(255, 255, 255, 0.6);
  position : fixed;
}
.js-loader-action .spinner-grow {
  position : absolute;
  top : 50%;
  left : 50%;
  transform : translate(-50%, -50%);
}

html body.dark-mode .js-loader {
  background-color : #222054;
}

html body.dark-mode .js-loader-action {
  background-color : rgba(23, 26, 70, 0.6);
}

html body.dark-mode .pace-progress {
  background : #FFFFFF !important;
}

html body.dark-mode .loader-stripes span {
  background-color : #FFFFFF;
}

html body.dark-mode .loading .effect-1, html body.dark-mode .loading .effect-2, html body.dark-mode .loading .effect-3 {
  border-left : 3px solid #FFFFFF;
}

a {
  cursor : pointer;
}

a, a:focus, a:hover {
  color : inherit;
  text-decoration : none;
}

:focus, :hover {
  outline : 0 !important;
  text-decoration : none;
}

::-moz-focus-inner {
  border : 0;
  outline : none;
}

:-moz-focusring {
  text-shadow : 0 0 0 transparent;
}

@-moz-document url-prefix() {
  select, select:-moz-focusring, select::-moz-focus-inner {
    border : 0;
    background-image : none !important;
    text-shadow : 0 0 0 #FFFFFF !important;
  }
}

.pos-abt {
  position : absolute;
}

.pos-rel {
  position : relative;
}

.pos-fix {
  position : fixed;
}

.pa-t-0 {
  top : 0 !important;
}

.pa-b-0 {
  bottom : 0 !important;
}

.pa-l-0 {
  left : 0 !important;
}

.pa-r-0 {
  right : 0 !important;
}

.trns-1, .trns-1:hover {
  transition : all 0.1s ease-in-out;
}

.trns-2, .trns-2:hover {
  transition : all 0.2s ease-in-out;
}

.trns-3, .trns-3:hover {
  transition : all 0.3s ease-in-out;
}

.d-center {
  display : flex;
  align-items : center;
  justify-content : center;
}

.hide {
  display : none !important;
}

.hide.active {
  display : block !important;
}

.table {
  display : table;
  width : 100%;
}
.table .tr {
  display : table-row;
}
.table .thead {
  display : table-header-group;
}
.table .thead .th {
  display : table-cell;
  vertical-align : middle;
}
.table .tbody {
  display : table-row-group;
}
.table .tbody .td {
  display : table-cell;
  vertical-align : middle;
}

.row.sm-gutters {
  margin-left : -5px;
  margin-right : -5px;
}
.row.sm-gutters > div {
  padding-left : 5px;
  padding-right : 5px;
}

.row.md-gutters {
  margin-left : -10px;
  margin-right : -10px;
}
.row.md-gutters > div {
  padding-left : 10px;
  padding-right : 10px;
}

.mt-5px {
  margin-top : 5px;
}

.mb-5px {
  margin-bottom : 5px !important;
}

.mr-5px {
  margin-right : 5px !important;
}

.mr-10px {
  margin-right : 10px !important;
}

.mw-80 {
  max-width : 80%;
}

::-webkit-scrollbar {
  width : 10px;
  height : 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius : 6px;
  background-color : #EEEEEE;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius : 6px;
  background-color : #D9DAE1;
  min-height : 80px;
}

::-webkit-scrollbar-thumb:window-inactive {
  background-color : #D9DAE1;
}

.ps__thumb-x, .ps__thumb-y {
  background-color : #D9DAE1;
  border-radius : 10px;
}

::-webkit-scrollbar-corner {
  background : rgba(0, 0, 0, 0);
}

body.dark-mode {
  /* Track */
  /* Handle */
}
body.dark-mode ::-webkit-scrollbar-track {
  background-color : #090C24;
}
body.dark-mode ::-webkit-scrollbar-thumb {
  background-color : #E66898;
}
body.dark-mode ::-webkit-scrollbar-thumb:window-inactive {
  background-color : #E66898;
}
body.dark-mode .modal {
  /* Handle */
}
body.dark-mode .modal ::-webkit-scrollbar-track {
  background-color : #EEEEEE;
}
body.dark-mode .modal ::-webkit-scrollbar-thumb {
  background-color : #D9DAE1;
}
body.dark-mode .modal ::-webkit-scrollbar-thumb:window-inactive {
  background-color : #D9DAE1;
}

.h-10px {
  height : 10px;
}

.h-15px {
  height : 15px;
}

.h-20px {
  height : 20px;
}

.h-25px {
  height : 25px;
}

.h-30px {
  height : 30px;
}

.h-40px {
  height : 40px;
}

.h-50px {
  height : 50px;
}

.w-10px {
  width : 10px;
}

.w-15px {
  width : 15px;
}

.w-20px {
  width : 20px;
}

.w-25px {
  width : 25px;
}

.w-30px {
  width : 30px;
}

.w-40px {
  width : 40px;
}

.w-50px {
  width : 50px;
}

.z-index-bottom {
  z-index : -1;
}

.z-index-1 {
  z-index : 1;
}

.z-index-2 {
  z-index : 2;
}

.z-index-3 {
  z-index : 3;
}

.z-index-9 {
  z-index : 9;
}

.z-index-top {
  z-index : 9999;
}

body.modal-open {
  overflow : hidden !important;
}

.modal-backdrop.show {
  opacity : 0.4;
  background-color : #00003D;
}

.disabled {
  pointer-events : none;
  opacity : 1;
}

.inactive {
  opacity : 0.5;
}

.mb-0-5 {
  margin-bottom : 0.5rem;
}

.pb-0-5 {
  padding-bottom : 0.5rem;
}

.bb-1 {
  border-bottom : 1px solid #A2A2B7;
  margin-bottom : 1rem;
  margin-top : 1rem;
}

.toast-success {
  background-color : #4CAF50;
}

.toast-error {
  background-color : #E53935;
}

.toast-warning {
  background-color : #FFB300;
}

.toast-info {
  background-color : #29B6F6;
}

.toast-container > div {
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.popover {
  z-index : 99;
}
.popover.show {
  opacity : 1;
}
.popover.bs-popover-auto[x-placement^=bottom] > .arrow::after, .popover.bs-popover-bottom > .arrow::after {
  border-bottom-color : #FFFFFF;
}

.row.no-gutters-sm {
  margin-left : -5px;
  margin-right : -5px;
}
.row.no-gutters-sm [class^='col'] {
  padding-left : 5px;
  padding-right : 5px;
}

a.btn, a.btn-icon-tooltip, [data-toggle='modal'], [data-toggle='dropdown'] {
  position : relative;
}
a.btn [data-toggle='tooltip'], a.btn-icon-tooltip [data-toggle='tooltip'], [data-toggle='modal'] [data-toggle='tooltip'], [data-toggle='dropdown'] [data-toggle='tooltip'] {
  display : flex;
  height : 100%;
  width : 100%;
  position : absolute;
  top : 0;
}

.notice {
  font-size : 10px;
  color : #E66898;
}

.fa-exclamation-triangle.clr-red-dark {
  font-size : 11px;
  display : flex;
  justify-content : center;
  align-items : center;
  margin-left : 2px;
  padding : 3px;
}
.fa-exclamation-triangle.clr-red-dark:hover, .fa-exclamation-triangle.clr-red-dark:focus, .fa-exclamation-triangle.clr-red-dark:active {
  color : #FF4713;
}

.progress {
  margin : 0;
  height : auto;
  position : relative;
}
.progress:last-child {
  margin : 0;
}
.progress .progress-bar {
  background-color : #EAB3A4;
  height : 15px;
  line-height : 16px;
}
.progress .progress-bar span {
  position : absolute;
  left : 0;
  right : 0;
  top : 0;
  bottom : 0;
  color : #202124;
  font-weight : bold;
}

body.dark-mode .progress {
  background-color : #FFFFFF;
}
body.dark-mode .progress .progress-bar {
  background-color : #EAB3A4;
}

footer {
  padding : 10px 0;
  color : #7E8088;
  background-color : #F5F6FB;
}
footer .container {
  max-width : 100%;
}
footer .container .row .col-12 {
  padding-right : 20px;
  padding-left : 20px;
}
footer .footer-nav {
  color : #0065FF;
  display : flex;
  align-items : center;
  justify-content : center;
}
footer .footer-nav a {
  text-transform : uppercase;
  color : #7E8088;
  padding : 5px 10px;
  font-weight : 700;
  line-height : 100%;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color : #00008E;
}
footer .footer-nav span {
  line-height : 100%;
}
footer .popover {
  border-radius : 10px;
  background-color : #FFFFFF;
  max-width : 440px;
  width : 100%;
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
  border : 0;
}
footer .popover.in {
  opacity : 1;
}
footer .popover .popover-header {
  background : #FFFFFF;
  border-top-left-radius : 10px;
  border-bottom-right-radius : 10px;
  color : #202124;
  font-weight : bold;
  font-size : 14px;
  padding : 20px 20px 0;
}
footer .popover .popover-body {
  padding : 20px;
  font-size : 11px;
  line-height : 12px;
  color : #202124;
}
footer .popover .popover-body p {
  margin-bottom : 15px;
}
footer .popover .popover-body p:last-child {
  margin-bottom : 0;
}
footer .powered-by {
  color : #7E8088;
  display : flex;
  align-items : center;
}
footer .powered-by span {
  margin-right : 5px;
  line-height : 100%;
}
footer .powered-by a {
/*  background-image : url('/assets/images/logo-footer.svg'); */
  width : 60px;
  height : 8px;
  background-size : contain;
  display : inline-block;
  background-repeat : no-repeat;
}

@media (max-width: 991px) {
  .wrapper footer {
    padding : 10px 15px;
  }
  .wrapper footer .container {
    padding : 0;
  }
  .wrapper footer .powered-by, .wrapper footer .footer-nav a {
    font-size : 8px;
  }
  .wrapper footer .powered-by span {
    align-self : flex-start;
  }
  .wrapper footer .powered-by a {
    width : 70px;
    align-self : flex-start;
  }
  .wrapper footer .popover.bs-popover-bottom .arrow:after, .wrapper footer .popover.bs-popover-bottom > .arrow::before {
    display : none;
  }
}

@media (max-width: 557px) {
  .wrapper footer .col-6 .powered-by {
    padding-top : 5px;
    margin-bottom : 5px;
  }
  .wrapper footer .col-6 .powered-by a {
    width : 50px;
  }
  .wrapper footer .col-6 .footer-nav a {
    padding : 5px;
  }
  .wrapper footer .col-6:first-child {
    padding-right : 5px;
  }
  .wrapper footer .col-6:last-child {
    padding-left : 5px;
  }
  .wrapper footer .col-6 .popover .popover-body {
    font-size : 10px;
  }
}

.fs-base {
  font-size : 1rem;
}

.fw-extralight {
  font-weight : 100;
}

.fw-light {
  font-weight : 300;
}

.fw-normal {
  font-weight : 400;
}

.fw-medium {
  font-weight : 500;
}

.fw-semibold {
  font-weight : 600;
}

.fw-bold {
  font-weight : 700;
}

.fw-extrabold {
  font-weight : 800;
}

.fw-black {
  font-weight : 900;
}

.fs-8px {
  font-size : 8px;
}

.fs-9px {
  font-size : 9px;
}

.fs-10px {
  font-size : 10px;
}

.fs-11px {
  font-size : 11px;
}

.fs-12px {
  font-size : 12px;
}

.fs-14px {
  font-size : 14px;
}

.fs-16px {
  font-size : 16px;
}

.fs-18px {
  font-size : 18px;
}

.fs-20px {
  font-size : 20px;
}

.lh-100 {
  line-height : 100%;
}

.lh-110 {
  line-height : 110%;
}

.lh-120 {
  line-height : 120%;
}

.lh-140 {
  line-height : 140%;
}

.lh-150 {
  line-height : 150%;
}

.lh-160 {
  line-height : 160%;
}

.ta-center {
  text-align : center;
}

.ta-left {
  text-align : left;
}

.ta-right {
  text-align : right;
}

@media (max-width: 767px) {
  .ta-center-md {
    text-align : center;
  }
  .ta-left-md {
    text-align : left;
  }
  .ta-right-md {
    text-align : right;
  }
}

@media (max-width: 575px) {
  .ta-center-xs {
    text-align : center;
  }
  .ta-left-xs {
    text-align : left;
  }
  .ta-right-xs {
    text-align : right;
  }
}

.btn {
  font-family : 'Nunito-Sans', sans-serif;
  border-radius : 4px;
  font-weight : 500;
  transition : all 0.3s ease-in-out;
  text-transform : uppercase;
  font-size : 12px;
  padding : 0.8rem 1rem;
  color : #FFFFFF;
}
.btn:hover, .btn:focus, .btn:active {
  transition : all 0.3s ease-in-out;
  color : #FFFFFF;
}
.btn-blue-dark {
  background-color : #00008E;
  box-shadow : 0 4px 12px 0 rgba(115, 102, 169, 0.6);
}
.btn-blue-dark:hover, .btn-blue-dark:active, .btn-blue-dark:focus {
  background-color : #5846A0;
  box-shadow : 0 4px 12px 0 transparent;
}
.btn-blue {
  background-color : #0065FF;
}
.btn-blue:hover, .btn-blue:active, .btn-blue:focus {
  background-color : #00008E;
}
.btn-orange {
  box-shadow : 0 4px 12px 0 rgba(255, 71, 19, 0.6);
  background-color : #FF4713;
}
.btn-orange:hover, .btn-orange:active, .btn-orange:focus {
  background-color : #DF3607;
  box-shadow : 0 4px 12px 0 transparent;
}
.btn-red {
  box-shadow : 0 4px 12px 0 rgba(227, 60, 57, 0.6);
  background-color : #E33C39;
}
.btn-red:hover, .btn-red:active, .btn-red:focus {
  background-color : #DF3607;
}
.btn-blue-light {
  background-color : #DBE5FA;
  color : #00008E;
}
.btn-blue-light:hover, .btn-blue-light:active, .btn-blue-light:focus {
  background-color : #00008E;
  color : #FFFFFF;
}
.btn-orange-bordered {
  box-shadow : none;
  background-color : transparent;
  border : 1px solid #FF4713;
  color : #FF4713;
}
.btn-orange-bordered:hover, .btn-orange-bordered:active, .btn-orange-bordered:focus {
  background-color : #DF3607;
  box-shadow : 0 4px 12px 0 transparent;
}
.btn-orange-bordered.btn-icon i {
  color : #FF4713;
}
.btn-orange-bordered.btn-icon:hover i, .btn-orange-bordered.btn-icon:active i, .btn-orange-bordered.btn-icon:focus i {
  color : #FFFFFF;
  transition : all 0.3s ease-in-out;
}
.btn-pink-mild {
  background-color : #E66898;
  color : #FFFFFF;
}
.btn-pink-mild:hover, .btn-pink-mild:active, .btn-pink-mild:focus {
  background-color : #00008E;
}
.btn-light-blue {
  background-color : #E9F2FF;
  color : #00008E;
}
.btn-light-blue:hover, .btn-light-blue:active, .btn-light-blue:focus {
  background-color : #0065FF;
  color : #FFFFFF;
}
.btn-purple-light {
  background-color : #ECE2FB;
  color : #0065FF;
}
.btn-purple-light:hover, .btn-purple-light:active, .btn-purple-light:focus {
  background-color : #0065FF;
  color : #FFFFFF;
}
.btn-green {
  background-color : #05CB4C;
}
.btn-green:hover, .btn-green:active, .btn-green:focus {
  background-color : #0065FF;
}
.btn i {
  font-style : normal;
  color : #FFFFFF;
  margin-right : 6px;
  font-size : 12px;
  transition : all 0.3s ease-in-out;
}
.btn-no-shadow {
  box-shadow : none;
}
.btn.btn-icon {
  width : 30px;
  height : 30px;
  font-family : 'Font Awesome';
  font-weight : 700;
}
.btn.btn-icon.btn-icon-action {
  padding : 0.8rem 1rem;
  width : 34px;
  height : auto;
  display : flex;
  align-items : center;
  justify-content : center;
}
.btn.btn-big {
  padding : 15px 20px;
  min-width : 200px;
}

.btn-action-merge {
  display : flex;
  margin : 0;
}
.btn-action-merge .btn-icon {
  border-radius : 4px 0 0 4px;
}
.btn-action-merge .btn-icon + .btn-icon {
  border-radius : 0 4px 4px 0;
  margin-left : 1px;
}

.h-30px {
  height : 30px;
}

.h-36px {
  height : 36px;
}

input, button, select {
  font-family : 'Nunito-Sans', sans-serif;
  font-size : 14px;
  font-weight : 400;
}

select {
  -webkit-appearance : none;
     -moz-appearance : none;
  border : 0;
  outline : 0;
}
select ::-ms-expand {
  display : none;
}

.form-control {
  border-radius : 4px;
  background-color : #F5F6FB;
  border : solid 1px transparent;
  box-shadow : none;
  height : 36px;
  color : #7E8088;
}
.form-control:focus {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}
.form-control:focus ~ .form-control-position i {
  color : #0065FF;
}
.form-control:disabled, .form-control[readonly] {
  background-color : #FF9F4314;
  opacity : 1;
}
.form-control:disabled:focus, .form-control[readonly]:focus {
  box-shadow : none;
  border-color : transparent !important;
}

.label {
  text-transform : uppercase;
  font-size : 12px;
  font-weight : bold;
  color : #7E8088;
  position : relative;
  text-align : left;
  margin-bottom : 5px;
  line-height : 1;
  clear : both;
}

.ps.ps--active-y {
  padding-right : 1rem;
}

.invalid, .input_error {
  border : 1px solid #FF5855 !important;
  box-shadow : 0 0 9px 0 rgba(255, 88, 85, 0.3);
}

.wrapper .form .invalid, .wrapper .form .input_error, .wrapper form .invalid, .wrapper form .input_error {
  color : #FF5855;
  margin-top : 3px;
}

.wrapper .form .form-group, .wrapper form .form-group {
  position : relative;
}
.wrapper .form .form-group.required label.control-label::before, .wrapper .form .form-group.required label.label-form::before, .wrapper form .form-group.required label.control-label::before, .wrapper form .form-group.required label.label-form::before {
  content : ' * ';
  font-size : 12px;
  color : #FF5855;
  position : absolute;
  right : -11px;
  top : -1px;
  line-height : 100%;
}

.wrapper .form label, .wrapper .form .label, .wrapper .form .label-form, .wrapper form label, .wrapper form .label, .wrapper form .label-form {
  text-transform : uppercase;
  font-size : 12px;
  font-weight : bold;
  color : #7E8088;
  position : relative;
  text-align : left;
  margin-bottom : 5px;
  line-height : 1;
  clear : both;
  padding : 0 0 0 0.2rem;
}

.wrapper .form textarea, .wrapper form textarea {
  min-height : 60px;
  resize : none;
}

.wrapper .form div.cs-select, .wrapper form div.cs-select {
  border-radius : 4px;
  background-color : #F5F6FB;
  border : solid 1px transparent;
}
.wrapper .form div.cs-select .cs-option, .wrapper form div.cs-select .cs-option {
  background-color : #F5F6FB;
}
.wrapper .form div.cs-select.cs-active, .wrapper .form div.cs-select:focus, .wrapper form div.cs-select.cs-active, .wrapper form div.cs-select:focus {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}

.wrapper .form .form-control, .wrapper form .form-control {
  border-radius : 4px;
  background-color : #F5F6FB;
  border : solid 1px transparent;
  box-shadow : none;
  height : 36px;
  margin : 0;
}
.wrapper .form .form-control.form-control-small, .wrapper form .form-control.form-control-small {
  height : 30px;
}
.wrapper .form .form-control.form-control-big, .wrapper form .form-control.form-control-big {
  height : 50px;
}
.wrapper .form .form-control:focus, .wrapper form .form-control:focus {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}
.wrapper .form .form-control.invalid, .wrapper .form .form-control.input_error, .wrapper form .form-control.invalid, .wrapper form .form-control.input_error {
  border : 1px solid #FF5855 !important;
  box-shadow : 0 0 9px 0 rgba(255, 88, 85, 0.3);
}
.wrapper .form .form-control:disabled, .wrapper .form .form-control[readonly], .wrapper form .form-control:disabled, .wrapper form .form-control[readonly] {
  background-color : #FF9F4314 !important;
}

.wrapper .form .has-error .form-control, .wrapper .form.has-error .form-control, .wrapper form .has-error .form-control, .wrapper form.has-error .form-control {
  border : 1px solid #FF5855 !important;
  box-shadow : 0 0 9px 0 rgba(255, 88, 85, 0.3);
}

.wrapper .form .has-error .bs-placeholder, .wrapper .form.has-error .bs-placeholder, .wrapper form .has-error .bs-placeholder, .wrapper form.has-error .bs-placeholder {
  border : 1px solid #FF5855 !important;
  box-shadow : 0 0 9px 0 rgba(255, 88, 85, 0.3);
}

.wrapper .form .has-error .help-block, .wrapper .form.has-error .help-block, .wrapper form .has-error .help-block, .wrapper form.has-error .help-block {
  color : #E66898;
  position : absolute;
  left : 2px;
  font-size : 11px;
  margin : 0;
}

.wrapper .form .has-error .control-label, .wrapper .form.has-error .control-label, .wrapper form .has-error .control-label, .wrapper form.has-error .control-label {
  color : #7E8088;
}

.wrapper .dropzone {
  padding : 0;
  height : 150px;
  display : flex;
  align-items : center;
  justify-content : center;
  text-align : center;
  position : relative;
  background-color : transparent;
}
.wrapper .dropzone a.fancybox {
  display : flex;
  align-items : center;
  justify-content : center;
  margin : auto;
  text-align : center;
  position : relative;
  padding : 10px;
  padding : 0;
  width : 100%;
  height : 100%;
}
.wrapper .dropzone .dz-preview {
  display : flex;
  align-items : center;
  justify-content : center;
  width : 100%;
  height : 100%;
  margin : 0;
  position : relative;
  padding : 0;
}
.wrapper .dropzone .dz-preview .open-fancybox {
  color : #7E8088;
  font-size : 20px;
  position : absolute;
  top : 10px;
  right : 10px;
  z-index : 2;
}
.wrapper .dropzone .dz-preview .dz-image {
  display : flex;
  align-items : center;
  justify-content : center;
  width : 100%;
  height : 100%;
}
.wrapper .dropzone .dz-preview .dz-image img {
  max-height : 130px;
}
.wrapper .dropzone .dz-preview .dz-error-message {
  text-align : center;
  width : 100%;
  margin : auto;
  top : auto;
  left : 0;
  right : 0;
  bottom : 0;
  display : flex;
  align-items : center;
  justify-content : center;
  padding : 5px 10px;
  z-index : 0;
}
.wrapper .dropzone .dz-preview .dz-error-message i {
  font-size : 12px;
  color : #7E8088;
}
.wrapper .dropzone .dz-preview .dz-error-message span {
  font-size : 12px;
  margin : 0 auto;
}
.wrapper .dropzone .dz-preview.dz-processing .dz-progress {
  top : 98%;
  left : 0;
  right : 0;
  background : transparent;
}
.wrapper .dropzone .dz-preview.dz-processing .dz-progress .dz-upload {
  background : #FF4713;
}
.wrapper .dropzone .dz-remove {
  position : absolute;
  right : 10px;
  bottom : 10px;
}
.wrapper .dropzone .dz-remove a i.btn.btn-red {
  font-size : 16px;
  color : #FFFFFF;
}

.wrapper .dropzone {
  border-radius : 4px;
  border : dashed 1px #9DC4FF;
  display : flex;
  justify-content : center;
  align-items : center;
  flex-direction : column;
  height : 100%;
  cursor : pointer;
  padding : 25px 5px;
  min-height : auto;
}
.wrapper .dropzone.dz-clickable * {
  cursor : pointer;
}
.wrapper .dropzone .dz-image img {
  max-width : 100%;
}
.wrapper .dropzone .dz-message {
  justify-content : center;
  align-items : center;
  flex-direction : column;
}
.wrapper .dropzone .dz-remove .btn.btn-red {
  min-width : auto;
  padding : 0;
  display : inline-flex;
  justify-content : center;
  align-items : center;
  font-weight : 700;
  height : 30px;
  width : 30px;
}
.wrapper .dropzone .icon.fas.fa-plus {
  width : 60px;
  height : 60px;
  border-radius : 30px;
  background-color : #0065FF;
  display : flex;
  justify-content : center;
  align-items : center;
  font-size : 22px;
  color : #FFFFFF;
  margin : auto auto 10px;
}
.wrapper .dropzone.dropzone-small {
  padding : 10px 5px;
  margin : 0 5px;
}
.wrapper .dropzone.dropzone-small .fas.fa-plus {
  width : 30px;
  height : 30px;
  font-size : 12px;
}
.wrapper .dropzone .text {
  font-size : 10px;
  text-align : center;
  line-height : 100%;
}
.wrapper .dropzone.dz-started {
  padding : 10px;
}
.wrapper .dropzone.dz-started .dz-message {
  opacity : 1;
}
.wrapper .dropzone.dz-started .no-image {
  display : none;
}

.wrapper .dropzone-previews {
  position : fixed;
  bottom : 10px;
  right : 10px;
  z-index : 9;
}
.wrapper .dropzone-previews button.close {
  padding : 0.2rem 0.62rem;
  box-shadow : 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius : 0.357rem;
  background : #FFFFFF;
  opacity : 1;
  transition : all 0.23s ease 0.1s;
  transform : translate(8px, -2px);
  cursor : pointer;
  position : absolute;
  right : 0;
  z-index : 9;
}
.wrapper .dropzone-previews button.close > span {
  font-weight : 400;
  font-size : 2rem;
  color : #7367F0;
}
.wrapper .dropzone-previews button.close:hover, .wrapper .dropzone-previews button.close:focus {
  outline : 0;
  transform : translate(5px, 3px);
  box-shadow : none;
}
.wrapper .dropzone-previews .dz-preview {
  font-size : 10px;
  margin : 8px;
  border-radius : 2px;
  border : 0;
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}
.wrapper .dropzone-previews .dz-preview .dz-details .dz-filename, .wrapper .dropzone-previews .dz-preview .dz-details .dz-size {
  font-weight : 600;
}
.wrapper .dropzone-previews .dz-preview .dz-error-message {
  color : #E33C39;
  text-align : center;
  min-width : auto;
  left : 0;
  right : 0;
  top : 0;
  padding : 5px;
  font-weight : 600;
}
.wrapper .dropzone-previews .dz-preview .dz-remove {
  background : #E33C39;
  color : #FFFFFF;
  border-radius : 2px;
  border : 0;
}
.wrapper .dropzone-previews .dz-preview .dz-remove::after {
  font-family : 'Font Awesome';
  content : '\f2ed';
  font-weight : 900;
  margin-left : 5px;
}

.wrapper .field-autocomplete {
  background : #FFFFFF;
  border : 1px solid #F5F6FB;
  border-radius : 4px;
  padding : 5px 10px;
  position : absolute;
  width : 100%;
  top : 100%;
  z-index : 2;
  font-size : 0.96rem;
}

@media (max-width: 1199px) {
  .wrapper .dropzone-previews {
    bottom : auto;
    top : 10px;
  }
}

body.dark-mode .form-control::-moz-placeholder {
  color : #F7F7F7;
}

body.dark-mode .form-control:-ms-input-placeholder {
  color : #F7F7F7;
}

body.dark-mode .form-control::placeholder {
  color : #F7F7F7;
}

body.dark-mode .has-icon-left .form-control-position i, body.dark-mode .has-icon-right .form-control-position i {
  color : #FFFFFF;
}

body.dark-mode .custom-switch .custom-control-label:after {
  background-color : #3F415F;
}

.wrapper {
  /*!
 * Bootstrap-select v1.13.17 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2020 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */
}
.wrapper select {
  -webkit-appearance : none;
     -moz-appearance : none;
          appearance : none;
  padding : 5px;
}
.wrapper select * {
  line-height : 100%;
  padding : 5px;
}
.wrapper .s-hidden {
  visibility : hidden;
  padding-right : 10px;
}
.wrapper .select {
  cursor : pointer;
  display : inline-block;
  position : relative;
  font : normal 11px/22px Arial, Sans-Serif;
  color : #7E8088;
  border : 1px solid #CCCCCC;
}
.wrapper .styledSelect {
  position : absolute;
  top : 0;
  right : 0;
  bottom : 0;
  left : 0;
  background-color : white;
  padding : 0 10px;
  font-weight : bold;
}
.wrapper .styledSelect:after {
  content : '';
  width : 0;
  height : 0;
  border : 5px solid transparent;
  border-color : black transparent transparent transparent;
  position : absolute;
  top : 9px;
  right : 6px;
}
.wrapper .styledSelect:active, .wrapper .styledSelect.active {
  background-color : #EEEEEE;
}
.wrapper .options {
  display : none;
  position : absolute;
  top : 100%;
  right : 0;
  left : 0;
  z-index : 999;
  margin : 0 0;
  padding : 0 0;
  list-style : none;
  border : 1px solid #CCCCCC;
  background-color : white;
  box-shadow : 0 1px 2px rgba(0, 0, 0, 0.2);
}
.wrapper .options li {
  margin : 0 0;
  padding : 0 10px;
}
.wrapper .options li:hover {
  background-color : #3399FF;
  color : white;
}
.wrapper .bootstrap-select {
  height : 36px !important;
}
.wrapper div.cs-select {
  display : flex;
  vertical-align : middle;
  position : relative;
  text-align : left;
  width : 100%;
  max-width : 500px;
  -webkit-touch-callout : none;
  -webkit-user-select : none;
     -moz-user-select : none;
      -ms-user-select : none;
          user-select : none;
  font-size : 14px;
  font-weight : 400;
  align-items : center;
  border-radius : 4px;
  height : 30px;
  background-color : #FFFFFF;
  border : 1px solid transparent;
}
.wrapper div.cs-select.cs-select-small {
  height : 30px;
}
.wrapper div.cs-select.cs-select-small .cs-placeholder {
  padding : 8px 35px 8px 10px;
}
.wrapper div.cs-select.cs-select-big {
  height : 36px !important;
}
.wrapper div.cs-select.cs-select-big .cs-placeholder {
  padding : 11px 35px 11px 10px;
}
.wrapper div.cs-select.cs-select-white {
  background-color : #FFFFFF !important;
}
.wrapper div.cs-select select {
  display : none !important;
}
.wrapper div.cs-select:focus {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}
.wrapper div.cs-select span {
  display : flex;
  cursor : pointer;
  white-space : nowrap;
  overflow : hidden;
  text-overflow : ellipsis;
  align-items : center;
  line-height : 100%;
  width : 100%;
  padding : 9px 35px 9px 10px;
  color : #7E8088;
}
.wrapper div.cs-select span.cs-placeholder {
  display : block;
  white-space : nowrap;
  overflow : hidden;
  text-overflow : ellipsis;
}
.wrapper div.cs-select span.cs-placeholder::after {
  speak : none;
  position : absolute;
  top : 50%;
  transform : translateY(-50%);
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing : grayscale;
  font-family : 'Font Awesome';
  content : '\f078';
  font-weight : 900;
  right : 1em;
  color : #7E8088;
}
.wrapper div.cs-select.form-control {
  height : 36px;
  padding : 0;
}
.wrapper div.cs-select .cs-selected span::after {
  speak : none;
  position : absolute;
  top : 50%;
  transform : translateY(-50%);
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing : grayscale;
  content : '\2713';
  margin-left : 1em;
  right : 1em;
}
.wrapper div.cs-select .cs-options {
  position : absolute;
  overflow-x : hidden;
  visibility : hidden;
  display : none;
  left : 0;
  top : 100%;
  background : #FFFFFF;
  border-radius : 4px;
  margin-top : 2px;
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
  max-height : 240px;
  min-width : 100px;
  width : 100%;
}
.wrapper div.cs-select .cs-options ul {
  list-style : none;
  margin : 0;
  padding : 0;
  width : 100%;
  flex : 0 0 100%;
  max-width : 100%;
  display : flex;
  flex-direction : column;
}
.wrapper div.cs-select .cs-options ul li span {
  padding : 10px 10px 7px;
  position : relative;
  display : block;
  transition : all 0.2s ease-in-out;
}
.wrapper div.cs-select .cs-options ul li span:hover {
  background-color : #E9F2FF;
  transition : all 0.2s ease-in-out;
}
.wrapper div.cs-select .cs-options ul li.cs-focus span {
  background-color : #E9F2FF;
}
.wrapper div.cs-select .cs-options ul li.cs-optgroup ul li span {
  padding-left : 20px;
}
.wrapper div.cs-select .cs-options ul li.cs-optgroup ul li:last-child span {
  border-bottom : 0;
}
.wrapper div.cs-select .cs-options ul li.cs-optgroup > span {
  cursor : default;
  padding : 0;
  height : 0;
  border : 0;
}
.wrapper div.cs-select .cs-options ul li.cs-optgroup:last-child {
  border-color : transparent;
}
.wrapper div.cs-select .cs-options ul li.flag-icon {
  display : flex;
  align-items : center;
  width : 100%;
  background-size : 20px;
  background-position : left 10px top 40%;
}
.wrapper div.cs-select .cs-options ul li.flag-icon::before {
  display : none;
}
.wrapper div.cs-select .cs-options ul li.flag-icon span {
  padding : 8px 10px 8px 36px;
  position : relative;
}
.wrapper div.cs-select.cs-active {
  z-index : 200;
}
.wrapper div.cs-select.cs-active > span::after {
  transform : translateY(-50%) rotate(180deg);
}
.wrapper div.cs-select.cs-active .cs-options {
  visibility : visible;
  display : block;
}
.wrapper div.cs-select.cs-select-currency .cs-options ul li {
  position : relative;
  display : flex;
  align-items : center;
  justify-content : flex-start;
  font-family : 'Nunito-Sans', sans-serif;
  font-weight : 400;
}
.wrapper div.cs-select.cs-select-currency .cs-options ul li::before {
  position : absolute;
  right : 10px;
  top : 50%;
  transform : translateY(-50%);
  font-family : 'Font Awesome';
  font-weight : 700;
  z-index : 1;
  width : 15px;
  height : 25px;
  text-align : center;
  line-height : 25px;
}
.wrapper div.cs-select.cs-select-race {
  text-transform : none;
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
  width : 330px;
  height : 30px;
}
.wrapper div.cs-select.cs-select-race .cs-options {
  width : 100%;
}
.wrapper div.cs-select.cs-select-race .cs-options ul li {
  display : flex;
  align-items : center;
  justify-content : flex-start;
  border-bottom : 1px solid #E9F2FF;
}
.wrapper div.cs-select.cs-select-race .cs-options ul li span {
  font-weight : 600;
}
.wrapper div.cs-select.cs-select-race .cs-options ul li:last-child {
  border : 0;
}
.wrapper div.cs-select.cs-select-race .cs-options .cs-optgroup ul li span {
  color : #7E8088;
  font-weight : normal;
}
.wrapper div.cs-select.cs-select-language {
  width : 60px;
  padding-left : 5px;
  height : 30px;
  background : transparent;
}
.wrapper div.cs-select.cs-select-language.cs-active, .wrapper div.cs-select.cs-select-language:focus {
  background-color : transparent;
  border-color : transparent !important;
  box-shadow : none;
}
.wrapper div.cs-select.cs-select-language span.cs-placeholder {
  text-transform : uppercase;
  padding : 4px 0;
  color : #FFFFFF;
}
.wrapper div.cs-select.cs-select-language span.cs-placeholder::after {
  color : #FFFFFF;
  right : 1px;
}
.wrapper div.cs-select.cs-select-language .cs-options {
  text-transform : uppercase;
  width : 80px;
  right : 0;
  left : auto;
}
.wrapper div.cs-select.cs-select-language .cs-options span:hover {
  opacity : 0.6;
  background-color : transparent;
}
.wrapper div.cs-select.cs-select-language .cs-options .cs-selected span::after {
  display : none;
}
.wrapper div.cs-select-table {
  min-width : 100px;
  height : 16px;
  font-size : 10px;
  color : #202124;
  background-color : #ECE2FB;
}
.wrapper div.cs-select-table span.cs-placeholder {
  font-size : 10px;
  color : #202124;
  padding : 5px 25px 4px 5px;
}
.wrapper div.cs-select-table span.cs-placeholder::after {
  color : #202124;
}
.wrapper div.cs-select-table .cs-options {
  background-color : #ECE2FB;
}
.wrapper div.cs-select-table .cs-options ul li span {
  padding : 4px 5px;
  position : relative;
  color : #202124;
  border : 1px solid transparent;
}
.wrapper div.cs-select-table .cs-options ul li span:hover {
  background-color : #E9F2FF;
  border-color : #96BFFF;
}

@-webkit-keyframes bs-notify-fadeOut {
  0% {
    opacity : 0.9;
  }
  100% {
    opacity : 0;
  }
}

@keyframes bs-notify-fadeOut {
  0% {
    opacity : 0.9;
  }
  100% {
    opacity : 0;
  }
}
.wrapper .bootstrap-select > select.bs-select-hidden {
  display : none !important;
}
.wrapper select.bs-select-hidden, .wrapper select.selectpicker {
  display : none !important;
}
.wrapper .bootstrap-select {
  width : 220px \0;
  vertical-align : middle;
}
.wrapper .bootstrap-select > .dropdown-toggle {
  position : relative;
  width : 100%;
  text-align : right;
  white-space : nowrap;
  display : inline-flex;
  align-items : center;
  justify-content : space-between;
}
.wrapper .bootstrap-select > .dropdown-toggle:after {
  margin-top : -1px;
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder {
  color : #999999;
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color : #999999;
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {
  color : rgba(255, 255, 255, 0.5);
}
.wrapper .bootstrap-select > select {
  position : absolute !important;
  bottom : 0;
  left : 50%;
  display : block !important;
  width : 0.5px !important;
  height : 100% !important;
  padding : 0 !important;
  opacity : 0 !important;
  border : none;
  z-index : 0 !important;
}
.wrapper .bootstrap-select > select.mobile-device {
  top : 0;
  left : 0;
  display : block !important;
  width : 100% !important;
  z-index : 2 !important;
}
.wrapper .bootstrap-select.is-invalid .dropdown-toggle {
  border-color : #B94A48;
}
.wrapper .error .bootstrap-select .dropdown-toggle, .wrapper .has-error .bootstrap-select .dropdown-toggle, .wrapper .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  border-color : #B94A48;
}
.wrapper .bootstrap-select.is-valid .dropdown-toggle, .wrapper .was-validated .bootstrap-select select:valid + .dropdown-toggle {
  border-color : #28A745;
}
.wrapper .bootstrap-select.fit-width {
  width : auto !important;
}
.wrapper .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width : 100%;
}
.wrapper .bootstrap-select.form-control {
  margin-bottom : 0;
  padding : 0;
  border : none;
  height : auto;
}
.wrapper :not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  width : 100%;
}
.wrapper .bootstrap-select.form-control.input-group-btn {
  float : none;
  z-index : auto;
}
.wrapper .form-inline .bootstrap-select {
  width : auto;
}
.wrapper .form-inline .bootstrap-select.form-control:not([class*=col-]) {
  width : auto;
}
.wrapper .bootstrap-select:not(.input-group-btn), .wrapper .bootstrap-select[class*=col-] {
  float : none;
  display : inline-block;
  margin-left : 0;
}
.wrapper .bootstrap-select.dropdown-menu-right, .wrapper .bootstrap-select[class*=col-].dropdown-menu-right {
  float : right;
}
.wrapper .row .bootstrap-select[class*=col-].dropdown-menu-right {
  float : right;
}
.wrapper .form-group .bootstrap-select, .wrapper .form-horizontal .bootstrap-select, .wrapper .form-inline .bootstrap-select {
  margin-bottom : 0;
}
.wrapper .form-group-lg .bootstrap-select.form-control, .wrapper .form-group-sm .bootstrap-select.form-control {
  padding : 0;
}
.wrapper .form-group-lg .bootstrap-select.form-control .dropdown-toggle, .wrapper .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height : 100%;
  font-size : inherit;
  line-height : inherit;
  border-radius : inherit;
}
.wrapper .bootstrap-select.form-control-lg .dropdown-toggle {
  font-size : inherit;
  line-height : inherit;
  border-radius : inherit;
}
.wrapper .bootstrap-select.form-control-sm .dropdown-toggle {
  font-size : inherit;
  line-height : inherit;
  border-radius : inherit;
  padding : 0.25rem 0.5rem;
}
.wrapper .bootstrap-select.form-control-lg .dropdown-toggle {
  padding : 0.5rem 1rem;
}
.wrapper .form-inline .bootstrap-select .form-control {
  width : 100%;
}
.wrapper .bootstrap-select.disabled {
  cursor : not-allowed;
}
.wrapper .bootstrap-select.disabled:focus {
  outline : 0 !important;
}
.wrapper .bootstrap-select > .disabled {
  cursor : not-allowed;
}
.wrapper .bootstrap-select > .disabled:focus {
  outline : 0 !important;
}
.wrapper .bootstrap-select.bs-container {
  position : absolute;
  top : 0;
  left : 0;
  height : 0 !important;
  padding : 0 !important;
}
.wrapper .bootstrap-select.bs-container .dropdown-menu {
  z-index : 1060;
}
.wrapper .bootstrap-select .dropdown-toggle .filter-option {
  position : static;
  top : 0;
  left : 0;
  float : left;
  height : 100%;
  width : 100%;
  text-align : left;
  overflow : hidden;
  flex : 0 1 auto;
}
.wrapper .bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right : inherit;
}
.wrapper .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  position : absolute;
  padding-top : inherit;
  padding-bottom : inherit;
  padding-left : inherit;
  float : none;
}
.wrapper .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  padding-right : inherit;
}
.wrapper .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow : hidden;
}
.wrapper .bootstrap-select .dropdown-toggle .filter-expand {
  width : 0 !important;
  float : left;
  opacity : 0 !important;
  overflow : hidden;
}
.wrapper .bootstrap-select .dropdown-toggle .caret {
  position : absolute;
  top : 50%;
  right : 12px;
  margin-top : -2px;
  vertical-align : middle;
}
.wrapper .input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius : inherit;
}
.wrapper .bootstrap-select[class*=col-] .dropdown-toggle {
  width : 100%;
}
.wrapper .bootstrap-select .dropdown-menu {
  min-width : 100%;
  box-sizing : border-box;
}
.wrapper .bootstrap-select .dropdown-menu > .inner:focus {
  outline : 0 !important;
}
.wrapper .bootstrap-select .dropdown-menu.inner {
  position : static;
  float : none;
  border : 0;
  padding : 0;
  margin : 0;
  border-radius : 0;
  box-shadow : none;
}
.wrapper .bootstrap-select .dropdown-menu li {
  position : relative;
}
.wrapper .bootstrap-select .dropdown-menu li.active small {
  color : rgba(255, 255, 255, 0.5) !important;
}
.wrapper .bootstrap-select .dropdown-menu li.disabled a {
  cursor : not-allowed;
}
.wrapper .bootstrap-select .dropdown-menu li a {
  cursor : pointer;
  -webkit-user-select : none;
     -moz-user-select : none;
      -ms-user-select : none;
          user-select : none;
}
.wrapper .bootstrap-select .dropdown-menu li a.opt {
  position : relative;
  padding-left : 2.25em;
}
.wrapper .bootstrap-select .dropdown-menu li a span.check-mark {
  display : none;
}
.wrapper .bootstrap-select .dropdown-menu li a span.text {
  display : inline-block;
}
.wrapper .bootstrap-select .dropdown-menu li small {
  padding-left : 0.5em;
}
.wrapper .bootstrap-select .dropdown-menu .notify {
  position : absolute;
  bottom : 5px;
  width : 96%;
  margin : 0 2%;
  min-height : 26px;
  padding : 3px 5px;
  background : #F5F5F5;
  border : 1px solid #E3E3E3;
  box-shadow : inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events : none;
  opacity : 0.9;
  box-sizing : border-box;
}
.wrapper .bootstrap-select .dropdown-menu .notify.fadeOut {
  -webkit-animation : 0.3s linear 750ms forwards bs-notify-fadeOut;
          animation : 0.3s linear 750ms forwards bs-notify-fadeOut;
}
.wrapper .bootstrap-select .no-results {
  padding : 3px;
  background : #F5F5F5;
  margin : 0 5px;
  white-space : nowrap;
}
.wrapper .bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position : static;
  display : inline;
  padding : 0;
}
.wrapper .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner, .wrapper .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  display : inline;
}
.wrapper .bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  content : ' ';
}
.wrapper .bootstrap-select.fit-width .dropdown-toggle .caret {
  position : static;
  top : auto;
  margin-top : -1px;
}
.wrapper .bootstrap-select .bs-ok-default:after {
  content : '';
  display : block;
  width : 0.5em;
  height : 1em;
  border-style : solid;
  border-width : 0 0.26em 0.26em 0;
  transform-style : preserve-3d;
  transform : rotate(45deg);
}
.wrapper .bootstrap-select.show-menu-arrow.open > .dropdown-toggle, .wrapper .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  z-index : 1061;
}
.wrapper .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content : '';
  border-left : 7px solid transparent;
  border-right : 7px solid transparent;
  border-bottom : 7px solid rgba(204, 204, 204, 0.2);
  position : absolute;
  bottom : -4px;
  left : 9px;
  display : none;
}
.wrapper .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content : '';
  border-left : 6px solid transparent;
  border-right : 6px solid transparent;
  border-bottom : 6px solid #FFFFFF;
  position : absolute;
  bottom : -4px;
  left : 10px;
  display : none;
}
.wrapper .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  bottom : auto;
  top : -4px;
  border-top : 7px solid rgba(204, 204, 204, 0.2);
  border-bottom : 0;
}
.wrapper .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  bottom : auto;
  top : -4px;
  border-top : 6px solid #FFFFFF;
  border-bottom : 0;
}
.wrapper .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  right : 12px;
  left : auto;
}
.wrapper .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  right : 13px;
  left : auto;
}
.wrapper .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after, .wrapper .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before {
  display : block;
}
.wrapper .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after, .wrapper .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before {
  display : block;
}
.wrapper .bs-actionsbox, .wrapper .bs-donebutton, .wrapper .bs-searchbox {
  padding : 4px 8px;
}
.wrapper .bs-actionsbox {
  width : 100%;
  box-sizing : border-box;
}
.wrapper .bs-actionsbox .btn-group button {
  width : 50%;
}
.wrapper .bs-donebutton {
  float : left;
  width : 100%;
  box-sizing : border-box;
}
.wrapper .bs-donebutton .btn-group button {
  width : 100%;
}
.wrapper .bs-searchbox + .bs-actionsbox {
  padding : 0 8px 4px;
}
.wrapper .bs-searchbox .form-control {
  margin-bottom : 0;
  width : 100%;
  float : none;
}
.wrapper .bootstrap-select {
  position : relative;
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder {
  height : 36px;
  line-height : 36px;
  padding : 0 35px 0 10px !important;
  outline : 0;
  background-color : #F5F6FB !important;
  border : solid 1px transparent;
  color : #7E8088 !important;
  text-transform : capitalize;
  font-size : 0.96rem;
  position : absolute;
  top : 0;
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  box-shadow : none !important;
}
.wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}
.wrapper .bootstrap-select.h-30px {
  height : 30px;
  line-height : 30px;
}
.wrapper .bootstrap-select.h-30px .btn-light {
  height : 30px;
  line-height : 30px;
}
.wrapper .bootstrap-select .btn-light {
  background-color : #F5F6FB !important;
  color : #7E8088 !important;
  border : 1px solid transparent !important;
  height : 36px;
  line-height : 36px;
  padding : 0 35px 0 10px !important;
  text-transform : capitalize;
  font-size : 14px;
}
.wrapper .bootstrap-select .btn-light:hover {
  box-shadow : none !important;
}
.wrapper .bootstrap-select .btn-light:focus, .wrapper .bootstrap-select .btn-light:active {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}
.wrapper .bootstrap-select .btn-light [aria-expanded='true'] {
  outline : none;
  box-shadow : 0 4px 20px 0 rgba(0, 101, 255, 0.3);
  border : solid 1px #0065FF !important;
  background-color : #FFFFFF;
}
.wrapper .bootstrap-select .dropdown-toggle::after {
  speak : none;
  position : absolute;
  top : 50%;
  transform : translateY(-50%);
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing : grayscale;
  font-family : 'Font Awesome';
  content : '\f078' !important;
  font-weight : 900;
  right : 1em;
  color : #7E8088;
  margin : 0 !important;
  font-size : 14px;
  border : 0;
}
.wrapper .bootstrap-select .dropdown-menu {
  border : 0;
  margin : 0;
  padding : 0;
  background-color : #FFFFFF;
  color : #7E8088;
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
  max-height : 240px;
  max-width : 220px;
}
.wrapper .bootstrap-select .dropdown-menu::before {
  display : none;
}
.wrapper .bootstrap-select .dropdown-menu li {
  color : #FFFFFF;
}
.wrapper .bootstrap-select .dropdown-menu li .dropdown-item {
  padding : 10px 35px 7px 10px;
  color : #7E8088;
  transition : all 0.2s ease-in-out;
  text-transform : none;
  position : relative;
  line-height : 100%;
  white-space : normal;
}
.wrapper .bootstrap-select .dropdown-menu li .dropdown-item:hover {
  color : #202124 !important;
  background-color : #E9F2FF;
  transition : all 0.2s ease-in-out;
}
.wrapper .bootstrap-select .dropdown-menu li .dropdown-item.active {
  background-color : #E9F2FF;
  color : #202124;
}
.wrapper .bootstrap-select .dropdown-menu li.selected {
  background-color : #E9F2FF;
  transition : all 0.2s ease-in-out;
}
.wrapper .bootstrap-select .dropdown-menu li.selected span.check-mark {
  display : flex;
}
.wrapper .bootstrap-select .dropdown-menu li.selected span.check-mark::after {
  speak : none;
  position : absolute;
  top : 50%;
  transform : translateY(-50%);
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing : grayscale;
  content : '\2713';
  margin-left : 1em;
  right : 1em;
  width : auto;
  height : auto;
  border : 0;
  display : flex;
}

body.dark-mode .wrapper div.cs-select:not(.cs-select-language), body.dark-mode .wrapper div.cs-select .cs-options, body.dark-mode .wrapper.cs-select-white:not(.cs-select-language), body.dark-mode .wrapper.cs-select-white .cs-options {
  background-color : #3F415F !important;
  color : #FFFFFF;
}

body.dark-mode .wrapper div.cs-select .cs-optgroup ul li span, body.dark-mode .wrapper.cs-select-white .cs-optgroup ul li span {
  color : #FFFFFF !important;
}

body.dark-mode .wrapper div.cs-select .cs-options span:hover, body.dark-mode .wrapper div.cs-select.cs-select-race .cs-options span:hover, body.dark-mode .wrapper div.cs-select.cs-select-table .cs-options ul li span:hover {
  background-color : #00008E;
  border-color : #0065FF;
}

body.dark-mode .wrapper div.cs-select.cs-select-language .cs-options span:hover {
  background-color : transparent;
  color : #FFFFFF;
}

body.dark-mode .wrapper div.cs-select.cs-select-race .cs-options ul li {
  border-bottom : 1px solid #55576A;
}

body.dark-mode .wrapper div.cs-select span, body.dark-mode .wrapper div.cs-select.cs-select-table span.cs-placeholder, body.dark-mode .wrapper div.cs-select span.cs-placeholder::after, body.dark-mode .wrapper div.cs-select.cs-select-race .cs-options span:hover, body.dark-mode .wrapper div.cs-select-table .cs-options ul li span {
  color : #FFFFFF;
}

body.dark-mode .wrapper .bootstrap-select .no-results {
  padding : 5px 10px;
  margin : 0 8px 4px;
}

body.dark-mode .wrapper .bootstrap-select .btn-light {
  color : #FFFFFF !important;
  background-color : #3C3379 !important;
}

body.dark-mode .wrapper .bootstrap-select > .dropdown-toggle.bs-placeholder {
  color : #FFFFFF !important;
  background-color : #3C3379 !important;
}

body.dark-mode .wrapper .bootstrap-select .dropdown-toggle::after {
  color : #FFFFFF;
}

body.dark-mode .wrapper .bootstrap-select .dropdown-menu {
  background-color : #3F415F;
  color : #FFFFFF;
}
body.dark-mode .wrapper .bootstrap-select .dropdown-menu .form-control {
  border-color : transparent !important;
}
body.dark-mode .wrapper .bootstrap-select .dropdown-menu li {
  color : #FFFFFF;
}
body.dark-mode .wrapper .bootstrap-select .dropdown-menu li .dropdown-item {
  color : #FFFFFF;
  background-color : transparent;
}
body.dark-mode .wrapper .bootstrap-select .dropdown-menu li .dropdown-item:hover {
  color : #FFFFFF !important;
  background-color : #00008E;
}
body.dark-mode .wrapper .bootstrap-select .dropdown-menu li.selected {
  background-color : #00008E;
  color : #FFFFFF;
}

body.dark-mode .wrapper .bootstrap-select label {
  color : #FFFFFF;
}

body.dark-mode .modal div.cs-select:not(.cs-select-language), body.dark-mode .modal div.cs-select .cs-options {
  background-color : #F5F6FB !important;
}

body.dark-mode .modal div.cs-select .cs-options span:hover {
  background-color : #E9F2FF;
}

body.dark-mode .modal .bootstrap-select {
  display : flex;
}
body.dark-mode .modal .bootstrap-select .dropdown-toggle.btn-light {
  background-color : #F5F6FB !important;
  color : #7E8088 !important;
}
body.dark-mode .modal .bootstrap-select .dropdown-menu {
  background-color : #FFFFFF !important;
  color : #7E8088 !important;
}
body.dark-mode .modal .bootstrap-select .dropdown-menu li {
  color : #7E8088;
}
body.dark-mode .modal .bootstrap-select .dropdown-menu li .dropdown-item {
  color : #7E8088 !important;
}
body.dark-mode .modal .bootstrap-select .dropdown-menu li .dropdown-item:hover {
  background-color : #E9F2FF !important;
  color : #7E8088 !important;
}
body.dark-mode .modal .bootstrap-select .dropdown-menu li.selected {
  background-color : #E9F2FF;
}
body.dark-mode .modal .bootstrap-select .dropdown-toggle::after {
  color : #7E8088 !important;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #909198;
  opacity : 1;
  /* Firefox */
  outline : 0;
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #909198;
  opacity : 1;
  /* Firefox */
  outline : 0;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #909198;
  opacity : 1;
  /* Firefox */
  outline : 0;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color : #909198;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color : #909198;
}

input.js-datepicker:focus {
  padding : 0.7rem;
}

input.js-datepicker::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #7E8088;
  opacity : 1;
  /* Firefox */
  font-size : 0.96rem;
}

input.js-datepicker:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #7E8088;
  opacity : 1;
  /* Firefox */
  font-size : 0.96rem;
}

input.js-datepicker::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #7E8088;
  opacity : 1;
  /* Firefox */
  font-size : 0.96rem;
}

input.js-datepicker:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color : #7E8088;
  font-size : 0.96rem;
}

input.js-datepicker:focus::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  transform : translate(0px);
}

input.js-datepicker:focus:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  transform : translate(0px);
}

input.js-datepicker:focus::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  transform : translate(0px);
}

input.js-datepicker:focus:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  transform : translate(0px);
}

input.js-datepicker:focus::-ms-input-placeholder {
  /* Microsoft Edge */
  transform : translate(0px);
}

input.js-datepicker:focus {
  padding : 0.7rem;
}

.has-icon-left .form-control-position, .has-icon-right .form-control-position {
  top : 50%;
  transform : translateY(-50%);
  z-index : 4;
}
.has-icon-left .form-control-position i, .has-icon-right .form-control-position i {
  color : rgba(34, 41, 47, 0.4);
}

.has-icon-left input.js-datepicker:focus, .has-icon-right input.js-datepicker:focus {
  padding-left : 3rem;
}

.colorpicker input[type='color'] {
  width : 40px;
  border-radius : 4px 0 0 4px;
}

.colorpicker input[type='text'] {
  border-radius : 0 4px 4px 0;
}

.bootstrap-touchspin {
  margin : auto;
}
.bootstrap-touchspin .bootstrap-touchspin-injected {
  width : auto;
}
.bootstrap-touchspin .bootstrap-touchspin-injected.input-group-append > span {
  background-color : transparent;
  border : 0;
  padding : 0.7rem 10px;
}
.bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-up {
  border-radius : 0 4px 4px 0 !important;
}
.bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-down {
  border-radius : 4px 0 0 4px !important;
}
.bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-up, .bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-down {
  z-index : 2;
  width : 30px;
  height : 30px;
  background-color : #ECE2FB !important;
  color : #0065FF;
  margin : 0 !important;
  left : 0;
  right : 0;
  font-size : 22px;
}
.bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-up:hover, .bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-up:focus, .bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-down:hover, .bootstrap-touchspin .bootstrap-touchspin-injected .btn.bootstrap-touchspin-down:focus {
  color : #FFFFFF !important;
  box-shadow : none;
  background-color : #0065FF !important;
}
.bootstrap-touchspin.input-group {
  width : 100%;
}
.bootstrap-touchspin.w-90px {
  width : 90px;
  margin-left : 0;
  margin-right : 0;
}
.bootstrap-touchspin.input-group-lg {
  width : 200px;
}
.bootstrap-touchspin.input-group-lg .btn.bootstrap-touchspin-up, .bootstrap-touchspin.input-group-lg .btn.bootstrap-touchspin-down {
  width : 60px !important;
  height : 50px !important;
  font-size : 40px !important;
  padding : 0 !important;
}
.bootstrap-touchspin.input-group-lg .touchspin-postfix.form-control, .bootstrap-touchspin.input-group-lg .touchspin.form-control {
  height : 50px;
  font-size : 26px;
}
.bootstrap-touchspin .touchspin-postfix.form-control, .bootstrap-touchspin .touchspin.form-control {
  z-index : 1;
  background-color : #FFFFFF;
  height : 30px;
  padding : 8px 2px;
  font-family : 'Bebas-Neue', sans-serif;
  font-size : 14px;
  color : #7E8088;
  border-radius : 0 !important;
}

body.dark-mode input:-webkit-autofill, body.dark-mode input:-webkit-autofill:hover, body.dark-mode input:-webkit-autofill:focus, body.dark-mode textarea:-webkit-autofill, body.dark-mode textarea:-webkit-autofill:hover, body.dark-mode textarea:-webkit-autofill:focus, body.dark-mode select:-webkit-autofill, body.dark-mode select:-webkit-autofill:hover, body.dark-mode select:-webkit-autofill:focus {
  border : 1px solid #171A46;
  -webkit-text-fill-color : #FFFFFF;
  -webkit-box-shadow : 0 0 0 1000px #171A46 inset;
  -webkit-transition : background-color 5000s ease-in-out 0s;
          transition : background-color 5000s ease-in-out 0s;
  color : #F7F7F7;
}

body.dark-mode ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #F7F7F7;
  opacity : 1;
  /* Firefox */
  outline : 0;
}

body.dark-mode :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #F7F7F7;
  opacity : 1;
  /* Firefox */
  outline : 0;
}

body.dark-mode ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #F7F7F7;
  opacity : 1;
  /* Firefox */
  outline : 0;
}

body.dark-mode :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color : #F7F7F7;
}

body.dark-mode input.js-datepicker::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #FFFFFF;
}

body.dark-mode input.js-datepicker:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #FFFFFF;
}

body.dark-mode input.js-datepicker::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color : #FFFFFF;
}

body.dark-mode input.js-datepicker:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color : #FFFFFF;
}

body.dark-mode input.js-datepicker::-ms-input-placeholder {
  /* Microsoft Edge */
  color : #FFFFFF;
}

.vs-checkbox-con {
  overflow : hidden;
  flex-shrink : 0;
}
.vs-checkbox-con input {
  margin : 0;
}
.vs-checkbox-con .vs-checkbox {
  width : 16px;
  height : 16px;
  border-width : 1px;
  border-color : #C0C4D3;
  overflow : hidden;
}
.vs-checkbox-con .vs-checkbox-label {
  margin-bottom : -3px;
  line-height : 100%;
}
.vs-checkbox-con .vs-checkbox .vs-checkbox--check {
  display : flex;
  align-items : center;
  justify-content : center;
  transform-origin : center;
}
.vs-checkbox-con .vs-checkbox .vs-checkbox--check .vs-icon, .vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check .vs-icon {
  line-height : 1.4;
  font-size : 10px;
}
.vs-checkbox-con .vs-checkbox .vs-checkbox--check .vs-icon {
  color : transparent;
}
.vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check .vs-icon {
  color : #FFFFFF;
}
.vs-checkbox-con input:checked ~ .vs-checkbox {
  border-color : #FF4713;
}
.vs-checkbox-con .vs-checkbox .vs-checkbox--check .vs-icon, .vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check .vs-icon {
  line-height : 1.3;
}
.vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check, .vs-checkbox-con input:active:checked + .vs-checkbox .vs-checkbox--check {
  background-color : #FF4713;
}

body.dark-mode .vs-checkbox-label {
  color : #FFFFFF;
}

body.dark-mode .custom-switch .custom-control-label::before, body.dark-mode .custom-switch .custom-control-input:not(:disabled):active ~ .custom-control-label::before, body.dark-mode .custom-control-input:checked ~ .custom-control-label::after {
  background-color : #3F415F;
}

.custom-radio {
  display : flex;
  align-items : center;
  cursor : pointer;
}
.custom-radio .custom-control-label {
  display : flex;
  align-items : center;
  margin : 0;
}
.custom-radio .custom-control-label::after, .custom-radio .custom-control-label::before {
  width : 18px;
  height : 18px;
  top : 50%;
  margin-top : -9px;
  cursor : pointer;
}
.custom-radio .custom-control-label:after {
  background : transparent !important;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  color : #FFFFFF;
  background-color : #FF4713;
  border : 2px solid #FFFFFF;
  box-shadow : 0 0 0 1px #FF4713;
}
.custom-radio .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color : #FF4713;
  border-color : #FF4713;
}

.wrapper .fake-upload {
  width : 0.1px;
  height : 0.1px;
  opacity : 0;
  overflow : hidden;
  position : absolute;
  z-index : -1;
}

.wrapper .fake-upload + label {
  font-size : 12px;
  /* 20px */
  font-weight : 500 !important;
  text-overflow : ellipsis;
  white-space : nowrap;
  cursor : pointer;
  display : inline-block;
  overflow : hidden;
  padding : 0.9rem 1rem !important;
  color : #FFFFFF !important;
  text-align : center;
  /* 10px 20px */
}

.wrapper .form .fake-upload + label {
  padding : 0.9rem 1rem 0.8rem !important;
}

.wrapper .fake-upload:focus + label, .wrapper .fake-upload.has-focus + label {
  outline : none;
}

.wrapper .fake-upload + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}

.wrapper .fake-upload + label svg {
  width : 1em;
  height : 1em;
  vertical-align : middle;
  fill : currentColor;
  margin-top : -0.25em;
  /* 4px */
  margin-right : 0.25em;
  /* 4px */
}

.wrapper .tox-tinymce {
  border : 1px solid #E9F2FF;
}
.wrapper .tox-tinymce .tox-toolbar__primary {
  background : none;
  border-bottom : 1px solid #E9F2FF;
}
.wrapper .tox-tinymce .tox-toolbar__primary .tox-toolbar__group:not(:last-of-type) {
  border-right : 1px solid #E9F2FF;
}
.wrapper .tox-tinymce .tox-toolbar__primary .tox-tbtn {
  transition : all 0.3s ease-in-out;
}
.wrapper .tox-tinymce .tox-toolbar__primary .tox-tbtn svg {
  fill : #7E8088;
}
.wrapper .tox-tinymce .tox-toolbar__primary .tox-tbtn:hover, .wrapper .tox-tinymce .tox-toolbar__primary .tox-tbtn:focus, .wrapper .tox-tinymce .tox-toolbar__primary .tox-tbtn:active {
  transition : all 0.3s ease-in-out;
}

.wrapper .tox-tbtn {
  transition : all 0.3s ease-in-out;
}
.wrapper .tox-tbtn svg {
  fill : #7E8088;
}
.wrapper .tox-tbtn:hover, .wrapper .tox-tbtn:focus, .wrapper .tox-tbtn:active {
  transition : all 0.3s ease-in-out;
}

.wrapper .tox-collection--toolbar .tox-collection__item {
  transition : all 0.3s ease-in-out;
}

.wrapper .tox-collection--toolbar .tox-collection__item--active {
  transition : all 0.3s ease-in-out;
}

body.dark-mode .wrapper .tox {
  border-color : #3C3379;
}
body.dark-mode .wrapper .tox .tox-toolbar {
  background : #3C3379;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord {
  background : #3C3379;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary {
  background : none;
  border-bottom : 1px solid #3C3379;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-toolbar__group:not(:last-of-type) {
  border-right : 1px solid #3C3379;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn {
  color : #FFFFFF;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn svg {
  fill : #FFFFFF;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn:hover, body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn:focus, body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn:active {
  background : #222054;
  color : #FFFFFF !important;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn:hover svg, body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn:focus svg, body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn:active svg {
  fill : #FFFFFF !important;
}
body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn--enabled, body.dark-mode .wrapper .tox .tox-toolbar-overlord .tox-toolbar__primary .tox-tbtn--enabled:hover {
  background : #222054;
  color : #FFFFFF;
}
body.dark-mode .wrapper .tox .tox-edit-area__iframe {
  background-color : #2C245D;
}
body.dark-mode .wrapper .tox .tox-edit-area__iframe * {
  color : #FFFFFF !important;
}
body.dark-mode .wrapper .tox .tox-split-button:hover {
  box-shadow : 0 0 0 1px #222054 inset;
}

body.dark-mode .tox-menu {
  background-color : #3C3379;
  color : #FFFFFF;
  border-color : #2C2964;
}

body.dark-mode .tox-collection--list .tox-collection__group {
  border-color : #222054;
}

body.dark-mode .tox-collection--list .tox-collection__item {
  color : #FFFFFF;
}

body.dark-mode .tox-collection--list .tox-collection__item--enabled, body.dark-mode .tox-collection--list .tox-collection__item--active {
  background-color : #222054;
}

body.dark-mode .tox-collection--list .tox-collection__item-checkmark svg {
  fill : #FFFFFF;
}

body.dark-mode .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color : #FFFFFF;
}

body.dark-mode .tox-collection--toolbar .tox-collection__item {
  color : #FFFFFF;
}

body.dark-mode .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color : #FFFFFF;
}

body.dark-mode .tox-collection--toolbar .tox-collection__item--active {
  background-color : #222054;
}

body.dark-mode .tox-tbtn {
  color : #FFFFFF;
}
body.dark-mode .tox-tbtn svg {
  fill : #FFFFFF;
}
body.dark-mode .tox-tbtn:hover, body.dark-mode .tox-tbtn:focus, body.dark-mode .tox-tbtn:active {
  background : #222054;
  color : #FFFFFF !important;
}
body.dark-mode .tox-tbtn:hover svg, body.dark-mode .tox-tbtn:focus svg, body.dark-mode .tox-tbtn:active svg {
  fill : #FFFFFF !important;
}

body.dark-mode .tox.tox-tinymce-aux .tox-toolbar__overflow {
  background : #3C3379;
  color : #FFFFFF;
  border-color : #2C2964;
}
body.dark-mode .tox.tox-tinymce-aux .tox-toolbar__overflow .tox-toolbar__group {
  background-color : #3C3379;
}
body.dark-mode .tox.tox-tinymce-aux .tox-toolbar__overflow .tox-toolbar__group:not(:last-of-type) {
  border-color : #2C2964;
}

#tinymce, .tiny-mce-editor {
  color : #FFFFFF !important;
}
#tinymce p, .tiny-mce-editor p {
  color : #FFFFFF !important;
}

html body.dark-mode {
  background-color : #171A46;
}

body.dark-mode .modal-backdrop.show {
  opacity : 0.7;
}

body.dark-mode .popover {
  background-color : #3F415F;
}
body.dark-mode .popover .popover-body {
  color : #FFFFFF;
}
body.dark-mode .popover.bs-popover-bottom .arrow::after {
  border-top-color : #3F415F !important;
  border-bottom-color : #3F415F !important;
}
body.dark-mode .popover.bs-popover-auto[x-placement^=top] > .arrow::after, body.dark-mode .popover.bs-popover-top > .arrow::after {
  border-top-color : #3F415F !important;
}

body.dark-mode footer {
  background-color : #171A46;
  color : #FFFFFF;
}
body.dark-mode footer .footer-nav {
  color : #FFFFFF;
}
body.dark-mode footer .footer-nav a {
  color : #FFFFFF;
}
body.dark-mode footer .footer-nav a:hover, body.dark-mode footer .footer-nav a:focus {
  color : #FF4713;
}
body.dark-mode footer .powered-by {
  color : #FFFFFF;
}

body.dark-mode .wrapper header {
  background-image : none;
  background-color : #171A46;
}
body.dark-mode .wrapper header .nav-wrapper {
  background-color : #2C2964;
}
body.dark-mode .wrapper header .nav-wrapper nav.navigation a {
  color : #FFFFFF;
}
body.dark-mode .wrapper header .nav-wrapper nav.navigation a:hover, body.dark-mode .wrapper header .nav-wrapper nav.navigation a:focus, body.dark-mode .wrapper header .nav-wrapper nav.navigation a:active {
  background-color : #222054;
}
body.dark-mode .wrapper header .nav-wrapper .header-right div.cs-select.cs-select-language span.cs-placeholder {
  color : #FFFFFF;
}
body.dark-mode .wrapper header .nav-wrapper .header-right div.cs-select.cs-select-language span.cs-placeholder::after {
  color : #FFFFFF;
}
body.dark-mode .wrapper header #toggle-filters {
  background-color : #332773;
  color : #FFFFFF;
}

body.dark-mode .wrapper .grid--loading::before {
  background-color : #171A46;
}

body.dark-mode .wrapper .grid--loading::after {
  border : 8px solid #383A41;
  border-bottom-color : #565963;
}

body.dark-mode .wrapper .events-filter {
  background-color : #171A46;
}
body.dark-mode .wrapper .events-filter .filter-box > div label {
  color : #FFFFFF;
}
body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select {
  background : #3F415F;
}
body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select > .dropdown-toggle.btn-light {
  background : #3F415F !important;
  color : #FFFFFF !important;
}
body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select > .dropdown-toggle.btn-light::after {
  color : #FFFFFF;
}
body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select .dropdown-menu {
  background : #3F415F;
}
body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select .dropdown-menu li .dropdown-item {
  color : #FFFFFF;
  border-bottom : 1px solid #55576A;
}
body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select .dropdown-menu li .dropdown-item:hover, body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select .dropdown-menu li .dropdown-item:focus, body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select .dropdown-menu li .dropdown-item:active, body.dark-mode .wrapper .events-filter .filter-box .filter-select .bootstrap-select .dropdown-menu li .dropdown-item.active {
  color : #FFFFFF !important;
  background-color : #00008E;
}
body.dark-mode .wrapper .events-filter .custom-control .label {
  color : #FFFFFF;
}
body.dark-mode .wrapper .events-filter .custom-switch .custom-control-label::before {
  background-color : #E2E2E2;
}

body.dark-mode .wrapper .container-page article h1, body.dark-mode .wrapper .container-page article h2, body.dark-mode .wrapper .container-page article h3, body.dark-mode .wrapper .container-page article h4, body.dark-mode .wrapper .container-page article h5, body.dark-mode .wrapper .container-page article h6, body.dark-mode .wrapper .container-page article p, body.dark-mode .wrapper .container-page article strong, body.dark-mode .wrapper .container-page article ul, body.dark-mode .wrapper .container-page article ul li {
  color : #FFFFFF;
}

body.dark-mode .wrapper .container-page article.what-we-do .service-box .service-content h3 {
  color : #FFFFFF;
}

body.dark-mode .wrapper .container-page article.what-we-do .service-box .service-content p {
  color : #C4C4C8 !important;
}

body.dark-mode .wrapper .container-page article.contact form label {
  color : #FFFFFF;
}

body.dark-mode .wrapper .container-page article.contact form input, body.dark-mode .wrapper .container-page article.contact form textarea {
  color : #FFFFFF;
  background-color : #3F415F;
}

.pace-progress {
  z-index : 100;
  background-color : #5846A0 !important;
}

body.loader-running {
  overflow : hidden;
}

body.loaded {
  overflow-x : hidden;
  overflow-y : auto;
}

.js-loader {
  display : flex;
  justify-content : center;
  align-items : center;
  flex-direction : column;
  width : 100%;
  height : 100%;
  background : #FFFFFF;
  position : fixed;
  left : 0;
  right : 0;
  top : 0;
  bottom : 0;
  z-index : 9999;
}

.loading-logo {
  position : absolute;
  left : 50%;
  transform : translateX(-50%);
  top : 40%;
}
.loading-logo img {
  height : 40px;
}

.loading {
  position : absolute;
  top : 50%;
  left : 50%;
  transform : translate(-50%, -50%);
  width : 120px;
  height : 120px;
  border-radius : 50%;
  border : 3px solid transparent;
}

.loading .effect-1, .loading .effect-2 {
  position : absolute;
  width : 100%;
  height : 100%;
  border : 3px solid transparent;
  border-left : 3px solid #5846A0;
  border-radius : 50%;
  box-sizing : border-box;
}

.loading .effect-1 {
  -webkit-animation : rotate 1s ease infinite;
          animation : rotate 1s ease infinite;
}

.loading .effect-2 {
  -webkit-animation : rotateOpacity 1s ease infinite 0.1s;
          animation : rotateOpacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  position : absolute;
  width : 100%;
  height : 100%;
  border : 3px solid transparent;
  border-left : 3px solid #5846A0;
  -webkit-animation : rotateOpacity 1s ease infinite 0.2s;
          animation : rotateOpacity 1s ease infinite 0.2s;
  border-radius : 50%;
  box-sizing : border-box;
}

.loading .effects {
  transition : all 0.3s ease;
}

@keyframes rotate {
  0% {
    transform : rotate(0deg);
  }
  100% {
    transform : rotate(1turn);
  }
}

@keyframes rotateOpacity {
  0% {
    transform : rotate(0deg);
    opacity : 0.1;
  }
  100% {
    transform : rotate(1turn);
    opacity : 1;
  }
}

.loader-stripes {
  display : flex;
  align-items : center;
  justify-content : center;
}
.loader-stripes span {
  width : 5.7px;
  -webkit-animation : stripes 1s cubic-bezier(0.8, 0.5, 0.2, 1.4) infinite;
          animation : stripes 1s cubic-bezier(0.8, 0.5, 0.2, 1.4) infinite;
  margin : 0 2px;
  border-radius : 10px;
  background-color : #5846A0;
  transition : all 0.2s ease-in-out;
}
.loader-stripes span.line-1 {
  height : 17.1px;
  -webkit-animation-delay : 0.1s;
          animation-delay : 0.1s;
}
.loader-stripes span.line-2 {
  height : 26.6px;
  -webkit-animation-delay : 0.2s;
          animation-delay : 0.2s;
}
.loader-stripes span.line-3 {
  height : 36px;
  -webkit-animation-delay : 0.4s;
          animation-delay : 0.4s;
}
.loader-stripes span.line-4 {
  height : 21.8px;
  -webkit-animation-delay : 0.6s;
          animation-delay : 0.6s;
}
.loader-stripes span.line-5 {
  height : 12.3px;
  -webkit-animation-delay : 0.8s;
          animation-delay : 0.8s;
}

@keyframes stripes {
  0%, 100% {
    opacity : 0;
  }
  33% {
    opacity : 1;
  }
  66% {
    opacity : 0;
  }
}

.js-i-load, .js-loader-action {
  position : absolute;
  left : 0;
  right : 0;
  top : 0;
  bottom : 0;
  display : flex;
  justify-content : center;
  align-items : center;
  z-index : 9999;
  background-color : #FFFFFF;
}
.js-i-load .spinner-grow, .js-loader-action .spinner-grow {
  color : #5846A0;
}

.js-loader-action {
  display : none;
  background-color : rgba(255, 255, 255, 0.6);
  position : fixed;
}
.js-loader-action .spinner-grow {
  position : absolute;
  top : 50%;
  left : 50%;
  transform : translate(-50%, -50%);
}

html body.dark-mode .js-loader {
  background-color : #222054;
}

html body.dark-mode .js-loader-action {
  background-color : rgba(23, 26, 70, 0.6);
}

html body.dark-mode .pace-progress {
  background : #FFFFFF !important;
}

html body.dark-mode .loader-stripes span {
  background-color : #FFFFFF;
}

html body.dark-mode .loading .effect-1, html body.dark-mode .loading .effect-2, html body.dark-mode .loading .effect-3 {
  border-left : 3px solid #FFFFFF;
}

/* required styles */
.leaflet-pane, .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-tile-container {
  position : absolute;
  left : 0;
  top : 0;
}

.leaflet-pane > svg, .leaflet-pane > canvas {
  position : absolute;
  left : 0;
  top : 0;
}

.leaflet-zoom-box, .leaflet-image-layer, .leaflet-layer {
  position : absolute;
  left : 0;
  top : 0;
}

.leaflet-container {
  overflow : hidden;
}

.leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow {
  -webkit-user-select : none;
     -moz-user-select : none;
      -ms-user-select : none;
          user-select : none;
  -webkit-user-drag : none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
  background : transparent;
}
.leaflet-tile::selection {
  background : transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering : -webkit-optimize-contrast;
}

.leaflet-safari .leaflet-tile-container {
  width : 1600px;
  height : 1600px;
  -webkit-transform-origin : 0 0;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-marker-icon, .leaflet-marker-shadow {
  display : block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container {
  -webkit-tap-highlight-color : transparent;
}
.leaflet-container .leaflet-overlay-pane svg, .leaflet-container .leaflet-marker-pane img, .leaflet-container .leaflet-shadow-pane img, .leaflet-container .leaflet-tile-pane img, .leaflet-container img.leaflet-image-layer, .leaflet-container .leaflet-tile {
  max-width : none !important;
  max-height : none !important;
}
.leaflet-container.leaflet-touch-zoom {
  touch-action : pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action : none;
  touch-action : pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action : none;
}
.leaflet-container a {
  -webkit-tap-highlight-color : rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter : inherit;
  visibility : hidden;
}

.leaflet-tile-loaded {
  visibility : inherit;
}

.leaflet-zoom-box {
  width : 0;
  height : 0;
  box-sizing : border-box;
  z-index : 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select : none;
}

.leaflet-pane {
  z-index : 400;
}

.leaflet-tile-pane {
  z-index : 200;
}

.leaflet-overlay-pane {
  z-index : 400;
}

.leaflet-shadow-pane {
  z-index : 500;
}

.leaflet-marker-pane {
  z-index : 600;
}

.leaflet-tooltip-pane {
  z-index : 650;
}

.leaflet-popup-pane {
  z-index : 700;
}

.leaflet-map-pane canvas {
  z-index : 100;
}

.leaflet-map-pane svg {
  z-index : 200;
}

.leaflet-vml-shape {
  width : 1px;
  height : 1px;
}

.lvml {
  behavior : url(#default#VML);
  display : inline-block;
  position : absolute;
}

/* control positioning */
.leaflet-control {
  position : relative;
  z-index : 800;
  pointer-events : visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events : auto;
}

.leaflet-top, .leaflet-bottom {
  position : absolute;
  z-index : 1000;
  pointer-events : none;
}

.leaflet-top {
  top : 0;
}

.leaflet-right {
  right : 0;
}

.leaflet-bottom {
  bottom : 0;
}

.leaflet-left {
  left : 0;
}

.leaflet-control {
  float : left;
  clear : both;
}

.leaflet-right .leaflet-control {
  float : right;
}

.leaflet-top .leaflet-control {
  margin-top : 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom : 10px;
}

.leaflet-left .leaflet-control {
  margin-left : 10px;
}

.leaflet-right .leaflet-control {
  margin-right : 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change : opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity : 0;
  transition : opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity : 1;
}

.leaflet-zoom-animated {
  transform-origin : 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change : transform;
  transition : transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile {
  transition : none;
}

.leaflet-pan-anim .leaflet-tile {
  transition : none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility : hidden;
}

/* cursors */
.leaflet-interactive {
  cursor : pointer;
}

.leaflet-grab {
  cursor : -webkit-grab;
  cursor :         grab;
}

.leaflet-crosshair {
  cursor : crosshair;
}
.leaflet-crosshair .leaflet-interactive {
  cursor : crosshair;
}

.leaflet-popup-pane, .leaflet-control {
  cursor : auto;
}

.leaflet-dragging .leaflet-grab {
  cursor : move;
  cursor : -webkit-grabbing;
  cursor :         grabbing;
}
.leaflet-dragging .leaflet-grab .leaflet-interactive {
  cursor : move;
  cursor : -webkit-grabbing;
  cursor :         grabbing;
}

.leaflet-dragging .leaflet-marker-draggable {
  cursor : move;
  cursor : -webkit-grabbing;
  cursor :         grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-image-layer, .leaflet-pane > svg path, .leaflet-tile-container {
  pointer-events : none;
}

.leaflet-marker-icon.leaflet-interactive, .leaflet-image-layer.leaflet-interactive, .leaflet-pane > svg path.leaflet-interactive, svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events : visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events : auto;
}

/* visual tweaks */
.leaflet-container {
  background : #DDDDDD;
  outline : 0;
}
.leaflet-container a {
  color : #0078A8;
}
.leaflet-container a.leaflet-active {
  outline : 2px solid orange;
}

.leaflet-zoom-box {
  border : 2px dotted #3388FF;
  background : rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font : 12px/1.5 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow : 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius : 4px;
}
.leaflet-bar a {
  background-color : #FFFFFF;
  border-bottom : 1px solid #CCCCCC;
  width : 26px;
  height : 26px;
  line-height : 26px;
  display : block;
  text-align : center;
  text-decoration : none;
  color : black;
  background-position : 50% 50%;
  background-repeat : no-repeat;
  display : block;
}
.leaflet-bar a:hover {
  background-color : #FFFFFF;
  border-bottom : 1px solid #CCCCCC;
  width : 26px;
  height : 26px;
  line-height : 26px;
  display : block;
  text-align : center;
  text-decoration : none;
  color : black;
}

.leaflet-control-layers-toggle {
  background-position : 50% 50%;
  background-repeat : no-repeat;
  display : block;
}

.leaflet-bar a:hover {
  background-color : #F4F4F4;
}

.leaflet-bar a:first-child {
  border-top-left-radius : 4px;
  border-top-right-radius : 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius : 4px;
  border-bottom-right-radius : 4px;
  border-bottom : none;
}

.leaflet-bar a.leaflet-disabled {
  cursor : default;
  background-color : #F4F4F4;
  color : #BBBBBB;
}

.leaflet-touch .leaflet-bar a {
  width : 30px;
  height : 30px;
  line-height : 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius : 2px;
  border-top-right-radius : 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius : 2px;
  border-bottom-right-radius : 2px;
}

/* zoom control */
.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  font : bold 18px 'Lucida Console', Monaco, monospace;
  text-indent : 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size : 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow : 0 1px 5px rgba(0, 0, 0, 0.4);
  background : #FFFFFF;
  border-radius : 5px;
}

.leaflet-control-layers-toggle {
  background-image : url(./vue/app-assets/images/leaflet/layers.png);
  width : 36px;
  height : 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image : url(./vue/app-assets/images/leaflet/layers-2x.png);
  background-size : 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width : 44px;
  height : 44px;
}

.leaflet-control-layers .leaflet-control-layers-list {
  display : none;
}

.leaflet-control-layers-expanded {
  padding : 6px 10px 6px 6px;
  color : #333333;
  background : #FFFFFF;
}
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display : none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display : block;
  position : relative;
}

.leaflet-control-layers-scrollbar {
  overflow-y : scroll;
  overflow-x : hidden;
  padding-right : 5px;
}

.leaflet-control-layers-selector {
  margin-top : 2px;
  position : relative;
  top : 1px;
}

.leaflet-control-layers label {
  display : block;
}

.leaflet-control-layers-separator {
  height : 0;
  border-top : 1px solid #DDDDDD;
  margin : 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image : url(./vue/app-assets/images/leaflet/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background : #FFFFFF;
  background : rgba(255, 255, 255, 0.7);
  margin : 0;
}

.leaflet-control-attribution, .leaflet-control-scale-line {
  padding : 0 5px;
  color : #333333;
}

.leaflet-control-attribution a {
  text-decoration : none;
}
.leaflet-control-attribution a:hover {
  text-decoration : underline;
}

.leaflet-container .leaflet-control-attribution, .leaflet-container .leaflet-control-scale {
  font-size : 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left : 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom : 5px;
}

.leaflet-control-scale-line {
  border : 2px solid #777777;
  border-top : none;
  line-height : 1.1;
  padding : 2px 5px 1px;
  font-size : 11px;
  white-space : nowrap;
  overflow : hidden;
  box-sizing : border-box;
  background : #FFFFFF;
  background : rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top : 2px solid #777777;
  border-bottom : none;
  margin-top : -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom : 2px solid #777777;
}

.leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  box-shadow : none;
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  border : 2px solid rgba(0, 0, 0, 0.2);
  background-clip : padding-box;
}

/* popup */
.leaflet-popup {
  position : absolute;
  text-align : center;
  margin-bottom : 20px;
}

.leaflet-popup-content-wrapper {
  padding : 1px;
  text-align : left;
  border-radius : 12px;
}

.leaflet-popup-content {
  margin : 13px 19px;
  line-height : 1.4;
}
.leaflet-popup-content p {
  margin : 18px 0;
}

.leaflet-popup-tip-container {
  width : 40px;
  height : 20px;
  position : absolute;
  left : 50%;
  margin-left : -20px;
  overflow : hidden;
  pointer-events : none;
}

.leaflet-popup-tip {
  width : 17px;
  height : 17px;
  padding : 1px;
  margin : -10px auto 0;
  transform : rotate(45deg);
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background : white;
  color : #333333;
  box-shadow : 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position : absolute;
  top : 0;
  right : 0;
  padding : 4px 4px 0 0;
  border : none;
  text-align : center;
  width : 18px;
  height : 14px;
  font : 16px/14px Tahoma, Verdana, sans-serif;
  color : #C3C3C3;
  text-decoration : none;
  font-weight : bold;
  background : transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color : #999999;
}

.leaflet-popup-scrolled {
  overflow : auto;
  border-bottom : 1px solid #DDDDDD;
  border-top : 1px solid #DDDDDD;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom : 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width : 24px;
  margin : 0 auto;
  -ms-filter : 'progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)';
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top : -1px;
}

.leaflet-oldie .leaflet-control-zoom, .leaflet-oldie .leaflet-control-layers, .leaflet-oldie .leaflet-popup-content-wrapper, .leaflet-oldie .leaflet-popup-tip {
  border : 1px solid #999999;
}

/* div icon */
.leaflet-div-icon {
  background : #FFFFFF;
  border : 1px solid #666666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position : absolute;
  padding : 6px;
  background-color : #FFFFFF;
  border : 1px solid #FFFFFF;
  border-radius : 3px;
  color : #222222;
  white-space : nowrap;
  -webkit-user-select : none;
     -moz-user-select : none;
      -ms-user-select : none;
          user-select : none;
  pointer-events : none;
  box-shadow : 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor : pointer;
  pointer-events : auto;
}

.leaflet-tooltip-top:before, .leaflet-tooltip-bottom:before, .leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  position : absolute;
  pointer-events : none;
  border : 6px solid transparent;
  background : transparent;
  content : '';
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top : 6px;
}

.leaflet-tooltip-top {
  margin-top : -6px;
}

.leaflet-tooltip-bottom:before {
  left : 50%;
  margin-left : -6px;
}

.leaflet-tooltip-top:before {
  left : 50%;
  margin-left : -6px;
  bottom : 0;
  margin-bottom : -12px;
  border-top-color : #FFFFFF;
}

.leaflet-tooltip-bottom:before {
  top : 0;
  margin-top : -12px;
  margin-left : -6px;
  border-bottom-color : #FFFFFF;
}

.leaflet-tooltip-left {
  margin-left : -6px;
}

.leaflet-tooltip-right {
  margin-left : 6px;
}

.leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  top : 50%;
  margin-top : -6px;
}

.leaflet-tooltip-left:before {
  right : 0;
  margin-right : -12px;
  border-left-color : #FFFFFF;
}

.leaflet-tooltip-right:before {
  left : 0;
  margin-left : -12px;
  border-right-color : #FFFFFF;
}

.leaflet-map {
  border-radius : 10px 10px 0 0;
  height : 0;
  opacity : 0;
  width : 99%;
  z-index : 10;
  top : 0;
  right : 0;
  bottom : 0;
  left : 0;
  margin-left : 10px;
  position : absolute;
}
.leaflet-map.show {
  height : calc(100vh - 210px);
  opacity : 1;
}
.leaflet-map.leaflet-pin-map {
  height : 250px;
  width : 100%;
  margin : auto;
  opacity : 1;
  border-radius : 4px;
  position : relative;
}

.custom-control {
  height : 36px;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  transition : transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  transition : stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
  background-color : rgba(181, 226, 140, 0.6);
}
.marker-cluster-small div {
  background-color : rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color : rgba(241, 211, 87, 0.6);
}
.marker-cluster-medium div {
  background-color : rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color : rgba(253, 156, 115, 0.6);
}
.marker-cluster-large div {
  background-color : rgba(241, 128, 23, 0.6);
}

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color : #B5E28C;
}
.leaflet-oldie .marker-cluster-small div {
  background-color : #6ECC39;
}

.leaflet-oldie .marker-cluster-medium {
  background-color : #F1D357;
}
.leaflet-oldie .marker-cluster-medium div {
  background-color : #F0C20C;
}

.leaflet-oldie .marker-cluster-large {
  background-color : #FD9C73;
}
.leaflet-oldie .marker-cluster-large div {
  background-color : #F18017;
}

.marker-cluster {
  background-clip : padding-box;
  border-radius : 20px;
}
.marker-cluster div {
  width : 30px;
  height : 30px;
  margin-left : 5px;
  margin-top : 5px;
  text-align : center;
  border-radius : 15px;
  font : 12px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.marker-cluster span {
  line-height : 30px;
}

.leaflet-popup-content {
  margin : 0;
  line-height : 100%;
  width : 280px !important;
}
.leaflet-popup-content .grid__item {
  position : relative;
  width : 280px;
  height : 280px;
  margin : 0;
}

.leaflet-popup-content-wrapper {
  padding : 0;
  border-radius : 10px;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background : #00003D;
}

@media screen and (max-width: 1199px) {
  .leaflet-map {
    margin : 0;
    width : 100%;
  }
  .leaflet-map.show {
    height : calc(100vh - 120px);
  }
}

@media screen and (max-width: 991px) {
  .leaflet-map.show {
    height : calc(100vh - 100px);
  }
}

html {
  text-rendering : optimizeLegibility;
  scroll-behavior : smooth;
}

body {
  font-family : 'Nunito-Sans', sans-serif;
  font-size : 14px;
  font-weight : 500;
  color : #7E8088;
  background : #F5F6FB;
  -webkit-font-smoothing : antialiased;
  overflow : hidden;
  padding-top : 60px;
}
body::after {
  content : '';
  position : absolute;
  background-color : #00003D;
  top : 0;
  right : 0;
  bottom : 0;
  left : 0;
  z-index : -100;
  opacity : 0;
}
body.is-active::after {
  opacity : 0.4;
  z-index : 20;
  display : block;
}

:focus, :hover {
  outline : 0 !important;
  text-decoration : none;
}

.wrapper {
  overflow : hidden;
}

a {
  color : #B4598F;
  transition : all 0.2s ease-in-out;
}
a:hover, a:focus {
  color : #DF3607;
  transition : all 0.2s ease-in-out;
}

@-webkit-keyframes animLoader {
  to {
    transform : rotate(360deg);
  }
}

@keyframes animLoader {
  to {
    transform : rotate(360deg);
  }
}

main {
  display : flex;
  flex-wrap : wrap;
  height : calc(100vh - 210px);
}

header {
  width : 100%;
  height : 60px;
  background-image : linear-gradient(to right, #00008E -3%, #5410C3 76%, #AC21FB);
  padding : 5px 15px;
  display : flex;
  align-items : center;
  justify-content : space-between;
  position : fixed;
  top : 0;
  z-index : 100;
}
header .logo {
  position : relative;
  width : 150px;
  height : auto;
}
header nav.navigation a {
  color : #FFFFFF;
  line-height : 120%;
  padding : 20px 25px;
  font-weight : bold;
}
header nav.navigation a:hover, header nav.navigation a:focus, header nav.navigation a:active, header nav.navigation a .active {
  color : #FF4713;
}
header nav.nav-mobile {
  display : none;
}
header .dd-lng-select {
  margin-right : 15px;
}
header .dd-lng-select > .flag-icon {
  border-radius : 500px;
  display : inline-block;
  background-size : cover;
  border : 2px solid #5846A0;
  margin-right : 3px;
  width : 22px;
  height : 22px;
}

.content--side {
  z-index : 100;
  width : 15vw;
  min-width : 130px;
  max-height : 100vh;
  order : 2;
  position : relative;
  padding : 0 1em;
}
.content--side .content--side-title {
  height : 100%;
}
.content--side .content--side-title h1 {
  transform : rotate(-180deg);
  opacity : 0.3;
  font-size : 140px;
  font-weight : 900;
  line-height : 65%;
  text-align : center;
  color : #B2D1FF;
  -ms-writing-mode : bt-rl;
      writing-mode : vertical-rl;
  direction : rtl;
  width : 100%;
  display : flex;
  justify-content : flex-end;
  align-items : flex-end;
  margin : 0 0 0 -10px;
  white-space : nowrap;
}
.content--side a {
  font-size : 14px;
  font-weight : 500;
  color : #82888A;
  position : relative;
  display : inline-block;
  clear : both;
  text-decoration : none;
  white-space : nowrap;
  transition : all 0.3s ease-in-out;
}
.content--side a:hover, .content--side a:focus, .content--side a.active {
  color : #FFFFFF;
}
.content--side a:hover, .content--side a:focus, .content--side a.active {
  transition : all 0.3s ease-in-out;
}

.control__radio {
  transition : all 0.3s ease-in-out;
}

.content--center {
  flex : 1;
  order : 3;
  z-index : 9;
}
.content--center .footer {
  font-size : 12px;
  text-transform : uppercase;
  display : flex;
  justify-content : center;
  margin-bottom : 10px;
}

.content--right {
  order : 4;
}

.content--center, .content--side {
  height : calc(100vh - 210px);
}

.grid {
  position : relative;
  z-index : 2;
  display : block;
  margin : 0 auto;
}

.grid--hidden {
  position : fixed !important;
  z-index : 1;
  top : 0;
  left : 0;
  width : 100%;
  pointer-events : none;
  opacity : 0;
}

.js-i-load::before, .js-i-load::after, .grid--loading::before, .grid--loading::after {
  content : '';
  position : absolute;
  z-index : 10;
}

.js-i-load::before, .grid--loading::before {
  top : 0;
  left : 0;
  width : 100%;
  height : 100%;
  background : #F5F6FB;
}

.js-i-load::after, .grid--loading::after {
  top : 50%;
  left : 50%;
  width : 40px;
  height : 40px;
  margin : -20px 0 0 -20px;
  border : 8px solid #5846A0;
  border-bottom-color : #F2F5FF;
  border-radius : 50%;
  -webkit-animation : animLoader 0.8s linear infinite forwards;
          animation : animLoader 0.8s linear infinite forwards;
}

.grid__sizer {
  margin-bottom : 0 !important;
}

.grid__link {
  display : block;
}

.grid__img {
  display : block;
  width : 100%;
}

.grid__deco {
  position : absolute;
  top : 0;
  left : 0;
  pointer-events : none;
}
.grid__deco path {
  fill : none;
  stroke : #FFFFFF;
  stroke-width : 2px;
}

.grid__reveal {
  position : absolute;
  z-index : 50;
  top : 0;
  left : 0;
  width : 100%;
  height : 100%;
  pointer-events : none;
  opacity : 0;
  background-color : #2C2D31;
}

.grid--layout {
  max-width : 100%;
  height : 100%;
  overflow-x : hidden;
  overflow-y : auto;
}

.grid__item, .grid__sizer {
  width : calc(100% - 20px);
  margin : 0 10px 20px;
}

.grid__item {
  border-radius : 10px;
}
.grid__item .grid__content {
  font-size : 0.85em;
  z-index : 9;
  padding : 1.5em 1em;
  text-align : center;
  opacity : 0;
  display : flex;
  align-items : center;
  justify-content : center;
  flex-direction : column;
  position : absolute;
  top : 50px;
  left : 0;
  width : 100%;
  height : 100%;
  transition : transform 0.3s, opacity 0.3s;
}
.grid__item .grid__img {
  border-radius : 10px;
}

.grid__item .grid__race__info {
  position : absolute;
  bottom : 0;
  left : 0;
  right : 0;
  padding : 20px;
  overflow : hidden;
  height : 100%;
  background : linear-gradient(to top, #00003D, rgba(0, 0, 61, 0));
  justify-content : flex-end;
  display : flex;
  flex-direction : column;
  border-radius : 10px;
  cursor : pointer;
  transition : all 0.3s ease-in-out;
}

.image-fader {
  background : linear-gradient(to top, #00003D, rgba(0, 0, 61, 0));
}

.race-info {
/*  background : linear-gradient(to top, #00003D, rgba(0, 0, 61, 0)); */
}

.race-title {
  color : #FFFFFF;
  font-size : 22px;
  font-weight : bold;
  line-height : 100%;
  margin-bottom : 4px;
}

.race-date {
  font-size : 12px;
  font-weight : bold;
  color : #FFFFFF;
  opacity : 0.7;
  margin-bottom : 5px;
  line-height : 150%;
}

.race-location {
  color : #FF4713;
  font-size : 16px;
  font-weight : bold;
}

.race-location i {
  color : #FFFFFF;
  margin-right : 5px;
}

.btn-actions {
  display : flex;
  justify-content : space-between;
  align-items : center;
  height : 0;
  overflow : hidden;
  opacity : 0;
  transition : all 0.2s ease-in-out;
}

.btn-actions .btn {
  background-color : #FF4713;
  color : #FFFFFF;
  text-decoration : none;
  padding : 5px 10px;
  display : flex;
  font-size : 12px;
  width : 100%;
  height : 40px;
  justify-content : center;
  align-items : center;
  border-radius : 4px;
  box-shadow : 0 4px 12px 0 rgba(255, 71, 19, 0.6);
  transition : all 0.2s ease-in-out;
}
.btn-actions .btn:hover, .btn-actions .btn:focus {
  background-color : #DF3607;
  transition : all 0.3s ease-in-out;
}

.grid__item .grid__race__info:hover .btn-actions {
  height : 60px;
  opacity : 1;
  padding-top : 20px;
  transition : all 0.2s ease-in-out;
}

@media screen and (max-width: 1199px) {
  .grid__item .grid__race__info .btn-actions {
    height : 60px;
    opacity : 1;
    padding-top : 20px;
  }
}

@media screen and (min-width: 480px) {
  .grid__item, .grid__sizer {
    width : calc((100% / 2) - 20px);
    margin : 0 10px 20px;
  }
}

@media screen and (min-width: 768px) {
  .grid__item, .grid__sizer {
    width : calc((100% / 3) - 20px);
    margin : 0 10px 20px;
  }
}

@media screen and (min-width: 1400px) {
  .grid--layout {
    max-width : calc(100vw - 260px);
  }
  .grid__item, .grid__sizer {
    width : calc(100% / 4 - 30px);
    margin : 0 15px 30px;
  }
}

.wrapper-home .events-filter {
  margin-bottom : 20px;
  width : 100%;
  margin-top : 25px;
}
.wrapper-home .events-filter .filter-box > div.filter {
  min-width : 150px;
  width : 100%;
  margin : 0 5px;
}
.wrapper-home .events-filter .filter-box > div.filter.filter-reset {
  margin-bottom : 0;
  min-width : auto;
  margin-right : 20px;
}
.wrapper-home .events-filter .filter-box > div.filter label {
  font-size : 10px;
  font-weight : bold;
  line-height : 1;
  letter-spacing : normal;
  color : #7E8088;
  text-transform : uppercase;
  z-index : 11;
  position : relative;
  margin-bottom : 5px;
}
.wrapper-home .events-filter .filter-box > div.filter .btn-reset {
  height : 36px;
  width : auto;
  padding : 11px 15px;
  border-radius : 4px;
  font-size : 14px;
  background-color : rgba(255, 63, 63, 0.15);
  color : #FF3F3F;
  text-transform : capitalize;
  display : flex;
  justify-content : center;
  align-items : center;
  transition : all 0.3s ease-in-out;
  z-index : 11;
}
.wrapper-home .events-filter .filter-box > div.filter .btn-reset:hover, .wrapper-home .events-filter .filter-box > div.filter .btn-reset:focus, .wrapper-home .events-filter .filter-box > div.filter .btn-reset:active {
  opacity : 0.8;
  transition : all 0.3s ease-in-out;
}
.wrapper-home .events-filter .filter-box > div.filter .btn-reset i {
  color : #FF3F3F;
  margin-left : 10px;
  font-size : 16px;
}
.wrapper-home .events-filter .filter-box .bootstrap-select {
  border-radius : 4px;
}
.wrapper-home .events-filter .filter-box .bootstrap-select > .dropdown-toggle.btn-light {
  background : #FFFFFF !important;
  position : relative;
}
.wrapper-home .events-filter .filter-box .bootstrap-select .dropdown-menu {
  min-height : initial !important;
  z-index : 15;
  margin-top : 1px;
}
.wrapper-home .events-filter .filter-box .bootstrap-select .dropdown-menu li .dropdown-item {
  padding : 8px 35px 7px 10px;
  border-bottom : 1px solid #E9F2FF;
}

@media (max-width: 1199px) {
  .wrapper-home #toggle-filters {
    height : 36px;
    width : 36px;
    justify-content : center;
    align-items : center;
    background-color : #FFFFFF;
    border-radius : 4px;
    color : #7E8088;
    padding : 0;
  }
  .wrapper-home .events-filter {
    margin : 0;
    position : fixed;
    z-index : 190;
    background-color : #2C2964;
    left : 10px;
    right : 10px;
    top : 50px;
    padding-left : 15px;
    padding-right : 15px;
    border-radius : 0 0 10px 10px;
    height : 0;
    transition : all 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    overflow : hidden;
    width : calc(100vw - 20px);
  }
  .wrapper-home .events-filter .filter-box {
    display : block;
    width : 100%;
  }
  .wrapper-home .events-filter .filter-box > div.filter {
    max-width : 100%;
    width : 100%;
    margin : 0 0 10px;
  }
  .wrapper-home .events-filter .filter-box > div.filter label {
    color : #FFFFFF;
    z-index : 1;
  }
  .wrapper-home .events-filter .filter-box > div.filter .select label {
    width : 100% !important;
  }
  .wrapper-home .events-filter .filter-box > div.filter .select label:first-of-type {
    margin-bottom : 2px !important;
  }
  .wrapper-home .events-filter .filter-box > div.filter .radio-toggle:checked ~ .select {
    z-index : 20;
  }
  .wrapper-home .events-filter .custom-control {
    position : absolute;
    left : 20px;
  }
  .wrapper-home .events-filter.is-active {
    height : auto;
    overflow : visible;
    padding-top : 15px;
    padding-bottom : 15px;
    transition : all 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  }
}

@media (max-width: 1199px) {
  .wrapper .custom-control .label {
    color : #FFFFFF;
  }
}

.timeline {
  position : relative;
  display : flex;
  justify-content : center;
}
.timeline:before {
  content : '';
  position : absolute;
  top : 0;
  left : 50%;
  bottom : 0;
  transform : translateX(-50%);
  width : 4px;
  background-color : #7E8088;
  background-image : linear-gradient(to bottom, #00008E -3%, #5410C3 76%, #AC21FB);
}
.timeline .entries {
  max-width : 850px;
  margin : auto;
  position : relative;
  left : -5px;
}
.timeline .entries .entry-holder {
  display : flex;
  justify-content : space-between;
}
.timeline .entries .entry-holder:nth-child(odd) .entry:first-child {
  order : 1;
  text-align : right;
}
.timeline .entries .entry-holder:nth-child(odd) .entry:last-child {
  order : 2;
  text-align : left;
  padding : 20px 20px 20px 54px;
}
.timeline .entries .entry-holder:nth-child(even) .entry:first-child {
  order : 2;
  text-align : left;
  padding : 20px 20px 20px 54px;
}
.timeline .entries .entry-holder:nth-child(even) .entry:first-child .title:before {
  left : -58px;
}
.timeline .entries .entry-holder:nth-child(even) .entry:first-child .title.big:before {
  transform : translate(-8px, -50%);
}
.timeline .entries .entry-holder:nth-child(even) .entry:first-child .body .about-us-icons {
  justify-content : flex-start;
}
.timeline .entries .entry-holder:nth-child(even) .entry:first-child .body .about-us-icons .icon {
  margin-left : 0;
  margin-right : 30px;
}
.timeline .entries .entry-holder:nth-child(even) .entry:last-child {
  order : 1;
  text-align : right;
}
.timeline .entries .entry {
  text-align : right;
  padding : 20px 50px 20px 20px;
  clear : both;
}
.timeline .entries .entry .about-us-icons {
  justify-content : flex-end;
}
.timeline .entries .entry .title {
  font-size : 32px;
  margin-bottom : 12px;
  position : relative;
  font-weight : bold;
  color : #5846A0;
}
.timeline .entries .entry .title:before {
  content : '';
  position : absolute;
  width : 8px;
  height : 8px;
  border : 4px solid #5846A0;
  background-color : #F5F6FB;
  border-radius : 100%;
  top : 50%;
  transform : translateY(-50%);
  right : -63px;
  z-index : 1000;
  box-sizing : content-box;
}
.timeline .entries .entry .title.big:before {
  width : 24px;
  height : 24px;
  transform : translate(8px, -50%);
}
.timeline .entries .entry .body {
  color : #7E8088;
  font-size : 14px;
}
.timeline .entries .entry .body ul {
  padding : 0;
  margin-bottom : 30px;
  margin-top : 10px;
}
.timeline .entries .entry .body ul li {
  list-style : none;
  margin-bottom : 10px;
}
.timeline .entries .entry .body .icon {
  justify-content : center;
  margin-left : 30px;
}
.timeline .entries .entry .body .icon i {
  color : #5846A0;
  font-size : 20px;
  margin-right : 10px;
}
.timeline .entries .entry .body .icon span {
  color : #7E8088;
  font-size : 20px;
  line-height : 100%;
  margin-bottom : -4px;
}
.timeline .entries .entry .body p {
  line-height : 1.4em;
}

@media (max-width: 767px) {
  .timeline {
    margin-top : 30px;
  }
  .timeline::before {
    left : 20px;
  }
  .timeline .entries {
    left : 0;
    width : 100%;
    overflow : hidden;
  }
  .timeline .entries .entry-holder .entry {
    padding : 20px 20px 20px 54px;
  }
  .timeline .entries .entry-holder .entry .about-us-icons {
    justify-content : flex-start;
  }
  .timeline .entries .entry-holder:nth-child(odd) .entry:first-child {
    text-align : left;
  }
  .timeline .entries .entry-holder:nth-child(odd) .entry .about-us-icons .icon {
    margin-left : 0;
    margin-right : 30px;
  }
  .timeline .entries .entry-holder:nth-child(even) .entry:first-child {
    order : 1;
  }
  .timeline .entries .entry-holder:nth-child(even) .entry:last-child {
    text-align : left;
    order : 2;
  }
}

@media (max-width: 575px) {
  .timeline .entries .entry {
    padding-bottom : 0 !important;
  }
  .timeline .entries .entry .body ul {
    margin : 0;
  }
  .timeline .entries .entry .body .about-us-icons {
    flex-direction : column;
    justify-content : flex-start;
    align-items : flex-start;
  }
  .timeline .entries .entry .body .about-us-icons .icon {
    justify-content : flex-start;
    align-items : flex-start;
    display : inline-flex;
    width : auto;
    margin-bottom : 20px;
  }
}

.dark-mode .timeline:before {
  background-image : none;
  background : #FFFFFF;
}

.dark-mode .timeline .entries .entry .title {
  color : #FF4713;
}
.dark-mode .timeline .entries .entry .title:before {
  border : 4px solid #FFFFFF;
  background-color : #171A46;
}

.dark-mode .timeline .entries .entry .body {
  color : #FFFFFF;
}
.dark-mode .timeline .entries .entry .body .icon i {
  color : #FF4713;
}
.dark-mode .timeline .entries .entry .body .icon span {
  color : #FFFFFF;
}

.hamburger {
  display : inline-block;
  cursor : pointer;
  transition-property : opacity, filter;
  transition-duration : 0.15s;
  transition-timing-function : linear;
  font : inherit;
  color : inherit;
  text-transform : none;
  background-color : transparent;
  border : 0;
  overflow : visible;
  margin : 0 0 -5px;
}

.hamburger:hover {
  opacity : 0.7;
}

.hamburger.is-active:hover {
  opacity : 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color : #FFFFFF;
}

.hamburger-box {
  width : 30px;
  height : 24px;
  display : inline-block;
  position : relative;
}

.hamburger-inner {
  display : block;
  top : 50%;
  margin-top : -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width : 30px;
  height : 3px;
  background-color : #FFFFFF;
  border-radius : 4px;
  position : absolute;
  transition-property : transform;
  transition-duration : 0.15s;
  transition-timing-function : ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content : '';
  display : block;
}

.hamburger-inner::before {
  top : -10px;
}

.hamburger-inner::after {
  bottom : -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration : 0.075s;
  transition-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition : top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition : bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform : rotate(45deg);
  transition-delay : 0.12s;
  transition-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top : 0;
  opacity : 0;
  transition : top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom : 0;
  transform : rotate(-90deg);
  transition : bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 992px) {
  .modal .modal-xl {
    max-width : 1140px;
    margin : 1.75rem auto;
  }
}

.modal .modal-body .map-gpx-holder {
  width : 100%;
  margin-top : -20px;
}
.modal .modal-body .map-gpx-holder .js-i-load {
  border-radius : 10px 10px 0 0;
}
.modal .modal-body .map-gpx-holder .leaflet-map {
  border-radius : 10px 10px 0 0;
  height : 330px;
}

.modal.modal-runner-info .modal-body .map-gpx-holder {
  margin-top : 0;
}

.modal-event-info, .modal-race-info {
  background-color : transparent;
  height : 100%;
  top : 30px;
  overflow : hidden !important;
}
.modal-event-info .modal-xl, .modal-race-info .modal-xl {
  height : 100%;
  max-height : 100%;
}
.modal-event-info .modal-xl .modal-content, .modal-race-info .modal-xl .modal-content {
  border-radius : 10px;
  max-height : 100%;
}
.modal-event-info .modal-xl .modal-content .close, .modal-race-info .modal-xl .modal-content .close {
  position : absolute;
  right : 5px;
  top : 5px;
  z-index : 9;
  opacity : 1;
  padding : 0;
  margin : 0;
  display : flex;
  align-items : center;
  justify-content : center;
  transition : all 0.3s ease-in-out;
  cursor : pointer;
  box-shadow : none;
  border-radius : 0;
  background : transparent;
  transform : none;
}
.modal-event-info .modal-xl .modal-content .close:focus, .modal-event-info .modal-xl .modal-content .close:hover, .modal-event-info .modal-xl .modal-content .close:active, .modal-race-info .modal-xl .modal-content .close:focus, .modal-race-info .modal-xl .modal-content .close:hover, .modal-race-info .modal-xl .modal-content .close:active {
  transform : none;
}
.modal-event-info .modal-xl .modal-content .close span.text, .modal-race-info .modal-xl .modal-content .close span.text {
  color : #7E8088;
  font-family : 'Nunito-Sans', sans-serif;
  line-height : 60%;
  font-size : 30px;
  font-weight : bold;
  padding : 10px;
}
.modal-event-info .modal-xl .modal-content .close:hover, .modal-event-info .modal-xl .modal-content .close:focus, .modal-race-info .modal-xl .modal-content .close:hover, .modal-race-info .modal-xl .modal-content .close:focus {
  opacity : 0.7;
  transition : all 0.3s ease-in-out;
}
.modal-event-info .modal-xl .modal-content .close span.text, .modal-race-info .modal-xl .modal-content .close span.text {
  color : #FFFFFF;
}
.modal-event-info .modal-xl .modal-content .modal-header, .modal-race-info .modal-xl .modal-content .modal-header {
  background-image : linear-gradient(to left, #00008E -3%, #5410C3 76%, #AC21FB);
  min-height : 170px;
  padding : 30px;
  border-radius : 10px 10px 0 0;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-race-name, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-name {
  font-family : 'Bebas-Neue', sans-serif;
  font-size : 46px;
  text-align : center;
  color : #FFFFFF;
  text-transform : uppercase;
  line-height : 100%;
  margin-bottom : 4px;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-race-location, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-location {
  font-size : 16px;
  color : #FFFFFF;
  text-align : center;
  margin-bottom : 20px;
  font-weight : normal;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-race-date span, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-time span, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-date span, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-time span {
  font-size : 14px;
  color : #FFFFFF;
  font-family : 'Bebas-Neue', sans-serif;
  margin-left : 10px;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-race-date i, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-time i, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-date i, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-time i {
  color : #E66898;
  font-size : 28px;
}
.modal-event-info .modal-xl .modal-content .modal-header.fixed + .modal-body, .modal-race-info .modal-xl .modal-content .modal-header.fixed + .modal-body {
  margin-top : 0;
}
.modal-event-info .modal-xl .modal-content .modal-header.fixed .modal-event-registration-date, .modal-race-info .modal-xl .modal-content .modal-header.fixed .modal-event-registration-date {
  margin-bottom : 0;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-race-register a, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-register a {
  min-width : 130px;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock {
  margin-bottom : 30px;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-event-registration-date, .modal-race-info .modal-xl .modal-content .modal-header .modal-event-registration-date {
  color : #FFFFFF;
  line-height : 100%;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-event-registration-date .label, .modal-race-info .modal-xl .modal-content .modal-header .modal-event-registration-date .label {
  margin-right : 10px;
  color : rgba(255, 255, 255, 0.6);
  margin-bottom : -2px;
}
.modal-event-info .modal-xl .modal-content .modal-header .modal-event-registration-date .date, .modal-race-info .modal-xl .modal-content .modal-header .modal-event-registration-date .date {
  font-family : 'Bebas-Neue', sans-serif;
}
.modal-event-info .modal-xl .modal-content .modal-body, .modal-race-info .modal-xl .modal-content .modal-body {
  margin-top : -10px;
  padding : 20px 20px 50px;
  position : relative;
  z-index : 2;
}
.modal-event-info .modal-xl .modal-content .modal-body.scrolled, .modal-race-info .modal-xl .modal-content .modal-body.scrolled {
  margin-top : 0;
  transition : none;
}
.modal-event-info .modal-xl .modal-content .modal-body .title, .modal-race-info .modal-xl .modal-content .modal-body .title {
  font-size : 14px;
  color : #7E8088;
  text-transform : uppercase;
  font-weight : 600;
  margin-bottom : 25px;
  padding-left : 20px;
}
.modal-event-info .modal-xl .modal-content .modal-body .widget-modal, .modal-race-info .modal-xl .modal-content .modal-body .widget-modal {
  background-color : #F5F6FB;
  border-radius : 4px;
  margin-bottom : 10px;
  padding : 20px;
}
.modal-event-info .modal-xl .modal-content .modal-body .widget-modal .widget-modal-title, .modal-race-info .modal-xl .modal-content .modal-body .widget-modal .widget-modal-title {
  font-size : 14px;
  color : #7E8088;
  text-transform : uppercase;
  font-weight : 600;
  margin-bottom : 25px;
}
.modal-event-info .modal-xl .modal-content .modal-body .widget-modal.widget-white, .modal-race-info .modal-xl .modal-content .modal-body .widget-modal.widget-white {
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}
.modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-in, .modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-in, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-in, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-in {
  color : #E66898;
  font-size : 16px;
  font-weight : 500;
}
.modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-title, .modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-title, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-title, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-title {
  color : #7E8088;
  font-size : 13px;
  line-height : 100%;
}
.modal-event-info .modal-xl .apexcharts-tooltip.dark, .modal-race-info .modal-xl .apexcharts-tooltip.dark {
  color : #FFFFFF !important;
}
.modal-event-info .modal-xl .apexcharts-tooltip .apexcharts-tooltip-series-group, .modal-race-info .modal-xl .apexcharts-tooltip .apexcharts-tooltip-series-group {
  padding-bottom : 0;
}

.map-elevation-chart .js-i-load {
  margin-bottom : -14px;
  margin-right : -10px;
}

.table-control-points, .table-runner-placement {
  border-spacing : 0 5px;
}
.table-control-points .table .thead .th, .table-runner-placement .table .thead .th {
  color : #7E8088;
  padding : 4px 10px;
  font-size : 10px;
  text-transform : uppercase;
  font-weight : bold;
}
.table-control-points .table .thead .th:first-child, .table-runner-placement .table .thead .th:first-child {
  padding-left : 20px;
}
.table-control-points .table .thead .th:last-child, .table-runner-placement .table .thead .th:last-child {
  padding-right : 20px;
}
.table-control-points .table .tbody .tr, .table-runner-placement .table .tbody .tr {
  background-color : #FFFFFF;
  margin-bottom : 5px;
  border-radius : 4px;
  box-shadow : 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}
.table-control-points .table .tbody .tr .td, .table-runner-placement .table .tbody .tr .td {
  font-size : 14px;
  color : #202124;
  padding : 8px 10px;
}
.table-control-points .table .tbody .tr .td:first-child, .table-runner-placement .table .tbody .tr .td:first-child {
  padding-left : 20px;
}
.table-control-points .table .tbody .tr .td:last-child, .table-runner-placement .table .tbody .tr .td:last-child {
  padding-right : 20px;
}
.table-control-points .table .tbody .tr.selected, .table-runner-placement .table .tbody .tr.selected {
  background-color : #E9F2FF;
  box-shadow : 0 0 3.1px 0 #96BFFF !important;
  font-weight : bold;
}

.table-runner-placement .table-runner-placement .tbody .tr .td:first-child {
  color : #E66898;
}

.table-runner-placement .table .thead .tr .th {
  color : #00008E;
  padding : 1px 10px;
}

.table-runner-placement .table .thead .tr .th:first-child, .table-runner-placement .table .thead .tr .td:first-child, .table-runner-placement .table .tbody .tr .th:first-child, .table-runner-placement .table .tbody .tr .td:first-child {
  min-width : 26px;
  padding-left : 10px;
  padding-right : 10px;
  width : 50px;
}

.table-runner-placement .table .thead .tr .th:nth-child(2), .table-runner-placement .table .thead .tr .td:nth-child(2), .table-runner-placement .table .tbody .tr .th:nth-child(2), .table-runner-placement .table .tbody .tr .td:nth-child(2) {
  padding-left : 10px;
  padding-right : 10px;
  width : 50px;
}

.table-runner-placement .table .thead .tr .td, .table-runner-placement .table .tbody .tr .td {
  padding : 4px 10px;
}
.table-runner-placement .table .thead .tr .td .start-color, .table-runner-placement .table .tbody .tr .td .start-color {
  background-color : #ECE2FB;
  height : 24px;
  line-height : 24px;
  min-width : 30px;
  font-size : 12px;
  color : #4B2981;
  text-align : center;
  display : inline-block;
  font-weight : 800;
  border-radius : 1px;
  padding : 0 5px;
}

@-webkit-keyframes flipTop {
  0% {
    -webkit-transform : perspective(320px) rotateX(0deg);
  }
  100% {
    -webkit-transform : perspective(320px) rotateX(-90deg);
  }
}

@-webkit-keyframes flipBottom {
  0% {
    -webkit-transform : perspective(320px) rotateX(90deg);
  }
  100% {
    -webkit-transform : perspective(320px) rotateX(0deg);
  }
}

@-keyframes flipTop {
  0% {
    transform : perspective(320px) rotateX(0deg);
  }
  100% {
    transform : perspective(320px) rotateX(-90deg);
  }
}

@-keyframes flipBottom {
  0% {
    transform : perspective(320px) rotateX(90deg);
  }
  100% {
    transform : perspective(320px) rotateX(0deg);
  }
}

.event-passed {
  font-size : 30px;
  color : #FF5855;
  text-transform : uppercase;
  line-height : 100%;
}

.flipTimer {
  color : #FFFFFF;
  font-family : 'Digital 7', sans-serif;
  font-size : 60px;
  line-height : 80px;
  height : 80px;
  transition : all 0.3s ease-in-out;
}
.flipTimer .separator {
  vertical-align : top;
  margin : 0 -20px;
  display : inline;
}
.flipTimer .seconds, .flipTimer .minutes, .flipTimer .hours, .flipTimer .days {
  position : relative;
  width : 70px;
  height : 80px;
  background-color : #50346D;
  display : inline-block;
  margin : 0 10px;
  border-radius : 4px;
}
.flipTimer .seconds::after, .flipTimer .seconds::before, .flipTimer .minutes::after, .flipTimer .minutes::before, .flipTimer .hours::after, .flipTimer .hours::before, .flipTimer .days::after, .flipTimer .days::before {
  content : '';
  display : block;
  background-color : #744177;
  width : 2px;
  height : 10px;
  position : absolute;
  top : 50%;
  transform : translateY(-50%);
}
.flipTimer .seconds::after, .flipTimer .minutes::after, .flipTimer .hours::after, .flipTimer .days::after {
  right : -2px;
}
.flipTimer .seconds::before, .flipTimer .minutes::before, .flipTimer .hours::before, .flipTimer .days::before {
  left : -2px;
}
.flipTimer .seconds .txt, .flipTimer .minutes .txt, .flipTimer .hours .txt, .flipTimer .days .txt {
  position : absolute;
  font-size : 10px;
  text-align : center;
  top : 100%;
  left : 50%;
  transform : translateX(-50%);
  color : #8F8FA8;
  font-family : 'Nunito-Sans', sans-serif;
  line-height : 100%;
  margin-top : 8px;
  text-transform : uppercase;
  font-weight : bold;
}
.flipTimer.threeNumbers .days {
  width : 105px;
}
.flipTimer.threeNumbers .days .digit-set {
  width : 33.3333%;
}
.flipTimer .digit-set {
  width : 50%;
  height : 100%;
  display : inline-block;
  position : relative;
}
.flipTimer .digit {
  position : absolute;
  height : 100%;
}
.flipTimer .digit > div {
  position : absolute;
  left : 0;
  overflow : hidden;
  height : 50%;
  padding : 0 3px;
}
.flipTimer .digit > div.digit-top {
  background-color : #3F2AAE;
  border-bottom : 1px solid #333333;
  box-sizing : border-box;
  top : 0;
  z-index : 0;
  width : 35px;
  text-align : center;
  border-radius : 4px 4px 0 0;
}
.flipTimer .digit > div.digit-top:before {
  content : '';
  height : 100%;
  width : 100%;
  position : absolute;
  left : 0;
  top : 0;
}
.flipTimer .digit > div.digit-bottom {
  width : 35px;
  background-color : #3F2AAE;
  bottom : 0;
  z-index : 0;
  border-radius : 0 0 4px 4px;
}
.flipTimer .digit > div.digit-bottom .digit-wrap {
  display : block;
  transform : translateY(-50%);
  text-align : center;
}
.flipTimer .digit > div.digit-bottom:before {
  content : '';
  height : 100%;
  width : 100%;
  position : absolute;
  left : 0;
  top : 0;
}
.flipTimer .digit.previous .digit-top, .flipTimer .digit.previous .shadow-top {
  opacity : 1;
  z-index : 2;
  -webkit-transform-origin : 50% 100%;
  -webkit-animation : flipTop 0.3s ease-in both;
     -moz-transform-origin : 50% 100%;
     -moz-animation : flipTop 0.3s ease-in both;
      -ms-transform-origin : 50% 100%;
      -ms-animation : flipTop 0.3s ease-in both;
          transform-origin : 50% 100%;
          animation : flipTop 0.3s ease-in both;
}
.flipTimer .digit.previous .digit-bottom {
  z-index : 1;
  opacity : 1;
}
.flipTimer .digit.active .digit-top {
  z-index : 1;
}
.flipTimer .digit.active .digit-bottom {
  z-index : 2;
  -webkit-transform-origin : 50% 0;
  -webkit-animation : flipBottom 0.3s 0.3s ease-out both;
     -moz-transform-origin : 50% 0;
     -moz-animation : flipBottom 0.3s 0.3s ease-out both;
      -ms-transform-origin : 50% 0;
      -ms-animation : flipBottom 0.3s 0.3s ease-out both;
          transform-origin : 50% 0;
          animation : flipBottom 0.3s 0.3s ease-out both;
}
.flipTimer.passed {
  color : #E33C39;
}
.flipTimer.passed .days::before, .flipTimer.passed .days::after, .flipTimer.passed .hours::before, .flipTimer.passed .hours::after, .flipTimer.passed .minutes::before, .flipTimer.passed .minutes::after, .flipTimer.passed .seconds::before, .flipTimer.passed .seconds::after {
  background-color : #E33C39;
}
.flipTimer.ready {
  color : #05CB4C;
}
.flipTimer.ready .days::before, .flipTimer.ready .days::after, .flipTimer.ready .hours::before, .flipTimer.ready .hours::after, .flipTimer.ready .minutes::before, .flipTimer.ready .minutes::after, .flipTimer.ready .seconds::before, .flipTimer.ready .seconds::after {
  background-color : #05CB4C;
}
.flipTimer.before {
  color : #7E8088;
}
.flipTimer.before .days::before, .flipTimer.before .days::after, .flipTimer.before .hours::before, .flipTimer.before .hours::after, .flipTimer.before .minutes::before, .flipTimer.before .minutes::after, .flipTimer.before .seconds::before, .flipTimer.before .seconds::after {
  background-color : #7E8088;
}

.weather-widget .weather-data-left {
  width : 50%;
  float : left;
}
.weather-widget .weather-data-left svg {
  width : 100%;
  height : 100%;
}
.weather-widget .weather-data-left .weather-icon {
  margin-right : 10px;
}
.weather-widget .weather-data-left .weather-link {
  font-size : 13px;
  display : block;
  color : #E66898;
}

.weather-widget .weather-data-right {
  width : 50%;
  float : left;
}
.weather-widget .weather-data-right .weather-data {
  justify-content : space-between;
}
.weather-widget .weather-data-right .weather-data .weather-deg {
  display : flex;
}
.weather-widget .weather-data-right .weather-data .weather-deg .w-deg {
  font-size : 50px;
  line-height : 1;
  letter-spacing : 0;
  font-weight : 300;
  color : #202124;
  margin-bottom : 5px;
  margin-left : -5px;
}
.weather-widget .weather-data-right .weather-data .weather-deg .w-deg sup {
  top : -0.7em;
  font-size : 65%;
  margin-left : 4px;
}
.weather-widget .weather-data-right .weather-data .w-sunset-sunrise {
  display : flex;
  justify-content : space-between;
  font-size : 10px;
  /* flex-direction: column; */
  text-align : center;
}
.weather-widget .weather-data-right .weather-data .w-sunset-sunrise > div .w-icon {
  background-size : contain;
  width : 20px;
  height : 20px;
  display : block;
  margin : 0 auto 4px;
}
.weather-widget .weather-data-right .weather-data .w-sunset-sunrise > div .w-icon.w-icon-sunrise {
  background-image : url('/vue/app-assets/images/svg/sunrise.svg');
}
.weather-widget .weather-data-right .weather-data .w-sunset-sunrise > div .w-icon.w-icon-sunset {
  background-image : url('/vue/app-assets/images/svg/sunset.svg');
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max {
  display : flex;
  justify-content : space-between;
  margin-bottom : 10px;
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-min, .weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-max {
  text-transform : uppercase;
  font-weight : 600;
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-min span, .weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-max span {
  font-size : 14px;
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-min span:first-child, .weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-max span:first-child {
  font-size : 9px;
  color : #7E8088;
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-min span sup, .weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-max span sup {
  font-size : 7px;
  top : -0.9em;
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-max span {
  color : #E66898;
  font-weight : 600;
}
.weather-widget .weather-data-right .weather-data .w-deg-min-max .w-deg-min span {
  color : #00D3E6;
  font-weight : 600;
}

.weather-widget .w-days .w-day {
  font-size : 9px;
  text-align : center;
  text-transform : uppercase;
  border-right : 1px solid #EAEAEA;
  padding : 0 3px;
}
.weather-widget .w-days .w-day:last-child {
  border-right : 0;
}
.weather-widget .w-days .w-day .w-day-name {
  color : #7E8088;
}
.weather-widget .w-days .w-day .w-deg .w-deg-min, .weather-widget .w-days .w-day .w-deg .w-deg-max {
  color : #7E8088;
}
.weather-widget .w-days .w-day .w-deg .w-deg-min sup, .weather-widget .w-days .w-day .w-deg .w-deg-max sup {
  font-size : 6px;
}
.weather-widget .w-days .w-day .w-deg .w-deg-max {
  color : #E66898;
  font-weight : 600;
}

.weather-widget .w-additional-info > div {
  font-size : 10px;
  display : flex;
  justify-content : space-between;
  align-items : center;
  margin-bottom : 4px;
}
.weather-widget .w-additional-info > div .w-title {
  margin-right : 10px;
  font-size : 9px !important;
  text-transform : uppercase;
  line-height : 100%;
}
.weather-widget .w-additional-info > div span.w-value {
  color : #E66898;
  font-weight : 600;
  line-height : 100%;
}

@media (max-width: 991px) {
  .weather-widget .col-lg-12 + .col-lg-12 {
    display : flex;
    flex-direction : column;
    justify-content : center;
  }
  .weather-widget .weather-data-right .weather-data .weather-deg, .weather-widget .weather-data-right .weather-data .w-deg-min-max, .weather-widget .weather-data-right .weather-data .w-sunset-sunrise {
    justify-content : flex-start;
  }
  .weather-widget .weather-data-right .weather-data .w-deg-min-max > div, .weather-widget .weather-data-right .weather-data .w-sunset-sunrise > div {
    margin-right : 15px;
  }
}

.svg-contain {
  max-width : 150px;
  width : 100%;
  border-radius : 4px;
}

.svg-contain.svg-night {
  background-color : #262626;
}

.weather-container {
  width : 100%;
  height : 100%;
  display : flex;
  justify-content : center;
  justify-items : center;
}

.big-path, .lightening, .line, .little-path {
  stroke-miterlimit : 10;
  stroke-width : 2;
  stroke-linecap : round;
  fill : none;
}

.cloud {
  fill : #DAD9D9;
}

.little-path {
  stroke-width : 1;
}

.hurricane-svg .line {
  stroke : #BAE2E0;
  opacity : 1;
  animation : fadeIn 0.8s ease-in alternate-reverse infinite;
}
.hurricane-svg .line:nth-child(1) {
  -webkit-animation-delay : 0.1s;
          animation-delay : 0.1s;
}
.hurricane-svg .line:nth-child(2) {
  -webkit-animation-delay : 0.2s;
          animation-delay : 0.2s;
}
.hurricane-svg .line:nth-child(3) {
  -webkit-animation-delay : 0.3s;
          animation-delay : 0.3s;
}
.hurricane-svg .line:nth-child(4) {
  -webkit-animation-delay : 0.4s;
          animation-delay : 0.4s;
}
.hurricane-svg .line:nth-child(5) {
  -webkit-animation-delay : 0.5s;
          animation-delay : 0.5s;
}
.hurricane-svg .line:nth-child(6) {
  -webkit-animation-delay : 0.6s;
          animation-delay : 0.6s;
}
.hurricane-svg .line:nth-child(7) {
  -webkit-animation-delay : 0.7s;
          animation-delay : 0.7s;
}
.hurricane-svg .line:nth-child(8) {
  -webkit-animation-delay : 0.8s;
          animation-delay : 0.8s;
}
.hurricane-svg .line:nth-child(9) {
  -webkit-animation-delay : 0.9s;
          animation-delay : 0.9s;
}
.hurricane-svg .line:nth-child(10) {
  -webkit-animation-delay : 1s;
          animation-delay : 1s;
}
.hurricane-svg .line:nth-child(11) {
  -webkit-animation-delay : 1.1s;
          animation-delay : 1.1s;
}
.hurricane-svg .line:nth-child(12) {
  -webkit-animation-delay : 1.2s;
          animation-delay : 1.2s;
}

.hurricane-svg .lightening {
  -webkit-animation : flash 1s infinite;
          animation : flash 1s infinite;
  stroke : #FFD62C;
}

.hurricane-svg .big-path, .hurricane-svg .little-path {
  stroke : #BAE2E0;
}

.hurricane-svg .big-path {
  stroke-width : 1;
}

.hurricane-svg .little-path {
  stroke-width : 0.5;
}

.hurricane-svg .cloud {
  -webkit-animation : colorChange 1s infinite;
          animation : colorChange 1s infinite;
}

.windy-svg .little-path, .windy-svg .big-path {
  animation : dash 1s ease-in alternate-reverse infinite, fadeIn 1s alternate-reverse infinite;
}

.windy-svg path {
  stroke : #BAE2E0;
}

.windy-svg .path-1 {
  stroke-dasharray : 7;
  stroke-dashoffset : 7;
}

.windy-svg .path-2 {
  stroke-dasharray : 25;
  stroke-dashoffset : -25;
}

.windy-svg .path-3 {
  stroke-dasharray : 30;
  stroke-dashoffset : 30;
}

.windy-svg .path-4 {
  stroke-dasharray : 8;
  stroke-dashoffset : 8;
}

.windy-svg .path-5 {
  stroke-dasharray : 22;
  stroke-dashoffset : -22;
}

.windy-svg .big-path-1 {
  stroke-dasharray : 57;
  stroke-dashoffset : 57;
}

.windy-svg .big-path-2 {
  stroke-dasharray : 76;
  stroke-dashoffset : 76;
}

.clear-sky-svg {
  animation : expand 0.8s alternate-reverse infinite;
}
.clear-sky-svg .sun {
  fill : #FFD62C;
}
.clear-sky-svg .line {
  stroke : #FFD62C;
  stroke-dasharray : 7;
  animation : dash 0.8s alternate-reverse infinite, fadeIn 1s forwards;
}
.clear-sky-svg .line-1, .clear-sky-svg .line-3, .clear-sky-svg .line-5, .clear-sky-svg .line-7, .clear-sky-svg .line-4 {
  stroke-dashoffset : 5;
  -webkit-animation-delay : 0.3s;
          animation-delay : 0.3s;
}
.clear-sky-svg .line-2, .clear-sky-svg .line-6, .clear-sky-svg .line-8 {
  stroke-dashoffset : -5;
}

.overcast-clouds .cloud-still {
  fill : #DAD9D9;
  animation : bounce 4s ease-in-out alternate-reverse infinite;
}
.overcast-clouds .cloud-still:nth-child(1) {
  -webkit-animation-delay : 0.2s;
          animation-delay : 0.2s;
}

.snow-svg .snowflake {
  transform-origin : 50% 50%;
  transform : translateY(-10px);
  opacity : 0;
}
.snow-svg .snowflake:nth-child(1) {
  -webkit-animation : fall-counterclockwise 3542ms ease-in forwards infinite;
          animation : fall-counterclockwise 3542ms ease-in forwards infinite;
  -webkit-animation-delay : 0.3s;
          animation-delay : 0.3s;
}
.snow-svg .snowflake:nth-child(2) {
  -webkit-animation : fall-clockwise 3802ms ease-in forwards infinite;
          animation : fall-clockwise 3802ms ease-in forwards infinite;
  -webkit-animation-delay : 0.6s;
          animation-delay : 0.6s;
}
.snow-svg .snowflake:nth-child(3) {
  -webkit-animation : fall-counterclockwise 2125ms ease-in forwards infinite;
          animation : fall-counterclockwise 2125ms ease-in forwards infinite;
  -webkit-animation-delay : 0.6s;
          animation-delay : 0.6s;
}
.snow-svg .snowflake:nth-child(4) {
  -webkit-animation : fall-clockwise 3551ms ease-in forwards infinite;
          animation : fall-clockwise 3551ms ease-in forwards infinite;
  -webkit-animation-delay : 1.2s;
          animation-delay : 1.2s;
}
.snow-svg .snowflake:nth-child(5) {
  -webkit-animation : fall-counterclockwise 2610ms ease-in forwards infinite;
          animation : fall-counterclockwise 2610ms ease-in forwards infinite;
  -webkit-animation-delay : 1s;
          animation-delay : 1s;
}
.snow-svg .snowflake:nth-child(6) {
  -webkit-animation : fall-clockwise 2595ms ease-in forwards infinite;
          animation : fall-clockwise 2595ms ease-in forwards infinite;
  -webkit-animation-delay : 1.8s;
          animation-delay : 1.8s;
}
.snow-svg .snowflake:nth-child(7) {
  -webkit-animation : fall-counterclockwise 2213ms ease-in forwards infinite;
          animation : fall-counterclockwise 2213ms ease-in forwards infinite;
  -webkit-animation-delay : 0.7s;
          animation-delay : 0.7s;
}
.snow-svg .snowflake:nth-child(8) {
  -webkit-animation : fall-clockwise 2309ms ease-in forwards infinite;
          animation : fall-clockwise 2309ms ease-in forwards infinite;
  -webkit-animation-delay : 2.4s;
          animation-delay : 2.4s;
}
.snow-svg .snowflake:nth-child(9) {
  -webkit-animation : fall-counterclockwise 2720ms ease-in forwards infinite;
          animation : fall-counterclockwise 2720ms ease-in forwards infinite;
  -webkit-animation-delay : 2.7s;
          animation-delay : 2.7s;
}
.snow-svg .snowflake:nth-child(10) {
  -webkit-animation : fall-clockwise 3449ms ease-in forwards infinite;
          animation : fall-clockwise 3449ms ease-in forwards infinite;
  -webkit-animation-delay : 3s;
          animation-delay : 3s;
}

.snow-svg .snowflake-path {
  stroke : #BAE2E0;
  stroke-width : 1;
}

.fog-svg .fog-line:nth-child(1) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 0.2s;
          animation-delay : 0.2s;
}

.fog-svg .fog-line:nth-child(2) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 0.4s;
          animation-delay : 0.4s;
}

.fog-svg .fog-line:nth-child(3) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 0.6s;
          animation-delay : 0.6s;
}

.fog-svg .fog-line:nth-child(4) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 0.8s;
          animation-delay : 0.8s;
}

.fog-svg .fog-line:nth-child(5) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 1s;
          animation-delay : 1s;
}

.fog-svg .fog-line:nth-child(6) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 1.2s;
          animation-delay : 1.2s;
}

.fog-svg .fog-line:nth-child(7) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 1.4s;
          animation-delay : 1.4s;
}

.fog-svg .fog-line:nth-child(8) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 1.6s;
          animation-delay : 1.6s;
}

.fog-svg .fog-line:nth-child(9) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 1.8s;
          animation-delay : 1.8s;
}

.fog-svg .fog-line:nth-child(10) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 2s;
          animation-delay : 2s;
}

.fog-svg .fog-line:nth-child(11) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 2.2s;
          animation-delay : 2.2s;
}

.fog-svg .fog-line:nth-child(12) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 2.4s;
          animation-delay : 2.4s;
}

.fog-svg .fog-line:nth-child(13) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 2.6s;
          animation-delay : 2.6s;
}

.fog-svg .fog-line:nth-child(14) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 2.8s;
          animation-delay : 2.8s;
}

.fog-svg .fog-line:nth-child(15) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 3s;
          animation-delay : 3s;
}

.fog-svg .fog-line:nth-child(16) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 3.2s;
          animation-delay : 3.2s;
}

.fog-svg .fog-line:nth-child(17) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 3.4s;
          animation-delay : 3.4s;
}

.fog-svg .fog-line:nth-child(18) {
  stroke : #BAE2E0;
  animation : pan 10s ease-in-out forwards infinite, fadeIn 4s alternate-reverse infinite;
  -webkit-animation-delay : 3.6s;
          animation-delay : 3.6s;
}

@-webkit-keyframes colorChange {
  0%, 90% {
    fill : #646478;
  }
  60%, 100% {
    fill : rgba(200, 200, 200, 0.8);
  }
}

@keyframes colorChange {
  0%, 90% {
    fill : #646478;
  }
  60%, 100% {
    fill : rgba(200, 200, 200, 0.8);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity : 0;
  }
  100% {
    opacity : 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity : 0;
  }
  100% {
    opacity : 1;
  }
}

@-webkit-keyframes flash {
  0%, 90% {
    opacity : 0;
    transform : translateX(-1px) translateY(-2px) rotate(0.01deg);
  }
  90% {
    transform : translateX(1px) translateY(-1px);
  }
  60%, 100% {
    opacity : 1;
    transform : translateX(0px) translateY(0px);
  }
}

@keyframes flash {
  0%, 90% {
    opacity : 0;
    transform : translateX(-1px) translateY(-2px) rotate(0.01deg);
  }
  90% {
    transform : translateX(1px) translateY(-1px);
  }
  60%, 100% {
    opacity : 1;
    transform : translateX(0px) translateY(0px);
  }
}

@-webkit-keyframes expand {
  to {
    transform : scale(1.1);
  }
}

@keyframes expand {
  to {
    transform : scale(1.1);
  }
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset : 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset : 0;
  }
}

@-webkit-keyframes bounce {
  0%, 50%, 100% {
    transform : translateY(0px) translateX(0px) rotate(0.1deg);
  }
  30%, 80% {
    transform : translateY(3px) translateX(3px) rotate(0.1deg);
  }
}

@keyframes bounce {
  0%, 50%, 100% {
    transform : translateY(0px) translateX(0px) rotate(0.1deg);
  }
  30%, 80% {
    transform : translateY(3px) translateX(3px) rotate(0.1deg);
  }
}

@-webkit-keyframes fall-clockwise {
  0% {
    transform : translateY(-7px) rotate(0) scale(0.5);
    opacity : 0;
  }
  10% {
    transform : translateY(-4px) translateX(4px) rotate(-30deg) scale(0.7);
    opacity : 1;
  }
  45% {
    transform : translateY(5px) translateX(0px) rotate(30deg) scale(0.6);
  }
  50% {
    opacity : 0;
  }
  100% {
    opacity : 0;
    transform : translateY(10px) translateX(3px) scale(0.5);
  }
}

@keyframes fall-clockwise {
  0% {
    transform : translateY(-7px) rotate(0) scale(0.5);
    opacity : 0;
  }
  10% {
    transform : translateY(-4px) translateX(4px) rotate(-30deg) scale(0.7);
    opacity : 1;
  }
  45% {
    transform : translateY(5px) translateX(0px) rotate(30deg) scale(0.6);
  }
  50% {
    opacity : 0;
  }
  100% {
    opacity : 0;
    transform : translateY(10px) translateX(3px) scale(0.5);
  }
}

@-webkit-keyframes fall-counterclockwise {
  0% {
    transform : translateY(-9px) rotate(0) scale(0.6);
    opacity : 0;
  }
  10% {
    transform : translateY(-4px) translateX(-4px) rotate(30deg) scale(0.7);
    opacity : 1;
  }
  40% {
    transform : translateY(8px) translateX(4px) rotate(-30deg) scale(0.8);
  }
  50% {
    opacity : 0;
  }
  100% {
    opacity : 0;
    transform : translateY(14px) translateX(-3px) scale(0.7);
  }
}

@keyframes fall-counterclockwise {
  0% {
    transform : translateY(-9px) rotate(0) scale(0.6);
    opacity : 0;
  }
  10% {
    transform : translateY(-4px) translateX(-4px) rotate(30deg) scale(0.7);
    opacity : 1;
  }
  40% {
    transform : translateY(8px) translateX(4px) rotate(-30deg) scale(0.8);
  }
  50% {
    opacity : 0;
  }
  100% {
    opacity : 0;
    transform : translateY(14px) translateX(-3px) scale(0.7);
  }
}

@-webkit-keyframes pan {
  0%, 100% {
    transform : translateX(-2px) rotate(0.01deg);
  }
  50% {
    transform : translateX(2px) rotate(0.01deg);
  }
}

@keyframes pan {
  0%, 100% {
    transform : translateX(-2px) rotate(0.01deg);
  }
  50% {
    transform : translateX(2px) rotate(0.01deg);
  }
}

.icon_hold {
  width : 100%;
  height : auto;
  text-align : center;
}

.cloudy {
  -webkit-animation : cloudy 5s ease-in-out infinite;
          animation : cloudy 5s ease-in-out infinite;
}

.cloudy1 {
  -webkit-animation : cloudy 7s ease-in-out infinite;
          animation : cloudy 7s ease-in-out infinite;
}

@-webkit-keyframes cloudy {
  50% {
    transform : translateY(-20px);
  }
}

@keyframes cloudy {
  50% {
    transform : translateY(-20px);
  }
}

/* -----   Sunny  -------  */
.sunny {
  -webkit-animation : sunny 15s linear infinite;
          animation : sunny 15s linear infinite;
  -webkit-transform-origin : 50% 50%;
}

@-webkit-keyframes sunny {
  0% {
    transform : rotate(0deg);
  }
  100% {
    transform : rotate(360deg);
  }
}

@keyframes sunny {
  0% {
    transform : rotate(0deg);
  }
  100% {
    transform : rotate(360deg);
  }
}

/* -----   Shadow  -------  */
.shadow {
  -webkit-animation : cloudy_shadow 5s ease-in-out infinite;
          animation : cloudy_shadow 5s ease-in-out infinite;
  transform : scale(0.9);
}

@-webkit-keyframes cloudy_shadow {
  50% {
    transform : translateY(10px) scale(1);
    opacity : 0.05;
  }
}

@keyframes cloudy_shadow {
  50% {
    transform : translateY(10px) scale(1);
    opacity : 0.05;
  }
}

/*------Bolt---------*/
.bolt {
  position : absolute;
  top : 63%;
  left : 50%;
  margin : -0.25em 0 0 -0.125em;
  opacity : 0;
  -webkit-animation : lightning 2s linear infinite;
          animation : lightning 2s linear infinite;
}

.bolt2 {
  width : 0.5em;
  height : 0.25em;
  margin : -1.75em 0 0 -1.875em;
  transform : translate(2.5em, 2.25em);
  opacity : 0;
  -webkit-animation : lightning 1.5s linear infinite;
          animation : lightning 1.5s linear infinite;
}

@-webkit-keyframes lightning {
  45% {
    background : rgba(255, 255, 255, 0);
    opacity : 0;
  }
  50% {
    color : #FFD62C;
    background : #FFD62C;
    opacity : 1;
  }
  55% {
    background : rgba(255, 255, 255, 0);
    opacity : 0;
  }
}

@keyframes lightning {
  45% {
    background : rgba(255, 255, 255, 0);
    opacity : 0;
  }
  50% {
    color : #FFD62C;
    background : #FFD62C;
    opacity : 1;
  }
  55% {
    background : rgba(255, 255, 255, 0);
    opacity : 0;
  }
}

@keyframes lightning {
  45% {
    background : rgba(255, 255, 255, 0);
    opacity : 0;
  }
  50% {
    background : #FFD62C;
    opacity : 1;
  }
  55% {
    background : rgba(255, 255, 255, 0);
    opacity : 0;
  }
}

/* RAINY */
.rain {
  -webkit-animation : rain1 1s ease-in-out infinite;
          animation : rain1 1s ease-in-out infinite;
}

.rain1 {
  position : absolute;
  opacity : 0;
  -webkit-animation : rain2 2s ease-in-out infinite;
          animation : rain2 2s ease-in-out infinite;
}

.rain2 {
  position : absolute;
  opacity : 0;
  -webkit-animation : rain2 3s ease-in-out infinite;
          animation : rain2 3s ease-in-out infinite;
}

.rain3 {
  position : absolute;
  opacity : 0;
  -webkit-animation : rain2 4s ease-in-out infinite;
          animation : rain2 4s ease-in-out infinite;
}

.rain4 {
  position : absolute;
  -webkit-animation : rain1 5s ease-in-out infinite;
          animation : rain1 5s ease-in-out infinite;
}

.rain5 {
  position : absolute;
  opacity : 0;
  -webkit-animation : rain3 6s ease-in-out infinite;
          animation : rain3 6s ease-in-out infinite;
}

@-webkit-keyframes rain1 {
  from {
    transform : translateY(-30px);
    opacity : 1;
  }
  to {
    transform : translateY(50px);
    opacity : 0;
  }
}

@keyframes rain1 {
  from {
    transform : translateY(-30px);
    opacity : 1;
  }
  to {
    transform : translateY(50px);
    opacity : 0;
  }
}

@-webkit-keyframes rain2 {
  from {
    transform : translateY(-50px);
    opacity : 1;
  }
  to {
    transform : translateY(150px);
    opacity : 0;
  }
}

@keyframes rain2 {
  from {
    transform : translateY(-50px);
    opacity : 1;
  }
  to {
    transform : translateY(150px);
    opacity : 0;
  }
}

@-webkit-keyframes rain3 {
  from {
    transform : translateY(-40px);
    opacity : 1;
  }
  to {
    transform : translateY(100px);
    opacity : 0;
  }
}

@keyframes rain3 {
  from {
    transform : translateY(-40px);
    opacity : 1;
  }
  to {
    transform : translateY(100px);
    opacity : 0;
  }
}

.linn {
  stroke-dasharray : 50;
  -webkit-animation : dash 15s linear infinite;
          animation : dash 15s linear infinite;
}

.linn1 {
  stroke-dasharray : 50;
  -webkit-animation : dash1 15s linear infinite;
          animation : dash1 15s linear infinite;
}

@-webkit-keyframes dash1 {
  to {
    stroke-dashoffset : 1000;
  }
}

@keyframes dash1 {
  to {
    stroke-dashoffset : 1000;
  }
}

.rainbow {
  -webkit-animation : rainbow 5s linear infinite;
          animation : rainbow 5s linear infinite;
}

@-webkit-keyframes rainbow {
  0% {
    opacity : 0;
  }
  50% {
    opacity : 0.5;
  }
  100% {
    opacity : 1;
  }
}

@keyframes rainbow {
  0% {
    opacity : 0;
  }
  50% {
    opacity : 0.5;
  }
  100% {
    opacity : 1;
  }
}

/* STARRY */
@-webkit-keyframes star {
  to {
    opacity : 0;
  }
  from {
    opacity : 1;
  }
}
@keyframes star {
  to {
    opacity : 0;
  }
  from {
    opacity : 1;
  }
}

.star {
  -webkit-animation-name : star;
          animation-name : star;
  -webkit-animation-timing-function : ease-in-out;
          animation-timing-function : ease-in-out;
  -webkit-animation-iteration-count : infinite;
          animation-iteration-count : infinite;
  -webkit-animation-duration : 2s;
          animation-duration : 2s;
  -webkit-animation-direction : alternate;
          animation-direction : alternate;
}

@-webkit-keyframes star1 {
  to {
    opacity : 0;
  }
  from {
    opacity : 1;
  }
}

@keyframes star1 {
  to {
    opacity : 0;
  }
  from {
    opacity : 1;
  }
}

.star1 {
  -webkit-animation-name : star1;
          animation-name : star1;
  -webkit-animation-timing-function : ease-in-out;
          animation-timing-function : ease-in-out;
  -webkit-animation-iteration-count : infinite;
          animation-iteration-count : infinite;
  -webkit-animation-duration : 3s;
          animation-duration : 3s;
  -webkit-animation-direction : alternate;
          animation-direction : alternate;
}

@-webkit-keyframes star2 {
  0% {
    opacity : 1;
  }
  45% {
    opacity : 1;
  }
  55% {
    opacity : 0;
  }
  100% {
    opacity : 0;
  }
}

@keyframes star2 {
  0% {
    opacity : 1;
  }
  45% {
    opacity : 1;
  }
  55% {
    opacity : 0;
  }
  100% {
    opacity : 0;
  }
}

.star2 {
  -webkit-animation-name : star2;
          animation-name : star2;
  -webkit-animation-timing-function : ease-in-out;
          animation-timing-function : ease-in-out;
  -webkit-animation-iteration-count : infinite;
          animation-iteration-count : infinite;
  -webkit-animation-duration : 5s;
          animation-duration : 5s;
  -webkit-animation-direction : alternate;
          animation-direction : alternate;
}

@-webkit-keyframes moon {
  50% {
    transform : rotate(5deg);
  }
}

@keyframes moon {
  50% {
    transform : rotate(5deg);
  }
}

.moon {
  -webkit-animation : moon 5s ease-in-out infinite;
          animation : moon 5s ease-in-out infinite;
  transform : rotate(-5deg);
  transform-origin : 0 50%;
}

.tornado {
  -webkit-animation-name : translateTornado1;
          animation-name : translateTornado1;
  -webkit-animation-iteration-count : infinite;
          animation-iteration-count : infinite;
  -webkit-animation-direction : alternate;
          animation-direction : alternate;
  -webkit-animation-timing-function : ease-in-out;
          animation-timing-function : ease-in-out;
  -webkit-animation-duration : 3s;
          animation-duration : 3s;
}

.tornado1 {
  -webkit-animation-name : translateTornado1;
          animation-name : translateTornado1;
}

.tornado2 {
  -webkit-animation-name : translateTornado2;
          animation-name : translateTornado2;
}

.tornado3 {
  -webkit-animation-name : translateTornado3;
          animation-name : translateTornado3;
}

.tornado4 {
  -webkit-animation-name : translateTornado4;
          animation-name : translateTornado4;
}

.tornado5 {
  -webkit-animation-name : translateTornado5;
          animation-name : translateTornado5;
}

.tornado6 {
  -webkit-animation-name : translateTornado6;
          animation-name : translateTornado6;
}

/* Tornado */
@-webkit-keyframes translateTornado1 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(30.997px);
  }
  75% {
    transform : translateX(-30.997px);
  }
  100% {
    transform : translateX(0);
  }
}
@keyframes translateTornado1 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(30.997px);
  }
  75% {
    transform : translateX(-30.997px);
  }
  100% {
    transform : translateX(0);
  }
}

@-webkit-keyframes translateTornado2 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(60.002px);
  }
  75% {
    transform : translateX(-60.002px);
  }
  100% {
    transform : translateX(0);
  }
}

@keyframes translateTornado2 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(60.002px);
  }
  75% {
    transform : translateX(-60.002px);
  }
  100% {
    transform : translateX(0);
  }
}

@-webkit-keyframes translateTornado3 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(20%);
  }
  75% {
    transform : translateX(-20%);
  }
  100% {
    transform : translateX(0);
  }
}

@keyframes translateTornado3 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(20%);
  }
  75% {
    transform : translateX(-20%);
  }
  100% {
    transform : translateX(0);
  }
}

@-webkit-keyframes translateTornado4 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(80.999px);
  }
  75% {
    transform : translateX(-80.999px);
  }
  100% {
    transform : translateX(0);
  }
}

@keyframes translateTornado4 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(80.999px);
  }
  75% {
    transform : translateX(-80.999px);
  }
  100% {
    transform : translateX(0);
  }
}

@-webkit-keyframes translateTornado5 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(40.003px);
  }
  75% {
    transform : translateX(-40.003px);
  }
  100% {
    transform : translateX(0);
  }
}

@keyframes translateTornado5 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(40.003px);
  }
  75% {
    transform : translateX(-40.003px);
  }
  100% {
    transform : translateX(0);
  }
}

@-webkit-keyframes translateTornado6 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(90%);
  }
  75% {
    transform : translateX(-90%);
  }
  100% {
    transform : translateX(0);
  }
}

@keyframes translateTornado6 {
  0% {
    transform : translateY(0);
  }
  25% {
    transform : translateX(90%);
  }
  75% {
    transform : translateX(-90%);
  }
  100% {
    transform : translateX(0);
  }
}

@media (max-width: 1199px) {
  .modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-in, .modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-in, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-in, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-in {
    font-size : 18px;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-title, .modal-event-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-title, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .distance-title, .modal-race-info .modal-xl .modal-content .modal-body .race-info-sidebar .elevation-title {
    font-size : 12px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .modal-event-info .modal-xl .modal-content .modal-header .col-12, .modal-race-info .modal-xl .modal-content .modal-header .col-12 {
    flex : 0 0 50%;
    max-width : 50%;
    margin-bottom : 0 !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 + .col-12, .modal-race-info .modal-xl .modal-content .modal-header .col-12 + .col-12 {
    justify-content : flex-end !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-info, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-info {
    flex-wrap : wrap;
    justify-content : flex-start !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-name, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-name {
    font-size : 30px;
    text-align : left;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-location, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-location {
    font-size : 14px;
    text-align : left;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date, .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register a, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register a {
    min-width : auto;
    padding : 8px 10px;
    font-size : 12px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date i, .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time i, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date i, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time i {
    font-size : 18px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .event-passed, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .event-passed {
    margin : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .elevation-summary .download, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .elevation-summary .download {
    position : relative;
    justify-content : flex-start;
    margin-top : 5px;
  }
}

@media (max-width: 575px) and (orientation: landscape) {
  .modal-event-info .modal-xl .modal-content .modal-header .col-12, .modal-race-info .modal-xl .modal-content .modal-header .col-12 {
    flex : 0 0 100%;
    max-width : 100%;
    margin-bottom : 0 !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 + .col-12, .modal-race-info .modal-xl .modal-content .modal-header .col-12 + .col-12 {
    justify-content : center !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-info, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-info {
    flex-wrap : wrap;
    justify-content : center !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-name, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-name {
    font-size : 30px;
    text-align : center;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-location, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-location {
    font-size : 14px;
    text-align : center;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date, .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register a, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-register a {
    min-width : auto;
    padding : 8px 10px;
    font-size : 12px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date i, .modal-event-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time i, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-date i, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .modal-race-time i {
    font-size : 18px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .event-passed, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .event-passed {
    margin : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .col-12 .elevation-summary .download, .modal-race-info .modal-xl .modal-content .modal-header .col-12 .elevation-summary .download {
    position : relative;
    justify-content : center;
    margin-top : 5px;
  }
}

@media (max-width: 991px) {
  .modal .modal-body .map-gpx-holder .leaflet-map {
    height : 240px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header, .modal-race-info .modal-xl .modal-content .modal-header {
    min-height : auto !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 {
    flex : 0 0 50%;
    max-width : 50%;
    margin-bottom : 0 !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 + .col-12, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 + .col-12 {
    justify-content : flex-end !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-info, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-info {
    flex-wrap : wrap;
    justify-content : flex-start !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-name, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-name {
    font-size : 30px;
    text-align : left;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-location, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-location {
    font-size : 14px;
    text-align : left;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-date, .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-time, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-date, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-time {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-register, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-register {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-register a, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-register a {
    min-width : auto;
    padding : 8px 10px;
    font-size : 12px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-date i, .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-time i, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-date i, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-time i {
    font-size : 18px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .event-passed, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .event-passed {
    margin : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .elevation-summary .download, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .elevation-summary .download {
    position : relative;
    justify-content : flex-start;
    margin-top : 5px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .event-passed, .modal-race-info .modal-xl .modal-content .modal-header .event-passed {
    font-size : 20px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock {
    margin-bottom : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer {
    font-size : 40px;
    line-height : 50px;
    display : flex;
    height : 70px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .seconds, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .minutes, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .hours, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .days, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .seconds, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .minutes, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .hours, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .days {
    width : 50px;
    height : 50px;
    margin : 0 7px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .digit > div.digit-top, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .digit > div.digit-bottom, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .digit > div.digit-top, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer .digit > div.digit-bottom {
    width : 25px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer.threeNumbers .days, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-clock .flipTimer.threeNumbers .days {
    width : 75px;
  }
}

@media (max-width: 767px) {
  .modal-event-info, .modal-race-info {
    top : 0;
    left : 0;
    right : 0;
    padding : 0 !important;
  }
  .modal-event-info .modal-xl, .modal-race-info .modal-xl {
    max-width : 100%;
    margin : 0;
  }
  .modal-event-info .modal-xl .modal-content, .modal-race-info .modal-xl .modal-content {
    border-radius : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header, .modal-race-info .modal-xl .modal-content .modal-header {
    min-height : auto;
    border-radius : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-event-registration-date, .modal-race-info .modal-xl .modal-content .modal-header .modal-event-registration-date {
    margin-bottom : 10px;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .widget-modal, .modal-race-info .modal-xl .modal-content .modal-body .widget-modal {
    margin-bottom : 20px;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .elevation-summary, .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary {
    margin-top : 15px;
    display : block;
    position : relative;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .elevation-summary .maxele, .modal-event-info .modal-xl .modal-content .modal-body .elevation-summary .minele, .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary .maxele, .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary .minele {
    display : block;
    margin-right : 0;
    margin-bottom : 3px;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .elevation-summary .download, .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary .download {
    position : absolute;
    top : 0;
    right : 20px;
    margin-right : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .table-control-points, .modal-race-info .modal-xl .modal-content .modal-body .table-control-points {
    overflow-x : auto;
    margin-bottom : 20px;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .table-control-points .table .thead .th, .modal-event-info .modal-xl .modal-content .modal-body .table-control-points .table .thead .th, .modal-event-info .modal-xl .modal-content .modal-body .table-control-points .table .tbody .tr .td, .modal-event-info .modal-xl .modal-content .modal-body .table-control-points .table .tbody .tr .td, .modal-race-info .modal-xl .modal-content .modal-body .table-control-points .table .thead .th, .modal-race-info .modal-xl .modal-content .modal-body .table-control-points .table .thead .th, .modal-race-info .modal-xl .modal-content .modal-body .table-control-points .table .tbody .tr .td, .modal-race-info .modal-xl .modal-content .modal-body .table-control-points .table .tbody .tr .td {
    white-space : nowrap;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .apexcharts-datalabel-label, .modal-race-info .modal-xl .modal-content .modal-body .apexcharts-datalabel-label {
    font-size : 14px;
  }
}

@media (max-width: 575px) {
  .modal-event-info .modal-xl .modal-content .modal-header, .modal-race-info .modal-xl .modal-content .modal-header {
    padding : 20px 30px 15px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-info, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-info {
    flex-wrap : wrap;
    justify-content : center !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-date, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-time, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-date, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-time {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-register, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-register {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-register a, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-info .modal-race-register a {
    min-width : auto;
    padding : 8px 10px;
    font-size : 12px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 {
    flex : 0 0 100%;
    max-width : 100%;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 + .col-12, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 + .col-12 {
    justify-content : center !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-title, .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-name, .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-location, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-title, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-name, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-location {
    text-align : center;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-info, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-race-info {
    flex-wrap : wrap;
    justify-content : center !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .flipTimer, .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-event-registration-date, .modal-event-info .modal-xl .modal-content .modal-header.fixed .col-12 .event-passed, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .flipTimer, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .modal-event-registration-date, .modal-race-info .modal-xl .modal-content .modal-header.fixed .col-12 .event-passed {
    height : 0;
    opacity : 0;
    overflow : hidden;
    transition : all 0.3s ease-in-out;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .elevation-summary .download, .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary .download {
    right : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-body .elevation-summary .download a, .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary .download a {
    padding : 0.5rem 0.6rem;
  }
  #categories_donutChart, #statuses_donutChart {
    display : flex;
    justify-content : center;
  }
}

@media (max-width: 400px) {
  .modal-race-info .modal-xl .modal-content .modal-body .elevation-summary .download {
    position : relative;
    right : auto;
    justify-content : flex-start;
    margin-top : 10px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .modal-event-info .modal-xl, .modal-race-info .modal-xl {
    max-width : 100%;
    margin : 0;
  }
  .modal-event-info .modal-xl .modal-content .modal-header, .modal-race-info .modal-xl .modal-content .modal-header {
    padding : 15px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-name, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-name {
    font-size : 30px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-location, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-location {
    margin-bottom : 10px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-date, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-time, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-date, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-time {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-date i, .modal-event-info .modal-xl .modal-content .modal-header .modal-race-time i, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-date i, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-time i {
    font-size : 18px;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-register, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-register {
    margin : 0 6px 10px !important;
  }
  .modal-event-info .modal-xl .modal-content .modal-header .modal-race-register a, .modal-race-info .modal-xl .modal-content .modal-header .modal-race-register a {
    min-width : auto;
    padding : 8px 10px;
    font-size : 12px;
  }
}

.modal-backdrop.show {
  opacity : 0.4;
  background-color : #00003D;
}

button.close {
  color : #FFFFFF;
  opacity : 1;
  font-size : 40px;
  outline : 0;
  padding-right : 20px;
  padding-top : 10px;
  transition : all 0.3s ease-in-out;
}
button.close:focus, button.close:hover, button.close:active {
  color : #7E8088;
  outline : 0;
  transition : all 0.3s ease-in-out;
}

.modal .modal-dialog .modal-header {
  justify-content : center;
  align-items : center;
  flex-direction : column;
  border : 0;
  width : 100%;
}
.modal .modal-dialog .modal-header h2 {
  margin-bottom : 20px;
  color : #FFFFFF;
}
.modal .modal-dialog .modal-header p {
  color : #FFFFFF;
  font-weight : 300;
  text-align : center;
}

.modal .modal-dialog .modal-content .modal-body {
  margin-top : 10px;
  padding : 35px 35px 100px;
}
.modal .modal-dialog .modal-content .modal-body .widget-modal {
  margin-bottom : 20px;
  background : #FFFFFF;
  border : 1px solid #A2A2B7;
}
.modal .modal-dialog .modal-content .modal-body .widget-modal .race-img {
  border-radius : 4px;
  max-height : 280px;
  border : 1px solid #A2A2B7;
}
.modal .modal-dialog .modal-content .modal-body .widget-modal.widget-gray {
  background-color : #F5F6FB;
}
.modal .modal-dialog .modal-content .modal-body h1, .modal .modal-dialog .modal-content .modal-body h2, .modal .modal-dialog .modal-content .modal-body h3, .modal .modal-dialog .modal-content .modal-body h4, .modal .modal-dialog .modal-content .modal-body h5 {
  font-weight : 700;
}
.modal .modal-dialog .modal-content .modal-body p, .modal .modal-dialog .modal-content .modal-body ul li {
  font-weight : 300;
}
.modal .modal-dialog .modal-content .modal-body strong {
  font-weight : 700;
}
.modal .modal-dialog .modal-content .modal-body .event-title h3 {
  font-size : 24px;
  line-height : 120%;
}
.modal .modal-dialog .modal-content .modal-body .event-description {
  margin-bottom : 35px;
  margin-top : 35px;
  font-size : 14px;
}
.modal .modal-dialog .modal-content .modal-body .event-description a {
  color : #FF4713;
}
.modal .modal-dialog .modal-content .modal-body .event-description a:hover, .modal .modal-dialog .modal-content .modal-body .event-description a:focus, .modal .modal-dialog .modal-content .modal-body .event-description a:active {
  color : #DF3607;
}
.modal .modal-dialog .modal-content .modal-body .event-description p, .modal .modal-dialog .modal-content .modal-body .event-description a, .modal .modal-dialog .modal-content .modal-body .event-description ul li, .modal .modal-dialog .modal-content .modal-body .event-description ol li {
  font-size : 14px;
  line-height : 140%;
}
.modal .modal-dialog .modal-content .modal-body .event-description h1, .modal .modal-dialog .modal-content .modal-body .event-description h2, .modal .modal-dialog .modal-content .modal-body .event-description h3, .modal .modal-dialog .modal-content .modal-body .event-description h4, .modal .modal-dialog .modal-content .modal-body .event-description h5, .modal .modal-dialog .modal-content .modal-body .event-description h6 {
  margin-bottom : 20px;
}
.modal .modal-dialog .modal-content .modal-body .event-description table {
  border : 1px solid #CCCCCC;
  width : 100%;
  margin-bottom : 20px;
}
.modal .modal-dialog .modal-content .modal-body .event-description table th {
  font-weight : bold;
}
.modal .modal-dialog .modal-content .modal-body .event-description table td {
  border : 1px solid #CCCCCC;
  vertical-align : middle;
  line-height : 100%;
  padding : 5px 10px;
  font-size : 12px;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race {
  margin-bottom : 10px;
  width : 100%;
  min-height : 80px;
  padding : 8px 20px;
  border-radius : 10px;
  background-image : linear-gradient(96deg, #AC21FB, #1A1AAB);
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info {
  font-size : 14px;
  color : #FFFFFF;
  width : 100%;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .race-title {
  font-size : 18px;
  font-weight : bold;
  line-height : 120%;
  margin-bottom : 8px;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .distance, .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .elevation {
  line-height : 100%;
  font-weight : normal;
  font-size : 15px;
  justify-content : center;
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .distance, .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .elevation {
    margin-right : 10px;
  }
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .distance strong, .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info .elevation strong {
  margin-left : 10px;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-info strong {
  font-size : 14px;
  font-weight : bold;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-stats {
  color : #FFFFFF;
  padding : 10px 10px 8px;
  background : rgba(172, 33, 251, 0.6);
  font-size : 12px;
  line-height : 100%;
  font-weight : 400;
  text-align : center;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-stats strong {
  font-size : 32px;
  line-height : 100%;
  font-family : 'Bebas-Neue', sans-serif;
  margin-bottom : 2px;
  display : block;
  font-weight : normal;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-actions {
  margin-left : 10px;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-actions .btn.btn-orange {
  margin : 0 10px;
  padding : 12px 10px;
}
.modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-actions .btn.btn-orange + .btn.btn-orange {
  margin-right : 0;
}
.modal .modal-dialog .modal-content .modal-body .results-pdf {
  margin-bottom : 30px;
  height : 560px;
}
.modal .modal-dialog .modal-content .modal-body .results-pdf #pdf-embed {
  height : 100%;
}

.modal.modal-about-us .about-us-logos a {
  display : block;
  overflow : hidden;
  position : relative;
}
.modal.modal-about-us .about-us-logos a::before {
  content : '';
  display : block;
  z-index : 1;
  position : absolute;
  left : 0;
  right : 0;
  top : 0;
  bottom : 0;
  transition : all 0.3s ease-in-out;
}
.modal.modal-about-us .about-us-logos a img {
  max-height : 140px;
  transition : all 0.3s ease-in-out;
}
.modal.modal-about-us .about-us-logos a:hover::before {
  background-color : rgba(10, 10, 10, 0.22);
  transition : all 0.3s ease-in-out;
}
.modal.modal-about-us .about-us-logos a:hover img {
  transform : rotate(10deg) scale(1.3);
  transition : all 0.3s ease-in-out;
}

.modal.modal-careers .modal-content .modal-body h3, .modal.modal-contact .modal-content .modal-body h3 {
  color : #B4598F;
  text-transform : lowercase;
}

.modal.modal-careers .modal-content .modal-body h5, .modal.modal-contact .modal-content .modal-body h5 {
  font-weight : 300;
}

.modal.modal-contact .modal-body ul {
  list-style : none;
  padding : 0;
}

.modal.modal-contact .modal-body form input, .modal.modal-contact .modal-body form textarea {
  background : #000000;
  background-color : rgba(0, 0, 61, 0.8);
  border : 1px solid #B4598F;
  margin-bottom : 0;
  outline : 0;
  color : #FFFFFF;
  font-size : 14px;
  width : 100%;
}

.modal.modal-contact .modal-body form textarea {
  min-height : 160px;
  resize : none;
  padding : 12px 20px;
}

.modal.modal-contact .modal-body form button {
  background-color : #B4598F;
  color : #FFFFFF;
  font-size : 16px;
  outline : 0;
  border : 0;
  padding : 10px 25px;
  border-radius : 0;
  transition : all 0.3s ease-in-out;
}
.modal.modal-contact .modal-body form button:hover, .modal.modal-contact .modal-body form button:focus, .modal.modal-contact .modal-body form button:active {
  background-color : #DF3607;
}

@media (max-width: 991px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding : 5px 15px 15px;
  }
}

@media (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding : 15px;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race {
    padding : 20px;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .distance {
    margin-bottom : 8px;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-stats {
    width : 100%;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-stats strong {
    margin : 0 10px 0;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-actions {
    margin : 0;
    width : 100%;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-actions .btn {
    width : 100%;
    line-height : 120%;
  }
  .modal .modal-dialog .modal-content .modal-body .event-races .event-race .event-race-actions .btn:first-child {
    margin-left : 0;
  }
}

.result-pdf #pdf-embed {
  min-height : 500px;
  height : 100%;
}

.modal-process .modal-content {
  background : transparent;
}

body {
  font-size : 16px;
}

.wrapper-content main {
  height : 100%;
}
.wrapper-content main.page {
  max-width : 80%;
  margin : auto;
  padding : 40px 15px;
}
.wrapper-content main.page .content--center {
  padding : 0 1em;
}

.wrapper-content article h1, .wrapper-content article h2, .wrapper-content article h3, .wrapper-content article h4, .wrapper-content article h5, .wrapper-content article h6, .wrapper-content article p, .wrapper-content article strong, .wrapper-content article ul, .wrapper-content article ul li {
  color : #7E8088;
}

.wrapper-content article strong {
  font-weight : 900;
}

.wrapper-content .what-we-do .service-box {
  padding : 30px 0;
  margin-bottom : 20px;
}
.wrapper-content .what-we-do .service-box .service-icon {
  background : #282363;
  height : 70px;
  width : 70px;
  border-radius : 50%;
  text-align : center;
  float : left;
  display : flex;
  justify-content : center;
  align-items : center;
  font-size : 24px;
  color : #FFFFFF;
}
.wrapper-content .what-we-do .service-box .service-content {
  margin-left : 95px;
}
.wrapper-content .what-we-do .service-box .service-content h3 {
  font-size : 14px;
  font-weight : 700;
  line-height : 1.4;
  margin-bottom : 0;
}
.wrapper-content .what-we-do .service-box .service-content p {
  font-size : 12px;
  font-weight : 300;
  line-height : 1.4;
  margin-top : 10px;
  margin-bottom : 0;
}

.wrapper-content .contact h3 {
  color : #B4598F !important;
  font-size : 16px;
}
.wrapper-content .contact h3 i {
  margin-right : 10px;
}

.wrapper-content .contact h5 {
  font-weight : 300;
}

.wrapper-content .contact ul {
  list-style : none;
  padding : 0;
  font-size : 14px;
}

.wrapper-content .contact form input, .wrapper-content .contact form textarea {
  background : #FFFFFF;
  margin-bottom : 0;
  outline : 0;
  font-size : 14px;
  width : 100%;
}

.wrapper-content .contact form textarea {
  min-height : 160px;
  resize : none;
  padding : 12px 20px;
}

.wrapper-content .contact form button {
  padding : 0.8rem 25px;
}

.wrapper-content:not(.wrapper-home) #toggle-filters {
  display : none !important;
}

footer {
  padding : 30px 0 10px;
}

@media (max-width: 991px) {
  .wrapper-content main.page {
    max-width : 100%;
  }
  .wrapper-content main.page .what-we-do .service-box {
    padding : 10px 0;
  }
}

@media screen and (max-width: 1199px) {
  body {
    padding-top : 50px;
  }
  body .wrapper-content header {
    height : 50px;
    padding : 5px 15px;
    z-index : 200;
  }
  body .wrapper-content header .logo {
    width : 100px;
  }
  body .wrapper-content header .nav-wrapper {
    position : fixed;
    z-index : 190;
    background-color : #FFFFFF;
    left : 10px;
    right : 10px;
    top : 50px;
    overflow : hidden;
    border-radius : 0 0 10px 10px;
    height : 0;
    transition : all 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    display : flex;
    flex-direction : column;
  }
  body .wrapper-content header .nav-wrapper nav.navigation a {
    display : block;
    width : 100%;
    color : #202124;
    padding : 15px;
    top : 50px;
  }
  body .wrapper-content header .nav-wrapper nav.navigation a:hover, body .wrapper-content header .nav-wrapper nav.navigation a:focus, body .wrapper-content header .nav-wrapper nav.navigation a:active {
    background-color : #F5F6FB;
    transition : all 0.2s ease-in-out;
    cursor : pointer;
  }
  body .wrapper-content header.is-active .nav-wrapper {
    height : auto;
    transition : all 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  }
  body .wrapper-content header nav.nav-mobile {
    display : flex;
    justify-content : center;
    align-items : center;
  }
  body .wrapper-content header nav.navigation {
    order : 1;
  }
  body .wrapper-content header .header-right {
    order : 2;
    padding : 10px;
  }
  body .wrapper-content header .header-right div.cs-select.cs-select-language span.cs-placeholder {
    color : #7E8088;
  }
  body .wrapper-content header .header-right div.cs-select.cs-select-language span.cs-placeholder::after {
    color : #7E8088;
  }
  body .wrapper-content header .header-right div.cs-select .cs-options {
    top : auto;
    bottom : 100%;
    max-height : 200px;
  }
  body .wrapper-content header .header-right .btn {
    padding : 8px 10px;
  }
  body .wrapper-content .content--center {
    max-width : 100vw;
    margin-top : 10px;
    padding : 0 !important;
  }
  body .wrapper-content .content--side {
    margin-top : 10px;
  }
  body .wrapper-content .event-filter {
    margin-top : 15px;
    margin-bottom : 15px;
  }
}

@media (max-width: 1199px) {
  .content--center, .content--side {
    height : calc(100vh - 120px);
  }
}

@media (max-width: 991px) {
  .content--center, .content--side {
    height : calc(100vh - 100px);
  }
}
