.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    right: 0;
    z-index: 999;
}
.cookie {
    background: white;
    border: 2px silver solid;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
    text-align: justify;
	display: flex;
}
#apagarcookie{
	font-size: 12px!important;
	padding: 4px;
}
.cookie-container img{
    display: none;
}
.cookie-container.hide-cookie > div{
    display: none;
}
.cookie-container.hide-cookie {
    background: white;
    width: 45px;
    height: 45px;
    border: 1px darkgray solid;
    right: 0;
    left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.cookie-container.hide-cookie img{
    display: block;
    height: 30px;
    width: 30px;
}
.cookie-container.hide-cookie:hover{
    width: 100px;
    transition: width 1s ease;
}
