/**
 * Extend Bulma classes
 * Additional classes for Bulma
 * @author: YesWeWeb.com
 * @version: 0.1
 */

/** Container **/
@media screen and (max-width:1366px) {
  .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width:1280px
  }
}

/** Typography **/
.is-line-through {text-decoration: line-through;}
.is-overlined {text-decoration: line-through overline;}

/** Border **/
.is-rounded-top {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px
}
.is-rounded-bottom {
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px
}
.is-rounded-left {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px
}
.is-rounded-right {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px
}

/** Flexbox  (Responsive) **/
@media screen and (max-width:768px) {
  .is-flex-direction-row-mobile {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-mobile {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:769px),print {
  .is-flex-direction-row-tablet {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-tablet {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:769px) and (max-width:1023px) {
  .is-flex-direction-row-tablet-only {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-tablet-only {
    justify-content: space-between !important;
  }
}
@media screen and (max-width:1023px) {
  .is-flex-direction-row-touch {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-touch {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:1024px) {
  .is-flex-direction-row-desktop {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-desktop {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:1024px) and (max-width:1215px) {
  .is-flex-direction-row-desktop-only {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-desktop-only {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:1216px) {
  .is-flex-direction-row-widescreen {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-widescreen {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:1216px) and (max-width:1407px) {
  .is-flex-direction-row-widescreen-only {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-widescreen-only {
    justify-content: space-between !important;
  }
}
@media screen and (min-width:1408px) {
  .is-flex-direction-row-fullhd {
    flex-direction: row !important;
  }
  .is-justify-content-space-between-fullhd {
    justify-content: space-between !important;
  }
}

/** Spacing (Responsive) **/
@media screen and (max-width:768px) {
  .m-0-mobile-mobile {margin:0!important}
  .mt-0-mobile {margin-top:0!important}
  .mr-0-mobile {margin-right:0!important}
  .mb-0-mobile {margin-bottom:0!important}
  .ml-0-mobile {margin-left:0!important}
  .mx-0-mobile {margin-left:0!important; margin-right:0!important}
  .my-0-mobile {margin-top:0!important; margin-bottom:0!important}
  .m-1-mobile {margin:.25rem!important}
  .mt-1-mobile {margin-top:.25rem!important}
  .mr-1-mobile {margin-right:.25rem!important}
  .mb-1-mobile {margin-bottom:.25rem!important}
  .ml-1-mobile {margin-left:.25rem!important}
  .mx-1-mobile {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-mobile {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-mobile {margin:.5rem!important}
  .mt-2-mobile {margin-top:.5rem!important}
  .mr-2-mobile {margin-right:.5rem!important}
  .mb-2-mobile {margin-bottom:.5rem!important}
  .ml-2-mobile {margin-left:.5rem!important}
  .mx-2-mobile {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-mobile {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-mobile {margin:.75rem!important}
  .mt-3-mobile {margin-top:.75rem!important}
  .mr-3-mobile {margin-right:.75rem!important}
  .mb-3-mobile {margin-bottom:.75rem!important}
  .ml-3-mobile {margin-left:.75rem!important}
  .mx-3-mobile {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-mobile {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-mobile {margin:1rem!important}
  .mt-4-mobile {margin-top:1rem!important}
  .mr-4-mobile {margin-right:1rem!important}
  .mb-4-mobile {margin-bottom:1rem!important}
  .ml-4-mobile {margin-left:1rem!important}
  .mx-4-mobile {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-mobile {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-mobile {margin:1.5rem!important}
  .mt-5-mobile {margin-top:1.5rem!important}
  .mr-5-mobile {margin-right:1.5rem!important}
  .mb-5-mobile {margin-bottom:1.5rem!important}
  .ml-5-mobile {margin-left:1.5rem!important}
  .mx-5-mobile {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-mobile {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-mobile {margin:3rem!important}
  .mt-6-mobile {margin-top:3rem!important}
  .mr-6-mobile {margin-right:3rem!important}
  .mb-6-mobile {margin-bottom:3rem!important}
  .ml-6-mobile {margin-left:3rem!important}
  .mx-6-mobile {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-mobile {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-mobile {margin:auto!important}
  .mt-auto-mobile {margin-top:auto!important}
  .mr-auto-mobile {margin-right:auto!important}
  .mb-auto-mobile {margin-bottom:auto!important}
  .ml-auto-mobile {margin-left:auto!important}
  .mx-auto-mobile {margin-left:auto!important; margin-right:auto!important}
  .my-auto-mobile {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-mobile {padding:0!important}
  .pt-0-mobile {padding-top:0!important}
  .pr-0-mobile {padding-right:0!important}
  .pb-0-mobile {padding-bottom:0!important}
  .pl-0-mobile {padding-left:0!important}
  .px-0-mobile {padding-left:0!important; padding-right:0!important}
  .py-0-mobile {padding-top:0!important; padding-bottom:0!important}
  .p-1-mobile {padding:.25rem!important}
  .pt-1-mobile {padding-top:.25rem!important}
  .pr-1-mobile {padding-right:.25rem!important}
  .pb-1-mobile {padding-bottom:.25rem!important}
  .pl-1-mobile {padding-left:.25rem!important}
  .px-1-mobile {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-mobile {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-mobile {padding:.5rem!important}
  .pt-2-mobile {padding-top:.5rem!important}
  .pr-2-mobile {padding-right:.5rem!important}
  .pb-2-mobile {padding-bottom:.5rem!important}
  .pl-2-mobile {padding-left:.5rem!important}
  .px-2-mobile {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-mobile {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-mobile {padding:.75rem!important}
  .pt-3-mobile {padding-top:.75rem!important}
  .pr-3-mobile {padding-right:.75rem!important}
  .pb-3-mobile {padding-bottom:.75rem!important}
  .pl-3-mobile {padding-left:.75rem!important}
  .px-3-mobile {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-mobile {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-mobile {padding:1rem!important}
  .pt-4-mobile {padding-top:1rem!important}
  .pr-4-mobile {padding-right:1rem!important}
  .pb-4-mobile {padding-bottom:1rem!important}
  .pl-4-mobile {padding-left:1rem!important}
  .px-4-mobile {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-mobile {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-mobile {padding:1.5rem!important}
  .pt-5-mobile {padding-top:1.5rem!important}
  .pr-5-mobile {padding-right:1.5rem!important}
  .pb-5-mobile {padding-bottom:1.5rem!important}
  .pl-5-mobile {padding-left:1.5rem!important}
  .px-5-mobile {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-mobile {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-mobile {padding:3rem!important}
  .pt-6-mobile {padding-top:3rem!important}
  .pr-6-mobile {padding-right:3rem!important}
  .pb-6-mobile {padding-bottom:3rem!important}
  .pl-6-mobile {padding-left:3rem!important}
  .px-6-mobile {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-mobile {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-mobile {padding:auto!important}
  .pt-auto-mobile {padding-top:auto!important}
  .pr-auto-mobile {padding-right:auto!important}
  .pb-auto-mobile {padding-bottom:auto!important}
  .pl-auto-mobile {padding-left:auto!important}
  .px-auto-mobile {padding-left:auto!important; padding-right:auto!important}
  .py-auto-mobile {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:769px),print {
  .m-0-tablet {margin:0!important}
  .mt-0-tablet {margin-top:0!important}
  .mr-0-tablet {margin-right:0!important}
  .mb-0-tablet {margin-bottom:0!important}
  .ml-0-tablet {margin-left:0!important}
  .mx-0-tablet {margin-left:0!important; margin-right:0!important}
  .my-0-tablet {margin-top:0!important; margin-bottom:0!important}
  .m-1-tablet {margin:.25rem!important}
  .mt-1-tablet {margin-top:.25rem!important}
  .mr-1-tablet {margin-right:.25rem!important}
  .mb-1-tablet {margin-bottom:.25rem!important}
  .ml-1-tablet {margin-left:.25rem!important}
  .mx-1-tablet {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-tablet {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-tablet {margin:.5rem!important}
  .mt-2-tablet {margin-top:.5rem!important}
  .mr-2-tablet {margin-right:.5rem!important}
  .mb-2-tablet {margin-bottom:.5rem!important}
  .ml-2-tablet {margin-left:.5rem!important}
  .mx-2-tablet {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-tablet {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-tablet {margin:.75rem!important}
  .mt-3-tablet {margin-top:.75rem!important}
  .mr-3-tablet {margin-right:.75rem!important}
  .mb-3-tablet {margin-bottom:.75rem!important}
  .ml-3-tablet {margin-left:.75rem!important}
  .mx-3-tablet {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-tablet {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-tablet {margin:1rem!important}
  .mt-4-tablet {margin-top:1rem!important}
  .mr-4-tablet {margin-right:1rem!important}
  .mb-4-tablet {margin-bottom:1rem!important}
  .ml-4-tablet {margin-left:1rem!important}
  .mx-4-tablet {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-tablet {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-tablet {margin:1.5rem!important}
  .mt-5-tablet {margin-top:1.5rem!important}
  .mr-5-tablet {margin-right:1.5rem!important}
  .mb-5-tablet {margin-bottom:1.5rem!important}
  .ml-5-tablet {margin-left:1.5rem!important}
  .mx-5-tablet {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-tablet {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-tablet {margin:3rem!important}
  .mt-6-tablet {margin-top:3rem!important}
  .mr-6-tablet {margin-right:3rem!important}
  .mb-6-tablet {margin-bottom:3rem!important}
  .ml-6-tablet {margin-left:3rem!important}
  .mx-6-tablet {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-tablet {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-tablet {margin:auto!important}
  .mt-auto-tablet {margin-top:auto!important}
  .mr-auto-tablet {margin-right:auto!important}
  .mb-auto-tablet {margin-bottom:auto!important}
  .ml-auto-tablet {margin-left:auto!important}
  .mx-auto-tablet {margin-left:auto!important; margin-right:auto!important}
  .my-auto-tablet {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-tablet {padding:0!important}
  .pt-0-tablet {padding-top:0!important}
  .pr-0-tablet {padding-right:0!important}
  .pb-0-tablet {padding-bottom:0!important}
  .pl-0-tablet {padding-left:0!important}
  .px-0-tablet {padding-left:0!important; padding-right:0!important}
  .py-0-tablet {padding-top:0!important; padding-bottom:0!important}
  .p-1-tablet {padding:.25rem!important}
  .pt-1-tablet {padding-top:.25rem!important}
  .pr-1-tablet {padding-right:.25rem!important}
  .pb-1-tablet {padding-bottom:.25rem!important}
  .pl-1-tablet {padding-left:.25rem!important}
  .px-1-tablet {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-tablet {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-tablet {padding:.5rem!important}
  .pt-2-tablet {padding-top:.5rem!important}
  .pr-2-tablet {padding-right:.5rem!important}
  .pb-2-tablet {padding-bottom:.5rem!important}
  .pl-2-tablet {padding-left:.5rem!important}
  .px-2-tablet {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-tablet {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-tablet {padding:.75rem!important}
  .pt-3-tablet {padding-top:.75rem!important}
  .pr-3-tablet {padding-right:.75rem!important}
  .pb-3-tablet {padding-bottom:.75rem!important}
  .pl-3-tablet {padding-left:.75rem!important}
  .px-3-tablet {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-tablet {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-tablet {padding:1rem!important}
  .pt-4-tablet {padding-top:1rem!important}
  .pr-4-tablet {padding-right:1rem!important}
  .pb-4-tablet {padding-bottom:1rem!important}
  .pl-4-tablet {padding-left:1rem!important}
  .px-4-tablet {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-tablet {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-tablet {padding:1.5rem!important}
  .pt-5-tablet {padding-top:1.5rem!important}
  .pr-5-tablet {padding-right:1.5rem!important}
  .pb-5-tablet {padding-bottom:1.5rem!important}
  .pl-5-tablet {padding-left:1.5rem!important}
  .px-5-tablet {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-tablet {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-tablet {padding:3rem!important}
  .pt-6-tablet {padding-top:3rem!important}
  .pr-6-tablet {padding-right:3rem!important}
  .pb-6-tablet {padding-bottom:3rem!important}
  .pl-6-tablet {padding-left:3rem!important}
  .px-6-tablet {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-tablet {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-tablet {padding:auto!important}
  .pt-auto-tablet {padding-top:auto!important}
  .pr-auto-tablet {padding-right:auto!important}
  .pb-auto-tablet {padding-bottom:auto!important}
  .pl-auto-tablet {padding-left:auto!important}
  .px-auto-tablet {padding-left:auto!important; padding-right:auto!important}
  .py-auto-tablet {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:769px) and (max-width:1023px) {
  .m-0-tablet-only {margin:0!important}
  .mt-0-tablet-only {margin-top:0!important}
  .mr-0-tablet-only {margin-right:0!important}
  .mb-0-tablet-only {margin-bottom:0!important}
  .ml-0-tablet-only {margin-left:0!important}
  .mx-0-tablet-only {margin-left:0!important; margin-right:0!important}
  .my-0-tablet-only {margin-top:0!important; margin-bottom:0!important}
  .m-1-tablet-only {margin:.25rem!important}
  .mt-1-tablet-only {margin-top:.25rem!important}
  .mr-1-tablet-only {margin-right:.25rem!important}
  .mb-1-tablet-only {margin-bottom:.25rem!important}
  .ml-1-tablet-only {margin-left:.25rem!important}
  .mx-1-tablet-only {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-tablet-only {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-tablet-only {margin:.5rem!important}
  .mt-2-tablet-only {margin-top:.5rem!important}
  .mr-2-tablet-only {margin-right:.5rem!important}
  .mb-2-tablet-only {margin-bottom:.5rem!important}
  .ml-2-tablet-only {margin-left:.5rem!important}
  .mx-2-tablet-only {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-tablet-only {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-tablet-only {margin:.75rem!important}
  .mt-3-tablet-only {margin-top:.75rem!important}
  .mr-3-tablet-only {margin-right:.75rem!important}
  .mb-3-tablet-only {margin-bottom:.75rem!important}
  .ml-3-tablet-only {margin-left:.75rem!important}
  .mx-3-tablet-only {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-tablet-only {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-tablet-only {margin:1rem!important}
  .mt-4-tablet-only {margin-top:1rem!important}
  .mr-4-tablet-only {margin-right:1rem!important}
  .mb-4-tablet-only {margin-bottom:1rem!important}
  .ml-4-tablet-only {margin-left:1rem!important}
  .mx-4-tablet-only {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-tablet-only {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-tablet-only {margin:1.5rem!important}
  .mt-5-tablet-only {margin-top:1.5rem!important}
  .mr-5-tablet-only {margin-right:1.5rem!important}
  .mb-5-tablet-only {margin-bottom:1.5rem!important}
  .ml-5-tablet-only {margin-left:1.5rem!important}
  .mx-5-tablet-only {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-tablet-only {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-tablet-only {margin:3rem!important}
  .mt-6-tablet-only {margin-top:3rem!important}
  .mr-6-tablet-only {margin-right:3rem!important}
  .mb-6-tablet-only {margin-bottom:3rem!important}
  .ml-6-tablet-only {margin-left:3rem!important}
  .mx-6-tablet-only {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-tablet-only {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-tablet-only {margin:auto!important}
  .mt-auto-tablet-only {margin-top:auto!important}
  .mr-auto-tablet-only {margin-right:auto!important}
  .mb-auto-tablet-only {margin-bottom:auto!important}
  .ml-auto-tablet-only {margin-left:auto!important}
  .mx-auto-tablet-only {margin-left:auto!important; margin-right:auto!important}
  .my-auto-tablet-only {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-tablet-only {padding:0!important}
  .pt-0-tablet-only {padding-top:0!important}
  .pr-0-tablet-only {padding-right:0!important}
  .pb-0-tablet-only {padding-bottom:0!important}
  .pl-0-tablet-only {padding-left:0!important}
  .px-0-tablet-only {padding-left:0!important; padding-right:0!important}
  .py-0-tablet-only {padding-top:0!important; padding-bottom:0!important}
  .p-1-tablet-only {padding:.25rem!important}
  .pt-1-tablet-only {padding-top:.25rem!important}
  .pr-1-tablet-only {padding-right:.25rem!important}
  .pb-1-tablet-only {padding-bottom:.25rem!important}
  .pl-1-tablet-only {padding-left:.25rem!important}
  .px-1-tablet-only {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-tablet-only {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-tablet-only {padding:.5rem!important}
  .pt-2-tablet-only {padding-top:.5rem!important}
  .pr-2-tablet-only {padding-right:.5rem!important}
  .pb-2-tablet-only {padding-bottom:.5rem!important}
  .pl-2-tablet-only {padding-left:.5rem!important}
  .px-2-tablet-only {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-tablet-only {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-tablet-only {padding:.75rem!important}
  .pt-3-tablet-only {padding-top:.75rem!important}
  .pr-3-tablet-only {padding-right:.75rem!important}
  .pb-3-tablet-only {padding-bottom:.75rem!important}
  .pl-3-tablet-only {padding-left:.75rem!important}
  .px-3-tablet-only {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-tablet-only {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-tablet-only {padding:1rem!important}
  .pt-4-tablet-only {padding-top:1rem!important}
  .pr-4-tablet-only {padding-right:1rem!important}
  .pb-4-tablet-only {padding-bottom:1rem!important}
  .pl-4-tablet-only {padding-left:1rem!important}
  .px-4-tablet-only {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-tablet-only {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-tablet-only {padding:1.5rem!important}
  .pt-5-tablet-only {padding-top:1.5rem!important}
  .pr-5-tablet-only {padding-right:1.5rem!important}
  .pb-5-tablet-only {padding-bottom:1.5rem!important}
  .pl-5-tablet-only {padding-left:1.5rem!important}
  .px-5-tablet-only {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-tablet-only {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-tablet-only {padding:3rem!important}
  .pt-6-tablet-only {padding-top:3rem!important}
  .pr-6-tablet-only {padding-right:3rem!important}
  .pb-6-tablet-only {padding-bottom:3rem!important}
  .pl-6-tablet-only {padding-left:3rem!important}
  .px-6-tablet-only {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-tablet-only {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-tablet-only {padding:auto!important}
  .pt-auto-tablet-only {padding-top:auto!important}
  .pr-auto-tablet-only {padding-right:auto!important}
  .pb-auto-tablet-only {padding-bottom:auto!important}
  .pl-auto-tablet-only {padding-left:auto!important}
  .px-auto-tablet-only {padding-left:auto!important; padding-right:auto!important}
  .py-auto-tablet-only {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (max-width:1023px) {
  .m-0-touch {margin:0!important}
  .mt-0-touch {margin-top:0!important}
  .mr-0-touch {margin-right:0!important}
  .mb-0-touch {margin-bottom:0!important}
  .ml-0-touch {margin-left:0!important}
  .mx-0-touch {margin-left:0!important; margin-right:0!important}
  .my-0-touch {margin-top:0!important; margin-bottom:0!important}
  .m-1-touch {margin:.25rem!important}
  .mt-1-touch {margin-top:.25rem!important}
  .mr-1-touch {margin-right:.25rem!important}
  .mb-1-touch {margin-bottom:.25rem!important}
  .ml-1-touch {margin-left:.25rem!important}
  .mx-1-touch {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-touch {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-touch {margin:.5rem!important}
  .mt-2-touch {margin-top:.5rem!important}
  .mr-2-touch {margin-right:.5rem!important}
  .mb-2-touch {margin-bottom:.5rem!important}
  .ml-2-touch {margin-left:.5rem!important}
  .mx-2-touch {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-touch {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-touch {margin:.75rem!important}
  .mt-3-touch {margin-top:.75rem!important}
  .mr-3-touch {margin-right:.75rem!important}
  .mb-3-touch {margin-bottom:.75rem!important}
  .ml-3-touch {margin-left:.75rem!important}
  .mx-3-touch {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-touch {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-touch {margin:1rem!important}
  .mt-4-touch {margin-top:1rem!important}
  .mr-4-touch {margin-right:1rem!important}
  .mb-4-touch {margin-bottom:1rem!important}
  .ml-4-touch {margin-left:1rem!important}
  .mx-4-touch {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-touch {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-touch {margin:1.5rem!important}
  .mt-5-touch {margin-top:1.5rem!important}
  .mr-5-touch {margin-right:1.5rem!important}
  .mb-5-touch {margin-bottom:1.5rem!important}
  .ml-5-touch {margin-left:1.5rem!important}
  .mx-5-touch {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-touch {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-touch {margin:3rem!important}
  .mt-6-touch {margin-top:3rem!important}
  .mr-6-touch {margin-right:3rem!important}
  .mb-6-touch {margin-bottom:3rem!important}
  .ml-6-touch {margin-left:3rem!important}
  .mx-6-touch {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-touch {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-touch {margin:auto!important}
  .mt-auto-touch {margin-top:auto!important}
  .mr-auto-touch {margin-right:auto!important}
  .mb-auto-touch {margin-bottom:auto!important}
  .ml-auto-touch {margin-left:auto!important}
  .mx-auto-touch {margin-left:auto!important; margin-right:auto!important}
  .my-auto-touch {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-touch {padding:0!important}
  .pt-0-touch {padding-top:0!important}
  .pr-0-touch {padding-right:0!important}
  .pb-0-touch {padding-bottom:0!important}
  .pl-0-touch {padding-left:0!important}
  .px-0-touch {padding-left:0!important; padding-right:0!important}
  .py-0-touch {padding-top:0!important; padding-bottom:0!important}
  .p-1-touch {padding:.25rem!important}
  .pt-1-touch {padding-top:.25rem!important}
  .pr-1-touch {padding-right:.25rem!important}
  .pb-1-touch {padding-bottom:.25rem!important}
  .pl-1-touch {padding-left:.25rem!important}
  .px-1-touch {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-touch {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-touch {padding:.5rem!important}
  .pt-2-touch {padding-top:.5rem!important}
  .pr-2-touch {padding-right:.5rem!important}
  .pb-2-touch {padding-bottom:.5rem!important}
  .pl-2-touch {padding-left:.5rem!important}
  .px-2-touch {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-touch {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-touch {padding:.75rem!important}
  .pt-3-touch {padding-top:.75rem!important}
  .pr-3-touch {padding-right:.75rem!important}
  .pb-3-touch {padding-bottom:.75rem!important}
  .pl-3-touch {padding-left:.75rem!important}
  .px-3-touch {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-touch {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-touch {padding:1rem!important}
  .pt-4-touch {padding-top:1rem!important}
  .pr-4-touch {padding-right:1rem!important}
  .pb-4-touch {padding-bottom:1rem!important}
  .pl-4-touch {padding-left:1rem!important}
  .px-4-touch {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-touch {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-touch {padding:1.5rem!important}
  .pt-5-touch {padding-top:1.5rem!important}
  .pr-5-touch {padding-right:1.5rem!important}
  .pb-5-touch {padding-bottom:1.5rem!important}
  .pl-5-touch {padding-left:1.5rem!important}
  .px-5-touch {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-touch {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-touch {padding:3rem!important}
  .pt-6-touch {padding-top:3rem!important}
  .pr-6-touch {padding-right:3rem!important}
  .pb-6-touch {padding-bottom:3rem!important}
  .pl-6-touch {padding-left:3rem!important}
  .px-6-touch {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-touch {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-touch {padding:auto!important}
  .pt-auto-touch {padding-top:auto!important}
  .pr-auto-touch {padding-right:auto!important}
  .pb-auto-touch {padding-bottom:auto!important}
  .pl-auto-touch {padding-left:auto!important}
  .px-auto-touch {padding-left:auto!important; padding-right:auto!important}
  .py-auto-touch {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:1024px) {
  .m-0-desktop {margin:0!important}
  .mt-0-desktop {margin-top:0!important}
  .mr-0-desktop {margin-right:0!important}
  .mb-0-desktop {margin-bottom:0!important}
  .ml-0-desktop {margin-left:0!important}
  .mx-0-desktop {margin-left:0!important; margin-right:0!important}
  .my-0-desktop {margin-top:0!important; margin-bottom:0!important}
  .m-1-desktop {margin:.25rem!important}
  .mt-1-desktop {margin-top:.25rem!important}
  .mr-1-desktop {margin-right:.25rem!important}
  .mb-1-desktop {margin-bottom:.25rem!important}
  .ml-1-desktop {margin-left:.25rem!important}
  .mx-1-desktop {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-desktop {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-desktop {margin:.5rem!important}
  .mt-2-desktop {margin-top:.5rem!important}
  .mr-2-desktop {margin-right:.5rem!important}
  .mb-2-desktop {margin-bottom:.5rem!important}
  .ml-2-desktop {margin-left:.5rem!important}
  .mx-2-desktop {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-desktop {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-desktop {margin:.75rem!important}
  .mt-3-desktop {margin-top:.75rem!important}
  .mr-3-desktop {margin-right:.75rem!important}
  .mb-3-desktop {margin-bottom:.75rem!important}
  .ml-3-desktop {margin-left:.75rem!important}
  .mx-3-desktop {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-desktop {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-desktop {margin:1rem!important}
  .mt-4-desktop {margin-top:1rem!important}
  .mr-4-desktop {margin-right:1rem!important}
  .mb-4-desktop {margin-bottom:1rem!important}
  .ml-4-desktop {margin-left:1rem!important}
  .mx-4-desktop {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-desktop {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-desktop {margin:1.5rem!important}
  .mt-5-desktop {margin-top:1.5rem!important}
  .mr-5-desktop {margin-right:1.5rem!important}
  .mb-5-desktop {margin-bottom:1.5rem!important}
  .ml-5-desktop {margin-left:1.5rem!important}
  .mx-5-desktop {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-desktop {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-desktop {margin:3rem!important}
  .mt-6-desktop {margin-top:3rem!important}
  .mr-6-desktop {margin-right:3rem!important}
  .mb-6-desktop {margin-bottom:3rem!important}
  .ml-6-desktop {margin-left:3rem!important}
  .mx-6-desktop {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-desktop {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-desktop {margin:auto!important}
  .mt-auto-desktop {margin-top:auto!important}
  .mr-auto-desktop {margin-right:auto!important}
  .mb-auto-desktop {margin-bottom:auto!important}
  .ml-auto-desktop {margin-left:auto!important}
  .mx-auto-desktop {margin-left:auto!important; margin-right:auto!important}
  .my-auto-desktop {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-desktop {padding:0!important}
  .pt-0-desktop {padding-top:0!important}
  .pr-0-desktop {padding-right:0!important}
  .pb-0-desktop {padding-bottom:0!important}
  .pl-0-desktop {padding-left:0!important}
  .px-0-desktop {padding-left:0!important; padding-right:0!important}
  .py-0-desktop {padding-top:0!important; padding-bottom:0!important}
  .p-1-desktop {padding:.25rem!important}
  .pt-1-desktop {padding-top:.25rem!important}
  .pr-1-desktop {padding-right:.25rem!important}
  .pb-1-desktop {padding-bottom:.25rem!important}
  .pl-1-desktop {padding-left:.25rem!important}
  .px-1-desktop {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-desktop {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-desktop {padding:.5rem!important}
  .pt-2-desktop {padding-top:.5rem!important}
  .pr-2-desktop {padding-right:.5rem!important}
  .pb-2-desktop {padding-bottom:.5rem!important}
  .pl-2-desktop {padding-left:.5rem!important}
  .px-2-desktop {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-desktop {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-desktop {padding:.75rem!important}
  .pt-3-desktop {padding-top:.75rem!important}
  .pr-3-desktop {padding-right:.75rem!important}
  .pb-3-desktop {padding-bottom:.75rem!important}
  .pl-3-desktop {padding-left:.75rem!important}
  .px-3-desktop {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-desktop {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-desktop {padding:1rem!important}
  .pt-4-desktop {padding-top:1rem!important}
  .pr-4-desktop {padding-right:1rem!important}
  .pb-4-desktop {padding-bottom:1rem!important}
  .pl-4-desktop {padding-left:1rem!important}
  .px-4-desktop {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-desktop {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-desktop {padding:1.5rem!important}
  .pt-5-desktop {padding-top:1.5rem!important}
  .pr-5-desktop {padding-right:1.5rem!important}
  .pb-5-desktop {padding-bottom:1.5rem!important}
  .pl-5-desktop {padding-left:1.5rem!important}
  .px-5-desktop {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-desktop {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-desktop {padding:3rem!important}
  .pt-6-desktop {padding-top:3rem!important}
  .pr-6-desktop {padding-right:3rem!important}
  .pb-6-desktop {padding-bottom:3rem!important}
  .pl-6-desktop {padding-left:3rem!important}
  .px-6-desktop {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-desktop {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-desktop {padding:auto!important}
  .pt-auto-desktop {padding-top:auto!important}
  .pr-auto-desktop {padding-right:auto!important}
  .pb-auto-desktop {padding-bottom:auto!important}
  .pl-auto-desktop {padding-left:auto!important}
  .px-auto-desktop {padding-left:auto!important; padding-right:auto!important}
  .py-auto-desktop {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:1024px) and (max-width:1215px) {
  .m-0-desktop-only {margin:0!important}
  .mt-0-desktop-only {margin-top:0!important}
  .mr-0-desktop-only {margin-right:0!important}
  .mb-0-desktop-only {margin-bottom:0!important}
  .ml-0-desktop-only {margin-left:0!important}
  .mx-0-desktop-only {margin-left:0!important; margin-right:0!important}
  .my-0-desktop-only {margin-top:0!important; margin-bottom:0!important}
  .m-1-desktop-only {margin:.25rem!important}
  .mt-1-desktop-only {margin-top:.25rem!important}
  .mr-1-desktop-only {margin-right:.25rem!important}
  .mb-1-desktop-only {margin-bottom:.25rem!important}
  .ml-1-desktop-only {margin-left:.25rem!important}
  .mx-1-desktop-only {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-desktop-only {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-desktop-only {margin:.5rem!important}
  .mt-2-desktop-only {margin-top:.5rem!important}
  .mr-2-desktop-only {margin-right:.5rem!important}
  .mb-2-desktop-only {margin-bottom:.5rem!important}
  .ml-2-desktop-only {margin-left:.5rem!important}
  .mx-2-desktop-only {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-desktop-only {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-desktop-only {margin:.75rem!important}
  .mt-3-desktop-only {margin-top:.75rem!important}
  .mr-3-desktop-only {margin-right:.75rem!important}
  .mb-3-desktop-only {margin-bottom:.75rem!important}
  .ml-3-desktop-only {margin-left:.75rem!important}
  .mx-3-desktop-only {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-desktop-only {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-desktop-only {margin:1rem!important}
  .mt-4-desktop-only {margin-top:1rem!important}
  .mr-4-desktop-only {margin-right:1rem!important}
  .mb-4-desktop-only {margin-bottom:1rem!important}
  .ml-4-desktop-only {margin-left:1rem!important}
  .mx-4-desktop-only {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-desktop-only {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-desktop-only {margin:1.5rem!important}
  .mt-5-desktop-only {margin-top:1.5rem!important}
  .mr-5-desktop-only {margin-right:1.5rem!important}
  .mb-5-desktop-only {margin-bottom:1.5rem!important}
  .ml-5-desktop-only {margin-left:1.5rem!important}
  .mx-5-desktop-only {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-desktop-only {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-desktop-only {margin:3rem!important}
  .mt-6-desktop-only {margin-top:3rem!important}
  .mr-6-desktop-only {margin-right:3rem!important}
  .mb-6-desktop-only {margin-bottom:3rem!important}
  .ml-6-desktop-only {margin-left:3rem!important}
  .mx-6-desktop-only {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-desktop-only {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-desktop-only {margin:auto!important}
  .mt-auto-desktop-only {margin-top:auto!important}
  .mr-auto-desktop-only {margin-right:auto!important}
  .mb-auto-desktop-only {margin-bottom:auto!important}
  .ml-auto-desktop-only {margin-left:auto!important}
  .mx-auto-desktop-only {margin-left:auto!important; margin-right:auto!important}
  .my-auto-desktop-only {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-desktop-only {padding:0!important}
  .pt-0-desktop-only {padding-top:0!important}
  .pr-0-desktop-only {padding-right:0!important}
  .pb-0-desktop-only {padding-bottom:0!important}
  .pl-0-desktop-only {padding-left:0!important}
  .px-0-desktop-only {padding-left:0!important; padding-right:0!important}
  .py-0-desktop-only {padding-top:0!important; padding-bottom:0!important}
  .p-1-desktop-only {padding:.25rem!important}
  .pt-1-desktop-only {padding-top:.25rem!important}
  .pr-1-desktop-only {padding-right:.25rem!important}
  .pb-1-desktop-only {padding-bottom:.25rem!important}
  .pl-1-desktop-only {padding-left:.25rem!important}
  .px-1-desktop-only {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-desktop-only {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-desktop-only {padding:.5rem!important}
  .pt-2-desktop-only {padding-top:.5rem!important}
  .pr-2-desktop-only {padding-right:.5rem!important}
  .pb-2-desktop-only {padding-bottom:.5rem!important}
  .pl-2-desktop-only {padding-left:.5rem!important}
  .px-2-desktop-only {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-desktop-only {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-desktop-only {padding:.75rem!important}
  .pt-3-desktop-only {padding-top:.75rem!important}
  .pr-3-desktop-only {padding-right:.75rem!important}
  .pb-3-desktop-only {padding-bottom:.75rem!important}
  .pl-3-desktop-only {padding-left:.75rem!important}
  .px-3-desktop-only {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-desktop-only {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-desktop-only {padding:1rem!important}
  .pt-4-desktop-only {padding-top:1rem!important}
  .pr-4-desktop-only {padding-right:1rem!important}
  .pb-4-desktop-only {padding-bottom:1rem!important}
  .pl-4-desktop-only {padding-left:1rem!important}
  .px-4-desktop-only {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-desktop-only {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-desktop-only {padding:1.5rem!important}
  .pt-5-desktop-only {padding-top:1.5rem!important}
  .pr-5-desktop-only {padding-right:1.5rem!important}
  .pb-5-desktop-only {padding-bottom:1.5rem!important}
  .pl-5-desktop-only {padding-left:1.5rem!important}
  .px-5-desktop-only {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-desktop-only {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-desktop-only {padding:3rem!important}
  .pt-6-desktop-only {padding-top:3rem!important}
  .pr-6-desktop-only {padding-right:3rem!important}
  .pb-6-desktop-only {padding-bottom:3rem!important}
  .pl-6-desktop-only {padding-left:3rem!important}
  .px-6-desktop-only {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-desktop-only {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-desktop-only {padding:auto!important}
  .pt-auto-desktop-only {padding-top:auto!important}
  .pr-auto-desktop-only {padding-right:auto!important}
  .pb-auto-desktop-only {padding-bottom:auto!important}
  .pl-auto-desktop-only {padding-left:auto!important}
  .px-auto-desktop-only {padding-left:auto!important; padding-right:auto!important}
  .py-auto-desktop-only {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:1216px) {
  .m-0-widescreen {margin:0!important}
  .mt-0-widescreen {margin-top:0!important}
  .mr-0-widescreen {margin-right:0!important}
  .mb-0-widescreen {margin-bottom:0!important}
  .ml-0-widescreen {margin-left:0!important}
  .mx-0-widescreen {margin-left:0!important; margin-right:0!important}
  .my-0-widescreen {margin-top:0!important; margin-bottom:0!important}
  .m-1-widescreen {margin:.25rem!important}
  .mt-1-widescreen {margin-top:.25rem!important}
  .mr-1-widescreen {margin-right:.25rem!important}
  .mb-1-widescreen {margin-bottom:.25rem!important}
  .ml-1-widescreen {margin-left:.25rem!important}
  .mx-1-widescreen {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-widescreen {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-widescreen {margin:.5rem!important}
  .mt-2-widescreen {margin-top:.5rem!important}
  .mr-2-widescreen {margin-right:.5rem!important}
  .mb-2-widescreen {margin-bottom:.5rem!important}
  .ml-2-widescreen {margin-left:.5rem!important}
  .mx-2-widescreen {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-widescreen {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-widescreen {margin:.75rem!important}
  .mt-3-widescreen {margin-top:.75rem!important}
  .mr-3-widescreen {margin-right:.75rem!important}
  .mb-3-widescreen {margin-bottom:.75rem!important}
  .ml-3-widescreen {margin-left:.75rem!important}
  .mx-3-widescreen {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-widescreen {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-widescreen {margin:1rem!important}
  .mt-4-widescreen {margin-top:1rem!important}
  .mr-4-widescreen {margin-right:1rem!important}
  .mb-4-widescreen {margin-bottom:1rem!important}
  .ml-4-widescreen {margin-left:1rem!important}
  .mx-4-widescreen {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-widescreen {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-widescreen {margin:1.5rem!important}
  .mt-5-widescreen {margin-top:1.5rem!important}
  .mr-5-widescreen {margin-right:1.5rem!important}
  .mb-5-widescreen {margin-bottom:1.5rem!important}
  .ml-5-widescreen {margin-left:1.5rem!important}
  .mx-5-widescreen {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-widescreen {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-widescreen {margin:3rem!important}
  .mt-6-widescreen {margin-top:3rem!important}
  .mr-6-widescreen {margin-right:3rem!important}
  .mb-6-widescreen {margin-bottom:3rem!important}
  .ml-6-widescreen {margin-left:3rem!important}
  .mx-6-widescreen {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-widescreen {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-widescreen {margin:auto!important}
  .mt-auto-widescreen {margin-top:auto!important}
  .mr-auto-widescreen {margin-right:auto!important}
  .mb-auto-widescreen {margin-bottom:auto!important}
  .ml-auto-widescreen {margin-left:auto!important}
  .mx-auto-widescreen {margin-left:auto!important; margin-right:auto!important}
  .my-auto-widescreen {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-widescreen {padding:0!important}
  .pt-0-widescreen {padding-top:0!important}
  .pr-0-widescreen {padding-right:0!important}
  .pb-0-widescreen {padding-bottom:0!important}
  .pl-0-widescreen {padding-left:0!important}
  .px-0-widescreen {padding-left:0!important; padding-right:0!important}
  .py-0-widescreen {padding-top:0!important; padding-bottom:0!important}
  .p-1-widescreen {padding:.25rem!important}
  .pt-1-widescreen {padding-top:.25rem!important}
  .pr-1-widescreen {padding-right:.25rem!important}
  .pb-1-widescreen {padding-bottom:.25rem!important}
  .pl-1-widescreen {padding-left:.25rem!important}
  .px-1-widescreen {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-widescreen {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-widescreen {padding:.5rem!important}
  .pt-2-widescreen {padding-top:.5rem!important}
  .pr-2-widescreen {padding-right:.5rem!important}
  .pb-2-widescreen {padding-bottom:.5rem!important}
  .pl-2-widescreen {padding-left:.5rem!important}
  .px-2-widescreen {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-widescreen {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-widescreen {padding:.75rem!important}
  .pt-3-widescreen {padding-top:.75rem!important}
  .pr-3-widescreen {padding-right:.75rem!important}
  .pb-3-widescreen {padding-bottom:.75rem!important}
  .pl-3-widescreen {padding-left:.75rem!important}
  .px-3-widescreen {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-widescreen {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-widescreen {padding:1rem!important}
  .pt-4-widescreen {padding-top:1rem!important}
  .pr-4-widescreen {padding-right:1rem!important}
  .pb-4-widescreen {padding-bottom:1rem!important}
  .pl-4-widescreen {padding-left:1rem!important}
  .px-4-widescreen {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-widescreen {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-widescreen {padding:1.5rem!important}
  .pt-5-widescreen {padding-top:1.5rem!important}
  .pr-5-widescreen {padding-right:1.5rem!important}
  .pb-5-widescreen {padding-bottom:1.5rem!important}
  .pl-5-widescreen {padding-left:1.5rem!important}
  .px-5-widescreen {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-widescreen {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-widescreen {padding:3rem!important}
  .pt-6-widescreen {padding-top:3rem!important}
  .pr-6-widescreen {padding-right:3rem!important}
  .pb-6-widescreen {padding-bottom:3rem!important}
  .pl-6-widescreen {padding-left:3rem!important}
  .px-6-widescreen {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-widescreen {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-widescreen {padding:auto!important}
  .pt-auto-widescreen {padding-top:auto!important}
  .pr-auto-widescreen {padding-right:auto!important}
  .pb-auto-widescreen {padding-bottom:auto!important}
  .pl-auto-widescreen {padding-left:auto!important}
  .px-auto-widescreen {padding-left:auto!important; padding-right:auto!important}
  .py-auto-widescreen {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:1216px) and (max-width:1407px) {
  .m-0-widescreen-only {margin:0!important}
  .mt-0-widescreen-only {margin-top:0!important}
  .mr-0-widescreen-only {margin-right:0!important}
  .mb-0-widescreen-only {margin-bottom:0!important}
  .ml-0-widescreen-only {margin-left:0!important}
  .mx-0-widescreen-only {margin-left:0!important; margin-right:0!important}
  .my-0-widescreen-only {margin-top:0!important; margin-bottom:0!important}
  .m-1-widescreen-only {margin:.25rem!important}
  .mt-1-widescreen-only {margin-top:.25rem!important}
  .mr-1-widescreen-only {margin-right:.25rem!important}
  .mb-1-widescreen-only {margin-bottom:.25rem!important}
  .ml-1-widescreen-only {margin-left:.25rem!important}
  .mx-1-widescreen-only {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-widescreen-only {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-widescreen-only {margin:.5rem!important}
  .mt-2-widescreen-only {margin-top:.5rem!important}
  .mr-2-widescreen-only {margin-right:.5rem!important}
  .mb-2-widescreen-only {margin-bottom:.5rem!important}
  .ml-2-widescreen-only {margin-left:.5rem!important}
  .mx-2-widescreen-only {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-widescreen-only {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-widescreen-only {margin:.75rem!important}
  .mt-3-widescreen-only {margin-top:.75rem!important}
  .mr-3-widescreen-only {margin-right:.75rem!important}
  .mb-3-widescreen-only {margin-bottom:.75rem!important}
  .ml-3-widescreen-only {margin-left:.75rem!important}
  .mx-3-widescreen-only {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-widescreen-only {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-widescreen-only {margin:1rem!important}
  .mt-4-widescreen-only {margin-top:1rem!important}
  .mr-4-widescreen-only {margin-right:1rem!important}
  .mb-4-widescreen-only {margin-bottom:1rem!important}
  .ml-4-widescreen-only {margin-left:1rem!important}
  .mx-4-widescreen-only {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-widescreen-only {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-widescreen-only {margin:1.5rem!important}
  .mt-5-widescreen-only {margin-top:1.5rem!important}
  .mr-5-widescreen-only {margin-right:1.5rem!important}
  .mb-5-widescreen-only {margin-bottom:1.5rem!important}
  .ml-5-widescreen-only {margin-left:1.5rem!important}
  .mx-5-widescreen-only {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-widescreen-only {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-widescreen-only {margin:3rem!important}
  .mt-6-widescreen-only {margin-top:3rem!important}
  .mr-6-widescreen-only {margin-right:3rem!important}
  .mb-6-widescreen-only {margin-bottom:3rem!important}
  .ml-6-widescreen-only {margin-left:3rem!important}
  .mx-6-widescreen-only {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-widescreen-only {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-widescreen-only {margin:auto!important}
  .mt-auto-widescreen-only {margin-top:auto!important}
  .mr-auto-widescreen-only {margin-right:auto!important}
  .mb-auto-widescreen-only {margin-bottom:auto!important}
  .ml-auto-widescreen-only {margin-left:auto!important}
  .mx-auto-widescreen-only {margin-left:auto!important; margin-right:auto!important}
  .my-auto-widescreen-only {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-widescreen-only {padding:0!important}
  .pt-0-widescreen-only {padding-top:0!important}
  .pr-0-widescreen-only {padding-right:0!important}
  .pb-0-widescreen-only {padding-bottom:0!important}
  .pl-0-widescreen-only {padding-left:0!important}
  .px-0-widescreen-only {padding-left:0!important; padding-right:0!important}
  .py-0-widescreen-only {padding-top:0!important; padding-bottom:0!important}
  .p-1-widescreen-only {padding:.25rem!important}
  .pt-1-widescreen-only {padding-top:.25rem!important}
  .pr-1-widescreen-only {padding-right:.25rem!important}
  .pb-1-widescreen-only {padding-bottom:.25rem!important}
  .pl-1-widescreen-only {padding-left:.25rem!important}
  .px-1-widescreen-only {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-widescreen-only {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-widescreen-only {padding:.5rem!important}
  .pt-2-widescreen-only {padding-top:.5rem!important}
  .pr-2-widescreen-only {padding-right:.5rem!important}
  .pb-2-widescreen-only {padding-bottom:.5rem!important}
  .pl-2-widescreen-only {padding-left:.5rem!important}
  .px-2-widescreen-only {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-widescreen-only {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-widescreen-only {padding:.75rem!important}
  .pt-3-widescreen-only {padding-top:.75rem!important}
  .pr-3-widescreen-only {padding-right:.75rem!important}
  .pb-3-widescreen-only {padding-bottom:.75rem!important}
  .pl-3-widescreen-only {padding-left:.75rem!important}
  .px-3-widescreen-only {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-widescreen-only {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-widescreen-only {padding:1rem!important}
  .pt-4-widescreen-only {padding-top:1rem!important}
  .pr-4-widescreen-only {padding-right:1rem!important}
  .pb-4-widescreen-only {padding-bottom:1rem!important}
  .pl-4-widescreen-only {padding-left:1rem!important}
  .px-4-widescreen-only {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-widescreen-only {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-widescreen-only {padding:1.5rem!important}
  .pt-5-widescreen-only {padding-top:1.5rem!important}
  .pr-5-widescreen-only {padding-right:1.5rem!important}
  .pb-5-widescreen-only {padding-bottom:1.5rem!important}
  .pl-5-widescreen-only {padding-left:1.5rem!important}
  .px-5-widescreen-only {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-widescreen-only {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-widescreen-only {padding:3rem!important}
  .pt-6-widescreen-only {padding-top:3rem!important}
  .pr-6-widescreen-only {padding-right:3rem!important}
  .pb-6-widescreen-only {padding-bottom:3rem!important}
  .pl-6-widescreen-only {padding-left:3rem!important}
  .px-6-widescreen-only {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-widescreen-only {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-widescreen-only {padding:auto!important}
  .pt-auto-widescreen-only {padding-top:auto!important}
  .pr-auto-widescreen-only {padding-right:auto!important}
  .pb-auto-widescreen-only {padding-bottom:auto!important}
  .pl-auto-widescreen-only {padding-left:auto!important}
  .px-auto-widescreen-only {padding-left:auto!important; padding-right:auto!important}
  .py-auto-widescreen-only {padding-top:auto!important; padding-bottom:auto!important}
}
@media screen and (min-width:1408px) {
  .m-0-fullhd {margin:0!important}
  .mt-0-fullhd {margin-top:0!important}
  .mr-0-fullhd {margin-right:0!important}
  .mb-0-fullhd {margin-bottom:0!important}
  .ml-0-fullhd {margin-left:0!important}
  .mx-0-fullhd {margin-left:0!important; margin-right:0!important}
  .my-0-fullhd {margin-top:0!important; margin-bottom:0!important}
  .m-1-fullhd {margin:.25rem!important}
  .mt-1-fullhd {margin-top:.25rem!important}
  .mr-1-fullhd {margin-right:.25rem!important}
  .mb-1-fullhd {margin-bottom:.25rem!important}
  .ml-1-fullhd {margin-left:.25rem!important}
  .mx-1-fullhd {margin-left:.25rem!important; margin-right:.25rem!important}
  .my-1-fullhd {margin-top:.25rem!important; margin-bottom:.25rem!important}
  .m-2-fullhd {margin:.5rem!important}
  .mt-2-fullhd {margin-top:.5rem!important}
  .mr-2-fullhd {margin-right:.5rem!important}
  .mb-2-fullhd {margin-bottom:.5rem!important}
  .ml-2-fullhd {margin-left:.5rem!important}
  .mx-2-fullhd {margin-left:.5rem!important; margin-right:.5rem!important}
  .my-2-fullhd {margin-top:.5rem!important; margin-bottom:.5rem!important}
  .m-3-fullhd {margin:.75rem!important}
  .mt-3-fullhd {margin-top:.75rem!important}
  .mr-3-fullhd {margin-right:.75rem!important}
  .mb-3-fullhd {margin-bottom:.75rem!important}
  .ml-3-fullhd {margin-left:.75rem!important}
  .mx-3-fullhd {margin-left:.75rem!important; margin-right:.75rem!important}
  .my-3-fullhd {margin-top:.75rem!important; margin-bottom:.75rem!important}
  .m-4-fullhd {margin:1rem!important}
  .mt-4-fullhd {margin-top:1rem!important}
  .mr-4-fullhd {margin-right:1rem!important}
  .mb-4-fullhd {margin-bottom:1rem!important}
  .ml-4-fullhd {margin-left:1rem!important}
  .mx-4-fullhd {margin-left:1rem!important; margin-right:1rem!important}
  .my-4-fullhd {margin-top:1rem!important; margin-bottom:1rem!important}
  .m-5-fullhd {margin:1.5rem!important}
  .mt-5-fullhd {margin-top:1.5rem!important}
  .mr-5-fullhd {margin-right:1.5rem!important}
  .mb-5-fullhd {margin-bottom:1.5rem!important}
  .ml-5-fullhd {margin-left:1.5rem!important}
  .mx-5-fullhd {margin-left:1.5rem!important; margin-right:1.5rem!important}
  .my-5-fullhd {margin-top:1.5rem!important; margin-bottom:1.5rem!important}
  .m-6-fullhd {margin:3rem!important}
  .mt-6-fullhd {margin-top:3rem!important}
  .mr-6-fullhd {margin-right:3rem!important}
  .mb-6-fullhd {margin-bottom:3rem!important}
  .ml-6-fullhd {margin-left:3rem!important}
  .mx-6-fullhd {margin-left:3rem!important; margin-right:3rem!important}
  .my-6-fullhd {margin-top:3rem!important; margin-bottom:3rem!important}
  .m-auto-fullhd {margin:auto!important}
  .mt-auto-fullhd {margin-top:auto!important}
  .mr-auto-fullhd {margin-right:auto!important}
  .mb-auto-fullhd {margin-bottom:auto!important}
  .ml-auto-fullhd {margin-left:auto!important}
  .mx-auto-fullhd {margin-left:auto!important; margin-right:auto!important}
  .my-auto-fullhd {margin-top:auto!important; margin-bottom:auto!important}
  .p-0-fullhd {padding:0!important}
  .pt-0-fullhd {padding-top:0!important}
  .pr-0-fullhd {padding-right:0!important}
  .pb-0-fullhd {padding-bottom:0!important}
  .pl-0-fullhd {padding-left:0!important}
  .px-0-fullhd {padding-left:0!important; padding-right:0!important}
  .py-0-fullhd {padding-top:0!important; padding-bottom:0!important}
  .p-1-fullhd {padding:.25rem!important}
  .pt-1-fullhd {padding-top:.25rem!important}
  .pr-1-fullhd {padding-right:.25rem!important}
  .pb-1-fullhd {padding-bottom:.25rem!important}
  .pl-1-fullhd {padding-left:.25rem!important}
  .px-1-fullhd {padding-left:.25rem!important; padding-right:.25rem!important}
  .py-1-fullhd {padding-top:.25rem!important; padding-bottom:.25rem!important}
  .p-2-fullhd {padding:.5rem!important}
  .pt-2-fullhd {padding-top:.5rem!important}
  .pr-2-fullhd {padding-right:.5rem!important}
  .pb-2-fullhd {padding-bottom:.5rem!important}
  .pl-2-fullhd {padding-left:.5rem!important}
  .px-2-fullhd {padding-left:.5rem!important; padding-right:.5rem!important}
  .py-2-fullhd {padding-top:.5rem!important; padding-bottom:.5rem!important}
  .p-3-fullhd {padding:.75rem!important}
  .pt-3-fullhd {padding-top:.75rem!important}
  .pr-3-fullhd {padding-right:.75rem!important}
  .pb-3-fullhd {padding-bottom:.75rem!important}
  .pl-3-fullhd {padding-left:.75rem!important}
  .px-3-fullhd {padding-left:.75rem!important; padding-right:.75rem!important}
  .py-3-fullhd {padding-top:.75rem!important; padding-bottom:.75rem!important}
  .p-4-fullhd {padding:1rem!important}
  .pt-4-fullhd {padding-top:1rem!important}
  .pr-4-fullhd {padding-right:1rem!important}
  .pb-4-fullhd {padding-bottom:1rem!important}
  .pl-4-fullhd {padding-left:1rem!important}
  .px-4-fullhd {padding-left:1rem!important; padding-right:1rem!important}
  .py-4-fullhd {padding-top:1rem!important; padding-bottom:1rem!important}
  .p-5-fullhd {padding:1.5rem!important}
  .pt-5-fullhd {padding-top:1.5rem!important}
  .pr-5-fullhd {padding-right:1.5rem!important}
  .pb-5-fullhd {padding-bottom:1.5rem!important}
  .pl-5-fullhd {padding-left:1.5rem!important}
  .px-5-fullhd {padding-left:1.5rem!important; padding-right:1.5rem!important}
  .py-5-fullhd {padding-top:1.5rem!important; padding-bottom:1.5rem!important}
  .p-6-fullhd {padding:3rem!important}
  .pt-6-fullhd {padding-top:3rem!important}
  .pr-6-fullhd {padding-right:3rem!important}
  .pb-6-fullhd {padding-bottom:3rem!important}
  .pl-6-fullhd {padding-left:3rem!important}
  .px-6-fullhd {padding-left:3rem!important; padding-right:3rem!important}
  .py-6-fullhd {padding-top:3rem!important; padding-bottom:3rem!important}
  .p-auto-fullhd {padding:auto!important}
  .pt-auto-fullhd {padding-top:auto!important}
  .pr-auto-fullhd {padding-right:auto!important}
  .pb-auto-fullhd {padding-bottom:auto!important}
  .pl-auto-fullhd {padding-left:auto!important}
  .px-auto-fullhd {padding-left:auto!important; padding-right:auto!important}
  .py-auto-fullhd {padding-top:auto!important; padding-bottom:auto!important}
}