/**
 * Oroshi is a PHP, JS and CSS framework.
 * It is the property of 3Types.
 * All reproduction, distribution and modification is forbidden.
 * It is delivered with 3Types's products and must not be altered and duplicated by a tier.
 */

@media screen and (min-width: 0px) {
  .hidden-mobile {
    visibility: hidden;
  }
  .delete-mobile {
    display: none;
   }
  .hidden-desktop {
    visibility: visible;
  }
  .delete-desktop {
    display: block;
  }
  .hide-tiny-cell {
    display: none;
  }
  .hide-small-cell {
    display: none;
  }
  .hide-medium-cell {
    display: none;
  }
}

@media screen and (min-width: 500px) {
  .hide-tiny-cell {
    display: table-cell;
  }
}


@media screen and (min-width: 992px) {
  .hide-small-cell {
    display: table-cell;
  }
  .hidden-mobile {
    visibility: visible;
  }
  .delete-mobile {
    display: block;
  }
  .hidden-desktop {
    visibility: hidden;
  }
  .delete-desktop {
    display: none;
  }
}

@media screen and (min-width: 1500px) {
  .hide-medium-cell {
    display: table-cell;
  }
}

.inline-gap-5 {
  width: 5px;
  height: 1px;
}

.inline-gap-10 {
  width: 10px;
  height: 1px;
}

.inline-gap-15 {
  width: 15px;
  height: 1px;
}

.inline-gap-20 {
  width: 20px;
  height: 1px;
}

.inline-gap-50 {
  width: 50px;
  height: 1px;
}

.inline-gap-100 {
  width: 100px;
  height: 1px;
}

.center-in-block {
  padding-left: auto;
  padding-right: auto;
}