.cookie_accept {
    position: fixed;
    bottom: 0;
    z-index: 999999;
    background-color: white;
    margin: auto;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
    display: none;
    max-width: 1200px;
    left: 0;
    right: 0;
}

.cookie_accept.show {
    display:block;
}

.cookie_accept .wrap{
    margin: auto;
    display: flex;
}

.cookie_accept .txt{
    font-size: 13px;
    margin: auto;
    flex: 1;
}

.cookie_accept .button{
	margin: auto auto auto 25px;
	font-size: 13px;
	border-radius: 10px !important;
	height: auto !important;
	padding: 15px !important;
	background-color: #74d0b0;
	color: white;
	cursor: pointer;
}

.cookie_accept .button:hover{
    opacity: 0.9;
}

.cookie_accept a{
	font-weight: bold;
    color: black;
}

@media screen and (max-width: 726px){
   
    .cookie_accept{
        left: 0;
        right: auto;
        border-radius: 0;
    }

    .cookie_accept .wrap{
        flex-direction: column;
    }

    .cookie_accept .button{
        margin: 19px auto auto auto;
        font-size: 3vw;
        min-width: 100%;
        text-align: center;
    }
 
}