/*
* Import Mixins
*/
/*
* Set colors
*/
.nt-cookie-notice {
  position: fixed;
  z-index: 9999;
  background-color: #f1f1f1;
  padding: 40px 30px;
  display: none;
  width: 100%;
}
.nt-cookie-notice.active {
  display: flex;
}
.nt-cookie-notice.active.standard-middle,
.nt-cookie-notice.active.box-left,
.nt-cookie-notice.active.box-right,
.nt-cookie-notice.active.box-center,
.nt-cookie-notice.active.box-middle-bottom {
  display: block;
}
.nt-cookie-notice.standard {
  bottom: 0;
  left: 0;
}
.nt-cookie-notice.standard-middle {
  bottom: 0;
  left: 0;
}
.nt-cookie-notice.standard-middle .info {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.nt-cookie-notice.standard-middle .actions {
  max-width: 900px;
  margin: 20px auto 0;
}
.nt-cookie-notice.standard-middle .actions .actions-inner {
  justify-content: center;
}
.nt-cookie-notice.box-left,
.nt-cookie-notice.box-right,
.nt-cookie-notice.box-center,
.nt-cookie-notice.box-middle-bottom {
  width: 380px;
  max-width: calc(100% - 20px);
  display: none;
}
.nt-cookie-notice.box-left .actions .actions-inner,
.nt-cookie-notice.box-right .actions .actions-inner,
.nt-cookie-notice.box-center .actions .actions-inner,
.nt-cookie-notice.box-middle-bottom .actions .actions-inner {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.nt-cookie-notice.box-left {
  left: 10px;
  bottom: 10px;
}
.nt-cookie-notice.box-right {
  right: 10px;
  bottom: 10px;
}
.nt-cookie-notice.box-center {
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.nt-cookie-notice.box-middle-bottom {
  left: 50%;
  top: 10px;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.nt-cookie-notice .info {
  flex: 3;
  line-height: 1.5;
  font-size: 15px;
  color: #000;
}
.nt-cookie-notice .info .ntcoo-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.nt-cookie-notice .info .ntcoo-title i {
  margin-right: 10px;
  font-size: 20px;
}
.nt-cookie-notice .info a {
  text-decoration: underline;
}
.nt-cookie-notice .actions .actions-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
}
.nt-cookie-notice .actions .actions-inner a {
  display: block;
  margin: 0 15px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  line-height: 1.5;
  padding: 13px 34px;
}
.nt-cookie-notice .actions .actions-inner a.nt-accept-cookie {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.nt-cookie-notice .actions .actions-inner a.nt-accept-cookie:hover {
  border: 1px solid #595959;
  background-color: #595959;
  color: #fff;
}
.nt-cookie-notice .actions .actions-inner a.nt-reject-cookie {
  border: 1px solid #c5c5c5;
  color: #888888;
  padding: 7px 13px;
  font-size: 13px;
}
.nt-cookie-notice .actions .actions-inner a.nt-reject-cookie:hover {
  background-color: #d2d2d2;
  color: #565656;
}
.nt-cookie-notice .actions .actions-inner a.nt-settings-cookie {
  border: 1px solid #c5c5c5;
  color: #888888;
  padding: 7px 13px;
  font-size: 13px;
}
.nt-cookie-notice .actions .actions-inner a.nt-settings-cookie:hover {
  background-color: #d2d2d2;
  color: #565656;
}
.nt-cookie-notice .actions .gtm-actions {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #000;
}
.nt-cookie-notice .actions .gtm-actions a {
  color: #888888;
  font-size: 13px;
}
.nt-cookie-notice .actions .gtm-actions a:hover {
  color: #000;
}
input[type=submit].nt-save-settings {
  display: inline-block;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  line-height: 1.5;
  padding: 13px 40px;
  background-color: green;
  border: 1px solid green;
  color: #fff;
  cursor: pointer;
}
input[type=submit].nt-save-settings:hover {
  border: 1px solid #0F960FFF;
  background-color: #0F960FFF;
  color: #fff;
}
.ntcoo-popup-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.ntcoo-popup-popup .ntcoo-popup-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.ntcoo-popup-popup .ntcoo-popup-inner {
  width: 100%;
  max-width: 700px;
  max-height: 100vh;
  background-size: cover;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
  max-height: 80%;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-close {
  width: 40px;
  height: 40px;
  background-color: #9a9a9a;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 110;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-close:hover {
  opacity: 0.8;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content {
  padding: 30px 30px;
  line-height: 1.4;
  color: #000;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type {
  display: flex;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-content {
  flex: 3;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-content .ntcoo-type-title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: bold;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent.ntcoo-disabled {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  pointer-events: none;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent > div {
  padding: 10px 15px;
  border: 1px solid #d2d2d2;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent > div.ntcoo-yes {
  border-right: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent > div.ntcoo-yes.active {
  background-color: green;
  border: 1px solid green;
  color: #fff;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent > div.ntcoo-no {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ntcoo-popup-popup .ntcoo-popup-inner .ntcoo-popup-popup-content .ntcoo-type .ntcoo-consent > div.ntcoo-no.active {
  background-color: #d2d2d2;
  border: 1px solid #d2d2d2;
  color: #000;
}
@media (max-width: 900px) {
  .nt-cookie-notice {
    padding: 10px;
  }
  .nt-cookie-notice .info {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .nt-cookie-notice .actions {
    display: block;
    text-align: center;
  }
  .nt-cookie-notice .actions .actions-inner {
    justify-content: center;
  }
  .nt-cookie-notice .actions .actions-inner a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 22px;
  }
  .nt-cookie-notice .actions .actions-inner a.nt-reject-cookie {
    padding: 7px 12px;
    font-size: 12px;
  }
}
