/* COLORS */
/** shades of grey **/
/** basics colors **/
/** backgrounds colors **/
/** texts colors **/
/** overlays colors **/
/** specifics colors **/
/* overrides materializecss color */
/* FONTS */
/*** MARGINS AND PADDINGS ***/
/**** BORDER RADIUS ****/
/**** CUSTOM ****/
/**** SHADOWS ****/
/***** MEDIA QUERIES ******/
/*** font color depending on bg color ***/
/*
@mixin gradientSass () {
  background-color: rgba(252,240,244,1);
  background: @include filter-gradient(#fcf0f4, #6b418f, horizontal);
  // IE9 SVG, needs conditional override of 'filter' to 'none'
  $experimental-support-for-svg: true;
  background: @include background-image(linear-gradient(left, rgba(252,240,244,1) 0%, rgba(252,240,244,1) 14%, rgba(217,193,219,1) 14%, rgba(217,193,219,1) 28%, rgba(198,168,204,1) 28%, rgba(198,168,204,1) 42%, rgba(183,147,191,1) 42%, rgba(183,147,191,1) 56%, rgba(151,120,179,1) 56%, rgba(151,120,179,1) 70%, rgba(130,89,155,1) 70%, rgba(130,89,155,1) 85%, rgba(107,65,143,1) 85%, rgba(107,65,143,1) 100%));
}
*/
.transactions {
  overflow: hidden;
}
.transactions > .content {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .transactions > .content {
    padding: 48px 0 !important;
  }
}
.transactions > .content .h1 {
  max-width: 90%;
  width: 100%;
  margin: auto;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .transactions > .content .h1 {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .transactions > .content .h1 {
    padding: 0 20px;
    text-align: left;
  }
}
.transactions > .content .sub-title {
  max-width: 80%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 36px;
  padding-bottom: 36px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .transactions > .content .sub-title {
    padding: 0 20px 24px;
    margin: 0;
    text-align: left;
    max-width: 100%;
    line-height: 30px;
  }
}
.transactions > .content .filters {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .transactions > .content .filters {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .transactions > .content .filters {
    flex-direction: column;
    border-top: 1px solid #D6DBDE;
    border-bottom: 1px solid #D6DBDE;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 960px) {
  .transactions > .content .filters .select-container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .transactions > .content .filters .select-container {
    display: none;
    padding-top: 12px;
  }
  .transactions > .content .filters .select-container .select-wrapper {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .transactions > .content .filters .select-container .select-wrapper:last-child {
    margin-bottom: 0;
  }
  .transactions > .content .filters .select-container.open {
    display: flex;
  }
}
.transactions > .content .filters .select-container form {
  display: flex;
}
.transactions > .content .filters .select-container form .js-form-type-select {
  margin-right: 16px;
  min-width: 200px;
}
.transactions > .content .filters .select-container form .js-form-type-select.js-form-item-date {
  min-width: 170px;
}
.transactions > .content .filters .select-container form .js-form-type-select:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .transactions > .content .filters .select-container form .js-form-type-select {
    flex-grow: 1;
  }
}
@media screen and (max-width: 767px) {
  .transactions > .content .filters .select-container form .js-form-type-select {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .transactions > .content .filters .select-container form .js-form-type-select:last-child {
    margin-right: 0;
  }
}
.transactions > .content .filters .select-container form .js-form-type-select label {
  display: none;
}
@media screen and (max-width: 767px) {
  .transactions > .content .filters .select-container form {
    flex-direction: column;
    width: 100%;
  }
}
.transactions > .content .filters .label {
  font-size: 15px;
  color: #434F57;
  margin-right: 16px;
}
@media screen and (max-width: 960px) {
  .transactions > .content .filters .label {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .transactions > .content .filters .label {
    width: 100%;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    font-family: "BNPPSans", "Open Sans";
    font-weight: bold;
    color: #1C2D37;
    position: relative;
  }
  .transactions > .content .filters .label > .caret {
    position: absolute;
    top: 0;
    right: 0;
  }
  .transactions > .content .filters .label > .caret:before {
    font-size: 24px;
    transition-duration: 0.4s;
  }
  .transactions > .content .filters .label.open > .caret:before {
    transform: rotate(180deg);
  }
}
.transactions .pre-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.transactions .pre-content .transation-number {
  font-family: "BNPPSans", "Open Sans";
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .transactions .pre-content {
    display: none;
  }
}
@media screen and (min-width: 1175px) {
  .transactions .pre-content .slider-nav-top--nav {
    padding-right: 12px;
  }
}
.transactions .transactions-slider {
  height: 100%;
}
@media screen and (min-width: 1175px) {
  .transactions .transactions-slider {
    margin-left: -12px;
  }
}
@media screen and (max-width: 767px) {
  .transactions .transactions-slider .slick-list {
    padding-right: 50px;
  }
}
.transactions .transactions-slider .slick-slide {
  margin-right: 0;
  margin-left: 0;
  min-height: 100%;
}
@media screen and (max-width: 1024px) {
  .transactions .transactions-slider .slick-slide {
    margin-right: -12px;
    margin-left: -12px;
  }
}
@media screen and (max-width: 767px) {
  .transactions .transactions-slider .slick-slide {
    margin-right: 0;
    margin-left: 0;
    padding-left: 20px;
  }
}
.transactions .transactions-slider .slick-slide > div {
  display: flex;
}
@media screen and (max-width: 767px) {
  .transactions .transactions-slider .slick-slide > div {
    height: 100%;
  }
}
.transactions .transactions-slider .slick-slide > div:first-child {
  margin-bottom: 24px;
}
.transactions .transactions-slider:not(.slick-initialized) {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  .transactions .transactions-slider:not(.slick-initialized) {
    flex-wrap: unset;
    width: 170%;
  }
}
.transactions .transactions-slider:not(.slick-initialized) > .transaction {
  width: 25%;
  margin-bottom: 24px;
}
.transactions .transactions-slider:not(.slick-initialized) > .transaction:nth-child(n+9) {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .transactions .transactions-slider:not(.slick-initialized) > .transaction {
    width: 50%;
  }
  .transactions .transactions-slider:not(.slick-initialized) > .transaction:nth-child(n+5) {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .transactions .transactions-slider:not(.slick-initialized) > .transaction {
    width: 100%;
    margin-left: 20px;
  }
  .transactions .transactions-slider:not(.slick-initialized) > .transaction:nth-child(n+3) {
    display: none !important;
  }
}
.transactions .transaction {
  padding-right: 12px;
  padding-left: 12px;
  text-align: left;
  height: inherit;
}
.transactions .transaction.coworking .first-panel__header {
  min-height: 270px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.transactions .transaction.coworking .first-panel__header img {
  -o-object-fit: contain;
     object-fit: contain;
}
.transactions .transaction.coworking .first-panel__content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1rem 1.5rem;
  gap: 1rem;
}
.transactions .transaction.coworking .first-panel__content .opt-cta {
  margin-top: auto !important;
  margin-bottom: 0;
  padding: 1rem 0rem 0.5rem 0rem;
}
.transactions .transaction.coworking .first-panel__content .opt-cta a {
  color: #1C2D37;
  border: 2px solid #1C2D37;
  background: #FFF;
  padding: 0.5rem 0.75rem;
  font-size: 14px !important;
  font-family: "BNPPSans", "Open Sans" !important;
  font-weight: bold !important;
}
.transactions .transaction.coworking .first-panel__content .opt-cta a:hover, .transactions .transaction.coworking .first-panel__content .opt-cta a:active, .transactions .transaction.coworking .first-panel__content .opt-cta a:focus {
  background: #1C2D37;
  color: #FFF;
}
.transactions .transaction.coworking .first-panel__footer .link {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .transactions .transaction {
    padding-right: 0;
    padding-left: 0;
  }
}
.transactions .transaction > .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  position: relative;
}
.transactions .transaction .first-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFF;
}
.transactions .transaction .first-panel__header {
  width: 100%;
  height: 214px;
  min-height: 214px;
}
.transactions .transaction .first-panel__content {
  flex-grow: 1;
  padding: 24px 24px 18px 24px;
}
.transactions .transaction .first-panel__content .label_1 {
  font-family: "BNPPSans-Light", "Open Sans";
  font-size: 15px;
  line-height: 24px;
  padding-bottom: 8px;
}
.transactions .transaction .first-panel__content h3 {
  padding-bottom: 8px;
  margin: 0;
}
.transactions .transaction .first-panel__content .label_2 {
  font-size: 16px;
  line-height: 26px;
  color: #727579;
  padding-bottom: 13px;
}
.transactions .transaction .first-panel__content ul {
  margin: 0;
}
.transactions .transaction .first-panel__content ul li {
  padding-left: 13px;
  position: relative;
}
.transactions .transaction .first-panel__content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #1C2D37;
}
.transactions .transaction .first-panel__footer {
  border-top: 1px solid #EBEDEF;
  padding: 20px 0 24px;
  margin: 0 24px;
}
.transactions .transaction .first-panel__footer .label_3,
.transactions .transaction .first-panel__footer .label_4 {
  font-size: 16px;
  line-height: 24px;
}
.transactions .transaction .first-panel__footer .link {
  padding-top: 20px;
}
.transactions .transaction .first-panel__footer .link button {
  background: none;
  color: #008859;
  padding: 0;
  font-size: 14px !important;
}
@media screen and (min-width: 1175px) {
  .transactions .transaction .first-panel__footer .link button:hover {
    color: #04AF6E !important;
  }
  .transactions .transaction .first-panel__footer .link button:hover span {
    color: #04AF6E !important;
  }
}
.transactions .transaction .first-panel__footer .link button:focus, .transactions .transaction .first-panel__footer .link button:active {
  color: #04AF6E !important;
}
.transactions .transaction .first-panel__footer .link button:focus .span, .transactions .transaction .first-panel__footer .link button:active .span {
  color: #04AF6E !important;
}
.transactions .transaction .first-panel__footer .link button span {
  margin-left: 8px;
}
.transactions .transaction .second-panel {
  background: #FFF;
  height: 100%;
  width: 100%;
  padding: 0 24px 24px 24px;
  overflow-y: auto;
  overflow-x: hidden;
}
.transactions .transaction .second-panel.coworking {
  padding: 0 1.5rem;
}
.transactions .transaction .second-panel.coworking .second-panel_container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.transactions .transaction .second-panel.coworking .second-panel_container .gallery-btn-container {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto 0 0 0;
  background: white;
  padding: 20px 0 24.5px;
  z-index: 1;
  text-align: center;
  border-top: 1px solid #EBEDEF;
}
.transactions .transaction .second-panel .close {
  text-align: right;
  position: sticky;
  right: 16px;
  top: 0;
  padding-top: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  background: white;
}
.transactions .transaction .second-panel .close:before {
  font-size: 24px;
  margin: 0;
}
.transactions .transaction .second-panel .text {
  padding-bottom: 24px;
}
.transactions .transaction .second-panel .text p {
  font-size: 16px;
  line-height: 24px;
}
.transactions .transaction .second-panel ul {
  margin: 0;
}
.transactions .transaction .second-panel ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 13px;
  font-size: 16px;
}
.transactions .transaction .second-panel ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #1C2D37;
  left: 0;
  margin-top: 10px;
}
.transactions .transaction .second-panel .other {
  position: relative;
  width: 100%;
  text-align: left;
  padding-left: 13px;
}
.transactions .transaction .second-panel .other span {
  font-size: 16px;
}
.transactions .transaction .second-panel .other:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #1C2D37;
  margin-top: 10px;
  left: 0;
}
.transactions .transaction:not(:nth-child(4n)) .second-panel {
  position: absolute;
  display: none;
  z-index: 2;
  width: calc(100% + 24px);
  left: 100%;
}
.transactions .transaction:nth-child(4n) .first-panel {
  width: 100%;
}
.transactions .transaction:nth-child(4n) .first-panel.open {
  position: absolute;
  z-index: 1;
}
.transactions .transaction:nth-child(4n) .second-panel {
  display: none;
}
.transactions .transaction:nth-child(4n) .first-panel.open + .second-panel {
  display: block;
  width: calc(100% + 24px);
  margin-left: -24px;
  white-space: unset;
}
@media screen and (max-width: 1024px) {
  .transactions .transaction:not(:nth-child(4n)) .second-panel {
    position: inherit;
    display: inherit;
    z-index: inherit;
    width: inherit;
    left: inherit;
  }
  .transactions .transaction:nth-child(4n) .first-panel {
    width: inherit;
  }
  .transactions .transaction:nth-child(4n) .first-panel.open {
    width: inherit;
    position: inherit;
    z-index: inherit;
  }
  .transactions .transaction:nth-child(4n) .second-panel {
    display: inherit;
  }
  .transactions .transaction:nth-child(4n) .first-panel.open + .second-panel {
    display: inherit;
  }
  .transactions .transaction:not(:nth-child(2n)) .second-panel {
    position: absolute;
    display: none;
    z-index: 2;
    width: calc(100% + 24px);
    left: 100%;
  }
  .transactions .transaction:nth-child(2n) .first-panel {
    width: 100%;
  }
  .transactions .transaction:nth-child(2n) .first-panel.open {
    width: calc(100% + 24px);
    position: absolute;
    padding-right: 24px;
    z-index: 1;
  }
  .transactions .transaction:nth-child(2n) .second-panel {
    display: none;
  }
  .transactions .transaction:nth-child(2n) .first-panel.open + .second-panel {
    display: block;
  }
}
.transactions .cta {
  margin-top: 40px !important;
  padding: 0 20px;
}
.transactions .cta a {
  border: solid 2px #008859 !important;
  color: #008859 !important;
  height: 45px !important;
  font-size: 17px !important;
  line-height: 26px !important;
  padding: 10px 18px !important;
}
.transactions .cta a:hover, .transactions .cta a:active, .transactions .cta a:focus {
  background: #008859 !important;
  color: #FFF !important;
}
@media screen and (max-width: 767px) {
  .transactions .cta a {
    height: 47px !important;
    width: 100%;
  }
}

#popin-transactions {
  overflow: hidden;
}
#popin-transactions .sidenav-header .title {
  width: 100%;
  text-align: left;
  padding-right: 30px;
}
#popin-transactions .sidenav-header .close {
  top: 20px;
}
#popin-transactions .sidenav-content {
  padding: 0;
  height: 100% !important;
  overflow: hidden;
}
#popin-transactions .sidenav-content .transaction {
  display: none;
}
#popin-transactions .sidenav-content .transaction .first-panel {
  display: none;
}
#popin-transactions .sidenav-content .transaction .second-panel {
  display: flex !important;
  flex-direction: column;
  left: 0 !important;
  padding: 20px 20px 60px 20px !important;
  width: 100%;
  height: auto;
}
#popin-transactions .sidenav-content .transaction .second-panel .text {
  white-space: pre-wrap;
}
#popin-transactions .sidenav-content .transaction .second-panel .text p {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 24px;
}
#popin-transactions .sidenav-content .transaction .second-panel ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 0 60px 0;
}
#popin-transactions .sidenav-content .transaction .second-panel ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 13px;
  text-align: left;
  line-height: 24px;
}
#popin-transactions .sidenav-content .transaction .second-panel ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background: #1C2D37;
  margin-top: 10px;
}
#popin-transactions .sidenav-content .transaction .second-panel .other {
  width: 100%;
  text-align: left;
  padding-left: 13px;
  position: relative;
  line-height: 24px;
}
#popin-transactions .sidenav-content .transaction .second-panel .other:before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background: #1C2D37;
  margin-top: 10px;
}
/*# sourceMappingURL=maps/slice-transactions.css.map */
