/***********************************************************************************************
                               COOKIE NOTICES
***********************************************************************************************/


#cookieNotice {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 25px 30px;
    z-index: 20;
    /* box-shadow: var(--box-shadow); */
    background: white;
    box-sizing: border-box;
}

#cookieImage {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  margin-bottom: 5px;
}

#closeIcon {
    float: right;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: -15px;
    right: 30px;
    border-radius: 100%;
    background: var(--main-bg-color);
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: white;
}

#closeIcon img {
    width: 100%;
}

.btn-primary {
    outline: none;
    border: none;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    color: white;
    cursor: pointer;
    background: #282828;
}

.title-wrap {
  display: flex;
}

.content-wrap .msg-wrap p {
    font-size: 13px;
}

.content-wrap .msg-wrap p a {
    color: var(--primary-cta-color);
}

@media only screen and (min-width: 600px) {

    #cookieNotice {
        right: 25px;
    bottom: 25px;
    width: 550px;
    }

    .content-wrap .msg-wrap {
        display: grid;
        grid-template-columns: 5fr 2fr;
        grid-gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .btn-primary {
        margin-top: 0px;
    }

}