* {
  padding: 0;
  margin: 0;
}

body {
  color: #000;
  font-size: 1em;
  font-weight: 400;
  background: #f5f5ff;
  font-family: system-ui;
}
a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: #673ee5;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background: 0;
  cursor: pointer;
  border: 0;
}
#goToTopBtn svg {
  font-size: 16px;
  padding: 10px;
  border: 0;
  background-color: #ff4c4c;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}
#goToTopBtn svg:hover {
  background-color: #555;
}

.tool {
  margin: auto;
  padding: 2em 1em 4em 1em;
  background-image: linear-gradient(
      6deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.02) 39%,
      transparent 39%,
      transparent 74%,
      rgba(117, 117, 117, 0.02) 74%,
      rgba(117, 117, 117, 0.02) 100%
    ),
    linear-gradient(
      129deg,
      rgba(222, 222, 222, 0.02) 0%,
      rgba(222, 222, 222, 0.02) 65%,
      transparent 65%,
      transparent 73%,
      rgba(83, 83, 83, 0.02) 73%,
      rgba(83, 83, 83, 0.02) 100%
    ),
    linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

.toolView h1,
.toolView p {
  text-align: center;
}
.toolView {
  margin-block: 2em;
}
.button-5 {
  align-items: center;
  background-color: #fa6400;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin: 10px auto;
  display: block;
  padding: 10px;
  min-width: 280px;
}

.button-5:hover,
.button-5:focus {
  background-color: #fb8332;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
.button-5:disabled {
  cursor: none;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.button-5:hover {
  transform: translateY(-1px);
}

.button-5:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  transform: translateY(0);
}

.form-control,
.topm .form-control {
  padding: 1em;
  width: calc(100% - 2.5em);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-top: 1em;
}

.form-control2 {
  padding: 0.8em 1em;
  width: calc(100% - 2.5em);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.select select {
  padding: 1em;
  width: 99%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-top: 1em;
}

.toollist {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.toollist img {
  max-width: 100px;
  width: 100%;
}

.toollist a {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1em;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 200px;
  background-color: #fff;
}

.toollist .name {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

.toollist .short_description {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #52565e;
}

.footer_main {
  background-color: #191919;
  padding: 2em 5px;
  color: #fff;
}

.footer_links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 1em;
}

.footer_links a {
  color: #fff;
  font-weight: bold;
}

.footer_links a:hover {
  color: #ff4c4c;
}

.footer_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-block: 1em;
}
.social {
  display: flex;
  align-items: center;
  gap: 1em;
}

.social_link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.twitter {
  background-color: #505050;
}

.facebook {
  background-color: #1877f2;
}

.youtube {
  background-color: #ff0000;
}

.instagram {
  background-color: #e1306c;
}

.social_link:hover {
  color: #fff;
  transform: scale(1.1);
}

.copyrights {
  background-color: #000;
  padding: 1em;
  text-align: center;
  color: #fff;
}

.brand img {
  width: 130px;
}

.is7030 {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 10px;
}
.is3070 {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 10px;
  place-items: center;
}

.is3070 img {
  border-radius: 10px;

  width: 100%;
}

.bg-light {
  background-color: #ccc;
  padding: 1em;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.bg-white {
  padding: 1em;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
}

.rate {
  float: left;
  height: 46px;
  text-align: left;
}

.rate:not(:checked) > input {
  position: absolute;
  display: none;
}

.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 40px;
  color: #ccc;
}

.rate:not(:checked) > label:before {
  content: "\2605";
}

.rate > input:checked ~ label,
.rate input[checked="checked"] ~ label {
  color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.overall-rating {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
  color: #222;
}

.statusMsg {
  font-size: 16px;
  padding: 10px !important;
  border: 1.5px dashed;
}

.statusMsg.errordiv {
  color: #ff4040;
}

.statusMsg.succdiv {
  color: #00bf6f;
}

.m {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.row {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 10px;
}

/* Applying styles to the table element */
table {
  border-collapse: collapse; /* Collapsing borders */
  width: 100%;
  background-color: #fff;
}

/* Applying styles to table rows */
tr {
  border: 1px solid #dddddd; /* Adding border */
}

/* Applying styles to table cells */
td {
  padding: 8px; /* Adding padding */
}

/* Applying different background color to even rows */
tr:nth-child(even) {
  background-color: #f2f2f2;
}

th{
    text-align:left;
    padding: 8px;
}

.result_heading {
  font-weight: bold;
  margin: 10px 0px;
  background: #dbebfa;
  padding: 5px;
  border-radius: 5px;
}

.tb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dbebfa;
}

.tb > div:nth-child(1) {
  font-weight: bold;
}

.tb > div:nth-child(2) {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal;
  word-break: break-all;
}
.row2 {
  display: grid;
  grid-template-columns: 50% 50%;
}
.topm {
  margin-top: 1em;
}

.form-label {
  margin: 0px;
  padding: 0px;
}

.winner {
  text-align: center;
}

.winner img {
  border-radius: 50%;
}

.chlogo {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dbebfa;
  padding-top: 10px;
  margin-top: 10px;
}

.chimg img {
  max-width: 150px;
  border-radius: 50%;
}

.isflex {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-block: 1em;
}

.imflex {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flex2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.country {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;

  border-radius: 5px;
  padding: 5px;
  min-height: 50px;
}

.livefalse .country {
  background-color: #f8e6e8;
}

.livetrue .country {
  background-color: #dbebfa;
}

.dlbuttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-block: 1em;
}

.dlbuttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #191919;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.usd,
.inr {
  font-size: 16px;
  margin-top: 1em;
}

.earn {
  font-size: 30px;
  font-weight: bold;
}

input[type="range"] {
  width: 95%;
  height: 30px;
  background-color: #ccc;
  border: 1px solid #666;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #666;
  border-radius: 50%;
}

input[type="range"]::-webkit-slider-runnable-track {
  background-color: #ccc;
  border-radius: 5px;
}

.my-5 {
  margin-block: 2.5em;
}

.table-line .up {
  width: 16px;
  height: 16px;
}

/* Default styles for larger screens */
.table-line {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 10px;
  background-color: #fff;
}

.table-line .rank-cell {
  display: table-cell;
  padding: 10px;
  border: 1px solid #ccc;
}

.table-line .rank-cell.rank-number {
  width: 5%; /* Adjust the width as needed */
}

.table-line .rank-cell.rank-desc {
  width: 40%; /* Adjust the width as needed */
}

.table-line .rank-cell.rank-category {
  width: 15%; /* Adjust the width as needed */
}

.table-line .rank-cell.rank-subs,
.table-line .rank-cell.rank-avg-view {
  width: 20%; /* Adjust the width as needed */
}

.table-line .rank-cell.rank-score {
  width: 20%; /* Adjust the width as needed */
}

.table-line .rank-cell.rank-number .number {
  font-weight: bold;
}

.table-line .rank-cell.rank-subs .change,
.table-line .rank-cell.rank-avg-view .change {
  color: green;
  font-weight: bold;
}

.table-line .rank-cell.rank-subs .change .kol-icon,
.table-line .rank-cell.rank-avg-view .change .kol-icon {
  font-weight: bold;
  margin-right: 4px;
}

.avatar {
  max-width: 40px;
  max-height: 40px;
  margin-right: 10px;
}

/* Optional: Add hover effect */
.table-line:hover {
  background-color: #f5f5f5;
}

.last_updated {
  margin: 10px 2px;
}

.last_date {
  font-weight: bold;
}

.dlbox {
  margin-bottom: 2em;
  border-bottom: 1px solid #f3f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.dropdown-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.p-title {
  margin-right: 10px;
  min-width: 180px;
  margin-bottom: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #2196f3;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  min-width: 150px;
  text-align: left;
  border-radius: 5px;
}

.dropbtn::after {
  content: "\25BC";
  float: right;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content .dropdown-item {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown-content .dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #0b7dda;
}

.switch-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.p-text {
  margin-right: 10px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196f3;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider:after {
  content: "OFF";
  color: white;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 70%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
}
input:checked + .slider:after {
  content: "ON";
  left: 30%;
}

.input-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.p-title {
  margin-right: 10px;
  min-width: 180px;
  margin-bottom: 0;
}

.wh {
  margin-block: 2em;
}

.wh .input-container {
  margin-bottom: 1em;
}

input[type="number"] {
  width: 60px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.wh input[type="number"] {
  width: 80px;
}

div[data-text="PX"] {
  position: relative;
}

div[data-text="PX"]::after {
  content: "PX";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 12px;
  pointer-events: none;
}

.startTime,
.endTime {
  display: flex;
  gap: 10px;
}

.startTime input,
.endTime input {
  width: 50px;
}

.p-title {
  margin-right: 10px;
  min-width: 180px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
}

.btn-group {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.btn {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #e0e0e0;
}

.btn.active {
  background-color: #2196f3;
  color: white;
  border-color: #2196f3;
}

.btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.btn + .btn {
  border-left: none;
}

.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.selectGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-block: 20px;
}

.part1,
.part2,
.part3 {
  flex: 1;
  min-width: 200px;
}

.label {
  font-weight: bold;
  margin-bottom: 5px;
}

.form-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-size: 16px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.form-select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.form-select:hover {
  border-color: #999;
}

/* Styles for select options */
.form-select option {
  padding: 10px;
}

.custom-music-block {
  background-color: #fff;
  padding: 1em;
  border-radius: 10px;
  margin-bottom: 1em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal;
  word-break: break-all;
}

.music-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-music-block .music-info .title {
  font-weight: bold;
}

.custom-music-block .music-info .details {
  font-size: 0.875rem;
  color: #6c757d;
}

.music-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #f3f4f7;
  padding-top: 10px;
  margin-top: 10px;
}

.custom-music-block .tags {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
  color: #6c757d;
}

.custom-music-block .download-button {
  width: 100%;
  max-width: 100px;
  background-color: #f3f4f7;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  border-radius: 0.25rem;
  justify-content: center;
}

.pagination .page-item {
  margin: 0.25rem;
  flex: 1;
}

.pagination .page-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none;
  text-align: center;
}

.pagination .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

.pagination .page-link:hover {
  color: #0056b3;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination .page-link:focus {
  z-index: 2;
  color: #0056b3;
  background-color: #e9ecef;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-video-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.custom-video-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-video-box video {
  border-radius: 5px;
  margin-bottom: 10px;
}

.custom-video-box .video-duration {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.custom-video-box .video-size {
  font-size: 0.875rem;
  font-weight: bold;
  color: #343a40;
}

.custom-video-box .download-link {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  transition: color 0.2s ease;
}

.custom-video-box .download-link:hover {
  color: #0056b3;
}

.custom-video-box .video-quality {
  padding-top: 10px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-video-box .video-quality + .video-quality {
  margin-top: 15px;
}

.custom-img-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.custom-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.custom-button-group {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.custom-button {
  text-decoration: none;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
}

.custom-button:hover {
  background-color: #0056b3;
  color: #fff;
}

.freeImagesbox {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.tagsFlexBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dbebfa;
}

.tagsFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 1em;
  flex-wrap: wrap;
}

.tagsFlex h2 {
  padding: 0px;
  margin: 0px;
}

.delete {
  background: none;
  border: none;
  padding: 0px;
  margin: 0px;
  color: #333;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #f4f4f4;
  padding: 5px;
  border-radius: 5px;
}

.storyboardbox {
  position: relative;
  text-align: center;
  max-width: 500px;
  margin: 1em auto;
}
.storyboardbox-bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.screenshot img {
  width: 100%;
  min-width: 300px;
}

.strong {
  font-weight: bold;
}

.screenshotFlex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  justify-content: center;
  gap: 10px;
}

.yt_links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 2em;
}

.yt_link {
  display: block;
  padding: 5px;
  text-align: center;
  color: #000;
  background: #f3f4f7;
  border-radius: 8px;
  width: 140px;
  border: 1px solid #caccd1;
}

.format {
  margin: 10px 0px;
  border-top: 1px solid #caccd1;
  text-transform: uppercase;
}

.my_border {
  border-left: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
}

.ayt_link {
  background-color: #0056b3;
  padding: 5px;
  border-radius: 5px;
  font-size: 13px;
  display: block;
  color: #fff;
  margin-block: 5px;
}

.trendingBox {
  display: flex;
  gap: 10px;

  background-color: #fff;
  padding: 1em;
  border-radius: 5px;
  margin-block: 1em;
}

.trendingImg {
  min-width: 300px;
  max-width: 300px;
  width: 100%;
}

.videoDesc {
  max-height: 250px;
  overflow-y: hidden;
  width: 100%;

  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal;
  word-break: break-all;
}

.favorites_btn,
.alert-danger,
.alert-success {
  border: 0px;
  padding: 10px;
  margin: 0px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px !important;
  width: 250px;
  border-radius: 5px;
}

.favorites_btn {
  background-color: #0056b3;
  cursor: pointer;
}

.favorites_btn:hover {
  background-color: #000;
  cursor: pointer;
}

.alert-danger {
  background-color: #e1306c;
}

.alert-success {
  background-color: #00bf6f;
}

.social-share {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  padding: 8px 0px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 120px;
  text-align: center;
}

.share-btn:hover {
  background-color: #000;
  color: #fff;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.facebook {
  background-color: #3b5998;
}

.whatsapp {
  background-color: #25d366;
}

.twitter {
  background-color: #1da1f2;
}

.copy-btn {
  min-width: 120px;
  background-color: #ff5722;
  cursor: pointer;
  border: none;
  outline: none;
}

.socialfav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 5px;
}

.favbox {
  position: relative;
  text-align: center;
  color: white;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.favdelete {
  background: none;
  border: none;
  color: red;
  cursor: pointer;
  padding: 5px;
}

.nofav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

.blog_list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1em;
  align-items: center;
  background-color: #fff;
  padding: 1em;
  border-radius: 10px;
}

.blog_list img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  min-width: 300px;
  max-width: 300px;
}

.blog_list h2 {
  margin: 0px;
  padding: 0px;
}

.flex_list2 {
  display: flex;
  gap: 1em;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.h5 {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 1em;
  text-align: center;
  padding: 5px;
}

.tc {
  text-align: center;
  margin-bottom: 10px;
}

.h2 {
  text-align: center;
  padding: 10px;
}
.information {
  margin-block: 2em;
  padding: 10px;
  background-color: #fff;
  padding: 1em;
  border-radius: 5px;
}
.information table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.information table,
.information th,
.information td {
  border: 1px solid #ddd;
  padding: 8px;
}
.information th {
  background-color: #f2f2f2;
}
.information ul,
.information ol {
  margin-left: 20px;
}
.information h1,
.information h2,
.information h3,
.information h4,
.information h5,
.information h6 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.information .faq {
  margin-top: 30px;
}
.information .faq h3 {
  color: #007bff;
}

.year-btn.active {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.year-btn {
  background-color: #f8f9fa;
  color: #000;
  border: 1px solid #ddd;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

#year-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-block: 1em;
}

.ytviews {
  font-size: 13px;
  color: #222;
}

.yttitle {
  font-weight: bold;
}

.contentArea {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.contentArea a {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: block;
}

.contentArea img,
.contentArea video {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 5px;
}

.videodl {
  margin-bottom: 5px;
}

.ytpagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ytpagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  border: 1px solid #caccd1;
  padding: 5px 0px;
  border-radius: 5px;
  min-width: 40px;
}

.extrabox {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2em;
}

.extra {
  background-color: rgba(243, 243, 243, 0.4);
  border: 1px solid #caccd1;
  padding: 1em;
  text-align: center;
  border-radius: 10px;
}
.extrakey {
  font-size: 18px;
}

.extravalue {
  font-size: 2em;
  color: #0056b3;
}

.codehap-upload-form {
  padding: 2em;
  background-color: rgba(245, 245, 245, 0.5);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.codehap-upload-form .form-grid {
  display: grid;
  gap: 20px;
}

.codehap-upload-form .file-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.codehap-upload-form .other-inputs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.input-group,
.quality-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
}

.codehap-upload-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.codehap-upload-form input[type="file"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: calc(100% - 20px);
  background-color: #fff;
}

.codehap-upload-form input[type="text"] {
  padding: 13px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: calc(100% - 20px);
  background-color: #fff;
}

.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: calc(100% - 20px);
  background-color: #fff;
}

.homehero {
  text-align: center;
  padding: 3em 1em;
}

.iframe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  margin-block: 1em;
  background-color: #fff;
  pointer-events: none;
}
@media (max-width: 768px) {
  .homehero {
    text-align: center;
    padding: 1em;
  }

  .homehero h1 {
    font-size: 22px;
  }

  .codehap-upload-form {
    padding: 1em;
  }

  .codehap-upload-form .other-inputs {
    grid-template-columns: 1fr;
  }
}

.header {
  border-bottom: 1px solid #e2e8f0;
  background-color: #ffffff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.1rem 0.1rem 0.1rem;
}

.navbar li {
  list-style: none;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: #482ff7;
}

.nav-logo {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 992px) {
  .toollist {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .row {
    grid-template-columns: 100%;
  }

  .country {
    width: 100%;

    min-height: 50px;
  }

  .input-container {
    flex-wrap: wrap;
  }

  .is7030,
  .is3070 {
    grid-template-columns: 100%;
  }

  .pagination .page-item {
    flex: none;
    width: 40px;
    margin: 0 0.1rem;
  }

  .pagination .page-link {
    padding: 0.4rem;
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0.9rem 0.1rem 0.7rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 4.5rem;
    flex-direction: column;
    background-color: #222;
    width: 100%;
    border-radius: 0px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: #fff;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1px 0;
    background-color: #222;
    border-bottom: 1px solid #666;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.9em 0px;
  }

  .nav-item:last-child {
    border: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .selectGroup {
    flex-direction: column;
  }

  .part1,
  .part2,
  .part3 {
    width: 100%;
  }
  .share-btn {
    min-width: 50px;
  }
  .hm {
    display: none;
  }
  .socialfav,
  .social-share {
    justify-content: center;
  }

  .trendingBox {
    flex-wrap: wrap;
  }

  .trendingImg {
    min-width: 200px;
    max-width: 200px;
    width: 100%;
  }

  .freeImagesbox {
    display: grid;
    gap: 1em;
    grid-template-columns: 100%;
    align-items: center;
  }
  .screenshot img {
    width: 100%;
    min-width: 200px;
  }
  .screenshotFlex {
    grid-template-columns: 100%;
    margin-bottom: 2em;
    gap: 5px;
  }

  .contentArea,
  .extrabox {
    grid-template-columns: 100%;
  }

  .h5 {
    font-size: 1.1em;
  }

  .blog_list img {
    width: 100%;

    aspect-ratio: 16/9;
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
  }

  .flex_list2 {
    margin: 5px;
    font-size: 14px;
  }

  .blog_list {
    flex-wrap: wrap;
    margin: 5px;
  }

  .brand img {
    width: 110px;
  }

  .button-32 {
    padding: 6px 10px;
    width: 100%;
    font-size: 13px;
    gap: 4px;
  }

  .footer_main {
    padding: 0.6em;
  }

  .toollist img {
    max-width: 80px;
    width: 100%;
  }

  .toollist a {
    padding: 0.5em;
    min-height: 100px;
  }

  .toollist .short_description {
    font-size: 13px;
  }

  .toollist .name {
    font-size: 0.9em;
    font-weight: bold;
  }

  .toollist {
    gap: 5px;
    margin: 0.6em;
    grid-template-columns: repeat(2, 1fr);
  }

  .table-line {
    display: block;
    border-top: 1px solid grey;
  }

  .hide_on_pc {
    display: inline-block;
  }

  .table-line .rank-cell {
    display: block;
    width: 100%;
    border: none;
    padding: 5px;
  }

  .table-line .rank-cell.rank-number,
  .table-line .rank-cell.rank-desc,
  .table-line .rank-cell.rank-category {
    width: 100%;
  }

  .table-line .rank-cell.rank-subs,
  .table-line .rank-cell.rank-avg-view,
  .table-line .rank-cell.rank-score {
    width: 50%;
    display: inline-block;
  }
}



.qrres {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
}

#result {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 300px;
  background-color: transparent;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding: 10px;
}

#result svg {
  width: 100%;
  height: auto;
}

.form_box input[type="color"] {
  -webkit-appearance: none;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.form_box input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.form_box input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 50%;
}

.colboxmain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-block: 1em;
  gap: 10px;
}

.colbox {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 5px 5px 5px 10px;
  font-weight: bold;
}

#controls {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-block: 10px;
}

#text {
  font-weight: bold;
  padding: 10px;
  font-size: 20px;
}

.qrlabel {
  font-weight: 600;
  margin-top: 1em;
}

.qrlabel span {
  color: #caccd1;
  font-weight: 400 !important;
}

.qrcontainer {
  position: relative;
  text-align: center;
  color: white;
}

.qrcentered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qrcentered img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000;
  opacity: 0.5;
}

.isflexBtn{
       display: flex;
align-items: center;
justify-content: center;
     
gap:10px
}
.textcenter{
    display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap:10px;
  
}
.iam60{
    max-width:400px;
    margin:auto;
}

.four_zero_four_bg{
    font-size:30px;
}



.iframe1{
    width:310px;
    height:90px;
}

.iframe2{
    width:100%;
    height:190px;
}


/* Make table responsive */
.table-responsive {
  overflow-x: auto;  /* Adds horizontal scroll if needed */
  -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on touch devices */
}

/* Optional: Media query for smaller devices */
@media screen and (max-width: 768px) {
    
    #codehap_result h2{
        font-size:20px;
    }
  table {
    width: 100%;
  }

  th, td {
    white-space: nowrap; /* Prevent text from wrapping in small screens */
  }
}

@media only screen and (max-width: 600px) {
	
.iframe{
  display:block;
}
.iframe1{
    width:100%;
    height:150px;
}

.iframe2{
    display:none;
}

}