sub {
    vertical-align: sub !important;
}

.loader {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: fixed;
  }
  .fade-in-left {
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  }
  .fade-out-right {
    -webkit-animation: fade-out-right 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: fade-out-right 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .none {
    display: none;
  }
  
  .loader-orbit {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='background: rgb(14, 120, 134);border-radius: 50%25;' width='201px' height='201px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3e%3cdefs%3e%3cpath id='path' d='M50 15A9 35 0 0 1 50 85A9 35 0 0 1 50 15' fill='none'%3e%3c/path%3e%3cpath id='patha' d='M0 0A9 35 0 0 1 0 70A9 35 0 0 1 0 0' fill='none'%3e%3c/path%3e%3c/defs%3e%3cg transform='rotate(0 50 50)'%3e%3cuse xlink:href='%23path' stroke='%23ffffff' stroke-width='2'%3e%3c/use%3e%3c/g%3e%3cg transform='rotate(45 50 50)'%3e%3cuse xlink:href='%23path' stroke='%23ffffff' stroke-width='2'%3e%3c/use%3e%3c/g%3e%3cg transform='rotate(90 50 50)'%3e%3cuse xlink:href='%23path' stroke='%23ffffff' stroke-width='2'%3e%3c/use%3e%3c/g%3e%3cg transform='rotate(135 50 50)'%3e%3cuse xlink:href='%23path' stroke='%23ffffff' stroke-width='2'%3e%3c/use%3e%3c/g%3e%3cg transform='rotate(0 50 50)'%3e%3ccircle cx='50' cy='15' r='4' fill='%23ff5b61'%3e%3canimateMotion dur='1s' repeatCount='indefinite' begin='0s'%3e%3cmpath xlink:href='%23patha'%3e%3c/mpath%3e%3c/animateMotion%3e%3c/circle%3e%3c/g%3e%3cg transform='rotate(45 50 50)'%3e%3ccircle cx='50' cy='15' r='4' fill='%2320d0c2'%3e%3canimateMotion dur='1s' repeatCount='indefinite' begin='-0.125s'%3e%3cmpath xlink:href='%23patha'%3e%3c/mpath%3e%3c/animateMotion%3e%3c/circle%3e%3c/g%3e%3cg transform='rotate(90 50 50)'%3e%3ccircle cx='50' cy='15' r='4' fill='%2320d0c2'%3e%3canimateMotion dur='1s' repeatCount='indefinite' begin='-0.25s'%3e%3cmpath xlink:href='%23patha'%3e%3c/mpath%3e%3c/animateMotion%3e%3c/circle%3e%3c/g%3e%3cg transform='rotate(135 50 50)'%3e%3ccircle cx='50' cy='15' r='4' fill='%23ff5b61'%3e%3canimateMotion dur='1s' repeatCount='indefinite' begin='-0.375s'%3e%3cmpath xlink:href='%23patha'%3e%3c/mpath%3e%3c/animateMotion%3e%3c/circle%3e%3c/g%3e%3ccircle cx='50' cy='50' r='5' fill='%23fab328'%3e%3c/circle%3e%3c/svg%3e");
    background-position: center;
    background-size: cover;    
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
    transform: scale(3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @keyframes rotate-one {
    0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
  }
  
  @keyframes rotate-two {
    0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
  }
  
  @keyframes rotate-three {
    0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
  }

  /* Fade in left */
  @-webkit-keyframes fade-in-left {
    0% {
      -webkit-transform: translateX(-50px);
      transform: translateX(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-left {
    0% {
      -webkit-transform: translateX(-50px);
      transform: translateX(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  /* Fade oit righ */
  
  @-webkit-keyframes fade-out-right {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
      opacity: 0;
    }
  }
  @keyframes fade-out-right {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
      opacity: 0;
    }
  }





a.anti-copy {
  display: none;
}@media print{


      a.anti-copy {
        text-align: center;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /* background: #fff; */
        z-index: 111;
        color: black;
        display: flex !important;
        align-items: center;
      }

      p.copy.text {
        transform: rotate(315deg);
        font-size: 110px;
        /* margin: 0; */
        flex-grow: 1;
        width: 100%;
        opacity: 0.2;
      }

      a.text {
        z-index: 111111111;
        position: relative;
      }
    .page {
        width: 100%;
        /*margin: 0;
        padding: 0;*/
    }

    .loader {
        display: none;
    }

    div#body_left {
        display: none;
    }

    div#breadcrumbs {
        display: none;
    }

    aside#rightside {
        display: none;
    }

    .rightside_bg {
        display: none;
    }

    .block {
        display: none;
    }

    article.block.story.fullstory.lightbox.ignore-select {
        display: block;
        width: 100%;
    }

    ul.story_icons {
        display: none;
    }

    .story_tools {
        display: none;
    }

    .foot.grey {
        display: none;
    }

    .wrp {
        /* width: 100%; */
        /* margin: 0; */
        /* padding: 0; */
        /* max-width: 100%; */
    }

    .body {
        width: 100%;
        padding: 0;
        margin: 0;
        max-width: 100%;
        box-shadow: none;
    }

    footer#footer {
        display: none;
    }

    article.block.story.fullstory.lightbox.ignore-select {
        padding: 0;
        margin: 0;
    }

    .str_left {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .pswp {
        display: none;
    }
}