/* ===================
Career Section CSS
======================*/

.career-section {
  background: #f6f6f6;
}

.career-content {
  padding: 30px;
}

.career-content .site-title-tagline {
  display: inline-block;
  margin-bottom: 10px;
}

.career-content .site-title {
  font-size: 32px;
  line-height: 1.3;
}

.career-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #757f95;
  margin-bottom: 15px;
}

.career-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.highlight-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
  color: #00bfff;
  font-size: 18px;
}

.highlight-item span {
  font-weight: 500;
  color: #073692;
  font-size: 15px;
}

/* Career Form Wrapper */
.career-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.form-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 191, 255, 0.1);
}

.form-header h3 {
  font-size: 24px;
  color: #073692;
  margin-bottom: 10px;
}

.form-header p {
  color: #757f95;
  font-size: 14px;
  margin-bottom: 0;
}

.form-header .required {
  color: #f05454;
  font-weight: 600;
}

/* Form Styles */
.career-form-wrapper .form-group {
  margin-bottom: 5px;
}

.career-form-wrapper .form-group label {
  display: block;
  font-weight: 500;
  color: #073692;
  margin-bottom: 8px;
  font-size: 14px;
}

.career-form-wrapper .form-group label .required {
  color: #f05454;
}

.career-form-wrapper .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-size: 14px;
  color: #073692;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}

.career-form-wrapper .form-control:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.career-form-wrapper .form-control::placeholder {
  color: #aaaaaa;
}

.career-form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23757F95' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
  padding-right: 40px;
}

.career-form-wrapper .input-group {
  position: relative;
  display: flex;
  align-items: stretch;
}

.career-form-wrapper .input-group-text {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #073692;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.career-form-wrapper .input-group .form-control {
  border-radius: 0 8px 8px 0;
}

.career-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.career-form-wrapper input[type="file"].form-control {
  padding: 10px 16px;
  border: 2px dashed rgba(0, 0, 0, 0.08);
  background-color: #f9f9f9;
  cursor: pointer;
}

.career-form-wrapper input[type="file"].form-control:hover {
  border-color: #00bfff;
  background-color: rgba(0, 191, 255, 0.05);
}

.career-form-wrapper input[type="file"].form-control:focus {
  border-color: #00bfff;
  border-style: solid;
}

/* Date Input Styling */
.career-form-wrapper input[type="date"].form-control {
  position: relative;
  cursor: pointer;
}

.career-form-wrapper input[type="date"].form-control::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  color: #073692;
}

.career-form-wrapper input[type="date"].form-control::-webkit-inner-spin-button {
  display: none;
}

.career-form-wrapper .theme-btn {
  width: 100%;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00bfff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.career-form-wrapper .theme-btn:hover {
  background: #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.career-form-wrapper .theme-btn i {
  font-size: 14px;
}

/* Success Message */
.form-success-message {
  text-align: center;
  padding: 60px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.form-success-message i {
  font-size: 60px;
  color: #15d4c9;
  margin-bottom: 20px;
  display: block;
}

.form-success-message h4 {
  font-size: 28px;
  color: #073692;
  margin-bottom: 15px;
}

.form-success-message p {
  color: #757f95;
  font-size: 15px;
  margin-bottom: 0;
}

/* Responsive Styles */
@media all and (max-width: 991px) {
  .career-content {
    margin-bottom: 30px;
  }

  .career-content .site-title {
    font-size: 28px;
  }

  .career-form-wrapper {
    padding: 30px;
  }
}

@media all and (max-width: 767px) {
  .career-section {
    padding: 60px 0;
  }

  .career-form-wrapper {
    padding: 25px 20px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .career-content .site-title {
    font-size: 24px;
  }

  .highlight-item {
    padding: 10px 15px;
  }

  .highlight-item span {
    font-size: 14px;
  }
}

@media all and (max-width: 575px) {
  .career-form-wrapper .row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .career-form-wrapper .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }

  .career-form-wrapper .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .career-form-wrapper .theme-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ===================
Career Introduction Section
======================*/

.career-intro-content {
  padding-right: 20px;
}

.career-intro-content .site-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.career-intro-content .career-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}

.career-intro-content .highlight-text {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(7, 54, 146, 0.08) 100%);
  border-left: 4px solid #00bfff;
  border-radius: 8px;
}

.career-intro-content .highlight-text strong {
  color: #073692;
  font-size: 16px;
}

.career-intro-image {
  position: relative;
  overflow: hidden;
}

.career-intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.career-intro-image:hover img {
  transform: scale(1.05);
}

/* ===================
Current Opportunities Section
======================*/

.current-opportunities {
  margin-top: 60px;
  padding: 60px 50px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .site-title-tagline {
  display: inline-block;
  margin-bottom: 10px;
}

.section-header .site-title {
  font-size: 38px;
  margin-bottom: 15px;
}

.section-header p {
  color: #757f95;
  font-size: 15px;
  margin: 0;
}

/* Opportunity Cards */
.opportunities-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.opportunity-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.opportunity-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: rgba(0, 191, 255, 0.3);
}

.opportunity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.opportunity-title h4 {
  font-size: 22px;
  color: #073692;
  margin-bottom: 8px;
  font-weight: 600;
}

.job-type {
  display: inline-block;
  padding: 5px 15px;
  background: #00bfff;
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.opportunity-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #757f95;
  font-size: 14px;
  font-weight: 500;
}

.opportunity-location i {
  color: #00bfff;
  font-size: 16px;
}

.opportunity-body {
  margin-bottom: 20px;
}

.opportunity-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.opportunity-requirements {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #00bfff;
}

.opportunity-requirements strong {
  display: block;
  color: #073692;
  font-size: 15px;
  margin-bottom: 12px;
}

.opportunity-requirements ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.opportunity-requirements li {
  position: relative;
  padding-left: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.opportunity-requirements li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00bfff;
  font-weight: 700;
  font-size: 14px;
}

.opportunity-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  gap: 15px;
}

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.opportunity-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #757f95;
  font-size: 13px;
}

.opportunity-meta i {
  color: #00bfff;
  font-size: 14px;
}

.opportunity-footer .theme-btn {
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 600;
  background: #00bfff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.opportunity-footer .theme-btn:hover {
  background: #073692;
  transform: translateX(3px);
}

.opportunity-footer .theme-btn.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

/* No Jobs Message */
.no-jobs-message {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(7, 54, 146, 0.05) 100%);
  border-radius: 12px;
  border: 2px dashed rgba(0, 191, 255, 0.3);
}

.no-jobs-message i {
  font-size: 50px;
  color: #00bfff;
  margin-bottom: 20px;
  display: block;
}

.no-jobs-message h4 {
  font-size: 24px;
  color: #073692;
  margin-bottom: 15px;
}

.no-jobs-message p {
  color: #757f95;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Responsive for New Sections */
@media all and (max-width: 991px) {
  .career-intro-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .career-intro-content .site-title {
    font-size: 30px;
  }

  .current-opportunities {
    padding: 40px 30px;
  }

  .section-header .site-title {
    font-size: 32px;
  }
}

@media all and (max-width: 767px) {
  .career-intro-content .site-title {
    font-size: 26px;
  }

  .current-opportunities {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .section-header .site-title {
    font-size: 28px;
  }

  .opportunity-card {
    padding: 20px;
  }

  .opportunity-title h4 {
    font-size: 19px;
  }

  .opportunity-header {
    flex-direction: column;
  }

  .opportunity-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .opportunity-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media all and (max-width: 575px) {
  .career-intro-content .site-title {
    font-size: 22px;
  }

  .section-header .site-title {
    font-size: 24px;
  }

  .opportunity-title h4 {
    font-size: 17px;
  }

  .no-jobs-message {
    padding: 40px 20px;
  }

  .no-jobs-message h4 {
    font-size: 20px;
  }
}

/* ===================
Life @ Sygnius Section
======================*/

.life-at-sygnius {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.life-at-sygnius .section-header {
  margin-bottom: 50px;
}

.life-at-sygnius .section-header .site-title {
  font-size: 36px;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 15px;
}

.life-at-sygnius .section-description {
  font-size: 16px;
  color: #757f95;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

/* Core Values Grid */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.core-value-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(7, 54, 146, 0.05) 100%);
  border-radius: 10px;
  border-left: 4px solid #00bfff;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.core-value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(7, 54, 146, 0.1) 100%);
  transition: width 0.4s ease;
  z-index: 0;
}

.core-value-item:hover::before {
  width: 100%;
}

.core-value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.15);
  border-left-color: #073692;
}

.value-number {
  font-size: 32px;
  font-weight: 800;
  color: #00bfff;
  min-width: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.core-value-item:hover .value-number {
  color: #073692;
  transform: scale(1.1);
}

.value-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.value-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #073692;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.core-value-item:hover .value-content h5 {
  color: #00bfff;
}

/* Culture Highlights */
.culture-highlights {
  padding-top: 40px;
  border-top: 2px solid rgba(0, 191, 255, 0.1);
}

.culture-intro-text {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(7, 54, 146, 0.08) 100%);
  border-radius: 12px;
  border-left: 5px solid #00bfff;
  position: relative;
}

.culture-intro-text::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(0, 191, 255, 0.2);
  line-height: 1;
  font-family: Georgia, serif;
}

.culture-intro-text::after {
  content: '"';
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(0, 191, 255, 0.2);
  line-height: 1;
  font-family: Georgia, serif;
}

.culture-intro-text p {
  font-size: 18px;
  color: #073692;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.culture-intro-text strong {
  font-weight: 700;
}

/* Culture Sections */
.culture-section {
  margin-top: 50px;
  padding: 30px 0;
}

.culture-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #073692;
  margin-bottom: 30px;
  padding: 15px 30px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(7, 54, 146, 0.1) 100%);
  border-left: 5px solid #00bfff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.culture-section-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.culture-image-box {
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 180px;
  cursor: pointer;
  position: relative;
}

.culture-image-box::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 191, 255, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 2;
}

.culture-image-box:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.culture-image-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.culture-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.culture-image-box:hover img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

/* Responsive for Life @ Sygnius */
@media all and (max-width: 1199px) {
  .core-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
  }
}

@media all and (max-width: 991px) {
  .life-at-sygnius {
    padding: 50px 30px;
  }

  .life-at-sygnius .section-header .site-title {
    font-size: 32px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-intro-text {
    padding: 25px 30px;
  }

  .culture-intro-text::before,
  .culture-intro-text::after {
    font-size: 50px;
  }

  .culture-intro-text p {
    font-size: 16px;
  }

  .culture-section-title {
    font-size: 20px;
    padding: 12px 25px;
  }

  .culture-image-box {
    height: 160px;
  }
}

@media all and (max-width: 767px) {
  .life-at-sygnius {
    padding: 40px 25px;
  }

  .life-at-sygnius .section-header .site-title {
    font-size: 28px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .core-value-item {
    padding: 20px;
    gap: 15px;
  }

  .value-number {
    font-size: 28px;
    min-width: 50px;
  }

  .value-content h5 {
    font-size: 15px;
  }

  .culture-intro-text {
    padding: 20px 25px;
  }

  .culture-intro-text::before,
  .culture-intro-text::after {
    font-size: 40px;
  }

  .culture-intro-text p {
    font-size: 15px;
  }

  .culture-section-title {
    font-size: 18px;
    padding: 10px 20px;
  }

  .culture-image-box {
    height: 140px;
  }
}

@media all and (max-width: 575px) {
  .life-at-sygnius {
    padding: 30px 20px;
  }

  .life-at-sygnius .section-header .site-title {
    font-size: 24px;
  }

  .life-at-sygnius .section-description {
    font-size: 14px;
  }

  .culture-intro-text {
    padding: 20px;
  }

  .culture-intro-text::before {
    top: 5px;
    left: 10px;
    font-size: 35px;
  }

  .culture-intro-text::after {
    bottom: 5px;
    right: 10px;
    font-size: 35px;
  }

  .culture-intro-text p {
    font-size: 14px;
  }

  .culture-section-title {
    font-size: 16px;
    padding: 12px 20px;
  }

  .culture-image-box {
    height: 120px;
  }
  
  .culture-image-box::after {
    width: 60px;
    height: 60px;
    font-size: 45px;
  }

  .culture-overlay i {
    font-size: 40px;
  }
}

/* ===================
Image Lightbox/Modal
======================*/

.image-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.image-lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #00bfff;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: #073692;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 191, 255, 0.9);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-prev {
  left: 20px;
  padding-right: 5px;
}

.lightbox-next {
  right: 20px;
  padding-left: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #00bfff;
  transform: translateY(-50%) scale(1.15);
}

/* Responsive Lightbox */
@media all and (max-width: 767px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 80%;
  }

  .lightbox-close {
    top: -40px;
    width: 45px;
    height: 45px;
    font-size: 35px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 50px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
