﻿/**************************************************
  Coppermine 1.6.x Plugin - cookiewarn
  *************************************************
  2023-04-10 Joe Carver (https://josephcarver.com)
  *************************************************
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 3 of the License, or
  (at your option) any later version.
  **************************************************/

/*Style for overlay */
#overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 60px;
  top: 900;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 5px;
  background-color: rgba(150,0,0,0.6);
  z-index: 2;
  cursor: pointer;
}

/*Style for title */
#cookietext{
  font-size: 20px;
  color: white;
  text-align: center;
}

/*Style for message */
#cookiewarn{
  font-size: 14px;
  color: white;
  text-align: Left;
}