#video-modal {
  z-index: 10000 !important;
}  

.dropzone .dz-preview:is(.dz-state-converting, .dz-state-processing) .dropzone__message__image {
  width: 150px;
  height: 120px;
}

.dropzone .dz-preview .dz-progress {
  border: none;
  background: #cfd2e3;
  width: 100%;
  margin: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 3px;
  overflow: hidden;
  height: 3px;
  max-width: 410px;
  position: relative;
  flex-shrink: 0;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: currentColor;
  width: 0;
  height: 100%;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
  display: block;
}

:is(.dz-state-waiting, .dz-state-processing) .dz-upload.main {
  background-color: #146EF5;
  height: 5px;
  border-radius: 4px;
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: left;
  transition: transform 0.2s linear;
  width: auto !important;
  animation: indeterminate 2s cubic-bezier(.55,.13,.44,.91) infinite;
}

.dz-preview .dz-upload.additional {
  display: none;
}

:is(.dz-state-waiting, .dz-state-processing) .dz-upload.additional {
  display: block;
  background-color: #146EF5;
  height: 5px;
  border-radius: 4px;
  
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: left;
  transition: transform 0.2s linear;
  
  width: auto !important;
  animation: indeterminate 2s cubic-bezier(.55,.13,.44,.91) infinite;
  animation-delay: 1s;
}

.dz-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
  gap: 10px;
  background: transparent;
  border: 1px solid #B3C0D3;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #8593A9;
  transition: .1s background ease-in-out;
  margin: 30px auto 20px;
  cursor: pointer !important;
  margin-top: auto !important;
}

.dz-cancel:not(:disabled):hover {
  background: #F2F5F8;
}

.dz-cancel:disabled {
  cursor: default !important;
  pointer-events: none;
}

.dz-state-processing.dz-error {
  color: #080808 !important;
}

.dz-error__text {
  text-align: center;
}

.dropzone :is(.dz-error__title, .dz-error__text) {
  color: #080808;
}

.dropzone .dz-error__btn {
  align-items: center;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  gap: 20px;
  padding: 15px 30px;
  line-height: 1.2;
  background-color: var(--publuu-blue);
  border: 2px solid var(--publuu-blue);
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-family-roboto);
  transition: background-color .15s ease-in-out,color .15s ease-in-out,border-color .15s ease-in-out;
  width: fit-content;
}

.dropzone__btn:not(:disabled):hover {
  background-color: #0b50b7;
  border-color: #0b50b7;
}

@keyframes indeterminate {
  0% {
    left: -30%;
    right: 100%;
  }

  to {
    left: 100%;
    right: -30%;
  }
}

@media (max-width: 576px) {
  .dropzone__message__image {
    display: none !important;
  }

  .dz-cancel {
    margin: 5px 0 0 0 !important;
    font-size: 14px !important;
  }

  .dropzone .dz-cancel {
    margin: 0;
  }

  .dropzone .dz-state-processing .dz-progress-percent {
    display: none !important;
  }

  .dropzone .dz-preview {
    gap: 15px;
  }

  .dropzone .dz-preview:is(.dz-state-converting, .dz-state-processing) .dropzone__message__image {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 480px) {
  .dropzone  .dz-error__title {
    font-size: 18px;
  }

  .dropzone  .dz-error__title svg {
    width: 20px !important;
    height: 20px !important;
  }

  .dropzone  .dz-error__text {
    font-size: 12px;
  }

  .dropzone  .dz-error__btn {
    font-size: 12px;
  }
}


body {
      overflow-x: hidden;
    }

    .tabs {
      position: relative;
      transition: height 0.4s ease-in-out;
    }

    .tab {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transform: translateY(2px);
      pointer-events: none;
      display: flex;
      flex-direction: column;
      transition: opacity .1s ease-in-out, visibility .1s ease-in-out, transform .1s ease-in-out;
    }

    .tab.active {
      transform: translateY(0);
      transition-delay: .2s, .2s, .2s;
      pointer-events: auto;
      opacity: 1;
      visibility: visible;
      position: relative;
      z-index: 1;
    }

    .hide .hide-item {
      animation: identifier .8s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
    }

    .hide .hide-item.hide-item-1 {
      animation-delay: 0s;
    }

    .hide .hide-item.hide-item-2 {
      animation-delay: .1s;
    }

    .hide .hide-item.hide-item-3 {
      animation-delay: .2s;
    }

    .hide .hide-item.hide-item-4 {
      animation-delay: .3s;
    }

    @keyframes identifier {
      to {
        opacity: 0;
        visibility: hidden;
        filter: blur(5px);
        transform: scale(1.2);
      }
    }

    #flipbook-container .editor__content {
      height: 100%;
    }
    
    #flipbook-container .editor__preview {
      height: 100%;
    }
    
    #flipbook-container .iframe__wrapper {
      height: 100%;
    }

    .dz-cancel {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px;
      gap: 10px;
      background: transparent;
      border: 1px solid #B3C0D3;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      line-height: 1;
      color: #8593A9;
      transition: .1s background ease-in-out;
      margin: 40px auto 20px;
      cursor: pointer !important;
    }

    .dz-cancel:not(:disabled):hover {
      background: #F2F5F8;
    }

    .dz-cancel:disabled {
      cursor: default !important;
      pointer-events: none;
    }

    #flipbook-container {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
    }

    @media (max-width: 1200px) {
      #flipbook-container {
        padding-bottom: 70px;
      }
    }
    
    @media (max-width: 991px) {
      #flipbook-container {
        padding-bottom: 150px;
      }
      
      .tab {
          overflow-x: hidden;
      }
    }
  
    @media (max-width: 480px) {
      #flipbook-container {
        padding-bottom: 200px;
      }
    }