html,
body {
  margin: 0;
  padding: 0;
  background-color: #000;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  font-size: 26px;
  color: #ffffff;
  font-weight: 500;
}

.common-btn {
  background-color: #f5a836;
  color: #000;
  padding: 10px 0;
  border-radius: 50px;
  border: none;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.common-btn:hover {
  scale: 0.95;
}

.common-box {
  background-color: #fffb00;
  border-radius: 8px;
  padding: 20px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.common-subtitle {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 10px;
}

.min-height {
  min-height: calc(100vh - 126px);
}

.linkedin-box {
  background-color: #161424;
  padding: 16px;
  border-radius: 16px;
}

header {
  background-color: #000;
  padding: 16px 0px;
}
header .logo img {
  width: auto;
  height: 36px;
}

/* ================= HOME SECTION ================= */
.home-section .section-title {
  margin-bottom: 20px;
}
.home-section .linkedin-box {
  background-color: #2c2c31;
}
.home-section .linkedin-box .common-box {
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.home-section .linkedin-box .common-box img {
  width: auto;
  height: 64px;
  margin-bottom: 10px;
}
.home-section .linkedin-box .common-box h4 {
  font-size: 16px;
  margin-bottom: 0;
  color: #000;
}
.home-section .linkedin-box .common-box:hover {
  scale: 0.95;
  opacity: 0.95;
}

/* ================= LINKEDIN SECTION ================= */
.linkedin-section .linkedin-box .green-div {
  background-color: #65ff60;
  text-align: center;
  padding: 12px 0;
  margin: 20px 0px;
  transition: all 0.3s ease-in-out;
}
.linkedin-section .linkedin-box .green-div h3 {
  font-size: 20px;
  margin: 0;
  color: #000;
}
.linkedin-section .linkedin-box .green-div:hover {
  background-color: #f5a836;
  transform: scale(1.2);
  cursor: pointer;
}

/* ================= POST SECTION ================= */
.post-section .section-title {
  margin: 20px 0px 16px;
}
.post-section .linkedin-box .back-btn {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}
.post-section .linkedin-box select,
.post-section .linkedin-box input,
.post-section .linkedin-box textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  background-color: #65ff60;
  padding: 12px 10px;
  font-size: 16px;
  outline: none;
  border-radius: 0px;
  color: #000;
  font-weight: 600;
}
.post-section .linkedin-box select::-moz-placeholder, .post-section .linkedin-box input::-moz-placeholder, .post-section .linkedin-box textarea::-moz-placeholder {
  color: #666;
}
.post-section .linkedin-box select::placeholder,
.post-section .linkedin-box input::placeholder,
.post-section .linkedin-box textarea::placeholder {
  color: #666;
}
.post-section .linkedin-box select option,
.post-section .linkedin-box input option,
.post-section .linkedin-box textarea option {
  font-weight: 600;
}
.post-section .linkedin-box .range-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.post-section .linkedin-box .range-label p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 0px;
}
.post-section .linkedin-box .range-input input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #65ff60;
  padding: 0px;
}
.post-section .linkedin-box .range-input input::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 25px;
  height: 20px;
  background: #f5a836;
  border: 2px solid #000;
}
.post-section .create-post-btn {
  margin-top: 20px;
  text-align: center;
}
.post-section .create-post-btn .common-btn {
  width: 95%;
  font-size: 20px;
}

/* ================= CIRCLE SECTION ================= */
.loading-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-section .loading-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.loading-section .loading-box .loader {
  width: 160px;
  aspect-ratio: 1;
  border: 18px solid #382807;
  border-radius: 50%;
  position: relative;
  transform: rotate(45deg);
}
.loading-section .loading-box .loader::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 18px solid #efa725;
  animation: loader 2s infinite linear;
}
@keyframes loader {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.loading-section .loading-box .message {
  text-align: center;
  font-size: 20px;
  margin-top: 15px;
  color: #ffffff;
  font-weight: 400;
}

/* ================= SCREENSHOT SECTION ================= */
.screenshot-section .section-title {
  margin-bottom: 20px;
}
.screenshot-section .linkedin-box .screenshot-details {
  background-color: #fff;
  padding: 20px 15px;
  text-align: left;
}
.screenshot-section .linkedin-box .screenshot-details .img-div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.screenshot-section .linkedin-box .screenshot-details .img-div img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.screenshot-section .linkedin-box .screenshot-details .img-div .img-content {
  margin-left: 10px;
}
.screenshot-section .linkedin-box .screenshot-details .img-div .img-content .user-name {
  font-size: 16px;
  margin: 0;
}
.screenshot-section .linkedin-box .screenshot-details .img-div .img-content .user-bio {
  font-size: 14px;
  color: #475467;
  margin: 0;
}
.screenshot-section .linkedin-box .screenshot-details p {
  font-size: 14px;
  margin-bottom: 8px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer {
  margin-top: 20px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.35);
  padding-bottom: 5px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span {
  position: relative;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span img {
  width: 12px;
  height: auto;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span.like img {
  transform: scaleX(-1);
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span:nth-child(2), .screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span:nth-child(3) {
  margin-left: -7px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span:nth-child(2) {
  z-index: 1;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span:nth-child(3) {
  z-index: 2;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .stats-line .icon-div span:nth-child(4) {
  z-index: 2;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .reactions {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .reactions a {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .reactions a img {
  width: 12px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .profile-circles {
  display: flex;
  gap: 5px;
}
.screenshot-section .linkedin-box .screenshot-details .post-footer .profile-circles img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}
.screenshot-section .button-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.screenshot-section .button-box .common-btn {
  width: 95%;
}
.screenshot-section .button-box .common-btn.orange-btn {
  background-color: #ff9f1c;
}
.screenshot-section .button-box .common-btn.white-btn {
  background-color: #fff;
}

/* ================= FOOTER SECTION ================= */
footer {
  background-color: #000;
  padding: 10px 0px 24px;
}
footer .footer-content {
  text-align: center;
}
footer .footer-content p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0px;
}/*# sourceMappingURL=common.css.map */