*{
    box-sizing: border-box;
  }
  
  .drp-single-popup {
      width: 100vw;
      width: 100vh;
      /* opacity: 0; */
  }
  
  /* .drp-single-popup.open {
      opacity: 1;
  } */
  
  .drp-popup-overlay {
      position: fixed;
      top: 0;
      bottom: 0;
      opacity: 0;
      width: 100vw;
      z-index: 99999999;
        background: rgba(0, 0, 0, 0.4);
      transition: all .5s ease-in-out;
  }
  
  .drp-single-popup.open .drp-popup-overlay {
      opacity: 1;
      /* transition: all .4s ease-in-out; */
  }
  
  .drp-single-popup.open .drp-popup-content {
      right: 0;
      /* transition: all .6s ease-in-out; */
  }
  
  .drp-popup-content {
      position: fixed;
      top: 0;
      bottom: 0;
      right: -100vw;
      width: 50vw;
      overflow-y: auto;
      z-index: 999999999;
      background-color: #fff;
      transition: all .6s ease-in-out;
      padding-top: 100px;
  }
  
  .drp-popup-topbar {
      z-index: 9999999999;
      right: 30px;
      top: 30px;
      position: absolute;
      cursor: pointer;
  }
  
  .drp-popup-topbar span {
      color: #fff;
      box-sizing: border-box;
      display: inline-block;
      vertical-align: top;
      margin: 0;
      padding: 10px;
      transition: color .3s ease;
      background-color: #000;
      position: relative;
      text-shadow: 0 0;
      font-family: ETmodules !important;
      font-weight: 400;
      font-style: normal;
      font-variant: normal;
      line-height: 1;
      text-transform: none;
      speak: none;
      cursor: pointer;
  }
  
  .drp-popup-topbar span.drp-close-popup:before {
      content: "\4d";
  }
  
  .drp-popup-topbar span.drp-next-popup:before {
      content: "\23";
  }
  
  .drp-popup-topbar span.drp-prev-popup:before {
      content: "\24";
  }
  
  @media (max-width: 980px){
      .drp-popup-topbar {
          width: 100vw;
          text-align: center;
          right: 0;
          top: 40px;
          position: absolute;
          cursor: pointer;
      }
       .drp-popup-content {
          width: 100vw;
          padding-top: 40px;
      }
  }
  
  @media (max-width: 767px){
      .drp-popup-topbar {
          width: 100vw;
          text-align: center;
          right: 0;
          top: 30px;
          position: absolute;
          cursor: pointer;
      }
      .drp-popup-content {
          width: 100vw;
          padding-top: 30px;
      }
  }
  