.tc-admin-settings {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.tc-admin-settings .tc-admin-settings-left {
  padding: 20px;
  border: 2px solid #3e3e45;
  width: 45%;
}
.tc-admin-settings .tc-admin-settings-right {
  padding: 20px;
  border: 2px solid #3e3e45;
  width: 45%;
}

.tc-cookie-notice-body {
  background-color: #2C2C2C;
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 1060;
  padding: 30px;
  width: 400px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  display: none;
}
@media screen and (max-width: 520px) {
  .tc-cookie-notice-body {
    width: unset;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}
.tc-cookie-notice-body .tc-cookie-icon {
  color: white;
  font-size: 110px;
  width: 100%;
  display: flex;
  justify-content: left;
}
.tc-cookie-notice-body .tc-cookie-icon img {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.tc-cookie-notice-body .tc-cookie-icon img:hover {
  animation-name: bounce;
}

.tc-cookie-notice-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.tc-cookie-content {
  color: #fff;
}
.tc-cookie-content a {
  color: #fff;
  font-weight: bold;
}
.tc-cookie-content .tc-cookie-content-header {
  font-weight: bold;
  font-size: 22px;
  color: #fff;
}

.tc-cookie-button-wrap {
  width: 100%;
}
.tc-cookie-button-wrap .tc-cookie-button-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.tc-cookie-notice-button {
  padding: 15px;
  background: #ffffff;
  color: #2C2C2C;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.4s ease-out;
}
.tc-cookie-notice-button:hover {
  filter: brightness(75%);
}

#tc-cookie-notice-deny {
  border: 2px solid black;
  background-color: #2f3337;
  color: black;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  border-color: white;
  color: white;
}
#tc-cookie-notice-deny:hover {
  background: #44484c;
  transition: background-color 0.4s ease-out;
}

.tc-cookies-table {
  width: 100%;
}
.tc-cookies-table td, .tc-cookies-table th {
  border: 1px solid #ddd;
  padding: 8px;
}
.tc-cookies-table tr:nth-child(odd) {
  background-color: #a8a8a8;
}
.tc-cookies-table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #a8a8a8;
  color: rgb(0, 0, 0);
}/*# sourceMappingURL=style-design-tc.css.map */