.header-wrapper.stuck {
    box-shadow: none !important;
}


h2.gradient-text{
  position:relative;
  display:inline-block;
  line-height:1.15;
  padding-bottom:.06em;
  overflow:hidden;
  letter-spacing:-0.01em;

  /* Subtil Apple-lik gradient */
  background: linear-gradient(
    90deg,
   #A56161,
    #497EA3,
    #CCA50C,
	  #497EA3,
   #A56161
	);

  background-size:300% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  /* Liten ljus separation mot bakgrund */
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.25));

  animation: gradientMove 14s ease-in-out infinite;
}


/* Gradientrörelse */
@keyframes gradientMove{
  0%   { background-position:0% 50%; }
  50%  { background-position:150% 50%; }
  100% { background-position:300% 50%; }
}


/* Ljusglans som sveper över texten */
h2.gradient-text::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    110deg,
    transparent 40%,
    rgba(255,255,255,.55) 50%,
    transparent 60%
  );

  transform:translateX(-120%);
  animation:shineSweep 7s ease-in-out infinite;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


@keyframes shineSweep{
  0%{
    transform:translateX(-120%);
  }
  60%{
    transform:translateX(120%);
  }
  100%{
    transform:translateX(120%);
  }
}



h2.gradient-text-guld{
  position:relative;
  display:inline-block;
  line-height:1.15;
  padding-bottom:.06em;
  overflow:hidden;
  letter-spacing:-0.01em;

  /* Guldgradient */
  background:
    linear-gradient(
      90deg,
      #7a5a00,
      #c9a227,
      #ffd700,
      #fff3b0,
      #ffd700,
      #c9a227,
      #7a5a00
    );

  background-size:300% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  filter: drop-shadow(0 1px 0 rgba(255,255,255,.25));

  animation: gradientMove 14s ease-in-out infinite;
}


/* Gradientrörelse */
@keyframes gradientMove{
  0%   { background-position:0% 50%; }
  50%  { background-position:150% 50%; }
  100% { background-position:300% 50%; }
}


/* Mikro-textur (noise overlay) */
h2.gradient-text-guld::before{
  content:"";
  position:absolute;
  inset:0;

  /* SVG noise (väldigt subtil) */
  background-image: url("data:image/svg+xml;utf8,\
\
\
\
\
\
");

  mix-blend-mode: overlay;
  pointer-events:none;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


/* Ljusglans */
h2.gradient-text-guld::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    110deg,
    transparent 40%,
    rgba(255,255,255,.65) 50%,
    transparent 60%
  );

  transform:translateX(-120%);
  animation:shineSweep 7s ease-in-out infinite;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


@keyframes shineSweep{
  0%   { transform:translateX(-120%); }
  60%  { transform:translateX(120%); }
  100% { transform:translateX(120%); }
}














.apple-tabs{
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

/* Nav */
.tabs-nav{
  position: relative;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 6px 2px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

/* Tabs (as clean text buttons) */
.tab{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 2px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,0.55);
  transition: color 180ms ease;
}

.tab:hover{ color: rgba(0,0,0,0.78); }
.tab:focus{ outline: none; }
.tab:focus-visible{
  outline: 2px solid rgba(0,0,0,0.25);
  outline-offset: 6px;
  border-radius: 10px;
}

.tab.is-active{ color: rgba(0,0,0,0.92); }

/* Sliding indicator */
.tab-indicator{
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 40px; /* uppdateras av JS */
  background: rgba(0,0,0,0.92);
  border-radius: 999px;
  transform: translateX(0);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), width 220ms cubic-bezier(.2,.8,.2,1);
}

/* Panels */
.tabs-panels{ margin-top: 18px; }

.panel{
  display: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.panel.is-active{
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Minimal content typography */
.panel h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(0,0,0,0.92);
}
.panel p{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0,0,0,0.68);
}




/* Fixar zoom på inmatningsfält i Ninja Forms för iOS */
.nf-form-content input,
.nf-form-content textarea,
.nf-form-content input[type="text"],
.nf-form-content input[type="email"],
.nf-form-content input[type="tel"],
.nf-form-content input[type="url"] {
    font-size: 16px !important;
}


.rcp_form label {
    font-size: 1em !important;
}


.logout-button {
    display: inline-block;
    padding: 0.5em 1.3em;
    background-color: #b20000;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bolder;
    transition: background-color 0.2s ease;
}

.logout-button:hover {
    background-color: #8e0000;
	color:#fff;
}




#col-426573066 > .col-inner {
    padding: 35px 0px 15px 0px;
    border-radius: 25px;
}



.tablepress>:where(thead,tfoot)>tr>* {
    background-color: #387280 !important;
}

#menu-item-8572 {
	color:#a56161 !important;
}

#menu-item-8589 a {
	color:#ffa2a2 !important;
}

#menu-item-8589 a:hover {
	color:#f0be21 !important;
}


.nf-form-content .listselect-wrap .nf-field-element div, .nf-form-content input.ninja-forms-field, .nf-form-content select.ninja-forms-field:not([multiple]) {
    height: 35px !important;
}

.nf-form-content .listselect-wrap .nf-field-element div, .nf-form-content .ninja-forms-field {
    padding: 0px 10px !important;
}

.field-wrap input[type=submit] {
    width: auto;
    padding: 0px 10px !important;
}

.nf-form-content .list-select-wrap>div div:after {
    height: 35px !important;
    line-height: 35px !important;
}

.nf-form-content label {
  font-size: .75em !important;
}

.ninja-forms-form-wrap *, .ninja-forms-form-wrap :after, .ninja-forms-form-wrap :before {
    font-size: 1em !important;
}

.nf-field-container {
margin-bottom: 15px !important;
}




body {
	font-family: 'Plus Jakarta Sans', sans-serif !important;
	font-weight: 600 !important;
	letter-spacing: -.015em;
	color: #505050;
}

h1, h2, h3, h4, h5, h6, .heading-font, .banner h1, .banner h2 {
	font-family: 'Plus Jakarta Sans', sans-serif !important;
	font-weight: 800 !important;
	letter-spacing: -.015em;
}



/* Tabell 2607: Spelschema våren */

.tablepress-id-2607 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: .9em !important;
	font-weight: 600;
	letter-spacing: -.04em;
	width: 100%;
	white-space: nowrap;
	border-style: hidden !important;
	--hover-bg-color: #edf7ea !important;
}

.tablepress-id-2607 td {
    padding: 6px 3px 6px 3px !important;
}

.tablepress-id-2607 a {
	color: #333333;
}

.tablepress-id-2607 a:hover {
	color: #325c79 !important;
	text-decoration: none;
}

.tablepress-id-2607 th {
    background-color: #AE7373 !important;
}

.tablepress-id-2607 .column-1 {
	text-align: center;
	width:45%;
}
.tablepress-id-2607 .column-2 {
	text-align: center;
	width:10%;
	color: #737373 !important;
}
.tablepress-id-2607 .column-3 {
	text-align: center;
	width: 45%;
}





/* Tabell 2606: Tabell Våren */

.tablepress-id-2606 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: -.0175em;
	font-size: .85em !important;
	font-weight: 600;
	min-width: 100%;
	width: auto;
	white-space: nowrap;
	border-style: hidden !important;
	float: none;
}

/* Negativa tal – tabell 2606, kolumn 6 */
.tablepress-id-2606 td.column-6.negative-value {
  color: #a56161 !important;
}

.tablepress-id-2606 th {
    color: #ffffff !important;
    background-color: #387280 !important;
    padding: 5px !important;
    font-size: 0.7em !important;
}

.tablepress-id-2606 td {
	color: #252525 !important;
		padding: 9px 3px 7px 3px;
}

.tablepress-id-2606 a {
	color: #252525 !important;
}

.tablepress-id-2606 a:hover {
	color: #325c79 !important;
}


/* HIGHLIGHT RADER */
.tablepress-id-2606 .row-highlight-ambj td,
.tablepress-id-2606 .row-highlight-axelsson td,
.tablepress-id-2606 .row-highlight-bunninger td,
.tablepress-id-2606 .row-highlight-halvardsson td,
.tablepress-id-2606 .row-highlight-heydecke td,
.tablepress-id-2606 .row-highlight-nordlund td,
.tablepress-id-2606 .row-highlight-widtfelt td,
.tablepress-id-2606 .row-highlight-sandberg td,
.tablepress-id-2606 .row-highlight-herman td,
.tablepress-id-2606 .row-highlight-wilhelmsson td,
.tablepress-id-2606 .row-highlight-robert td,
.tablepress-id-2606 .row-highlight-hedin td,
.tablepress-id-2606 .row-highlight-edblad td,
.tablepress-id-2606 .row-highlight-gute td,
.tablepress-id-2606 .row-highlight-mossinger td,
.tablepress-id-2606 .row-highlight-eek td
{
	background-color: #ffe2cb;
}


.tablepress-id-2606 tr.row-1 td.column-1 {
	border-radius: 8px 0 0 0 !important;
}
.tablepress-id-2606 tr.row-9 td.column-1 {
	border-radius: 0 0 0 10px !important;
}
.tablepress-id-2606 tr.row-1 th.column-7 {
  border-radius: 0 8px 0 0 !important;
	color:#ffffff !important;
}
.tablepress-id-2606 tr.row-9 td.column-7 {
	border-radius: 0 0 10px 0 !important;
}


.tablepress-id-2606 tr:nth-child(4) td {
    border-bottom: 2px solid #C67B7B !important;
}

/* För tabell i första placeringen: border-bottom på rad 4 */
.tabell-wrapper-1 .tablepress.tablepress-id-2606 tr:nth-child(4) td {
    border-bottom: 2px solid #C67B7B !important;
}

/* För tabell i andra placeringen: border-bottom på rad 4 */
.tabell-wrapper-2 .tablepress.tablepress-id-2606 tr:nth-child(4) td {
    border-bottom: 2px solid #C67B7B !important;
}

.tablepress-id-2606 tr.row-2 td.column-1, .tablepress-id-2606 tr.row-3 td.column-1, .tablepress-id-2606 tr.row-4 td.column-1, .tablepress-id-2606 tr.row-5 td.column-1 {
	color: #9f9f9f !important;
}

.tablepress-id-2606 tr.row-6 td.column-1,.tablepress-id-2606 tr.row-7 td.column-1,.tablepress-id-2606 tr.row-8 td.column-1, .tablepress-id-2606 tr.row-9 td.column-1 {
	color: #9f9f9f !important;
}





.tablepress-id-2606:hover {
	color: #ffffff !important;
}

.tablepress-id-2606 .column-1 {
	text-align: right;
	min-width:20px !important;
	max-width: 30px !important;
	color: #81b581 !important;
	font-weight:800;
	padding-right:5px !important;
}

.tablepress-id-2606 .column-2 {
	text-align: left;
	width: auto;
}

.tablepress-id-2606 .column-3,.tablepress-id-2606 .column-4,.tablepress-id-2606 .column-5,.tablepress-id-2606 .column-6,.tablepress-id-2606 .column-7 {
	text-align: center;
	width: 40px;
}

.tablepress-id-2606 tr,
td {
	padding: 5px 3px 4px 3px;
}

.tablepress-id-2606 .column-7 {
    color: #4190c7 !important;
    font-weight: bolder !important;
}






/* Tabell 2609: Slutspelet våren */

.tablepress-id-2609>:not(caption)>*>* {
    vertical-align: middle !important;
}

.tablepress-id-2609 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: .975em !important;
	font-weight: 600;
	letter-spacing: -.03em;
	width: 100%;
	min-width: 800px;
	white-space: nowrap;
	border: 0 solid #fff0 !important;
}

.tablepress-id-2609 th {
    background-color: #b18700;
		font-weight: bolder !important;
		letter-spacing: .025em;
}

.tablepress-id-2609 th.tr.row-1 td.column-1 {
  background-color: #ffffff !important;
}


.tablepress-id-2609 a {
	color: #505050 !important;
}

.tablepress-id-2609 a:hover {
	color: #325c79 !important;
}


.tablepress-id-2609 tr.row-18 td.column-1 {
  line-height: 2.05em !important;
	color:#ffffff;
}

.tablepress-id-2609 tr.row-19 td.column-1,.tablepress-id-2609 tr.row-19 td.column-2,.tablepress-id-2609 tr.row-19 td.column-3,.tablepress-id-2609 tr.row-19 td.column-4,.tablepress-id-2609 tr.row-19 td.column-5 {
	color: #ffffff !important;
	text-align: center !important;
	font-weight: bolder !important;
  background-color: #98acbe;
  font-size: .8em;
	letter-spacing: .025em;
  line-height: 1.05;
}

.tablepress-id-2609 tr.row-2   {
	color: #a56161 !important;
	height: 1.25em;
}

.tablepress-id-2609 tr.row-2 td.column-1,.tablepress-id-2609 tr.row-2 td.column-3,.tablepress-id-2609 tr.row-2 td.column-5,
.tablepress-id-2609 tr.row-20 td.column-1,.tablepress-id-2609 tr.row-20 td.column-3,.tablepress-id-2609 tr.row-20 td.column-5 {
	color: #ae7373 !important;
	font-size: .875em !important;
}

.tablepress-id-2609 .column-1,.tablepress-id-2609 .column-3,.tablepress-id-2609 .column-5,.tablepress-id-2609 .column-7 {
	width: auto;
	min-width: 250px;
}

.tablepress-id-2609 .column-2,.tablepress-id-2609 .column-4,.tablepress-id-2609 .column-6 {
	padding: 0px !important;
	width:auto;
	height: auto;
	max-width: 35px !important;
	border: 0px solid #fff0 !important;
}

.tablepress-id-2609 .column-1, .tablepress-id-2609 .column-3, .tablepress-id-2609 .column-5, .tablepress-id-2609 .column-7,
.tablepress-id-2609 .column-2, .tablepress-id-2609 .column-4, .tablepress-id-2609 .column-6
{
	text-align: center;
}


.tablepress-id-2609 tr.row-3 td.column-1,.tablepress-id-2609 tr.row-4 td.column-1,.tablepress-id-2609 tr.row-5 td.column-1,
.tablepress-id-2609 tr.row-7 td.column-1,.tablepress-id-2609 tr.row-8 td.column-1,.tablepress-id-2609 tr.row-9 td.column-1,
.tablepress-id-2609 tr.row-11 td.column-1,.tablepress-id-2609 tr.row-12 td.column-1,.tablepress-id-2609 tr.row-13 td.column-1,
.tablepress-id-2609 tr.row-15 td.column-1,.tablepress-id-2609 tr.row-16 td.column-1, .tablepress-id-2609 tr.row-17 td.column-1,
.tablepress-id-2609 tr.row-21 td.column-1,.tablepress-id-2609 tr.row-22 td.column-1,.tablepress-id-2609 tr.row-23 td.column-1,
.tablepress-id-2609 tr.row-25 td.column-1,.tablepress-id-2609 tr.row-26 td.column-1, .tablepress-id-2609 tr.row-27 td.column-1,
.tablepress-id-2609 tr.row-29 td.column-1,.tablepress-id-2609 tr.row-30 td.column-1, .tablepress-id-2609 tr.row-31 td.column-1,
.tablepress-id-2609 tr.row-33 td.column-1,.tablepress-id-2609 tr.row-34 td.column-1, .tablepress-id-2609 tr.row-35 td.column-1,

.tablepress-id-2609 tr.row-5 td.column-3,.tablepress-id-2609 tr.row-6 td.column-3,.tablepress-id-2609 tr.row-7 td.column-3,
.tablepress-id-2609 tr.row-13 td.column-3,.tablepress-id-2609 tr.row-14 td.column-3,.tablepress-id-2609 tr.row-15 td.column-3,
.tablepress-id-2609 tr.row-23 td.column-3,.tablepress-id-2609 tr.row-24 td.column-3, .tablepress-id-2609 tr.row-25 td.column-3,
.tablepress-id-2609 tr.row-31 td.column-3,.tablepress-id-2609 tr.row-32 td.column-3, .tablepress-id-2609 tr.row-33 td.column-3,

.tablepress-id-2609 tr.row-9 td.column-5,.tablepress-id-2609 tr.row-10 td.column-5,.tablepress-id-2609 tr.row-11 td.column-5,
.tablepress-id-2609 tr.row-27 td.column-5,.tablepress-id-2609 tr.row-28 td.column-5,.tablepress-id-2609 tr.row-29 td.column-5
{
	background-color: #f6f6f6;
	padding: 4px 6px !important;
}

.tablepress-id-2609 tr.row-10 td.column-7,.tablepress-id-2609 tr.row-28 td.column-7 {
	color: #ae7373 !important;
}

.tablepress-id-2609 tr.row-13 td.column-7,.tablepress-id-2609 tr.row-14 td.column-7,.tablepress-id-2609 tr.row-15 td.column-7 {
	background-color: #f6f6f6;
	color:#b18700;
	padding: 0px !important;
}


.tablepress-id-2609 tr.row-14 td.column-7,.tablepress-id-2609 tr.row-36 td.column-7
{
letter-spacing: -0.025em !important;
	color:#369434;
}


.tablepress-id-2609 tr.row-35 td.column-7,.tablepress-id-2609 tr.row-36 td.column-7,.tablepress-id-2609 tr.row-37 td.column-7 {
	padding: 0px !important;
	background-color: #f6f6f6;
}

.tablepress-id-2609 tr.row-27 td.column-7,.tablepress-id-2609 tr.row-29 td.column-7 {
	color: #333333;
}


.tablepress-id-2609 tr.row-4 td.column-1,.tablepress-id-2609 tr.row-8 td.column-1,.tablepress-id-2609 tr.row-12 td.column-1,.tablepress-id-2609 tr.row-16 td.column-1,.tablepress-id-2609 tr.row-22 td.column-1,.tablepress-id-2609 tr.row-26 td.column-1,.tablepress-id-2609 tr.row-30 td.column-1,.tablepress-id-2609 tr.row-34 td.column-1,
.tablepress-id-2609 tr.row-6 td.column-3,.tablepress-id-2609 tr.row-14 td.column-3,.tablepress-id-2609 tr.row-24 td.column-3,.tablepress-id-2609 tr.row-32 td.column-3,
.tablepress-id-2609 tr.row-10 td.column-5,.tablepress-id-2609 tr.row-28 td.column-5
{
letter-spacing: -0.025em !important;
	color:#369434;
	font-weight: bold;
}














/* Tabell 2506: Tabell Vinter */

.tablepress-id-2506 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: -.0175em;
	font-size: .85em !important;
	font-weight: 600;
	min-width: 100%;
	width: auto;
	white-space: nowrap;
	border-style: hidden !important;
	float: none;
}


/* Negativa tal – tabell 2506, kolumn 6 */
.tablepress-id-2506 td.column-6.negative-value {
  color: #a56161 !important;
}


.tablepress-id-2506 th {
    color: #ffffff !important;
    background-color: #387280 !important;
    padding: 5px !important;
    font-size: 0.7em !important;
}

.tablepress-id-2506 td {
	color: #252525 !important;
		padding: 9px 3px 7px 3px;
}

.tablepress-id-2506 a {
	color: #252525 !important;
}

.tablepress-id-2506 a:hover {
	color: #325c79 !important;
}


/* HIGHLIGHT RADER */
.tablepress-id-2506 .row-highlight-ambj td,
.tablepress-id-2506 .row-highlight-axelsson td,
.tablepress-id-2506 .row-highlight-bunninger td,
.tablepress-id-2506 .row-highlight-halvardsson td,
.tablepress-id-2506 .row-highlight-heydecke td,
.tablepress-id-2506 .row-highlight-nordlund td,
.tablepress-id-2506 .row-highlight-widtfelt td,
.tablepress-id-2506 .row-highlight-sandberg td,
.tablepress-id-2506 .row-highlight-herman td,
.tablepress-id-2506 .row-highlight-wilhelmsson td,
.tablepress-id-2506 .row-highlight-robert td,
.tablepress-id-2506 .row-highlight-hedin td,
.tablepress-id-2506 .row-highlight-edblad td,
.tablepress-id-2506 .row-highlight-gute td,
.tablepress-id-2506 .row-highlight-mossinger td,
.tablepress-id-2506 .row-highlight-eek td
{
	background-color: #ffe2cb;
}


.tablepress-id-2506 tr.row-1 td.column-1 {
	border-radius: 8px 0 0 0 !important;
}
.tablepress-id-2506 tr.row-17 td.column-1 {
	border-radius: 0 0 0 10px !important;
}
.tablepress-id-2506 tr.row-1 th.column-7 {
  border-radius: 0 8px 0 0 !important;
	color:#ffffff !important;
}
.tablepress-id-2506 tr.row-17 td.column-7 {
	border-radius: 0 0 10px 0 !important;
}





.tablepress-id-2506 tr.row-9 {
		border-bottom: 2px solid #c87c7b !important;
}



.tablepress-id-2506 tr.row-2 td.column-1,.tablepress-id-2506 tr.row-3 td.column-1,.tablepress-id-2506 tr.row-4 td.column-1, .tablepress-id-2506 tr.row-5 td.column-1,.tablepress-id-2506 tr.row-6 td.column-1,.tablepress-id-2506 tr.row-7 td.column-1,.tablepress-id-2506 tr.row-8 td.column-1,.tablepress-id-2506 tr.row-9 td.column-1 {
	color: #9f9f9f !important;
}

.tablepress-id-2506 tr.row-10 td.column-1,.tablepress-id-2506 tr.row-11 td.column-1,.tablepress-id-2506 tr.row-12 td.column-1,.tablepress-id-2506 tr.row-13 td.column-1,.tablepress-id-2506 tr.row-14 td.column-1,.tablepress-id-2506 tr.row-15 td.column-1,.tablepress-id-2506 tr.row-16 td.column-1,.tablepress-id-2506 tr.row-17 td.column-1 {
	color: #9f9f9f !important;
}

.tablepress-id-2506:hover {
	color: #ffffff !important;
}

.tablepress-id-2506 .column-1 {
	text-align: right;
	min-width:20px !important;
	max-width: 30px !important;
	color: #81b581 !important;
	font-weight:800;
	padding-right:5px !important;
}

.tablepress-id-2506 .column-2 {
	text-align: left;
	width: auto;
}

.tablepress-id-2506 .column-3,.tablepress-id-2506 .column-4,.tablepress-id-2506 .column-5,.tablepress-id-2506 .column-6,.tablepress-id-2506 .column-7 {
	text-align: center;
	width: 40px;
}

.tablepress-id-2506 tr,
td {
	padding: 5px 3px 4px 3px;
}

.tablepress-id-2506 .column-7 {
    color: #4190c7 !important;
    font-weight: bolder !important;
}




/* Tabell 2507: Spelschema vinter 2025 */

.tablepress-id-2507 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: .9em !important;
	font-weight: 600;
	letter-spacing: -.04em;
	width: 100%;
	white-space: nowrap;
	border-style: hidden !important;
	--hover-bg-color: #edf7ea !important;
}

.tablepress-id-2507 td {
    padding: 6px 3px 6px 3px !important;
}

.tablepress-id-2507 a {
	color: #505050;
}

.tablepress-id-2507 a:hover {
	color: #325c79 !important;
	text-decoration: none;
}

.tablepress-id-2507 th {
    background-color: #AE7373 !important;
}

.tablepress-id-2507 .column-1 {
	text-align: center;
	width:45%;
}
.tablepress-id-2507 .column-2 {
	text-align: center;
	width:10%;
	color: #737373 !important;
}
.tablepress-id-2507 .column-3 {
	text-align: center;
	width: 45%;
}



/* Tabell 2608: Spelschema lag för lag våren 2026 */

.tablepress-id-2608 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: -.0175em;
	font-size: .85em !important;
	font-weight: 600;
	min-width: 90%;
	width: auto;
	float:none;
	white-space: nowrap;
	border-style: hidden !important;
}





.tablepress-id-2608 th {
    background-color: #387280 !important;
    font-size: .7em !important;
}


.tablepress-id-2608 th.column-1 {
	border-radius: 8px 0 0 0 !important;
}
.tablepress-id-2608 tr.row-16 td.column-1 {
	border-radius: 0 0 0 10px !important;
}
.tablepress-id-2608 th.column-4 {
    border-radius: 0 8px 0 0;
}
.tablepress-id-2608 tr.row-16 td.column-4 {
	border-radius: 0 0 10px 0 !important;
}





.tablepress-id-2608 a {
	color: #252525;
}



.tablepress-id-2608 .column-1 {
	text-align: center;
	max-width: 70px !important;
	color: #777c80;
}
.tablepress-id-2608 .column-2 {
	text-align: left;
	width: 28px !important;
	color: #a56161 !important;
}
.tablepress-id-2608 .column-4 {
	text-align: center;
	color:#737373;
}
.tablepress-id-2608 .column-3 {
	text-align: left;
}

.tablepress-id-2608 .row-1 .column-2 {
	letter-spacing: -.025em !important;
}
.tablepress-id-2608 .row-1 .column-1 {
	text-align: center !important;
}

.tablepress-id-2608 td {
	color: #333333;
	padding: 8px 2px !important;
}

.tablepress-id-2608 .row-3,.tablepress-id-2608 .row-5,.tablepress-id-2608 .row-7,.tablepress-id-2608 .row-9,.tablepress-id-2608 .row-11,.tablepress-id-2608 .row-13,.tablepress-id-2608 .row-15 {
    background-color: #fdfdfd !important;
}
.tablepress-id-2608 .row-2,.tablepress-id-2608 .row-4,.tablepress-id-2608 .row-6,.tablepress-id-2608 .row-8,.tablepress-id-2608 .row-10,.tablepress-id-2608 .row-12,.tablepress-id-2608 .row-14,.tablepress-id-2608 .row-16 {
    background-color: #f8f8f8 !important;
}







/* Tabell 2508: Spelschema lag för lag våren 2025 */

.tablepress-id-2508 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: .85em !important;
	font-weight: 600;
	letter-spacing: -.04em;
	width: 100%;
	float:none;
	white-space: nowrap;
	border-style: hidden !important;
}





.tablepress-id-2508 th {
    background-color: #387280 !important;
    font-size: .7em !important;
}


.tablepress-id-2508 th.column-1 {
	border-radius: 8px 0 0 0 !important;
}
.tablepress-id-2508 tr.row-16 td.column-1 {
	border-radius: 0 0 0 10px !important;
}
.tablepress-id-2508 th.column-4 {
    border-radius: 0 8px 0 0;
}
.tablepress-id-2508 tr.row-16 td.column-4 {
	border-radius: 0 0 10px 0 !important;
}





.tablepress-id-2508 a {
	color: #252525;
}

.tablepress-id-2508 a:hover {
	color: #325c79 !important;
	text-decoration: none;
}


.tablepress-id-2508 .column-1 {
	text-align: center;
	max-width: 70px !important;
	color: #777c80;
}

.tablepress-id-2508 .column-2 {
	text-align: left;
	width: 28px !important;
	color: #a56161 !important;
}
.tablepress-id-2508 .column-4 {
	text-align: center;
	color:#737373;
}
.tablepress-id-2508 .column-3 {
	text-align: left;
}

.tablepress-id-2508 .row-1 .column-2 {
	letter-spacing: -.025em !important;
}
.tablepress-id-2508 .row-1 .column-1 {
	text-align: center !important;
}

.tablepress-id-2508 td {
	color: #333333;
	padding: 8px 2px !important;
}

.tablepress-id-2508 .row-3,.tablepress-id-2508 .row-5,.tablepress-id-2508 .row-7,.tablepress-id-2508 .row-9,.tablepress-id-2508 .row-11,.tablepress-id-2508 .row-13,.tablepress-id-2508 .row-15 {
    background-color: #fdfdfd !important;
}
.tablepress-id-2508 .row-2,.tablepress-id-2508 .row-4,.tablepress-id-2508 .row-6,.tablepress-id-2508 .row-8,.tablepress-id-2508 .row-10,.tablepress-id-2508 .row-12,.tablepress-id-2508 .row-14,.tablepress-id-2508 .row-16 {
    background-color: #f4f4f4 !important;
}

<!--
.tablepress-id-2508 tr:hover {
 background-color: #e4e4e4 !important;	
}
.tablepress-id-2508 tr:hover td {
 background-color: transparent;	
}
-->




/* Tabell 2509: Slutspelet vintern 2025 */

.tablepress-id-2509>:not(caption)>*>* {
    vertical-align: middle !important;
}

.tablepress-id-2509 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: .975em !important;
	font-weight: 600;
	letter-spacing: -.03em;
	width: 100%;
	min-width: 800px;
	white-space: nowrap;
	border: 0 solid #fff0 !important;
}

.tablepress-id-2509 th {
    background-color: #b18700;
		font-weight: bolder !important;
		letter-spacing: .025em;
}

.tablepress-id-2509 th.tr.row-1 td.column-1 {
  background-color: #ffffff !important;
}


.tablepress-id-2509 a {
	color: #505050;
}

.tablepress-id-2509 a:hover {
	color: #325c79 !important;
	text-decoration: none;
}


.tablepress-id-2509 tr.row-27 td.column-3,.tablepress-id-2509 tr.row-27 td.column-4,.tablepress-id-2509 tr.row-27 td.column-5,.tablepress-id-2509 tr.row-27 td.column-6,.tablepress-id-2509 tr.row-27 td.column-7 {
	color: #ffffff !important;
	text-align: center !important;
	font-weight: bolder !important;
  background-color: #98acbe;
  font-size: .8em;
	letter-spacing: .025em;
  line-height: 1.05;
}

.tablepress-id-2509 tr.row-2   {
	color: #a56161 !important;
	height: 1.25em;
}

.tablepress-id-2509 tr.row-2 td.column-1,.tablepress-id-2509 tr.row-2 td.column-3,.tablepress-id-2509 tr.row-2 td.column-5,.tablepress-id-2509 tr.row-2 td.column-7,
.tablepress-id-2509 tr.row-28 td.column-3,.tablepress-id-2509 tr.row-28 td.column-5,.tablepress-id-2509 tr.row-28 td.column-7 {
	color: #ae7373 !important;
	font-size: .875em !important;
}

.tablepress-id-2509 .column-1,.tablepress-id-2509 .column-3,.tablepress-id-2509 .column-5,.tablepress-id-2509 .column-7 {
	width: auto;
	min-width: 250px;
}

.tablepress-id-2509 .column-2,.tablepress-id-2509 .column-4,.tablepress-id-2509 .column-6 {
	padding: 0px !important;
	width:auto;
	height: auto;
	max-width: 35px !important;
	border: 0px solid #fff0 !important;
}

.tablepress-id-2509 .column-1, .tablepress-id-2509 .column-3, .tablepress-id-2509 .column-5, .tablepress-id-2509 .column-7,
.tablepress-id-2509 .column-2, .tablepress-id-2509 .column-4, .tablepress-id-2509 .column-6
{
	text-align: center;
}



.tablepress-id-2509 tr.row-3 td.column-1,.tablepress-id-2509 tr.row-4 td.column-1,.tablepress-id-2509 tr.row-5 td.column-1,
.tablepress-id-2509 tr.row-7 td.column-1,.tablepress-id-2509 tr.row-8 td.column-1,.tablepress-id-2509 tr.row-9 td.column-1,
.tablepress-id-2509 tr.row-11 td.column-1,.tablepress-id-2509 tr.row-12 td.column-1,.tablepress-id-2509 tr.row-13 td.column-1,
.tablepress-id-2509 tr.row-15 td.column-1,.tablepress-id-2509 tr.row-16 td.column-1, .tablepress-id-2509 tr.row-17 td.column-1,
.tablepress-id-2509 tr.row-19 td.column-1,.tablepress-id-2509 tr.row-20 td.column-1, .tablepress-id-2509 tr.row-21 td.column-1,
.tablepress-id-2509 tr.row-23 td.column-1,.tablepress-id-2509 tr.row-24 td.column-1, .tablepress-id-2509 tr.row-25 td.column-1,



.tablepress-id-2509 tr.row-5 td.column-3,.tablepress-id-2509 tr.row-6 td.column-3,.tablepress-id-2509 tr.row-7 td.column-3,
.tablepress-id-2509 tr.row-9 td.column-3,.tablepress-id-2509 tr.row-10 td.column-3,.tablepress-id-2509 tr.row-11 td.column-3,
.tablepress-id-2509 tr.row-17 td.column-3,.tablepress-id-2509 tr.row-18 td.column-3, .tablepress-id-2509 tr.row-19 td.column-3,
.tablepress-id-2509 tr.row-21 td.column-3,.tablepress-id-2509 tr.row-22 td.column-3, .tablepress-id-2509 tr.row-23 td.column-3,

.tablepress-id-2509 tr.row-29 td.column-3,.tablepress-id-2509 tr.row-30 td.column-3,.tablepress-id-2509 tr.row-31 td.column-3,
.tablepress-id-2509 tr.row-33 td.column-3,.tablepress-id-2509 tr.row-34 td.column-3,.tablepress-id-2509 tr.row-35 td.column-3,
.tablepress-id-2509 tr.row-37 td.column-3,.tablepress-id-2509 tr.row-38 td.column-3,.tablepress-id-2509 tr.row-39 td.column-3,
.tablepress-id-2509 tr.row-41 td.column-3,.tablepress-id-2509 tr.row-42 td.column-3,.tablepress-id-2509 tr.row-43 td.column-3,

.tablepress-id-2509 tr.row-7 td.column-5,.tablepress-id-2509 tr.row-8 td.column-5,.tablepress-id-2509 tr.row-9 td.column-5,
.tablepress-id-2509 tr.row-19 td.column-5,.tablepress-id-2509 tr.row-20 td.column-5,.tablepress-id-2509 tr.row-21 td.column-5,

.tablepress-id-2509 tr.row-31 td.column-5,.tablepress-id-2509 tr.row-32 td.column-5,.tablepress-id-2509 tr.row-33 td.column-5,
.tablepress-id-2509 tr.row-39 td.column-5,.tablepress-id-2509 tr.row-40 td.column-5,.tablepress-id-2509 tr.row-41 td.column-5

{
	background-color: #f6f6f6;
	padding: 4px 6px !important;
}


.tablepress-id-2509 tr.row-10 td.column-7,.tablepress-id-2509 tr.row-28 td.column-7 {
	color: #ae7373 !important;
}

.tablepress-id-2509 tr.row-13 td.column-7,.tablepress-id-2509 tr.row-14 td.column-7,.tablepress-id-2509 tr.row-15 td.column-7 {
	background-color: #f6f6f6;
	color:#b18700;
	padding: 0px !important;
}


.tablepress-id-2509 tr.row-14 td.column-7,.tablepress-id-2509 tr.row-36 td.column-7
{
letter-spacing: -0.025em !important;
	color:#369434;
}


.tablepress-id-2509 tr.row-35 td.column-7,.tablepress-id-2509 tr.row-36 td.column-7,.tablepress-id-2509 tr.row-37 td.column-7 {
	padding: 0px !important;
	background-color: #f6f6f6;
}

.tablepress-id-2509 tr.row-27 td.column-7,.tablepress-id-2509 tr.row-29 td.column-7 {
	color: #333333;
}


.tablepress-id-2509 tr.row-4 td.column-1,.tablepress-id-2509 tr.row-8 td.column-1,.tablepress-id-2509 tr.row-12 td.column-1,.tablepress-id-2509 tr.row-16 td.column-1,.tablepress-id-2509 tr.row-20 td.column-1,.tablepress-id-2509 tr.row-24 td.column-1,
.tablepress-id-2509 tr.row-6 td.column-3,.tablepress-id-2509 tr.row-10 td.column-3,.tablepress-id-2509 tr.row-18 td.column-3,.tablepress-id-2509 tr.row-22 td.column-3,
.tablepress-id-2509 tr.row-22 td.column-3,.tablepress-id-2509 tr.row-30 td.column-3,.tablepress-id-2509 tr.row-34 td.column-3,.tablepress-id-2509 tr.row-38 td.column-3,.tablepress-id-2509 tr.row-42 td.column-3,
.tablepress-id-2509 tr.row-8 td.column-5,.tablepress-id-2509 tr.row-20 td.column-5,.tablepress-id-2509 tr.row-32 td.column-5,.tablepress-id-2509 tr.row-40 td.column-5,
.tablepress-id-2509 tr.row-32 td.column-7
{
letter-spacing: -0.025em !important;
	color:#369434;
	font-weight: bold;
}



/* Tabell 2510: CUPEN */

.tablepress-id-2510 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: .9em !important;
	font-weight: 600;
	letter-spacing: -.04em;
	width: 100%;
	white-space: nowrap;
	border-style: hidden !important;
	--hover-bg-color: #edf7ea !important;
}

.tablepress-id-2510 td {
    padding: 6px 3px 6px 3px !important;
}

.tablepress-id-2510 a {
	color: #333333;
}

.tablepress-id-2510 a:hover {
	color: #325c79 !important;
	text-decoration: none;
}

.tablepress-id-2510 th {
    background-color: #AE7373 !important;
}

.tablepress-id-2510 .column-1 {
	text-align: center;
	width:45%;
}
.tablepress-id-2510 .column-2 {
	text-align: center;
	width:10%;
	color: #737373 !important;
}
.tablepress-id-2510 .column-3 {
	text-align: center;
	width: 45%;
}











/* font-family: 'PT Sans', sans-serif; */




h1, h2, h3, h4, h5, h6, .heading-font, .banner h1, .banner h2 {
    letter-spacing: -.015em;
}

.nav > li > a {
    letter-spacing: -0.025em;
}

.top-bar-nav > li > a {
    color: #797979 !important;
	letter-spacing: -.015em !important;
}

.top-bar-nav > li > a:hover {
    color: #505050 !important;
}


.nav-top-link{
	text-transform: uppercase;
  display: inline-block;
  transform: translateZ(0); /* minskar risk för jitter */
  transition:
    transform 0.25s cubic-bezier(.4,0,.2,1),
    color 0.2s ease;
  transform-origin: center;
  will-change: transform;
}

/* Hover endast på enheter som faktiskt kan hovera */
@media (hover: hover) and (pointer: fine) {
  .nav-top-link:hover{
    transform: scale(1.05) translateY(0px);
  }
}

/* Bra för keyboard navigation */
.nav-top-link:focus-visible{
  transform: scale(1.05);
}


.header-block {
    min-height: 0px !important;
}


.absolute-footer {
    display: none;
}

.nav:not(.nav-slide) .active>.children {
    padding-bottom: 10px !important;
    font-size: .55em !important;
}


.nav-dropdown {
    min-width: 300px !important;
}

.nav-dropdown-has-border .nav-dropdown {
    border: 0px solid #ddd;
    margin-top: 7px;
}

.nav-dropdown-has-border .nav-dropdown {
    border: 0px solid #ddd;
}


.page-id-3368 div.header-block.block-html-after-header.z-1 {
    display: none;
}

.page-id-3368 .header-block {
    min-height: 0px !important;
    max-height: 0px !important;
    width: 100%;
}



@media (max-width: 479px) {
	.page-id-3368 .header-block {
    min-height: 0px !important;
    max-height: 0px !important;
}
	
	
.header-block {
    min-height: 0px !important;
}
	}








/* ***************** MEDIA MAX 479PX START ***************** */


@media (max-width: 479px) {


	
	.header-main {
    height: 65px;
}
	
		.tablepress-id-2507 {
		font-size: 0.85em !important;
		width: auto;
		min-width: 98%;
	}
	
			.tablepress-id-2607 {
		font-size: 0.85em !important;
		width: auto;
		min-width: 98%;
	}
	
	.tablepress-id-199 {
		font-size: 0.85em !important;
		width: auto;
		min-width: 98%;
	}
	

	
	.tablepress-id-115 {
		font-size: 0.95em !important;
	}	
	
		.tablepress-id-2608 {
		font-size: 0.95em !important;
	}	
	
	.tablepress-id-2508 {
		font-size: 0.95em !important;
	}	
	

	
	
	
		.tablepress-id-2506 .column-4, .tablepress-id-2506 .column-5 {
		display: none;
	}
	
.tablepress-id-2506 {
	font-size: 1em !important;
	letter-spacing: 0em;
		width: auto;
		min-width: 99%;
		white-space: nowrap;
	}

	.tablepress-id-2506 td {
		padding: 6px 2px 6px 2px !important;
}
	
.tablepress-id-2506 tr, td {
	padding: 2px 4px 3px 4px !important;
}
	
	
			.tablepress-id-2606 .column-4, .tablepress-id-2606 .column-5 {
		display: none;
	}
	
.tablepress-id-2606 {
	font-size: 1em !important;
	letter-spacing: 0em;
		width: auto;
		min-width: 99%;
		white-space: nowrap;
	}

	.tablepress-id-2606 td {
		padding: 6px 2px 6px 2px !important;
}
	
.tablepress-id-2606 tr, td {
	padding: 2px 4px 3px 4px !important;
}
	
	
	
	
	.tablepress-id-111 .column-4, .tablepress-id-111 .column-5 {
		display: none;
	}
	
.tablepress-id-111 {
	font-size: .95em !important;
	letter-spacing: 0em;
		width: auto;
		min-width: 99%;
		white-space: nowrap;
	}

	.tablepress-id-111 td {
		padding: 4px 2px 4px 2px !important;
}
	
.tablepress-id-111 tr, td {
	padding: 2px 2px 3px 2px !important;
}
	
/*	.tablepress-id-111 tr.row-3,.tablepress-id-111 tr.row-7 {
		border-bottom: 2px solid #bebebe !important;
} */
	

	
	
	}






/* ***************** MEDIA MAX 479PX SLUT ***************** */



@media (max-width: 549px) {
    .is-large {
        font-size: 1.25em;
    }
}



.nav>li>a {
    padding: 0 !important;
}


.off-canvas-right.dark .mfp-content {
    background-color: #0b4463;
}

.nav-uppercase>li>a {
    letter-spacing: -.035em !important;
}

.off-canvas-right .mfp-content, .off-canvas-left .mfp-content {
    --drawer-width: 275px;
}

.off-canvas .sidebar-menu {
    padding: 10px 0 20px 0;
}

.off-canvas .sidebar-menu li.menu-item.menu-item-type-post_type.menu-item-object-page {
	    font-size: 1.15em !important;
}


.off-canvas .sidebar-menu li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-3318 {
    background-color: #f0be20;
}
.off-canvas .sidebar-menu li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-3318 >a {
    color: #0b4463;
}


.menu-item-3459, .menu-item-2646 {
   font-size: 1.3em;
}


.nav.nav-small>li>a {
    font-weight: 800 !important;
	padding-top: 7px;
}


.matcherlink {
	color:#505050;
}
.matcherlink:hover {
	color:#2189c1;
}

.footerlink {
	color:#a9c4d3;
}

.footerlink:hover {
	color:#2189c1;
}

.zenter_link {
	font-weight: bold;
	color:#ffffff !important;
}

.zenter_link:hover {
	color: #6ED500 !important;
}

.nav-uppercase>li>a {
    letter-spacing: -.012em;
}

.dalt-table td {
    border-width: 0 !important;
}

button[type="submit"] {
	background-color: #448e42;
	color: #fff;
}

button[type="submit"]:hover {
	background-color: #1b6e19;
}

.dalt-table td {
padding: 4px 6px 4px 6px !important;
border-width: 0px;
}

@media (max-width: 989px) {
.header-block {
    min-height: 0px !important;
}

	
	#dalt-table-5 tr td {
    padding: 4px 6px 4px 6px !important;
}
}









.header-bottom {
    min-height: 0px !important;
}


.dropdowncontent-dropdown {
	margin: auto auto 1em auto;
	max-width: 300px !important;
}


#menu-item-315 >a {
color: #fdd1a1;
}

#menu-item-315 >a:hover {
	color: #f0be20;
}

#menu-item-3316 >a {
padding: 6px 10px;
border-radius: 10px;
border: 2px solid #f0be20;
}

#menu-item-3316 >a:hover {
color: #262626;
background-color: #f0be20;
}

#menu-item-1555 >a {
background-color: #dd3939;
}


.page-id-1121 div.header-block.block-html-after-header.z-1 {
    display: none;
}

select {
    background-color: #e35c24;
    color: #fff;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.05em !important;
	font-weight: 600;
}

td {
    border-bottom: 0px solid #ffffff;
}

a {
	color: #505050;
}

a:hover {
	color: #325c79;
}

a.invert {
	color: #325c79;
}

a.invert:hover {
	color: #505050;
}

a.footermail {
	color:#f0be20;
}
a.footermail:hover {
	color:#ffffff;
}


a.lagen_meny {
  color: #505050;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1em;
	font-weight: 600;
	padding: 5px 5px;
}

a.lagen_meny:hover {
  color: #000000;
	background-color: #325c79;
	padding: 5px 9px;
	border-radius: 5px;
}





/* Tabell 2526: Kalender */
.tablepress-id-2526 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	letter-spacing: -.035em;
	font-weight: 600;
	min-width: 75%;
	width: auto;
	white-space: nowrap;
	border-style: hidden !important;
	float: none;
}

.tablepress-id-2526 th {
    background-color: #cb8181 !important;
		text-align: center;
	  font-size: 0.775em !important;
}

.tablepress-id-2526 td {
		text-align: center;
	  font-size: 0.725em !important;
}

.tablepress-id-2526 td:hover {
		background-color: #333333 !important;
	color: #ffffff;
}

.tablepress-id-2526 th:nth-child(19), .tablepress-id-2526 th:nth-child(20), .tablepress-id-2526 th:nth-child(21), .tablepress-id-2526 th:nth-child(22), .tablepress-id-2526 th:nth-child(23) {
	background-color: #898989 !important;
}

.tablepress-id-2526 tr.row-2 td {
	border-right: 1px solid #cccccc;
}

.tablepress-id-2526 tr.row-2 td.column-1 {
		font-weight: bold;
	text-transform: uppercase;
	background-color: #497EA3;
	color:#ffffff;
	padding-left: 5px !important;
	padding-right: 5px !important;
	border-right: none !important;
}

.tablepress-id-2526 tr.row-2 td.column-1:hover {
	background-color: #497EA3 !important;
}

.tablepress-id-2526 tr.row-3 td.column-1 {
		font-weight: bold;
	text-transform: uppercase;
	background-color: #ccac59;
	color:#ffffff;
	padding-left: 5px !important;
	padding-right: 5px !important;
	border-right: none !important;
}

.tablepress-id-2526 tr.row-3 td.column-1:hover {
	background-color: #ccac59 !important;
}



.tablepress-id-2526 tr.row-2 td.column-17,.tablepress-id-2526 tr.row-2 td.column-18,.tablepress-id-2526 tr.row-2 td.column-19 {
		background-color:#f6f6f6;
}
.tablepress-id-2526 tr.row-2 td.column-17,.tablepress-id-2526 tr.row-2 td.column-18 {
		border-right: none !important;
}

.tablepress-id-2526 tr.row-2 td.column-2 {
		text-align:center;
}

.tablepress-id-2526 tr.row-3 td.column-2 {
	background-color: #eeeeee;
	text-align: center;
}


.tablepress-id-2526 tr.row-2 td.column-17 {
		text-align:center;
		color:#C77B7B;
}
.tablepress-id-2526 tr.row-2 td.column-17:hover {
		color:#ffffff;
		background-color:#C77B7B !important;

}

.tablepress-id-2526 tr.row-2 td.column-23 {
	background-color: #ecca53;
	text-align:center;
}

.tablepress-id-2526 tr.row-2 td.column-23:hover {
	color: #ffffff !important;
}


.tablepress-id-2526 tr.row-3 td.column-5 {
	background-color: #e5e5e5;
	text-align:center;
}

.tablepress-id-2526 tr.row-3 td.column-9 {
	background-color: #eeeeee;
	text-align: center;
}

.tablepress-id-2526 tr.row-3 td.column-13 {
	background-color: #ecca53;
	text-align:center;
}

.tablepress-id-2526 tr.row-3 td.column-17:hover {
	background-color: #f0f0f0 !important;
}








