400;600;700&display=swap'); * {
  /*margin: 0;*/
  /*padding: 0;*/
  /*box-sizing: border-box;*/
}

.content {
  margin: 80px auto;
  max-width: 580px;
}

.accordion__item {
  /*background: #000000;*/
  /*border-radius: 4px;*/
}

.accordion__item:not(:last-child) {
  /*margin-bottom: 15px;*/
}

.accordion__header {
  padding: 10px;
  padding-right: 50px;
  font-weight: bolder;
  font-size: 1rem;
  /*color: #000000;*/
  position: relative;
  cursor: pointer;
}

.accordion__header::after {
  content: '';
  display: flex;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../../assets/img/down-arrow-svgrepo-com.svg?h=e14dd376dd18fb7ad0e4bc5ee40eb38e") no-repeat center;
  background-size: contain;
  transition: all .4s ease;
}

.accordion__body {
  padding: 0 40px 20px 20px;
  font-weight: 300;
  /*font-size: 0.875rem;*/
  color: #ffffff;
  line-height: 1.5;
  display: none;
}

.open-accordion .accordion__body {
  display: block;
}

.open-accordion .accordion__header::after {
  transform: rotate(-180deg);
}

.sort_lession_pointer {
  cursor: n-resize;
}

.bg-tag {
  background-color: #bf1010;
  color: #fff;
  /*border-right: 2px solid #ECECEC;*/
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.link-color {
  color: #9b9b9b;
}

