
.circle-line-animate {
  animation: dash .65s linear forwards;
  animation-iteration-count: 1;
}

@keyframes dash {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: attr(stroke-dasharray) 100;
  }
}

.circle-percentage-line-2020,
.circle-bg-2020 {
  transform: scale(0.88);
}

line{
  transform: scale(0.25);
}

#tr-acn-cloud-wrapper {
  display: block;
  width: 1000px;
  margin: 0;
  /*display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "tr-content sidebar";
    gap: 50px;*/
}

/* tablet/mobile */
@media (max-width: 930px) {
  #tr-acn-cloud-wrapper {
    display: block;

  }
}

@media (max-width: 560px) {
  .industry-graphs-container {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .industry-graphs-container svg {
    max-height: 250px !important;
  }

  .tr-solid-divider.graph-divider {
    display: none;
  }

  #tr-acn-cloud-sidebar {
    padding-top: 19px !important;
  }
}

@media (max-width: 480px) {
  #tr-cloud-filter-dropdown-container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 15px;
    align-items: center;
  }
  .top3-list-container .top3-left,
  .top3-list-container .top3-right {
    gap: 10% !important;
  }

  #tr-cloud-filter-dropdown-container .tr-vs {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .top3-left, .top3-right{
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
}
/*  */

#tr-acn-cloud-wrapper p {
  font-size: 16px;
}

#tr-acn-cloud-content {
  grid-area: tr-content;
}

#tr-acn-cloud-sidebar {
  grid-area: sidebar;
  background-color: #f2f2f2;
  height: fit-content;
  padding: 19px 27px;
  padding-top: 50px;
}

#tr-acn-cloud-wrapper #tr-acn-cloud-content #header-text-container h2 {
  font-size: 35px !important;
  margin-bottom: 15px;
}

#tr-acn-cloud-wrapper #tr-acn-cloud-content #header-text-container p {
  margin-bottom: 25px;
}

#tr-acn-cloud-sidebar .author h3 {
  font-size: 25px;
  margin-bottom: 6px;
  font-weight: 800;
}

#tr-acn-cloud-sidebar .author .job-title {
  margin-bottom: 11px;
  font-weight: 600;
}

#tr-acn-cloud-sidebar .author .description {
  margin-bottom: 12px;
  font-weight: 400;
}

#tr-cloud-filter-dropdown-container {
  display: grid;
  grid-template-columns: 2fr auto 2fr;
  gap: 15px;
  align-items: center;
}

#tr-acn-cloud-wrapper select {
  background-color: #014dff;
  color: white;
  font-size: 20px;
  width: 100%;
}

#tr-acn-cloud-wrapper select:hover {
  background-color: rgb(7 0 136);
  color: white;
}

#tr-cloud-interactive p {
  font-size: 24px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 40px;
  font-weight: 600;
  text-align: center;
  max-width: 585px;
}

#legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 15px;
  margin-bottom: 15px;
}

#legend div {
  display: flex;
  align-items: center;
  gap: 7px;
}

#legend #dot2022 {
  height: 25px;
  width: 25px;
  background-color: #A055F5;
  border-radius: 50%;
  display: inline-block;
}
#legend #dot2020 {
  height: 25px;
  width: 25px;
  background-color: #7500C0;
  border-radius: 50%;
  display: inline-block;
}

#top3-container h4 {
  text-align: center;
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.top3-list-container {
  color: #a100ff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 5%;
  overflow-wrap: anywhere;
}

.top3-list-container .top3-left,
.top3-list-container .top3-right {
  display: flex;
  gap: 5%;
  align-items: center;
  margin-bottom: 15px;
}

.top3-list-container.top3-list-container-2022 {
  margin-bottom: 30px;
  color: #FFFFFF;
}

.top3-list-container.top3-list-container-2020 {
  margin-bottom: 30px;
  color: #460073;
}

.top3-list-container .top3-left p,
.top3-list-container .top3-right p {
  font-size: 18px !important;
  font-weight: 600;
}

.top3-list-container .top3-left img,
.top3-list-container .top3-right img {
  height: 42px;
  width: 43px;
}

.industry-graphs-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-items: center;
  gap: 25px;
}

.industry-graphs-container svg {
  max-height: 400px;
}

.graph-text-2022 {
  fill: #a100ff;
  font-weight: 600;
}

.graph-text-2020 {
  fill: #7500C0;
  font-weight: 600;
}

/* The container must be positioned relative: */
.tr-cloud-custom-select {
  position: relative;
  background-color: #FFFFFF;
}

.tr-cloud-custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: relative;
  content: "";
  top: 5px;
  right: 00px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 0;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #000000;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 18px;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.same-as-selected {
  background-color: rgba(0, 0, 0, 0.25);
}

.select-items div:hover,
.same-as-selected:hover,
.select-selected:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

.tr-solid-divider-sidebar,
.tr-solid-divider {
  border-top: 1px solid black;
  border-left: 1px solid black;
  margin-top: 25px;
  margin-bottom: 25px;
}

/* follow me */

#tr-acn-cloud-wrapper .follow-me {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
}

#tr-acn-cloud-wrapper .follow-me-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

#tr-acn-cloud-wrapper .follow-me a {
  height: 50px !important;
  width: 50px !important;
}

ion-icon{
  height: 25px;
  width: 25px;
}

#tr-acn-cloud-wrapper .follow-me .follow-me-linkedin {
  text-size-adjust: 100%;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  box-sizing: inherit;
  cursor: pointer;
  background: transparent;
  padding: 0;
  text-decoration: none;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 50%;
  border: 0.2rem solid #004dff;
  display: flex;
  height: 3.5rem;
  -webkit-box-pack: center;
  justify-content: center;
  width: 3.5rem;
  margin: 0;
  color: #004dff;
  border-color: #004dff;
  margin-left: 0;
}
#tr-acn-cloud-wrapper .follow-me .follow-me-email {
  text-size-adjust: 100%;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  box-sizing: inherit;
  cursor: pointer;
  background: transparent;
  padding: 0;
  text-decoration: none;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 50%;
  border: 0.2rem solid #969696;
  display: flex;
  height: 3.5rem;
  -webkit-box-pack: center;
  justify-content: center;
  width: 3.5rem;
  margin: 0;
  color: #969696;
  border-color: #969696;
  margin-left: 0;
}

/*  */
