html {
  height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html,
input,
button {
  font-family: Helvetica, Arial, sans-serif;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.page {
  height: 100%;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 1.5em;
  flex-direction: column;
}

.page_disable-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page_header {
  margin-bottom: 2em;
}

.page_footer {
  padding-bottom: 2em;
}

.page_files {
  position: relative;
  width: 100%;
  max-width: 970px;
}

@media screen and (max-width: 970px) {
  .page {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.percent-symbol {
  font-size: 0.75em;
  font-weight: bolder;
}

.button {
  position: relative;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #2a73d9;
  /* border: 2px solid #2a73d9; */
  color: rgba(255,255,255,1);
  text-align: center;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px;
  height: 2.5em;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 .9em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-width: 11em;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out;
}

.button_disabled,
.button:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.button_secondary {
  background-color: #D44D3B;
  border-color: #D44D3B;
}

.button_dark {
  background-color: #38404B;
  border-color: #38404B;
}

.button_fluid {
  width: 100%;
  min-width: 0;
  padding: 0 .25em;
}

.button_icon {
  fill: currentColor;
  margin-right: .75em;
  margin-left: -0.1em;
}

.button_text {
  margin: 0 auto;
}

.button_counter {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(55%, -35%);
  font-size: 0.85em;
  font-weight: 700;
  width: 24px;
  height: 24px;
  line-height: 20px;
  text-align: center;
  background-color: #38404B;
  border: 2px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.5);
  border-radius: 50%;
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.6);
}

/* .button.focus-visible, .button:hover {
    background-color: rgba(255,255,255,0.5);
    color: #2a73d9; } */
/* .button_secondary.focus-visible, .button_secondary:hover {
    color: #D44D3B; } */
/* .button_dark.focus-visible, .button_dark:hover {
    color: #38404B; } */
.button_disabled,
.button:disabled,
.button.focus-visible,
.button:hover {
  transition: color 0.05s ease-in, background-color 0.05s ease-in, opacity 0.05s ease-in;
}

.button_mrfix {
  margin-right: 0.75em;
}

@media screen and (max-width: 555px) {
  .button {
    font-size: .75em;
  }

  .button_mrfix {
    margin-right: initial;
  }
}

@media screen and (max-width: 355px) {
  .button {
    font-size: 0.625em;
  }
}

.language {
  position: relative;
  z-index: 7;
}

.language_button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1em;
  padding: 0 .7em;
  color: #000;
  background-color: rgba(255,255,255,0.5);
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
  align-items: center;
  justify-content: center;
  height: 2.1875em;
  display: flex;
  border: 2px solid #2a73d9;
  border-radius: 4px;
}

.language_text {
  margin-right: 1em;
}

.language_icon {
  fill: currentColor;
}

.language_overflow {
  position: absolute;
  border: 1px solid #2a73d9;
  background-color: rgba(255,255,255,1);
  border-radius: 0.25em;
  box-shadow: 0px 2px 10px rgba(42, 115, 217, 0.2);
  overflow: hidden;
  z-index: 1;
  top: 100%;
  margin-top: 0.625em;
  right: 0;
  opacity: 0;
  transform: translateY(-0.3em);
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.language_overflow:before,
.language_overflow:after {
  content: none;
  height: 1em;
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background-image: linear-gradient(rgba(255,255,255,0.5) 15%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.language_overflow:before {
  top: 0;
}

.language_overflow:after {
  bottom: 0;
  transform: rotate(180deg);
}

.language_overflow_scroll:before,
.language_overflow_scroll:after {
  content: '';
}

.language_list {
  padding: .3em 0;
  overflow: auto;
  list-style: none;
}

.language_title {
  display: block;
  text-decoration: none;
  color: #000;
  padding: .2em 1.4em;
  white-space: nowrap;
  position: relative;
}

.language_title:hover {
  background-color: #eaf1fb;
}

.language_title-icon {
  position: absolute;
  top: 50%;
  left: .45em;
  transform: translateY(-60%);
}

.language_active .language_button {
  background-color: #2a73d9;
  color: rgba(255,255,255,0.5);
  transition: color 0.05s ease-in, background-color 0.05s ease-in;
}

.language_active .language_icon {
  transform: rotate(180deg);
}

.language_active .language_overflow {
  opacity: 1;
  transform: translateY(-2px);
  pointer-events: auto;
  transition: opacity 0.05s ease-in, transform 0.05s ease-in;
}

@media screen and (max-width: 970px) {
  .language_overflow {
    border-radius: 0.5em;
  }

  .language_list {
    padding: 0;
  }

  .language li:not(:last-child) .language_title {
    border-bottom: 1px solid #b5cef2;
  }

  .language_title {
    padding: .5em 4em .5em 1.5em;
  }

  .language_title-icon {
    left: .55em;
  }
}

@media screen and (max-width: 555px) {
  .language_button {
    font-size: .8em;
  }
}

.falseadv {
  position: relative;
  background-color: #f2f2f2;
  border: 1px solid #a6a6a6;
  opacity: 1;
}

.falseadv:before {
  content: attr(data-size);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2em;
  font-weight: 600;
  color: #a6a6a6;
  transform: translate(-50%, -50%);
}

.ha,
.cstm {
  margin-right: auto;
  margin-left: auto;
}

.ha_top {
  margin-bottom: 3em;
}

.ha_bottom {
  margin-bottom: 2em;
}

.ha,
.ha div {
  max-width: 728px;
  /* min-height: 60px; */
}

/* .ha, .ha div {
  width: 728px;
  height: 90px; 
  background-color: #e5e5e5; }
  @media screen and (max-width: 728px) {
    .ha, .ha div {
      width: 100%; } }
.header_right div {
  background-color: #e5e5e5;
}
 .ha::after, .header_right::after {
  float: right;
  font-size: 12px;
  font-family: "Arial", sans-serif;
  font-style: italic;
  color: gray;
  content: "Advertisements";
} */

.ha_footer,
.ha_footer div {
  height: auto !important;
  background-color: transparent;
}

.ha_footer {
  margin-bottom: 3em;
}

.ha_footer::after {
  content: "" !important;
}

@media screen and (max-width: 555px) {

  .ha_bottom,
  .ha_bottom div {
    width: 300px;
    height: 250px;
  }
}

.alter-right {
  display: none;
}

.adb .alter-right {
  display: block;
}

.logo {
  display: inline-block;
}

.logo_image {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: 100%;
}

.header {
  width: 100%;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
}

.header_left {
  position: relative;
  width: 100%;
  margin-right: 1em;
}

.header_right {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 250px;
}

.header_right div {
  width: 300px;
  height: 250px;
}

.header_link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #2367c7;
  outline: none;
}

.header_link:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  left: 0;
  right: 0;
  margin-bottom: 0.1em;
  background-color: currentColor;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.header_link.focus-visible:before,
.header_link:hover:before {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.05s ease-in;
}

.header_language {
  position: absolute;
  right: 0;
  top: 0;
}

.header_logo {
  max-width: 100%;
  margin-bottom: 1.5em;
}

.header_text {
  line-height: 1.4;
  font-size: 1.07em;
}

.header_text_bb {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #8ab9ea;
}

.header_text_mb {
  margin-bottom: 1em;
}

.header_text b {
  font-weight: 600;
}

.header__line {
  display: inline-block;
  vertical-align: top;
  height: 2px;
  width: 100%;
  margin: 0.5em 0;
  stroke: #c0d5f4;
  stroke-dasharray: 5 7;
  stroke-dashoffset: 0;
  stroke-width: 1px;
}

.header_list {
  list-style: none;
  counter-reset: line;
}

.header_list-item {
  position: relative;
  counter-increment: line;
  padding-left: 2.5em;
}

.header_list-item:not(:last-child) {
  margin-bottom: .5em;
}

.header_list-item:before {
  content: counter(line);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5em;
  border-right: 2px solid #F2F2F2;
  color: #9ca0a5;
  width: .9em;
  padding-right: 0.35em;
  text-align: right;
  line-height: 1.1;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .header_right {
    display: none;
  }

  .header_list-item:before {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 555px) {
  .header {
    width: auto;
    margin-right: -10px;
    margin-left: -10px;
  }

  .header_language {
    top: .5em;
  }

  .header_left {
    padding-top: 0.5em;
    margin-right: 0.5em;
  }

  .header_logo {
    width: calc(90% - 4.5em);
    height: auto;
  }

  .header_text {
    text-align: center;
  }

  .header_text_mb {
    margin-bottom: 0;
  }

  .header_text_hidden-sm,
  .header_list,
  .header__line {
    display: none;
  }
}

.types {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  justify-content: center;
}

.types__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.types__label {
  cursor: pointer;
  display: inline-block;
  font-size: .8125em;
  font-weight: 600;
  color: #38404B;
  background-color: rgba(255,255,255,0.5);
  line-height: 2.2em;
  letter-spacing: 0.04em;
  padding: 0.15em 1em 0 1em;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #b5cef2;
  transition: prop time;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
}

.types__label:hover {
  background-color: #f4f8fd;
  transition: background-color 0.05s ease-in, color 0.05s ease-in, border-color 0.05s ease-in;
}

.types__input:checked+.types__label {
  background-color: #b5cef2;
  color: #000;
  transition: background-color 0.05s ease-in, color 0.05s ease-in, border-color 0.05s ease-in;
}

.types__item {
  position: relative;
}

.types__item:first-child .types__label {
  border-radius: .2em 0 0 .2em;
}

.types__item:last-child .types__label {
  border-right-width: 1px;
  border-radius: 0 .2em .2em 0;
}

.types__item.focus-visible {
  transition: background-color 0.05s ease-in, color 0.05s ease-in, border-color 0.05s ease-in;
}

.types__item.focus-visible+.types__item .types__label {
  border-left-color: #2a73d9;
}

.types__item.focus-visible .types__label {
  border-color: #2a73d9;
}

@media screen and (max-width: 555px) {
  .types__label {
    font-size: 0.75em;
    padding: 0 .5em;
    line-height: 2em;
  }
}

.files {
  position: relative;
  margin-bottom: 3em;
  background-color: rgba(255,255,255,0.5);
  width: 100%;
  max-width: 970px;
  border-radius: 0.75em;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 5px 16px -2px rgba(42, 115, 217, 0.2);
  font-size: 1em;
  padding: 1.6em 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.files__types {
  margin-bottom: 1em;
}

.files_buttons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
}

.files_buttons:not(:last-child) {
  margin-bottom: .7em;
}

.files_list-spacer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.files_list-outer {
  position: relative;
  width: 100%;
  height: 163px;
  height: calc(163px + 20px);
  margin-bottom: .7em;
  overflow: hidden;
}

.files_list {
  position: relative;
  height: calc(163px + 20px);
  padding: 10px 0 10px 0;
  overflow: auto;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.files_list_ios {
  overflow: hidden;
}

.files_list_ios * {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

/* .files_list:after {
      content: '';
      display: inline-block;
      height: 100%;
      width: 3em;
      flex-shrink: 0; } */
.files_list::-webkit-scrollbar {
  display: none;
}

.files_list_sortable .files__file {
  cursor: move;
}

.files_list_owf-hidden {
  overflow: hidden;
}

.files_list_sortable > div{
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.files_list-inner {
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
  list-style: none;
  display: flex;
  flex-shrink: 0;
  height: 163px;
}

.files_button_mr {
  margin-right: 1.35em;
}

.files__file {
  width: 163px;
  height: 163px;
  height: 100%;
  flex-shrink: 0;
}

.files__file:not(:last-child) {
  margin-right: 0.875em;
}

.files__input-files {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.files__drop-caption {
  position: absolute;
  z-index: 0;
  top: .5em;
  bottom: .5em;
  left: 3em;
  right: 3em;
}

.files__scroll-button {
  position: absolute;
  z-index: 3;
  top: 0;
  height: 100%;
  width: 2.6em;
  font-size: 1em;
}

.files__scroll-button:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.75), rgba(255,255,255,0.5));
}

.files__scroll-button_prev {
  left: -1px;
}

.files__scroll-button_next {
  right: -1px;
}

.files__scroll-button_next:after {
  transform: rotate(180deg);
}

@media screen and (max-width: 970px) {
  .files_list-outer {
    height: calc(150px + 20px);
  }

  .files_list {
    height: calc(150px + 20px);
  }

  .files_list-inner {
    height: 150px;
  }

  .files__file {
    width: 150px;
  }
}

@media screen and (max-width: 555px) {
  .files {
    padding: 1em 0;
  }
}

@media screen and (max-width: 355px) {
  .files_button .button_icon {
    transform: scale(0.75);
  }
}

.drop-caption {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

.drop-caption_hidden {
  transition: opacity 0.05s ease-in;
  opacity: 0;
  pointer-events: none;
}

.drop-caption__border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  stroke: #b5cef2;
  stroke-dasharray: 10 10;
  stroke-dashoffset: 0;
  stroke-width: 2px;
}

.drop-caption__text {
  font-size: 1em;
  font-weight: 600;
  color: #b5cef2;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  transform: translateY(-50%);
}

.scroll-button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: #D44D3B;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}

.scroll-button:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -0.3em;
  left: -0.3em;
  right: -0.3em;
  bottom: -0.3em;
  border-radius: 0.35em;
  background-color: #2a73d9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.scroll-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.scroll-button_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: currentColor;
  width: 1.1em;
  height: 2.2em;
  filter: drop-shadow(0 2px 4px rgba(255,255,255,0.5));
  transition: transform 0.2s ease-out;
}

.scroll-button_icon_left {
  transform: translate(-50%, -50%) rotate(180deg);
  transform: translate3d(-50%, -50%, 0) rotate(180deg);
}

.scroll-button:not(.focus-visible):hover .scroll-button_icon {
  transform: translate(calc(-50% + 3px), -50%);
}

.scroll-button:not(.focus-visible):hover .scroll-button_icon_left {
  transform: translate(calc(-50% - 3px), -50%) rotate(180deg);
}

.scroll-button:disabled,
.scroll-button.focus-visible,
.scroll-button:not(.focus-visible):hover {
  transition: color 0.05s ease-in, opacity 0.05s ease-in;
}

.scroll-button:disabled .scroll-button_icon,
.scroll-button.focus-visible .scroll-button_icon,
.scroll-button:not(.focus-visible):hover .scroll-button_icon {
  transition: transform 0.05s ease-in;
}

.services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0 .7em;
  max-width: 100%;
  overflow: hidden;
  height: calc(1.625em + 11px);
  padding-top: 10px;
  margin-top: -10px;
  margin-bottom: -1px;
}

.services_item {
  flex-shrink: 0;
  height: 100%;
}
.services_item-active .services_label{
  background: #2a73d9 !important;
  color: rgba(255,255,255,1) !important;
}

.services_item:not(:last-child) {
  margin-right: 1px;
}

.services_item_align-right {
  margin-left: auto;
}

.services_item_new {
  position: relative;
  overflow: hidden;
  margin-left: auto;
}

.services_item_new label {
  padding-right: .75em;
}

.services_item_new:after {
  content: "NEW";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f00;
  transform-origin: top right;
  transform: translate(10.5%, 93%) rotate(45deg) scale(0.375);
  color: rgba(255,255,255,0.5);
  font-size: 1em;
  line-height: 1.8;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.05em 4em 0;
}

.services_input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
}

.services_label {
  white-space: nowrap;
  display: inline-block;
  font-size: 0.75em;
  letter-spacing: 0.02em;
  border-radius: .4em .4em 0 0;
  background-color: #E9F1FB;
  cursor: pointer;
  outline: none;
  color: #38404B;
  text-decoration: none;
  font-weight: bold;
  height: 100%;
  line-height: 2.2em;
  padding: 0 .4em;
  border-color: #F2F2F2;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.services_label:hover {
  color: #000;
  background-color: #f4f8fd;
  box-shadow: -8px -4px 10px -5px rgba(42, 115, 217, 0.1), 8px -4px 10px -5px rgba(42, 115, 217, 0.1);
  transition: background-color 0.05s ease-in, color 0.05s ease-in, box-shadow 0.05s ease-in;
}

.services_input:checked+.services_label {
  position: relative;
  z-index: 5;
  background-color: rgba(255,255,255,0.5);
  color: #000;
  height: calc(100% + 3px);
  box-shadow: -8px -3px 10px -5px rgba(42, 115, 217, 0.1), 8px -3px 10px -5px rgba(42, 115, 217, 0.1), 0px 4px 3px -3px rgba(255, 255, 255, 0.5);
}

.footer {
  text-align: center;
}

.footer__title {
  font-weight: bold;
  width: 100%;
  font-size: 1.3em;
  letter-spacing: 0.02em;
  margin-bottom: .5em;
}

.footer_text {
  width: 100%;
  font-size: 0.9em;
  letter-spacing: 0.04em;
  color: #000;
}

.footer__share {
  margin-bottom: 1.8em;
  color: #b3b3b3;
}

.share {
  list-style: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1em;
}

.share__item:not(:last-child) {
  margin-right: 1em;
}

.share__link {
  display: inline-block;
  vertical-align: bottom;
  flex-shrink: 0;
  transform: translateZ(0);
  transition: filter 0.2s ease-out;
  outline: none;
}

.share__link.focus-visible,
.share__link:hover {
  transition: filter 0.05s ease-in;
  filter: grayscale(0%) opacity(100%);
}

.share__link_fb {
  width: 1.2em;
  height: 1.8em;
  color: #4267B2;
  filter: grayscale(100%) opacity(55%);
}

.share__link_tw {
  width: 2em;
  height: 1.5em;
  color: #1DA1F2;
  filter: grayscale(100%) opacity(70%);
}

.share__link_rd {
  width: 2em;
  height: 2em;
  color: #FF4500;
  filter: grayscale(100%) opacity(60%);
}

.share__link_vk {
  width: 2em;
  height: 1.5em;
  color: #45668e;
  filter: grayscale(100%) opacity(60%);
}

.share__icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .share__icon {
    fill: #b3b3b3;
  }

  .share__link {
    filter: none;
  }

  .share__link:hover .share__icon,
  .share__link.focus-visible .share__icon {
    fill: currentColor;
  }
}

.long {
  padding: 1em 0 2em 0;
}

.long {
  line-height: 1.4;
  font-size: 1.07em;
}

.long h1 {
  font-size: 1.4em;
  text-align: left;
  color: #38404b;
  border-bottom: 2px solid #F2F2F2;
}

.long h2 {
  font-size: 1.2em;
  text-align: left;
  color: #38404b;
}

.long p {
  margin: 1em 0 1em 0;
}

.long ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  font-size: 1.07em;
}

.long li {
  margin: 0.5em 0;
}

@media screen and (max-width: 728px) {
  .long {}
}

.drop-caption {
  position: relative;
  width: 870px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.drop-caption > div{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
  white-space: nowrap;
  transition: all .3s;
}
.drop-caption > div:empty {
  border-radius: 10px;
  border: 1px dashed #78adff;
}

.convert-box {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.convert-box + .convert-box{
  margin-left: 30px;
}
.convert-box::before {
  CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* .convert-progress{
  width: 90%;
  position: absolute;
  inset: auto 5% 5% 5%;
}
.convert-progress::-webkit-progress-bar{
  height: 20px;
} */
.progress-bar {
  width: 90%;
  height: 20px;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  position: absolute;
  bottom: 5%;
  left: 5%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--current);
  background: repeating-linear-gradient(45deg, deepskyblue 0, deepskyblue 3px, rgba(255,255,255,0.5) 3px, rgba(255,255,255,0.5) 6px);
  transition: all .3s;
}

.progress-bar-download::before {
  content: '';
  background: transparent;
}

.progress-bar-download {
  cursor: pointer;
}

.progress-bar-download:hover {
  background: #E9F1FB;
  /* color: rgba(255,255,255,0.5); */
}

.progress-bar-download a{
  text-decoration: none;
  color: #000;
  font-size: 12px;
  /* transform: scale(0.7); */
}

.convert-name {
  font-size: 12px;
  position: absolute;
  top: 5%;
  left: 5%;
  width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
}

.convert-delete {
  cursor: pointer;
  width: 13px;
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  position: absolute;
  top: 5%;
  right: 5%;
  background: linear-gradient(45deg, transparent 0, transparent calc(50% - 2px), rgba(255,255,255,0.5) calc(50% - 2px), rgba(255,255,255,0.5) calc(50% + 2px), transparent calc(50% + 2px)),
    linear-gradient(-45deg, transparent 0, transparent calc(50% - 2px), rgba(255,255,255,0.5) calc(50% - 2px), rgba(255,255,255,0.5) calc(50% + 2px), transparent calc(50% + 2px));
}
.img-arrow{
  width: 40px;
  height: 100%;
  background: #f6f6f6;
  cursor: pointer;
  background: url(../img/drop_box_btn.png) center / 15px no-repeat; 
}
.img-arrow-disabled{
  filter: grayscale(1);
}
.img-arrow-right{
  transform: rotateZ(180deg);
  filter: b;
}