@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--berry-black-60);
}

:root {
  --box-color: #fff;
  --bg-color: #f3f4fd;
  --fonts--body: Inter, Arial, sans-serif;
  --berry-black-60: #0a0523;
  --berry-black-60-opacity80: #0a0523b3;
  --trans_anim: transform .5s cubic-bezier(.165, .84, .44, 1);
  --accent-900: #2700ff;
  --accent-800: #1b945b;
  --check-svg: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23ffffff'%3E%3Cpath d='M400-314.46 250.46-464 296-509.54l104 104 264-264L709.54-624 400-314.46Z'/%3E%3C/svg%3E");
  --notification-inset: 2rem;
}

::-webkit-scrollbar {
  display: none !important;
}

body {
  background-color: var(--bg-color);
  font-family: "Poppins", sans-serif;
  color: var(--berry-black-60);
  background-image: url(../img/grain-texture-berry100-opacity3.png), url(../img/bg-body-top.webp);
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 1650px;
  font-size: 16px;
  line-height: 1.4;
  min-height: 100%;
  margin: 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

.clor_blu {
  color: blue;
}

.activ_nav_btn {
  border-bottom: 2px solid black;
  font-weight: 600;
  transform: scale(1) !important;
}

.top_marg {
  margin-top: 129px !important;
}

.mobile_nav_btn {
  display: none !important;
}

.dn {
  display: none !important;
}

.df {
  display: flex !important;
}

.icon_hight_34 {
  height: 34px !important;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  padding-left: 25px;
  padding-right: 25px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1;
  animation: topmanu 0.5s linear;
}
nav .left_nav {
  background: var(--box-color);
  width: 100%;
  max-width: 64rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding-left: 26px;
  padding-right: 26px;
  box-shadow: inset 1.5px 1.5px 1.5px rgba(255, 255, 255, 0.6588235294), 0 30px 60px rgba(10, 5, 35, 0.031372549);
  border-radius: 19px;
}
nav .left_nav span,
nav .left_nav a {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .left_nav span img,
nav .left_nav a img {
  width: 35px;
}
nav .left_nav span:nth-child(2),
nav .left_nav a:nth-child(2) {
  gap: 20px;
  height: 100%;
  display: flex;
}
nav .left_nav span a,
nav .left_nav a a {
  color: var(--berry-black-60-opacity80);
  height: 100%;
  display: flex;
  align-items: center;
  transition: var(--trans_anim);
}
nav .left_nav span a:hover,
nav .left_nav a a:hover {
  transform: scale(1.08);
}
nav .right_nav {
  width: 62px;
  min-width: 62px;
  background: var(--box-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  box-shadow: inset 1.5px 1.5px 1.5px rgba(255, 255, 255, 0.6588235294), 0 30px 60px rgba(10, 5, 35, 0.031372549);
  border-radius: 19px;
}
nav .right_nav a,
nav .right_nav button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--trans_anim);
  border: none;
  border-radius: 19px;
  background: var(--box-color);
}
nav .right_nav a:hover,
nav .right_nav button:hover {
  transform: scale(1.08);
}
nav .right_nav a i,
nav .right_nav button i {
  font-size: 20px;
  padding-top: 7px;
  color: var(--berry-black-60-opacity80);
}

.mobile_nav_box {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2588235294);
}
.mobile_nav_box .nav_at_rr {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 41px 4px;
  gap: 12px;
  max-width: 19rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  position: relative;
}
.mobile_nav_box .nav_at_rr span {
  position: absolute;
  top: 5px;
  right: 5px;
  transition: var(--trans_anim);
}
.mobile_nav_box .nav_at_rr span:hover {
  transform: scale(1.08);
}
.mobile_nav_box .nav_at_rr span i {
  font-size: 25px;
  color: red;
  cursor: pointer;
}
.mobile_nav_box .nav_at_rr a {
  transition: var(--trans_anim);
}
.mobile_nav_box .nav_at_rr a:hover {
  transform: scale(1.02);
}

.main {
  background-image: url(../img/bg-body-bottom.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 1000px;
  flex: 1;
  padding-bottom: 1px;
}
.main .top_box_arae {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 12px;
  gap: 22px;
  margin-top: 10rem;
}
.main .top_box_arae .left_box_tx {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 41rem;
  width: 100%;
}
.main .top_box_arae .left_box_tx h1 {
  color: var(--berry-black-60);
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1px;
  padding-right: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
  animation: topmanu 0.8s linear;
}
.main .top_box_arae .left_box_tx p {
  color: var(--berry-black-60-opacity80);
  margin-bottom: 0;
  padding-left: 2px;
  font-size: 17px;
  line-height: 1.4;
  animation: topmanu 0.8s linear;
}
.main .top_box_arae .right_box_tx img {
  width: 24rem;
  animation: topmanu 0.8s linear;
}
.main .text_titel {
  text-align: center;
  margin-top: 53px;
  animation: topmanu 0.9s linear;
}
.main .most_popular_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 39px;
  gap: 21px;
}
.main .most_popular_box .box_tool {
  background: var(--box-color);
  box-shadow: inset 1.5px 1.5px 1.5px rgba(255, 255, 255, 0.6588235294), 0 30px 60px rgba(10, 5, 35, 0.031372549);
  width: 19rem;
  border-radius: 19px;
  transition: var(--trans_anim);
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}
.main .most_popular_box .box_tool:hover {
  transform: scale(1.02);
}
.main .most_popular_box .box_tool a {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.main .most_popular_box .box_tool a .img_log_tool {
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 42px;
}
.main .most_popular_box .box_tool a .blog_img {
  width: 100%;
  border-radius: 9px;
  transition: var(--trans_anim);
}
.main .most_popular_box .box_tool a .blog_img:hover {
  transform: scale(1.02);
}
.main .most_popular_box .box_tool a h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.main .most_popular_box .box_tool a p {
  font-size: 15px;
  color: var(--berry-black-60-opacity80);
  width: 100%;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.main .most_popular_box .box_tool a .clor_blu {
  transition: var(--trans_anim);
}
.main .most_popular_box .box_tool a .clor_blu:hover {
  transform: scale(1.02);
}
.main .faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}
.main .faq-section h2 {
  text-align: center;
  margin-bottom: 25px;
}
.main .faq-section .faq-item {
  margin-bottom: 20px;
  padding: 15px;
  background: #f9fafb;
  border-radius: 8px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}
.main .faq-section .faq-item h3 {
  margin-bottom: 8px;
  color: #1f2937;
}
.main .blog-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  line-height: 1.7;
  border-radius: 19px;
}
.main .blog-section h1 {
  text-align: center;
  margin-bottom: 20px;
}
.main .blog-section h2 {
  margin-top: 25px;
  color: #1f2937;
}
.main .blog-section hr {
  margin: 30px 0;
}
.main .blog-section ul,
.main .blog-section ol {
  margin-left: 20px;
}
.main .pading_con {
  padding: 25px;
  margin-top: 7rem !important;
  margin-bottom: 15px !important;
  border-radius: 9px !important;
}
.main .container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main .container h1,
.main .container h2,
.main .container h3 {
  color: #1f2937;
}
.main .container table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.main .container table,
.main .container th,
.main .container td {
  border: 1px solid #ddd;
}
.main .container th,
.main .container td {
  padding: 10px;
  text-align: left;
}
.main .container .faq-item {
  margin-bottom: 15px;
}
.main .container header {
  text-align: center;
}
.main .container .thamble_top {
  border-radius: 9px;
}
.main .wrapper {
  width: 100%;
  max-width: 39rem;
  height: 288px;
  padding: 30px;
  background: #fff;
  border-radius: 9px;
  transition: height 0.2s ease;
  animation: topmanu 0.7s linear;
}
.main .wrapper.active {
  height: 537px;
}
.main .wrapper.active .upload-box {
  border: none;
}
.main .wrapper.active .upload-box p {
  display: none;
}
.main .wrapper.active .upload-box img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.main .wrapper.active .content {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s 0.05s ease;
}
.main .wrapper .upload-box {
  height: 225px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 2px dashed #afafaf;
  height: 225px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 2px dashed #afafaf;
  transition: 0.3s;
}
.main .wrapper .upload-box:hover {
  transform: scale(1.02);
}
.main .wrapper .content {
  opacity: 0;
  margin-top: 28px;
  pointer-events: none;
}
.main .wrapper .content .center_dd {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.main .upload-box p {
  font-size: 1.06rem;
  margin-top: 20px;
  text-align: center;
}
.main .upload-box.dragover {
  border-color: #927DFC;
  background: #f3f0ff;
}
.main .content .row {
  display: flex;
  justify-content: space-between;
}
.main .content .row .column {
  width: calc(50% - 15px);
}
.main .content .checkboxes {
  margin-top: 20px;
}
.main .content .download-btn {
  width: 100%;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  border-radius: 5px;
  padding: 15px 0;
  margin: 30px 0 10px;
  background: #927DFC;
  text-transform: uppercase;
}
.main .row .column label {
  font-size: 1.06rem;
}
.main .sizes .column input {
  width: 100%;
  height: 49px;
  outline: none;
  margin-top: 7px;
  padding: 0 15px;
  font-size: 1.06rem;
  border-radius: 4px;
  border: 1px solid #aaa;
}
.main .sizes .column input:focus {
  padding: 0 14px;
  border: 2px solid #927DFC;
}
.main .checkboxes .column {
  display: flex;
  align-items: center;
}
.main .checkboxes .column input {
  width: 17px;
  height: 17px;
  margin-right: 9px;
  accent-color: #927DFC;
}
.main .box_qr {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 17px;
  justify-content: center;
  align-items: center;
  gap: 21px;
  padding: 0px 12px;
}
.main .box_qr input {
  height: 3rem !important;
}
.main .box_qr .box_input,
.main .box_qr .box_inp_kgg {
  width: 100%;
  max-width: 37rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.main .box_qr .box_input p,
.main .box_qr .box_inp_kgg p {
  animation: topmanu 0.7s linear;
}
.main .box_qr .box_inp_kgg {
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}
.main .box_qr textarea,
.main .box_qr input,
.main .box_qr select {
  width: 100%;
  max-width: 37rem;
  border-radius: 9px;
  border: none;
  padding: 12px;
  height: 88px;
  outline: none;
  animation: topmanu 0.7s linear;
}
.main .box_qr select {
  height: auto !important;
}
.main .box_qr button {
  padding: 11px 12px;
  border: none;
  background: #2700ff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  margin: 3px;
  transition: var(--trans_anim);
  animation: topmanu 0.7s linear;
}
.main .box_qr button:hover {
  background: #1f00d0;
  transform: scale(1.02);
}
.main .box_qr #qrcode {
  background: #ffffff;
  padding: 12px;
  border-radius: 9px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.0117647059);
  display: none;
}
.main .box_qr .download-btn {
  display: none;
}
.main .box_qr .result {
  background: var(--box-color);
  padding: 12px;
  max-width: 32rem;
  width: 100%;
  animation: topmanu 0.7s linear;
  border-radius: 9px;
}
.main .box_qr .row {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.main .box_qr #currency {
  width: auto;
  height: auto;
}
.main .box_qr .file-list {
  width: 100%;
  max-width: 46rem;
  animation: topmanu 0.7s linear;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main .box_qr .file-item {
  width: 100%;
  background: var(--box-color);
  border-radius: 9px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .box_qr .file-item .privew_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.main .box_qr .file-item .privew_item img {
  width: 38px;
}
.main .box_qr .file-item .remove {
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  background: red;
  padding-left: 7px;
  padding-right: 7px;
  border-radius: 5px;
}
.main .box_qr .progress-box {
  background: #ffffff;
  height: 12px;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 45rem;
  animation: topmanu 0.7s linear;
}
.main .box_qr .progress-box .progress {
  height: 100%;
  width: 0%;
  background: #4a7cff;
  transition: 0.3s;
  border-radius: 4px;
}

.center_box_tool {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  gap: 12px;
}

#imageInput {
  display: none;
}

#uploadBox {
  border: 2px dashed #007bff;
  padding: 30px;
  width: 100%;
  background: white;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
  max-width: 53rem;
  height: 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--trans_anim);
  animation: topmanu 0.7s linear;
}
#uploadBox:hover {
  background: #e3f2fd;
  transform: scale(1.02);
}

#dropArea:hover {
  background: #e3f2fd;
  transform: scale(1.02);
}

.button_ger {
  padding: 11px 12px;
  border: none;
  background: #2700ff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  margin: 3px;
  transition: var(--trans_anim);
  animation: topmanu 0.7s linear;
}
.button_ger:hover {
  background: #1f00d0;
  transform: scale(1.02);
}

.selet_box {
  animation: topmanu 0.5s linear;
}

#preview {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 58rem;
}

.preview-box {
  position: relative;
  background: white;
  padding: 8px;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  justify-content: center;
  border-radius: 6px;
  box-shadow: inset 1.5px 1.5px 1.5px rgba(255, 255, 255, 0.6588235294), 0 30px 60px rgba(10, 5, 35, 0.031372549);
  align-items: center;
  height: 196px;
}
.preview-box img {
  width: 120px;
  border-radius: 5px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 14px;
  cursor: pointer;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#positionSelect {
  padding: 8px;
  margin-top: 10px;
  border-radius: 5px;
}

.sortable-ghost {
  opacity: 0.4;
}

footer {
  background-color: var(--box-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 4rem;
  justify-content: space-around;
  align-items: center;
}
footer span {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer span img {
  width: 35px;
}
footer span:nth-child(2) {
  gap: 20px;
  height: 100%;
  display: flex;
}
footer span a {
  color: var(--berry-black-60-opacity80);
  height: 100%;
  display: flex;
  align-items: center;
  transition: var(--trans_anim);
}
footer span a:hover {
  transform: scale(1.08);
}

.notification {
  color: rgba(0, 0, 0, 0.7);
  position: fixed;
  display: none;
  letter-spacing: 2px;
  line-height: 1.4;
  gap: 12px;
  top: 106px;
  right: 28px;
  width: 20rem;
  background-color: white;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  max-width: calc(100% - 6rem);
  z-index: 2;
  padding: 21px 12px 12px 12px;
  overflow: clip;
  transform: translateX(calc(100% + var(--notification-inset)));
  animation: slideInOut 4s cubic-bezier(0.33, 0, 0.66, 1.33);
  animation-play-state: var(--animation-play-state);
}
.notification .notification__body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification:hover {
  --animation-play-state: paused;
}
.notification:before {
  content: "";
  display: block;
  inset: 0 0 auto;
  height: 0.5rem;
  background-color: var(--accent-900);
  transform-origin: left;
  position: absolute;
  animation: countdown 4s linear;
  animation-play-state: var(--animation-play-state);
}
.notification__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.notification__action {
  margin-left: auto;
}
.notification__icon {
  border-radius: 9px;
  display: block;
  aspect-ratio: 1;
  background-size: 2rem;
  background-color: var(--accent-900);
  background-image: var(--check-svg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  width: 2.2rem;
  margin-bottom: auto;
  flex-shrink: 0;
}

@keyframes slideInOut {
  15%, 66% {
    transform: translateX(0);
  }
}
@keyframes countdown {
  66%, 100% {
    transform: scaleX(0);
  }
}
@keyframes topmanu {
  from {
    opacity: 0;
    transform: translateY(-51px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@media (max-width: 727px) {
  .right_box_tx {
    display: none !important;
  }
  .left_box_tx {
    text-align: center;
  }
  .left_box_tx h1 {
    font-size: 31px !important;
  }
  .main .top_box_arae {
    margin-top: 7rem;
  }
}
@media (max-width: 450px) {
  .nav_at {
    display: none !important;
  }
  .mobile_nav_btn {
    display: block !important;
  }
}
@media (max-width: 382px) {
  .center_dd {
    margin-top: 5px !important;
  }
}
@media (max-width: 863px) {
  .center_box_tool {
    padding-left: 12px;
    padding-right: 12px;
  }
  .center_box_tool #uploadBox {
    text-align: center;
  }
}
@media (max-width: 748px) {
  footer {
    height: -moz-fit-content;
    height: fit-content;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  footer span:nth-child(2) {
    gap: 12px;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */