:root{
    --accent-color: #6DA42C;
    --accent-hover: #006837;
    --popup-background: #FFFFFF;
    --popup-text-color: #000000;
    --popup-button-color: #FFFFFF;
    --popup-button-hover-color: #FFFFFF;
}

.cookie-popup-container{
    display: none;
}

.cookie-popup-container .cookie-popup{
    width: min(230px, 95%);
    border-radius: 0;
    padding: 15px;
    background-color: var(--popup-background);
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 999999 !important;
    transition: 300ms;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container {
    display: flex;
    flex-direction: column;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container p{
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
    color: var(--popup-text-color);
}


.cookie-popup-container .cookie-popup .cookie-popup-content-container a{
    color: #006837 !important;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container .nowrap{
    white-space: nowrap;
}

.cookie-popup-container .cookie-popup .cookie-content{
    margin-bottom: 10px;
}

.cookie-popup-container .cookie-popup .cookie-decide{
    width: 100%;
    display: flex;
    align-items: center;
}

.cookie-popup-container .cookie-decide ul{
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 75px;
}

.cookie-decide ul li{
    width: 100%;
    text-align: center;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    padding: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 300ms;
    font-size: 12px;
    line-height: 18px;
}

.cookie-decide ul li.allow{
    background-color: var(--accent-color);
    color: var(--popup-button-color);
    margin: 0 !important;
}

.cookie-decide ul li.allow:hover{
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--popup-button-hover-color);
}

a.policy-href{
    text-decoration: none;
    font-size: 12px !important;
    line-height: 18px;
    font-weight: 600 !important;
    transition: 300ms;
    color: #1d6d9b !important;
}