:root {
  --dark: #0B1728;
  /* 262424 */
  --form: whitesmoke;
  --red: #dd0055;
  --light: white;
  --white: whitesmoke;
  --black: black;
  --grey: lightgrey;
  --green: #118758;
  --borderRadiusSmall: 2px;
  --borderRadiusBig: 2px;
  --filters: #152545;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  position: relative;
}


.lateral {
  background-color: var(--dark);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  /*   font-family: 'Roboto Mono', monospace;
  font-family: 'Roboto Slab', serif; 
  font-family: 'Open Sans', sans-serif;*/
  font-family: 'Inter', sans-serif;
}

html {
  /*   font-family: 'Roboto Mono', monospace;
  font-family: 'Roboto Slab', serif; 
  font-family: 'Open Sans', sans-serif;*/
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

section {
  margin: 0 auto;
  width: 100%;
}

section.hero {
  width: 100%;
  min-height: 100vh;
  align-items: center;
}

button {
  background-color: var(--green);
  padding: 0.75rem;
  border-radius: var(--borderRadiusSmall);
  display: block;
  text-align: center;
  border: 0;
  color: var(--white);
  width: 100%;
  font-weight: 400;
  cursor: pointer;
  font-size:1.25rem;
}

button:hover {
  outline: none;
  background-color: var(--red);
}


.oppositeButton {
  background-color: var(--dark);
}

.in-blo {
  display: inline-block!important;
}

.link-back {
  background-color: var(--red);
  color: var(--white);
}

a.link-back {
  color: var(--white);
}
a.link-back:link {
  color: var(--white);
  text-decoration: none;
}
a.link-back:visited {
  color: var(--white);
  text-decoration: none;
}

.oppositeButton:hover {
  background-color: var(--white);
}

tr.iteml > td >a.button-table {
  background-color: var(--black)!important;
  width: 100%!important;
  display: block;
  text-align: center;
  border-radius: 2px;
  color: var(--white);
  padding: 1rem;
  font-weight: 400;
}
tr.iteml > td >a.button-table:hover {
  background-color: var(--green)!important;
}

select {
  background-color: var(--white);
  height: 2rem;
  border-radius: var(--borderRadiusSmall);
  width: 100%;
}

.hero {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.card {
  min-width: 50%;
  background-color: #003366;
  padding: 1rem;
  border-radius: var(--borderRadiusBig);
  margin-top: 4rem;
  color: var(--white);
}

.item {
  background: var(--white);
  min-width: 250px;
  padding: 1rem;
  border-radius: var(--borderRadiusSmall);
  margin: 0.5rem 1rem 0.5rem 1rem;
  color: var(--dark);
  /*     box-shadow:  5px 5px 9px #1f1d1d,
            -5px -5px 9px #2d2b2b; */
  height: fit-content;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid;
  border-color: var(--white);
}

.itemHome {
  background: var(--dark);
  min-width: 250px;
  min-height: 200px;
  padding: 1rem;
  border-radius: var(--borderRadiusSmall);
  margin: 0.5rem 1rem 2rem 1rem;
  color: var(--white);
  height: fit-content;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.itemHome>.itemHomeImg {
  margin: 0 auto;
  width: 30%;
  margin-bottom: 1rem;
}

.zeroPad {
  padding: 0;
  padding-bottom: 0.5rem;
}

.zeroMargin {
  margin: 0 !important;
}

.itemImgWrapper {
  margin: 0 0 0.5rem 0;
  width: 100%;
  height: 160px;
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /* Resize the background image to cover the entire container */
  border-radius: var(--borderRadiusSmall);
}

.itemImgWrapper>img {
  width: 100%;
  border-radius: var(--borderRadiusSmall);
}

.itemImgWrapperProfile {
  margin: 0 0 0.5rem 0;
  width: 100%;
  height: 320px;
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /* Resize the background image to cover the entire container */
  border-radius: var(--borderRadiusSmall);
}

.profileText {
  margin: 0 0 1rem 0!important;
  font-weight: 500;
}

.profileText>div {
  padding: 0.5rem
}

.imageProfile {
  width: 100%;
  border-radius: var(--borderRadiusSmall);
  height: 100px;
  object-fit: cover;
}


.itemTable {
  padding: 1rem;
}

.cardContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 8px;
  padding: 0 0 2rem 0;
}


.gridWrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: 8px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: 100vh;
  align-content: start;
}

.gridWrapper.home {
  min-height: 1rem;
  background-color: var(--white);
  grid-template-columns: repeat(3, 1fr);
}


.gridWrapper2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  top: 4rem;
  align-items: center;
  min-height: 100vh;
}

.boxLeft2 {
  grid-column-start: 1;
  grid-column-end: 2;
  text-align: left;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.boxLeft2 h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.boxLeft2 h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.boxLeftHome {
  grid-column-start: 1;
  grid-column-end: 2;
  text-align: left;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.boxLeftHome h1 {
  color: var(--white);
  font-size: 10rem;
  margin-bottom: 1rem;
}

.boxLeftHome h2 {
  color: var(--white);
  font-size: 10rem;
  margin-bottom: 1rem;
  font-weight: 500;
  -webkit-text-fill-color: #0B1728;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.boxRight2 {
  grid-column-start: 2;
  grid-column-end: 3;
  text-align: center;
  padding: 1rem;
}

.boxRight {
  grid-column-start: 2;
  grid-column-end: 5;
  margin-top: 6rem;
}

.boxLeft {
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 4rem;
}

.boxCenter {
  grid-column-start: 1;
  grid-column-end: 4;
  text-align: center;
  margin: 4rem auto 2rem auto;
  background-color: var(--form);
  color: var(--dark);
  border-radius: var(--borderRadiusSmall);
  padding: 1rem;
}

.boxCenter img {
  text-align: center;
}

.boxCenter a {
  color: black;
}

.buttonVideo {
  display: inline;
  width: 100%;
  padding: 1rem;
  border-radius: var(--borderRadiusSmall);
  background-color: darkgrey;
  margin: 1rem 0 1rem 0;
  cursor: pointer;
}

a.button {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  margin: 1rem 1rem 0 0;
  text-decoration: none;
  background-color: var(--form);
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 700;
  border-radius: var(--borderRadiusSmall);
  cursor: pointer;
}

.sticky {
  position: sticky;
  top: 4rem;
}

.chartHalf>h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 1rem 1rem 1rem;
}

.chartFull>h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0 1rem 0;
}

/* icons */
.action-icon {
  margin: 0 0 0 0.25rem;
  cursor: pointer;
}

/* navigation style */

header {
  text-align: center;
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 4rem;
  background-color: var(--dark);
  color: var(--white);
  top: 0;
  padding-right: 4rem !important;
}

.nav-toggle {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}


.nav-toggle-label {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--white);
  height: 2px;
  width: 2em;
  border-radius: var(--borderRadiusSmall);
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

nav {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--dark);
  width: 100%;
  transform: scale(1, 0);
  transform-origin: top;
  height: 100vh;
  padding: 2rem 0rem;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
}

.nav-toggle:checked~nav {
  transform: scale(1, 1);
}

.nav-toggle:checked~nav a {
  opacity: 1;
}

.logo {
  left: 2rem;
  top: 1rem;
  position: absolute;
  z-index: 9;
}


.logo-header {
  height: 48px;
}

.logo-footer {
  margin: 0.5rem 0 0.5rem 0;
  height: 32px;
}

.dropdown {
  margin-top: 1rem;
}

.menu-toggle {
  display: none;
  visibility: hidden;
}

.pad {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pad6 {
  padding-left: 6rem;
  padding-right: 6rem;
}

/* Change the link color to #111 (black) on hover */
li a:hover {

}

footer {
  background-color: var(--form);
  width: 100%;

}

.menu-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  column-gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: var(--dark);
}

.menu-footer-item>h3 {
  font-weight: 700;
  font-size: 1.5rem;
}

.menu-footer-item>ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.menu-footer-item>ul>li {
  padding: 1rem 0 1rem 0;
}

.menu-footer-item>ul>li>a {
  display: block;
  color: var(--dark);
  text-align: center;
  text-decoration: none;
  float: left;
  line-height: normal;
}

.copyright {
  text-align: center;
  color: var(--dark);
  font-size: 1rem;
  padding: 2rem;
  font-weight: 700;
}

input {
  height: 1rem;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.control-group {
  margin: 1rem;
}

.controls p {
  display: none;
}

.controls ul {
  display: none;
}

.padGridWrapper {
  padding: 0 2rem 2rem 2rem;
}

.item>table>tbody>tr>td {
  padding: 0.5rem;
}

.item>table>tbody>tr>td:nth-child(2) {
  font-weight: 700;
}

.item>table {
  margin: 0 0 0.5rem 0;
}

.zeroPad>table {
  margin: 1rem;
}

.zeroPad>.button-url {
  margin: 1rem 1rem 0.5rem 1rem;
}

.menu>form>label,
input,
select {
  display: block;
  margin: 0.5rem 0 0.5rem 0;
}

/** buttons **/
.buttonsContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 0;
}

.button-delete {
  background-color: var(--form);
  padding: 0.6rem;
  display: inline-block;
  border-radius: var(--borderRadiusSmall);
  margin-left: 0.5rem;
  cursor: pointer;
}

.button-url-form {
  background-color: var(--dark);
  color: var(--white);
  padding: 1rem;
  display: inline;
  border-radius: var(--borderRadiusSmall);
  text-align: center;
  margin: 0.5rem 0.25rem 0 0.25rem;
  text-decoration: none !important;
  width: 50%;
  cursor: pointer;
}

.button-url-form>a:link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-url-form>a:visited {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-url-form>a:hover {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-url-form>a:active {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-url {
  background-color: var(--dark);
  padding: 1rem;
  display: inline-block;
  border-radius: var(--borderRadiusSmall);
  display: block;
  text-align: center;
  cursor: pointer;
}

.button-url:hover {
  background-color: var(--form);
  padding: 1rem;
  display: inline-block;
  border-radius: var(--borderRadiusSmall);
  display: block;
  text-align: center;
  cursor: pointer;
}

.button-url>a:link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 4rem 1rem 4rem;
  cursor: pointer;
}

.button-url>a:visited {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-url>a:hover {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-url>a:active {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.redBg {
  background-color: var(--white);
  border: 2px solid var(--form);
  margin-top: 0.5rem;
}

.redBg>a:link {
  color: var(--form);
}

.redBg>a:hover {
  color: var(--white);
}

/**  search **/

#searchBar {
  color: var(--white);
  border-bottom: 2px solid var(--white);
  display: inline-block;
  width: 20rem;
}

#searchBar::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--white);
  opacity: 1;
  /* Firefox */
}

input {
  background: none;
  border-bottom: 2px solid var(--dark);
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  font-size: 1rem;
  color: var(--black);
  padding: 0 0 0.5rem 0;
  height: auto;
}

input:focus {
  outline: none;
  border-bottom: 3px solid var(--dark);
  color: var(--black);
}

::-webkit-input-placeholder {
  color: var(--black);

}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--white);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--white);
}

:-ms-input-placeholder {
  color: var(--white);
}

/*   button {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    position: absolute;
    top: 200px;
    left: 275px;
  }
   */


button:focus {
  outline: none;
  cursor: pointer;
}

.fas {
  color: var(--white);
  font-size: 2em;
}

.container {
  border: 2px solid var(--white);
  border-radius: var(--borderRadiusSmall);
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  top: 4rem;
  margin: 0 0 1rem 0;
  position: sticky;
  height: fit-content;
  z-index: 8;
  background-color: var(--filters)!important;
}


.boxForm {
  background-color: var(--form);
  top: 6rem;
  padding: 1rem;
  font: inherit;
  border-radius: var(--borderRadiusSmall);
  /*     box-shadow: 5px 5px 9px #1f1d1d, -5px -5px 9px #2d2b2b; */
  margin-bottom: 1rem;
}

.boxForm>h1 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.boxHeader {
  top: 4rem;
  padding: 1rem 1rem 0.5rem 0;
  background-color: var(--dark);
  z-index: 9;
}

.boxHeader>h1 {
  font: inherit;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 1rem 1rem 0;
  color: var(--white);
}

.boxInfo {
  border-radius: var(--borderRadiusSmall);
  background-color: var(--form);
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.5rem;
  display: inline-block;
  margin: 0.75rem 0.5rem 0.25rem 0;
}

.boxInfoHome {
  border-radius: var(--borderRadiusSmall);
  background-color: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 2rem;
  padding: 0.5rem;
  display: block;
  width:fit-content;
  margin: 0.75rem 0.5rem 0.25rem 0;
}

input[type=checkbox] {
  appearance: auto;
}

input[type=checkbox].abibi {
  height: 0;
  width: 0;
  visibility: hidden;
  margin: 0;
}

label.abibi {
  cursor: pointer;
  text-indent: -9999px;
  width: 50px;
  height: 25px;
  background: grey;
  display: inline-block;
  border-radius: 50px;
  position: relative;
}

label.abibi:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 20px;
  transition: 0.3s;
}

input:checked+label.abibi {
  background: green;
}

input:checked+label.abibi:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

label.abibi:active:after {
  width: 25px;
}

.buttonActivites {
  display: inline-block;
  width: 28px;
  height: 28px;
  padding: 0;
  position: relative;
  margin: 0 0.5rem 0 0.5rem;
  cursor: pointer;
  background-color: transparent;
  top: 2px;
  border: 2px solid var(--white);
  border-radius: 0;
}
input[type=search],
input[type=text] {
  -webkit-appearance: none !important;
}

input[type=search],
input[type=text],
input[type=submit],
input[type=button],
input[type=radio],
input[type=file],
input[type=image],
input[type=password] {
  -webkit-appearance: none !important;
  border-radius: 2px !important;
}


.campaign_active {
  border-color: green;
}

.red {
  border-color: var(--red);
}

.purple {
  border-color: purple;
}

.grey {
  border-color: grey;
}

.blue {
  border-color: blue;
}

.pink {
  border-color: pink;
}

.grey {
  border-color: grey;
}


/** **/

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

.background {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;

  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}


.chart {
  margin-bottom: 2rem;
}

.whBg {
  background-color: var(--white);
}

tr#hideTableHeader>th {
  margin: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}


tr.tbc {
  color: var(--white);
}

tr.tbc>td {
  margin: 1rem;
  padding: 0.5rem 2rem 0.5rem 0;
  font-weight: 300;

}


/* tr.tbc:nth-child(even) td {
  background-color: var(--dark);
} */
tr:nth-child(odd) {background-color: var(--filters)}

tr.iteml {
  background: var(--white)!important;
  width: 280px;
  padding: 0;
  border-radius: var(--borderRadiusSmall);
  margin: 1rem 2rem 1rem 0rem;
  color: var(--dark);
  height: fit-content;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid;
  border-color: var(--white);
  display: inline-block;
}

tr.iteml>td {
/*   display: block;
  background-color: var(--white) !important;
  margin: 0;
  border-radius: var(--borderRadiusSmall);
  padding: 0.25rem;
  font-weight: 400; */
  display: inline-block;
background-color: var(--white) !important;
margin: 0;
border-radius: var(--borderRadiusSmall);
padding: 0.25rem;
font-weight: 400;
width: calc(50% - 0.25rem);
}

tr.iteml>td.button-url {
  display: block;
  text-align: center;
  cursor: pointer;
}

tr.iteml>td.button-url>a.link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 4rem 1rem 4rem;
  cursor: pointer;
}



tr.iteml td img {
  display: inline;
}

tr td img {
  display: none;
}


td {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  white-space: nowrap;
}


a.button-table {
  text-decoration: none;
  background-color: white!important;
  padding: 0.25rem;
  border-radius: var(--borderRadiusSmall);
  color: var(--black);
}

a.button-table:visited {
  text-decoration: none;
  color: var(--black);
}

a.button-table:hover {
  text-decoration: none;
  color: var(--black);
}

a.button-table:active {
  text-decoration: none;
  color: var(--black);
}

/* hide lamnguage img and display block the language text */

/* tr.iteml td:nth-of-type(8) img {
  display: none;
}
 */
 tr {
  padding: 0 0 0.25rem 0;
}

/* tr.iteml td:nth-of-type(9) {
  display: block;
} */

tr.iteml td:first-of-type img {
  width: 100%;
  height: 160px;
  border-radius: var(--borderRadiusSmall) var(--borderRadiusSmall) 0 0;
  object-fit: cover;
  background-color: var(--black);
  display: block !important;
}

tr th {
  text-align: left;
  color: var(--white);
  padding: 0.5rem 0.5rem 0.5rem 0;
}

tr.hideTableHeader>th {
  display: none;
}


.tr-selected {
  background-color: var(--red)!important;
}

.imgCell {
  vertical-align: middle;
  margin: 0 0.5rem 0 0;
}

.none {
  display: none;
}

.attention {
  vertical-align: middle;
  padding: 0.25rem 0.25rem 0.25rem 0.25rem;
  border-radius: var(--borderRadiusSmall);
  font-size: 1rem;
  display: inline-block;
  color: var(--white);
  position: relative;
  margin: 0 0.5rem 0 1rem;
  top: 2px;
}

.attention.red {
  background-color: var(--red) !important;
}

.attention.green {
  background-color: green !important;
}

.secret {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--black);
  width: 100vw;
  height: 100vh;
}

.secret>div {
  max-height: 350px;
  max-width: 350px;
  margin: 0 auto;
  vertical-align: middle;
  padding: 1rem 1rem 1rem 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--red);
  color: var(--white);
  border-radius: var(--borderRadiusBig);
}

.secret>div>h2 {
  margin: 1rem 0 0.5rem 0;
}


.secret>div>div.collapsible {
  padding: 1rem 1rem 1rem 0;
  padding: 0rem 1rem 0rem 1rem;
  text-align: center;
}

.chartsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.chartHalf {
  width: calc(100% - 2rem);
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.5rem;
  border-radius: var(--borderRadiusSmall);
  display: flex;
  flex-direction: row;
  align-items:center;
}

.chartFull {
  width: calc(100% - 2rem);
  padding: 0.5rem;
  border-radius: var(--borderRadiusSmall);
}

.addChannelToCampaign {
  position: sticky;
  top: 10rem;
  background-color: var(--dark);
}

.channelToCampaign {
  background-color: var(--red);
  width: 100%;
  min-height: 48px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  position: relative;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.25rem 0 0.25rem 0;
  border-radius: var(--borderRadiusSmall);
}

.deleteChannelFromCampaign {
  width: 16px;
  padding: 0.5rem;
  margin: 0 1rem 0 0;
  vertical-align: middle;
  font-size: 1rem;
  background-color: var(--red);
}

.channelNameFromCampaign {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(24px, -50%);
}

.imgChannel {
  width: 100%;
  border-radius: var(--borderRadiusSmall), var(--borderRadiusSmall), 0,0;
}

.formChannelCampaignList {
  background-color: var(--red);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--borderRadiusSmall);
}

.pdfEmbed {
  position: relative;
  width: 100%;
  height: 100vh;
}

.noneAlways {
  display: none!important;
} 

tr:hover {
  background-color: var(--white)!important;
  color: var(--black)!important;
}

.buttons {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;

}

.filterTitle {
  color: var(--white)!important;
  margin: 0 0.25rem 0 0.25rem;
}
select {
  width: unset;
  display: inline;
}

select#id_channel_type,
select#id_partner_type,
select#id_user_id,
select#id_advertiser,
select#id_currency,
select#id_campaign,
select#id_campaign_id,
select#id_email,
select#id_price_type{
    width: 100%;
    display: block;
    border-radius: 2px!important;
    cursor: pointer;
    border: 3px solid black;
    font-weight: 500;
}
select#id_language,
select#id_status,
select#id_category,
select#id_type,
select#id_partner{
  display: block;
  border-radius: 2px!important;
  cursor: pointer;
  border: 3px solid black;
  font-weight: 500;
}

label {
  font-weight: 500;
}

#tableHeader {
  background-color: var(--dark)!important;
    color: var(--white)!important;
    font-weight: 300;
    line-height: 1.2;
    border-bottom: 2px solid var(--white)!important;
}

tr th:hover {
  background-color: var(--dark)!important;
  color: var(--white)!important;
  font-weight: 700;
}

.chartWrapper {
  width: calc(50%); 
}

th {
  cursor: pointer;
}

.buttonChangePsw {
  text-decoration: none;
  margin: 1rem 0 0 0;
  background-color: var(--red);
  cursor: pointer;
}

.filterOptions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

/* message stuff */
.message_bar {
  position: fixed;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  text-align: center;
  background-color: var(--white);
  color:var(--black);
  padding: 0.5rem;
}

.close_button {
  background-color: var(--white);
  color:var(--black);
  font-size: 1rem;
  border: none;
  display: inline;
  width: auto;
  padding: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

.close_button:hover {
  background-color: var(--white);
  color:var(--red);
  border: none;
  display: inline;
  cursor: pointer;
}
.messages {
  list-style-type: none;
}

.message {
  padding: 0.5rem;
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  font-weight: 500;
}
.message.error {
  background-color: var(--red);
  color: var(--white);
}
.message.success {
  background-color: var(--green);
  color: var(--white);
}

/* switch */

    /* From uiverse.io by @bandirevanth */
/* Switch starts here */
.rocker {
  display: inline-block;
  position: relative;
  /*
  SIZE OF SWITCH
  ==============
  All sizes are in em - therefore
  changing the font-size here
  will change the size of the switch.
  See .rocker-small below as example.
  */
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #888;
  width: 7em;
  height: 4em;
  overflow: hidden;
  border-bottom: 0.5em solid #eee;
}

.rocker-small {
  font-size: 0.5rem;
  margin: 0 0.25rem 0 0.25rem;
}

.rocker::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  border: 0.5em solid #eee;
  border-bottom: 0;
}

.rocker input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-left,
.switch-right {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5em;
  width: 3em;
  transition: 0.2s;
  user-select: none;
}

.switch-left {
  height: 2.4em;
  width: 2.75em;
  left: 0.85em;
  bottom: 0.4em;
  background-color: #ddd;
  transform: rotate(15deg) skewX(15deg);
}

.switch-right {
  right: 0.5em;
  bottom: 0;
  background-color: var(--red);
  color: #fff;
}

.switch-left::before,
.switch-right::before {
  content: "";
  position: absolute;
  width: 0.4em;
  height: 2.45em;
  bottom: -0.45em;
  background-color: var(--filters);
  transform: skewY(-65deg);
}

.switch-left::before {
  left: -0.4em;
}

.switch-right::before {
  right: -0.375em;
  background-color: transparent;
  transform: skewY(65deg);
}

input:checked + .switch-left {
  background-color: var(--green);
  color: #fff;
  bottom: 0px;
  left: 0.5em;
  height: 2.5em;
  width: 3em;
  transform: rotate(0deg) skewX(0deg);
}

input:checked + .switch-left::before {
  background-color: transparent;
  width: 3.0833em;
}

input:checked + .switch-left + .switch-right {
  background-color: #ddd;
  color: #888;
  bottom: 0.4em;
  right: 0.8em;
  height: 2.4em;
  width: 2.75em;
  transform: rotate(-15deg) skewX(-15deg);
}

input:checked + .switch-left + .switch-right::before {
  background-color: #ccc;
}

/* Keyboard Users */
input:focus + .switch-left {
  color: #333;
}

input:checked:focus + .switch-left {
  color: #fff;
}

input:focus + .switch-left + .switch-right {
  color: #fff;
}

input:checked:focus + .switch-left + .switch-right {
  color: #333;
}
tr.iteml> td#clickable {
  width: 100%!important;
}
tr.iteml> td.imageTable {
  width: 100%!important;
}

tr.tbc.Youtube.iteml.tr-selected {
  background-color: var(--white)!important;
}

.presentation {
  position: relative;
  top: 4px;
  left: 4px
}

@media only screen and (min-width: 768px) {
  .boxForm {
    /*     position: sticky; */
  }

  .boxHeader {
    position: sticky;
  }

  .nav-toggle-label {
    display: none;
  }

  header {
    /* Grid styles */
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .logo {
    grid-column: 2 / 3;
    left: 2rem;
    top: 1rem;
    position: absolute;
    z-index: 9;
  }

  nav {
    position: relative;
    text-align: left;
    transition: none;
    transform: scale(1, 1);
    background: none;
    top: initial;
    left: initial;
    grid-column: 3 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 4rem;
  }

  nav ul {
    display: flex;
  }

  nav li {
    margin-top: 2rem;
  }

  nav a {
    opacity: 1;
    position: relative;
  }

  nav a::after {
    content: '';
    display: block;
    height: 3px;
    background: var(--white);
    margin: 0.25rem 0 0 0;
    position: absolute;
    left: 0;
    right: 0;
    transform: scale(0, 1);
    transition: transform ease-in-out 250ms;
  }

  nav a:hover::after {
    transform: scale(1, 1);
  }

  .dropdown {
    margin: 0.5rem 0 0 0rem;
    position: absolute;
    padding: 0 1rem 1rem 0rem;
    list-style: none;
    flex-direction: column;
    display: none;
    background-color: var(--dark);
  }

  .dropdown li {
    margin-left: 0;
    padding: 1rem 0 0 0;
  }

  .navbar-item:hover>ul {
    display: block;
    display: flex
  }

  .navbar-item>a {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }

  .img-publication {
    width: 66%;
  }

  .none {
    display: none;
  }

  .iteml.none {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  td.imageTable {
    width: 100%!important;
  }
  nav ul {
    position: absolute;
    bottom: 0;
    margin: 0 0 12rem 0;
  }
  .boxInfoHome {
    display: inline-block;
  }
  .logo-header {
    position: relative;
    top: -6px;
  }
  #searchBar {
    display: block;
    width: 100%;
  }
  .draggable-zone {
    width: 100%
  }
  .logo {
    left:1rem
  }

  section.hero {
    padding-bottom: 10rem;
    align-items: end;
  }

  .boxInfoHome {
    font-size: 1.5rem;
  }

  td {
    max-width: 100%;
  }

  tr.tbc>td {
    margin: 0rem;
    /* put 0 when itelm programming is the evolutiin of writing. Direct and more immersive art */
  }

  tr.tbc.item>td {
    margin: 0;
  }

  .cardContainer>table {
    margin-left: 0rem;
  }

  tr.iteml {
    width: 100%;
    min-width: 1px;
    margin: 1rem 2rem 1rem 0rem;
  }

  tr.iteml.none {
    display: none;
  }

  .itemHome {
    margin-left: 0;
    margin-right: 0;
  }

  .boxLeftHome {
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: left;
    padding: 1rem;
    position: relative;
    z-index: 2;
    top: 4rem;
  }

  .boxLeftHome h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .boxLeftHome h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    -webkit-text-fill-color: #0B1728;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
  }

  nav a {
    font-size: 2rem;
  }

  .zeroPad>.button-url {
    margin: 1rem 1rem 0.5rem 1rem;
  }

  .button-url>a:link {
    padding: 1rem 3rem 1rem 3rem;
  }

  .item {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .container {
    top: 4rem;
    margin: 1rem 0 1rem 0;
  }

  .padGridWrapper {
    padding: 0;
  }

  .boxRight {
    margin-top: 1rem;
  }

  .boxForm {
/*     display: none; */
    margin: 1rem 0 0.5rem 0;
  }

  .menu-footer-item {
    margin-top: 2rem;
  }

  .boxRight2 {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .boxLeft2 {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .boxRight {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .boxLeft {
    grid-column-start: 1;
    grid-column-end: 2;
    margin: 4rem 0 0 0;
    top: 2rem;
  }

  .pad {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pad6 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .gridWrapper2 {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
  }

  .gridWrapper {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
  }

  .boxCenter {
    margin: 4rem 2rem 2rem 2rem;
  }

  .boxLeft h1 {
    padding: 0;
  }

  .boxHeader {
    padding: 0;
    position: relative;
    top: 0rem;
  }

  .boxHeader>h1 {
    font: inherit;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0.5rem 0.5rem 0;
    color: var(--white);
  }

  input {
    height: 1.5rem;
  }

  .small_none {
    display: none;
  }

  .lateral {
    background-color: #4C4D78;
  }
}