/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			we_universal
	Based on style:		prosilver (the default phpBB 3.3.x style)
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		nextgen ( https://nextgen.gt/ )
    --------------------------------------------------------------
*/

@import url("common.css?hash=a9741ba1");
@import url("content.css?hash=56f9e623");
@import url("cp.css?hash=50d868ab");
@import url("forms.css?hash=b64464fb");
@import url("responsive.css?hash=87b53e08");
@import url("we_universal.css");

.inventea-header {
  position: relative; /* потребно за overlay */
  z-index: 0;         /* оригиналниот banner */
}

.inventea-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 20px), /* лед/снег ивица */
    url('./images/snowflakes-header.png') repeat;                  /* снегулки overlay */
  background-size:
    100% 20px,   /* висина на лед слојот */
    contain;      /* снегулки pattern */
  background-repeat:
    no-repeat,    /* лед/снег не се повторува */
    repeat;       /* снегулки се повторуваат */
  opacity: 0.4;   /* за снегулки */
  pointer-events: none;
  z-index: 1;
}

.inventea-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px; /* поголема висина за паѓачки снег */
  background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0) 100%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
  z-index: 3;
}

/* Сите горни ленти: header, категории, теми, известувања */
.inventea-header,
.forabg,
.forumbg,
.panel {
  position: relative; /* потребно за ::before и ::after */
}

/* лед/снег над сите ленти */
.forabg::before,
.forumbg::before,
.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px; /* висина на лед/снег слојот */
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 100%);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
  z-index: 2;
}

/* лед/снег под сите ленти */
.forabg::after,
.forumbg::after,
.panel::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0) 100%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
  z-index: 2;
}
