@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", "Helvetica", Arial, sans-serif;
    font-size: 18px;
}
body * {
    transition: all .3s ease;
    box-sizing: border-box;
}
.cookie-banner-bg {
    position: relative;
    min-width: 100vw;
    height: 100vh;
    background-color: #000;
    margin: 0;
    display: grid;
    place-items: center;
}
.cookie-banner {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: min(98%, 600px);
    max-height: 100%;
    overflow: scroll;
}
.cookie-banner h2 {
    margin-top: 0;
}
.cookie-banner h2 span:first-child {
    font-weight: 100;
}
.cookie-banner button {
    display: grid;
    place-items: center;
    padding: 16px 24px;
    background-color: #005251;
    color: white;
    border: 1px solid #005251;
    width: 100%;
    margin-bottom: 6px;
    font-size: 1.05rem;
    cursor: pointer;
}
.cookie-banner button.style2 {
    background-color: #fff;
    color: #005251;
    border: 1px solid #005251;
}
form#cookie-banner-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 10px;
}
.cookie-banner label[for="hcp-nonus-license"] {
    display: inline-block;
    width: 100%;
}
.cookie-banner label input[type="text"] {
    width: 80%;
    margin-left: 20%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    display: none;
}
.cookie-banner input.style3 {
    background-color: #04a9bd;
    border: 1px solid #04a9bd;
    color: white;
    border-radius: 40px;
    width: 140px;
    margin-left: calc(100% - 140px);
    margin-top: 10px;
    padding: 14px 24px;
    text-transform: uppercase;
    cursor: pointer;
}
.cookie-banner input:hover {
    opacity: 0.9;
}
.cookie-banner .dhwp-hidden {
    display:none;
}