@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.postview {
  background: none;
  box-shadow: none;
}
.postview .container-single {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  gap: 30px 30px;
}
.postview .container {
  width: 100%;
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  grid-template-rows: 1fr;
  gap: 30px 30px;
  grid-auto-flow: row;
  grid-template-areas: "item1 item2";
}
.postview .item1 {
  grid-area: item1;
}
.postview .item1 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  border-radius: 12px;
  padding: 5px;
  background-color: whitesmoke;
  padding: 0.5rem;
  border: 0.2px solid #627e94;
}
.postview .item1 .container .branch-item {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  transition: 0.3s all linear;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}
.postview .item1 .container .branch-item p {
  color: #5d809b;
  font-weight: bold;
}
.postview .item1 .container .branch-item:hover {
  background-color: #627e94;
}
.postview .item1 .container .branch-item:hover svg path {
  fill: white;
  stroke: white;
}
.postview .item1 .container .branch-item:hover p {
  color: white;
}
.postview .item1 .container [active] {
  background-color: #627e94;
}
.postview .item1 .container [active] svg path {
  fill: white;
  stroke: white;
}
.postview .item1 .container [active] p {
  color: white;
}
.postview .hide {
  display: none;
}
@media screen and (max-width: 767px) {
  .postview .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 30px 30px;
    grid-auto-flow: row;
    grid-template-areas: "item2";
  }
  .postview .item1 {
    display: none;
  }
}
.postview .item2 {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  overflow: hidden;
  overflow-x: auto;
  grid-area: item2;
  padding: 30px 52px;
  border-radius: 12px;
  background-color: whitesmoke;
  padding: 0.5rem;
  border: 0.2px solid #627e94;
  /* Base styles */
  /* Animation effects */
}
@media screen and (max-width: 360px) {
  .postview .item2 {
    padding: 20px 20px;
    overflow: hidden;
    overflow-x: scroll;
  }
}
.postview .item2 main.instruction {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.postview .item2 .instraction_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.postview .item2 .instraction_cards_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease;
  border-top: 4px solid #627e94;
  display: flex;
  flex-direction: column;
}
.postview .item2 .instraction_cards_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.postview .item2 .instraction_cards_card h2 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 15px;
  flex-grow: 1;
}
.postview .item2 .instraction_cards_card p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}
.postview .item2 .instraction_cards_card .label {
  display: inline-block;
  background-color: #f0f0f0;
  color: #666;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  align-self: flex-start;
}
.postview .item2 .instraction_cards_card .link {
  display: inline-block;
  background-color: #627e94;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.postview .item2 .instraction_cards_card .link:hover {
  background-color: #4e6475;
}
.postview .item2 .instruction__section {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}
.postview .item2 .instruction__section .instruction__text {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.postview .item2 .instruction__section .instruction__text:first-child {
  margin-top: 0;
}
.postview .item2 .instruction__section .instruction__list {
  padding-left: 20px;
  margin-bottom: 25px;
}
.postview .item2 .instruction__section .instruction__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.postview .item2 .instruction__section .instruction__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .postview .item2 .instraction_cards {
    grid-template-columns: 1fr;
  }
  .postview .item2 .instruction__section {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .postview .item2 body {
    padding: 10px;
  }
  .postview .item2 main.instruction {
    padding: 10px;
  }
  .postview .item2 .instraction_cards_card {
    padding: 20px;
  }
}
.postview .item2 h2 {
  position: relative;
  padding-bottom: 10px;
}
.postview .item2 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #627e94, #2ecc71);
}
.postview .item2 .label[class*="(файл мавжуд эмас)"] {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.postview .item2 .admission-cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.postview .item2 .admission-cards .admission-header {
  text-align: center;
  margin-bottom: 40px;
}
.postview .item2 .admission-cards .admission-header h1 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.postview .item2 .admission-cards .admission-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #3498db, #2ecc71);
}
.postview .item2 .admission-cards .admission-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-top: 20px;
}
.postview .item2 .admission-cards .admission-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.postview .item2 .admission-cards .admission-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease;
  border-top: 4px solid #3498db;
}
.postview .item2 .admission-cards .admission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.postview .item2 .admission-cards .admission-card .card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.postview .item2 .admission-cards .admission-card .card-icon svg {
  width: 24px;
  height: 24px;
}
.postview .item2 .admission-cards .admission-card h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.postview .item2 .admission-cards .admission-card .card-detail {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
}
.postview .item2 .admission-cards .admission-card .card-detail .detail-label {
  font-weight: 600;
  color: #34495e;
  margin-right: 5px;
  min-width: 80px;
}
.postview .item2 .admission-cards .admission-card .card-detail a {
  color: #3498db;
  text-decoration: none;
  transition: all 0.2s ease;
}
.postview .item2 .admission-cards .admission-card .card-detail a:hover {
  color: #2980b9;
  text-decoration: underline;
}
.postview .item2 .admission-cards .admission-card:nth-child(1) {
  border-top-color: #3498db;
}
.postview .item2 .admission-cards .admission-card:nth-child(2) {
  border-top-color: #2ecc71;
}
.postview .item2 .admission-cards .admission-card:nth-child(3) {
  border-top-color: #e74c3c;
}
.postview .item2 .admission-cards .admission-card:nth-child(4) {
  border-top-color: #f39c12;
}
@media (max-width: 768px) {
  .postview .item2 .admission-cards {
    padding: 20px 15px;
  }
  .postview .item2 .admission-cards .admission-header h1 {
    font-size: 1.5rem;
  }
  .postview .item2 .admission-cards .admission-header p {
    font-size: 1rem;
  }
  .postview .item2 .admission-cards .admission-cards-container {
    grid-template-columns: 1fr;
  }
}
.postview .item2 .document-requirements {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.postview .item2 .document-requirements .requirements-card,
.postview .item2 .document-requirements .dates-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.postview .item2 .document-requirements .requirements-card:hover,
.postview .item2 .document-requirements .dates-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.postview .item2 .document-requirements .requirements-header,
.postview .item2 .document-requirements .dates-header {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
}
.postview .item2 .document-requirements .requirements-header svg,
.postview .item2 .document-requirements .dates-header svg {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}
.postview .item2 .document-requirements .requirements-header h2,
.postview .item2 .document-requirements .dates-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.postview .item2 .document-requirements .dates-header {
  background: linear-gradient(135deg, #3498db, #2980b9);
}
.postview .item2 .document-requirements .requirements-content {
  padding: 20px;
}
.postview .item2 .document-requirements .requirement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ecf0f1;
}
.postview .item2 .document-requirements .requirement-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.postview .item2 .document-requirements .requirement-item .check-icon,
.postview .item2 .document-requirements .requirement-item .info-icon {
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: 3px;
}
.postview .item2 .document-requirements .requirement-item .check-icon svg,
.postview .item2 .document-requirements .requirement-item .info-icon svg {
  width: 20px;
  height: 20px;
}
.postview .item2 .document-requirements .requirement-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #34495e;
}
.postview .item2 .document-requirements .requirement-item p strong {
  color: #2c3e50;
  font-weight: 600;
}
.postview .item2 .document-requirements .requirement-item.warning p {
  color: #e74c3c;
}
.postview .item2 .document-requirements .requirement-item.warning p strong {
  color: #c0392b;
}
.postview .item2 .document-requirements .requirement-item.important p {
  color: #3498db;
}
.postview .item2 .document-requirements .requirement-item.important p strong {
  color: #2980b9;
}
.postview .item2 .document-requirements .dates-content {
  padding: 20px;
}
.postview .item2 .document-requirements .date-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.postview .item2 .document-requirements .date-item:last-child {
  margin-bottom: 0;
}
.postview .item2 .document-requirements .date-item .calendar-icon {
  flex-shrink: 0;
  margin-right: 20px;
}
.postview .item2 .document-requirements .date-item .calendar-icon svg {
  width: 40px;
  height: 40px;
}
.postview .item2 .document-requirements .date-item .date-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
}
.postview .item2 .document-requirements .date-item .date-info .date-range {
  margin: 0;
  font-size: 1.1rem;
  color: #7f8c8d;
  font-weight: 500;
}
@media (max-width: 768px) {
  .postview .item2 .document-requirements {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .postview .item2 .document-requirements .requirements-card,
  .postview .item2 .document-requirements .dates-card {
    margin-bottom: 30px;
  }
  .postview .item2 .document-requirements .requirement-item p {
    font-size: 1rem;
  }
}
.postview .item2 .regulation-container {
  max-width: 1000px;
  margin: 40px auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.postview .item2 .regulation-container .regulation-header {
  background: linear-gradient(135deg, #2980b9, #2c3e50);
  color: white;
  padding: 30px;
  position: relative;
}
.postview .item2 .regulation-container .regulation-header h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}
.postview .item2 .regulation-container .regulation-header .header-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
}
.postview .item2 .regulation-container .regulation-content {
  padding: 30px;
}
.postview .item2 .regulation-container .regulation-content .regulation-section {
  margin-bottom: 40px;
}
.postview .item2 .regulation-container .regulation-content .regulation-section .section-title {
  display: flex;
  align-items: center;
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ecf0f1;
}
.postview .item2 .regulation-container .regulation-content .regulation-section .section-title svg {
  width: 24px;
  height: 24px;
  margin-right: 15px;
}
.postview .item2 .regulation-container .regulation-content .regulation-item {
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.postview .item2 .regulation-container .regulation-content .regulation-item:hover {
  background-color: #f8f9fa;
}
.postview .item2 .regulation-container .regulation-content .regulation-item.highlighted {
  background-color: #f8f9fa;
  border-left: 4px solid #3498db;
}
.postview .item2 .regulation-container .regulation-content .regulation-item.important {
  background-color: rgba(231, 76, 60, 0.05);
  border-left: 4px solid #e74c3c;
}
.postview .item2 .regulation-container .regulation-content .regulation-item .item-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
}
.postview .item2 .regulation-container .regulation-content .regulation-item .item-content {
  flex-grow: 1;
}
.postview .item2 .regulation-container .regulation-content .regulation-item .item-content p {
  margin: 0;
  color: #34495e;
  line-height: 1.6;
  font-size: 1.05rem;
}
.postview .item2 .regulation-container .regulation-content .regulation-item .item-content .highlight-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.postview .item2 .regulation-container .regulation-content .regulation-item .item-content .highlight-box svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 3px;
}
.postview .item2 .regulation-container .regulation-content .regulation-item .item-content .highlight-box p {
  color: #7f8c8d;
  font-weight: 500;
}
.postview .item2 .regulation-container .regulation-content .additional-info {
  margin-top: 50px;
}
.postview .item2 .regulation-container .regulation-content .additional-info h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ecf0f1;
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards .info-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #3498db;
  transition: all 0.3s ease;
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards .info-card h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 15px;
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards .info-card p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards .info-card .more-link {
  display: inline-block;
  color: #3498db;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.postview .item2 .regulation-container .regulation-content .additional-info .info-cards .info-card .more-link:hover {
  color: #2980b9;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .postview .item2 .regulation-container {
    margin: 20px;
  }
  .postview .item2 .regulation-container .regulation-header {
    padding: 20px;
  }
  .postview .item2 .regulation-container .regulation-header h1 {
    font-size: 1.3rem;
  }
  .postview .item2 .regulation-container .regulation-content {
    padding: 20px;
  }
  .postview .item2 .regulation-container .regulation-content .regulation-item {
    flex-direction: column;
  }
  .postview .item2 .regulation-container .regulation-content .regulation-item .item-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.postview .item2 .elegant-table-container {
  width: 100%;
  overflow-x: auto;
  margin: 0 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
}
.postview .item2 .elegant-table-container::-webkit-scrollbar {
  height: 8px;
  background: #f5f5f5;
}
.postview .item2 .elegant-table-container::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 4px;
}
.postview .item2 .elegant-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  color: #2c3e50;
  min-width: 900px;
  /* Responsive adjustments */
}
.postview .item2 .elegant-table th,
.postview .item2 .elegant-table td {
  padding: 15px;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}
.postview .item2 .elegant-table th {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #3498db, #217dbb);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.postview .item2 .elegant-table th.code-col {
  border-top-left-radius: 12px;
}
.postview .item2 .elegant-table th.name-col {
  text-align: left;
}
.postview .item2 .elegant-table th.grant-header {
  background: linear-gradient(135deg, #2ecc71, #25a25a);
}
.postview .item2 .elegant-table th.contract-header {
  background: linear-gradient(135deg, #e74c3c, #d62c1a);
}
.postview .item2 .elegant-table th.uzbek-col {
  background: rgba(46, 204, 113, 0.8);
}
.postview .item2 .elegant-table th.rus-col {
  background: rgba(231, 76, 60, 0.8);
}
.postview .item2 .elegant-table tbody tr {
  position: relative;
}
.postview .item2 .elegant-table tbody tr:nth-child(even) {
  background-color: rgba(236, 240, 241, 0.5);
}
.postview .item2 .elegant-table tbody tr:hover {
  transform: scale(1.005);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.postview .item2 .elegant-table tbody tr:hover td {
  background: rgba(52, 152, 219, 0.1);
  color: #2c3e50;
}
.postview .item2 .elegant-table tbody tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.postview .item2 .elegant-table tbody tr td:first-child {
  font-weight: 600;
  color: #3498db;
}
.postview .item2 .elegant-table tbody tr td:nth-child(2) {
  text-align: left;
}
.postview .item2 .elegant-table tbody tr td.empty-cell {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 6px);
}
.postview .item2 .elegant-table .total-row {
  background: linear-gradient(to right, #ecf0f1, #ffffff);
}
.postview .item2 .elegant-table .total-row td {
  border-top: 2px solid #3498db;
  border-bottom: 2px solid #3498db;
  font-weight: 700;
  color: #2c3e50;
  background: rgba(52, 152, 219, 0.1);
}
.postview .item2 .elegant-table .total-row td:first-child {
  border-left: 2px solid #3498db;
  border-bottom-left-radius: 12px;
}
.postview .item2 .elegant-table .total-row td:last-child {
  border-right: 2px solid #3498db;
  border-bottom-right-radius: 12px;
}
.postview .item2 .elegant-table .total-row .total-label {
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
@media (max-width: 1200px) {
  .postview .item2 .elegant-table {
    font-size: 0.9rem;
  }
  .postview .item2 .elegant-table th,
  .postview .item2 .elegant-table td {
    padding: 12px 10px;
  }
}
@media (max-width: 992px) {
  .postview .item2 .elegant-table th,
  .postview .item2 .elegant-table td {
    padding: 10px 8px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.postview .item2 .elegant-table tbody tr {
  animation: fadeIn 0.5s ease forwards;
}
.postview .item2 .elegant-table tbody tr:nth-child(1) {
  animation-delay: 0.05s;
}
.postview .item2 .elegant-table tbody tr:nth-child(2) {
  animation-delay: 0.1s;
}
.postview .item2 .elegant-table tbody tr:nth-child(3) {
  animation-delay: 0.15s;
}
.postview .item2 .elegant-table tbody tr:nth-child(4) {
  animation-delay: 0.2s;
}
.postview .item2 .elegant-table tbody tr:nth-child(5) {
  animation-delay: 0.25s;
}
.postview .item2 .elegant-table tbody tr:nth-child(6) {
  animation-delay: 0.3s;
}
.postview .item2 .elegant-table tbody tr:nth-child(7) {
  animation-delay: 0.35s;
}
.postview .item2 .elegant-table tbody tr:nth-child(8) {
  animation-delay: 0.4s;
}
.postview .item2 .elegant-table tbody tr:nth-child(9) {
  animation-delay: 0.45s;
}
.postview .item2 .elegant-table tbody tr:nth-child(10) {
  animation-delay: 0.5s;
}/*# sourceMappingURL=style.css.map */