@font-face {
    font-family: Muli-Regular;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Muli-Regular.ttf') format('woff');
}

@font-face {
    font-family: Poppins_Regular;
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/Poppins-Regular.ttf') format('ttf');
}

.cookiewr {
    height: 288px; 
    padding: 2rem;
}
.cookiestext {
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
}
.cookiesbuttons {    
    width: 100%;
    display: flex;
    justify-content: space-evenly;

    padding: 10px 0px;
}
.cookiecontent {
    width: 100%; 
    display:flex; 
    flex-direction: column;
    justify-content: center;
}
.cookiepara {
    font-size: 12px;
    font-weight: 400;
}

.cookieheading {
    font-family: Muli-Regular;
    font-size: 18px;
    font-weight: 600;
}

#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    font-size: 14px;

    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    text-align: justify;
    border-radius: 6px;
    transition: all 0.5s ease-in;
}

#cookiePopup p {
    text-align: center;
}

#cookiePopup button {
    background: #00ADEE 0% 0% no-repeat padding-box;
    border-radius: 25px;
    opacity: 1;
    border: none;
    color: #ffffff;

    font-size: 12px;
    padding: 1em 1.4em;
    display: block;
    position: relative;
    width: 140px;
}

.learnmore{
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 25px;
    opacity: 1;
    border: 2px solid #00ADEE;
    text-align: center;

    color: #00ADEE;
    font-size: 12px;
    padding: 0.8em;
    display: block;
    position: relative;
    width: 120px;
}

.learnmore:hover{
    background-color: #00ADEE;
    color: #FFFFFF;
}

.cookiesbtns {
    display: flex;
    justify-content: space-around;
	align-items: center;
}

#cookiePopup a {
    text-decoration: none;
}

.hide {
    visibility: hidden;
    left: 1em;
    right: 1em;
}

.showcookie {
    visibility: visible;
    bottom: 0;
    left: 1em;
    right: 1em;
    z-index: 99;
}

#cookiePopup button:hover{
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .cookiewr {
        height: 234px; 
        padding: 2rem;
    }
    .cookiestext {
        width: 100%;
        display:flex;
        flex-direction: column;
        justify-content: center;
    }
    .cookiesbuttons {    
        width: 100%;
        display: flex;
        justify-content: space-evenly;
    }
    .cookiecontent {
        width: 60%;
    }
    .cookiepara {
        font-size: 17px;
        font-weight: 400;
    }
    .learnmore{
        font-size: 13px;
    }
    .cookiesbtns {
        width: 40%;
    }
    .learnmore,
    .acceptCookie {
        width: 140px;
    }
    #cookiePopup button {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .cookiewr {
        height: 170px;
        display: flex;
        align-items: center;
    }
    .cookiecontent {
        width: 70%;
    }
    .cookiesbtns {
        width: 30%;
    }
    .learnmore{
        font-size: 15px;
    }
    #cookiePopup button {
        width: 145px;
        font-size: 15px;
    }
}