/* general styling */

.bottom-spacer {
    margin: 50px;
}

.btn.banner-button {
    border: 2px solid white;
    padding: 15px 30px;
}

.btn-outline-dark.btn.banner-button:hover {
    background-color: #b1b1b16e;
}

.btn-outline-white.btn.banner-button:hover {
    background-color: rgb(223, 223, 223, 0.5);
}

.btn-outline-white.btn.banner-button {
    color: white;
    border: 2px solid white;
}

.btn-outline-dark.btn.banner-button {
    color: black;
    border: 2px solid black;
    margin: 0 auto;
    text-align: center;
}

a.dark-hyperlink {
    color: rgb(91, 91, 91);
    text-decoration: none;
}

a.dark-hyperlink:hover {
    color: rgb(0, 0, 0);
    text-decoration-line: underline;
    text-decoration-style: dotted;
}

/* banner section */

#main-banner-section {
    position: relative;
    box-sizing: border-box;
    display: block;
    unicode-bidi: isolate;
}

.inner-banner {
    background-image: linear-gradient(
            to left,
            rgba(11, 61, 145, 0.8) 0%,
            rgba(6, 31, 74, 0.8) 100%
        ),
        url(../../images/background-main.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

/* #main-banner-section, .inner-banner {
    min-height: 650px;
} */

.background-overlay,
.background-overlay > .container > .row {
    height: 20vh;
    min-height: 200px;
}

.background-overlay {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

#main-banner-section h2 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    letter-spacing: 3px;
}

#main-banner-section h5 {
    color: white;
}

#main-banner-section p {
    font-size: 1.1rem;
    color: white;
}

.waves {
    margin-top: -7rem;
    --mask: radial-gradient(121.49px at 50% 165.2px, #000 99%, #0000 101%)
            calc(50% - 118px) 0/236px 100%,
        radial-gradient(121.49px at 50% -106.2px, #0000 99%, #000 101%) 50% 59px/236px
            100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    height: 150px;
    width: 100%;
    background: white;
}

.top-informational-section {
    position: absolute;
    top: 280px;
    max-width: 1400px;
    min-height: 220px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    padding: 3rem 15px 2rem 15px;
    height: auto;
    background-color: white;
    box-shadow: 0 40px 60px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, 0.4);
}

/* body section */

.above-main-body {
    margin-top: 575px;
}

.bottom-informational-section {
    margin-top: 4em;
}

/* image preview section */

.image-display-section {
    margin: 3em 0px;
}

.image-preview {
    position: relative;
    display: block;
    height: 100px;
    width: 100px;
    overflow: hidden;
}

.image-preview img {
    height: 200px;
    display: inline-block;
    display: inline-block;
}

.image-preview:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.7s;
    opacity: 0;
    background: linear-gradient(
            to left,
            rgba(193, 193, 193, 0.8) 0%,
            rgba(193, 193, 193, 0.8) 100%
        ),
        url(../../images/icon-magnifier.png);
    background-size: 100% 100%;
}

.image-preview:hover:before {
    opacity: 1;
}

.image-preview:hover {
    cursor: pointer;
}

.image-main {
    position: relative;
    display: block;
    /* height: 200px; */
    width: 100%;
    overflow: hidden;
    display: flex;
}

.image-main img {
    max-width: 100%;
    margin: 0px 0px auto 0px;
}

.image-main:hover {
    cursor: pointer;
}

.surrounding-image-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.surrounding-image-text .image-preview {
    margin: 0 auto;
}

.gcc-image-main-text {
}

.gcc-image-text {
    margin: 0 auto;
    text-align: center;
    font-size: 0.7em;
    line-height: 1.2em;
    margin-top: 5px;
    max-width: 70%;
    word-wrap: break-word;
}

/* right side table section */

.sample-product-row {
    margin: 2% 0px;
}

.chip {
    background-color: gainsboro;
    padding: 2px;
    text-align: center;
    border-radius: 10px;
    font-size: 0.8em;
}

.chips-list .chip {
    min-width: 10%;
    max-width: 80%;
    margin: 0px 2% 0px 0px;
    padding: 2px 15px;
    box-sizing: content-box;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    white-space: nowrap;
}

.chips-list svg {
    margin-right: 1%;
}

.chip-light-blue {
    background-color: #9bdaf1;
}

.chip-md-blue {
    background-color: #00a6d2;
    color: white;
}

.chip-light-red {
    background-color: #e59892;
}

.chip-md-red {
    background-color: #c62d1f;
    color: white;
}

.chip-light-green {
    background-color: #94bfa2;
}

.chip-md-green {
    background-color: #4aa564;
    color: white;
}

.chips-list {
    margin: auto 0;
    display: flex;
    flex-direction: row;
}

.datasets-section {
    border-top: 1px solid gainsboro;
    padding-top: 20px;
}

.sample-title {
    font-weight: 700;
}

.product-col .sample-title {
    font-size: 0.9em;
}

.subtext-product {
    font-size: 0.8em;
    color: gray;
    font-style: italic;
}

.chip-holder {
    margin-right: 1%;
    display: flex;
    flex-direction: column;
}

.chip-date {
    width: 100%;
    padding: 3px;
    text-align: center;
    text-wrap: nowrap;
    margin: auto 0;
}

.status-download-link,
.contact-download-link {
    margin-right: 2%;
    text-decoration: none;
}

.status-download-link:hover,
.contact-download-link:hover {
    text-decoration: underline;
}

.icons-download {
    background-color: rgb(13, 110, 253);
    padding: 0px 20px;
    margin: 0px 1%;
    border-radius: 3px;
}

.icons-inner-wrapper {
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-decoration: none;
    margin: auto 0;
    text-align: center;
    height: 100%;
}

.icons-inner-wrapper svg,
.icons-inner-wrapper .icon-description {
    text-align: center;
    margin: auto 0;
}

.icons-download:hover:not(.disabled-box) {
    background-color: white;
    border: 1px solid rgb(13, 110, 253);
}

.icons-download:hover:not(.disabled-box) .icons-inner-wrapper {
    color: rgb(13, 110, 253);
}

.icons-download svg,
.icons-download .icon-description {
    text-align: center;
    margin: auto 0;
}

.icon-description {
    font-size: 0.8em;
}

/* when there's no link in the products boxes and are disabled */

.disabled-box,
.disabled-box a.dark-hyperlink {
    background-color: rgb(189, 189, 189);
    color: white;
}

.disabled-box:hover,
.disabled-box a:hover {
    cursor: default;
}

.disabled-box a.dark-hyperlink:hover {
    text-decoration: none;
    color: inherit;
}

/* bottom table section */

.bottom-informational-section .container {
    border: 1px solid gainsboro;
}

.list-of-tabs {
    margin: 1.3em 0px;
}

.bottom-info-section {
    padding: 10px 0px;
}

/* .btn.switch-param-btn {
    padding: 10px;
} */

@media (max-width: 770px) {
    #main-banner-section h2 {
        font-size: 2rem;
        color: white;
        font-weight: 800;
        letter-spacing: 3px;
        margin-top: 1em;
    }
}

@media (max-height: 1200px) {
    .top-informational-section {
        position: relative;
        bottom: auto;
        top: auto;
        margin-top: -2em;
        margin-bottom: -30em;
    }
    .bottom-spacer {
        height: -50em;
    }
}

@media (min-height: 1201px) {
    .top-informational-section {
        position: relative;
        bottom: auto;
        top: auto;
        margin-top: -4em;
        margin-bottom: -30em;
    }
}

@media (max-width: 1196px) {
    .top-informational-section {
        position: relative;
        bottom: 0;
        top: 0;
        max-width: 100%;
        min-height: 100%;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        left: 0;
        right: 0;
        box-shadow: none;
        -webkit-box-shadow: none;
    }

    .bottom-spacer.above-main-body {
        margin: 30em;
    }
}
