@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --grey: #33333b;
  --red: #e5322d;
  --white: #ffffff;
  --lightblack: #161616;
  --border-color: #707078;
  --text: #47474f;
  --bg-color: #f5f5fa;
  --side-border: #ebebf4;
  --green: #1d9d58;
  --dark-red: #bd060a;
}

body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background: var(--bg-color);
  font-style: normal;
}

a,
::after,
::before,
button {
  transition: all 0.5s ease-in-out;
}

a {
  text-decoration: none;
}

/* .container {
  padding-inline: 24px;
  max-width: 100% !important;
} */
.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1210px;
}

header .container {
  max-width: 100%;
}

.main-container {
  width: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

.wrapper {
  display: flex !important;
  width: 100%;
  max-width: 100% !important;
  padding: 0 !important;
  height: 100vh;
}

.wrapper h1 {
  font-size: 42px;
  text-align: center;
  color: var(--grey);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 52px;
}

.wrapper .left-content {
  min-height: 100vh;
  -ms-flex: 1 0 60%;
  flex: 1 0 60%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: auto;
  flex-direction: column;
}

.login-form {
  min-width: 472px;
  max-width: 472px;
  text-align: center;
}

.login-form h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  color: var(--grey);
  margin-bottom: 25px;
  text-align: center;
  text-transform: unset;
}

input,
select {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text);
  height: 44px;
  padding: 4px 12px;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
}

.form__group input {
  padding-left: 36px;
}

.form__group {
  position: relative;
  margin-bottom: 8px;
}

.form__group:before {
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ccc;
  display: block;
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url('images/email.svg');
}

.form__group.field-loginPassword:before {
  background-image: url('images/secure.svg');
}

button[type='submit'] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  border: none;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-shadow: none;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 20px;
  line-height: 26px;
  color: var(--white);
  background-color: var(--red);
  margin-top: 24px;
  cursor: pointer;
}

button[type='submit']:hover {
  background-color: var(--dark-red);
}

p {
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
}

.create-account button {
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  color: var(--red);
  cursor: pointer;
  border: 0;
  font-size: 16px;
  background: transparent;
  margin-left: 10px;
}

.create-account button:hover {
  color: var(--black);
}

.right-content {
  min-height: 100vh;
  -ms-flex: 1 0 40%;
  flex: 1 0 40%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  background: #f2f3f8;
  position: relative;
  overflow: hidden;
  padding: 24px 48px;
}

.right-content .login-content {
  max-width: 454px;
  padding: 32px 0;
}

.right-content h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  color: var(--grey);
  margin-top: 32px;
}

.right-content .login-content p {
  margin-top: 12px;
}

.create-account {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lightblack);
  color: #292931;
  background-color: var(--bg-color);
}

.right-content img {
  max-width: 100%;
}

header {
  width: 100%;
  z-index: 1041;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  padding: 0;
}

/* header .container {
  -webkit-box-shadow: 0 3px 6px 0 rgba(50, 50, 50, 0.3);
  box-shadow: 0 3px 6px 0 rgba(50, 50, 50, 0.3);
  background-color: var(--white);
} */
header {
  -webkit-box-shadow: 0 3px 6px 0 rgba(50, 50, 50, 0.3);
  box-shadow: 0 3px 6px 0 rgba(50, 50, 50, 0.3);
  background-color: var(--white);
}

header .container.uploading,
header .container.processing {
  box-shadow: none;
  background-color: transparent;
}

header .logo h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0;
}

header .logo a {
  display: inline-flex;
  max-width: 125px;
  padding: 0;
}

header .logo a img {
  width: 100%;
}

.logo {
  display: flex;
}

.header-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.container.uploading .header-wrapper,
header .container.processing .header-wrapper {
  grid-template-columns: 1fr;
}

.header-wrapper .logo_box,
nav.custom-menu ul {
  display: flex;
  align-items: center;
}

.container.uploading .header-wrapper .logo_box,
header .container.processing .header-wrapper .logo_box {
  justify-content: center;
  padding-top: 25px;
}

nav.custom-menu {
  padding-inline: 24px;
  height: 100%;
  display: flex;
}

nav.custom-menu ul li {
  margin-inline: 12px;
}

nav.custom-menu > ul > li,
nav.custom-menu > ul > li a {
  height: 100%;
}

nav.custom-menu ul li a {
  padding: 0 12px;
  color: var(--lightblack);
  text-transform: uppercase;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

nav.custom-menu ul li a.router-link-active.router-link-exact-active {
  color: var(--red);
}

a:hover {
  background-color: transparent;
}

nav.custom-menu ul li a:hover {
  color: var(--red);
}
.feature.pdf-to-image.preview .feature-area.upload-section {
  height: calc(100vh - 60px);
}
body.adv-banner-body .feature.pdf-to-image.upload {
  height: 100%;
}
body.adv-banner-body .feature-area.upload-section {
  background: transparent;
}
main {
  margin-top: 60px;
  overflow-x: hidden;
  padding-top: 30px;
}

.box-layout {
  text-align: center;
}

.wrapper .home-title {
  text-align: center;
  margin-bottom: 4px;
}

.wrapper .box-layout .home-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 21px;
}

h2.home-subtitle {
  line-height: 32px;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}

.box-layout h2.home-subtitle {
  max-width: 980px;
  margin: auto auto 28px;
  padding-inline: 21px;
}

.box-wrapper {
  padding: 30px 44px 42px;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.box-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.box-wrapper .c-box {
  background: #fff;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /* -ms-flex-preferred-size: calc(16.666% - 4px);
  flex-basis: calc(16.666% - 4px); */
  border: 1px solid var(--bg-color);
  margin: 2px;
  position: relative;
  overflow: hidden;
  -webkit-transition:
    background-color 0.4s ease-out,
    -webkit-box-shadow 0.4s ease-out;
  transition:
    background-color 0.4s ease-out,
    -webkit-box-shadow 0.4s ease-out;
  -o-transition:
    box-shadow 0.4s ease-out,
    background-color 0.4s ease-out;
  transition:
    box-shadow 0.4s ease-out,
    background-color 0.4s ease-out;
  transition:
    box-shadow 0.4s ease-out,
    background-color 0.4s ease-out,
    -webkit-box-shadow 0.4s ease-out;
  z-index: 1;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.box-wrapper .c-box {
  width: calc(19% - -0.6%);
}

.box-wrapper .c-box a {
  display: block;
  padding: 32px;
  position: relative;
  z-index: 2;
  text-decoration: none;
  font-weight: 400;
  width: 100%;
  height: 100%;
  text-align: left;
}

.box-wrapper .c-box a img {
  width: 48px;
  height: 35px;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}

.box-wrapper .c-box h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--grey);
  margin-bottom: 8px;
}

.box-wrapper .c-box p {
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-size: 13px;
  color: var(--border-color);
}

.box-wrapper .c-box:hover {
  background: var(--bg-color);
}

.box-wrapper .c-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pattern-bg {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: fixed;
  background-position: center center;
  background-size: 100% auto;
  background-image: url('images/background.svg');
}

.footer {
  background: var(--bg-color);
  padding-top: 32px;
  padding-bottom: 50px;
  border-top: 8px solid #fff;
}

footer .container {
  /* max-width: 84%; */
  margin: 0 auto;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-cols .f-col {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-cols .f-col h4 {
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-cols .f-col ul li {
  margin-bottom: 12px;
}

.footer-cols .f-col ul li a {
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}

.footer-copy {
  margin-top: 24px;
  padding-top: 24px;
  width: 100%;
  border-top: 1px solid #b4b4b4;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact ul.social {
  display: flex;
  flex-wrap: wrap;
}

.footer-contact ul.social li img {
  width: 24px;
  opacity: 0.8;
  transition: all 0.5s ease-in-out;
}

.footer-contact ul.social li img:hover {
  opacity: 1;
}

main.inner-page {
  padding-top: 0;
  overflow: hidden;
}

main.inner-page .feature {
  /* height: calc(100vh - 60px); */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  overflow: auto;
  overflow-x: hidden;
}

.drop-zone button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 80px;
  min-width: 330px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 24px 48px;
  font-weight: 500;
  font-size: 24px;
  background: var(--red);
  line-height: 28px;
  vertical-align: middle;
  color: #fff !important;
  text-decoration: none;
  margin-bottom: 12px;
  border: 0;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  -ms-flex-order: 1;
  order: 1;
  max-width: 60vw;
  cursor: pointer;
}

.feature .feature-area {
  /* text-align: center; */
  /* height: 100%; */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex: 1 1;
  flex: 1 1;
  background-color: var(--bg-color);
  overflow: hidden;
  position: relative;
  padding-inline: 15px;
  /* padding-top: 30px; */
  /* height: 100vh;
  min-height: 100vh; */
  height: calc(100vh - 60px);
}

.feature .feature-area h1 {
  padding: 30px 0 0;
}

h2.feature-subtitle {
  max-width: 800px;
  margin: 8px auto 0;
  line-height: 32px;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
}

.feature-area .container {
  padding: 0;
}

footer .inner-page {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10000;
  bottom: 0;
  background: hsla(0, 0%, 100%, 0.6);
  padding: 12px 24px;
  font-size: 12px;
}

.drop-zone button:hover,
.overlay.no-task-found button:hover {
  background-color: var(--dark-red);
}

.container.drop-zone {
  margin-top: 20px;
  padding: 85px;
  margin-inline: 24px;
}

.drop-zone {
  border: 2px dashed #ccc;
  padding: 100px;
  text-align: center;
  transition:
    background-color 0.5s ease-in-out,
    border-color 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop-zone.drag-over {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: var(--black);
  margin-inline: -24px;
}

.drop-zone.drag-over button {
  opacity: 0.2;
}

.overlay {
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  position: absolute;
  z-index: 9999;
  text-align: center;
  color: #fff;
}

footer .inner-page .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

footer .inner-page .footer-copy {
  margin: 0;
  padding-top: 0;
  border: 0;
}

.form-wrapper {
  background-color: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.split-pdf .form-wrapper {
  padding: 0;
}

.form-wrapper .form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}

.form-item input {
  border-color: transparent;
  background-color: var(--bg-color);
  font-size: 14px;
}

span.error {
  font-size: 13px;
}

span.error,
span.asterisk {
  color: var(--red);
}

.f-canvas {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
}

.pdf-wrapper .upl-pre-l-section {
  padding: 25px;
  position: relative;
  margin-right: 24px;
  flex: 1 1;
  height: 100%;
  margin-top: 36px;
}

.preview-actions {
  position: absolute;
  right: 24px;
  top: 60px;
  display: flex;
  flex-direction: column;
}

.preview-actions button {
  border-radius: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  width: 36px;
  height: 36px;
  padding: 0;
  margin-bottom: 8px;
  background-color: var(--red);
  color: var(--white);
  border: 0;
  font-size: 22px;
}

.preview-actions button.up-from-computer-btn svg {
  width: 20px;
}

.preview-actions button.add-file-btn {
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.preview-actions button.order-by-name-btn {
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.feature .feature-area section,
.feature .feature-area section .container,
.pdf-wrapper {
  height: 100%;
}

.pdf-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.pdf-wrapper .advertisement_img {
  display: flex;
  align-items: center;
}
.pdf-wrapper .preview-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pdf-wrapper .pdf-preview {
  padding: 0;
  background-color: transparent;
  box-shadow: 0;
}

.pdf-wrapper .file-item {
  margin: 4px;
  width: 198px;
  height: 244px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #fdfdfd;
  border-radius: 8px;
  /* -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08); */
}

.sidebar-options-panel {
  display: block;
  position: absolute;
  left: 100%;
  z-index: 0;
  width: 100%;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  padding-bottom: 120px;
  display: block;
  left: 0;
  z-index: 99;
}

.pdf-wrapper .file-item:hover {
  border: 1px solid #9999a2;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.pdf-wrapper .f-actions {
  top: 8px;
  right: 8px;
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: 9;
}

.pdf-wrapper .f-actions a.file-btn {
  padding: 3px;
  width: 24px;
  height: 24px;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  text-align: center;
  background-color: var(--side-border);
  margin-left: 4px;
  z-index: 1030;
  border-radius: 100%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--text);
}

.pdf-wrapper .f-actions a.file-btn:hover {
  background-color: var(--red) !important;
}

.pdf-wrapper .f-actions a.file-btn:hover svg path {
  fill: var(--white);
}

.pdf-wrapper .f-actions a.file-btn:hover img {
  filter: invert(1);
}

.pdf-wrapper .file-item:hover .f-actions {
  opacity: 1;
}

.pdf-wrapper .f-canvas {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
  /* width: 100%;
  height: 100%; */
  justify-content: center;
}

.pdf-wrapper .f-canvas canvas {
  width: 100%;
  height: 178px;
  object-fit: contain;
}

.pdf-wrapper .f-info {
  position: absolute;
  height: 32px;
  width: 100%;
  bottom: 0;
  left: 0;
}

.pdf-wrapper .f-info p {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 16px;
  padding: 6px 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  z-index: 99;
  text-align: center;
  /* flex-basis: 440px; */
}

.upl-pre-r-section {
  -ms-flex-preferred-size: 440px;
  flex-basis: 440px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0 120px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  background-color: var(--white);
}

.upl-pre-r-section h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  color: var(--grey);
  margin-bottom: 0;
  text-align: center;
  padding: 21px 21px 21px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}

.pdf-wrapper .form-submit-btn {
  right: 39px;
  position: fixed;
  bottom: 24px;
  z-index: 1030;
  margin-top: 24px;
}

.pdf-wrapper button[type='submit'] {
  min-height: 80px;
  font-size: 24px;
  line-height: 28px;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 24px;
  width: 392px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.3);
  box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.3);
  margin-top: 0;
}

button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-item input.hidden {
  display: none;
}

.sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  transition: all 0.5s ease-in-out;
  color: var(--lightblack);
  cursor: pointer;
}

.sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt:hover,
.sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt.active {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.sidebar-options-panel ul.radio-btn-select {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-options-inactive {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  height: 100%;
  z-index: 1031;
  background: rgba(66, 63, 63, 0.8);
  display: none;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 10%;
}

.sidebar-options-inactive.active {
  display: flex;
  gap: 25px;
}

.upl-pre-r-section::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
}

.upl-pre-r-section::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--bg-color);
}

.upl-pre-r-section::-webkit-scrollbar {
  z-index: 50;
  width: 4px;
  height: 4px;
  background-color: var(--red);
}

.upl-pre-r-section:after {
  content: '';
  width: 435px;
  position: fixed;
  height: 140px;
  bottom: 0;
  background: #fff;
  background:
    linear,
    left bottom,
    left top,
    from(#fff),
    color-stop(70%, #fff),
    color-stop(95%, hsla(0, 0%, 100%, 0.5)),
    to(hsla(0, 0%, 100%, 0));
  background: -webkit-linear-gradient(
    bottom,
    #fff,
    #fff 70%,
    hsla(0, 0%, 100%, 0.5) 95%,
    hsla(0, 0%, 100%, 0)
  );
  background: -o-linear-gradient(
    bottom,
    #fff 0,
    #fff 70%,
    hsla(0, 0%, 100%, 0.5) 95%,
    hsla(0, 0%, 100%, 0) 100%
  );
  background: linear-gradient(
    0deg,
    #fff,
    #fff 70%,
    hsla(0, 0%, 100%, 0.5) 95%,
    hsla(0, 0%, 100%, 0)
  );
  z-index: 222;
}

.pdf-wrapper button[type='submit'] span {
  margin-left: 10px;
}

.upload-section {
  width: 100%;
}

.add-file-btn-sec {
  display: flex;
  flex-direction: column;
}

button.setting-btn-mobile-view {
  display: none;
}

.add-file-btn-sec span.file-count-badge {
  background-color: var(--lightblack);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  border-radius: 100%;
  min-width: 26px;
  min-height: 20px;
  margin-top: -8px;
  margin-left: -8px;
  font-size: 11px;
  line-height: 20px;
  font-weight: 600;
  border: 3px solid var(--red);
}

.progress {
  background-color: #fff;
  position: relative;
  margin: 15px 0;
  height: 25px;
  width: 100%;
  border-radius: 2px;
  padding: 2px;
}

.progress-done {
  background: var(--red);
  color: #fff;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 0;
  opacity: 1;
  border-radius: 2px;
  padding: 10px;
}

.uploading-section,
.processing-section {
  color: var(--grey);
  width: 100%;
  padding-top: 120px;
  padding-inline: 24px;
}

.uploading .uploading-status-title,
.uploading-file-status b,
.uploading-status-info b,
.processing-section .title p {
  font-weight: bold;
}

.uploading .uploading-status-info {
  margin-top: 25px;
}

.uploading .uploading-status-percent {
  font-size: 26px;
}

.uploading .uploading-status-title,
.processing-section .title p {
  font-size: 28px;
  line-height: 34px;
}

.uploading .uploading-status-percent p.percentage {
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
}

.uploading-file-status b,
.uploading-status-info {
  font-size: 18px;
}

.feature.processing .loader {
  margin: 10px 0 30px 0;
}

main.inner-page .feature.uploading,
main.inner-page .feature.processing {
  justify-content: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  align-items: flex-start;
  overflow-y: hidden;
}

.uploading-status-percent {
  font-size: 26px;
}

.downlaod_wrapper {
  padding-top: 24px;
  max-width: 786px;
  margin: 0 auto;
  padding-bottom: 96px;
}

.user_section {
  background: var(--white);
  padding: 96px 0 124px;
  position: relative;
}

.user_section::before {
  content: '';
  position: absolute;
  width: auto;
  left: -9999px;
  right: -9999px;
  background-color: var(--white);
  height: 100%;
  top: 0;
  z-index: -1;
}

.user_section h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  color: var(--grey);
  margin: 30px 0;
}

.user_info {
  text-align: center;
}

.user_info p {
  max-width: 40%;
  margin: 0 auto;
}

.software_opt {
  margin-top: 72px;
  max-width: 1558px;
  margin-inline: auto;
}

.software_opt ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  justify-content: center;
  text-align: center;
}

.software_opt ul li a {
  transition: all 0.5s ease-in-out;
  display: block;
  text-align: center;
}

.software_opt ul li a:hover {
  color: var(--red);
}

.software_opt ul li a span {
  color: var(--lightblack);
}

.software_opt ul li a img {
  margin-bottom: 12px;
  margin-top: 24px;
  display: block;
  margin-inline: auto;
}

.downlaod_wrapper h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
}

.downlaod_wrapper .whit_box {
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 24px;
}

.downlaod_wrapper h4 {
  line-height: 20px;
  font-size: 16px;
  font-weight: 400;
  font-weight: 600;
  color: var(--grey);
}

.downlaod_wrapper .whit_box a.info_btn span.tile-text {
  width: 150px;
  background-color: transparent !important;
  box-shadow: none;
}

.downlaod_wrapper .whit_box a.info_btn {
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 4px;
  max-width: 250px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
}

/* .downlaod_wrapper .whit_box a.info_btn span.btn_arrw {
  position: absolute;
  right: 15px;
} */
.downlaod_wrapper .whit_box a.info_btn:hover {
  background-color: var(--bg-color) !important;
  color: var(--red);
}

.downlaod_wrapper .whit_box a.info_btn span:not(.btn_arrw) {
  background-color: #fff;
  /* -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.050980392156862744);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.050980392156862744); */
  display: flex;
  align-items: center;
}

.downlaod_wrapper .whit_box a.info_btn span img {
  width: 20px;
  height: 20px;
}

.downlaod_wrapper .thank_box {
  text-align: center;
}

.thank_btnwrap ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.thank_btnwrap {
  margin-top: 16px;
}

.uploader-par.donwload-upload-par .downlaod_wrapper {
  padding: 0;
}

.uploader-par.donwload-upload-par .whit_box {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 0;
  margin-top: 15px;
}

.uploader-par.donwload-upload-par .upload-log-gpd {
  margin-bottom: 15px;
}

.uploader-par.donwload-upload-par .whit_box .continue-to-sec {
  display: block;
  max-height: 224px;
  overflow: hidden;
  overflow-y: auto;
}

.thank_btnwrap ul li a {
  align-items: center;
  padding: 8px;
  border: 1px solid #c2c2cc;
  border-radius: 8px;
  background-color: var(--white);
  font-weight: 500;
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: flex;
  gap: 8px;
  color: var(--lightblack);
  cursor: pointer;
}

.thank_btnwrap ul li a:hover {
  color: var(--red);
  background-color: var(--white) !important;
}

.downlaod_wrapper .whit_box button {
  display: flex;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--black);
  justify-content: center;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto;
}

.uploader-par.donwload-upload-par .whit_box h4 {
  margin: 0;
}

.uploader-par.donwload-upload-par .whit_box .continue-to-sec {
  margin: 0;
}

.uploader-par.donwload-upload-par .whit_box a.info_btn span img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 5px;
}

.uploader-par.donwload-upload-par .whit_box a.info_btn {
  padding-left: 0;
  justify-content: space-between;
  padding-right: 0;
  padding-bottom: 0;
  width: 100%;
  display: inline-flex;
}

.download_box a.back_btn {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  margin: 6px 6px 8px;
  width: 36px;
  height: 36px;
  background: var(--text);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  border-radius: 50px;
}

section.main-download-part-vg .container {
  max-width: 100%;
  padding: 0;
}

.download_box a.home_btn {
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 80px;
  min-width: 330px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 24px 48px;
  font-weight: 500;
  font-size: 24px;
  background: var(--red);
  line-height: 28px;
  vertical-align: middle;
  color: #fff !important;
  text-decoration: none;
  margin-bottom: 12px;
  -webkit-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  border: 0;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  -ms-flex-order: 1;
  order: 1;
  max-width: 60vw;
}

.download_box a.download_btn,
.download_box a.home_btn,
.download_box a.back_btn {
  cursor: pointer;
}

.download_box a.download_btn span,
.download_box a.home_btn span {
  margin-right: 0px;
}

.download_box a.back_btn:hover,

/* .download_box a.home_btn:hover {
  background-color: var(--dark-red) !important;
} */

.range-section {
  padding: 12px 24px;
  border-bottom: 1px solid var(--side-border);
  position: relative;
}

.range-section:hover {
  background: var(--side-border);
}

.range-section .range-num {
  margin-left: 4px;
  padding: 2px 6px;
  background-color: var(--side-border);
  border-radius: 4px;
}

.range-section .range-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.range-section .range-title span.drag-icon img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.range-section.drag-over .placeholder,
.custom-ranges .placeholder {
  border-bottom: 1px dashed var(--red);
}

.range-section .range-title a.range-remove-icon {
  color: var(--black);
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}

.range-add-more-btn {
  padding: 16px 24px 10px;
}

.range-section .placeholder,
.custom-ranges .placeholder {
  height: 40px;
  background-color: var(--white);
}

.range-from-to {
  display: flex;
  align-items: center;
  gap: 16px;
}

.range-from-to .from,
.range-from-to .to {
  border: 1px solid var(--border-color);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  border-radius: 4px;
  padding-left: 8px;
  overflow: hidden;
  background: #fff;
}

.range-from-to label {
  font-size: 12px;
  max-width: 120px;
  display: flex;
  margin-right: 12px;
}

.range-from-to input[type='number'] {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  top: 0;
  border-left: 1px solid var(--border-color);
  text-align: right;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 8px 6px 8px 12px;
  width: 84px;
}

.range-section .placeholder:hover,
.custom-ranges .placeholder:hover {
  background-color: var(--bg-color);
}

.form-wrapper ul.split-type-selection li span {
  display: block;
  display: block;
  font-size: 16px;
  margin-top: 0px;
}

.form-wrapper ul.split-type-selection li.active img {
  filter: brightness(0);
}

.form-wrapper ul.split-type-selection li img {
  filter: opacity(0.4);
}

.form-wrapper ul.split-type-selection li {
  padding: 16px;
  position: relative;
  border: 0;
  -ms-flex: 1 1;
  flex: 1 1;
  text-align: center;
  color: #85858e;
  -webkit-border-end: 1px solid #c4c5c7;
  border-inline-end: 1px solid #c4c5c7;
  border-bottom: 1px solid #c4c5c7;
  cursor: pointer;
}

.form-wrapper ul.split-type-selection li.active {
  color: var(--lightblack);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  background: none;
}

.form-wrapper ul.split-type-selection {
  display: flex;
  height: 105px;
}

.form-wrapper ul.split-type-selection li input {
  font-size: 0;
  height: 0;
}

.split-pdf .form-item {
  padding: 28px 24px;
  text-align: left;
  position: relative;
}

.split-pdf .form-item label {
  color: var(--grey);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}

.form-wrapper ul.split-type-selection li.active::after {
  content: '';
  display: block;
  position: absolute;
  color: #fff;
  width: 28px;
  height: 28px;
  background: #4acd86 url('images/check-white.svg') no-repeat 50%;
  border-radius: 100%;
  text-align: center;
  line-height: 18px;
  background-size: 11px;
  border: 1px solid var(--green);
  right: auto;
  left: 8px;
  top: 8px;
  -webkit-transform: none;
  transform: none;
  width: 18px;
  height: 18px;
  background-size: 11px;
}

.range .range__title {
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}

.range-wrapper {
  margin: 12px;
  padding: 12px;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--border-color);
}

.range-wrapper .f-canvas.range-container {
  width: 180px;
  height: auto;
}

.range-wrapper span.range-seperator {
  width: 24px;
}

.range-wrapper canvas {
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  width: 180px;
}

.split-pdf .sidebar-options-panel ul.radio-btn-select {
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 6px;
}

.split-pdf .sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt {
  padding: 16px 28px;
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
  text-align: center;
  color: #85858e;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 4px;
  background: var(--bg-color);
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  border: 2px solid rgba(0, 0, 0, 0);
  margin: 0;
}

.upl-pre-l-section.pdf-wrapper-overflow {
  margin-right: 0;
  padding-top: 61px;
  margin-top: 0;
  overflow-y: auto;
}

.split-pdf .sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt.active {
  color: var(--red);
  border: 2px solid var(--red);
}

.range-from-to input.error {
  color: var(--red);
}

.upl-pre-l-section.pdf-wrapper-overflow::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--bg-color);
}

.upl-pre-l-section.pdf-wrapper-overflow::-webkit-scrollbar {
  z-index: 50;
  width: 4px;
  height: 4px;
  background-color: var(--red);
}

.upl-pre-l-section.pdf-wrapper-overflow::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
}

.range-add-more-btn button {
  color: var(--red);
  background-color: #fff;
  outline: 2px solid var(--red);
  outline-offset: -2px;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  border: none;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 20px;
  line-height: 26px;
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
  align-items: center;
}

.range-add-more-btn button svg {
  margin-right: 8px;
}

.range-add-more-btn button:focus,
.range-add-more-btn button:hover {
  color: var(--dark-red);
  outline-color: var(--dark-red);
}

.split-pdf .form-item .merge-all-txt {
  position: relative;
  cursor: pointer;
  display: flex;
  padding-left: 36px;
  font-weight: 400;
}

.form-item .merge-all-txt::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  content: '';
}

.form-item input[type='checkbox'] {
  width: 24px;
  height: 24px;
  opacity: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

.form-item input[type='checkbox']:checked + .merge-all-txt::before {
  border-color: #4acd86;
}

.form-item .merge-all-txt:after {
  content: '';
  position: absolute;
  top: 6px;
  width: 16px;
  height: 12px;
  left: 5px;
  background-image: url(images/check-green.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
}

.form-item input[type='checkbox']:checked + .merge-all-txt::after {
  opacity: 1;
}

.pdf-preview .range {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.split-pdf .sidebar-options-panel ul.radio-btn-select,
.split-pdf .form-item input[type='number'] {
  margin-top: 6px;
}

.info {
  padding: 10px 24px;
  background-color: #def2ff;
  text-align: left;
}

.info p {
  padding: 10px 0 0 0;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--lightblack);
  text-align: left;
  margin-bottom: 10px;
}

.info ul {
  margin-bottom: 0;
}

.split-pdf .sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt:hover {
  border-color: var(--black);
  color: var(--black);
}

.info p b {
  font-weight: 600;
}

.multiple-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.multiple-page .page-wrapper {
  padding: 12px;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.multiple-page .page-wrapper:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.multiple-page .page-wrapper.active::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4acd86 url(images/check-white.svg) no-repeat 50%;
  border: 1px solid #1d9d58;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: block;
}

.pdf-wrapper .form-submit-btn button {
  position: relative;
}

.pdf-wrapper .form-submit-btn button:not(disabled):after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border-radius: 8px;
  -webkit-animation: pulse 5s cubic-bezier(0.66, 0, 0, 1) infinite;
  animation: pulse 5s cubic-bezier(0.66, 0, 0, 1) infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 106, 88, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 106, 88, 0.6);
  }

  30% {
    -webkit-box-shadow: 0 0 0 60px rgba(255, 106, 88, 0.1);
    box-shadow: 0 0 0 60px rgba(255, 106, 88, 0.1);
  }

  40% {
    -webkit-box-shadow: 0 0 0 60px rgba(255, 106, 88, 0.1);
    box-shadow: 0 0 0 60px rgba(255, 106, 88, 0.1);
  }
}

/* my */
.pdf-wrapper .form-submit-btn button:not(disabled):after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border-radius: 8px;
  -webkit-animation: pulse 5s cubic-bezier(0.66, 0, 0, 1) infinite;
  animation: pulse 5s cubic-bezier(0.66, 0, 0, 1) infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(49, 172, 118, 0.6);
    /* Green #31ac76 */
    box-shadow: 0 0 0 0 rgba(49, 172, 118, 0.6);
    /* Green #31ac76 */
  }

  30% {
    -webkit-box-shadow: 0 0 0 60px rgba(49, 172, 118, 0.1);
    /* Lighter Green */
    box-shadow: 0 0 0 60px rgba(49, 172, 118, 0.1);
    /* Lighter Green */
  }

  40% {
    -webkit-box-shadow: 0 0 0 60px rgba(49, 172, 118, 0.1);
    /* Lighter Green */
    box-shadow: 0 0 0 60px rgba(49, 172, 118, 0.1);
    /* Lighter Green */
  }
}

/* my */
.nested-enter-active .inner,
.nested-leave-active .inner {
  transition: all 0.3s ease-in-out;
}

.nested-enter-from .inner,
.nested-leave-to .inner {
  transform: translateX(30px);
  opacity: 0;
}

.preview-section .single-page {
  display: flex;
  justify-content: center;
}

.add-btn-wrapper .add-btn-wrapper {
  position: relative;
  top: auto;
  -ms-flex-align: center;
  align-items: center;
  margin: -46px 0 0;
  padding-top: 46px;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.add-btn-wrapper .add-btn-extra button {
  margin-top: -46px;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0;
  cursor: pointer;
}

.add-btn-wrapper .add-btn-extra {
  height: 0;
}

.add-btn-wrapper .add-file-btn-sec {
  position: relative;
  z-index: 1;
}

.add-btn-wrapper:hover .add-btn-extra {
  z-index: 0;
  height: auto;
}

.add-btn-wrapper:hover .add-btn-extra button {
  opacity: 1;
  margin-top: 0;
}

.whit_box .continue-to-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  margin: 12px 0 4px;
}

.additional_links {
  display: flex;
  gap: 8px;
}

.additional_links a.file-btn {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  color: var(--white);
  cursor: pointer;
}

.download_box a.download_btn,
.download_box a.home_btn,
.download_box a.back_btn {
  margin-bottom: 0;
}

.additional_links a.file-btn:hover {
  background-color: var(--dark-red) !important;
}

.modal {
  padding: 25px;
}

.modal-wrapper {
  position: fixed;
  content: '';
  width: 100%;
  height: 100%;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: 9999;
  opacity: 0;
  top: -100px;
  transition:
    top 0.5s ease-out,
    opacity 0.5s ease-out;
}

.modal-wrapper.show {
  opacity: 1;
  top: 0;
}

.modal-dialog {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: all;
  height: 574px;
}

.modal-dialog pre {
  overflow: hidden;
}

.modal-dialog.modal-dialog-scrollable.delete-popop {
  height: auto;
}

.modal-dialog .modal-header {
  padding: 38px 64px 32px;
  text-align: center;
  background: #fff;
  overflow-y: auto;
  position: relative;
  display: block;
}

.modal-dialog-scrollable .modal-content,
.modal-dialog .modal-header {
  border: 0;
}

.modal-dialog .modal-header p {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 0;
}

.modal-dialog .modal-header p,
.modal-dialog .qrcode-section p,
.modal-dialog .link-popop p {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #33333b;
}

.modal-dialog.report-popop .modal-body {
  text-align: left;
  padding-inline: 35px;
}

.modal-dialog.report-popop .sub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ccc;
}

.modal-dialog.report-popop .err-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.modal-dialog.report-popop .err-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.modal-dialog.report-popop span.err-count {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 1px solid var(--bg-color);
  flex-shrink: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color);
}

.modal-dialog.report-popop p.err-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.err-wrapper {
  max-height: 285px;
  overflow-y: auto;
}

.modal-dialog.modal-dialog-scrollable.report-popop {
  height: auto;
}

.modal-dialog.report-popop p.err-description,
.modal-dialog.report-popop p.err-title {
  font-size: 14px;
  line-height: 24px;
}

.modal-dialog.report-popop p.err-description {
  margin-bottom: 0;
}

.modal-dialog.report-popop .suc-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.modal-dialog.report-popop .sub-title p {
  font-weight: bold;
  margin-bottom: 0;
}

.modal-dialog.report-popop .suc-wrapper p {
  text-align: center;
  font-size: 18px;
}

.modal-dialog.report-popop .sub-title p span {
  color: var(--red);
  margin-right: 8px;
}

.modal-dialog.report-popop .modal-body .suc-section .sub-title svg {
  color: var(--green);
  margin-right: 0;
  font-size: 50px;
}

.modal-dialog.delete-popop .dialog-header p {
  font-size: 28px;
  line-height: 30px;
}

.modal-dialog .qrcode-section {
  padding-top: 72px;
}

.modal-dialog .modal-body {
  padding: 0px 64px 48px;
  text-align: center;
  background: var(--white);
  overflow-y: auto;
}

.modal-dialog.delete-popop .modal-body {
  padding-top: 32px;
}

.modal-dialog.delete-popop .dialog-content > p {
  margin-top: 16px;
}

.modal-dialog.delete-popop .timer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 16px;
}

.modal-dialog.delete-popop .timer p {
  margin: 12px;
  text-align: center;
  font-size: 38px;
  font-weight: 300;
  line-height: 52px;
  display: flex;
  flex-direction: column;
}

.modal-dialog.delete-popop .timer p span,
.modal-dialog.delete-popop .timer p span b {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #33333b;
}

.modal-dialog.report-popop .suc-section .sub-title {
  border: 0;
  justify-content: center;
}

.modal-dialog .modal-body .form-item {
  display: flex;
  position: relative;
  cursor: pointer;
}

.modal-dialog .modal-body .form-item::before {
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ccc;
  display: block;
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url(images/world.svg);
}

.modal-dialog .modal-body .form-item input {
  padding-left: 36px;
  border-radius: 4px 0 0px 4px;
  border-color: #161616;
  background-color: var(--white);
}

.modal-dialog .modal-body .form-item input:focus {
  background-color: var(--bg-color);
}

.modal-header .btn-close {
  position: absolute;
  cursor: pointer;
  top: 16px;
  right: 16px;
  font-size: 16px;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  transition: all 0.5s ease-in-out;
  display: block;
  line-height: 32px;
  color: #33333b;
  opacity: 1;
}

.modal-header .btn-close:hover {
  background-color: #e5e5e9;
}

.modal-dialog .qrcode-section canvas {
  margin: 10px 32px 0;
}

.modal-dialog .copy-btn {
  margin: 0;
  border-radius: 0 4px 4px 0;
  height: 44px;
  line-height: 16px;
  min-height: 0;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26px;
  text-transform: uppercase;
  min-width: 0;
  border-radius: 8px;
  line-height: 26px;
  color: var(--white);
  background-color: var(--red);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  width: 85px;
}

.modal-dialog .copy-btn svg {
  width: 12px;
  margin-right: 8px;
}

.modal-dialog .modal-footer {
  padding: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #d6d6df;
}

.modal-dialog .modal-footer button.delete-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  border: none;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-shadow: none;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 20px;
  line-height: 26px;
  color: var(--white);
  background-color: var(--red);
  cursor: pointer;
}

.modal-dialog .modal-footer button.delete-btn:hover,
.modal-dialog .copy-btn:hover {
  background-color: var(--dark-red);
}

.modal-dialog .modal-footer button.delete-btn:active {
  background-color: var(--lightblack);
}

.tooltip-container {
  position: relative;
}

.tooltip-text {
  position: relative;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 16px;
  background-color: var(--lightblack);
  color: var(--white);
  border-right: 8px;
  padding: 4px 12px;
  visibility: hidden;
  z-index: 1;
  opacity: 0;
  white-space: nowrap;
}

.tooltip-text.bottom {
  top: auto;
  bottom: -50px;
}

.tooltip-text::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border: 5px solid var(--lightblack);
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -5px;
  transform: rotate(45deg);
  visibility: hidden;
  z-index: 1;
  opacity: 0;
}

.tooltip-text.bottom::before {
  top: -5px;
  bottom: auto;
}

.tooltip-container:hover .tooltip-text,
.tooltip-container:hover .tooltip-text::before {
  visibility: visible;
  opacity: 1;
}

.prev-task-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 11111;
  flex-direction: column;
}

.prev-task-loader p {
  color: var(--white);
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.rotate-opt .form-group > label {
  padding-top: 20px;
  padding-left: 30px;
}

.rotate-opt .form-group {
  text-align: left;
}

.rotate-opt ul.rotate-btn-select {
  margin-top: 8px;
}

.rotate-opt li.rotate-btn-select-opt {
  margin-bottom: 8px;
  margin-bottom: 0;
  padding: 20px 60px 16px 22px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.rotate-opt li.rotate-btn-select-opt:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.rotate-opt li.rotate-btn-select-opt:hover,
.rotate-opt li.rotate-btn-select-opt.active {
  background-color: #ebebf4;
}

.rotate-opt li.rotate-btn-select-opt ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.rotate-opt li.rotate-btn-select-opt ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 5px;
  border-bottom: 0;
}

.rotate-opt li.rotate-btn-select-opt ul {
  padding-left: 20px;
  padding-top: 15px;
}

.rotate-opt li.rotate-btn-select-opt ul label {
  font-size: 15px;
}

.rotate-opt li.rotate-btn-select-opt .option-group {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.rotate-opt li.rotate-btn-select-opt input[type='radio'] {
  font-size: 0;
  height: 0;
  width: auto;
  order: 2;
}

.rotate-opt li.rotate-btn-select-opt.active::after,
.rotate-opt li.rotate-btn-select-opt ul li.active::after {
  content: '';
  display: block;
  position: absolute;
  color: var(--white);
  width: 28px;
  height: 28px;
  background: #4acd86 url(images/check-white.svg) no-repeat 50%;
  border-radius: 100%;
  text-align: center;
  line-height: 18px;
  background-size: 11px;
  border: 1px solid var(--green);
  right: 30px;
  -webkit-transform: none;
  transform: none;
  background-size: 11px;
  top: 15px;
}

.rotate-opt li.rotate-btn-select-opt ul li.active::after {
  width: 18px;
  height: 18px;
  top: 3px;
  right: 0;
}

.form-wrapper.rotate-opt a.pull-right {
  padding-right: 30px;
}

.form-wrapper.rotate-opt {
  padding-top: 10px;
  padding-inline: 0;
}

a.pull-right {
  font-weight: 500;
  text-decoration: underline;
  color: var(--red);
  cursor: pointer;
  display: flex;
  justify-content: end;
}

a.pull-right:hover {
  color: var(--lightblack);
}

nav.custom-menu ul li {
  position: relative;
}

nav.custom-menu ul li .additional-menus-wrapper {
  display: none;
  min-width: 300px;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 16px;
  cursor: auto;
  left: 0;
  -webkit-transform: translateX(5%);
  transform: translateX(5%);
  width: 16vw;
}

nav.custom-menu ul li:hover .additional-menus-wrapper {
  display: block;
}

nav.custom-menu ul li .additional-menus-wrapper .additional-menus {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  background: #fff;
  position: relative;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 45px hsla(0, 0%, 9%, 0.1);
  box-shadow: 0 5px 45px hsla(0, 0%, 9%, 0.1);
  width: 100%;
  margin: auto;
  padding-bottom: 0;
  padding: 32px;
  animation: fade-in-bottom 0.08s ease-in-out both;
  flex-direction: column;
  align-items: flex-start;
}

nav.custom-menu ul li .additional-menus-wrapper .additional-menus li {
  margin: 0;
  display: flex;
  min-width: 200px;
}

nav.custom-menu ul li .additional-menus-wrapper .additional-menus li a {
  text-transform: none;
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

nav.custom-menu ul.additional-menus li a {
  padding: 12px;
  margin-left: -12px;
  width: 100%;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  flex-grow: 1;
}

nav.custom-menu ul.additional-menus li a:hover {
  background-color: var(--bg-color) !important;
}

nav.custom-menu ul.additional-menus li a img {
  width: 20px;
  margin-right: 12px;
}

nav.custom-menu > ul > li {
  padding-block: 18px;
}

.scaling-pdf .sidebar-options-panel .form-wrapper .input-group,
.scaling-pdf .sidebar-options-panel .form-wrapper .form-select,
.scaling-pdf .sidebar-options-panel .form-wrapper .input-group input {
  min-height: 50px;
}

.scaling-pdf .sidebar-options-panel .form-group,
.scaling-pdf .sidebar-options-panel .form-wrapper .input-group {
  margin-bottom: 15px;
  text-align: left;
}

.scaling-pdf .sidebar-options-panel .form-wrapper h5,
.scaling-pdf .sidebar-options-panel .form-wrapper label {
  text-align: left;
}

.scaling-pdf .form-wrapper .row.size-range {
  display: flex;
}

.scaling-pdf .form-wrapper .row.size-range .input-group {
  width: 50%;
}

.header-wrapper .right-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-wrapper .right-menu ul.right-opt {
  display: flex;
  gap: 15px;
}

.header-wrapper .right-menu ul.right-opt li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-wrapper .right-menu ul.right-opt li label {
  font-weight: 700;
}

.choices__list--single {
  padding: 2px 28px 2px 7px;
  font-size: 16px;
}

.choices__inner {
  background-color: transparent;
  border-radius: 6px;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  word-break: normal;
}

.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
  overflow-x: hidden;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: var(--bg-color);
}

.render-complex-pages .feature-area .upl-pre-r-section {
  text-align: left;
}

.render-complex-pages .form-item,
.render-complex-pages .form-group:not(:first-child) {
  margin-top: 25px;
}

.render-complex-pages .form-group .form-label,
.render-complex-pages .form-item label {
  margin-bottom: 3px;
}

.render-complex-pages .form-wrapper .form-text {
  font-size: 12px;
}

.form-group.form-check.form-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
}

.form-switch .form-check-input {
  height: 1.5em;
  width: 3em;
  background-color: #ffffff;
  border-color: #13b269;
  background-image: url('images/radio-img.svg');
}

.form-check-input:checked {
  background-color: #13b269;
  background-image: url('images/radio-imgwhite.svg');
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgb(51 178 109 / 25%);
}

.render-complex-pages .form-switch .form-check-input,
.step-and-repeat .form-switch .form-check-input {
  order: 1;
}

.render-complex-pages .form-select {
  border-color: transparent;
  background-color: var(--bg-color);
  font-size: 14px;
}

.render-complex-pages .sidebar-options-panel ul.radio-btn-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.information-popop .modal-header {
  padding: 12px 64px 12px;
}

.information-popop h2 {
  font-size: 18px;
  border-bottom: 1px solid var(--side-border);
  padding-bottom: 5px;
  color: var(--red);
}

.information-popop {
  max-width: 85%;
  height: 95%;
}

.information-popop h1 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 5px;
}

.information-popop h1 {
  color: var(--red);
}

.information-popop h1 span {
  color: var(--grey);
}

.information-popop.modal-dialog .modal-header p {
  font-size: 14px;
  line-height: 24px;
}

.information-popop .common-info p {
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 24px;
}

.information-popop .common-info {
  margin-bottom: 0px;
  padding: 20px;
  background-color: var(--bg-color);
}

.information-popop.modal-dialog .modal-body {
  padding: 26px 18px 26px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.mobile-menu {
  display: none;
}

.n-up-impose .sidebar-options-panel .form-wrapper {
  padding-inline: 0;
}

.n-up-impose .sidebar-options-panel .form-group {
  padding-inline: 30px;
  text-align: left;
  margin-bottom: 18px;
}

.n-up-impose .sidebar-options-panel .orientation-sec {
  padding-inline: 0;
}

.form-label,
.form-item label,
.form-check.form-switch label {
  margin-bottom: 3px;
  font-weight: 500;
}

.n-up-impose .form-wrapper ul.orientation-select li img,
.n-up-impose .form-wrapper .orientation-select li.active img {
  filter: unset;
}

.n-up-impose .form-wrapper ul.orientation-select {
  border-top: 1px solid #c4c5c7;
}

.n-up-impose .form-wrapper ul.orientation-select li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.n-up-impose .size-range {
  gap: 10px;
}

.n-up-impose .form-check.form-switch + .form-item input {
  margin-bottom: 10px;
}

.n-up-impose .form-check.form-switch {
  display: flex;
  justify-content: space-between;
  padding-inline: 30px;
  margin: 12px 0 18px;
  gap: 20px;
  text-align: left;
}

.slugline-preview {
  margin: 18px 0;
}

.n-up-impose .sidebar-options-panel .distribute-pages-input {
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}

.n-up-impose .sidebar-options-panel .distribution {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.n-up-impose .sidebar-options-panel .distribution span {
  order: -1;
}

.n-up-impose .sidebar-options-panel .distribution input {
  width: 70px;
}

.header-wrapper .right-menu ul.right-opt .form-group.form-check.form-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header-wrapper .right-menu ul.right-opt .form-group.form-check.form-switch label {
  margin-top: 8px;
}

.header-wrapper .right-menu ul.right-opt .form-switch .form-check-input {
  margin-left: 5px;
}

.halffold_and_cover_spreads .form-wrapper {
  gap: 20px;
}

.halffold_and_cover_spreads .form-wrapper .input-group input:focus {
  box-shadow: none;
}

.halffold_and_cover_spreads .form-wrapper .form-item label {
  text-align: left;
  display: block;
}

.halffold_and_cover_spreads .form-wrapper .form-item label {
  font-weight: 500;
}

.halffold_and_cover_spreads .sidebar-options-panel ul.radio-btn-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.halffold_and_cover_spreads .sidebar-options-panel ul.radio-btn-select div,
.halffold_and_cover_spreads .sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt {
  height: 100%;
}

.halffold_and_cover_spreads .sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay.no-task-found {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay.no-task-found .actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.overlay.no-task-found button {
  box-sizing: border-box;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 20px;
  background: var(--red);
  line-height: 28px;
  vertical-align: middle;
  color: var(--white);
  text-decoration: none;
  border: 0;
  border-radius: 12px;
}

.form-item label,
.form-wrapper .form-label,
.form-group.form-check.form-switch label {
  font-weight: 500;
}

.halffold_and_cover_spreads .form-switch .form-check-input {
  order: 1;
}

.edges-layout .f-canvas p,
.edges-layout .file-item > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  width: 100%;
  color: var(--white);
}

.edges-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.edges-layout .top-edge,
.edges-layout .bottom-edge {
  grid-column-start: 2;
  grid-column-end: 4;
}

.step-and-repeat .form-label {
  text-align: left;
  font-weight: 500;
}

.step-and-repeat .form-group.form-item {
  padding-block: 10px;
}

.step-and-repeat .form-item .distribute-pages-input {
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: space-between;
}

.step-and-repeat .form-item .row.size-range {
  row-gap: 8px;
}

.step-and-repeat .form-group.form-item.orientation-sec {
  margin-top: -20px;
}

.step-and-repeat .distribution {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.distribution input {
  width: 70px;
}

.step-and-repeat .form-wrapper ul.split-type-selection li.active img {
  filter: unset;
}

.step-and-repeat .form-group.form-check.form-switch {
  margin-top: 10px;
}

.form-group.form-check.form-switch label {
  font-weight: 500;
  max-width: 285px;
}

.compare-pdf.upload label.form-label {
  width: 100%;
  text-align: left;
}

.compare-pdf.upload .form-group.form-item {
  margin-bottom: 20px;
}

.compare-pdf.upload .form-group.form-check.form-switch label.form-check-label {
  max-width: 230px;
  text-align: left;
}

.compare-pdf.upload select.form-control {
  background-color: var(--bg-color);
}

.uploader-dropbox {
  padding: 0 20px;
}

.uploader-dropbox .container {
  margin: 0 auto;
}

.uploader-dropbox h2.feature-subtitle {
  margin-bottom: 24px;
}

span.error {
  width: 100%;
  display: block;
  text-align: left;
}

/* 17-12-2024 */
section.comman-six-box-sextion {
  padding: 60px 0;
  background-color: #fff;
}
header .logo a:hover {
  background: transparent;
}
.feature.upload .feature-area.upload-section {
  background-color: transparent;
}
.comman-header-part {
  text-align: center;
}

.comman-header-part h2 {
  font-size: 30px;
  line-height: 40px;
  color: var(--grey);
}

.comman-six-box-wrapper {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  row-gap: 40px;
}

.comman-six-box-wrapper .comman-six-box-img {
  width: 40px;
  margin-bottom: 15px;
}

.comman-six-box-wrapper .comman-six-box-img img {
  height: 50px;
  object-fit: contain;
}

.comman-six-box-content h3 {
  font-size: 20px;
  line-height: 30px;
  color: #4e4e55;
  margin-bottom: 0;
}

.comman-six-box-content p {
  font-size: 14px;
  line-height: 20px;
  margin: 3px 0;
  color: var(--border-color);
}

section.the-data-security {
  padding: 50px 0;
}

.data-privacy-security-wrapper {
  margin-bottom: 50px;
}

section.the-data-security .comman-header-part {
  max-width: 960px;
  margin: 0 auto;
}

.comman-header-part h2 {
  font-size: 30px;
  line-height: 40px;
  color: #4e4e55;
}

section.the-data-security .comman-header-part p {
  font-size: 16px;
  line-height: 26px;
  color: gray;
}

.data-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.logo-box img {
  width: 100%;
  max-width: 84px;
  height: 55px;
  object-fit: contain;
}

/*
  Enter and leave animations can use different
  durations and timing functions.
*/
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

button.open-conf-btn {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid;
}

/* 18-12-2024 */
.upl-pre-r-section .sidebar-options-panel h2 {
  width: 100%;
  border: none;
  color: #fff;
  margin-top: 0px;
  font-size: 18px;
}

.upl-pre-r-section .sidebar-options-panel form button.open-conf-btn {
  border: none;
  font-weight: bold;
  border-bottom: 2px solid;
  text-transform: capitalize;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto;
  display: flex;
  margin-top: 10px;
  position: relative;
}

.bg-navy-blue {
  background-color: #7595d0 !important;
  color: #fff;
}

.bg-yellow {
  background-color: #e6a84b !important;
  color: #fff;
}

.bg-baby-pink {
  background-color: #db85bc !important;
  color: #fff;
}

.bg-light-orange {
  background-color: #e74945 !important;
  color: #fff;
}
.add-advertisement-form .back-btn,
.edit-advertisement-banner .back-btn {
  margin-bottom: 20px;
  display: flex;
  justify-content: end;
  width: fit-content;
  margin-left: auto !important;
}

.text-yellow {
  color: #e6a84b;
}

.text-baby-pink {
  color: #db85bc;
}

.text-light-orange {
  color: #e74945;
}

.text-navy-blue {
  color: #7595d0;
}

.bg-green {
  background-color: #31ac76 !important;
  color: #fff;
}

text-green {
  color: #31ac76;
}

ul.social-icon-footer li:first-child a {
  padding-left: 0;
}

ul.social-icon-footer {
  display: flex;
  align-items: center;
}

.feature .feature-area .container {
  max-width: 100%;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-wrapper .footer-logo-social {
  width: 35%;
}

.footer-wrapper .footer-cols {
  width: 55%;
}

.footer-logo-social ul li a img {
  width: 33px;
}

.footer-logo-social h4 {
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* .advertisement {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
} */

.advertisement img {
  width: 140px;
}

/* .pdf-wrapper .pdf-preview {
  width: calc(100% - 140px);
  margin: 0 auto;
} */
.previews {
  display: flex;
  align-items: center;
  justify-content: center;
}
.multiple-page {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.upload-log-gpd {
  background: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  width: 100%;
}

.upload-log-gpd img {
  width: 100%;
  max-width: 100px;
}

.uploader-par {
  max-width: 530px;
}

.uploader-dropbox {
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 0;
  padding-bottom: 3px;
  width: 100%;
  max-width: 305px;
}

.uploader-par {
  max-width: 320px;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 15px;
  /* padding-bottom: 50px;
      padding-top: 60px; */
  padding-bottom: 20px;
  padding-top: 20px;
}

.uploader-dropbox h1.feature-title,
.new-download-box h1.feature-title {
  border-bottom: 1px solid #dadbdc;
  padding: 0;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 35px;
  padding-left: 5px;
  padding-right: 5px;
}

.new-download-box h1.feature-title {
  border: 0;
  margin: 0;
  line-height: 26px;
  padding-top: 0;
}

.new-download-box .download_box .additional_links {
  margin-top: 14px;
  justify-content: center;
  margin-bottom: 10px;
}

.new-download-box .download_box a.download_btn {
  width: 100%;
  display: block;
  margin-top: 6px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.new-download-box .download_box a.download_btn:before,
button.bg-green.upload-btn:before,
.downlaod_wrapper .new-download-box .download_box a.home_btn:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 9;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0%, 49% 50%, 0% 100%);
  opacity: 0.2;
}

button.bg-green.upload-btn,
.download_box a.download_btn,
.downlaod_wrapper .new-download-box .download_box a.home_btn {
  font-size: 16px;
  line-height: 20px;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 24px;
  box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.3);
  border: none;
  width: 100%;
  position: relative;
  min-height: auto;
  min-width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.download_box a.home_btn span {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.downlaod_wrapper .new-download-box .download_box a.home_btn span {
  margin: 0;
}

.upload-btn-parent {
  padding-left: 20px;
  padding-right: 20px;
  margin: 16px 0;
}

.uploader-dropbox h2.feature-subtitle {
  font-size: 15px;
  max-width: 250px;
  line-height: 20px;
  min-height: 63px;
}

.uploader-par .upload-log-gpd {
  margin-bottom: 18px;
}

.uploader-dropbox .container.drop-zone {
  max-width: 280px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 auto;
  max-width: calc(100% - 29px);
}

/* .feature.upload .feature-area.upload-section .uploader-screen,
section.main-download-part-vg .container .uploader-screen {
  background-image: url(../public/advertisements/add-background-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;

} */
body.adv-banner-body .main-container {
  /* background-image: url(../public/advertisements/add-background-img.png); */
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

section.main-download-part-vg {
  height: 100%;
}

.new-download-box {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.uploader-dropbox .container.drop-zone img {
  width: 50px;
  margin-bottom: 10px;
}

.downlaod_wrapper .thank_box h4 {
  border-bottom: 1px solid;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  width: fit-content;
  margin: 0 auto;
}

.downlaod_wrapper .thank_box p {
  border-bottom: 1px solid;
  font-size: 11px;
  line-height: 22px;
  width: fit-content;
  margin: 0 auto;
}

section.main-download-part-vg .container {
  height: 100%;
  position: relative;
}

.uploader-screen {
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  height:auto; */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: 60px;
}
.container.drop-zone p {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
}

.container.drop-zone p.uniq-pts {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: #4c4e53;
}

.box-wrapper .c-box p {
  margin-bottom: 0 !important;
}

.box-wrapper .c-box a {
  padding-top: 15px;
  padding-bottom: 14px;
}

.new-download-box .download_box .additional_links a.file-btn {
  border-radius: 7px;
}

body.adv-banner-body main.inner-page {
  margin: 0;
  overflow-y: auto;
  height: 100%;
}

section.meet-our-team-section {
  padding: 50px 0;
  position: relative;
}
.meet-our-team-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.box-wrapper .c-box h2 {
  width: 100%;
}

.advertisement {
  width: 140px;
}
.feature.pdf-to-image.preview .feature-area.upload-section .pdf-wrapper {
  gap: 20px;
}
.upl-pre-l-section.pdf-wrapper-overflow {
  padding-left: 0;
  padding-right: 0;
}
.upl-pre-l-section.pdf-wrapper-overflow {
  display: flex;
  max-width: calc(100% - 450px);
  margin: 0 auto;
}
.advertisement-banner a.add_btn {
  padding: 10px 15px;
  /* background-color: #e5322d; */
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  float: right;
}
.advertisement-banner a.add_btn:hover {
  background-color: #e5322d !important;
  color: white;
  border: none;
  cursor: pointer;
}
.main-container .inner-page div.advertisement-banner {
  padding: 20px;
}

.edit-advertisement-banner form span.error-message {
  color: red;
  font-size: 0.9em;
}
.main-container .inner-page div.edit-advertisement-banner {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
}
.main-container .inner-page div.edit-advertisement-banner form div {
  margin-bottom: 10px;
}
.main-container .inner-page div.edit-advertisement-banner form label {
  display: block;
  margin-bottom: 5px;
}
.main-container .inner-page div.edit-advertisement-banner form input,
.main-container .inner-page div.edit-advertisement-banner form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

div.edit-advertisement-banner form button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  margin: 0;
}

div.edit-advertisement-banner form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.main-container .inner-page div.add-advertisement-form {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
}

div.add-advertisement-form form div {
  margin-bottom: 10px;
}

div.add-advertisement-form form label {
  display: block;
  margin-bottom: 5px;
}

div.add-advertisement-form form input,
div.add-advertisement-form form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

div.add-advertisement-form button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
div.add-advertisement-form .add_btn {
  padding: 10px 15px;
  /* background-color: #e5322d; */
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  float: right;
}
div.add-advertisement-form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.pdf-wrapper .preview-section > div {
  width: 100%;
}
.pdf-wrapper .preview-section {
  width: 100%;
}
.pdf-wrapper .preview-section > div .pdf-preview {
  display: flex;
  justify-content: center;
}

.pdf-wrapper .file-item .f-canvas img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}
.pdf-wrapper .file-item .f-canvas {
  width: 100%;
}
nav.custom-menu ul li .additional-menus-wrapper {
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding-top: 3px;
}

.additional-menus-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
}

.additional-menus-wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--bg-color);
}

.additional-menus-wrapper::-webkit-scrollbar {
  z-index: 50;
  width: 4px;
  height: 4px;
  background-color: var(--red);
}
.pdf-wrapper .file-item .f-canvas img.icon-preview {
  max-width: 42px;
  height: auto;
  object-fit: contain;
}
.f-canvas {
  height: 170px;
  max-width: 130px;
}

.main-container main.inner-page .full-banner {
  width: 100%;
  height: 100vh;
}

.main-container main.inner-page .full-banner {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 34px;
}

.main-container main.inner-page .full-banner a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 17/03/2025 */
.footer-wrapper .footer-cols .f-col {
  flex: 0 0 40%;
  max-width: 40%;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconError {
  font-size: 24px;
  position: relative;
  top: -5px;
  left: -4px;
  color: red;
  z-index: 0;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconError:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 7px;
  bottom: 0;
  width: 10ppx;
  height: 14px;
  width: 12px;
  background: #fff;
  z-index: 0;
  border-radius: 50%;
  z-index: -1;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconWarning {
  font-size: 24px;
  position: relative;
  top: -5px;
  left: -4px;
  color: yellow;
  z-index: 0;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconWarning:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 7px;
  bottom: 0;
  width: 10ppx;
  height: 14px;
  width: 12px;
  background: #000000;
  z-index: 0;
  border-radius: 50%;
  z-index: -1;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconInfo {
  font-size: 24px;
  position: relative;
  top: -5px;
  left: -4px;
  color: #1130a1;
  z-index: 0;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconInfo:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 7px;
  bottom: 0;
  width: 10ppx;
  height: 14px;
  width: 12px;
  background: #ffffff;
  z-index: 0;
  border-radius: 50%;
  z-index: -1;
}
.downlaod_wrapper .new-download-box .download_box a.home_btn span.exclamationIconText {
  font-weight: 600;
  width: fit-content;
}

.thank_btnwrap ul.social li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
  color: #ffffff; /* White text */
  padding: 20px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.accept-btn {
  background-color: #4caf50; /* Green */
  color: white;
}

.accept-btn:hover {
  background-color: #45a049; /* Darker green */
}

.decline-btn {
  background-color: #f44336; /* Red */
  color: white;
}

.decline-btn:hover {
  background-color: #e53935; /* Darker red */
}

.feature.upload {
  width: fit-content;
}

section.main-download-part-vg {
  width: fit-content;
}

.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.advertisement.image-container .hover-text {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;

  border-radius: 8px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s ease,
    opacity 0.2s ease;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  /* word-wrap: break-word; */
  text-align: center;
  justify-content: center;
  line-height: 19px;
}

.advertisement.image-container img {
  display: block;
  cursor: pointer;
  transition: transform 0.5s ease;
}

/* responsive */
@media (max-width: 98.75em) {
  .box-wrapper .c-box a {
    padding-inline: 24px;
  }

  .box-wrapper .c-box {
    -ms-flex-preferred-size: calc(20% - 4px);
    flex-basis: calc(20% - 4px);
  }
}

@media (max-width: 90em) {
  /* .box-wrapper {
    padding: 0px 11px 42px;
  } */
  .wrapper .box-layout .home-title,
  .box-layout h2.home-subtitle {
    padding-inline: 0;
  }
}

@media (max-width: 1440px) {
  .pdf-wrapper button[type='submit'] {
    font-size: 18px;
    line-height: 26px;
    min-height: 64px;
    padding: 8px 12px;
    width: 330px;
  }

  .split-pdf .sidebar-options-panel ul.radio-btn-select li.radio-btn-select-opt {
    padding: 8px 18px;
  }

  .upl-pre-r-section {
    flex-basis: 380px;
  }

  .sidebar-options-inactive {
    width: 380px;
  }

  .upl-pre-r-section:after {
    width: 375px;
  }
}
@media (max-width: 1380px) {
  .feature.upload .feature-area {
    height: 100%;
  }
}
@media (max-width: 1280px) {
  .feature .feature-area {
    height: 100%;
  }
  .box-wrapper .c-box {
    -ms-flex-preferred-size: calc(25% - 4px);
    flex-basis: calc(25% - 4px);
  }
  .upl-pre-l-section.pdf-wrapper-overflow {
    margin: 0 20px;
  }
  .pdf-wrapper .preview-section {
    min-width: 530px;
  }
  nav.custom-menu ul li {
    margin-inline: 0px;
  }

  /* .pdf-wrapper button[type='submit']{
    width: 21%;
  } */
  .pdf-wrapper .preview-section {
    min-width: fit-content;
  }
}

@media (max-width: 1140px) {
  .pdf-wrapper button[type='submit'] {
    font-size: 20px;
  }

  nav.custom-menu {
    display: none;
  }

  nav.custom-menu ul li {
    margin-inline: 4px;
  }

  .information-popop.modal-dialog .modal-body {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 991px) {
  /* .pdf-wrapper .preview-section {
    min-width: auto;
    justify-content: center;
} */
  .upl-pre-r-section {
    margin-top: 20px;
  }
  /* .preview-section .single-page {
  min-width: 500px;
} */

  .pdf-wrapper .upl-pre-l-section {
    padding: 25px 0px;
  }
  .pdf-wrapper .form-submit-btn {
    text-align: center;
  }
  .upl-pre-l-section.pdf-wrapper-overflow {
    max-width: calc(100% - 0px);

    margin: 0 auto !important;
  }
}

@media screen and (max-width: 989px) {
  .pdf-wrapper {
    flex-direction: column;
  }

  .information-popop.modal-dialog .modal-body {
    grid-template-columns: 1fr;
  }

  button.setting-btn-mobile-view {
    display: block;
  }

  .sidebar-options-inactive {
    width: 100%;
    top: auto;
    /* bottom: 0; */
    justify-content: flex-start;
    padding-top: 50px;
  }

  .preview-actions {
    right: 24px;
  }

  .pdf-wrapper .form-submit-btn {
    right: 0;
    left: 0;
  }

  .upl-pre-r-section:after {
    width: 100%;
  }

  .pdf-wrapper button[type='submit'] {
    width: 230px;
    position: unset;
  }

  .upl-pre-r-section .sidebar-options-panel {
    padding-bottom: 80px;
  }

  .pdf-wrapper .upl-pre-l-section,
  .upl-pre-r-section {
    margin-right: 0;
  }

  .box-wrapper .c-box {
    -ms-flex-preferred-size: calc(33.333% - 4px);
    flex-basis: calc(33.333% - 4px);
  }

  .box-layout h2.home-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .right-content h2,
  .login-form h2 {
    font-size: 20px;
    line-height: 30px;
  }

  p {
    line-height: 24px;
    font-size: 14px;
  }

  .login-form {
    min-width: auto;
    max-width: 472px;
    text-align: center;
    padding-inline: 30px;
  }

  .wrapper {
    flex-direction: column;
  }

  .right-content {
    min-height: auto;
  }

  .box-wrapper .c-box p {
    line-height: 18px;
    font-size: 12px;
  }

  /* footer .container {
    max-width: 92%;
  } */

  .drop-zone button {
    font-size: 22px;
    line-height: 26px;
    padding: 24px 32px;
  }

  .whit_box .continue-to-sec {
    grid-template-columns: 1fr 1fr;
  }

  .downlaod_wrapper .whit_box {
    max-width: 536px;
    margin-inline: auto;
  }

  /* .mobile-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  } */
  /* nav.custom-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9;
    top: 0;
    left: 0;
} */
  /* nav.custom-menu ul {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
} */
  .advertisement {
    max-width: 500px;
    margin: 0 auto;
  }
  .advertisement img {
    width: 100%;
  }
  header .logo a {
    padding-right: 20px;
  }
  .footer-wrapper .footer-cols .f-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .comman-six-box-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .comman-header-part h2 {
    font-size: 25px;
    line-height: 32px;
  }
  section.the-data-security .comman-header-part p {
    font-size: 16px;
    line-height: 25px;
  }
  section.the-data-security {
    padding: 30px 0;
  }
  .footer-wrapper {
    flex-wrap: wrap;
  }

  .footer-wrapper .footer-logo-social {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-wrapper .footer-cols {
    width: 100%;
  }

  .login-form button[type='submit'] {
    width: 100%;
  }

  .edges-layout {
    grid-template-columns: 1fr 1fr;
  }

  .modal-dialog {
    max-width: 95%;
  }

  .downlaod_wrapper .whit_box a.info_btn {
    max-width: 100%;
  }

  .whit_box .continue-to-sec {
    grid-template-columns: 1fr;
  }

  .range-wrapper {
    margin: 4px;
    padding: 4px;
  }

  .pdf-wrapper .file-item {
    width: 110px;
    height: 160px;
  }

  .range-wrapper .f-canvas.range-container {
    width: auto;
    margin: 0 4px;
  }

  .range-wrapper span.range-seperator {
    width: 13px;
  }

  .user_info p {
    line-height: 20px;
    max-width: 45%;
  }

  .footer {
    padding-bottom: 30px;
  }

  .uploading .uploading-status-title {
    font-size: 18px;
    line-height: 28px;
  }

  .user_section {
    padding: 48px 0 64px;
  }

  .preview-actions {
    right: 15px;
  }

  .uploading-file-status b,
  .uploading-status-info {
    font-size: 14px;
  }

  .uploading .uploading-status-percent p.percentage {
    font-size: 38px;
    line-height: 48px;
  }

  .uploading .uploading-status-percent {
    font-size: 20px;
  }

  .software_opt ul {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-area .container {
    padding: 0 24px;
  }

  .container.drop-zone {
    margin-inline: 0;
  }

  .box-wrapper {
    padding: 0px 0px 42px;
  }

  .pdf-wrapper button[type='submit'] {
    font-size: 16px;
    line-height: 20px;
    min-height: 40px;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .container.drop-zone {
    padding: 58px 30px;
  }

  .drop-zone button {
    min-width: 260px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .wrapper h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .box-layout h2.home-subtitle,
  .box-wrapper .c-box h2,
  h2.feature-subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .box-wrapper .c-box h2 {
    font-size: 16px;
    line-height: 20px;
  }

  nav.custom-menu ul li a {
    padding: 0;
  }

  .user_section h2,
  .downlaod_wrapper h1 {
    font-size: 18px;
    line-height: 28px;
  }

  .download_box a.download_btn,
  .download_box a.home_btn {
    font-size: 20px;
    line-height: 24px;
    padding: 24px 34px;
    min-width: auto;
    max-width: 100%;
  }
}
@media only screen and (max-width: 676px) {
  .choices__list--single {
    padding: 2px 14px 2px 0px;
    font-size: 16px;
  }
  .choices__list--single {
    font-size: 13px;
  }
  .header-wrapper .right-menu ul.right-opt li label {
    font-weight: 500;
    font-size: 13px;
  }
  .header-wrapper .right-menu ul.right-opt {
    gap: 6px;
  }
}
@media (max-width: 640px) {
  .comman-six-box {
    text-align: center;
  }

  .comman-six-box-wrapper .comman-six-box-img {
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .data-logo-section {
    gap: 20px;
  }

  .footer-cols .f-col h4 {
    margin-bottom: 8px;
  }

  section.comman-six-box-sextion {
    padding: 30px 0;
  }

  .footer-cols .f-col ul li {
    margin-bottom: 1px;
  }

  .comman-six-box-wrapper {
    margin-top: 20px;
    row-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-cols .f-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-wrapper .footer-cols {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .footer-wrapper .footer-logo-social {
    text-align: center;
  }

  ul.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-cols .f-col {
    text-align: center;
  }

  .footer-contact ul.social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .footer-contact p {
    width: 100%;
  }

  .footer-contact {
    text-align: center;
  }

  .box-wrapper .c-box {
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: calc(50% - 4px);
    flex-basis: calc(50% - 4px);
  }

  .box-wrapper .c-box a {
    padding: 24px;
  }

  .footer-cols,
  .footer-contact {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-contact {
    gap: 0;
  }
  .footer-wrapper .footer-cols .f-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 440px) {
  .box-wrapper .c-box {
    -ms-flex-preferred-size: calc(100% - 4px);
    flex-basis: calc(100% - 4px);
  }
  .header-wrapper .right-menu ul.right-opt li {
    gap: 5px;
  }
  header .logo a {
    padding-right: 8px;
  }

  .box-wrapper .c-box a {
    padding: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
  }

  .drop-zone button {
    min-width: 230px;
  }

  .download_box a.back_btn {
    order: 2;
  }

  .download_box {
    flex-direction: column;
    gap: 8px;
  }
}
/* 15-1-2025 */
.uploader-screen .uploader-par.donwload-upload-par {
  padding-top: 0;
  padding-bottom: 0;
}
.uploader-par {
  padding-top: 0;
}
.uploader-screen {
  display: block;
  padding-top: 70px;
}
.version {
  width: fit-content;
  margin-left: 20px;
  position: absolute;
  left: 0;
  bottom: 2px;
}

.version span {
  color: lightgray;
  font-size: 15px;
}

footer {
  position: relative;
}
