/**
 * @file
 * Modules styles
 *
 * Modules are reusables CSS objects (components).
 * They can be utilized
 */

/**
 * Listing actualités
 */

.listing-actu {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
  margin: 0;
}
.actu-item {
  max-width: 400px;
  padding: 1em;
  margin: 0 auto 1.5em;
  border-radius: 3px;
  box-shadow: 0 0 .5rem rgba(0,0,0,.1);
}
.actu-item__image {
  height: 114px;
  width: 114px;
  margin: 0 auto;
  text-align: center;  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.actu-item__image a {
  display: block;
  border: 5px solid #C4C4C4;
  border-radius: 50%;
  overflow: hidden;
  cursor: zoom-in;
}
.actu-item__image img {
  max-height: 100%;
  max-height: 114px;
  width: auto;
}
.actu-item__title {
  text-align: left;
  margin: 0.5rem 0 0;
  font-size: 1.1em;
  color: #006A44;
  font-weight: 800;
}
.actu-item__date {
  color: #707070;
  display: inline-block;
  font-size: 0.85em;
  padding: 0.25em 0;
}
.actu-item__content {
  margin: 0.5rem 0;
  color: #707070;
}
.actu-item__content p {
  margin: 0;
}


/**
 * Product list
 */

.link-button a,
input.link-button {
  display: inline-block;
  color: #006A44;
  border: 2px solid #006A44;
  text-transform: uppercase;
  padding: 0.5em 1em;
  font-size: 0.85em;
  transition: all 0.25s;
  font-weight: 800;
  background-color: #fff;
  border-radius: 3px;
}
.link-button a:hover,
input.link-button:hover {
  color: #fff;
  background-color: #006A44;
}
.link-button--alternative-color a {
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
}
.link-button--alternative-color a:hover {
  color: #006A44;
  background-color: #fff;
}
.actu-item__more {
  display: none;
}
.view-listing-actualites .more-link {
  text-align: center;
}
.view-listing-actualites .more-link a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid #006A44;
  border-radius: 2px;
  transition: all ease .15s;
}
.view-listing-actualites .more-link a:hover {
  color: #FFF;
  background-color: #006A44;
}
@media screen and (min-width: 1000px) {
  .actu-item {
    width: 100%;
    max-width: 1181px;
  }
  .actu-item__title {
    font-size: 1.5em;
    line-height: 1.1;
    margin: 1rem 0 0;
  }
  .actu-item__date {
    font-size: .959em;
  }
  .link-button a,
  input.link-button {
    font-size: 1em;
  }
}
@media all and (min-width: 1100px){
  .actu-item {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    flex-direction: row;
    justify-content: space-evenly;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  .actu-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 14px;
    background-color: #006A44;
  }
  .actu-item__part-1 {
    width: calc(20% - 1rem);
  }
  .actu-item__part-2,
  .actu-item__part-3 {
    width: calc(40% - 1rem);
  }
  .actu-item--long .actu-item__part-3-inner {
    position: relative;
    height: 130px;
    overflow: hidden;
  }
  .actu-item__part-3-inner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0;
  }
  .actu-item--long .actu-item__part-3-inner::after {
    height: 100px;
    transition: all ease .15s;
    background-image: linear-gradient(to top,
                                    rgba(255,255,255,1) 0%,
                                    rgba(255,255,255,1) 40%,
                                    rgba(255,255,255,0) 100%);
  }
  .actu-item__more {
    opacity: 0;
  }
  .actu-item--long .actu-item__more {
    position: relative;
    display: inline-block;
    margin-top: -2rem;
    font-weight: bold;
    color: #006A44;
    background: transparent;
    border: none;
    vertical-align: middle;
    opacity: 1;
    transition: all ease .15s;
  }
  .actu-item--long .actu-item__more:hover {
    color: #030030;
  }
  .actu-item--long .actu-item__more::before {
    content: "+";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    margin-right: 0.25rem;
    text-align: center;
    line-height: 1;
    color: #FFF;
    background-color: #006A44;
    border-radius: 50%;
  }
}
@media all and (min-width: 1300px){
  .actu-item {
    padding: 1.5em 1em;
    margin-bottom: 3rem;
  }
  .actu-item__part-2 {
    width: calc(30% - 1rem);
  }
  .actu-item__part-3 {
    position: relative;
    width: calc(50% - 1rem);
  }
}


/**
 * Push list
 */

.push__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.push__item {
  padding: 1em 0 2em;
  width: 100%;
  text-align: center;
}
.push__item p {
  margin: 0;
}
.push-item__title {
  margin-top: 1rem;
  font-weight: 800;
  font-size: 1.25em;
  color: #006A44;
}
@media screen and (min-width:600px) {
  .push__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .push__item {
    width: 48%;
  }
}
@media screen and (min-width:900px) {
  .push__item {
    width: 23%;
  }
}
@media screen and (min-width:1024px) {
  .push-item__content {
    font-size: 1.25em;
  }
  .push-item__title {
    font-size: 1.5em;
  }
}


/**
 * Last products
 */

.block-last-product {
  padding-top: 2em;
  margin-bottom: 2rem;
}
.listing-last-product {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
}
.block-last-product .more-link {
  text-align: center;
}
.block-last-product .more-link a {
  display: inline-block;
  max-width: 280px;
  padding: 0.5rem 1rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid #006A44;
  border-radius: 2px;
  transition: all ease .15s;
}
.block-last-product .more-link a:hover {
  color: #FFF;
  background-color: #006A44;
}
.last-product-item {
  width: 100%;
  padding: 1em 0;
}
.last-product-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.last-product-item__content {
  background-color: #e1e1e1;
  padding: 1em;
  width: 100%;
}
.last-product-item__title {
  margin: 0 0 0.25em;
  padding: 0;
  font-weight: 700;
  color: #000;
  font-size: 1.5em;
  line-height: 1.1;
}
.last-product-item__text p {
  margin: 0;
}
.last-product-item__image {
  width: 100%;
}
.last-product-item__link {
  margin: 1em 0 0;
}
.slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  list-style: none;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25em;
}
.slick-dots li button {
  border: 1px solid #333333;
  background-color: transparent;
  width: 15px;
  height: 15px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  text-indent: -999em;
  border-radius: 50%;
}
.slick-dots .slick-active button {
  background-color: #333333;
}
.slick-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: -999em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slick-prev {
  left: 0em;
  background-image: url('../images/slider-arrow-left.svg');
}
.slick-next {
  right: 0em;
  background-image: url('../images/slider-arrow-right.svg');
}
@media screen and (min-width:450px) {
  .last-product-item__inner {
    flex-direction: row;
  }
  .last-product-item__image {
    text-align: right;
    width: 40%;
    transform: translateX(2em);
  }
  .last-product-item__image img {
    display: inline-block;
  }
  .last-product-item__content {
    padding: 2em 1em 2em 3em;
    width: 60%;
  }
}
@media screen and (min-width:768px) {
  .listing-last-product {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 3em 3em;
  }
  .listing-last-product .last-product-item {
    padding: 0 1em;
    font-size: 0.8em;
    display: inline-flex;
    align-self: center;
    float: none;
  }
  .last-product-item__text {
    font-size: 1.1em;
  }
  .block-last-product .more-link {
    margin: 2rem 0 3rem;
  }
}
@media screen and (min-width:1024px) {
  .listing-last-product .last-product-item {
    font-size: 1em;
  }
  .last-product-item__content {
    padding: 3em 2em 3em 4em;
  }
}
.double-texte {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.8em;
}
.double-texte-item {
  padding: 0 0 2em;
}
.double-texte-item__title {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  margin: 0;
}
.double-texte-item__text {
  font-size: 1.1em;
}
@media screen and (min-width:768px) {
  .double-texte {
    flex-direction: row;
  }
  .double-texte-item {
    width: 48%;
  }
}
@media screen and (min-width:1024px) {
  .double-texte {
    font-size: 1em;
  }
}
.video {
  text-align: center;
}
.featured {
  background-image: url('../images/featured-background.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  color: #fff;
  margin: 0 0 2em;
}
.featured-inner {
  display: flex;
  flex-direction: column;
}
.featured-content {
  padding: 2em 0;
}
.featured-step a {
  color: #FFF;
}
.featured-step a:hover {
  text-decoration: underline;
}
.featured-image {
  margin-top: 2rem;
}
.featured-title, .featured-subtitle {
  font-weight: 800;
}
.featured-title {
  padding: 0 0 1em;
}
.featured-title > * {
  margin: 0;
  line-height: 1.1;
  font-size: 2.5em;
  font-weight: 800;
}
.featured-subtitle p {
  line-height: 1;
  margin: 0;
  font-size: 1.5em;
}
.block--with-title h2 div {
  display: inline-block;
}
.featured-text {
  font-size: 1.25em;
  line-height: 1.25;
}
.file {
  background: none;
  padding: 0;
}
.featured-cta a {
  font-size: 1em;
}
@media screen and (min-width:600px) {
  .featured-inner {
    flex-direction: row;
    align-items: flex-start;
    padding: 2em 0;
  }
  .featured-image {
    display: block;
    width: 40%;
  }
  .featured-image div {
    text-align: right;
  }
  .featured-content {
    width: 60%;
    padding: 2em 3em 0;
    font-size: 0.8em;
  }
}
@media screen and (min-width:1024px) {
  .featured {
    margin: 0 0 10em;
    background-size: 55% 100%;
    background-position: top right;
  }
  .featured-image {
    width: 50%;
    transform: translateY(75px);
  }
  .featured-content {
    width: 50%;
    font-size: 1em;
  }
  .featured-content .featured-subtitle,
  .featured-content .featured-text {
    width: 80%;
  }
}
.block--with-title h2,
.block--with-title .heading-title__title, .block--title {
  font-weight: 800;
  color: #006A44;
  margin: 1em 0 1em 0;
  font-size: 1.75em;
  position: relative;
  line-height: 1;
  padding: 0 0 0 0.5em;
}
.block--with-title h2:before,
.block--with-title .heading-title__title:before,
.block--title:before {
  content: '';
  position: absolute;
  left: -999rem;
  top: 0;
  width: 999rem;
  background-image: url('../images/before-title.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  height: 100%;
}
@media screen and (min-width:768px) {
  .block--with-title h2,
  .block--with-title .heading-title__title, .block--title {
    margin-top: 2em;
    font-size: 2.75em;
  }
}


/**
 * Same product itm / list
 */

.product-item__cta a,
.product-item__cta span {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-top: 1px solid #A5A5A5;
  transition: all ease .15s;
}
.product-item__cta a:hover,
.product-item__cta span:hover {
  color: #FFF;
  background-color: #006A44;
}
.pager__item--last, .pager__item--first {
  display: none;
}
.pager__item {
  padding: 0 0.25em;
}
.pager__item a {
  color: #000;
}

.view-step-files {
  display: flex;
  flex-direction: column;
}
.liste-des-produits-block legend {
  width: 100%;
}
.liste-des-produits-block.multiple-filters .views-exposed-form::before {
  content: "Filters";
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1;
  color: #FFF;
  background-color: #006A44;
  border-radius: 3px 3px 0 0;
}
html[lang="fr"] .liste-des-produits-block.multiple-filters .views-exposed-form::before {
  content: "Filtres";
}

.liste-des-produits-block.multiple-filters fieldset:first-child .fieldset-wrapper {
  padding-top: 0;
  height: auto;
  overflow: hidden;
  border-bottom: none;
}

.liste-des-produits-block.multiple-filters .fieldset-legend {
  font-size: 1.1em;
  color: #006A44;
  background-color: #F8F8F8;
  border-top: 1px solid #D6D6D6;
}


@media screen and (min-width:450px) {

  .product-item__cta {
    margin-top: auto;
  }
}

@media screen and (min-width:768px) {
  .view-step-files {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
  }
}


.category-list {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.category-item {
  background-color: #E7E7E7;
  padding: 2rem 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
.category__title {
  font-size: 1.5em;
  line-height: 1.1;
}
.category__title a {
  color: #000;
  font-weight: 800;
}
.category__desc {
  font-size: 1.125em;
  margin: 0.5rem 0 0;
}
.category__image {
  margin: 1rem 0;
}
.category__link a {
  font-size: 1em;
}
.category-list p {
  margin: 0;
}
@media screen and (min-width:550px) {
  .category-list {
    flex-direction: row;
  }
  .category-item {
    width: calc(50% - 0.5rem);
    margin-right: 1rem;
  }
  .category-item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media screen and (min-width:1024px) {
  .category-item {
    width: calc(33.333% - 1rem);
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
  }
  .category-item:nth-child(2n+2) {
    margin-right: 1.5rem;
  }
  .category-item:nth-child(3n+3) {
    margin-right: 0rem;
  }
}

.flipping-book-iframe {
  width: 100%;
}
.breadcrumb {
  padding: 1rem 0;
}
.breadcrumb li,
.breadcrumb a {
  text-shadow: 0px 0px 5px white;
}

.breadcrumb a {
  color: #000;
  font-weight: 800;
}


.webform-submission-contact-form,
.user-login-form,
.user-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.user-login-form,
.user-form {
  gap: 16px;
}
.webform-submission-contact-form label,
.user-login-form label,
.user-form label {
  font-weight: bold;
}
.webform-submission-contact-form .form-text,
.webform-submission-contact-form textarea,
.webform-submission-contact-form .form-email,
.user-login-form .form-text,
.user-login-form textarea,
.user-login-form .form-email,
.user-form .form-text,
.user-form textarea,
.user-form .form-email {
  background: var(--color-white);
  border: 1px solid #CCCCCC;
  width: 100%;
  padding: 0.5rem;
  border-radius: 5px;
}

.webform-submission-contact-form .form-item,
.user-login-form .form-item,
.user-form .form-item {
  display: flex;
  flex-direction: column;
}

.user-login-form .form-item
.user-form .form-item {
  margin: 0;
}


.webform-submission-contact-form .form-actions,
.user-login-form .form-actions,
.user-form .form-actions {
  position: relative;
  display: inline-block;
}

.user-login-form .form-actions,
.user-form .form-actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#edit-actions.form-actions {
  position: relative !important;
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0;
  padding: 24px 0 10px;
}

.webform-submission-contact-form input[type="submit"],
.user-login-form input[type="submit"],
.user-form input[type="submit"],
form input[type="submit"]
{
  color: var(--color-white);
  background-color: transparent;
  border: none;
}

.webform-submission-contact-form .cta:hover input[type="submit"],
.user-form  .cta:hover input[type="submit"] ,
form .cta:hover input[type="submit"]{
  color: var(--color-secondary--1);
}





@media screen and (min-width: 700px) {
  .webform-submission-contact-form  {
    display: flex;
    flex-direction: row;
    margin: 0 0 2rem;
    margin-top: 2rem;
  }

  .user-login-form .form-actions,
  .user-form .form-actions {
    flex-direction: row;
    align-items: center;
  }

  .webform-submission-contact-form .form-wrapper:nth-child(1),
  .user-login-form .form-wrapper:nth-child(1) {
    width: 50%;
    box-sizing: border-box;
    padding-right: 0.5rem;
  }
  .webform-submission-contact-form .form-wrapper:nth-child(2),
  .user-login-form .form-wrapper:nth-child(2) {
    width: 50%;
    box-sizing: border-box;
    padding-left: 0.5rem;
  }
}

@media screen and (min-width:1024px) {
  .webform-submission-contact-form .form-text,
  .webform-submission-contact-form .form-email,
  .webform-submission-contact-form .form-textarea-wrapper,
  .user-login-form .form-text,
  .user-login-form .form-email,
  .user-login-form .form-textarea-wrapper,
  .user-form .form-text,
  .user-form .form-email,
  .user-form .form-textarea-wrapper {
    display: inline-block;
    width: calc(100% - 90px);
  }
  .webform-submission-contact-form label,
  .user-login-form label ,
  .user-form label {
    display: inline-block;
    padding-bottom: 5px;
  }
  .captcha {
    padding-left: 195px;
  }
  .webform-submission-contact-form .form-actions,
  .user-login-form .form-actions,
  .user-form .form-actions {
    padding-left: 195px;
  }
}


/* Calculator */

.calculator__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.calculator__tab {
  padding: 0.75rem;
  border: none;
  text-transform: uppercase;
  background-color: transparent;
  font-weight: bold;
  position: relative;
  border-bottom: none;
  width: 100%;
  transition: all 0.25s;
  font-size: 0.75rem;
  border-radius: 5px 5px 0 0;
  background-color: var(--color-primary--2);
}
.calculator__tab.is-active, .calculator__tab:hover {
  color: #fff;
}

.calculator__tab span {
  display: block;
  position: relative;
  z-index: 1;
}
.calculator__tab:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: var(--color-secondary--2);
  z-index: 0;
  transition: all 0.25s;
  border-radius: 5px 5px 0 0;
}
.calculator__tab.is-active:before, .calculator__tab:hover:before {
  height: 100%;
}
.calculator-item {
  display: none;
}
.calculator-item.is-active {
  display: block;
}

.calculator-item label{
  display: block;
  padding: 0;
  font-weight: bold;
}
.calculator-item input,
.calculator-item select{
  border-radius: 5px;
  border: 1px solid #CCC;
  background: #FFF;
  width: 100%;
  padding: 0.5rem;
}
.calculator-form__element{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calculator-title{
  margin:0;
  padding:8px 64px;
  background-color:var(--color-secondary--2);
  color:#fff;
  font-size:20px;
  line-height: 36px; /* 180% */
  text-transform: uppercase;
  font-weight: bold;
}
.calculator-form__header, .calculator-form__content{
  display: flex;
  flex-direction: column;
  padding:32px;
}
.calculator-form__header {
  background-color: var(--color-primary--2);
  border-radius: 0 0 5px 5px;
  padding-bottom: 16px;
  padding-top: 16px;
  gap: 32px;
}
.calculator-form__content{
  border:none;
  gap: 32px 16px;
}
@media screen and (min-width:550px) {
  .calculator-form__header {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .calculator-form__header .calculator-form__element{
    width: 100%;
  }

  .calculator-form__content{
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .calculator-form__element{
    width: 48%;
  }
}
@media screen and (min-width:768px) {
  .calculator-form__header .calculator-form__element{
    max-width: 338px;
  }

  .calculator-form__element{
    width: 31%;
  }
  .calculator__tabs{
    flex-direction: row;
    align-items: stretch;
  }
  .calculator__tab{
    font-size: 16px;
    border-right: none;
  }

  .calculator-form__header .calculator-form__element--base-submit {
    width: fit-content;
  }

  .calculator-form__element--base-submit button{
    font-size: 16px;
  }
}

@media all and (min-width:1300px) {
   .calculator-form__header {
    flex-wrap: nowrap;
  }
}


/**
 * Banner
 */

.banner {
  position: relative;
}
.banner__wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}
.banner__content {
  color: #FFF;
}
.banner__title {
  font-size: 1.75em;
  font-weight: 900;
  line-height: 1.2;
}
.banner__text {
  font-size: 0.9em;
}
.banner__image img {
  width: 100%;
}
@media all and (min-width: 750px){
  .banner__content {
    width: 58.333%;
  }
}
@media all and (min-width: 1000px){
  .banner ~ .featured {
    position: relative;
    margin-top: -3rem;
  }
}
@media all and (min-width: 1300px){
  .banner ~ .featured {
    margin-top: -6rem;
  }
  .banner__wrapper {
    transform: translateY(-60%);
  }
  .banner__title {
    margin-top: 0;
    font-size: 2.6em;
  }
  .banner__text {
    font-size: 1.2em;
  }
}
@media all and (min-width: 1600px){
  .banner__wrapper {
    transform: translateY(-60%);
  }
  .banner__title {
    margin-top: 0;
    font-size: 3.25em;
  }
  .banner__text {
    font-size: 1.3em;
  }
  .banner__cta {
    margin-top: 2rem;
  }
}


/**
 * Pager
 */

.pager__items {
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.pager__item {
  display: inline-block;
  padding: 0.5em;
}
.pager__item a {
  width: 49px;
  height: 48px;
  padding: 12px 20px;
  font-weight: bold;
  color : var(--color-secondary--1);
  border-radius: 15px;
  border: 1px solid #DAE1E8;
}
.pager__item.is-active a,
.pager__item a:hover {
  color: #FFF;
  background-color:  var(--color-secondary--1);
  border-color:  var(--color-secondary--1);
}

.pager__item--first,
.pager__item--last {
  display: none;
}

@media all and (min-width: 1000px){
  .pager__items {
    margin-bottom: 3rem;
  }
}
@media all and (min-width: 1024px){
  .view-liste-des-produits .view-filters ~ .pager,
  .view-step-files .view-filters ~ .pager {
    width: calc(75% - 1rem);
    margin-left: auto;
  }
}
@media all and (min-width: 1450px){
  .view-liste-des-produits .view-filters ~ .pager,
  .view-step-files .view-filters ~ .pager {
    width: calc(83.333% - 1rem);
  }
}


/**
 *  Login & Register Pages
 */

.login-container {
  display: flex;
  min-height: calc(100vh - 91px);
}

.login-container .layout-content,
.login-container .region-content {
  height: 100%;
}

.login-container .region-content {
  display: flex;
  flex-direction: column;
}

.login-container__left {
  flex: 1 1;
}

.login-container__right {
  position: relative;
  flex: 2 0;
  background-image: url('../images/login-background.jpg');
  background-size: cover;
  background-position: center;
}
.login-container__right::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  background-image: url('../images/logo.svg');
  background-size: 394px;
  background-position: center;
  background-repeat: no-repeat;
}

.login-container__left > div {
  padding: 0 2rem;
}

.login-container__left .block-system-main-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.login-container__left .form-submit {
  display: inline-block;
  max-width: 270px;
  width: 100%;
  height: 45px;
  font-weight: 900;
  text-transform: uppercase;
  color:#006A44;
  padding: 0;
  border: 2px solid #006A44;
  border-radius: 2px;
  background: white;
  transition: all ease .15s;
}

.login-container__left .form-submit:hover {
  border: 2px solid #fff;
  color: white;
  background: #006A44;
}

.login-container__left form {
  display: flex;
  flex-direction: column;
}

.login-container__left label {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 800;
  color: #333333;
}

.login-container__left input {
  max-width: 449px;
  width: 100%;
  height: 55px;
  border: solid 1px #CCCCCC;
  padding: 1rem;
}
.login-container__left form > input {
  padding: 1rem;
}
.login-container__left .js-form-item {
  display: flex;
  flex-direction: column;
}

.login-container__left #block-logoutbutton {
  display: flex;
    max-width: 449px;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 750px){
  .login-container__left #block-logoutbutton {
      margin: auto;
  }
}
.login-container__left #block-logoutbutton a {
  max-width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  font-weight: 900;
  text-transform: uppercase;
  color: #006A44;
  padding: 0;
  border: 2px solid #006A44;
  border-radius: 2px;
  background: white;
  transition: all ease .15s;
}

.login-container__left #block-logoutbutton a:hover {
  border: 2px solid #fff;
  color: white;
  background: #006A44;
}

.login-container__left  #edit-name--description,
.login-container__left  #edit-pass--description,
.login-container__left  #edit-mail--description {
  display: none;
}

.login-container__left--login .form-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.login-container__left #edit-register a {
  text-decoration: underline;
}

.login-container__left #edit-forgot a {
  color: #787878;
  text-decoration: underline;
}

.login-container--user .block-system-main-block {
  margin: 0;
}

.login-container--user .block-formblock-user-edit {
  margin: 0 auto auto auto;
  max-width: 449px;
  width: 100%;
  padding-bottom: 2rem;
}
.login-container__left .user-pass {
  margin: auto;
  max-width: 449px;
  width: 100%;
}

@media all and (max-width: 1024px){
  .login-container__left {
    flex: 2 1;
  }
}

@media all and (max-width: 750px){
  .login-container__right {
    display: none;
  }
  .login-container__left .block-system-main-block {
    margin-top: 0;
  }
  .login-container {
    min-height: 100%;
  }
  .login-container__left {
    padding-bottom: 2rem;
  }
  .login-container--user .block-formblock-user-edit {
    padding-bottom: 0;
  }
}
/**
  *  Register Captcha
  */
  .login-container__left .captcha {
    padding: 0;
    max-width: 449px;
  }

/**
 *  Title pages login and register
 **/
.unregisted-user-page__title {
  width: 100%;
}

.unregisted-user-page__title h1 {
  margin: 0;
}
@media screen and (max-width: 750px){
  .unregisted-user-page__title {
    width: 100%;
  }

}

/**
 * Password policy
 */

#password-policy-status,
#password-policy-status {
  font-weight: 400;
  color: #555555;
  font-size: 0.85em;
}
#password-policy-status thead,
#password-policy-status thead{
  display: none;
}
#password-policy-status tr td:not(:last-child),
#password-policy-status tr td:not(:last-child){
  display: none;
}
#password-policy-status .password-policy-constraint-passed::before,
#password-policy-status .password-policy-constraint-failed::before,
#password-policy-status .password-policy-constraint-passed::before,
#password-policy-status .password-policy-constraint-failed::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px 10px 6px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#password-policy-status .password-policy-constraint-failed::before,
#password-policy-status .password-policy-constraint-failed::before {
  background-image: url("../images/close.svg");
}
#password-policy-status .password-policy-constraint-passed::before,
#password-policy-status .password-policy-constraint-passed::before {
  background-image: url("../images/check.svg");
}

/**
 * Captcha
 */
.captcha {
  border: none;
}
.captcha .details-wrapper {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.captcha summary,
.captcha .details-description {
  display: none;
}



/**
 * Linkedin Feed
 */

#block-linkedinfeed {
  margin-top: 6rem;
  margin-bottom: 6rem;
  text-align: center;
}

.path-user .grid-row:not(.hero__inner) {
  width: 100%;
}

.path-user .hero__wrapper .region-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
