.cookies {
   background: #3988b1;
   line-height: 22px;
   color: #ffffff;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 17px 15px;
   position: fixed;
   width: 100%;
   bottom: 0;
   z-index: 9;
}

.cookies_button a{
   color: #ffffff;  
   display: flex;
   width: 100%;
   height: 100%;
   align-items: center;
   justify-content: center;  
   transition: 0.3s;
}

.cookies_button a:hover,
.cookies_button a:focus{
   background: #ffffff;
   color: #3988b1;
   transition: 0.3s;
}

.cookies_button {
   border: 1px solid #ffffff;
   width: 200px;
   height: 40px;
   border-radius: 5px; 
}
.white-space{
	
		display: inline-block;
		width: 150px;
}
.no-border{
	border: none;
}

.cookies_button_fail{
   margin-left: 20px;
}

.cookies_text {
   margin-right: 30px;
   width: fit-content;
   text-align: left;

}

.cookies_text a{
   color: #fff;
   font-weight: bold;
   text-decoration: underline;
}

.cookies_text a:hover{
   color: #fff;
   font-weight: bold;
   text-decoration: underline;
}

@media (max-width: 1200px) {
   .cookies {
      flex-wrap: wrap;
   }
   .cookies_text {
       margin-right: 0;
       margin-bottom: 25px;
   }
}

@media (max-width: 767px) {
   .cookies {
      flex-direction: column;
   }
   .cookies_button_fail {
       margin-left: 0;
       margin-top: 15px;
   }
   .cookies_text {
      font-size: 1.6rem;
   }
}