@import url(https://fonts.googleapis.com/css?family=Open+Sans|Roboto:300,400,500);
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rItik6YE tr td:last-child {
  text-align: right;
}
.rItik6YE tr:last-child {
  font-weight: 700;
}

.Ehjiu8VC {
  text-transform: uppercase;
  white-space: nowrap;
}

@font-face {
  font-family: 'Minirol Head';
  src: url(/dist/assets/fonts/7c01b28938ccdd162853.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Minirol Head';
  src: url(/dist/assets/fonts/7c01b28938ccdd162853.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Minirol Head';
  src: url(/dist/assets/fonts/74928e468e50968edbdd.woff2) format('woff2');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Minirol Head';
  src: url(/dist/assets/fonts/7cf0654dfcd4e82f6c8f.woff2) format('woff2');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Minirol Head';
  src: url(/dist/assets/fonts/057c46029a1ce7470c50.woff2) format('woff2');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Minirol Head';
  src: url(/dist/assets/fonts/737effeebaeebf9b4524.woff2) format('woff2');
  font-weight: lighter;
  font-style: normal;
}
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
html body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: white;
  font-family: 'Minirol Head', 'Open Sans';
  line-height: 1.2em;
}
html body input {
  font-family: "Open Sans";
}
html hr {
  margin: 20px 0;
  border: 0;
  height: 1.5px;
  background: #f1f1f2;
}
html table {
  border-collapse: collapse;
}
html input[type="number"]::-webkit-inner-spin-button,
html input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html a button {
  text-decoration: none;
}
.uaHa9xlv {
  background-color: #e5524d;
  color: #fff;
}
.t5RC70Es {
  color: #e5514c;
}
.So7gDDmQ {
  clear: both;
  height: 1px;
}
.CFG6TalA {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
}
@media (min-width: 600px) {
  .H48MpCSF {
    display: none !important;
  }
}
.sryF2Zc_ {
  overflow-x: auto;
}
.ylHieIeg {
  background: rgba(255, 255, 255, 0.1);
}
.ylHieIeg .GRQuyxd0 {
  width: 100%;
  overflow-x: auto;
}
.ylHieIeg .MxzSrGSc {
  padding: 12px 24px;
}
.ylHieIeg .MxzSrGSc .sWUWomlY .oWZgCdvQ {
  display: inline-block;
}
.ylHieIeg .MxzSrGSc .sWUWomlY .WmUxdoax {
  margin-left: 8px;
}
.ylHieIeg .MxzSrGSc .sWUWomlY .WmUxdoax .PgsV9YXS {
  color: white;
}
.ylHieIeg .WfSzLic0.e6vs8ZWN {
  background: #e5514c;
}
.ylHieIeg .WfSzLic0.e6vs8ZWN * {
  color: white;
}
.ylHieIeg .WfSzLic0 .oWZgCdvQ {
  flex: 0 0 auto;
}
.ylHieIeg .WfSzLic0 .CAs0YZdY {
  flex: 1 1 0%;
}
.ylHieIeg .WfSzLic0 .Kfajx44x .ckrOviQc {
  float: right;
}
.ylHieIeg .WfSzLic0 .Kfajx44x .xgqGAsje {
  transition: width 0.5s cubic-bezier(0, 0.5, 0, 1) 0s;
  width: 1px;
  display: inline-block;
  vertical-align: text-bottom;
}
.ylHieIeg .WfSzLic0 .Kfajx44x .xgqGAsje.OjvSmSTb {
  width: 200px;
}
.ylHieIeg .fgxertBn {
  transition: background 0.3s ease 0s;
}
.ylHieIeg .fgxertBn:nth-child(2n + 1) {
  background: rgba(0, 0, 0, 0.04);
}
.ylHieIeg .fgxertBn:hover {
  background: rgba(229, 81, 76, 0.2);
}
.ylHieIeg .fgxertBn.zM8iPZiU {
  background: white;
}
.ylHieIeg .fgxertBn.SuhFotDP {
  background: #e5514c;
}
.ylHieIeg .fgxertBn.SuhFotDP * {
  color: white;
}
.ylHieIeg .fgxertBn ._CkIhQDO.sCk4b40Y {
  padding: 0px;
}
.ylHieIeg .fgxertBn ._CkIhQDO.sCk4b40Y a {
  padding: 14px 56px 14px 24px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
  line-height: 20px;
  box-sizing: border-box;
}
.ylHieIeg .fgxertBn ._CkIhQDO.sCk4b40Y.WRwcaCe_ a {
  padding-right: 24px;
}
.ylHieIeg .fgxertBn ._CkIhQDO.sCk4b40Y.UqnmYyGg a {
  padding: 0px;
}
.ylHieIeg .fgxertBn ._CkIhQDO .OA9V6oTA {
  padding: 0;
}
.ylHieIeg .fgxertBn ._CkIhQDO, .ylHieIeg .fgxertBn .vTzG1l1V {
  border-color: rgba(255, 255, 255, 0.075);
}
.ylHieIeg .V0XEtHMT {
  position: fixed;
  right: 50px;
  bottom: 10px;
}
@media (max-width: 1024px) {
  .ylHieIeg .V0XEtHMT {
    right: 30px;
  }
}
.ylHieIeg .GLzVUbTa, .ylHieIeg .s96kPlWM {
  padding-top: 8px;
  height: 24px;
}
.ylHieIeg .GLzVUbTa.l2u24zq5, .ylHieIeg .s96kPlWM.l2u24zq5 {
  color: #888;
}
.ylHieIeg .jJY0Poa8 .qv2cUz3e .PgsV9YXS {
  margin-right: 8px;
}
.tf4lfvcT.gABhzwGn {
  margin: -5px 0 10px;
}
.tf4lfvcT.gABhzwGn button {
  margin: 5px 3px;
}
.tf4lfvcT.GX_j88Pi {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
}
.tf4lfvcT.GX_j88Pi .vNaezWTQ {
  text-align: center;
}
.tf4lfvcT.GX_j88Pi .vNaezWTQ button {
  margin: 0 15px;
}
.poXP23Uo a {
  display: list-item;
  list-style-type: none;
  margin: 10px 0;
  font-size: 0.9em;
  color: blue;
}
table td > .poXP23Uo a:first-child {
  margin-top: 0;
}
table td > .poXP23Uo a:last-child {
  margin-bottom: 0;
}
.WUJBnkKk .iaQ1EZ37 .L2mBfmDu {
  height: 56px;
  line-height: 56px;
  box-shadow: inset 0 -5px 0 0 #f1f1f2;
  padding-left: 12px;
  font-family: 'Minirol Head', 'Roboto';
  font-size: 30px;
  font-weight: 500;
}
.WUJBnkKk .iaQ1EZ37 .WLV6xnNR {
  padding: 0;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd {
  border-right: 1.5px solid #f1f1f2;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .cth6cdQk {
  display: flex;
  align-items: center;
  padding: 6px 8px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .cth6cdQk .PgsV9YXS {
  width: 24px;
  font-size: 16px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .cth6cdQk .Rql1BIZF {
  margin: 0 10px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca {
  border-bottom: 1.5px solid #f1f1f2;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ.SuhFotDP {
  background: white;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ .JWe0CnVi {
  color: black;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ .nvntm9FM {
  font-weight: 500;
  font-size: 20px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD {
  background: white;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD .JWe0CnVi {
  text-align: center;
  width: 24px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD .JWe0CnVi svg {
  font-size: 20px;
  height: 20px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ, .WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD {
  padding: 6px 8px;
  border-top: 1.5px solid #f1f1f2;
  text-transform: lowercase;
  font-family: 'Minirol Head', 'Roboto';
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ .JWe0CnVi, .WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD .JWe0CnVi {
  display: inline;
  margin-right: 0;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ .nvntm9FM, .WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD .nvntm9FM {
  padding: 0 10px;
}
.WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .eGZh8GOZ input, .WUJBnkKk .iaQ1EZ37 .QFpiittd .ll9IpPca .u1YOOuBD input {
  font-size: 15px;
  padding: 0;
}
.WUJBnkKk .gqYisWW7 {
  overflow-x: auto;
}
.bRfLB_rF tr {
  height: 105px;
}
@media (min-width: 1440px) {
  .bRfLB_rF tr {
    height: 60px;
    white-space: nowrap;
  }
}
.bRfLB_rF.evq4Xn7E tr:last-child th {
  box-shadow: inset 0 -5px 0 0 #f1f1f2;
  border-bottom: none;
}
.Mbiw9FnT .lPpngqnh {
  box-sizing: border-box;
  min-width: 36px;
  width: 36px;
  padding-right: 0;
}
@media (min-width: 760px) {
  .Mbiw9FnT .lPpngqnh {
    min-width: 54px;
    width: 54px;
  }
}
.Mbiw9FnT tr {
  transition: all 0.2s ease;
  height: 95px;
}
@media (min-width: 1440px) {
  .Mbiw9FnT tr {
    height: 75px;
  }
}
.Mbiw9FnT tr.SuhFotDP, .Mbiw9FnT tr:hover {
  background: white;
}
.Mbiw9FnT tr td {
  padding: 12px;
}
@media (min-width: 760px) {
  .Mbiw9FnT tr td {
    padding: 10px 16px;
  }
}
.Mbiw9FnT tr td.ImdoH6IN {
  cursor: pointer;
}
.Mbiw9FnT a {
  color: #000000;
  text-decoration: none;
  transition: color 0.25s;
}
.Mbiw9FnT a:hover {
  color: #e5514c;
}
@media (max-width: 959px) {
  .ih8KWCMJ th:nth-child(2), .bolRHw6Y th:nth-child(2), .ih8KWCMJ td:nth-child(2), .bolRHw6Y td:nth-child(2) {
    position: sticky;
    background: #fff;
    z-index: 1;
  }
  .ih8KWCMJ th:nth-child(2), .bolRHw6Y th:nth-child(2), .ih8KWCMJ td:nth-child(2), .bolRHw6Y td:nth-child(2) {
    left: 0;
  }
}
.JMlb5IJ5 {
  display: flex;
  align-items: center;
}
.JMlb5IJ5 .ZdtUVmAF {
  margin-right: 10px;
}
.JMlb5IJ5 .HMER3z24 {
  max-width: 200px;
}
.jyDP5Gio {
  width: 100%;
}
.jyDP5Gio .oWZgCdvQ {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  font-size: 22px;
  align-items: center;
}
.jyDP5Gio .oWZgCdvQ button {
  margin: 5px;
}
.jyDP5Gio .hhU989_W {
  flex-basis: 100%;
  margin: 20px -5px -5px;
  text-align: right;
}
@media (min-width: 780px) {
  .jyDP5Gio .hhU989_W {
    flex-basis: auto;
    margin: -5px;
  }
}
.jyDP5Gio .OjvSmSTb {
  background: white;
}
.jyDP5Gio .IQwPJZdE, .jyDP5Gio .qWREr9yf {
  transition: all 0.3s ease;
}
.jyDP5Gio tr.IQwPJZdE > td {
  padding: 10px 20px;
}
.jyDP5Gio tr.IQwPJZdE .S4e_pFpr {
  position: relative;
  width: 80px;
  height: 80px;
}
.jyDP5Gio tr.IQwPJZdE .S4e_pFpr .ICUwp0Nk {
  overflow: hidden;
  transform-origin: center;
  transform: translate(45px, -45px) rotate(45deg) scale(1.5, 1.5);
}
.jyDP5Gio tr.IQwPJZdE .S4e_pFpr .ICUwp0Nk .nTIhyAR3 {
  transform-origin: center;
  transform: scale(0.66666667, 0.66666667) rotate(-45deg) translate(-45px, 45px);
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.jyDP5Gio tr.IQwPJZdE .S4e_pFpr .hKtuZDhJ {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 35px;
  font-weight: lighter;
  line-height: 1;
}
.jyDP5Gio tr.IQwPJZdE .xJ2NaGq0, .jyDP5Gio tr.IQwPJZdE .xJ2NaGq0 input {
  font-weight: bold;
  font-size: 0.9em;
}
.jyDP5Gio tr.IQwPJZdE .W6WIMO1H, .jyDP5Gio tr.IQwPJZdE .DomF3meo, .jyDP5Gio tr.IQwPJZdE .W6WIMO1H input, .jyDP5Gio tr.IQwPJZdE .DomF3meo input {
  color: #5a5b5d;
  margin-top: 4px;
  font-weight: lighter;
  font-size: 0.9em;
  line-height: 1.3;
}
.jyDP5Gio tr.IQwPJZdE .YNdyiHPm {
  display: flex;
  align-items: center;
}
.jyDP5Gio tr.IQwPJZdE .YNdyiHPm .RVgcWr2O td {
  font-size: 0.8em;
  text-align: right;
  padding: 0 15px;
}
.jyDP5Gio tr.IQwPJZdE .YNdyiHPm .RVgcWr2O td:not(:first-child) {
  font-weight: bold;
}
.jyDP5Gio tr.IQwPJZdE .YNdyiHPm .RVgcWr2O td:nth-child(n + 3) {
  border-left: 1px solid black;
}
.jyDP5Gio tr.IQwPJZdE .YNdyiHPm .coTWq3Qr {
  margin-left: 10px;
}
.jyDP5Gio tr.IQwPJZdE .YNdyiHPm .coTWq3Qr > * {
  margin: 0 2px;
  vertical-align: middle;
  color: #e5524d;
}
.jyDP5Gio tr.IQwPJZdE .LHLj47Dl {
  text-align: center;
}
.jyDP5Gio tr.IQwPJZdE .IiyMN8rH svg {
  width: 16px;
  height: 16px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi {
  padding: 10px 20px 30px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .KJ3k6m9m {
  font-size: 0.8em;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .yNr6teft {
  margin: 10px 0;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu {
  max-width: 100%;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd {
  width: unset;
  max-width: unset;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd thead td {
  font-size: 0.8em;
  font-weight: bold;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd thead td.DomF3meo, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd thead td .lrEqxiP4 {
  text-align: center;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td {
  border-top: 1px solid #c4c6c8;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.DomF3meo {
  text-align: center;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.sTZCjVlm {
  width: 100px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.jgc7IyrQ {
  width: 250px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td div.CrLguoKv {
  font-size: 0.8em;
  color: #5a5b5d;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.DomF3meo {
  width: 118.4px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.OXCRHAMK, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.olfLLtWr, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.nzZOSmTW, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.q5qF3lmy, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.lrEqxiP4 {
  width: 170px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.OXCRHAMK input, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.olfLLtWr input, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.nzZOSmTW input, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.q5qF3lmy input, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.lrEqxiP4 input {
  text-align: right;
  box-sizing: border-box;
  min-width: 50px;
  padding: 0 5px 1px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.OXCRHAMK, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.olfLLtWr, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.nzZOSmTW, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.q5qF3lmy, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.sRvt_mTQ, .jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.Rd3IuHCr {
  text-align: right;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td.sRvt_mTQ {
  width: 50px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd tbody tr td .Mx6paQSW:not(:first-child) {
  display: block;
  margin-top: 5px;
}
.jyDP5Gio .qWREr9yf .s1agSvQi .OWmBvuTu table.AdzKW1Bd td {
  padding: 5px 15px;
  font-size: 0.9em;
}
.jyDP5Gio .TlVQh7lZ {
  padding: 10px 0;
  padding-left: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.jyDP5Gio .TlVQh7lZ:hover, .jyDP5Gio .TlVQh7lZ:focus {
  background: white;
}
.jyDP5Gio .TlVQh7lZ svg {
  width: 16px;
  height: 16px;
  vertical-align: top;
}
.jyDP5Gio .TlVQh7lZ .nQohwfYe {
  margin-left: 5px;
}
.jyDP5Gio .KQCnFn0B {
  padding: 0 40px 0 100px;
}
.jyDP5Gio .GznHMVoJ {
  margin: 25px 0;
}
.jyDP5Gio .GznHMVoJ:last-child {
  margin-bottom: 0;
}
.jyDP5Gio .GRQuyxd0 {
  overflow-x: auto;
  width: 100%;
}
.WH64PHOD {
  margin-bottom: 40px;
}
.ifNosYI7 {
  margin-top: 25px;
  padding: 20px;
}
.ytzx8MPX, .sFWS8VIK, .JIeeQ57G, .XvZNG7XW {
  display: inline-block;
  width: calc(50% - 20px);
  margin: 0px 10px 20px;
  vertical-align: top;
  box-sizing: border-box;
}
.ytzx8MPX > div, .sFWS8VIK > div, .JIeeQ57G > div, .XvZNG7XW > div {
  width: 100%;
}
.ytzx8MPX > div:after, .sFWS8VIK > div:after, .JIeeQ57G > div:after, .XvZNG7XW > div:after {
  background-color: #e5514c;
}
@media (max-width: 639px) {
  .ytzx8MPX, .sFWS8VIK, .JIeeQ57G, .XvZNG7XW {
    width: 100%;
    margin: 0px 0px 20px;
  }
}
@media (min-width: 1600px) {
  .ytzx8MPX, .sFWS8VIK, .JIeeQ57G, .XvZNG7XW {
    width: calc(25% - 20px);
  }
}
.ytzx8MPX.C5nWConQ, .sFWS8VIK.C5nWConQ, .JIeeQ57G.C5nWConQ, .XvZNG7XW.C5nWConQ {
  width: calc(100% - 20px);
}
@media (max-width: 639px) {
  .ytzx8MPX.C5nWConQ, .sFWS8VIK.C5nWConQ, .JIeeQ57G.C5nWConQ, .XvZNG7XW.C5nWConQ {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .ytzx8MPX.C5nWConQ, .sFWS8VIK.C5nWConQ, .JIeeQ57G.C5nWConQ, .XvZNG7XW.C5nWConQ {
    width: calc(50% - 20px);
  }
}
.sFWS8VIK .fr0tLq5v {
  background-color: rgba(0, 0, 0, 0.1);
}
.sFWS8VIK .fr0tLq5v.DFwvjAD5 {
  animation: acceptAnimation 1s ease-in-out infinite alternate;
}
.sFWS8VIK .fr0tLq5v.Tq7d8Im8 {
  animation: rejectAnimation 1s ease-in-out infinite alternate;
}
.sFWS8VIK .fr0tLq5v .nTIhyAR3 {
  cursor: pointer;
}
.sFWS8VIK .fr0tLq5v .nTIhyAR3.W80_Wpym {
  height: 160px;
  background-position: 50% 50%;
  background-size: cover;
}
.sFWS8VIK .fr0tLq5v .SSuSpDat {
  display: inline-block;
}
.sFWS8VIK .fr0tLq5v .Kfajx44x {
  float: right;
  justify-content: flex-end;
  padding: 12px 12px;
}
.JIeeQ57G {
  margin: 0px 10px 20px;
  text-align: left;
}
.JIeeQ57G .Select {
  font-family: 'Minirol Head', 'Open Sans';
  margin-top: 14px;
  cursor: text;
  color: black;
}
.JIeeQ57G .Select .Select-control {
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 0px;
  background: transparent;
  box-shadow: none;
  cursor: text;
  color: black;
}
.JIeeQ57G .Select .Select-control .Select-value {
  padding: 0px;
}
.JIeeQ57G .Select .Select-control .Select-value .Select-value-label {
  color: black !important;
}
.JIeeQ57G .Select .Select-control .Select-input {
  padding: 0px;
}
.JIeeQ57G .Select .Select-control .Select-input input {
  color: black !important;
}
.JIeeQ57G .Select:after {
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  content: "";
  position: absolute;
  transform: scaleX(0);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  background-color: #e5514c;
}
.JIeeQ57G .Select .Select-menu-outer {
  z-index: 150;
  border: none;
  border-radius: 0px;
}
.JIeeQ57G .Select .Select-menu-outer .Select-menu {
  border-radius: 0px;
}
.JIeeQ57G .Select .Select-menu-outer .Select-menu .Select-option {
  border-radius: 0px;
}
.JIeeQ57G .Select .Select-menu-outer .Select-menu .Select-option.is-focused {
  background-color: #e5514c;
  color: black;
}
.qv2cUz3e .PgsV9YXS {
  margin-right: 8px;
}
.lFTAjCSu {
  margin-left: 0px;
}
.KfL9koPX {
  text-align: right;
  padding: 20px;
}
@keyframes wCMDG_iP {
  from {
    box-shadow: 0 0 10px white;
  }
  to {
    box-shadow: 0 0 10px white, 0 0 30px white;
  }
}
@keyframes Yyb5d_sP {
  from {
    box-shadow: 0 0 10px red;
  }
  to {
    box-shadow: 0 0 10px red, 0 0 30px red;
  }
}
.yi4L2njT .Kfajx44x {
  margin: 10px -10px -5px;
}
.yi4L2njT .Kfajx44x > * {
  margin: 5px 10px;
}
.yi4L2njT .KLHftzUc {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.apGQ08la {
  padding: 12px;
  margin-top: 25px;
}
.apGQ08la .oWZgCdvQ {
  color: #e5514c;
  margin: 0px 0px 15px;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 32px;
}
.apGQ08la .SIG9wfOJ {
  position: relative;
}
.apGQ08la .k5cNzjkP, .apGQ08la .imiVfZ4r {
  margin: 3px 0px;
}
.apGQ08la .A6GmjqWc {
  display: inline-block;
  color: #e5514c;
  font-weight: 600;
  font-size: 110%;
  margin: 10px 0px;
}
.apGQ08la .nTIhyAR3 {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.apGQ08la .lqMn3t6a {
  margin: 15px 0;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy.IS2gbjWS {
  position: relative;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .Td975ZbI {
  display: flex;
  transition: all 0.3s ease;
  border-bottom: 1.5px solid black;
  padding: 25px 0 8px;
  cursor: pointer;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .Td975ZbI.ufbkbqns {
  border-color: #e5514c;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .Td975ZbI.ntN6FKjs {
  cursor: not-allowed;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .Td975ZbI .G9HmRgcQ {
  width: 40%;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .Td975ZbI .fBhDQzCc {
  width: 50%;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .Td975ZbI ._GI3xPrn {
  margin: 0 10px;
}
.apGQ08la .lqMn3t6a .U7Fb9pRy .nSFkMPJa {
  color: #e5514c;
  font-size: 0.8em;
  padding-top: 1px;
}
.apGQ08la .J80AqgTc {
  text-align: left;
}
.apGQ08la .J80AqgTc .iz44Lvxn {
  color: #777;
  margin: 0px 0px 4px;
  font-size: 90%;
}
.apGQ08la .J80AqgTc .SWU5GyhZ {
  padding: 8px 40px;
  text-transform: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0px 0px 10px auto;
  width: 160px;
  max-width: 100%;
}
.apGQ08la .J80AqgTc .SWU5GyhZ .DKJGi2cF {
  margin-right: -32px;
  margin-left: 22px;
}
.apGQ08la .SoTGVmVB {
  text-align: right;
}
.apGQ08la .SoTGVmVB .iz44Lvxn {
  color: #777;
  margin: 0px 0px 4px;
  font-size: 90%;
}
.apGQ08la .SoTGVmVB .SWU5GyhZ {
  padding: 8px 40px;
  text-transform: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0px 0px 10px auto;
  width: 160px;
  max-width: 100%;
}
.apGQ08la .SoTGVmVB .SWU5GyhZ .DKJGi2cF {
  margin-right: -32px;
  margin-left: 22px;
}
.apGQ08la .WH64PHOD {
  margin-top: 50px;
}
.apGQ08la h2 {
  font-size: 20px;
  font-weight: 500;
}
.apGQ08la .udcszTYJ {
  border-radius: 0;
  max-height: 400px;
  overflow-y: auto;
}
.apGQ08la .udcszTYJ .IQwPJZdE {
  cursor: pointer;
  padding: 10px 35px;
  border-bottom: 1px solid #f1f1f2;
  transition: background 0.3s ease;
}
.apGQ08la .udcszTYJ .IQwPJZdE:hover {
  background: rgba(229, 81, 76, 0.8);
  color: white;
}
.apGQ08la .udcszTYJ .IQwPJZdE:first-child {
  padding-top: 20px;
}
.apGQ08la .udcszTYJ .IQwPJZdE:last-child {
  padding-bottom: 20px;
  border-bottom: none;
}
.apGQ08la .sLr3i1a0 {
  position: relative;
  background: #f1f1f2;
  padding: 5px 20px;
}
.apGQ08la .sLr3i1a0 .Ft4BP9rN {
  position: absolute;
  top: 0;
  right: 0;
}
.apGQ08la .sLr3i1a0 .ASXFLSWf {
  margin: 10px 0;
  min-width: 800px;
  max-width: 100%;
  overflow-y: auto;
  max-height: 240px;
}
.apGQ08la .sLr3i1a0 .ASXFLSWf .QTwFMRgU {
  display: flex;
  cursor: pointer;
}
.apGQ08la .sLr3i1a0 .ASXFLSWf .QTwFMRgU .OA9V6oTA {
  padding: 0;
}
.apGQ08la .sLr3i1a0 .ASXFLSWf .QTwFMRgU .DDXMp7_5 {
  min-width: 25px;
  width: 25px;
  height: 25px;
  margin: 0 10px;
}
.apGQ08la .sLr3i1a0 .ASXFLSWf .QTwFMRgU .DDXMp7_5:not(img) {
  border: 1px solid #f1f1f2;
}
.apGQ08la .sLr3i1a0 .ASXFLSWf .QTwFMRgU .Ozboq3GO {
  font-size: 0.8em;
}
.lcY10wQh .NwuA6_kh {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.lcY10wQh .NwuA6_kh .wRKAoifc {
  color: #e5524d;
}
.lcY10wQh .NwuA6_kh .uNxqfUmi {
  display: inline-block;
  vertical-align: middle;
}
.lcY10wQh .NwuA6_kh .ykNkAtUu {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 10px;
}
.lcY10wQh .NwuA6_kh .ykNkAtUu .ZdtUVmAF {
  margin-right: 10px;
}
.lcY10wQh .NwuA6_kh .ykNkAtUu .kzZEqrUP {
  width: 200px;
  font-weight: bold;
}
.lcY10wQh .kDPYVpoe {
  background: #f6f6f6;
  margin: 0 -10px;
}
@media (min-width: 1280px) {
  .lcY10wQh .kDPYVpoe {
    margin: 0 -20px;
  }
}
.lcY10wQh .WPc5ZiWR {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid black;
}
.lcY10wQh .WPc5ZiWR button, .lcY10wQh .WPc5ZiWR .ZdtUVmAF {
  color: black;
  cursor: pointer;
}
.lcY10wQh .WPc5ZiWR .ZdtUVmAF {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}
.lcY10wQh .WPc5ZiWR .c4378GP1 {
  margin: 0 20px;
  color: #e5524d;
}
.lcY10wQh .WPc5ZiWR .c4378GP1 .Fp_0xsVt {
  margin: 0 2px;
}
.lcY10wQh .WPc5ZiWR .c4378GP1 .Fp_0xsVt.ImdoH6IN {
  cursor: pointer;
  text-decoration: underline;
}
.lcY10wQh .WPc5ZiWR .c4378GP1 .Fp_0xsVt:not(.ImdoH6IN) {
  cursor: not-allowed;
}
.lcY10wQh .WPc5ZiWR .c4378GP1.ntN6FKjs {
  color: #c4c6c8;
}
.lcY10wQh .s1agSvQi {
  padding: 10px 28px;
}
.lcY10wQh .fDLRbOat {
  padding: 20px 48px;
}
.lcY10wQh .yqerkFBv {
  padding: 20px;
  background-color: #fff;
}
.lcY10wQh .yqerkFBv .Y5wLlcab {
  display: flex;
  align-items: baseline;
}
.lcY10wQh .yqerkFBv .Y5wLlcab .ZdtUVmAF {
  margin-right: 5px;
  font-size: 0.8em;
}
.G42tVV5Z {
  width: 600px;
  height: 95vh;
  max-height: none !important;
  background-color: #ebebec !important;
}
.kgoPnKnB .oWZgCdvQ, .kgoPnKnB .SSuSpDat, .kgoPnKnB .Kfajx44x {
  padding-left: 40px;
  padding-right: 40px;
}
.Tq4D3vSi .GL51U3xo {
  border-radius: 50px;
  padding: 6px;
}
.dqbAG0vU a, .dqbAG0vU .AtlzaleT, .dqbAG0vU .ntN6FKjs {
  color: #1c3f94;
  font-size: 12px;
  font-weight: 600;
}
.dqbAG0vU .AtlzaleT {
  margin: 0 6px;
}
.fKxIGVkF .G7KT9yS0, .jlzIEXSt .G7KT9yS0 {
  margin: 20px 0 0 auto;
}
.fKxIGVkF .G7KT9yS0 table, .jlzIEXSt .G7KT9yS0 table {
  width: 100%;
}
.fKxIGVkF .G7KT9yS0 table td, .jlzIEXSt .G7KT9yS0 table td {
  padding: 5px 20px;
}
.fKxIGVkF .GznHMVoJ, .jlzIEXSt .GznHMVoJ {
  margin-bottom: 30px;
}
.fKxIGVkF .NYqeU_uj, .jlzIEXSt .NYqeU_uj {
  margin-top: 40px;
}
.fKxIGVkF h6, .jlzIEXSt h6 {
  margin-bottom: 10px;
}
.fKxIGVkF .dQODxScE .SrIcDbyp, .jlzIEXSt .dQODxScE .SrIcDbyp {
  padding-right: 30px;
}
.fKxIGVkF .dQODxScE .DaVY9aas, .jlzIEXSt .dQODxScE .DaVY9aas {
  padding-left: 30px;
}
.fKxIGVkF .KZwwNniZ, .jlzIEXSt .KZwwNniZ {
  margin: 20px;
}
.E3etcCEc {
  position: relative;
  z-index: 40;
  background: #ffffff;
  display: inline-flex;
  width: 100%;
  box-shadow: 0 4px 6px -7px #b7b7b8;
}
.E3etcCEc .IQwPJZdE {
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  transition: 0.3s all ease;
  font-weight: 500;
}
.E3etcCEc .IQwPJZdE.ntN6FKjs {
  cursor: not-allowed;
  background: #ebebec;
}
.E3etcCEc .IQwPJZdE:not(.ntN6FKjs):hover {
  background: #e5514c;
  color: white;
}
.E3etcCEc .IQwPJZdE:not(.ntN6FKjs):hover .gDajuEhi {
  color: white;
}
.E3etcCEc .IQwPJZdE.SuhFotDP {
  background: #e5514c;
  color: white;
}
.E3etcCEc .IQwPJZdE.SuhFotDP .gDajuEhi {
  color: white;
}
.E3etcCEc .IQwPJZdE .gDajuEhi {
  margin-left: 5px;
  margin-bottom: -6px;
  color: #e5514c;
  transition: color 0.3s ease;
}
.fVEh2WKi {
  font-family: "Minirol head";
}
.fVEh2WKi .EfAjdW4P {
  font-size: 38px;
  font-weight: lighter;
}
.fVEh2WKi .xcjyshSX {
  font-size: 38px;
  font-weight: 500;
  line-height: 1em;
}
.fVEh2WKi .KcJ8qenn {
  font-weight: 500;
  margin-top: 20px;
}
.fVEh2WKi .XWKKmTYX {
  width: 100%;
  height: 100%;
  max-width: 75vh;
  max-height: 75vh;
}
.fVEh2WKi .Nq7nemme {
  max-width: 100%;
  max-height: 100%;
}
.akKg0si_ .Q3i5Y8l4 {
  background: #f6f6f6;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .SlZwB7m9 {
  margin: 20px 0;
  font-size: 37px;
  font-weight: 500;
  line-height: 1em;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .QkQdFYI8 {
  margin: 10px 0;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .QkQdFYI8 .nQohwfYe {
  font-size: 14px;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .QkQdFYI8 .kzZEqrUP {
  font-size: 20px;
  font-weight: 500;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .OIkTS5AK {
  margin: 14px 0;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .OIkTS5AK .nQohwfYe {
  font-size: 14px;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .OIkTS5AK .kzZEqrUP {
  font-size: 16px;
  vertical-align: bottom;
  font-weight: 500;
  color: gray;
}
.akKg0si_ .Q3i5Y8l4 .pDbci6v4 .OIkTS5AK .kzZEqrUP .A6GmjqWc {
  font-size: 34px;
  color: #e5524d;
}
.akKg0si_ .Q3i5Y8l4 .HlxUXNgI .nQohwfYe {
  display: flex;
  flex-direction: column;
}
.akKg0si_ .Q3i5Y8l4 .HlxUXNgI .nQohwfYe .gABhzwGn {
  margin: 2px 0;
  display: inline-block;
  text-decoration: none;
  color: #5a5b5d;
}
.akKg0si_ .Q3i5Y8l4 .HlxUXNgI .nQohwfYe .gABhzwGn .PgsV9YXS {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: sub;
}
.akKg0si_ .Jm4u1uy3 {
  width: 100%;
}
.akKg0si_ .cqS1UgC0 {
  text-align: center;
}
.akKg0si_ .cqS1UgC0 .gABhzwGn {
  margin: 20px 0;
}
.akKg0si_ .cqS1UgC0 .gABhzwGn button {
  font-family: "Minirol Head";
  font-weight: 500;
}
.akKg0si_ .cqS1UgC0 .gABhzwGn:last-child button {
  color: #5a5b5d;
}
.akKg0si_ table.NhIpZpB2 {
  width: 100%;
  border-collapse: collapse;
}
.akKg0si_ table.NhIpZpB2 tr td {
  padding: 10px;
}
.akKg0si_ table.NhIpZpB2 tr td.bsWnLFv6 {
  font-weight: bold;
}
.akKg0si_ table.NhIpZpB2 tr td.QpAldBxu {
  font-size: 30px;
  vertical-align: top;
}
.akKg0si_ table.NhIpZpB2 tr.nSWc5ogE td {
  border-top: 2px solid #c4c6c8;
}
.akKg0si_ table.NhIpZpB2 .DDXMp7_5, .akKg0si_ table.NhIpZpB2 .B5TLcd2Z {
  width: 40px;
  height: 40px;
}
.akKg0si_ table.NhIpZpB2 .DDXMp7_5 {
  border: 1px solid #000000;
  border-radius: 50%;
}
.akKg0si_ table.NhIpZpB2 .B5TLcd2Z {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.akKg0si_ .yqerkFBv {
  padding: 10px 0;
  background: #ebebec;
}
.SdUNzAFi .qjvKbxrF {
  display: flex;
  justify-content: center;
}
.SdUNzAFi .qjvKbxrF .NF0QJ6J0 {
  padding: 0 25px;
  text-decoration: none !important;
  font-size: 20px !important;
  color: #c4c6c8;
  font-weight: 500 !important;
  line-height: 0.96;
}
.SdUNzAFi .qjvKbxrF .NF0QJ6J0.SuhFotDP {
  color: black;
}
.SdUNzAFi .Kfajx44x {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.SdUNzAFi .Kfajx44x button {
  margin: 0 10px 10px;
}
.SdUNzAFi .Kfajx44x button:first-child {
  margin-left: 0;
}
.SdUNzAFi .Kfajx44x button:last-child {
  margin-right: 0;
}
.KBvV8LcM {
  width: 600px;
  height: 95%;
  max-height: none !important;
  background-color: #ebebec !important;
  margin: 48px 12px;
}
@media (min-width: 600px) {
  .KBvV8LcM {
    margin: 48px;
  }
}
.IXzLbz6E {
  margin: 0 10px 0 -5px;
}
.IXzLbz6E .oJaFnBGk {
  display: inline-flex;
  flex-wrap: wrap;
}
.IXzLbz6E .ZdtUVmAF, .IXzLbz6E .NF0QJ6J0 {
  display: inline-block;
  margin: 5px;
  font-size: 14px;
  color: black;
  border: none;
  background: none;
  font-family: 'Minirol Head', 'Open Sans';
  padding: 0;
}
.IXzLbz6E .NF0QJ6J0 {
  cursor: pointer;
  font-weight: 400;
  transition: color 0.25s;
}
.IXzLbz6E .NF0QJ6J0:hover {
  color: #e5514c;
}
.IXzLbz6E .NF0QJ6J0.SuhFotDP {
  cursor: default;
  font-weight: 600;
}
.IXzLbz6E .NF0QJ6J0.SuhFotDP:hover {
  color: inherit;
}
.ZKhazX38 {
  display: inline-flex;
  text-align: center;
}
.ZKhazX38 .str6H1iA:not(:disabled) {
  background-color: transparent;
  color: #000000;
}
.ZKhazX38 .str6H1iA:not(:disabled):hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.ZKhazX38 .AgJXb7lQ {
  display: inline-flex;
}
.ZKhazX38 .AgJXb7lQ .zI6DVUTp {
  width: 40px;
  height: 40px;
  margin: 4px;
  min-width: auto;
  border-radius: 0;
  background: transparent;
  color: #000000;
}
.ZKhazX38 .AgJXb7lQ .zI6DVUTp:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.ZKhazX38 .AgJXb7lQ .zI6DVUTp.SuhFotDP {
  background: gray;
  color: white;
}
.JINttHNK {
  z-index: 30;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
}
.JINttHNK.RJrxbwR_ {
  background: rgba(128, 128, 128, 0.25);
}
.kgoRgDlJ {
  z-index: 40;
  position: absolute;
}
.zm_5NZ2Z .aD5neNYR {
  position: sticky;
}
.PO5NGdT2 {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #c4c6c8;
}
.PO5NGdT2::after {
  position: absolute;
  content: "";
  background: #e5524d;
  transition: all 0.1s ease;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
}
.PO5NGdT2.w3k_F0og::after {
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
}
.PO5NGdT2.mIUK5DGf {
  width: 18px;
  height: 18px;
}
.zhuR4lzT {
  width: 22px;
  height: 22px;
  position: relative;
  border: 2px solid #c4c6c8;
  border-radius: 50%;
}
.zhuR4lzT::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  transition: all 0.1s ease;
  background: #e5524d;
  border-radius: 50%;
}
.zhuR4lzT.w3k_F0og::after {
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
}
.zhuR4lzT.mIUK5DGf {
  width: 18px;
  height: 18px;
}
.vY9i0cX2 {
  color: #5a5b5d;
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.UYbq7ehx {
  display: inline-block;
  position: relative;
  width: 140px;
  height: 36px;
  border: 1px solid #b7b7b8;
}
.UYbq7ehx .k0tu2gsC {
  position: absolute;
  left: 36px;
  right: 36px;
}
.UYbq7ehx .k0tu2gsC input {
  text-align: center;
  font-size: 1em;
}
.UYbq7ehx button {
  border: 1px solid #b7b7b8;
  color: #000;
  display: block;
  min-width: inherit;
  width: 38px;
  height: 38px;
  line-height: 36px;
  margin: -1px;
  padding: 0;
  position: absolute;
  top: 0;
  border-radius: 0;
}
.UYbq7ehx button:hover {
  background-color: #e5514c;
  color: #fff;
}
.UYbq7ehx button:first-child {
  left: 0;
}
.UYbq7ehx button:last-child {
  right: 0;
}
.bvKVd_j3 {
  position: relative;
  vertical-align: bottom;
}
.bvKVd_j3 .pay9HW4F {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.bvKVd_j3.Du9cQ1cf {
  padding: 0;
}
.bvKVd_j3.Du9cQ1cf svg {
  height: 42px;
  width: 42px;
}
.bvKVd_j3 .Cxm4ptAD {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  background: #e5514c;
  color: white;
  top: 5%;
  right: 5%;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1.6em;
}
.nMEH3LR0 {
  width: 100%;
  display: inline-flex;
  overflow-x: auto;
}
.nMEH3LR0 .bmVObF4J {
  cursor: pointer;
  transition: 0.3s all ease;
  padding: 5px;
  margin: 0 10px;
}
.nMEH3LR0 .bmVObF4J.SuhFotDP {
  box-shadow: inset 0 0 0 5px #e5514c;
}
.nMEH3LR0 .bmVObF4J img {
  height: 100px;
}
.JGQ0HfxY {
  position: relative;
}
.JGQ0HfxY .RFRH_PMY {
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  z-index: 39;
  max-height: 50vh;
  overflow-y: auto;
  background: white;
}
.JGQ0HfxY .RFRH_PMY .SuhFotDP * {
  font-weight: bold;
}
.Ts0KbBpg {
  display: flex;
  justify-content: space-between;
}
.Ts0KbBpg .tyyzYety {
  padding: 0px 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  max-width: 6%;
}
.Ts0KbBpg .tyyzYety svg {
  width: 65px;
  height: 65px;
  max-width: 100%;
  max-height: 100%;
  transition: color 0.3s ease;
}
.Ts0KbBpg .tyyzYety:hover svg {
  color: #e5524d;
}
.Ts0KbBpg .BHmqZmmJ {
  position: relative;
  flex-grow: 1;
}
@media (min-width: 960px) {
  .Ts0KbBpg .BHmqZmmJ {
    max-width: 85%;
  }
}
@media (min-width: 1280px) {
  .Ts0KbBpg .BHmqZmmJ {
    max-width: 70%;
  }
}
.Ts0KbBpg .BHmqZmmJ .ICUwp0Nk {
  position: absolute;
  left: 50%;
}
.Ts0KbBpg .BHmqZmmJ .ICUwp0Nk .nTIhyAR3 {
  position: relative;
  left: -50%;
  transition: all 0.5s ease;
}
.Ts0KbBpg .BHmqZmmJ .ICUwp0Nk .nTIhyAR3:not(.SuhFotDP) {
  cursor: pointer;
}
.FnAXu1cD {
  display: flex;
  overflow-x: auto;
}
@media (min-width: 750px) {
  .FnAXu1cD {
    justify-content: center;
  }
}
.FnAXu1cD .q0cBm8JA {
  cursor: pointer;
  margin: 0 20px;
  width: 84px;
}
.FnAXu1cD .q0cBm8JA .ICUwp0Nk {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.FnAXu1cD .q0cBm8JA .ICUwp0Nk img {
  width: 80px;
  height: 80px;
}
.FnAXu1cD .q0cBm8JA .ZdtUVmAF {
  text-align: center;
  line-height: 1.3em;
  padding-top: 12px;
}
.FnAXu1cD .q0cBm8JA.SuhFotDP .ICUwp0Nk {
  border-color: #e5524d;
}
.mxIimMXb .kAeP9eDW {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}
.or8Hr35d > div:nth-child(2) {
  min-width: 320px;
  padding: 10px;
}
.or8Hr35d .NqfOtSCa {
  min-height: 50px;
}
.n7WQKn8i {
  vertical-align: bottom;
  width: 160px;
  height: 44px;
  border: 1px solid #888;
  text-align: center;
  position: relative;
}
.n7WQKn8i .Opx7qM6l {
  width: 44px;
  height: 44px;
  min-width: 0px;
  background-color: #888;
  color: white;
  text-align: center;
  vertical-align: bottom;
  box-shadow: none;
  position: absolute;
  top: 0px;
}
.n7WQKn8i .Opx7qM6l:first-child {
  left: 0px;
}
.n7WQKn8i .Opx7qM6l:last-child {
  right: 0px;
}
.n7WQKn8i .kzZEqrUP, .n7WQKn8i .vWP95VcL {
  line-height: 44px;
  color: black;
}
.VKqktmiI {
  text-align: center;
  height: 100%;
}
.VKqktmiI .G0fW0Okt {
  color: #e5524d;
}
.wMng1UBX > div:after {
  border-bottom: 2px solid #e5514c;
}
.hSRtUXxi {
  margin-left: -5px;
  margin-right: 10px;
}
.DKJGi2cF {
  margin-left: 10px;
  margin-right: -5px;
}
.C3lRvJpT {
  display: flex;
}
.EPrIBw2P {
  flex-grow: 1;
}
.H6FlFe0I {
  width: 100%;
}
.Z1sFh5z0 {
  vertical-align: middle;
}
.Z1sFh5z0::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.klkkH5Ba {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.xj474Tt6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.WNj1EZ33 {
  box-shadow: none !important;
}
.F8BKtKRF {
  display: flex;
  justify-content: flex-end;
}
.F8BKtKRF > * {
  margin: 0 10px !important;
}
.F8BKtKRF > *:last-child {
  margin-right: 0 !important;
}
a.t6QlqwQ0 {
  text-decoration: inherit;
  color: inherit;
}
.lptij42t {
  max-width: 95%;
  width: 500px;
  font-family: Roboto;
}
.rdYZ9FiP {
  color: #e5514c;
}
.onR7cy49 {
  text-align: center;
}
.onR7cy49 .qbG1eTtH {
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
  padding: 10px;
}
.wNPjTceM {
  z-index: 1502;
}
.wNPjTceM .aEC78nBd {
  background: #e5514c;
  color: white;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.wNPjTceM .aEC78nBd .aoR1NKeR {
  cursor: row-resize;
}
.wNPjTceM .aEC78nBd .XEYI3M3V {
  padding: 0px 40px;
}
.wNPjTceM .aEC78nBd .StjDT4Ke {
  z-index: 1500;
}
.sBrfWt6j ._3tQVRqs {
  cursor: pointer;
  width: 200px;
  height: 200px;
  border-width: 5px;
  border-color: #5d5d5d;
  border-style: dashed;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
}
.sBrfWt6j ._3tQVRqs .fr0tLq5v {
  overflow: hidden;
  height: 100%;
  box-shadow: none;
}
.sBrfWt6j ._3tQVRqs .fr0tLq5v.DFwvjAD5 {
  animation: acceptAnimation 1s ease-in-out infinite alternate;
}
.sBrfWt6j ._3tQVRqs .fr0tLq5v.Tq7d8Im8 {
  animation: rejectAnimation 1s ease-in-out infinite alternate;
}
.sBrfWt6j ._3tQVRqs .fr0tLq5v .SSuSpDat {
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  padding-top: 52px;
  font-size: 24px;
  line-height: 32px;
  color: #aaa;
  font-family: 'Minirol Head', 'Open Sans';
}
.sBrfWt6j ._3tQVRqs .fr0tLq5v .Kfajx44x {
  float: right;
  justify-content: flex-end;
}
.FozvxEhY {
  width: 210px;
  height: 210px;
  margin: 0px 10px 10px 0px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0, 0.5, 0, 1) 0s;
  cursor: move;
  vertical-align: middle;
}
.FozvxEhY.DskR9LS6 {
  z-index: 1500;
  transition: none;
}
.FozvxEhY .nTIhyAR3 {
  box-sizing: border-box;
  height: calc(100% - 56px);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 100%;
}
.FozvxEhY .SSuSpDat .RZyQ72ka {
  width: calc(100% - 30px);
}
.FozvxEhY .Kfajx44x {
  float: right;
  padding: 0px;
  height: 40px;
}
.FozvxEhY .Kfajx44x .ifcf_HyM, .FozvxEhY .Kfajx44x .QOf6RDR2 {
  margin: 0px;
  width: 40px;
  height: 40px;
}
.FozvxEhY .Kfajx44x .QOf6RDR2 {
  color: #ff2020;
}
.FozvxEhY.T7DfE5nz {
  width: 100%;
  height: 250px;
}
.FozvxEhY.T7DfE5nz .SSuSpDat {
  padding-top: 0px;
}
.FozvxEhY.T7DfE5nz .Kfajx44x {
  height: 56px;
}
table.hfjx7Uv6 {
  width: 100%;
  font-size: 15px;
  border-spacing: 0;
  margin: 8px 0;
}
table.hfjx7Uv6 th, table.hfjx7Uv6 td {
  padding: 10px 15px;
}
table.hfjx7Uv6 thead tr td, table.hfjx7Uv6 thead tr th {
  font-weight: bold;
}
table.hfjx7Uv6 tbody tr:nth-child(2n + 1) {
  background: #f1f1f2;
}
table.uGYlkpKv tr td:first-child, table.uGYlkpKv tr th:first-child {
  font-weight: bold;
}
table.LjwhaSiw {
  width: 100%;
  margin: 8px 0;
}
table.LjwhaSiw thead td {
  font-weight: bold;
}
table.LjwhaSiw thead td:not(:first-child) {
  padding-left: 7.5px;
}
table.LjwhaSiw thead td:not(:last-child) {
  padding-right: 7.5px;
}
table.LjwhaSiw tbody tr:first-child td {
  padding-top: 15px;
  border-top: 1.5px solid #f1f1f2;
}
table.LjwhaSiw tbody tr:last-child td {
  padding-bottom: 15px;
  border-bottom: 1.5px solid #f1f1f2;
}
table.LjwhaSiw tbody tr td {
  padding: 5px 0;
}
table.LjwhaSiw tbody tr td:not(:first-child) {
  padding-left: 7.5px;
}
table.LjwhaSiw tbody tr td:not(:last-child) {
  padding-right: 7.5px;
}
table.LjwhaSiw td.YYbW1xDO {
  text-align: right;
}
table.LjwhaSiw td.vaXGy2lw {
  text-align: center;
}
table.LjwhaSiw td:last-child {
  padding-right: 0;
}
.u6jgVXYa {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 30px;
  justify-content: center;
}
@media (min-width: 480px) {
  .u6jgVXYa {
    justify-content: flex-start;
  }
}
.u6jgVXYa.Y5moDrKl {
  justify-content: center;
}
.u6jgVXYa.UEpS3Oti {
  justify-content: space-between;
}
.Tr1zLEbI {
  z-index: 100000 !important;
}

.CaN4Dq47 {
  margin-bottom: 20px;
}
.CaN4Dq47:last-child {
  margin-bottom: 0;
}

.j7ADjLo2 {
  position: relative;
}
.sIVJMnSR {
  display: block;
}
.sIVJMnSR.UyNklA1o {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
}
.C0V7Y1TC.UyNklA1o {
  padding-left: 20px;
}

.uI0_4ptQ {
  width: calc(100% + 40px);
  margin: 0 -20px 30px;
}
.EDwOA2nb {
  display: none;
}
@media (min-width: 960px) {
  .EDwOA2nb {
    display: table-row;
  }
}
.EDwOA2nb td {
  padding: 10px 15px;
  text-align: center;
}
.EDwOA2nb td:nth-of-type(2) {
  text-align: left;
}
.Uq9t83Ig {
  border-top: 1px solid #c4c6c8;
  font-size: 14px;
}
.Uq9t83Ig:last-of-type {
  border-bottom: 1px solid #c4c6c8;
}
.Uq9t83Ig td {
  padding: 25px 15px;
  text-align: center;
  vertical-align: top;
}
@media (min-width: 480px) {
  .Uq9t83Ig td {
    vertical-align: middle;
  }
}
.Uq9t83Ig td:first-of-type {
  padding-left: 20px;
}
.Uq9t83Ig td:last-of-type {
  padding-right: 20px;
}
.Uq9t83Ig td:nth-of-type(2) {
  text-align: left;
}
.Uq9t83Ig td.u16zGhvQ {
  vertical-align: top;
}
.fsiAjTQO {
  min-height: 55px;
  margin-top: 30px;
}
.fsiAjTQO:first-of-type {
  margin-top: 0;
}
.fsiAjTQO:last-of-type {
  min-height: unset;
}
.FO2aby1a {
  text-align: center;
}
.WFoglhW3 {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  position: relative;
}
@media (min-width: 960px) {
  .WFoglhW3 {
    height: 100px;
    width: 100px;
  }
}
.WFoglhW3.kcNM4Y26:hover .HA5B0DYi {
  color: white;
  top: 65%;
}
.HA5B0DYi {
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  background: #e5514c;
  color: transparent;
  text-align: center;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kcNM4Y26 {
  cursor: pointer;
}
.SmqNXbyl {
  margin-top: 15px;
}
.SJeTrI7t {
  font-size: 17px;
  display: inline-block;
  margin: 0;
  transition: color 0.25s;
}
.SJeTrI7t.kcNM4Y26:hover {
  color: #e5514c;
}
.D8tqqD9N {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.O6YWsLOe {
  color: #5a5b5d;
  line-height: 1.5;
}
.rc2SU361 {
  color: #5a5b5d;
  line-height: 1.5;
  font-size: 0.85em;
}
.XjhQXlR4 {
  display: inline-block;
}
.n1ZgdIUN {
  color: #5a5b5d;
  font-size: 0.85em;
  text-align: left;
  margin-bottom: 3px;
}
.Ttfekl6w {
  display: none;
}
@media (min-width: 960px) {
  .Ttfekl6w {
    display: table-cell;
  }
}
.FL7OsE2H {
  display: none;
}
@media (min-width: 480px) {
  .FL7OsE2H {
    display: table-cell;
  }
}
.D8s_v6y_ {
  display: block;
}
@media (min-width: 480px) {
  .D8s_v6y_ {
    display: none;
  }
}

.g9Agc7Sf {
  position: relative;
  background-color: #fff;
  border-radius: 50px;
  margin: 0 25px;
  padding: 10px 25px;
  box-sizing: border-box;
  height: 40px;
  margin: 15px 10px;
}
@media (min-width: 1024px) {
  .g9Agc7Sf {
    background-color: #ebebec;
    margin: 0;
  }
}
.eKLcv8y4 {
  background: #ebebec;
  box-sizing: border-box;
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 57px;
  opacity: 0;
  overflow: auto;
  transition: opacity 0.25s, height 0.25s;
}
@media (min-width: 1024px) {
  .eKLcv8y4 {
    background: none;
    height: auto;
    width: auto;
    position: relative;
    top: 0;
    overflow: visible;
    opacity: 1;
    margin-right: 20px;
  }
}
@media (max-width: 1023px) {
  .eKLcv8y4.AmKFn1EB {
    height: calc(100vh - 56px);
    opacity: 1;
  }
}
.Z9l135rN {
  background: none;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .Z9l135rN {
    background: #fff;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 100%;
    margin-top: 5px;
    right: 0;
    overflow: hidden;
    z-index: 130;
  }
}
.u14k0wSH {
  padding: 10px 40px;
  background: #f1f1f2;
  border-top: 1px solid #c4c6c8;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .u14k0wSH {
    border: 0;
  }
}
.aVDeG7iH {
  padding: 0 15px;
}
@media (min-width: 1024px) {
  .aVDeG7iH {
    padding: 10px 15px;
  }
}
.ppsGWI9F {
  margin-top: 5px;
}
.GtSccCzL {
  border-radius: 0;
  min-width: 30px;
  height: 56px;
  margin: 0 10px 0 -10px;
  padding: 10px;
  transition: background-color 0.25s;
}
@media (min-width: 1024px) {
  .GtSccCzL {
    display: none !important;
  }
}
.GtSccCzL svg {
  color: #e5514c;
  height: 30px;
  width: 30px;
}
.GtSccCzL.AmKFn1EB, .GtSccCzL.AmKFn1EB:hover {
  background-color: #e5514c;
}
.GtSccCzL.AmKFn1EB svg, .GtSccCzL.AmKFn1EB:hover svg {
  color: #fff;
}

.dD8ehIiW {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0;
}
.cAxkw8jq {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-end;
  margin: 20px 0 0 auto;
}
@media (min-width: 1024px) {
  .cAxkw8jq {
    margin-top: 0;
    flex-basis: auto;
  }
}
.Kc16Pmjc {
  margin: 0 25px 0 0;
}
.Use3ycm9 {
  color: inherit;
  text-decoration: none;
}
.gmsINAH_ {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.x3JP57Yt {
  color: #000;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s;
}
.x3JP57Yt:hover {
  color: #e5514c;
}
.BuqFGUXT {
  color: #5a5b5d;
  font-size: 14px;
  margin-top: 5px;
  max-width: 400px;
}
.mo7KbxJm {
  font-size: 14px;
  font-weight: 700;
}
.mo7KbxJm.T9o2bb5a {
  color: #5a5b5d;
  margin-top: 15px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .mo7KbxJm.T9o2bb5a {
    display: none;
  }
}
.mo7KbxJm.wUdbYf71 {
  display: none;
  padding-right: 40px;
}
@media (min-width: 480px) {
  .mo7KbxJm.wUdbYf71 {
    display: table-cell;
  }
}
.sZgcUBGG {
  margin: 0 -40px;
  overflow-x: visible;
}
@media (min-width: 1024px) {
  .sZgcUBGG {
    margin: 0 -10px;
  }
}
@media (min-width: 1280px) {
  .sZgcUBGG {
    margin: 0 -20px;
  }
}
.uvK4Jiaa {
  width: 100%;
}
.uvK4Jiaa .Use3ycm9 {
  border-top: 1px solid #c4c6c8;
  transition: background-color 0.25s;
}
.uvK4Jiaa .Use3ycm9:hover {
  background-color: #fff;
}
.uvK4Jiaa td {
  padding: 15px 10px;
}
.uvK4Jiaa td:first-of-type {
  padding-left: 40px;
}
.uvK4Jiaa td:last-of-type {
  padding-right: 40px;
  text-align: right;
}
.uvK4Jiaa .dvMoJItG {
  padding-right: 50px;
  cursor: pointer;
}
.uvK4Jiaa .dvMoJItG:last-of-type {
  text-align: left;
}
.uvK4Jiaa .gmsINAH_ {
  width: 80px;
  height: 80px;
  margin: -10px 10px -10px 0;
}
@media (min-width: 1400px) {
  .uvK4Jiaa .gmsINAH_ {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 960px) {
  .wuRETuYn .bPiyvjQY {
    width: 20%;
  }
}
.wuRETuYn .Use3ycm9 {
  border: 2px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  transition: border 0.25s;
}
.wuRETuYn .Use3ycm9:hover {
  border-color: #e5514c;
}
.wuRETuYn .gmsINAH_ {
  padding-top: 100%;
  margin-bottom: 15px;
}
.wuRETuYn .mo7KbxJm {
  padding-top: 20px;
  margin-top: auto;
}
.Z0piNu6K {
  display: none;
}
@media (min-width: 1024px) {
  .Z0piNu6K {
    display: table-cell;
  }
}

.aeLPISBW {
  height: 15px;
  width: 15px;
  color: black;
}

.iGM40aSV {
  margin: 0;
}
.GwP7Pi0p {
  cursor: pointer;
  display: flex;
  font-size: 14px;
  white-space: nowrap;
  margin: 5px 5px 5px 0;
}
.F4s2zvsm {
  margin-right: 4px;
  height: 16px;
  width: 16px;
}
.mQ3oitQf {
  position: relative;
}
.mQ3oitQf .aGaDp_wR {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  max-height: 50vh;
  overflow-x: visible;
  overflow-y: auto;
  z-index: 1;
}
.jJ4QiDEo {
  height: 13px;
  width: 13px;
  margin-right: 4px;
  vertical-align: bottom;
}
.TNX9qdmA {
  outline: none;
  border: none;
  font-weight: bold;
}

.mDILWPP1 {
  border-bottom: 1px solid #ebebec;
  box-sizing: border-box;
  color: #000;
  display: block;
  font-size: 14px;
  height: 50px;
  padding: 15px 20px;
  text-decoration: none;
  transition: background-color 0.25s;
}
.mDILWPP1:hover {
  background-color: #ebebec;
}
.mDILWPP1:last-child {
  border-bottom: 0;
}

.cXN5X4AC {
  position: fixed;
  top: 0px;
  z-index: 65;
}
.cXN5X4AC:not(.vsF7pRgr) {
  border-bottom: 1px solid #000000;
}
@media (min-width: 960px) {
  .cXN5X4AC {
    border-bottom: 1px solid #000000;
  }
}
.ft7IfT4Z {
  display: flex;
  align-items: flex-start;
  margin-right: auto;
  margin-left: 8px;
}
@media (min-width: 960px) {
  .ft7IfT4Z {
    margin-left: 1px;
  }
}
.MrB_YPzS {
  cursor: pointer;
  transition: opacity 0.25s;
  height: 27px;
  width: 80px;
  margin-top: 3px;
}
@media (min-width: 960px) {
  .MrB_YPzS {
    height: 33px;
    width: 98px;
    margin-top: 7px;
  }
}
.MrB_YPzS:hover {
  opacity: 0.75;
}
.qNlaJmQm {
  color: #e5514c;
  display: none;
  font-size: 36.5px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .qNlaJmQm {
    display: block;
    margin-left: 32px;
    line-height: 32px;
    padding-top: 3px;
    padding-bottom: 5px;
  }
}
.YReVGnIS {
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  height: 30px;
  margin-right: 20px;
  min-width: 30px;
  padding: 0;
  transition: background-color 0.25s;
}
@media (min-width: 1024px) {
  .YReVGnIS {
    background-color: #f6f6f6;
    height: 55px;
    min-width: 55px;
    padding: 10px 15px;
    margin-right: 5px;
  }
  .YReVGnIS:hover {
    background-color: #ebebec;
  }
}
.YReVGnIS:last-child {
  margin-right: 0;
}
.YReVGnIS svg {
  color: #e5514c;
  height: 30px;
  width: 30px;
}
@media (min-width: 1024px) {
  .YReVGnIS svg {
    color: #000000;
  }
}
.UbaKlZ6j {
  position: relative;
  transition: opacity 0.25s;
}
@media (min-width: 1024px) {
  .zdNPQUCX {
    background: #e5514c;
  }
  .zdNPQUCX svg {
    color: #fff;
  }
}
.zdNPQUCX:hover {
  opacity: 0.75;
}
@media (min-width: 1024px) {
  .zdNPQUCX:hover {
    background-color: #e5514c;
  }
}
.JWmxE8wo {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 19px;
  height: 19px;
  background: #e5514c;
  border-radius: 50%;
  line-height: 19px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  .JWmxE8wo {
    background: #fff;
    color: #e5514c;
    top: 5px;
    right: 5px;
  }
}
.dcOOrvTN {
  font-size: 12px;
}
.of7z5Hk9 {
  position: absolute;
  z-index: 71;
  top: 130%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-left: 1px solid #f1f1f2;
  border-top: 1px solid #f1f1f2;
  background: white;
  transform-origin: left top;
  transform: rotate(45deg);
}
.BKV7yFYJ {
  position: absolute;
  background: white;
  z-index: 70;
  top: calc(120% + 27px);
  right: -75%;
  width: 260px;
  padding: 15px 30px;
  border: 1px solid #f1f1f2;
  color: #e5514c;
  font-size: 15px;
}
.PhDl_1ls {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
@media (min-width: 960px) {
  .PhDl_1ls {
    margin-right: 0;
  }
}
.hBcN8XUv {
  color: #909193;
  font-size: 14px;
  margin-left: 10px;
}
@media (max-width: 1023px) {
  .hBcN8XUv {
    display: none;
  }
}
.WbCHwldG {
  color: #000;
}
.fwsyxzC9 {
  display: block;
}
@media (min-width: 960px) {
  .fwsyxzC9 {
    display: none;
  }
}

.eflyGd2a {
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  right: 25px;
}
.fI0kI8tB {
  border-top: 1px solid #909193;
  padding: 15px 20px;
}
.z0G8WPWj {
  color: #000;
  display: block;
  font-size: 14px;
  padding: 13px 20px;
  text-decoration: none;
  transition: background-color 0.25s;
}
.z0G8WPWj:hover {
  background-color: #f6f6f6;
}
.qzwwqqS2 {
  font-size: 14px;
  margin-bottom: 15px;
}
.C87FXYyJ {
  text-align: right;
  cursor: pointer;
}

.FUsikSLg {
  background-color: #e5514c;
  box-sizing: border-box;
  padding: 10px 0;
  position: fixed;
  top: 96px;
  left: 0;
  min-width: 100%;
  height: calc(100% - 65px);
  z-index: 50;
  transform: translateX(-100%);
  max-height: calc(100% - 96px);
  overflow: auto;
  transition: transform 0.25s, left 0.25s;
}
@media (min-width: 600px) {
  .FUsikSLg {
    top: 65px;
    left: 61px;
    max-height: calc(100% - 65px);
    min-width: 300px;
    max-width: 300px;
  }
}
@media (min-width: 1280px) {
  .FUsikSLg {
    position: static;
    margin-top: 65px;
    flex: 0 0 300px;
  }
}
@media (min-width: 600px) {
  .FUsikSLg.n7Eg105m {
    transform: none;
  }
}
.FUsikSLg.n7Eg105m.v13afR3p {
  transform: none;
}
.FUsikSLg.RZF4Ygoy {
  left: 0;
}
@media (min-width: 600px) {
  .FUsikSLg.RZF4Ygoy {
    left: 280px;
  }
}
.FUsikSLg.RZF4Ygoy.v13afR3p {
  left: 280px;
}
.VREXdfuS {
  margin: 0;
  padding: 0;
}
.sBv4TTFe {
  list-style: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
.n6E4gM4T {
  align-items: center;
  display: flex;
  cursor: pointer;
  padding: 15px 25px;
  transition: background-color 0.25s, color 0.25s;
  border: none;
  background: transparent;
  text-decoration: none;
  width: 100%;
  text-align: left;
}
.n6E4gM4T:hover {
  background-color: #cc4944;
  color: #fff;
}
.n6E4gM4T.n7Eg105m {
  color: #fff;
}
.n6E4gM4T.n7Eg105m .cmIkOJnh svg {
  transform: rotate(90deg);
}
.n6E4gM4T .Zy7NFRrZ {
  border-bottom: 1px solid #fff;
  margin-bottom: -3px;
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.n6E4gM4T.voOB1tFl {
  font-size: 14.5px;
}
.n6E4gM4T.voOB1tFl .Zy7NFRrZ {
  border-color: #000;
}
.n6E4gM4T:hover .Zy7NFRrZ, .n6E4gM4T.n7Eg105m .Zy7NFRrZ {
  border-color: #fff;
}
.E9rIaj8z {
  color: #fff;
  padding-left: 160px;
  text-transform: none;
}
.GXri1tIn {
  color: #fff;
  padding-left: 145px;
  text-transform: none;
}
.KlwWgkqZ {
  color: #fff;
  padding-left: 130px;
  text-transform: none;
}
.Ztpp06rZ {
  color: #fff;
  padding-left: 115px;
  text-transform: none;
}
.mpGmCgYp {
  color: #fff;
  padding-left: 100px;
  text-transform: none;
}
.Rb2nq8Br {
  color: #fff;
  padding-left: 85px;
  text-transform: none;
}
.yPU3vxf7 {
  color: #fff;
  padding-left: 70px;
  text-transform: none;
}
.AAqX_Qsn {
  color: #fff;
  padding-left: 55px;
  text-transform: none;
}
.G1sVABzs {
  color: #fff;
  padding-left: 40px;
  text-transform: none;
}
.voOB1tFl {
  color: #000;
  padding-left: 25px;
  text-transform: uppercase;
}
.cmIkOJnh {
  margin-left: auto;
  padding-left: 10px;
}
.cmIkOJnh svg {
  height: 15px;
  width: 15px;
  transition: transform 0.25s;
}
.Z06fdxEN {
  height: 15px;
  width: 15px;
  margin-right: 10px;
}

.SzAFa5XJ {
  background: #fff;
  border-right: 1px solid #000000;
  border-top: 1px solid #000;
  display: flex;
  flex-direction: column;
  height: calc(100% - 65px);
  width: 100%;
  position: fixed;
  top: 56px;
  z-index: 60;
  transform: translateX(-100%);
  transition: width 0.25s, transform 0.25s, flex-basis 0.25s;
}
@media (min-width: 960px) {
  .SzAFa5XJ {
    transform: none;
    top: 64px;
    width: 60px;
    min-width: 60px;
  }
}
@media (min-width: 1024px) {
  .SzAFa5XJ {
    margin-top: 64px;
    position: static;
  }
}
@media (max-width: 1023px) {
  .SzAFa5XJ {
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.SzAFa5XJ.NE441OpO {
  width: 100%;
}
@media (min-width: 960px) {
  .SzAFa5XJ.NE441OpO {
    width: 280px;
    min-width: 280px;
  }
}
@media (min-width: 1024px) {
  .SzAFa5XJ.NE441OpO {
    flex-basis: 280px;
  }
}
.SzAFa5XJ.B4jSfUFF {
  transform: none;
}
.SzAFa5XJ.Ag1MuGYb {
  transform: translateX(-100%);
}
@media (min-width: 960px) {
  .SzAFa5XJ.Ag1MuGYb {
    transform: none;
  }
}
.QKl23lNi {
  margin: 0;
  padding: 0;
}
.VbNFDGEs {
  border-bottom: 1px solid #c4c6c8;
  display: block;
  height: 50px;
  overflow: hidden;
  transition: width 0.25s;
}
.VbNFDGEs:hover, .VbNFDGEs.Ag1MuGYb {
  border-bottom: 0;
  margin-top: -1px;
  height: 52px;
}
@media (min-width: 960px) {
  .VbNFDGEs:hover:not(.Ag1MuGYb) {
    width: 280px;
  }
}
@media (min-width: 960px) {
  .VbNFDGEs.NE441OpO {
    width: 280px;
  }
}
.jX_yyxwP {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 15px 13px;
  text-transform: uppercase;
  color: #e5514c;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  height: 100%;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
@media (min-width: 960px) {
  .jX_yyxwP {
    padding: 15px 18px;
    width: 280px;
  }
}
.jX_yyxwP.PTlWRXwv .NBfwb_Qu {
  color: #e5514c;
}
.jX_yyxwP:hover, .jX_yyxwP.Ag1MuGYb {
  background-color: #e5514c;
  color: #fff;
}
.jX_yyxwP:hover .NBfwb_Qu, .jX_yyxwP.Ag1MuGYb .NBfwb_Qu {
  color: #fff;
}
.NBfwb_Qu {
  color: #000000;
  margin-right: 20px;
  transition: color 0.25s;
}
.NBfwb_Qu.YAf4y9wf {
  margin-right: 50px;
}
.L2CD8sjo {
  margin: auto 13px 20px;
}
@media (min-width: 700px) {
  .L2CD8sjo {
    margin: auto 18px 20px;
  }
}
.wTQOVhJ1 {
  color: #e5514c;
  cursor: pointer;
  display: none;
  transition: all 0.25s;
}
@media (min-width: 960px) {
  .wTQOVhJ1 {
    display: block;
  }
}
.wTQOVhJ1:hover {
  color: #000000;
}
@media (min-width: 960px) {
  .wTQOVhJ1.NE441OpO {
    transform: rotate(180deg);
  }
}
.RWf6BFVS {
  background-color: #fff;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  position: fixed;
  padding: 10px;
  top: 56px;
  width: 100%;
  z-index: 60;
  transform: translateX(-100%);
  transition: transform 0.25s;
}
@media (min-width: 600px) {
  .RWf6BFVS {
    display: none;
  }
}
.RWf6BFVS.B4jSfUFF {
  transform: none;
}
.RWf6BFVS svg {
  color: #e5514c;
  height: 20px;
}
.lrQ_0vKi {
  background-color: rgba(0, 0, 0, 0.3);
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
  z-index: 40;
}

.NOXH67ZG {
  margin: 0px;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-family: 'Minirol Head', 'Open Sans', sans-serif;
  font-weight: 500;
  background: #ffffff !important;
}
@media (min-width: 1024px) {
  .NOXH67ZG {
    display: flex;
  }
}
.NOXH67ZG h1, .NOXH67ZG h2, .NOXH67ZG h3, .NOXH67ZG h4, .NOXH67ZG h5, .NOXH67ZG h6 {
  font-family: 'Minirol Head', 'Roboto';
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
}
.Z20_ycrY {
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
  position: fixed;
  min-height: 30px;
  left: -20px;
  right: 0;
  top: 56px;
  z-index: 5;
}
@media (min-width: 600px) {
  .Z20_ycrY {
    background-color: #f1f1f2;
    border-bottom: 1px solid #000000;
    display: flex;
    min-height: 50px;
    top: 64px;
    z-index: 35;
  }
}
@media (min-width: 960px) {
  .Z20_ycrY {
    position: sticky;
    top: 0;
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (min-width: 1280px) {
  .Z20_ycrY {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.HkaEXBnM {
  align-items: center;
  font-family: 'Minirol Head', 'Open Sans';
  border: none;
  border-right: 1px solid #000000;
  background-color: rgba(0, 0, 0, 0);
  color: #000000;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  padding: 14px 20px 13px;
  transition: background-color 0.2s;
}
.HkaEXBnM:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.EBwkuwbb {
  padding: 80px 10px 0;
}
@media (min-width: 960px) {
  .EBwkuwbb {
    flex: 1 1 auto;
    height: calc(100% - 80px);
    padding-left: 70px;
    overflow: auto;
  }
}
@media (min-width: 1024px) {
  .EBwkuwbb {
    padding-left: 10px;
  }
}
@media (min-width: 1280px) {
  .EBwkuwbb {
    height: calc(100% - 65px);
    padding: 65px 20px 0;
  }
}
.EBwkuwbb.p9d2YpUz {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}
@media (min-width: 600px) {
  .EBwkuwbb.p9d2YpUz {
    padding-top: 130px;
  }
}
@media (min-width: 960px) {
  .EBwkuwbb.p9d2YpUz {
    padding-top: 64px;
    height: calc(100% - 64px);
  }
}
.N1FqqzUf {
  color: #e5514c;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10px auto 40px 0;
  display: inline-block;
  width: 100%;
  font-size: 40px;
}
@media (max-width: 1599px) {
  .N1FqqzUf {
    font-size: 32px;
  }
}
.GkRKNOGa {
  flex: 1;
}

.iZu8t_fK .xLBlaQF_ {
  color: #909193;
  padding: 10px;
  transition: color 0.25s;
}
.iZu8t_fK .xLBlaQF_:hover {
  background-color: transparent;
  color: #e5514c;
}
.iZu8t_fK .xLBlaQF_.lhxMClVL {
  color: black;
  cursor: default;
}

.YFiTzNJp {
  font-size: 14px;
  margin-right: 8px;
}

.cADZN0jP {
  align-items: center;
  color: #000000;
  display: flex;
  font-size: 14px;
  line-height: 31px;
  font-weight: bold;
  justify-content: space-between;
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
}
.tEc5r70N {
  color: #e31837;
  position: relative;
  left: -6px;
}
.akSTXfrq {
  align-items: center;
  display: flex;
  flex-flow: wrap;
  padding: 0 20px;
}
.akSTXfrq > a, .akSTXfrq > span {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.akSTXfrq > a:hover {
  text-decoration: underline;
}
.TcYRMUKJ {
  margin: 0 4px;
}

tbody.X26C1C_P > tr > td {
  padding: 14px 0;
}
tr.ze7P0M9h.fSER_vOL {
  background: white;
}
tr.ze7P0M9h > td {
  padding: 0 10px;
  border-bottom: 1px solid #c4c6c8;
  height: 35.4px;
}
tr.ze7P0M9h > td .FQontpuB {
  padding: 5px;
}
tr.nxoH4I9F table {
  width: 100%;
}
tr.nxoH4I9F table td {
  padding: 5px 10px;
}
tr.nxoH4I9F.fSER_vOL table td {
  background: white;
  border-bottom: 1px solid #c4c6c8;
}

.zfgGYpZ6 {
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  max-height: 95vh;
}
.zfgGYpZ6 .RqcgtAjE {
  padding: 10px 15px;
}
.zfgGYpZ6 .RqcgtAjE .aJRZ8GdV {
  margin-top: -10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.zfgGYpZ6 .RqcgtAjE .aJRZ8GdV svg {
  width: 16px;
  height: 16px;
}
.zfgGYpZ6 .RqcgtAjE .aJRZ8GdV .wTZwNhIc {
  max-width: 120px;
}
.zfgGYpZ6 .RqcgtAjE .aJRZ8GdV > * {
  margin: 0 4px;
}
.zfgGYpZ6 .lWkMyNM8 {
  padding: 0 10px;
}
.zfgGYpZ6 .gBPTgtlT {
  flex: 1 1 auto;
  overflow-y: auto;
}
.zfgGYpZ6 .wEKqhufD {
  display: block;
  table-layout: fixed;
}
.zfgGYpZ6 .wEKqhufD > thead > tr > th {
  width: 120px;
  padding: 0 10px;
}
.zfgGYpZ6 .wEKqhufD > tbody > tr > td {
  width: 120px;
}
.zfgGYpZ6 .MNtDbtPW {
  display: inline-flex;
  justify-content: space-between;
  padding: 15px 10px;
  min-height: 66px;
  box-sizing: border-box;
}

.QjKcCovc:not(:hover) .pJymdsB0 {
  box-shadow: inset 0 0 0 3px #e5514c;
}
.xWWeMc9c {
  padding: 10px 20px;
  border-bottom: 1px solid #b7b7b8;
  transition: all 0.2s ease;
  cursor: pointer;
}
.xWWeMc9c:hover {
  box-shadow: inset 0 0 0 3px #e5514c;
}

.EQOyof2G {
  margin: 10px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.EQOyof2G .QVfWcuj7 {
  margin-right: 10px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
  height: 40px;
  border-radius: 20px;
  font-size: 15px;
  font-family: 'Minirol Head', 'Open Sans', sans-serif;
}
.EQOyof2G .QVfWcuj7.dxeRnBko {
  background-color: #e5514c;
  color: white;
}

.eobeIO2P {
  flex-grow: 1;
}
.eobeIO2P .VTp31r_V {
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #b7b7b8;
}
.eobeIO2P .VTp31r_V:hover {
  box-shadow: inset 0 0 0 3px #e5514c;
}

.Zkbx2iKv {
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  height: 40px;
  margin: 10px 10px 8px;
}

.XnWhGYoF:not(:hover) .MMZ3NTaq {
  box-shadow: inset 0 0 0 3px #e5514c;
}
.qKYkvQFs .S6exCt5J {
  font-size: 18px;
  padding: 10px 20px;
}
.qKYkvQFs .hhSSrMUj {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.qKYkvQFs .hhSSrMUj:not(:first-child) {
  border-top: 1px solid #b7b7b8;
}
.qKYkvQFs .hhSSrMUj:last-child {
  border-bottom: 1px solid #b7b7b8;
}
.qKYkvQFs .hhSSrMUj:hover {
  box-shadow: inset 0 0 0 3px #e5514c;
}
.qKYkvQFs .hhSSrMUj .wYoCm5cJ {
  margin-right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.Pfa5aHAF:first-child .oZS2Uuo8 {
  border-top: none;
}
.Pfa5aHAF .fE6rJejr {
  cursor: pointer;
  width: calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 4px;
  transition: all 0.2s ease;
  border: 1px solid #b7b7b8;
}
.Pfa5aHAF .fE6rJejr:first-child {
  border-left: none;
}
.Pfa5aHAF .fE6rJejr:nth-child(3n) {
  border-right: none;
}
.Pfa5aHAF .fE6rJejr .OQJR3A60 {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.Pfa5aHAF .fE6rJejr .zEzyObpA {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 2px;
}
.Pfa5aHAF .fE6rJejr.dKPQn3uu {
  box-shadow: inset 0 0 0 3px #e5514c;
}

.ikfJAU_L {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
}

.IEqmg75k {
  position: relative;
  z-index: 40;
}
@media (min-width: 960px) {
  .IEqmg75k .hGV8xJcr {
    height: 70vh;
    overflow-y: auto;
  }
}
.IEqmg75k .SCS7x56Y, .IEqmg75k .hkbnCyEq {
  padding: 12px 20px;
  border-bottom: 1px solid #b7b7b8;
}
.IEqmg75k .SCS7x56Y {
  font-weight: 500;
  font-size: 20px;
  padding: 18px 20px;
}
.IEqmg75k .t8kW6aPs {
  height: 16px;
}
.IEqmg75k .t8kW6aPs.eWuo3QI7 {
  background-color: #fce4e4;
  border: 2px solid #cc0033;
  border-radius: 3px;
  outline: none;
}
.IEqmg75k .hkbnCyEq {
  display: flex;
  flex-flow: wrap;
  transition: all 0.2s ease;
}
.IEqmg75k .hkbnCyEq.cPrgzxGc {
  cursor: pointer;
}
.IEqmg75k .hkbnCyEq.RO5vVWWk, .IEqmg75k .hkbnCyEq:hover {
  background: #ebebec;
}
.IEqmg75k .hkbnCyEq .ZKy7W2tp {
  flex: 0 0 calc(100% - 33px);
}
.IEqmg75k .hkbnCyEq .ZKy7W2tp .Vq_yeVDY, .IEqmg75k .hkbnCyEq .ZKy7W2tp .HCA8hb90 {
  font-size: 14px;
}
.IEqmg75k .hkbnCyEq .ZKy7W2tp .HCA8hb90 {
  color: #e5524d;
}
.IEqmg75k .hkbnCyEq .ZKy7W2tp .QThXkWg4 {
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.IEqmg75k .hkbnCyEq .ZKy7W2tp .QThXkWg4.jt6KDPxW {
  color: #e5524d;
}
.IEqmg75k .hkbnCyEq .d3WceZB0, .IEqmg75k .hkbnCyEq .YskIFAf4 {
  width: 33px !important;
  height: 33px !important;
}
.GspEAViF {
  position: static;
  flex: 0 0 100%;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .GspEAViF {
    position: absolute;
    margin-top: 0;
  }
}
.GspEAViF .hjvgRY86 {
  background: #f1f1f2;
  cursor: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.GspEAViF .hjvgRY86 .EN4hjei0 {
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  border-bottom: 1px solid #b7b7b8;
}
.GspEAViF .hjvgRY86 .biprordv {
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
}
.GspEAViF .hjvgRY86 .p_8aMU5j {
  border-top: 1px solid #b7b7b8;
  margin-top: 10px;
  padding: 10px 10px 0 20px;
}
.GspEAViF .hjvgRY86 .p_8aMU5j button {
  text-transform: lowercase;
}
.GspEAViF .hjvgRY86 .MS8uLWsO {
  margin-top: 10px;
  border-top: 1px solid #b7b7b8;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.q02uC8MM {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jabGXk31 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  background: none;
  font-size: 25px;
  padding: 0;
  margin: 0;
  font-family: 'Minirol Head', 'Open Sans';
  line-height: 25px;
  color: #000;
}
.tJB0O7lo {
  text-decoration: underline;
}

.jvvtQ8c0 {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
}
.jvvtQ8c0 .W4EZxU8x {
  width: 50%;
  height: 100vh;
  transition: width 0.8s ease;
}
.jvvtQ8c0 .W4EZxU8x p {
  margin: 0;
}
.jvvtQ8c0 .W4EZxU8x img {
  max-width: 100%;
  max-height: 100%;
}
.jvvtQ8c0 .W4EZxU8x.pFehJAe9 {
  width: 0;
}
.jvvtQ8c0 .OskEcMIH {
  width: 173px;
  margin-bottom: 15px;
}
.jvvtQ8c0 .nI3raDgu {
  margin-bottom: 10px;
}
.jvvtQ8c0 .qva0Socj {
  transition: margin 0.8s ease;
  margin: 0 80px;
}
.jvvtQ8c0 .pyKOKu4I {
  font-size: 25px;
  position: absolute;
  right: 40px;
  top: 30px;
}

.I36ZZ6Gk {
  text-align: center;
}
.I36ZZ6Gk .TWXvphOx {
  margin: 0 0 15px;
}
.I36ZZ6Gk .TWXvphOx input {
  text-align: center;
}
.I36ZZ6Gk .TWXvphOx input > * {
  color: #e5514c !important;
}
.I36ZZ6Gk .TWXvphOx input:-webkit-autofill {
  /* f*ck chrome */
  box-shadow: 0 1000px 0 white inset;
  -webkit-text-fill-color: #e5514c !important;
}
.I36ZZ6Gk .TWXvphOx > div:after {
  background-color: #e5514c;
}
.I36ZZ6Gk .TWXvphOx .EZGOZzfE {
  line-height: 24px;
  display: inline-block;
}
.I36ZZ6Gk .TWXvphOx .EZGOZzfE svg {
  height: 20px;
  vertical-align: top;
}
.I36ZZ6Gk .RVrWYP9_ {
  margin: 10px 15px 0 0;
}
.I36ZZ6Gk .RVrWYP9_ p {
  vertical-align: super;
  display: inline-block;
}
.I36ZZ6Gk .XQZAsEXf, .I36ZZ6Gk .zUcPELJJ {
  margin-top: 5px;
  display: flex;
  justify-content: space-around;
}
.I36ZZ6Gk .XQZAsEXf button, .I36ZZ6Gk .zUcPELJJ button {
  font-size: 13px;
}
.I36ZZ6Gk .XQZAsEXf button .AzUb5xsF, .I36ZZ6Gk .zUcPELJJ button .AzUb5xsF {
  margin-left: 5px;
  margin-right: -10px;
}
.I36ZZ6Gk .XQZAsEXf .clui0Ltb, .I36ZZ6Gk .zUcPELJJ .clui0Ltb {
  color: black;
  font-size: 13.5px;
  font-weight: 600;
}
.I36ZZ6Gk .XQZAsEXf .clui0Ltb:active, .I36ZZ6Gk .zUcPELJJ .clui0Ltb:active {
  color: red;
}
.I36ZZ6Gk .eSEAJ5Iz {
  margin: 15px 0;
  width: 100% !important;
}
.I36ZZ6Gk .EiqLtCVV {
  width: 230px;
}
.I36ZZ6Gk .V1IV7pUJ {
  margin-top: 25px;
  text-align: left;
}
.I36ZZ6Gk .V1IV7pUJ .eXezItq2 {
  margin-right: 12px;
  vertical-align: middle;
}
.I36ZZ6Gk .D3WjkRvC {
  margin: -20px;
}
.I36ZZ6Gk .Fitq3643 {
  background-color: #e0e0e0;
}
.I36ZZ6Gk .Fitq3643:hover {
  background-color: #d5d5d5;
}

.MQS8a3PC {
  flex: 0 0 100%;
}
.MQS8a3PC svg {
  margin-right: 5px;
}
.ojB1v2_d {
  align-items: center;
  display: flex;
  flex-flow: wrap;
  margin-left: auto;
}
.ojB1v2_d > * {
  margin: 8px;
}
.ojB1v2_d > *:first-child {
  margin-left: 0;
}
.ojB1v2_d > *:last-child {
  margin-right: 0;
}

.xEPVMRGv {
  display: flex;
  flex-flow: wrap;
  justify-items: center;
  padding: 10px 0;
}
.UteduBQB {
  background: #f6f6f6;
  position: relative;
  margin: 0 -10px;
}
@media (min-width: 1280px) {
  .UteduBQB {
    margin: 0 -20px;
  }
}
.dpCs05oe {
  background: #fff;
  margin-top: 106px;
  position: absolute;
  width: 54px;
  z-index: 5;
}
@media (min-width: 1440px) {
  .dpCs05oe {
    background: transparent;
    margin-top: 61px;
  }
}
.dpCs05oe tr {
  height: 95px;
}
.dpCs05oe tr:first-of-type {
  height: 94px;
}
@media (min-width: 1440px) {
  .dpCs05oe tr {
    height: 75px;
  }
  .dpCs05oe tr:first-of-type {
    height: 74px;
  }
}
.dpCs05oe a {
  color: #000000;
  text-decoration: none;
  transition: color 0.25s;
}
.dpCs05oe a:hover {
  color: #e5514c;
}
.Hx7yWoSX {
  box-sizing: border-box;
  padding-right: 0;
}
.y8pEQtuC {
  padding: 0;
}
@media (min-width: 760px) {
  .y8pEQtuC {
    padding: 9px;
  }
}

._mWVYMlc {
  display: flex;
  margin: 0 -8px 0;
}
@media (min-width: 1280px) {
  ._mWVYMlc {
    margin: 0 -20px 0;
  }
}
._mWVYMlc .active {
  background-color: #e5514c;
  color: #ffffff;
  font-weight: 700;
}
.WdvJsGH6 {
  background-color: #ebebec;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 12px;
  text-decoration: none;
  transition: background-color 0.1s, color 0.1s;
}
@media (min-width: 420px) {
  .WdvJsGH6 {
    font-size: 18px;
  }
}
@media (min-width: 600px) {
  .WdvJsGH6 {
    font-size: 20px;
    padding: 15px 13px 13px;
  }
}
@media (min-width: 960px) {
  .WdvJsGH6 {
    font-size: 23px;
  }
}
.WdvJsGH6:hover {
  background-color: #e5514c;
  color: #ffffff;
}

.De8CzvsR {
  display: flex;
  flex-flow: wrap;
  justify-items: center;
  padding: 10px 0;
}
.Vu8kDJZv {
  align-items: center;
  display: flex;
  flex-flow: wrap;
  margin-left: auto;
}
.Vu8kDJZv > * {
  margin: 8px;
}
.Vu8kDJZv > *:first-child {
  margin-left: 0;
}
.Vu8kDJZv > *:last-child {
  margin-right: 0;
}
.p3PZUREg {
  background: #f6f6f6;
  position: relative;
  margin: 0 -10px;
}
@media (min-width: 1280px) {
  .p3PZUREg {
    margin: 0 -20px;
  }
}
.fBLaT27_ {
  background: #fff;
  margin-top: 106px;
  position: absolute;
  width: 54px;
  z-index: 99;
}
@media (min-width: 1440px) {
  .fBLaT27_ {
    background: transparent;
    margin-top: 61px;
  }
}
.fBLaT27_ tr {
  height: 95px;
}
.fBLaT27_ tr:first-of-type {
  height: 94px;
}
@media (min-width: 1440px) {
  .fBLaT27_ tr {
    height: 75px;
  }
  .fBLaT27_ tr:first-of-type {
    height: 74px;
  }
}
.fBLaT27_ a {
  color: #000000;
  text-decoration: none;
  transition: color 0.25s;
}
.fBLaT27_ a:hover {
  color: #e5514c;
}
.nmCscazl {
  box-sizing: border-box;
  padding-right: 0;
}
.XBqXRbhV {
  padding: 0;
}
@media (min-width: 760px) {
  .XBqXRbhV {
    padding: 9px;
  }
}

.eajimNct {
  display: flex;
  margin: 0 -8px 0;
}
@media (min-width: 1280px) {
  .eajimNct {
    margin: 0 -20px 0;
  }
}
.eajimNct .active {
  background-color: #e5514c;
  color: #ffffff;
  font-weight: 700;
}
.vvWq1Lor {
  background-color: #ebebec;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 12px;
  text-decoration: none;
  transition: background-color 0.1s, color 0.1s;
}
@media (min-width: 420px) {
  .vvWq1Lor {
    font-size: 18px;
  }
}
@media (min-width: 600px) {
  .vvWq1Lor {
    font-size: 20px;
    padding: 15px 13px 13px;
  }
}
@media (min-width: 960px) {
  .vvWq1Lor {
    font-size: 23px;
  }
}
.vvWq1Lor:hover {
  background-color: #e5514c;
  color: #ffffff;
}

.K7usZQUN {
  flex-basis: 70%;
}
.K7usZQUN > * {
  background-position: center;
  background-size: cover;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.K7usZQUN > * h1 {
  text-transform: uppercase;
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  max-width: 320px;
  line-height: 1.15;
  padding: 0;
  margin: 25px 0 10px 0;
}
@media (min-width: 600px) {
  .K7usZQUN > * h1 {
    font-size: 37px;
  }
}
.K7usZQUN > * h1.LnkdJHTJ {
  color: #fff;
}
.K7usZQUN > * h2 {
  color: #000000;
  font-size: 23px;
  text-align: center;
  max-width: 250px;
  font-weight: 400;
  margin: 10px 0;
}
.K7usZQUN > * h2.LnkdJHTJ {
  color: #fff;
}
.K7usZQUN > * a {
  margin: 25px 0;
  box-shadow: none;
}
.K7usZQUN > * button {
  text-transform: uppercase;
  background-color: #e5524d;
  color: white;
  border-radius: 40px;
  padding: 10px 30px;
  box-shadow: none;
  cursor: pointer;
  border: none;
}
.K7usZQUN > * button:focus {
  outline: none;
}

.KffErjgy {
  height: calc(100vh - 57px);
  margin: 0 -10px 0;
  width: calc(100% + 20px);
}
@media (min-width: 600px) {
  .KffErjgy {
    height: calc(100vh - 45px);
  }
}
@media (min-width: 960px) {
  .KffErjgy {
    height: calc(100vh - 63px);
  }
}
@media (min-width: 1280px) {
  .KffErjgy {
    height: calc(100vh - 65px);
    margin: 0 -20px 0;
    width: calc(100% + 40px);
  }
}
.llKwMKTk {
  display: flex;
  flex-direction: column;
}
.STtHsKAX {
  display: flex;
}
@media (min-width: 960px) {
  .STtHsKAX {
    flex-basis: 30%;
  }
}
.Nt9B3qfq {
  background-color: #f1f1f2;
  display: none;
}
@media (min-width: 960px) {
  .Nt9B3qfq {
    display: block;
  }
}

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.eQoA5dhj {
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: flex;
  padding: 40px 25px 90px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 600px) {
  .eQoA5dhj {
    padding: 70px 40px;
  }
}
._UmH4GkA {
  height: 40px;
  width: 40px;
  margin-right: 25px;
}
.FNICa5vy {
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.mvN9ighy {
  width: calc(100% - 65px);
}
.mvN9ighy .pRPvRjzr {
  background-image: none;
  left: 0;
  top: auto;
  bottom: 20px;
  height: 15px;
  width: 15px;
}
.mvN9ighy .pRPvRjzr::after {
  border: solid #5a5b5d;
  content: '';
  position: absolute;
  height: 50%;
  width: 50%;
  transform: rotate(45deg);
  transition: border-color 0.25s;
}
.mvN9ighy .pRPvRjzr:hover::after {
  border-color: #e5514c;
}
.mvN9ighy .Nmzc1qFQ::after {
  border-width: 0 0 3px 3px;
  left: 50%;
}
.mvN9ighy .kDgL0_AV {
  left: 25px;
}
.mvN9ighy .kDgL0_AV::after {
  border-width: 3px 3px 0 0;
}
.mvN9ighy .swiper-slide-active {
  opacity: 1;
}
.EI3pcc1c {
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.2s;
}
.xnSBsWl7 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hW97PGIM {
  color: #000000;
  font-size: 23px;
  font-weight: 700;
  display: inline-block;
  max-width: 300px;
  text-decoration: none;
  transition: color 0.25s;
}
.hW97PGIM:hover {
  color: #e5514c;
}
.uwIIVUhs {
  display: inline-block;
  color: #000000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s;
}
.uwIIVUhs:hover {
  color: #e5514c;
}

.VCPCHBMQ {
  background-color: #e5514c;
  box-sizing: border-box;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-decoration: none;
  transition: background-color 0.25s;
}
.VCPCHBMQ:hover {
  background-color: #cc4944;
}
.VCPCHBMQ.Xxbz8jNn {
  background-color: #333333;
}
.VCPCHBMQ.Xxbz8jNn:hover {
  background-color: #252525;
}
.TycyBsAD svg {
  height: 70px;
  width: 100%;
}
.TycyBsAD.O8maBYo2 svg {
  fill: #c4c6c8;
}
.pMnSKT5r {
  font-size: 23px;
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
}
.pMnSKT5r.O8maBYo2 {
  color: #c4c6c8;
}

.cliGIK9O {
  align-items: center;
  display: flex;
  border-bottom: 1px solid #ffffff;
  padding: 40px 25px 15px;
}
.aiSWUbNc {
  height: 24px;
  width: 24px;
  margin-right: 15px;
}
.Z9GXGxKI {
  font-size: 23px;
  font-weight: 700;
}
.qFmeOGJs {
  border-bottom: 1px solid #ffffff;
  color: #000000;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  padding: 20px 25px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.25s;
}
.qFmeOGJs:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.qFmeOGJs:hover .NauYTfC1 {
  background-color: #cc4944;
}
.qFmeOGJs.Xf_wHqzo {
  background-color: #000000;
  color: #ebebec;
}
.qFmeOGJs.Xf_wHqzo:hover {
  background-color: #333333;
}
.NauYTfC1 {
  background-color: #e5514c;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.25s;
}
.NauYTfC1 + .UIiHGWsR {
  color: #000000;
}
.UIiHGWsR {
  position: relative;
  z-index: 5;
}
.QKM0l6Qa {
  font-size: 14px;
  font-weight: 700;
  margin-right: 10px;
}
.LenMMwNI {
  display: inline-block;
  margin: 0 5px;
}
.YSX0lYhu {
  font-weight: 500;
}

.EBW5p7nI {
  background-color: #e5514c;
  box-sizing: border-box;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-decoration: none;
  transition: background-color 0.25s;
  cursor: pointer;
}
.EBW5p7nI:hover {
  background-color: #cc4944;
}
.Jd91H9Ur svg {
  height: 70px;
  width: 100%;
}
.Jd91H9Ur._dsEIYHO svg {
  fill: #c4c6c8;
}
.otBNYPfv {
  font-size: 23px;
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
}
.otBNYPfv._dsEIYHO {
  color: #c4c6c8;
}

.OJXHGJv5 {
  padding: 5px;
}
.Q26h58yb.nP4QDsr2 {
  box-shadow: none;
}
.aeJ1DX5q {
  align-items: center;
  font-size: 14px;
}
.Uck3kHDN {
  margin-right: 15px;
}
.kuSwMcee {
  background-color: #f6f6f6;
  display: block;
  padding: 0;
}
.GwEmZ3T5 {
  margin-right: 10px;
}
.FrpgDlwn {
  border-bottom: 1px solid #ebebec;
  font-size: 14px;
  height: 50px;
  padding: 15px 20px;
  transition: background-color 0.25s;
}
.FrpgDlwn:hover {
  background-color: #ebebec;
  color: #000;
}

.Dz9gb3Zq {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
@media (min-width: 600px) {
  .Dz9gb3Zq {
    margin: -20px;
  }
}
.ie9UsNKc {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 10px;
  transition: opacity 0.25s;
}
@media (min-width: 600px) {
  .ie9UsNKc {
    display: block;
    margin: 20px;
    width: 120px;
  }
}
.ie9UsNKc:hover {
  opacity: 0.7;
}
.NAQvxVl1 {
  color: #e5514c;
  width: 70px;
  height: 50px;
  margin-right: 10px;
}
@media (min-width: 600px) {
  .NAQvxVl1 {
    width: 120px;
    height: 85px;
    margin-right: 0;
  }
}
.upkkCatp {
  padding: 4px 0 0 5px;
  font-size: 13.5px;
}
.upkkCatp.bXxBpjgu {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .Ex_2Is8T table {
    width: 100%;
    table-layout: fixed;
    max-width: 750px;
  }
  .Ex_2Is8T tbody {
    display: block;
  }
  .Ex_2Is8T tr {
    display: grid;
    grid-template-columns: 1fr;
  }
  .Ex_2Is8T td:not([colspan="3"]), .Ex_2Is8T th {
    text-align: center !important;
  }
  .Ex_2Is8T td:not([colspan="3"]) img, .Ex_2Is8T th img {
    margin: 0 auto;
  }
  .Ex_2Is8T td:not([colspan="3"]) p, .Ex_2Is8T th p {
    text-align: center !important;
  }
}

.KkLbI2uo {
  background-color: #f1f1f2;
  margin: 0 -10px 0;
  height: calc(100vh - 56px);
  overflow-y: scroll;
}
@media (min-width: 600px) {
  .KkLbI2uo {
    height: calc(100vh - 80px);
  }
}
@media (min-width: 960px) {
  .KkLbI2uo {
    margin-right: 60px;
  }
}
@media (min-width: 1280px) {
  .KkLbI2uo {
    margin: 0 60px 0 -20px;
  }
}
.ZqQF_max {
  box-sizing: border-box;
  border-bottom: 1px solid #b7b7b8;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100px;
  padding: 20px 50px;
  transition: background-color 0.25s, border-color 0.25s;
}
.ZqQF_max:hover {
  background-color: #ebebec;
}
.ZqQF_max.LWkGwfFc {
  background-color: #ffffff;
  border-color: #ffffff;
  cursor: default;
}
.ZqQF_max .DYQoqZGn {
  margin-top: 5px;
}
.nqc1xyo3 {
  margin-bottom: 20px;
}
.zgmo7nNM {
  background-color: #fff;
  box-sizing: border-box;
  font-weight: 300;
  left: 0;
  line-height: 1.3;
  min-height: calc(100vh - 56px);
  margin: 0 -10px;
  opacity: 0;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 56px;
  transform: translateX(-100%);
  transition: transform 0.25s, opacity 0.25s;
}
.zgmo7nNM.EGD_qiam {
  opacity: 1;
  transform: none;
}
@media (min-width: 600px) {
  .zgmo7nNM {
    min-height: calc(100vh - 65px);
    top: 65px;
  }
}
@media (min-width: 960px) {
  .zgmo7nNM {
    padding: 30px 0;
    position: relative;
    top: 0;
    height: auto;
    margin: 0;
    transform: none;
    opacity: 1;
  }
}
.zgmo7nNM .XX6LRmud {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.zgmo7nNM .aQ_4101M {
  display: block;
  font-size: 23px;
  font-weight: 300;
}
.zgmo7nNM .DYQoqZGn {
  font-size: 60px;
  font-weight: 300;
  margin: 10px 0 40px;
}
.zgmo7nNM .nytgNw3p {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 25px;
}
.zgmo7nNM img {
  max-width: 100%;
}
.lCrVl1_I {
  border: 2px solid #000000;
  border-radius: 50%;
  fill: #000000;
  cursor: pointer;
  margin-right: 5px;
  transition: border-color 0.25s, fill 0.25s;
}
.lCrVl1_I:last-of-type {
  margin-right: 0;
}
.lCrVl1_I:hover {
  border-color: #e5514c;
  fill: #e5514c;
}
.lCrVl1_I.TVAcGwUz, .lCrVl1_I.TVAcGwUz:hover {
  cursor: default;
  border-color: #909193;
  fill: #909193;
  pointer-events: none;
}

.v7ljWEJM {
  align-items: center;
  border-bottom: 1px solid #5a5b5d;
  display: flex;
  min-height: 48px;
  padding: 6px;
}
.v7ljWEJM:first-child {
  border-top: 1px solid #5a5b5d;
}
.ScvzdPqC {
  flex-basis: 95px;
}
.cXRS1yMt {
  margin: 0 5px;
}
.ScvzdPqC, .cXRS1yMt {
  font-size: 14px;
}
.W04cfnHk {
  margin-left: auto;
}
.B7VUsiNQ {
  background-color: #c4c6c8;
  position: fixed;
  top: 59px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
@media (min-width: 600px) {
  .B7VUsiNQ {
    left: 61px;
    top: 116px;
  }
}
@media (min-width: 1280px) {
  .B7VUsiNQ {
    left: 361px;
  }
}
@media (min-width: 1600px) {
  .B7VUsiNQ {
    left: 675px;
  }
}
@media (min-width: 1024px) {
  .B7VUsiNQ.uJ8v0LXk {
    left: 281px;
  }
}
@media (min-width: 1280px) {
  .B7VUsiNQ.uJ8v0LXk {
    left: 581px;
  }
}
@media (min-width: 1600px) {
  .B7VUsiNQ.uJ8v0LXk {
    left: 895px;
  }
}
.W63yc9aD {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
@media (min-width: 1024px) {
  .W63yc9aD {
    padding: 20px;
  }
}
.ua_1fJhl {
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  height: 40px;
  flex: 0 0 227px;
}
.hXQ9WT68 {
  cursor: pointer;
}
.S4BEeidA {
  display: flex;
  flex-flow: wrap;
  padding: 10px;
  max-height: calc(100vh - 140px);
  overflow: auto;
}
@media (min-width: 600px) {
  .S4BEeidA {
    max-height: calc(100vh - 197px);
  }
}
@media (min-width: 1024px) {
  .S4BEeidA {
    max-height: calc(100vh - 237px);
    padding: 20px;
  }
}
._j_aMB_v {
  border: 2px solid #c4c6c8;
  border-radius: 5px;
  cursor: pointer;
  flex: 0 0 96px;
  padding: 6px;
  transition: border-color 0.2s;
  margin: 2px;
}
._j_aMB_v.d5zO_1xb, ._j_aMB_v:hover {
  border-color: #e31837;
}
.HFin9y7U {
  background-size: cover;
  border-radius: 50%;
  height: 85px;
  margin: 0 auto 10px;
  width: 85px;
}

.DfbGnWLZ {
  align-items: center;
  border-bottom: 1px solid #5a5b5d;
  display: flex;
  min-height: 48px;
  padding: 6px;
  position: relative;
}
.DfbGnWLZ:first-child {
  border-top: 1px solid #5a5b5d;
}
.Q5id5yVW {
  flex-basis: 95px;
}
.dHGYc4ye {
  margin: 0 5px;
}
.dHGYc4ye input {
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: bold;
}
.Q5id5yVW, .dHGYc4ye {
  font-size: 14px;
}
.tuTKoZGT {
  margin-left: auto;
}
.z_3vXmpC {
  height: 16px;
  width: 16px;
  vertical-align: top;
  margin-right: 4px;
}
.ghZ6yZZP {
  background-color: #c4c6c8;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2;
  max-height: 50vh;
  overflow-y: auto;
}
.um3FtGKA {
  color: #5a5b5d;
}
.AMdgfx7y {
  cursor: default;
}
.AMdgfx7y:hover {
  background-color: #c4c6c8;
  color: #5a5b5d;
}

.uBD12WgA {
  background-color: #f1f1f2;
  margin-left: -20px;
  position: absolute;
  overflow-y: auto;
  height: 100%;
  width: 314px;
}
.i1HohQ9A {
  padding: 15px;
  height: 100px;
}
.tS6x_XsO {
  border-top: 1px solid #b7b7b8;
  color: inherit;
  display: block;
  text-decoration: none;
  transition: all 0.25s;
}
.tS6x_XsO:last-of-type {
  border-bottom: 1px solid #b7b7b8;
}
.tS6x_XsO:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.tS6x_XsO._1XEHrmj {
  border: 2px solid #e5514c;
  border-radius: 10px;
}
.tS6x_XsO._1XEHrmj + .tS6x_XsO {
  border-top: 0;
}
.fyAZYUO5 {
  display: flex;
  padding: 10px;
}
.fyAZYUO5 > button {
  align-self: center;
}
.o3H64ZEc {
  height: 80px;
  min-width: 80px;
  margin: -5px 10px -5px -5px;
  position: relative;
}
.o3H64ZEc img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.edp2WQbV {
  max-height: 100%;
  max-width: 100%;
}
.q2x6zztN {
  display: flex;
  flex-direction: column;
}
.CVrnqotd {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.BMvVuw59 {
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  line-height: 1.3;
  margin: 5px 0 auto;
}
.MXAdiLiG {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.KZ872x7b {
  color: #5a5b5d;
  margin-left: auto;
  height: 20px;
  width: 20px;
}

@media (min-width: 1600px) {
  .w1dUlTfi {
    align-items: stretch;
    display: flex;
    position: relative;
    height: 100%;
  }
}
.s5VviaJl {
  flex: 1 1 auto;
  padding: 25px 0 25px 30px;
  margin-left: -20px;
}
.s5VviaJl.sy26Sq0w {
  margin-left: 294px;
}
.poTGgpXp {
  font-size: 23px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 45px;
}
.eUlipRam {
  margin-top: 40px;
  position: relative;
  padding-top: 100%;
}
@media (min-width: 600px) {
  .eUlipRam {
    margin-top: 0;
  }
}
.eUlipRam img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
.sLvlbpqK {
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 10px;
  transition: opacity 0.25s, border-color 0.25s;
  background: transparent;
}
.sLvlbpqK:last-of-type {
  margin-right: 0;
}
.sLvlbpqK:hover {
  opacity: 0.75;
}
.sLvlbpqK.A1bTXeWR {
  border-color: #e5514c;
}
.HhgrnmkE {
  font-size: 37px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mO8VC1GH {
  font-size: 23px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0;
}
.wwtvcY3k {
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}
.zn9z4aUb {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.V2R3T5MI {
  margin-top: 15px;
}
.Ho8UbsPx {
  margin-right: 10px;
  width: 20px;
}
.XRgIq8iJ {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

.KGd0sjs7 {
  align-items: center;
  display: flex;
  border-bottom: 1px solid #b7b7b8;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: inherit;
  padding: 10px;
  text-decoration: none;
}
.KGd0sjs7:last-of-type {
  border-bottom: 0;
}
.KGd0sjs7:hover .fKoyfY5T {
  fill: #e5514c;
}
.KGd0sjs7:hover .gf23YjZh {
  color: #e5514c;
}
.fKoyfY5T {
  fill: #5a5b5d;
  margin-right: 15px;
  transition: fill 0.25s;
}
.gf23YjZh {
  transition: color 0.25s;
}

.Z_639vAW {
  border-top: 1px solid #b7b7b8;
  width: 100%;
}
.TwGLMxSU {
  border-bottom: 1px solid #b7b7b8;
}
.TwGLMxSU td {
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
}

.ihrpfmoy {
  border-bottom: 1px solid #b7b7b8;
  display: flex;
  padding: 10px;
}
.ihrpfmoy > button {
  align-self: center;
  pointer-events: none;
}
.ihrpfmoy:last-of-type {
  border-bottom: 0;
}
.U3EdemVD {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  display: flex;
}
.U3EdemVD:hover .kHuupRZK {
  color: #e5514c;
}
.U3EdemVD:hover .EQOkG70o {
  opacity: 0.6;
}
.EQOkG70o {
  max-height: 80px;
  max-width: 80px;
  margin: -5px 10px -5px -5px;
  transition: opacity 0.25s;
}
.lcDlcmqb {
  display: flex;
  flex-direction: column;
}
.kHuupRZK {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.25s;
}
.cXynwRsR {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 5px 0 auto;
}
.MJkUcAzN {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.JMj8KoB0 {
  color: #5a5b5d;
  margin-left: auto;
  height: 20px;
  width: 20px;
}

.cogpYofJ {
  text-align: center;
  width: 500px;
  max-width: calc(100vw - 50px);
}
.cogpYofJ .XHpRmt8T > * {
  margin-top: 5px;
}
.cogpYofJ .XHpRmt8T .VSgxcUWo {
  line-height: 24px;
  display: inline-block;
}
.cogpYofJ .XHpRmt8T .VSgxcUWo svg {
  height: 20px;
  vertical-align: top;
}
.cogpYofJ .Eiyry7hs {
  width: 230px;
}
.cogpYofJ a:not(:focus) {
  color: black;
}

.IGxkrPbR {
  text-align: center;
  width: 450px;
  max-width: calc(100vw - 50px);
}
.IGxkrPbR .hXJE1IzN {
  width: 230px;
}

.g4TVIuHp {
  text-align: center;
}
.g4TVIuHp .ZBQI1xZN {
  position: relative;
  display: inline-block;
  background: #e5514c;
  border-radius: 8%;
  width: 110px;
  height: 110px;
  line-height: 165px;
}
.g4TVIuHp .ZBQI1xZN svg {
  display: inline-block;
  font-size: 65px;
  color: white;
}
.g4TVIuHp .VkMTERp0 {
  font-size: 18px;
}

