@charset "UTF-8";
.card {
  border: none;
  border-radius: 4px;
  box-shadow: 0 5px 10px 0 rgba(51, 59, 69, 0.25);
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  word-wrap: break-word;
  background-color: #FFF;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 15px 0 rgba(51, 59, 69, 0.4);
}

.card.component {
  padding: 0px;
}

.card .filter-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

.card .filter-type .card-type-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card .filter-type .card-type {
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-bottom: 0px;
  margin-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.card .filter-type .card-type:first-child {
  width: 100%;
  margin-left: 0px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  justify-content: flex-end;
}

.card .card-type-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.card .card-type-title span {
  display: inline-block;
}

.card .card-type-title span.line {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 16px;
  position: relative;
}

.card .card-type-title span.line::before {
  content: "";
  width: 100%;
  height: 0px;
  border-top: 1px solid #232E43;
  border-bottom: 1px solid #232E43;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.card .card-type-title .type-before {
  font-size: 14px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-left: 12px;
  margin-left: 16px;
}

.card .card-type-title .type-before::before {
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 7px;
  height: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#317FCB), to(#00529F));
  background: -webkit-linear-gradient(top, #317FCB 0%, #00529F 100%);
  background: linear-gradient(180deg, #317FCB 0%, #00529F 100%);
  border-radius: 3px;
  margin: 4px 0px;
  position: absolute;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.card.heading-type {
  overflow: visible;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card.heading-type .card-heading {
  width: 100%;
  position: relative;
  padding: 24px;
}

.card.heading-type .card-heading::before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  background-color: #434B52;
  left: -5px;
  top: 0px;
  border-top-left-radius: 4px;
}

.card.heading-type .card-heading .field-title {
  margin-bottom: 0px;
}

.card.heading-type .card-heading .field-title a {
  font-size: 24px;
  line-height: 24px;
  display: block;
}

.card.heading-type:not(.full-width) .card-type-title {
  margin-bottom: 8px;
}

.card.heading-type:not(.full-width) .card-heading {
  padding-bottom: 0px;
  margin-bottom: 8px;
}

.card.heading-type:not(.full-width) .card-heading .field-title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: -webkit-calc(24px * 2);
  height: calc(24px * 2);
}

.card.heading-type .card-body {
  padding-top: 0px;
  height: auto;
}

.card.heading-type .card-body .introduction.is-left-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card.heading-type .card-body .introduction.is-left-right .left-side {
  width: 50%;
}

.card.heading-type .card-body .introduction.is-left-right .left-side:only-child {
  width: 100%;
}

.card.heading-type .card-body .introduction.is-left-right .right-side {
  width: 50%;
  padding-right: 15px;
}

.card.heading-type.flex-direction-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card.heading-type.hidden-heading .card-body {
  padding-top: 24px;
}

.card.heading-type.hidden-heading .card-body .filter-type {
  display: block;
}

.card.heading-type.hidden-heading .card-heading {
  position: absolute;
}

.card.heading-type.hidden-heading .card-heading .card-type-title {
  opacity: 0;
  pointer-events: none;
}

.card.heading-type.ba .card-heading {
  position: absolute;
}

@media screen and (min-width: 767.98px) {
  .card.heading-type.ba .card-body {
    margin-top: 68px;
  }
}

.card.heading-type.ba .field-image {
  margin-top: 48px;
}

@media screen and (max-width: 575.98px) {
  .card.heading-type.ba .field-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 58px;
  }
}

@media screen and (max-width: 575.98px) {
  .card.heading-type.ba .field-image img {
    width: 100%;
    height: auto;
    max-height: 393px;
    margin: unset;
  }
}

.card > .component-content {
  width: 100%;
  height: 100%;
}

.card .card-type {
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
  margin-left: auto;
}

.card .card-type .type {
  font-size: 14px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-left: 12px;
}

.card .card-type .type::before {
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 7px;
  background: -webkit-gradient(linear, left top, left bottom, from(#317FCB), to(#00529F));
  background: -webkit-linear-gradient(top, #317FCB 0%, #00529F 100%);
  background: linear-gradient(180deg, #317FCB 0%, #00529F 100%);
  border-radius: 3px;
  margin: 2px 0px;
  position: absolute;
}

.card .revue-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
}

.card .revue-section > div:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card .revue-section > div:not(:last-child)::after {
  content: "\00a0|\00a0";
  -webkit-transform: scale(0.7) translateY(-3px);
  -ms-transform: scale(0.7) translateY(-3px);
  transform: scale(0.7) translateY(-3px);
  font-weight: bold;
}

.card .revue-section .number-section .number-field::before {
  content: "\00a0";
}

.card .card-body {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-negative: 2;
  flex-shrink: 2;
  position: relative;
}

.card .card-body .created-by .field-author {
  display: inline-block;
}

.card .card-body .created-by .field-author:not(:first-child) {
  margin-left: 8px;
}

.card .card-body .created-by .field-author .field-title {
  font-weight: 400;
}

.card .card-body .created-by .field-author .field-title:not(:first-child) {
  padding-left: 16px;
  position: relative;
}

.card .card-body .created-by .field-author .field-title:not(:first-child)::before {
  content: "·";
  color: #C8CBCD;
  font-size: 20px;
  position: absolute;
  left: 6px;
  pointer-events: none;
}

.card .card-body .created-by .field-author .field-title .field-title {
  font-weight: 400;
}

.card .card-body .selected-nb {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 2px 12px;
  font-weight: bold;
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(88, 102, 129, 0.1);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  transition: opacity 0.2s ease, -webkit-transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.475), -webkit-transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.card .card-body .selected-nb.check-icon {
  height: 28px;
  width: 28px;
  border-radius: 28px;
  padding: 0px;
  position: relative;
}

.card .card-body .selected-nb.check-icon::after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 28px;
  width: 28px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.card .card-body .selected-nb.visible {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.card .card-body .field-title:not(.keyword) {
  max-width: 100%;
  margin-bottom: 16px;
}

.card .card-body .keywords-container {
  max-width: 100%;
  margin-bottom: 16px;
}

.card .card-body .author {
  max-width: 100%;
}

.card .card-body .release-details {
  margin-bottom: 8px;
}

.card .card-body .introduction {
  max-width: 100%;
  width: 100%;
}

.card .card-body .introduction .preview-text p {
  margin-bottom: 0px;
}

.card .card-body .introduction.portrait-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.card .card-body .introduction.portrait-image .preview-text {
  width: 55%;
}

.card .card-body .introduction.portrait-image .field-image {
  width: 45% !important;
  padding-right: 16px;
  padding-top: 6px;
  height: 230px !important;
}

.card .card-body .introduction.portrait-image .field-image img {
  -o-object-position: top !important;
  object-position: top !important;
}

.card .card-body .foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  width: 100%;
  min-height: 48px;
}

.card .card-body .foot .left-side {
  text-align: left;
}

.card .card-body .foot .left-side a {
  margin-bottom: 0px;
}

.card .card-body .foot .left-side:empty {
  display: none;
}

.card .card-body .foot .left-side .download-icon {
  font-size: 0px;
  width: 32px;
  height: 32px;
  position: relative;
}

.card .card-body .foot .left-side .download-icon::before {
  content: "";
  position: absolute;
  background-image: url(../images/icons/download-main-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  height: 32px;
  width: 32px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.card .card-body .foot .left-side .download-icon:hover::before {
  background-image: url(../images/icons/download-lighter-green.svg);
}

.card .card-body .foot .left-side .download-icon:active::before {
  background-image: url(../images/icons/download-darker-green.svg);
}

.card .card-body .foot .left-side .download-icon a {
  width: 100%;
  height: 100%;
  position: absolute;
}

.card .card-body .foot .right-side {
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.card .card-body .foot .right-side .exclusive-content {
  font-style: italic;
  color: #86929D;
  display: block;
  font-weight: 300;
  font-size: 15px;
  line-height: 27px;
}

.card .card-body .foot .right-side:empty {
  display: none;
}

@media screen and (max-width: 991.98px) {
  .card .card-body .foot {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .card .card-body .foot .right-side {
    margin-top: 16px;
  }
  .card .card-body .foot .left-side {
    text-align: center;
  }
}

.card.big-card .field-image {
  overflow: hidden;
  width: 100%;
  max-height: 456px;
  padding-top: 68.675%;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.card.big-card .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

@media screen and (max-width: 991.98px) {
  .card.big-card .field-image img {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}

.card.big-card .field-image img.loaded {
  opacity: 1;
}

.card.big-card .card-body .field-title {
  font-size: 36px;
  line-height: 40px;
}

.card.big-card .card-body .field-title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 991.98px) {
  .card.big-card .card-body .field-title {
    font-size: 24px;
    line-height: 30px;
  }
}

.card.big-card .card-body .introduction {
  margin-bottom: 40px;
}

.card.big-card.reunion-card .component-content .card-body .reunion-container {
  padding-top: -webkit-calc(450px - 24px - 200px);
  padding-top: calc(450px - 24px - 200px);
  margin-left: -12px;
  width: -webkit-calc(100% + 24px);
  width: calc(100% + 24px);
}

.card.big-card.reunion-card .component-content .card-body .reunion-container .reunion-image {
  position: absolute;
  height: -webkit-calc(450px - 144px + 24px);
  height: calc(450px - 144px + 24px);
  width: -webkit-calc(100% + 48px);
  width: calc(100% + 48px);
  left: 0;
  top: 0;
  margin: -24px;
  margin-bottom: 0;
}

.card.big-card.reunion-card .component-content .card-body .reunion-container .reunion-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card.small-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.card.small-card .card-before {
  width: 25%;
  background-color: #F9F9F9;
  padding: 24px;
}

.card.small-card .card-before .icon-container,
.card.small-card .card-before .image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.card.small-card .card-before .icon-container .field-image,
.card.small-card .card-before .image-container .field-image {
  height: 100%;
  width: 100%;
}

.card.small-card .card-before .icon-container .field-image img,
.card.small-card .card-before .image-container .field-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: none;
  object-fit: none;
}

.card.small-card .card-body .field-title:not(.month-field):not(li):not(b):not(.h3) {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 4px;
}

.card.small-card .card-body .field-title:not(.month-field):not(li):not(b):not(.h3) a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 60px;
}

.card.small-card .card-body .keywords-container {
  margin-bottom: 0px;
}

.card.small-card .card-body .introduction .preview-text {
  margin-bottom: 16px;
}

.card.small-card .card-body .introduction .preview-text.sommaire > p:first-child {
  margin-top: 0;
}

.card.small-card .card-body .introduction .preview-text.sommaire > ol > li:not(:first-child), .card.small-card .card-body .introduction .preview-text.sommaire > ul > li:not(:first-child) {
  margin-top: 0px;
}

.card.small-card .card-body .introduction .field-image {
  width: 100%;
  height: 148px;
  overflow: hidden;
}

.card.small-card .card-body .introduction .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
  width: 100%;
  height: 100%;
}

.card.small-card .card-body .foot .left-side a {
  font-size: 14px;
  line-height: 23px;
}

.card.small-card .card-body .foot .right-side a {
  font-size: 14px;
  line-height: 23px;
}

@media screen and (min-width: 991.98px) {
  .card.small-card .card-body .foot .right-side a.custom-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0px;
    width: 21.3334px;
    height: 32px;
  }
}

@media screen and (max-width: 991.98px) {
  .card.small-card .card-body .foot .right-side a.custom-arrow {
    width: inherit;
    height: inherit;
  }
  .card.small-card .card-body .foot .right-side a.custom-arrow::before, .card.small-card .card-body .foot .right-side a.custom-arrow::after {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .card.small-card.small-card-long {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card.small-card.small-card-long .card-before {
    width: 100%;
    height: 200px;
  }
}

@media screen and (min-width: 991.98px) {
  .card.small-card.small-card-long .card-body .field-title,
  .card.small-card.small-card-long .card-body .keywords-container,
  .card.small-card.small-card-long .card-body .introduction {
    padding-right: 24px;
  }
}

.card.small-card.no-image .card-body .introduction {
  margin-bottom: 28px;
}

.card.small-card.no-image .card-body .introduction .preview-text {
  margin-bottom: 0px;
}

.card.small-card.portrait-image .card-body .introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.card.small-card.portrait-image .card-body .introduction .preview-text {
  width: 55%;
}

.card.small-card.portrait-image .card-body .introduction .field-image {
  width: 45%;
  padding-right: 16px;
  padding-top: 6px;
  height: 230px;
}

.card.small-card.portrait-image .card-body .introduction .field-image img {
  -o-object-position: top;
  object-position: top;
}

.card.small-card.less-content .card-type {
  margin-bottom: 20px;
}

.card.small-card.less-content .card-body .field-title,
.card.small-card.less-content .card-body .keywords-container,
.card.small-card.less-content .card-body .author,
.card.small-card.less-content .card-body .release-details,
.card.small-card.less-content .card-body .introduction .preview-text {
  margin-bottom: 0px;
}

.card.small-card.less-content .card-body .introduction .preview-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 991.98px) {
  .card.small-card.less-content .card-body .introduction .preview-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.card.small-card.less-content .card-body .foot {
  min-height: inherit;
}

.card.small-card.full-width .card-heading .card-type-title {
  font-size: 28px;
  line-height: 40px;
}

@media screen and (max-width: 767.98px) {
  .card.small-card.full-width .card-heading .card-type-title {
    font-size: 20px;
    line-height: 33px;
  }
}

.card.small-card.full-width .field-image {
  overflow: hidden;
  width: 40%;
  height: 417px;
  max-height: inherit;
  padding-top: inherit;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  padding-left: 24px;
  padding-bottom: 24px;
}

.card.small-card.full-width .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
  height: 100%;
  width: 100%;
  position: inherit;
  top: inherit;
}

@media screen and (max-width: 767.98px) {
  .card.small-card.full-width .field-image {
    width: 100%;
    height: auto;
    padding-right: 24px;
    padding-top: 24px;
    max-height: 215px;
  }
}

.card.small-card.full-width .card-body {
  width: 60%;
}

.card.small-card.full-width .card-body .field-title:not(.keyword) > * {
  min-height: unset !important;
}

@media screen and (min-width: 991.98px) {
  .card.small-card.full-width .card-body .field-title:not(.keyword) > * {
    font-size: 36px;
    line-height: 36px;
  }
}

.card.small-card.full-width .card-body .introduction .preview-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.card.small-card.full-width .card-body .foot .right-side a {
  font-size: 16px;
  line-height: 27px;
}

.card.small-card.full-width.next-event-big .field-image {
  padding-top: 24px;
  max-width: 320px;
}

.card.small-card.full-width.next-event-big .field-image img {
  -o-object-position: top left;
  object-position: top left;
}

.card.small-card.full-width.next-event-big .card-body {
  height: unset;
  width: unset;
}

@media screen and (max-width: 767.98px) {
  .card.small-card.full-width.next-event-big {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.card.small-card.mobile-list-slider {
  height: auto;
  position: relative;
  padding: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  box-shadow: 0 5px 5px 0 rgba(51, 59, 69, 0.2);
}

.card.small-card.mobile-list-slider:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 90%;
  height: 1px;
  background-color: #F9F9F9;
  margin: auto;
}

.card.small-card.mobile-list-slider .field-image {
  width: 20%;
  height: 100%;
}

.card.small-card.mobile-list-slider .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
  width: 100%;
  height: 70px;
}

.card.small-card.mobile-list-slider .right-side {
  width: 80%;
  padding-right: 16px;
  margin-left: 16px;
}

.card.small-card.mobile-list-slider .right-side .field-title {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 0px;
  min-height: 54px;
}

.card.small-card.mobile-list-slider .right-side .field-title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card.small-card.mobile-list-slider .right-side .author,
.card.small-card.mobile-list-slider .right-side .field-author {
  margin-bottom: 4px;
  min-height: 23px;
}

.card.small-card.mobile-list-slider > .right-side:first-child {
  width: 100%;
  margin-left: 0px;
}

.card.small-card.mobile-list-slider .custom-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0%, -50%) scale(0.6);
  -ms-transform: translate(0%, -50%) scale(0.6);
  transform: translate(0%, -50%) scale(0.6);
}

.card.small-card.hidden-heading .card-body .filter-type {
  display: none;
}

.card.small-card.tools-type .card-before .icon-container .field-image img,
.card.small-card.tools-type .card-before .image-container .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
}

.card.reunion-card .card-body .reunion-container {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
}

.card.reunion-card .card-body .reunion-container::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: -webkit-calc(100% + 48px);
  width: calc(100% + 48px);
  height: -webkit-calc(100% + 24px);
  height: calc(100% + 24px);
  background: #F9F9F9;
  border-bottom: 3px solid rgba(0, 0, 0, 0.03);
  z-index: 0;
}

.card.reunion-card .card-body .reunion-container .reunion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: -webkit-calc(100% - $default-blocs-margin * 2);
  max-width: calc(100% - $default-blocs-margin * 2);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0 5px 10px 0 rgba(51, 59, 69, 0.25);
  margin-bottom: 24px;
  margin-left: 24px;
  margin-right: 24px;
  padding: 24px;
  border-radius: 4px;
  border-bottom-left-radius: 0px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper {
    margin-left: 0px;
    margin-right: 0px;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    box-shadow: 0 2px 10px 0 rgba(88, 102, 129, 0.1);
    margin-bottom: 32px;
    max-width: 100%;
  }
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .field-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 24px;
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .field-image {
    width: 25px;
    height: 25px;
    margin-right: 16px;
  }
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .field-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  max-width: -webkit-calc(100% - (90px + $default-blocs-margin * 2));
  max-width: calc(100% - (90px + $default-blocs-margin * 2));
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations {
    max-width: -webkit-calc(100% - (25px + $default-blocs-margin));
    max-width: calc(100% - (25px + $default-blocs-margin));
  }
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .reunion-date {
  font-weight: 700;
  margin-bottom: 4px;
  color: #86929D;
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .reunion-date {
    font-size: 14px;
    line-height: 16px;
  }
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .reunion-date .date-text,
.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .reunion-date .date {
  display: inline-block;
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .reunion-date .date-text {
  margin-right: 4px;
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .field-title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 4px;
  word-break: break-word;
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .field-title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: auto;
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .field-title {
    font-size: 20px;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper .reunion-informations .reunion-location {
    display: none;
  }
}

.card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 0px 0px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 0px;
  -webkit-filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.1));
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .reunion-container .reunion-content .reunion-card-wrapper::after {
    border-width: 10px 10px 0px 0px;
    -webkit-filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.025));
    filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.025));
  }
}

.card.reunion-card .card-body .reunion-container::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 4px solid #317FCB;
  border-radius: 50%;
  background-color: #F9F9F9;
  position: absolute;
  position: absolute;
  bottom: -12px;
  left: 0px;
}

.card.reunion-card .card-body .introduction {
  margin-bottom: 28px;
}

.card.reunion-card .card-body .introduction .preview-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 991.98px) {
  .card.reunion-card .card-body .introduction .preview-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

.card.reunion-card.small-card.col-12 {
  padding: 0;
}

.card.tools-type .card-before {
  position: relative;
  background-color: #FFFBF2;
}

.card.tools-type .card-before .card-type {
  position: absolute;
  right: 24px;
  z-index: 1;
}

.card.tools-type .card-before .card-type .type::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF9200), to(#F56806));
  background: -webkit-linear-gradient(top, #FF9200 0%, #F56806 100%);
  background: linear-gradient(180deg, #FF9200 0%, #F56806 100%);
}

.card.tools-type .card-before .icon-container {
  position: relative;
  z-index: 0;
}

.card.tools-type .card-before .icon-container .icon::before {
  width: 100%;
  height: 100%;
}

.card.tools-type .card-body .card-type .type::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF9200), to(#F56806));
  background: -webkit-linear-gradient(top, #FF9200 0%, #F56806 100%);
  background: linear-gradient(180deg, #FF9200 0%, #F56806 100%);
}

.card.tools-type .card-body .field-title:not(li) a {
  min-height: inherit;
}

.card.tools-type .card-body .foot .right-side a {
  color: #FF9200;
}

.card.tools-type .card-body .foot .right-side a:hover {
  color: #FED483;
}

.card.tools-type .card-body .foot .right-side a:active {
  color: #F56806;
}

.card.tools-type.icon-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card.tools-type.icon-top .card-before {
  width: 100%;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
}

.card.tools-type.icon-top .card-before .icon .field-image {
  width: 100%;
  height: 100%;
}

.card.tools-type.icon-top .card-before .icon .field-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.card.tools-type.smaller .card-before .icon-container .icon .field-image img {
  -o-object-fit: contain;
  object-fit: contain;
}

.card.tools-type.smaller .card-body {
  -ms-flex-item-align: self-start;
  -ms-grid-row-align: self-start;
  align-self: self-start;
}

.card.tools-type.smaller .card-body .card-type {
  margin-bottom: 4px;
}

.card.tools-type.smaller .card-body .keywords-list {
  font-size: 12px;
  line-height: 16px;
}

.card.tools-type.smaller .card-body .keywords-list .keyword a {
  margin-right: 12px;
}

.card.tools-type.smaller .card-body .keywords-list .keyword a::after {
  right: -8px;
}

.card.tools-type.smaller .card-body .field-title:not(li):not(b):not(.h3) a {
  min-height: unset;
}

.card.tools-type.smaller .card-body .foot {
  margin-top: auto;
  min-height: unset;
}

.card.fede-card .card-before {
  position: relative;
}

.card.fede-card .card-before .card-type {
  position: absolute;
  right: 24px;
  z-index: 1;
}

.card.fede-card .card-before .image-container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 0;
}

.card.fede-card .card-before .image-container .field-image {
  width: 100%;
  height: 100%;
}

.card.fede-card .card-before .image-container .field-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card.fede-card .card-body .field-title:not(li) a {
  min-height: inherit !important;
}

.card.fede-card.icon-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card.fede-card.icon-top .card-before {
  width: 100%;
  height: 200px;
}

.card.fede-card.icon-top .card-before .icon .field-image {
  width: 100%;
  height: 100%;
}

.card.fede-card.icon-top .card-before .icon .field-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.card.magazine-card .card-body {
  text-align: center;
}

.card.magazine-card .card-body .introduction {
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
}

.card.magazine-card .card-body .introduction .field-card-type {
  margin-right: 8px;
}

.card.magazine-card .card-body .introduction .field-type {
  font-weight: 400;
}

.card.magazine-card .card-body .field-image,
.card.magazine-card .card-body .field-couverture {
  height: 215px;
  width: 100%;
  margin-bottom: 28px;
}

.card.magazine-card .card-body .field-image img,
.card.magazine-card .card-body .field-couverture img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.card.magazine-card .card-body .field-type {
  width: 100%;
  line-height: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}

.card.magazine-card .card-body .field-title {
  width: 100%;
  line-height: 20px;
  margin-bottom: 4px;
}

.card.magazine-card .card-body .field-title a {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}

.card.magazine-card .card-body .information {
  width: 100%;
}

.card.magazine-card .card-body .information .field-number {
  display: inline-block;
}

.card.magazine-card .card-body .information .field-number::after {
  content: "";
  width: 1px;
  height: 11px;
  background-color: #434B52;
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
}

.card.magazine-card .card-body .information .field-date,
.card.magazine-card .card-body .information .field-created {
  display: inline-block;
  text-transform: capitalize;
}

.card.magazine-card .card-body .foot .left-side a,
.card.magazine-card .card-body .foot .right-side a {
  font-size: 14px;
  line-height: 23px;
}

.card.guide-card .component-content > a {
  width: 100%;
  text-decoration: none;
}

.card.guide-card .card-body {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card.guide-card .card-body .file-icons {
  width: 145px;
  height: 145px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  position: relative;
}

.card.guide-card .card-body .file-icons span {
  box-shadow: 0 5px 10px 0 rgba(51, 59, 69, 0.25);
  border-radius: 8px;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  position: relative;
}

.card.guide-card .card-body .file-icons span::before {
  content: "";
  position: absolute;
  background-image: url(../images/icons/doc-main-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.card.guide-card .card-body .file-icons span:hover::before {
  background-image: url(../images/icons/doc-lighter-green.svg);
}

.card.guide-card .card-body .file-icons span:active::before {
  background-image: url(../images/icons/doc-darker-green.svg);
}

.card.guide-card .card-body .file-icons span::after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/download-main-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.card.guide-card .card-body .file-icons span:hover::after {
  background-image: url(../images/icons/download-lighter-green.svg);
}

.card.guide-card .card-body .file-icons span:active::after {
  background-image: url(../images/icons/download-darker-green.svg);
}

.card.guide-card .card-body .file-icons span::after {
  content: "";
  position: absolute;
  background-color: #FFF;
  border-radius: 50px;
  height: 32px;
  width: 32px;
  bottom: -32px;
  top: inherit;
}

.card.guide-card .card-body .file-icons span::before {
  width: 70px;
  height: 70px;
}

.card.guide-card .card-body .file-icons span:not(:empty) {
  border-radius: 0px;
  box-shadow: none;
  background-color: transparent;
}

.card.guide-card .card-body .file-icons span:not(:empty) img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.card.guide-card .card-body .file-icons span:not(:empty)::before {
  display: none;
}

.card.guide-card .card-body .file-icons.disabled span {
  pointer-events: none;
}

.card.guide-card .card-body .file-icons.disabled span::before, .card.guide-card .card-body .file-icons.disabled span::after {
  opacity: 0.5;
  pointer-events: none;
}

.card.guide-card .card-body .field-title {
  margin-bottom: 0px;
}

.card.guide-card .card-body .field-title a {
  text-decoration: none;
  font-weight: 700;
}

.card.guide-card .card-body .field-title span {
  text-decoration: none;
  font-weight: 700;
  color: #434B52;
}

.card.guide-card .card-body .section-size-type {
  color: #434B52;
}

.card.guide-card .card-body .section-size-type .field-extension {
  display: inline-block;
  margin-right: 8px;
  text-transform: uppercase;
}

.card.guide-card .card-body .section-size-type .field-extension::before {
  content: "[";
}

.card.guide-card .card-body .section-size-type .field-size {
  display: inline-block;
}

.card.guide-card .card-body .section-size-type .field-size::after {
  content: "]";
}
