/* .bottom-container {
  flex-grow: 0;
  flex-shrink: 0;
} */

.box {
  --mask: 
    conic-gradient(from 120deg at top,#0000,#000 1deg 119deg,#0000 120deg) top/34.64px 51% repeat-x,
    conic-gradient(from -60deg at bottom,#0000,#000 1deg 119deg,#0000 120deg) bottom/34.64px 51% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
}

.border-left-round {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.border-right-round {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.border-round {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.flip-horizontally {
  transform: scaleX(-1);
}

.order-zeroth {
  order: 0;
}

.order-first {
  order: 1;
}

.order-second {
  order: 2;
}

.float-right {
  float: right;
}

.item {
  display:flex;
  flex-direction:column;
  justify-content:space-between
}

.footer-link {
  margin-top: 0.4rem;
}

/* .margintopauto {
  margin-top: auto;
} */

/* .marginbottomauto {
  margin-bottom: auto;
} */

.logo {
  width: 7em;
  display: block;
}

/* .zigzag{
  border-bottom: 12px solid hsl(217, 71%, 53%);
} */

i {
  display: inline-block;
  font-style: normal;
  position: relative;
}

i.arrow {
    width: 0.5em;
    height: 0.5em;
    border-right: 0.15em solid #1E3760;
    border-top: 0.15em solid #1E3760;
    transform: translate(0.35em, -0.15em) rotate(135deg);
}

.supertitle {
  font-size: 3em;
  font-weight: bolder;
}

.py-2 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.title {
  font-size: 2em;
}

.subtitle {
  font-size: 1.2em;
  line-height: 1.5;
}



/* .heromessage {
  padding-bottom: 2em;
} */

.z-index-1000 {
  z-index: 1000;
}

/* .intro-panel {
  border-radius: 25px;
} */

.logo-small {
  width: 1.25em;
  display: inline-block;
  margin-bottom: -0.25em;
}

.logo-medium {
  width: 2.5em;
  display: inline-block;
}

.dropdown-item {
  font-size: 1em;
}

.button.is-multiline {
  min-height: 2.25em;
  white-space: unset;
  height: auto;
  flex-direction: column;
  text-align: center;
}

/* flags */
.flag-icon {
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block;
  width: 1.33333333em;
  line-height: 1em;
  margin-right: 0.2em;
}
.flag-icon:before {
  content: "\00a0";
}
.flag-icon-ru {
  background-image: url(../flags/4x3/ru.svg);
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px none #ddd;
}
.flag-icon-gb {
  background-image: url(../flags/4x3/gb.svg);
}
.flag-icon-ta {
  background-image: url(../flags/4x3/ta.svg);
}
.flag-icon-ua {
  background-image: url(../flags/4x3/ua.svg);
}
.flag-icon-de {
  background-image: url(../flags/4x3/de.svg);
}
.flag-icon-tr {
  background-image: url(../flags/4x3/tr.svg);
}
.flag-icon-il {
  background-image: url(../flags/4x3/il.svg);
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px none #ddd;
}
.flag-icon-pl {
  background-image: url(../flags/4x3/pl.svg);
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px none #ddd;
}

/* animations */
@-webkit-keyframes fade-out-partial {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes fade-out-partial {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.fade-out-partial {
	-webkit-animation: fade-out-partial 0.5s ease-out both;
	        animation: fade-out-partial 0.5s ease-out both;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-out {
	-webkit-animation: fade-out 0.5s ease-out both;
	        animation: fade-out 0.5s ease-out both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
	-webkit-animation: fade-in 0.5s ease-in both;
	        animation: fade-in 0.5s ease-in both;
}

@-webkit-keyframes fade-in-partial {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-partial {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-partial {
	-webkit-animation: fade-in-partial 0.5s ease-in both;
	        animation: fade-in-partial 0.5s ease-in both;
}

/* blog */
.post-title {
  margin-top: 1em;
}

.post-date {
  font-style: italic;
  margin-top: -0.75em;
  padding-bottom: 0.25em;
}

.post-body {
  margin-top: -0.75em;
  padding-bottom: 1.25em;
}

/* buttons */
/* .button {
  margin: 0.1em 0.1em 0.1em 0.1em;
} */

.mChoiceBtn {
  margin: 0.1em 0em 0.1em 0em;
}


/* forms */
/* .hz-label-half {
  text-align: left;
  margin-right: 1em;
  font-weight: 400;
  font-style: italic;
} */

/* .field.is-horizontal {
    display: flex;
} */

/* .field-label {
    flex-basis: 0;
    flex-grow: 1.25;
    flex-shrink: 0;
    margin-right: 1em;
} */

/* .field-body {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
} */

/* .field-label.is-normal {
  padding-top: .375em;
} */

/* @media screen and (max-width: 768px) {
  .hz-label-half {
    text-align: left;
  }
  .field-label {
    flex-grow: 2;
  }
} */

.progress::-webkit-progress-value {
  transition: width 0.5s ease;
}

/* .test-panel {
    min-height: 90svh;
} */

.histogram-toggle-btn {
    margin-bottom: 0em;
    padding-bottom: 0em;
}

/* articles */
.article-author {
  font-style: italic;
  margin-top: -0.75em;
}

.article-description {
  margin-top: -0.75em;
  padding-bottom: 1.25em;
}

/* social share */
.icon-vk {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.785 16.241s.288-.032.436-.194c.136-.148.132-.427.132-.427s-.02-1.304.576-1.496c.588-.19 1.341 1.26 2.14 1.818.605.422 1.064.33 1.064.33l2.137-.03s1.117-.071.587-.964c-.043-.073-.308-.661-1.588-1.87-1.34-1.264-1.16-1.059.453-3.246.983-1.332 1.376-2.145 1.253-2.493-.117-.332-.84-.244-.84-.244l-2.406.015s-.178-.025-.31.056c-.13.079-.212.262-.212.262s-.382 1.03-.89 1.907c-1.07 1.85-1.499 1.948-1.674 1.832-.407-.267-.305-1.075-.305-1.648 0-1.793.267-2.54-.521-2.733-.262-.065-.454-.107-1.123-.114-.858-.009-1.585.003-1.996.208-.274.136-.485.44-.356.457.159.022.519.099.71.363.246.341.237 1.107.237 1.107s.142 2.11-.33 2.371c-.325.18-.77-.187-1.725-1.865-.489-.859-.859-1.81-.859-1.81s-.07-.176-.198-.272c-.154-.115-.37-.151-.37-.151l-2.286.015s-.343.01-.469.161C3.94 7.721 4.043 8 4.043 8s1.79 4.258 3.817 6.403c1.858 1.967 3.968 1.838 3.968 1.838h.957z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.icon-fb {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.423 20v-7.298h2.464l.369-2.845h-2.832V8.042c0-.824.23-1.385 1.417-1.385h1.515V4.111A20.255 20.255 0 0 0 14.148 4c-2.183 0-3.678 1.326-3.678 3.76v2.097H8v2.845h2.47V20h2.953z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.icon-telegram {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.92 6.089L4.747 11.555c-.967.388-.962.928-.176 1.168l3.534 1.104 1.353 4.146c.164.454.083.634.56.634.368 0 .53-.168.736-.368.13-.127.903-.88 1.767-1.719l3.677 2.717c.676.373 1.165.18 1.333-.628l2.414-11.374c.247-.99-.378-1.44-1.025-1.146zM8.66 13.573l7.967-5.026c.398-.242.763-.112.463.154l-6.822 6.155-.265 2.833-1.343-4.116z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.icon-twitter {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 7.539a6.56 6.56 0 0 1-1.885.517 3.294 3.294 0 0 0 1.443-1.816 6.575 6.575 0 0 1-2.085.796 3.283 3.283 0 0 0-5.593 2.994A9.32 9.32 0 0 1 5.114 6.6a3.28 3.28 0 0 0 1.016 4.382 3.274 3.274 0 0 1-1.487-.41v.041a3.285 3.285 0 0 0 2.633 3.218 3.305 3.305 0 0 1-1.482.056 3.286 3.286 0 0 0 3.066 2.28A6.585 6.585 0 0 1 4 17.524 9.291 9.291 0 0 0 9.032 19c6.038 0 9.34-5 9.34-9.337 0-.143-.004-.285-.01-.425A6.672 6.672 0 0 0 20 7.538z' fill='%23FFF' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.button-social {
  width: 2.5em;
  height: 2.25em;
  border: 0px;
}

.button-vk {
  background-color: #507299;
}
.button-vk:hover {
  background-color: #43648c
}

.button-fb {
  background-color: #3b5998;
}
.button-fb:hover,
.button-fb:active {
  background-color: #2d4373;
}

.button-telegram {
  background-color: #54A9EB;
}
.button-telegram:hover {
  background-color: #4B97D1;
}

.button-twitter {
  background-color: #1da1f2;
}
.button-twitter:hover,
.button-twitter:active {
  background-color: #2795e9;
}

progress.rtl {
  direction: rtl;
}