/**
 * @file
 * Comment style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
/* HEADING */
/* TEXT & CONTENT */
.comments-section_comment .comment-body {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.comments-section_comment .general-info {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.comments-section_comment {
  padding: 1.5rem;
  margin-top: 1.5rem;
  background-color: #f5f5f5;
}
.comments-section_comment .general-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.comments-section_comment .general-info .date {
  font-size: 1.25rem;
}
.comments-section_comment .comment-body .links {
  list-style: none;
}
.comments-section_comment .comment-body .links a {
  text-decoration: none;
}
.comments-section .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-top: 1.5rem;
}
.comments-section .links .toggle {
  cursor: pointer;
}
.comments-section .links .show-hide_toggle-hide,
.comments-section .links .show-hide_toggle-show {
  color: #008444;
}
.comments-section article + article {
  margin-top: 1.5rem;
}
.comments-section .indented {
  height: auto;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background-color: #f5f5f5;
  opacity: 1;
  transition: height 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.comments-section .indented.hide {
  height: 0;
  opacity: 0;
}
.comments-section .indented article {
  margin: 0 1.5rem 1.5rem;
  background-color: #fff;
}
.comments-section .accordion {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.comments-section .accordion .accordion-item__label {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
}

.comment-blogpost-comments-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 2.5rem auto;
}
.comment-blogpost-comments-form .form-item,
.comment-blogpost-comments-form .form-wrapper {
  margin-bottom: 1rem;
}
.comment-blogpost-comments-form .form-item--name, .comment-blogpost-comments-form .form-item--mail {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .comment-blogpost-comments-form .form-item--name, .comment-blogpost-comments-form .form-item--mail {
    flex: 0 0 auto;
    width: 50%;
  }
}
.comment-blogpost-comments-form .form-item--name input, .comment-blogpost-comments-form .form-item--mail input {
  width: 100%;
}
.comment-blogpost-comments-form .form-item--textarea textarea {
  width: 100%;
}
.comment-blogpost-comments-form .form-item__description {
  display: block;
}
.comment-blogpost-comments-form .form-submit-wrapper {
  display: inline-block;
  width: auto;
}

.path-comment .comments-section_comment .general-info {
  flex-direction: column;
}
.path-comment .comments-section_comment .comment-body .links {
  display: none;
}
.path-comment .comment-form {
  max-width: 100%;
}

/*# sourceMappingURL=components.comment.css.map */
