:root {
  --default: #043D75;
  --white: #fff;
}

.gm-cookie-consent-banner {}

.gm-cookie-consent-banner.gm-cookie-consent-banner-info {
  max-height: calc(100% - 60px);
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: fixed;
  bottom: 30px;
  left: 50%;
  padding: 30px;
  border-radius: 5px;
  transform: translateX(-50%);
  background-color: var(--primary, --default);
  color: var(--white);
  overflow: auto;
  display: none;
  z-index: 900;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}

.gm-cookie-consent-banner.show {
  display: block;
}

@media screen and (max-width: 992px) {
  .gm-cookie-consent-banner.gm-cookie-consent-banner-info {
    width: auto;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px 20px;
    transform: translateX(0);
    max-height: calc(100% - 20px);
  }
}

/* .gm-cookie-consent-content {
  overflow: auto;
} */

.elementor-kit-6 .gm-cookie-consent-banner a {
  color: #f4f6f7;
  text-decoration: underline;
}

.gm-cookie-consent-banner a:hover,
.gm-cookie-consent-banner a:active {
  color: rgba(0, 0, 0, .7);
}

.gm-cookie-consent-banner a+.gm-cookie-consent-default-button {
  margin-left: 15px;
}

.gm-cookie-consent-banner .gm-cookie-consent-default-button {
  border-color: var(--white);
  color: var(--white);
}

.gm-cookie-consent-banner .gm-cookie-consent-default-button:hover,
.gm-cookie-consent-banner .gm-cookie-consent-default-button:focus,
.gm-cookie-consent-banner .gm-cookie-consent-default-button:active {
  background-color: var(--white);
  color: var(--primary, --default);
}

.gm-cookie-consent-banner #first-screen {
  display: block;
}

.gm-cookie-consent-banner #manual-screen {
  display: none;
}

.gm-cookie-consent-banner.gm-cookie-consent-banner--manual #first-screen {
  display: none;
}

.gm-cookie-consent-banner.gm-cookie-consent-banner--manual #manual-screen {
  display: block;
}

.gm-cookie-consent-category input[type=checkbox],
.gm-cookie-consent-category input[type=radio] {
  position: absolute;
  opacity: 0;
}

.gm-cookie-consent-category input[type=checkbox]~label:not(.no-styling),
.gm-cookie-consent-category input[type=radio]~label:not(.no-styling) {
  height: 20px;
  position: relative;
  padding-left: 35px;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 20px;
  font-weight: bold;
  cursor: pointer;
}

.gm-cookie-consent-category input[type=checkbox]~label:not(.no-styling):before,
.gm-cookie-consent-category input[type=radio]~label:not(.no-styling):before {
  content: '';
  display: block;
  border-radius: 5px;
  background: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gm-cookie-consent-category input[type=checkbox]:checked~label:not(.no-styling):after,
.gm-cookie-consent-category input[type=radio]:checked~label:not(.no-styling):after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;

  background-image: url(./img/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  display: inline-block;
  font-size: 100%;
  vertical-align: middle;
  text-indent: -9999px;
  overflow: hidden;
  height: 20px;
  width: 20px;
}

.gm-cookie-consent-banner .row {
  margin: 0 -10px;
}

.gm-cookie-consent-categories,
.gm-cookie-consent-message,
.gm-cookie-consent-buttons {
  width: 100%;
  padding: 0 10px;
}

.gm-cookie-consent-category {
  width: 50%;
  float: left;
  padding: 0 10px;
  margin-top: 5px;
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .gm-cookie-consent-category {
    width: 100%;
  }

  .gm-cookie-consent-category:last-child {
    margin-bottom: 30px;
  }
}

.gm-cookie-consent-banner.gm-cookie-consent-cookie-form {
  position: relative;
}

.gm-cookie-consent-banner.gm-cookie-consent-cookie-form .gm-cookie-consent-category input[type=checkbox]~label:not(.no-styling):before,
.gm-cookie-consent-banner.gm-cookie-consent-cookie-form .gm-cookie-consent-category input[type=radio]~label:not(.no-styling):before {
  border: 1px solid #333;
}

.gm-cookie-consent-banner.gm-cookie-consent-cookie-form button {
  background-color: var(--primary, --default);
  border: 2px solid var(--primary, --default);
}

.gm-cookie-consent-banner.gm-cookie-consent-cookie-form button+a {
  margin-left: 15px;
  color: var(--primary, --default);
}