.cookies-info {
       position: fixed;
       bottom: 0px;
       left: 50%;
       z-index: 11;
       display: flex;
       justify-content: center;
       width: 100%;
       margin: 0;
       padding: 5px 10px;
       font-family: "Segoe UI","Open Sans",Arial,"Helvetica Neue",sans-serif;
       font-size: 11px;
       font-weight: 400;
       line-height: 1.2;
       text-align: center;
       color: #999;
       background: rgba(255, 255, 255, .9);
       border-radius: 4px;
       -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
       box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
       -webkit-transform: translateX(-50%);
       -ms-transform: translateX(-50%);
       transform: translateX(-50%);
   }
   .cookies-info p,
    .home .cookies-info p {
       display: inline-block;
       margin-bottom: 0;
       padding: 6px 0 0;
       font-size: 11px;
   }
    .cookies-info a {
        text-decoration: underline;
        color: #999;
    }
   .cookies-info button {
        visibility: hidden;
       display: inline-flex;
       width: auto;
       margin-left: -33px;
        line-height: inherit;
        color: white;
       padding: 0px;
       font-size: 100%;
       background: #cacaca;
       border: 1px solid #cacaca;
       border-radius: 7px;
       cursor: pointer;
       -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
       transition: all .5s ease;
   }
   .cookies-info button:hover {
       background: #cacaca;
       color: #fff;
       opacity: .75;
       border: 1px solid #cacaca;
   }
   .cookies-info button:after {
        visibility: visible;
       content: 'X';
       display: inline-flex;
       width: auto;
       line-height: inherit;
       color: white;
        padding: 6px;
       font-size: 100%;
       background: #cacaca;
       border: 1px solid #cacaca;
       border-radius: 7px;
       cursor: pointer;
        transform: rotateX(45deg);
       -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
       transition: all .5s ease;
   }
   @media screen and (max-width: 760px) { .cookies-info p, .home .cookies-info p {
			padding: 0 !important;
		}
}
