@keyframes bot-to-top {
  0% {
    bottom: -40px;
  }
  50% {
    bottom: 40px;
  }
}
@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes sonar-wave {
  0% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pop-top {
  0% {
    transform: translate(0, 0) rotate(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, -100px) rotate(0);
    opacity: 0;
  }
}
@keyframes pop-top-left {
  0% {
    transform: translate(0, 0) rotate(-55deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-100px, -50px) rotate(-55deg);
    opacity: 0;
  }
}
@keyframes pop-top-right {
  0% {
    transform: translate(0, 0) rotate(55deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(100px, -50px) rotate(55deg);
    opacity: 0;
  }
}
@keyframes pop-bottom-right {
  0% {
    transform: translate(0, 0) rotate(135deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(70px, 80px) rotate(135deg);
    opacity: 0;
  }
}
@keyframes pop-bottom-left {
  0% {
    transform: translate(0, 0) rotate(-135deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-70px, 80px) rotate(-135deg);
    opacity: 0;
  }
}
@keyframes first-bump-in {
  0% {
    transform: translateY(-65px);
    opacity: 1;
  }
  50% {
    transform: translateY(-80px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}
@keyframes bump-in {
  0% {
    transform: translateY(-80px) scale(0.9);
    opacity: 1;
  }
  50% {
    transform: translateY(-80px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}
@keyframes scaleAndBack {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 767px) {
  .row {
    margin: 0;
  }
  .row .col,
  .row .col-1,
  .row .col-10,
  .row .col-11,
  .row .col-12,
  .row .col-2,
  .row .col-3,
  .row .col-4,
  .row .col-5,
  .row .col-6,
  .row .col-7,
  .row .col-8,
  .row .col-9,
  .row .col-auto,
  .row .col-lg,
  .row .col-lg-1,
  .row .col-lg-10,
  .row .col-lg-11,
  .row .col-lg-12,
  .row .col-lg-2,
  .row .col-lg-3,
  .row .col-lg-4,
  .row .col-lg-5,
  .row .col-lg-6,
  .row .col-lg-7,
  .row .col-lg-8,
  .row .col-lg-9,
  .row .col-lg-auto,
  .row .col-md,
  .row .col-md-1,
  .row .col-md-10,
  .row .col-md-11,
  .row .col-md-12,
  .row .col-md-2,
  .row .col-md-3,
  .row .col-md-4,
  .row .col-md-5,
  .row .col-md-6,
  .row .col-md-7,
  .row .col-md-8,
  .row .col-md-9,
  .row .col-md-auto,
  .row .col-sm,
  .row .col-sm-1,
  .row .col-sm-10,
  .row .col-sm-11,
  .row .col-sm-12,
  .row .col-sm-2,
  .row .col-sm-3,
  .row .col-sm-4,
  .row .col-sm-5,
  .row .col-sm-6,
  .row .col-sm-7,
  .row .col-sm-8,
  .row .col-sm-9,
  .row .col-sm-auto,
  .row .col-xl,
  .row .col-xl-1,
  .row .col-xl-10,
  .row .col-xl-11,
  .row .col-xl-12,
  .row .col-xl-2,
  .row .col-xl-3,
  .row .col-xl-4,
  .row .col-xl-5,
  .row .col-xl-6,
  .row .col-xl-7,
  .row .col-xl-8,
  .row .col-xl-9,
  .row .col-xl-auto {
    padding: 0;
  }
}


html {
  scroll-behavior: smooth;
}

.container.padding-0 {
  padding: 0;
}

.article-detail-section {
  font-family: "Roboto", sans-serif;
  padding: 35px 0;
}
.article-detail-section hr {
  margin: 30px 0 0;
  border-top: 1px solid #e2e4e8;
}
.article-detail-section p {
  font-weight: 300;
  line-height: 24px;
}
.article-detail-section strong {
  font-weight: 500;
}
.article-detail-section .related-article-section img {
  max-width: 60px;
  width: 60px !important;
  height: 60px !important;
  border-radius: 10px;
  margin: 0 !important;
}
.article-detail-section .tags {
  margin-top: 20px;
}
.article-detail-section .tags a {
  text-decoration: none;
}
.article-detail-section .tag {
  background-color: #EAE6FF;
  padding: 5px 12px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 2px;
}
.article-detail-section .tag p {
  color: #6554C0;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 0;
  line-height: normal;
}
.article-detail-section .heading-image-section img {
  max-width: 100%;
}

.article-content {
  font-weight: 300;
  line-height: 24px;
}
.article-content strong {
  font-weight: 500;
}

.article-detail-content h3 {
  margin-top: 30px;
  color: #172B4D;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}
.article-detail-content p iframe {
  max-width: 100%;
  height: 215px;
  max-width: 100%;
  height: 215px;
}
.article-detail-content img {
  max-width: 100%;
}
.article-detail-content .related-article-section {
  display: flex;
  align-items: center;
  background: #FFF6E8;
  border-radius: 20px;
  padding: 16px;
  margin: 30px 0;
}
.article-detail-content .related-article-section p {
  margin-bottom: 0;
  margin-left: 16px;
  font-size: 16px;
}
.article-detail-content .related-article-section p.heading {
  line-height: 24px;
  font-weight: 500;
}
.article-detail-content .related-article-section p.article {
  line-height: 21px;
  font-weight: 300;
}
.article-detail-content .quote-section {
  margin: 40px 35px;
  border-left: 3px solid #0065FF;
  padding-left: 16px;
  position: relative;
  clear: both;
}
.article-detail-content .quote-section:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  opacity: 0.6;
  background: url("../../assets/images/quote-image.svg") no-repeat;
  height: 74px;
  width: 100px;
}
.article-detail-content .quote-section .quote {
  font-size: 16px;
  line-height: 24px;
  color: #172B4D;
  font-weight: 300;
  margin-bottom: 30px;
}
.article-detail-content .quote-section p {
  font-size: 16px;
  line-height: 24px;
  color: #172B4D;
  font-weight: 300;
  margin-bottom: 30px;
}
.article-detail-content .quote-section .quote-author {
  font-size: 14px;
  line-height: 24px;
  color: #172B4D;
  font-weight: 500;
  margin-bottom: 0px;
}
.article-detail-content .quote-section .quote-author-designation {
  color: #6B778C;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  margin-bottom: 0px;
}
.article-detail-content .health-calculator-section {
  border: 1px solid #DFE1E6;
  border-radius: 20px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
.article-detail-content .subscribe-newsletter-section {
  border: 1px solid #DFE1E6;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
.article-detail-content a {
  text-decoration: none;
}
.article-detail-content a:hover {
  color: #0065ff;
}
.article-detail-content ol li {
  font-weight: 300;
  line-height: 24px;
  font-size: 16px;
}
.article-detail-content ul li {
  font-weight: 300;
  line-height: 24px;
  font-size: 16px;
}

p.article-content:first-of-type:first-letter {
  color: #172B4D;
  float: left;
  line-height: 4.5rem;
  padding-right: 0.6rem;
  font-size: 4.5rem;
  text-transform: uppercase;
  font-weight: 500;
}

.article-detail-left-section .heading-image-section {
  padding: 5px 0;
}
.article-detail-left-section .heading-image-section h1 {
  color: #253858;
  font-weight: bold;
  line-height: 58px;
}
.article-detail-left-section .heading-image-section .author-date-read-section {
  padding: 20px 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.article-detail-left-section .heading-image-section .visuals {
  font-weight: 300;
  font-size: 14px;
  color: #6B778C;
  line-height: 18px;
  text-align: right;
  margin-bottom: 0;
  margin: 8px 0;
}
.article-detail-left-section .heading-image-section .visuals span {
  font-weight: 500;
  font-size: 14px;
  color: #172B4D;
}

.heading-image-section .author-share-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading-image-section .author-share-section .share {
  display: none;
}
.heading-image-section .author-date-read-section p.author {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-left: 10px;
  color: #172B4D;
}
.heading-image-section .author-date-read-section p.date-read {
  font-size: 12px;
  margin-bottom: 0;
  line-height: 18px;
  font-weight: 300;
  color: #6B778C;
  margin-left: 10px;
}
.heading-image-section .author-date-read-section p.date-read span.date {
  position: relative;
  margin-right: 15px;
}
.heading-image-section .author-date-read-section p.date-read span.date::after {
  position: absolute;
  right: -11px;
  background-color: #6B778C;
  height: 4px;
  width: 4px;
  content: "";
  top: 39%;
  border-radius: 50%;
}

.text-to-speech-button,
.text-to-speech-button-mobile {
  background: #0065FF;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: CENTER;
  max-width: 202px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border: 0;
}
@media screen and (max-width: 767px) {
  .text-to-speech-button,
  .text-to-speech-button-mobile {
    max-width: 100%;
    margin-bottom: 25px;
  }
}
.text-to-speech-button .content,
.text-to-speech-button-mobile .content {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  height: 100%;
  display: flex;
  align-items: CENTER;
  justify-content: center;
}
.text-to-speech-button .content img,
.text-to-speech-button-mobile .content img {
  margin-right: 8px;
}
.text-to-speech-button .play-pause,
.text-to-speech-button-mobile .play-pause {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12px;
  height: 100%;
}
.text-to-speech-button .play-pause .bars,
.text-to-speech-button-mobile .play-pause .bars {
  height: 35px;
  width: 175px;
  margin: 0;
  position: relative;
}
.text-to-speech-button .play-pause .bars .bar,
.text-to-speech-button-mobile .play-pause .bars .bar {
  position: absolute;
  bottom: 50%;
  height: 3px;
  width: 1px;
  background: #fff;
  animation: sound 0ms -800ms linear infinite alternate;
  transform: translateY(50%);
}
.text-to-speech-button .play-pause .bars.pause .bar,
.text-to-speech-button-mobile .play-pause .bars.pause .bar {
  animation: none;
}
.text-to-speech-button .play-pause .icon,
.text-to-speech-button-mobile .play-pause .icon {
  background: url(../images/icons/pause-icon.svg);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.text-to-speech-button .play-pause .icon.pause,
.text-to-speech-button-mobile .play-pause .icon.pause {
  background: url(../images/icons/play-icon.svg);
}
.text-to-speech-button.pause-speech,
.text-to-speech-button-mobile.pause-speech {
  cursor: auto;
}
@media screen and (min-width: 768px) {
  .text-to-speech-button.hide-desktop,
  .text-to-speech-button-mobile.hide-desktop {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .text-to-speech-button.hide-desktop,
  .text-to-speech-button-mobile.hide-desktop {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .text-to-speech-button.hide-mobile,
  .text-to-speech-button-mobile.hide-mobile {
    display: none;
  }
}
.text-to-speech-button.fixed,
.text-to-speech-button-mobile.fixed {
  position: fixed;
  top: 89px;
  right: 36%;
  border-radius: 0 0 10px 10px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .text-to-speech-button.fixed,
  .text-to-speech-button-mobile.fixed {
    top: 56px;
  }
}
@media screen and (max-width: 768px) {
  .text-to-speech-button.fixed,
  .text-to-speech-button-mobile.fixed {
    right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .text-to-speech-button.fixed,
  .text-to-speech-button-mobile.fixed {
    right: 20px;
    position: sticky;
  }
}

.text-to-speech-button-mobile .play-pause .bars {
  width: calc(100% - 40px);
  overflow: hidden;
}

.author-date-read-section img {
  border-radius: 50%;
}

.health-calculator-section .health-calculator-content {
  display: flex;
  align-items: center;
  width: 100%;
}
.health-calculator-section .health-calculator-content > div {
  margin-left: 32px;
  display: flex;
  align-items: CENTER;
  justify-content: space-between;
  width: 100%;
}
.health-calculator-section .health-calculator-content div .heading {
  margin-bottom: 0px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: #172B4D;
}
.health-calculator-section .health-calculator-content div .sub-heading {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #172B4D;
}
.health-calculator-section p.link {
  color: #0065FF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0;
}

.subscribe-newsletter-section .subscribe-newsletter-content {
  display: flex;
  align-items: flex-start;
}
.subscribe-newsletter-section .subscribe-newsletter-content div {
  margin-left: 20px;
}
.subscribe-newsletter-section .subscribe-newsletter-content div .heading {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #172B4D;
}
.subscribe-newsletter-section .subscribe-newsletter-content div .sub-heading {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #172B4D;
}
.subscribe-newsletter-section .subscribe-newsletter-content i {
  color: #0065FF;
  background: #DEEBFF;
  padding: 12px;
  border-radius: 8px;
  font-size: 24px;
}
.subscribe-newsletter-section .subscribe-button input {
  border: 1px solid #DFE1E6;
  padding: 12px;
  border-radius: 8px 0 0 8px;
  width: 240px;
  color: #172B4D;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}
.subscribe-newsletter-section .subscribe-button button {
  background: #0065FF;
  border: none;
  color: #fff;
  padding: 13px 24px;
  margin-left: -4px;
  height: 47px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  line-height: 21px;
}
.subscribe-newsletter-section .subscribe-button button i {
  display: none;
}
.subscribe-newsletter-section .step2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.subscribe-newsletter-section .subscribeImage {
  padding-right: 22px;
}

.step2 .title {
  color: #36B37E;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 11px;
}
.step2 .title-desc {
  color: #172B4D;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 0px;
}

.author-graphic-guest-section img {
  max-width: 50px;
  border-radius: 50%;
}
.author-graphic-guest-section a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  margin-top: 30px;
}
.author-graphic-guest-section a div {
  margin-left: 10px;
}
.author-graphic-guest-section a .label {
  color: #6B778C;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  margin: 0 0 4px;
}
.author-graphic-guest-section a .name {
  color: #0065FF;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin: 0 0 8px;
}
.author-graphic-guest-section a .description {
  color: #172B4D;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.next-article-section p {
  color: #0065FF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.next-article-section p > a {
  color: #0065FF;
}
.next-article-section > a {
  color: #172B4D;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 21px;
  margin-bottom: 16px;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.next-article-section a img {
  margin-left: 8px;
}

.share-claps-section {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px;
  border-bottom: 1px solid #e2e4e8;
}
.share-claps-section > div {
  display: flex;
  align-items: center;
  margin: 10px auto;
}
.share-claps-section a {
  background: #DEEBFF;
  padding: 8px 11px 10px 8px;
  border-radius: 50%;
  display: inline;
  border: 1px solid #DEEBFF;
  width: 40px;
  height: 40px;
}
.share-claps-section a.clapped {
  border: 1px solid #0065FF;
}
.share-claps-section p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: #0065FF;
  padding: 0 12px;
}

#likeArticle {
  cursor: pointer;
}

#clapCounts {
  margin-bottom: 20px;
}

.article-detail-right-section {
  padding-left: 80px;
  padding-right: 0;
}
.article-detail-right-section h3 {
  color: #253858;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  padding-bottom: 10px;
  position: relative;
}
.article-detail-right-section h3:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 50px;
  background: #0065FF;
  bottom: 0;
  left: 0;
}

.top-widget {
  border: 1px solid #DFE1E6;
  border-radius: 20px;
  padding: 30px 20px;
}
.top-widget .widget {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.top-widget .widget:last-child {
  margin-bottom: 0;
}
.top-widget .widget div p.heading {
  margin: 0 20px 0 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 19px;
  color: #253858;
}
.top-widget .widget div p.sub-heading {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #253858;
}

.widget > div {
  padding-left: 20px;
}
.widget > p {
  background: #5e6c84;
  color: #fff;
  border-radius: 50%;
  padding: 10px 13px;
  margin: 0;
}

.social-media-section {
  margin: 35px 16px 40px;
}
.social-media-section > div {
  display: flex;
  width: 65%;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 24px;
}
.social-media-section > div i {
  color: #97a0af;
}

.popular-this-month {
  background: #ebf2ff;
  border-radius: 20px;
  padding: 22px 16px;
}
.popular-this-month .story {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #DFE1E6;
  padding: 20px 20px 20px 0;
}
.popular-this-month .story:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.popular-this-month .story p.number {
  font-size: 48px;
  color: #0065FF;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 45px;
}
.popular-this-month .story a.heading {
  font-size: 16px;
  color: #253858;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
  margin-left: 20px;
}
.popular-this-month .story a.heading:hover {
  text-decoration: none;
  color: #0065FF;
}

a.story-of-month-section:hover {
  text-decoration: none;
}

.story-of-month {
  border: 1px solid #DFE1E6;
  padding: 24px 16px;
  border-radius: 20px;
  margin: 40px 0;
}
.story-of-month h3 {
  color: #253858;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
}
.story-of-month h3:last-of-type:after {
  display: none;
}
.story-of-month a {
  display: block;
  text-decoration: none;
}
.story-of-month img {
  max-width: 100%;
  margin: 16px 0;
}
.story-of-month .author {
  color: #6B778C;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.story-of-month .date {
  color: #6B778C;
  font-size: 12px;
  line-height: 24px;
  font-weight: 300;
  margin: 0;
}

.scroll-to-top.fixed {
  display: none;
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 99;
}

.scroll-to-top a {
  background: #DEEBFF;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.2392156863);
  padding: 15px 17px;
  border-radius: 50%;
}

.progress-container {
  width: 100%;
  height: 5px;
  background: transparent;
  position: fixed;
  top: 91px;
  z-index: 99;
}

.progress-bar {
  height: 5px;
  background: #0065FF;
  width: 0%;
}

.similar-stories a {
  text-decoration: none;
}

.quote-section img {
  width: 50px !important;
  height: 50px !important;
  float: left;
  margin-right: 10px !important;
  border-radius: 25px;
}

.related-article-content {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg {
  height: 40px !important;
  line-height: 40px !important;
  width: 40px !important;
  background-color: rgb(222, 235, 255) !important;
}
.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg > span {
  background-color: rgb(222, 235, 255) !important;
  height: 40px !important;
  width: 40px !important;
}
.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle {
  height: 40px !important;
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg {
  background-color: rgb(222, 235, 255) !important;
}
.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg span {
  background-color: rgb(222, 235, 255) !important;
}

.at-expanding-share-button {
  display: none;
  z-index: 99 !important;
}
.at-expanding-share-button .at-expanding-share-button-toggle-bg > span {
  background-image: url("../../assets/images/icon-share.svg") !important;
}
.at-expanding-share-button .at-icon {
  height: 20px !important;
  margin: 10px 0 !important;
  width: 20px !important;
}
.at-expanding-share-button .at-icon-wrapper {
  background-color: rgb(222, 235, 255) !important;
}
.at-expanding-share-button .at-expanding-share-button-services-list {
  margin: 0 !important;
}

.at-icon {
  fill: #0065ff !important;
}

.at-expanding-share-button.at-expanding-share-button-animate-in .at-expanding-share-button-toggle-bg > span {
  transform: rotate(0deg) !important;
}

.at-expanding-share-button[data-position=bottom-left] {
  bottom: 70px !important;
  left: 40px !important;
}

.slideInLeft {
  animation: none !important;
}

.share-icons-container {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s opacity;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-icons-container.expanded {
  visibility: visible;
  opacity: 1;
  transition: 0.3s opacity;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.share-icons-container.expanded .fa.fa-times {
  position: absolute;
  color: #fff;
  top: 20px;
  right: 20px;
}

.at-expanding-share-button.at-expanding-share-button-mobile.at-expanding-share-button-animate-in + .at-expanding-share-button-mobile-overlay {
  opacity: 0 !important;
}

#at-expanded-menu-host .at-expanded-menu .at-icon {
  fill: #fff !important;
}

p.rating {
  width: 100%;
}

.canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: relative;
}
.canvas .total-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  margin-top: -5px;
  color: gray;
  font-family: sans-serif;
  font-size: 16px;
}
.canvas .total-counter.fader {
  animation: fade-in 1400ms forwards;
}
.canvas .clap-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
  background: #deebff;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
.canvas .clap-container .clap-icon {
  font-size: 30px;
  color: #0065ff;
  width: 20px;
  height: 20px;
}
.canvas .clap-container:hover {
  border: 1px solid #0065ff;
}
.canvas .clap-container.scale {
  animation: scaleAndBack 700ms forwards;
}
.canvas .click-counter {
  display: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 132px;
  background-color: #0065ff;
  border-radius: 50%;
  z-index: 1;
}
.canvas .click-counter .counter {
  font-family: sans-serif;
  font-size: 14px;
  color: #fff;
}
.canvas .click-counter.first-active {
  animation: first-bump-in 1s forwards;
}
.canvas .click-counter.active {
  animation: bump-in 1s forwards;
}
.canvas .clap-container-sonar {
  width: 40px;
  height: 40px;
  background: #0065ff;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  z-index: 0;
}
.canvas .hover-active {
  animation: sonar-wave 2s forwards;
}
.canvas .particles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
}
.canvas .particles-container .triangle {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid #0065ff;
  border-bottom: 4px solid transparent;
  position: absolute;
  width: auto;
}
.canvas .particles-container .triangle .square {
  width: 5px;
  height: 5px;
  background: #0065ff;
  position: absolute;
  left: -15px;
  top: 0;
}
.canvas .particles-container .pop-top {
  animation: pop-top 1s forwards;
}
.canvas .particles-container .pop-top-left {
  animation: pop-top-left 1s forwards;
}
.canvas .particles-container .pop-top-right {
  animation: pop-top-right 1s forwards;
}
.canvas .particles-container .pop-bottom-right {
  animation: pop-bottom-right 1s forwards;
}
.canvas .particles-container .pop-bottom-left {
  animation: pop-bottom-left 1s forwards;
}

.subscribe-button.input-box-main.step1.error {
  position: relative;
}

.err.subscription_error {
  position: absolute;
  margin-top: 0px;
  left: 0;
}

.similar-stories-section {
  background-color: #F7FAFF;
}
.similar-stories-section .similar-stories {
  margin: 0 auto;
  padding: 36px 0;
  max-width: 1140px;
}
.similar-stories-section .similar-stories h3 {
  color: #172B4D;
  font-size: 28px;
  font-weight: 500;
  margin-left: 12px;
}
.similar-stories-section .similar-stories .similar-story-list.slick-initialized .slick-track {
  margin-left: 0 !important;
}
.similar-stories-section .similar-stories .similar-story-list.slick-initialized .slick-slide {
  margin: 0 12px 10px;
}
.similar-stories-section .similar-stories .similar-story-list .similar-story {
  border-radius: 8px;
  background: #fff;
  text-align: left;
  min-height: 445px;
  margin-top: 10px;
  transition: all ease 0.5s;
}
.similar-stories-section .similar-stories .similar-story-list .similar-story:hover {
  box-shadow: 1px 3px 20px rgba(45, 45, 45, 0.15);
  transform: translate(0, -4px);
  -ms-transform: translate(0, -4px);
  -moz-transform: translate(0, -4px);
  -webkit-transform: translate(0, -4px);
}
.similar-stories-section .similar-stories .similar-story-list .similar-story img {
  border-radius: 8px 8px 0 0;
}
.similar-stories-section .similar-stories .similar-story-list .similar-story p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 0 16px;
}
.similar-stories-section .similar-stories .similar-story-list .similar-story p.heading {
  color: #172B4D;
  font-weight: 500;
  margin: 16px 0;
}
.similar-stories-section .similar-stories .similar-story-list .similar-story p.description {
  color: #505F79;
  margin: 0 0 24px;
}
.similar-stories-section .similar-stories .similar-story-list .similar-story p.tag {
  color: #6554C0;
  background: #EAE6FF;
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 18px;
  margin: 20px 16px 0;
  text-transform: uppercase;
  border-radius: 2px;
}
.similar-stories-section .similar-stories .similar-story-list .slick-next {
  top: -25px;
  right: 25px;
}
.similar-stories-section .similar-stories .similar-story-list .slick-next::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: url("../default_images/icons/icon-right-arrow.png") no-repeat center;
}
.similar-stories-section .similar-stories .similar-story-list .slick-next.slick-disabled:before {
  opacity: 1;
  background: url("../default_images/icons/icon-left-arrow-grey.png") no-repeat center;
  transform: rotate(180deg);
  color: #7A869A;
  opacity: 1;
}
.similar-stories-section .similar-stories .similar-story-list .slick-prev {
  left: auto;
  right: 70px;
  top: -25px;
}
.similar-stories-section .similar-stories .similar-story-list .slick-prev::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: url("../default_images/icons/icon-left-arrow.png") no-repeat center;
}
.similar-stories-section .similar-stories .similar-story-list .slick-prev.slick-disabled:before {
  opacity: 1;
  background: url("../default_images/icons/icon-left-arrow-grey.png") no-repeat center;
  color: #7A869A;
  opacity: 1;
}

.customer-support-widget {
  background: #EEEFF0;
  border-radius: 20px;
  padding: 25px 30px 0;
  margin: 30px 0;
}
.customer-support-widget .content-image {
  display: flex;
  margin-bottom: 15px;
}
.customer-support-widget .content-image .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 22px;
}
.customer-support-widget .content-image .content p {
  color: #172B4D;
  margin-bottom: 0;
}
.customer-support-widget .content-image .content p.heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}
.customer-support-widget .content-image .content p.sub-heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.customer-support-widget .content-image .content .toll-free-number {
  font-size: 18px;
  line-height: 24px;
  color: #0065ff;
  margin-bottom: 0;
  font-weight: 400;
}
.customer-support-widget .disclaimer {
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  color: #B3BAC5;
  text-align: right;
  margin-bottom: 0;
  padding-bottom: 3px;
}

@media (max-width: 768px) {
  .article-detail-content img {
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  .article-detail-content .related-article-section p.article {
    width: 100%;
    padding-right: 13px;
  }
  .article-detail-content .quote-section {
    margin: 40px 5px;
  }
  .article-detail-section {
    padding: 35px 9px 0;
  }
  .article-detail-section .health-calculator-section {
    flex-direction: column;
    padding: 16px;
  }
  .article-detail-left-section .heading-image-section h1 {
    line-height: 32px;
    font-size: 22px;
  }
  .heading-image-section .author-share-section .share {
    background: #DEEBFF;
    padding: 10px 11px 10px 10px;
    border-radius: 50%;
    display: inline;
  }
  .health-calculator-section p.link {
    margin-top: 10px;
  }
  .health-calculator-section .health-calculator-content {
    display: flex;
    align-items: flex-start;
  }
  .health-calculator-section .health-calculator-content > div {
    margin-left: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .health-calculator-section .health-calculator-content div .heading {
    font-size: 16px;
    line-height: 24px;
  }
  .health-calculator-section a {
    margin-top: -10px;
  }
  .health-calculator-content img {
    max-width: 56px;
  }
  .article-detail-right-section {
    margin: 40px 15px 0;
    padding: 0;
  }
  .top-widget {
    display: none;
  }
  .social-media-section {
    display: none;
  }
}
@media (max-width: 325px) {
  .health-calculator-section .health-calculator-content div {
    margin-left: 11px;
  }
}
@media (max-width: 1024px) {
  .article-detail-content .subscribe-newsletter-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 16px;
  }
  .subscribe-newsletter-section .subscribe-newsletter-content {
    margin-bottom: 10px;
  }
  .subscribe-newsletter-section .subscribe-newsletter-content i {
    padding: 12px;
    font-size: 18px;
    margin-right: 10px;
  }
  .subscribe-newsletter-section .subscribe-newsletter-content div {
    margin-left: 0;
    margin: 0;
  }
  .subscribe-newsletter-section .subscribe-newsletter-content div .heading {
    font-size: 16px;
    line-height: 24px;
  }
  .subscribe-newsletter-section .subscribe-newsletter-content div .sub-heading {
    font-size: 14px;
  }
  .subscribe-newsletter-section .subscribe-button input {
    width: 73%;
  }
  .subscribe-newsletter-section .subscribe-button button i {
    display: block;
  }
  .subscribe-newsletter-section .subscribe-button button span {
    display: none;
  }
  .subscribe-newsletter-section .step2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .subscribe-button.input-box-main.step1 {
    width: 100%;
  }
  .step2 .title {
    color: #36B37E;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 16px 0;
  }
  .step2 .title-desc {
    font-size: 14px;
    margin-bottom: -5px;
  }
  .share-claps-section {
    display: none !important;
  }
  .scroll-to-top {
    display: none !important;
  }
  .progress-container {
    top: 54px;
  }
  .at-expanding-share-button {
    display: none !important;
  }
  .at-expanding-share-button[data-position=bottom-left] {
    bottom: 70px !important;
    left: 4px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .share-claps-section {
    left: 4px !important;
  }
}
@media (min-width: 769px) {
  .share-claps-section {
    display: none;
    position: fixed;
    left: 40px;
    bottom: 0px;
    flex-direction: column;
    border: none;
    z-index: 99;
  }
  .share-claps-section > div {
    flex-direction: column;
  }
  .share-claps-section > div:last-child {
    flex-direction: column-reverse;
  }
  .share-claps-section p {
    font-size: 12px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .article-detail-right-section {
    padding-left: 25px;
  }
}
@media (min-width: 1025px) {
  .floating-button {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .similar-stories-section .similar-stories {
    padding: 24px 0;
  }
  .similar-stories-section .similar-stories .similar-story-list.slick-initialized .slick-slide {
    margin: 0 10px;
  }
  .similar-stories-section .similar-stories h3 {
    font-size: 22px;
  }
  .similar-stories-section .similar-stories .similar-story-list .similar-story {
    margin: 10px 0 20px;
    min-height: 484px;
  }
  .customer-support-widget {
    padding: 22px 10px 0;
  }
  .customer-support-widget .content-image {
    margin-bottom: 8px;
    align-items: flex-start;
  }
  .customer-support-widget .content-image img {
    max-width: 41px;
  }
  .customer-support-widget .content-image .content {
    margin-left: 11px;
  }
  .customer-support-widget .content-image .content p.heading {
    font-size: 16px;
    line-height: 18px;
  }
  .customer-support-widget .content-image .content p.sub-heading {
    font-size: 14px;
  }
  .customer-support-widget .content-image .content .toll-free-number {
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
  }
  .customer-support-widget .disclaimer {
    font-size: 6px;
    line-height: 8px;
    padding-bottom: 5px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .customer-support-widget .content-image .content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rate-comment-share-section {
  border-top: 1px solid #DFE1E6;
  margin: 30px 0 0;
  padding: 30px 0 0;
}
.rate-comment-share-section .rate-comment-share-box {
  display: flex;
  align-items: flex-start;
}
.rate-comment-share-section .rate-comment-share-box .like-icon {
  padding: 13px 12px 13px 12px;
  display: FLEX;
  align-items: CENTER;
  justify-content: center;
  border: 1px solid #DFE1E6;
  border-radius: 100px;
  margin-right: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.rate-comment-share-section .rate-comment-share-box .like-icon .icon {
  background: url(../images/icons/like-icon.svg);
  display: block;
  height: 20px;
  width: 22px;
  margin-right: 6px;
}
.rate-comment-share-section .rate-comment-share-box .like-icon .number {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.014em;
  color: #253858;
}
.rate-comment-share-section .rate-comment-share-box .like-icon.liked .icon {
  background: url(../images/icons/liked-icon.svg) no-repeat center/contain;
  margin-right: 6px;
}
.rate-comment-share-section .rate-comment-share-box .like-icon.liked .number {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.014em;
  color: #253858;
}
.rate-comment-share-section .rate-comment-share-box .comment-icon {
  padding: 13px 12px 13px 12px;
  display: FLEX;
  align-items: CENTER;
  justify-content: center;
  border: 1px solid #DFE1E6;
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
}
.rate-comment-share-section .rate-comment-share-box .comment-icon .icon {
  background: url(../images/icons/comment-icon.svg);
  display: block;
  height: 18px;
  width: 22px;
}
.rate-comment-share-section .rate-comment-share-box .comment-icon.commented .number {
  margin-left: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.014em;
  color: #253858;
}
.rate-comment-share-section .add-comment-button {
  background: #0065FF;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  padding: 14px 0 15px;
}
@media screen and (max-width: 767px) {
  .rate-comment-share-section .add-comment-button {
    margin-top: 24px;
  }
}

.menu-share-list {
  z-index: 99;
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-left: 12px;
}
.menu-share-list .share .share-icon {
  padding: 13px 14px 13px 14px;
  display: FLEX;
  align-items: CENTER;
  justify-content: center;
  border: 1px solid #DFE1E6;
  border-radius: 100px;
  margin-right: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-share-list .share:hover.right .share-icon {
  background: #F2F7FF;
  border: 1px solid #0065FF;
}
.menu-share-list .share:hover.right .submenu-list {
  opacity: 1;
  left: 70px;
  transform: rotate(0deg);
  transition-delay: 0.08s;
  height: 78px;
  width: 312px;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .menu-share-list .share:hover.right .submenu-list {
    display: flex;
    top: 66px;
    left: -127px;
  }
}
@media screen and (max-width: 360px) {
  .menu-share-list .share:hover.right .submenu-list {
    left: -134px;
  }
}
@media screen and (max-width: 320px) {
  .menu-share-list .share:hover.right .submenu-list {
    left: -152px;
  }
}
.menu-share-list .share:hover.right .submenu-list .submenu:nth-child(1) {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.08s;
}
.menu-share-list .share:hover.right .submenu-list .submenu:nth-child(2) {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.16s;
}
.menu-share-list .share:hover.right .submenu-list .submenu:nth-child(3) {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.24s;
}
.menu-share-list .share:hover.right .submenu-list .submenu:nth-child(4) {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.32s;
}
.menu-share-list .share:hover.right .submenu-list .submenu:nth-child(5) {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.4s;
}
.menu-share-list .submenu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: #F2F7FF;
  border-radius: 8px;
  display: flex;
  align-items: CENTER;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 12px;
  visibility: hidden;
}
.menu-share-list .submenu-list::before {
  content: "";
  width: 0;
  height: 0;
  border-right: 15px solid #f2f7ff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .menu-share-list .submenu-list {
    display: none;
  }
  .menu-share-list .submenu-list::before {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 0px solid transparent;
    border-bottom: 15px solid #f2f7ff;
    top: -11px;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
@media screen and (max-width: 320px) {
  .menu-share-list .submenu-list::before {
    left: 56%;
  }
}
.menu-share-list .submenu-list .submenu {
  transition: all ease-in-out 0.5s;
  z-index: -1;
  opacity: 0;
}
.menu-share-list .submenu-list .submenu a {
  color: #212121;
}
.menu-share-list .submenu-list .submenu a .icon {
  background: #FFFFFF;
  box-shadow: 0px 6px 16px rgba(52, 105, 203, 0.16);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-share-list .submenu-list .submenu a .name {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #253858;
  opacity: 0.6;
  margin-top: 10px;
}
.menu-share-list .submenu-list .submenu a:hover {
  text-decoration: none;
}
.menu-share-list .submenu-list .submenu:nth-child(1) {
  transform: rotateX(45deg);
}
.menu-share-list .submenu-list .submenu:nth-child(2) {
  transform: rotateX(90deg);
}
.menu-share-list .submenu-list .submenu:nth-child(3) {
  transform: rotateX(135deg);
}
.menu-share-list .submenu-list .submenu:nth-child(4) {
  transform: rotateX(180deg);
}

.add-comment-section {
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(52, 105, 203, 0.16);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}
.add-comment-section .heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #253858;
  margin: 0 0 20px;
}
.add-comment-section .message {
  align-items: CENTER;
  justify-content: CENTER;
  display: flex;
  color: green;
  font-weight: 500;
  font-size: 16px;
}

form .field-wrapper {
  border: 1px solid #5e6c84;
  border-radius: 8px;
  position: relative;
  width: 100%;
  display: table;
  margin-bottom: 35px;
}
form .field-wrapper .form-input {
  position: relative;
}
form .field-wrapper .form-input .full-width {
  width: 100%;
  height: 100%;
  padding: 0px 35px 0px 19px;
  border-radius: 8px;
  border: none;
  font-weight: 400;
  z-index: 9;
  background: 0 0;
  height: 56px;
  position: relative;
  color: #253858;
  outline: none;
}
form .field-wrapper .form-input .field-label {
  color: #5e6c84;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  position: absolute;
  left: 14px;
  background: #fff;
  top: 15px;
  padding: 2px;
  visibility: visible;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
form .field-wrapper .form-input textarea {
  padding: 20px 19px !important;
  height: 104px !important;
}
form .field-wrapper .form-input input.labelshow + .field-label,
form .field-wrapper .form-input input:focus + .field-label,
form .field-wrapper .form-input textarea.labelshow + .field-label,
form .field-wrapper .form-input textarea:focus + .field-label {
  z-index: 10;
  visibility: visible;
  top: -13px;
  font-size: 12px;
  left: 14px !important;
}
form .field-wrapper .err {
  position: absolute;
  left: 0;
  bottom: -18px;
}
form .button {
  background: #0065FF;
  border-radius: 8px;
  border: 0;
  padding: 14px 0 15px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
}

.comments-section {
  margin-top: 28px;
}
.comments-section > .heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #253858;
  margin: 0 0 20px;
}
.comments-section .comments-list {
  margin-top: 32px;
}
.comments-section .comments-list .comment {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.comments-section .comments-list .comment .initials {
  background: #ebf2ff;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  color: #253858;
  flex-shrink: 0;
}
.comments-section .comments-list .comment .content {
  margin-left: 12px;
  width: 100%;
  border-bottom: 1px solid #DFE1E6;
  padding-bottom: 28px;
  margin-bottom: 24px;
}
.comments-section .comments-list .comment .heading-time {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.comments-section .comments-list .comment .heading-time .heading {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.014em;
  color: #253858;
  margin-right: 12px;
}
.comments-section .comments-list .comment .heading-time .time {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.014em;
  color: #253858;
  opacity: 0.6;
}
.comments-section .comments-list .comment:nth-of-type(4) .content {
  border-bottom: 0;
  margin-bottom: 0;
}
.comments-section .comments-list .more-comments {
  display: none;
}
.comments-section .comments-list .more-comments.show {
  display: block;
}
.comments-section .comments-list .view-more-comments {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.014em;
  color: #0065FF !important;
  cursor: pointer;
  padding-left: 60px;
}
.comments-section .comments-list:has(.show) .comment:nth-of-type(4) .content {
  margin-bottom: 24px;
  border-bottom: 1px solid #DFE1E6;
}
.comments-section .comments-list:has(.show) .more-comments .comment .content:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}

@keyframes sound {
  0% {
    opacity: 0.35;
    height: 3px;
  }
  100% {
    opacity: 1;
    height: 28px;
  }
}
.msg {
  padding: 30px 0 0;
  text-align: CENTER;
  color: green;
  font-weight: 500;
}/*# sourceMappingURL=article-detail.css.map */