@charset "UTF-8";

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy-Regular.woff') format('woff'),
        url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: url('../fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff'),
        url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    
    ascent-override: 90%;
    /*descent-override: 100%;*/
    /*line-gap-override: 90%;*/
    /*size-adjust: 90%;*/
}



body.no-scroll {
    overflow: hidden;
    height: 100%;
}
body {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}


:root {
    --theme--red: #EE3124;
    --theme--grey: #E5E5E5;
    --theme--grey-darker: #706F6F;
    --theme--white: #FFFFFF;
    
    /* NEW COLORS */
    
    --theme--blue: #4F8BD1;
    --theme--blue-darker:#3B76BA;
    --theme--corail:#F26F5F;
    --theme--neutral:#FFF1E4;
    --primary: #D98275;
    
}

/* === BUTTONS === */

.cta-primary {
    letter-spacing: 0.05rem;
    font-weight: 600;
    font-size: 18px;
    border-radius: 3px;
    overflow: hidden;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
    background: var(--theme--blue);
    padding: 20px 20px 17px 20px;
    margin: 0;
    font-family: inherit;
    position: relative;
    display: inline-block;
    text-decoration:none;
    border:none;
    width:fit-content;
    transition: background 0.2s ease-in-out;
}

.cta-primary:hover {
    background-color:var(--theme--blue-darker);
}

/* BUTTON SECONDARY */

.cta-secondary {
    letter-spacing: 0.05rem;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    overflow: hidden;
    color: var(--theme--blue);
    pointer-events: auto;
    cursor: pointer;
    background: white;
    border: 2px solid var(--theme--blue);
    padding: 20px 20px 17px 20px;
    margin: 0;
    font-family: inherit;
    position: relative;
    display: inline-block;
    text-decoration:none;
    transition: background 0.2s ease-in-out;
}

.cta-secondary:hover {
    background-color:var(--theme--blue-darker);
    border: 2px solid var(--theme--blue);
    color:white;
}

@media screen and (max-width:768px) {
    .cta-secondary,
    .cta-primary {
        font-size:14px;
        padding:12px 12px 10px 12px;
    }
}

.pop-in-asset__img-content-download {
    margin-bottom: -5px;
}


/* FACETS */

.wpgb-facet>fieldset:last-child {
    margin-bottom: 0!important;
}

.wpgb-select .wpgb-select-controls button {
       color: var(--primary) !important;
}


.wpgb-select-dropdown ul li.wpgb-focused {
    background-color:#f0f0f0 !important;
}

.wpgb-pagination-facet {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0;
}

.wpgb-facet .wpgb-pagination li a {
    font-weight: bold !important;
    font-family: 'Gilroy';
    color: black;
    outline: none;
    border-radius: 50%;
    background: transparent;
    transition: background 500ms ease-in-out;
}

.wpgb-facet .wpgb-pagination li a:hover {
    background: #ee312461 !important;
}

.wpgb-facet .wpgb-pagination li a:focus {
    outline: none !important;
}
.wpgb-facet .wpgb-pagination li a[aria-current] {
    color: white !important;
    background-color: var(--theme--red) !important;
}

/* FACETS END */

/*MULTI DOWNLOAD BAR */
.multi-download-module-wrapper {
    position: sticky;
    bottom: 0;
    overflow: hidden;
    height: 0;
    z-index: 2;
}
.multi-download-module {
    display: grid;
    grid-template-columns: 1fr auto;
    
    background-color: #fff;
    
    padding: 15px 3px 5px 15px;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.2);
}
.multi-download-module .input-control {
    display: flex;
    align-items: center;
    align-self: center;
}

#select-all-assets {
    --primary: var(--theme--corail); 
    position: relative;
	border: 1px solid var(--theme--corail);
	background: white;
	cursor: pointer;
	line-height: 0;
	margin: 0 .6em 0 0;
	outline: 0;
	padding: 0 !important;
	vertical-align: text-top;
	height: 25px;
	width: 25px;
	-webkit-appearance: none;
    opacity: .5;
}

#select-all-assets:hover {
  opacity: 1;
}

#select-all-assets:checked {
  background-color: var(--theme--corail);
  opacity: 1;
}

#select-all-assets:before {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

.multi-download-module .selected-assets-count {
    grid-column: span 2;
    text-align: center;
    
    font-size: 16px;
    line-height: 1em;
    font-weight: 400;
}
.multi-download-module .download-btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.multi-download-module .download-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    
    width: 50px;
    height: 50px;
    padding: 13px 12px;
}

@media screen and (min-width: 768px) {
    .multi-download-module {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 25px 100px;
    }
    
    .multi-download-module .selected-assets-count,
    .multi-download-module .input-control,
    .multi-download-module .download-btn-wrapper {
        flex: 1;
    }
    .multi-download-module .input-control {
        order: -1;
    }
}

.multi-download-module-wrapper {
}
#multi-download-module > .multi-download-module {
    transition: transform 0.3s ease 0s;
}
#multi-download-module[data-visible="false"] > .multi-download-module {
    transform: translateY(100%);
}
#multi-download-module[data-visible="true"].multi-download-module-wrapper {
    height: auto;
    overflow: visible;
}

#download-selected-assets > svg {
    pointer-events: none;
}


#download-selected-assets.busy {
    pointer-events: none;
    cursor: wait;
    opacity: 0.5;
}

/*MULTI DOWNLOAD BAR END */


/* 404 */

.error404 .txt-container-404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 220px);
}
.error404 .txt-container-404 h1 {
    width: 100%;
    font-size: 27vw;
    line-height: 1em;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 400;
    text-stroke: var(--primary) 0.005em;
    -webkit-text-stroke: var(--primary) 0.005em;
    background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 1s cubic-bezier(0.75, 0, 0.25, 1) 0s;
    font-family: var(--circularstd);
    display: flex;
    justify-content: center;
    color:var(--theme--red);
}
@media screen and (max-width: 768px) {
  .error404 .txt-container-404 h1 {
      font-size: 50vw;
  }
}

.error404 .btn-white {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 15px;
    color: var(--primary);
    text-transform: uppercase;
    cursor: pointer;
    transition: background 1s ease 0s;
    text-decoration: none;
}

.page-404 .txt-404 a span {
    text-transform: none;
    letter-spacing:0px;
    font-size:16px;
}

/* 404 END */


.wp-block-heading {
    margin-top: 2em;
    margin-bottom: 1em;
}
main > article.page {
    padding: 0em 2em 2em; 
    margin: 0px auto;
    max-width: 80ch;
}
main > article.page p {
    margin-bottom: 1em;
}
main > article.page ul {
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 2em;
}