.grid_size {
	width: 1250px;
}

.bnpp-exclusion-criteria-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-select {
    position: relative;
    width: 725px;
    font-family: sans-serif;
    padding-bottom: 63px;
}

.custom-input {
    display: block;
    width: 100%;
    padding: 29px 64px 29px 30px;
    background-color: #0C2728;;
    color: #FFF;
    font-family: "BNPP Sans";
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 20px; /* 125% */
    border: 1px solid #FFF;
    cursor: pointer;
}

.custom-options {
    position: absolute;
    /* top: 100%; */
    left: 0;
    right: 0;
    background-color: #0C2728;
    color: #FFF;
    border: 1px solid #FFF;
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
    /* display: none; */
    z-index: 10;
    max-height: 220px;
    overflow: auto;
}

.custom-options[hidden] {
    display: none;
}

.custom-options li {
    padding: 10px;
    cursor: pointer;
}

.custom-options li:hover {
    background-color: #3b3b3b;
}

.custom-options li.is-active {
    background-color: #3b3b3b;
}

.custom-options li[aria-selected="true"] {
    background-color: #5c5c5c;
}

.custom-select::after {
    content: "";
    position: absolute;
    right: 30px;
    top: calc(50% - 33px);
    transform: translateY(-50%) rotate(0deg);
    width: 16px;
    height: 16px;
    pointer-events: none;
    transition: transform 0.2s ease;
    color: #FFF;
    background: no-repeat center / 100% 100% url(../assets/arrow.svg?1=1);;
    opacity: 0.9;
}

.custom-select.is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.hidden {
  display: none;
}

.bnpp-exclusion-criteria {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 36px 0 0 0;
}

.bnpp-exclusion-criteria-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.bnpp-exclusion-criteria-container {
    display: flex;
    background-color: #F3F9F7;

    .title {
        min-width: 300px;
        padding: 41px 50px 41px 50px;
        color: #008252;
        font-family: "BNPP Sans Condensed";
        /* font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 45px; */
    }

    .text {
        display: flex;
        padding: 61px 33px 61px 33px;
        color: #1D1D1B;
        font-family: "BNPP Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        p {
            max-width: 580px;
        }

        .button {
            display: flex;
            justify-content: center;
            text-align: center;
            align-items: center;
            margin-left: 30px;
        }
    }
}

.exclusion-criteria-title {
    text-align: left;
    width: 100%;
}

.container_images_exclusion {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  width: 100%;
  
  .button_images_exclusion {
    display: flex;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #DFDFDF;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    width: 222px; 
    height: 222px;

    .images_exclusion {
        display: block;
        max-height: 100%;
        max-width: 100%;
        height: auto;
        border-style: none;
        width: auto;
        object-fit: contain;
    }
  }

  .button_images_exclusion::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: -1px;
        height: 101%;
        width: 101%;
        opacity: 0;
        border: 4px solid #008252;
        border-radius: 8px;
        transition: 300ms;
        padding: 10px;
    }

  .button_images_exclusion:hover::after {
    opacity: 1;
  }

}
