/* [WEBFLOW migrated] index generic (OO, URG) */
body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

a { text-decoration: none; }
.clickable, .clickDiv {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
  cursor: pointer;
}
.clickable.matchCTA, .clickDiv.matchCTA {
  -webkit-tap-highlight-color: transparent;
  transition: all .15s ease-in-out;
}
/* cursor support */
.touchable, .tapDiv {
  cursor: pointer;
}
.textLink:hover {
  text-decoration: underline;
}
.roundButton:hover {
  box-shadow: 0px 1px 2px 1px #ddd;
} 
 
/* Toast */
#app .socDateToast {
  /* background-color: #444;
  opacity: 0.9;
  border-radius: 40px;
  color: white;
  margin: 15px 40px;
  text-align: center;
  min-height: 30px; */
}
#app .socDateToast > div {
  /* line-height: 22px;
  padding: 3px 10px; */
}
/* Toast fix */
#app .socDateToast > div {
  /* padding: 3px 25px; */
}

@media only screen and (min-width: 640px){
  .Toastify__toast-container { width: 640px; }
  .Toastify__toast-container--bottom-center { margin-left: -320px }
}

/* slider animation */
.shake-y {
  animation: 0.5s ease-out vertical-shaking 1;
}

/* Toast - registration */
#app .socDateToastRegister {
  /* background-color: #FFF;
  opacity: 0.9;
  border-radius: 40px;
  color: #5b91ca;
  margin: 15px 40px;
  text-align: center;
  min-height: 30px; */
}


/* layout */
#app #layoutContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#app #layoutContainerInner {
  display: flex;
  flex-direction: row;
  /* height: 100vh; */
  /* height: calc(100vh - 115px); */
  flex: 1;
}
#app #layoutContainer .leftContainer .menuGrad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#app #layoutContainer .leftContainer > img {
  margin-left: 12px;
}
#app #layoutContainer .midAndRightContainer {
  flex: 1;
  display: flex;
  flex-direction: row;
  height: 100vh;
}
#app #layoutContainer .midContainer {
  position: relative;
  flex-direction: column;
}
/* channel=Desktop layout/cols specific */
#app #layoutContainer .midContainer .middleContainerRightBorder {
  position: relative;
}
#app #layoutContainer .midContainer .middleContainerRightBorder:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  /* background: red; */
  background: rgb(238,241,245);
  background: linear-gradient(90deg, rgba(217,219,223,0) 0%, rgba(0,0,0,0.15) 100%);
  z-index: 1000;
}
#app #layoutContainer .midContainer .navBarTop.middleContainerRightBorder:after {
  top: -50px;
}
#app #layoutContainer .rightContainer {
  position: relative;
  display: flex;
  flex-direction: column;
}
#app #layoutContainer .rightContainer .menuGradRight {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#app #layoutContainer .topContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  background: white;
}
#app #layoutContainer .logoContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
#app #layoutContainer .statsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex: 2;
}
#app #layoutContainer .bottomContainer {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
#app #layoutContainer .topRightButtonWithIcon.active svg path {
  fill: #6d9fd4 !important;
}


.indexSectionMore {
  transition: height .3s ease-in-out;
  overflow: hidden;
}
.indexSectionMore.opened {
  height: 380px;
}
.indexSectionMore.closed {
  height: 0;
}

.indexContentRow .indexMoreIcon {
  transition: transform .3s ease-in-out;
  transform: rotate(0deg);
}
.indexContentRow.detailed .indexMoreIcon {
  transform: rotate(90deg);
}

/* Ellipsis - list item: trim too long sentence and add ...  */
span.listItemSentenceEllipsis {
  font: inherit;
  -webkit-line-clamp: 3;
}
span.listItemSentenceEllipsis.ellipsis2 {
  font: inherit;
  -webkit-line-clamp: 2;
}

/* disable tap-events on channel=Desktop */
* {
  tap-events: none;
}
/* ScrollView scroll bars */
.scrollView::-webkit-scrollbar {
  height: 6px;
	width: 12px;
}
/* FF support */
.scrollView::-webkit-scrollbar {
  width: 12px;
}
.scrollView::-webkit-scrollbar-track {
  background: none;
}
.scrollView::-webkit-scrollbar-thumb {
  background-color: #f6f8fa;
  border-radius: 50px;
  background-clip: content-box;
  border: 2px solid white;
}
.scrollView:hover::-webkit-scrollbar-thumb {
  background-color: #e4e9f0;
  transition: background-color 0.8s ease;
}
* {
  scrollbar-color: #f6f8fa transparent;
  scrollbar-width: 10px
}

 /* replace with original file */
  .rc-slider {
    position: relative;
    height: 14px;
    padding: 5px 0;
    width: 100%;
    border-radius: 6px;
    touch-action: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .rc-slider * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .rc-slider-rail {
    position: absolute;
    width: 100%;
    background-color: #e9e9e9;
    height: 4px;
    border-radius: 6px;
  }
  .rc-slider-track {
    position: absolute;
    left: 0;
    height: 4px;
    border-radius: 6px;
    background-color: #abe2fb;
  }
  .rc-slider-handle {
    position: absolute;
    width: 17px;
    height: 17px;
    cursor: pointer;
    cursor: -webkit-grab;
    margin-top: -5px;
    cursor: grab;
    border-radius: 50%;
    border: solid 2px #96dbfa;
    background-color: #fff;
    touch-action: pan-x;
  }
  .rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
    border-color: #57c5f7;
    box-shadow: 0 0 0 5px #96dbfa;
  }
  .rc-slider-handle:focus {
    outline: none;
  }
  .rc-slider-handle-click-focused:focus {
    border-color: #96dbfa;
    box-shadow: unset;
  }
  .rc-slider-handle:hover {
    border-color: #57c5f7;
  }
  .rc-slider-handle:active {
    border-color: #57c5f7;
    box-shadow: 0 0 5px #57c5f7;
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .rc-slider-mark {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    font-size: 12px;
  }
  .rc-slider-mark-text {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    color: #999;
  }
  .rc-slider-mark-text-active {
    color: #666;
  }
  .rc-slider-step {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
  }
  .rc-slider-dot {
    position: absolute;
    bottom: -2px;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    border: 2px solid #e9e9e9;
    background-color: #fff;
    cursor: pointer;
    border-radius: 50%;
    vertical-align: middle;
  }
  .rc-slider-dot-active {
    border-color: #96dbfa;
  }
  .rc-slider-dot-reverse {
    margin-right: -4px;
  }
  .rc-slider-disabled {
    background-color: #e9e9e9;
  }
  .rc-slider-disabled .rc-slider-track {
    background-color: #ccc;
  }
  .rc-slider-disabled .rc-slider-handle,
  .rc-slider-disabled .rc-slider-dot {
    border-color: #ccc;
    box-shadow: none;
    background-color: #fff;
    cursor: not-allowed;
  }
  .rc-slider-disabled .rc-slider-mark-text,
  .rc-slider-disabled .rc-slider-dot {
    cursor: not-allowed !important;
  }
  .rc-slider-vertical {
    width: 14px;
    height: 100%;
    padding: 0 5px;
  }
  .rc-slider-vertical .rc-slider-rail {
    height: 100%;
    width: 4px;
  }
  .rc-slider-vertical .rc-slider-track {
    left: 5px;
    bottom: 0;
    width: 4px;
  }
  .rc-slider-vertical .rc-slider-handle {
    margin-left: -5px;
    touch-action: pan-y;
  }
  .rc-slider-vertical .rc-slider-mark {
    top: 0;
    left: 18px;
    height: 100%;
  }
  .rc-slider-vertical .rc-slider-step {
    height: 100%;
    width: 4px;
  }
  .rc-slider-vertical .rc-slider-dot {
    left: 2px;
    margin-bottom: -4px;
  }
  .rc-slider-vertical .rc-slider-dot:first-child {
    margin-bottom: -4px;
  }
  .rc-slider-vertical .rc-slider-dot:last-child {
    margin-bottom: -4px;
  }
  .rc-slider-tooltip-zoom-down-enter,
  .rc-slider-tooltip-zoom-down-appear {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: block !important;
    animation-play-state: paused;
  }
  .rc-slider-tooltip-zoom-down-leave {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: block !important;
    animation-play-state: paused;
  }
  .rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
  .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
    animation-name: rcSliderTooltipZoomDownIn;
    animation-play-state: running;
  }
  .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
    animation-name: rcSliderTooltipZoomDownOut;
    animation-play-state: running;
  }
  .rc-slider-tooltip-zoom-down-enter,
  .rc-slider-tooltip-zoom-down-appear {
    transform: scale(0, 0);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
  .rc-slider-tooltip-zoom-down-leave {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  @keyframes rcSliderTooltipZoomDownIn {
    0% {
      opacity: 0;
      transform-origin: 50% 100%;
      transform: scale(0, 0);
    }
    100% {
      transform-origin: 50% 100%;
      transform: scale(1, 1);
    }
  }
  @keyframes rcSliderTooltipZoomDownOut {
    0% {
      transform-origin: 50% 100%;
      transform: scale(1, 1);
    }
    100% {
      opacity: 0;
      transform-origin: 50% 100%;
      transform: scale(0, 0);
    }
  }
  .rc-slider-tooltip {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: visible;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .rc-slider-tooltip * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .rc-slider-tooltip-hidden {
    display: none;
  }
  .rc-slider-tooltip-placement-top {
    padding: 4px 0 8px 0;
  }
  .rc-slider-tooltip-inner {
    padding: 6px 2px;
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #6c6c6c;
    border-radius: 6px;
    box-shadow: 0 0 4px #d9d9d9;
  }
  .rc-slider-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
  }
  .rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
    bottom: 4px;
    left: 50%;
    margin-left: -4px;
    border-width: 4px 4px 0;
    border-top-color: #6c6c6c;
  }
  

  .pressOfflineElement {
    width: 100%;
    display: flex;
    justify-content: center;
    
  }
  .pressOfflineElement:hover { 
    background-color: #f3f6f8; 
    /* #f3f6f8 */
  } 

  .hoverWhiteUnderline {
    /* font-size: 37px; */
    color: white;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
  }
  .hoverWhiteUnderline:hover {
    text-decoration: none;
  }

  .partnerjiLogoWrap {
    aspect-ratio: 1.1 !important;
  }

  .partnerjiLogo {
    transition: transform 0.2s;
    transform-style: preserve-3d;
  }
  .partnerjiLogo:hover {
    transform: scale(1.1);
  }

  .footerLink {
    transition: color .2s;
    
  }
  .footerLink:hover {
    text-decoration: underline !important;
    color: white !important;
  }


  .heartbeat {
    animation: heartbeat 1.5s infinite;
  }

  @keyframes heartbeat {
    0%, 100% {
      transform: scale(1);
    }
    15% {
      transform: scale(1.2);
    }
    30% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    85% {
      transform: scale(1);
    }
  }

  .navbarLink {
    transition: border .1s;
  }
  .navbarLink:hover{
    border-bottom: 1px solid #292d35 !important
  }

  .moveTop {
    transition: all .3s cubic-bezier(.075, .82, .165, 1) !important;
  }
  .moveTop:hover {
    transform: translateY(-5px);
  }
  .articleIcon {
    transition: all .3s cubic-bezier(.075, .82, .165, 1) !important;
  }
  .pressOfflineElement:hover .articleIcon {
    transform: translate3d(4px, -4px, 0);
  }
  .hoverOpacity {
    cursor: pointer;
  }
  .hoverOpacity:hover {
    opacity: 1 !important;
  }

  .submitButtonGray {
    transition-property: all;
    transition-duration: 600ms;
    transition-timing-function: ease;
  }
  .submitButtonGray:hover {
    background-color: white !important; 
  }
  .submitButtonSocial {
    transition-property: all;
    transition-duration: 600ms;
    transition-timing-function: ease;
  }
  .submitButtonSocial:hover {
    opacity: 1 !important;
  }
  .buttonIconsWrap {
    transition-property: all;
    transition-duration: 600ms;
    transition-timing-function: ease;
  }
  .submitButtonGray:hover .buttonIconsWrap{
    background-color: #f3f6f8 !important; 
  }
  
  .hoverDark:hover {
    color: #292d35 !important;
  }
  .aniRegistrationComplete {
    background-color: white;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    color: white;
    animation: aniMeetMeYesButton 600ms 20ms cubic-bezier(0.38, 0.97, 0.56, 0.76) forwards;
    transform: scale3d(1, 1, 1);
  }
  @keyframes aniRegistrationComplete {
    40% {
      transform: scale3d(0.75, 0.75, 1);
    }
    60% {
      transform: scale3d(1, 1, 1);
    }
    100% {
      transform: scale3d(1, 1, 1);
    }
  }

  .aniRegistrationCompleteBefore {
    animation: aniRegistrationCompleteBefore 600ms 20ms cubic-bezier(0.38, 0.97, 0.56, 0.76) forwards;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transform: scale3d(0.1, 0.1, 1);
  }
  @keyframes aniRegistrationCompleteBefore {
    40% {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 1);
    }
    70% {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
    100% {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
  }
  .aniRegistrationComplete:after {
    animation: aniRegistrationCompleteAfter 600ms 20ms cubic-bezier(0.38, 0.97, 0.56, 0.76) forwards;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 50%;
    background: white;
    box-shadow: 2px 2px 20px 5px rgb(50, 194, 77, 0);
    transform: scale3d(1, 1, 1);
  }
  @keyframes aniRegistrationCompleteAfter {
    40% {
      background: white;
      transform: scale3d(1, 1, 1);
      box-shadow: 2px 2px 20px 5px rgba(255, 255, 255, 0.4);
    }
    100% {
      background: #32c24d00;
      transform: scale3d(3, 3, 1);
      box-shadow: 2px 2px 20px 5px rgb(50, 194, 77, 0);
    }
  }

  .registrationSuccessButton:hover {
    box-shadow: 0 0 0 5px #ffffff26;
    transition: all .2s ease;
  }

  .form {
    font-weight: 400;
  }

.registrationEntryAnimation {
  animation: appearFromBottom 1s;
  transform-style: preserve-3d;
}

@keyframes appearFromBottom {
  from {
    transform: translate3d(0px, 20px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
}


.multiSelectCheckboxCircle {
  transform: 0.15s cubic-bezier(.075, .82, .165, 1);
  transform: scale(1);
}

.multiSelectCheckboxIco {
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(.075, .82, .165, 1);
}
.multiSelectCheckboxCheckedIco {
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(.075, .82, .165, 1);

}

@keyframes multiSelectCheckboxAni {
  0% { transform: scale(1); }
  50% { transform: scale(0.975); }
  51% { transform: scale(0.975); }
  100% { transform: scale(1); }
}


.markdown {
  padding: 0
}
.markdownText16 p {
  font-size: 16px !important;
} 
.markdown p {
  font-size: 14;  
  font-weight: 400;
  line-height: 1.7;
}
.markdown a {
  font-size: 14 !important;  
  font-weight: 400;
}
.markdown h2 {
  margin-top: 70px;
  margin-bottom: 20px;
}
.markdown h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 16;  
  line-height: 130%;
}
.markdown img {
  margin: 25px auto;
}
.markdown li {
  line-height: 27px;
}
.markdown blockquote {
  margin: 15px 0;
}
.markdown table {
  width: 100%;
}
.markdown th {
  border: 1px solid rgb(51, 51, 51);
  padding: 4px;
  text-align: left;
  font-weight: bold;
}
.markdown td {
  border-bottom: 1px solid rgb(51, 51, 51);
  padding: 2px;
  padding: 10px 10px 5px 4px;
}
.markdown table th:nth-child(1){
  width: 150px;
}