.cookieBox {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: all 1s;
  z-index: 100;
  left: 0;
  right: 0;
  animation-name: opens;
  animation-duration: 1s;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px -1px 5px 0px #a50000;
}

._innerDiv {
  width: 50%;
  text-align: left;
  font-size: small;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@keyframes opens {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes closes {
  from {
    height: 20%;
  }
  to {
    height: 0;
  }
}

.cookieBox.close {
  height: 0;
  animation-name: closes;
  animation-duration: 1s;
}

#_submitButton {
  float: right;
  font-size: smaller;
  background: #a50000;
}

.label {
  vertical-align: top;
}

#_logo {
  width: 50px;
  position: absolute;
  left: -60px;
  top: 5px;
}

._selectDiv {
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

#_afisatiBtn {
  float: right;
  font-size: smaller;
  border-color: #a50000;
  border-style: dashed;
}

@media only screen and (max-width: 1100px) {
  .cookieBox {
    height: auto;
  }
  ._innerDiv {
    width: 80%;
  }
  .mobBlock {
    /* display: block; */
  }
  #_logo {
    display: none;
  }
  ._innerDiv h3 {
    font-size: large;
  }

  #_submitButton {
    float: none;
    font-size: large;
    width: 100%;
  }
  #_afisatiBtn {
    display: none;
  }
  #_hidden {
    display: none;
  }
}

/* CSS for INFO DIV */

/* NU UITA SA FACI CSS SI PENTRU MOBILE */
#_cookieInfoDiv {
  width: 50%;
  font-size: small;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: none;
}

#_cookieInfoDiv.open {
  display: block;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0px 11px;
  transition: 0.3s;
  font-size: x-small;
  margin: 5px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #a50000;
  color: white;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.tabMoreInfo {
  margin-right: 10px;
  width: 100%;
}

.tabMoreInfo span {
  font-weight: bold;
  display: block;
  background-color: antiquewhite;
}
