<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom styles for current website */
html { font-size:16px; }
body { font-family:'Nunito Sans', sans-serif; line-height: 1.8; 
  background: rgb(195,225,235);
  background: -moz-linear-gradient(7deg, rgba(195,225,235,1) 50%, rgba(230,239,241,1) 100%);
  background: -webkit-linear-gradient(7deg, rgba(195,225,235,1) 50%, rgba(230,239,241,1) 100%);
  background: linear-gradient(7deg, rgba(195,225,235,1) 50%, rgba(230,239,241,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c3e1eb",endColorstr="#e6eff1",GradientType=1); 
  
  color: var(--dark);
  scrollbar-color: #000 var(--bodyBG);
  scrollbar-width: thin;}
::-webkit-scrollbar
{
  width: 12px;  /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
}
::-moz-scrollbar
{
  width: 12px;  /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track { background: var(--bodyBG); }
::-webkit-scrollbar-thumb {
  background: #000;
}
::-moz-scrollbar-track { background: var(--bodyBG); }
::-moz-scrollbar-thumb {
  background: #000;
}

.gradient-from-top-light {
   background: rgb(230,239,241);
background: -moz-linear-gradient(0deg, rgba(230,239,241,1) 75%, rgba(230,239,241,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(230,239,241,1) 75%, rgba(230,239,241,0) 100%);
background: linear-gradient(0deg, rgba(230,239,241,1) 75%, rgba(230,239,241,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6eff1",endColorstr="#e6eff1",GradientType=1); 
}
.gradient-from-bottom-light {
    background: rgb(230,239,241);
background: -moz-linear-gradient(0deg, rgba(230,239,241,0) 0%, rgba(230,239,241,1) 75%);
background: -webkit-linear-gradient(0deg, rgba(230,239,241,0) 0%, rgba(230,239,241,1) 75%);
background: linear-gradient(0deg, rgba(230,239,241,0) 0%, rgba(230,239,241,1) 75%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6eff1",endColorstr="#e6eff1",GradientType=1); 
}
section.bg-white {
  background-color: #e6eff1 !important;
}
.svg100auto svg {
  width: 100%;
  height: auto;
}
.footer-navigation .nav-menu &gt; li &gt; a:not(.btn):not(.btn-c2) {
  color: #fff;
  padding: .5rem .75rem;
font-size: 1rem;
font-weight: 700;
text-decoration: none !important;
text-transform: uppercase;
letter-spacing: 0.15em;
}
.footer-navigation .nav-menu &gt; li &gt; a:not(.btn):not(.btn-c2):hover {
  color: var(--primary);
}
footer a, footer {
  color: #ffffff;
}
.last-line a:not(.btn) {
  color:var(--dark);
}
footer .last-line svg path {
  fill: var(--dark);
}
footer a:hover, footer .last-line a:not(.btn):hover {
  color: var(--primary);
}

@keyframes clouds{
  0%{
    transform:rotate(0deg)
              translateX(0vw)
              translateY(0vw)
              scale(1.2);

  }
  50%{
    transform:rotate(2deg)
              translateX(-1vw)
              translateY(1vw)
			  scale(1);
  }
	100%{
    transform:rotate(0deg)
              translateX(0vw)
              translateY(0vw)
              scale(1.2);

  }
}

.cloud {
  position: relative;
  overflow-x: clip;
}
.cloud-1::before {
  content: url(/img/cloud-1.webp);
  position: absolute;
  top: 45%;
  right: -10%;
  animation: clouds 20s linear infinite;
}
.cloud-2::before {
  content: url(/img/cloud-2.webp);
  position: absolute;
  top: 30%;
  left: -5%;
  animation: clouds 20s linear infinite;
}
.cloud-3::before {
  content: url(/img/cloud-1.webp);
  position: absolute;
  top: 10%;
  right: -5%;
  animation: clouds 20s linear infinite;
}
.cloud-4::before {
  content: url(/img/cloud-3.webp);
  position: absolute;
  top: 5%;
  left: -5%;
  animation: clouds 20s linear infinite;
}
.cloud-5::before {
  content: url(/img/cloud-4.webp);
  position: absolute;
  top: 1%;
  right: -1%;
  animation: clouds 20s linear infinite;
}
.cloud-6::before {
  content: url(/img/cloud-5.webp);
  position: absolute;
  top: 1%;
  left: -5%;
  animation: clouds 20s linear infinite;
}

/* Text */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease-in;
  -webkit-transition: color .2s ease-in;
  font-family:'Asap', sans-serif; 
}
h1 &gt; a, h2 &gt; a, h3 &gt; a, h4 &gt; a, h5 &gt; a, h6 &gt; a, .h1 &gt; a, .h2 &gt; a, .h3 &gt; a, .h4 &gt; a, .h5 &gt; a, .h6 &gt; a { color: inherit; }
.display-1 {
  font-weight: 700;
  font-size:calc(30px + (60 - 30) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
  letter-spacing: .0em;
}
.display-2 {
  font-weight: 700;
  font-size:calc(24px + (48 - 24) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
}
.display-3, [id*="article-detail-"] .inside-text h2 {
  font-weight: 700;
  font-size:calc(18px + (24 - 18) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
}
.display-4 {
  font-weight: 700;
  font-size:calc(16px + (20 - 16) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.2;
}
[class*="display-"] &gt; strong { font-weight: 700; }

[id*="article-detail-"] h2 {
  margin-bottom: 1.5rem;
}
a {
  transition: color .2s ease-in;
  -webkit-transition: color .2s ease-in;
}
footer .last-line a:not(.btn) {
  text-decoration: underline;
}
.more {
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s ease-in;
  -webkit-transition: color .2s ease-in;
  color: #ffae45;
}
.more::after {
  content:'\f061';
  position: relative;
  display: inline-block;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  margin-left: .5rem;
}
.more:hover:after {
  animation: fadeIn 1s infinite ease-in;
  -webkit-animation: fadeIn 1s infinite ease-in;
}
.quotes { padding-left: calc(48px + 1rem); }
.quotes::before {
  content: 'â€';
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: calc(48px + 1rem);
  line-height: 0.1em;
  display: inline-block;
  font-size: 2.5rem;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  opacity: .15;  
}
/* Navbar */

.navbar-brand {
  padding-top:1.5rem;
  padding-bottom:1.5rem;
  transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  align-self: center;
}
.menu-scroll-down.small-menu .navbar-brand {
  padding-top:1rem;
  padding-bottom:1rem;
  align-self: flex-end;
}
.navbar-brand svg {
  width: calc(145px + (289 - 145) * ((100vw - 300px) / (1600 - 300)));
  height: calc(50px + (100 - 50) * ((100vw - 300px) / (1600 - 300)));
  transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
}
.small-menu .navbar-brand svg {
  width: calc(145px + (289 - 145) * ((100vw - 300px) / (1600 - 300)));
  height: calc(50px + (100 - 50) * ((100vw - 300px) / (1600 - 300)));
}
.menu-scroll-down.small-menu .navbar-brand svg {
  width: calc(145px + (200 - 145) * ((100vw - 300px) / (1600 - 300)));
  height: calc(50px + (70 - 50) * ((100vw - 300px) / (1600 - 300)));
}
.navbar-brand-footer {
  padding-top:1rem;
  padding-bottom:1rem;
}
.navbar-brand-footer svg {
  width: calc(145px + (289 - 145) * ((100vw - 300px) / (1600 - 300)));
  height: calc(50px + (100 - 50) * ((100vw - 300px) / (1600 - 300)));
}
.menu-white .navbar-brand svg [fill="#343A40"] { fill: #fff !important; }
.small-menu li &gt; .btn {
  padding: .5rem .625rem;
}

.desktop-navbar {
  background: transparent !important;
}
.small-menu .desktop-navbar {
  background: var(--bodyBG) !important;
}

ul:not(.nav-menu):not(.nav-wrap):not(.nav-image-menu):not(.dropdown):not(.collapse):not(.collapsing):not(.nav-tabs):not(.cc-cp-body-tabs) li::before {
  content: "\f054";
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.8em;
}

/* BTNS */

.btn {
  border: 0px;
  border-radius: 5px;
  padding: 0.85rem 1.25rem;
}      
.btn-primary {
  background: rgb(210,225,244);
  background: -moz-linear-gradient(135deg, rgba(210,225,244,1) 0%, rgba(29,113,184,1) 51%, rgba(210,225,244,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(210,225,244,1) 0%, rgba(29,113,184,1) 51%, rgba(210,225,244,1) 100%);
  background: linear-gradient(135deg, rgba(210,225,244,1) 0%, rgba(29,113,184,1) 51%, rgba(210,225,244,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d2e1f4",endColorstr="#d2e1f4",GradientType=1); 
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
}

.btn-primary.focus, .btn-primary:focus, .btn-primary:hover {
  background-position: right center; /* change the direction of the change here */
}
.btn-secondary {
  background: rgb(255,191,0);
  background: -moz-linear-gradient(135deg, rgba(255,191,0,1) 0%, rgba(210,60,70,1) 51%, rgba(255,191,0,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(255,191,0,1) 0%, rgba(210,60,70,1) 51%, rgba(255,191,0,1) 100%);
  background: linear-gradient(135deg, rgba(255,191,0,1) 0%, rgba(210,60,70,1) 51%, rgba(255,191,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffbf00",endColorstr="#ffbf00",GradientType=1); 
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
}

.btn-secondary.focus, .btn-secondary:focus, .btn-secondary:hover {
  background-position: right center; /* change the direction of the change here */
}
         

/* Custom content */
.z-index-1 { z-index:1; }
section:first-of-type {
  overflow-x: clip;
}
[id*="article-detail-"] {
  overflow: visible !important;
}

.top-header { top: calc(27px + (40 - 27) * ((100vw - 300px) / (1600 - 300)) + 3rem); }

section:first-of-type:not(.pt-0) { padding-top: calc(32px + (50 - 32) * ((100vw - 300px) / (1600 - 300)) + 3rem); }
section.crane { margin-top: 10rem; }
.container, .container-fluid { position: relative; }
.crane-cover {
  position: absolute;
  top: -130px;
  left: calc(50% - 124px);
  width: 248px;
  height: 175px;
}
.crane-on-form-cover {
  display: none;
}
.crane-on-form-cover-2 {
  display: none;
}

.text-center &gt; .row { justify-content: center !important; }
.max-w-64 { max-width: 64px; }
.max-w-640 { max-width: 640px; }
.max-w-560 { max-width: 560px; }
.max-w-340 { max-width: 340px; }
.max-h-156 { max-height: 156px; }
.max-h-224 { max-height: 224px; }
.top-default { top: 8rem; }
.p-overlay::before, .n-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.25);
  z-index: 0;
}
.n-overlay::before {
  background: rgba(18,64,102,0.75);
}
.dark-overlay::before {
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(18,64,102,1);
  opacity:1;
  mix-blend-mode: color;
  z-index: 1;
  transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
}
[class*="list-item-"]:hover .image-box.dark-overlay::before {
  opacity:0;
}

.shadow-none.rounded-0 &gt; .rounded.shadow {
  box-shadow:none !important;
  border-radius: 0 !important;
}

.rounded-circle {
  outline: 0.4rem solid #fff;
}

.btn-play::before {
  content:'\f144';
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Font Awesome 6 Pro';
  font-size: calc(60px + (120 - 60) * ((100vw - 300px) / (1600 - 300)));
  font-weight: 300;
  line-height: 1em;
  z-index: 1;
  color: #fff;
  pointer-events: none;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  text-shadow: 0 0 1.5rem rgba(0,0,0,.75);
}
.btn-play:hover:before { font-weight: 700; }

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: calc(16px + (32 - 16) * ((100vw - 300px) / (1600 - 300)));
  text-align: center;
  line-height: 1em;
  z-index: 1;
  color: #fff;
  pointer-events: none;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
  text-shadow: 0 0 1.5rem rgba(0,0,0,.75);
}
.video-text [class*="fa-"] { font-size: calc(60px + (120 - 60) * ((100vw - 300px) / (1600 - 300))); }
[data-toggle="lightbox"]:hover &gt; .video-text [class*="fa-"] { font-weight: 700; }


.white-to-right::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: calc((100vw - 1140px) / 2);
  height: 100%;
  background: #fff;
}
.icon-date {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 1rem;
  left: 1rem;
  width: 60px;
  height: 60px;
  font-size: 1rem;
  border-radius: 0.5rem;
  background: #fff;
  z-index: 1;
}
.icon-date span:first-child {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2em;
}
.icon-date span:last-child {
  position: relative;
  display: block;
  width: 100%;
  font-size: .875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1em;
  text-transform: uppercase;
}

.row.slider-cover {
  width: calc(100vw - 8rem);
  margin: 0 auto;
}

.article-list-4 &gt; [class*="list-item-"] &gt; .row &gt; [class*="col-"] &gt; .row.bg-white *, .article-list-5 &gt; [class*="list-item-"] &gt; .row &gt; [class*="col-"] &gt; .row.bg-white * {
  transition: none;
  -webkit-transition: none;
}
.article-list-4 &gt; [class*="list-item-"] &gt; .row &gt; [class*="col-"] &gt; .row.bg-white, .article-list-5 &gt; [class*="list-item-"] &gt; .row &gt; [class*="col-"] &gt; .row.bg-white {
  transition: background .2s ease-in;
  -webkit-transition: background .2s ease-in;
}
.article-list-4 &gt; [class*="list-item-"]:hover &gt; .row &gt; [class*="col-"] &gt; .row.bg-white, .article-list-5 &gt; [class*="list-item-"]:hover &gt; .row &gt; [class*="col-"] &gt; .row.bg-white { background: #0094da !important; color: #fff !important; }
.article-list-4 &gt; [class*="list-item-"]:hover &gt; .row &gt; [class*="col-"] &gt; .row.bg-white [fill="#BDC6CB"], .article-list-5 &gt; [class*="list-item-"]:hover &gt; .row &gt; [class*="col-"] &gt; .row.bg-white [fill="#BDC6CB"] { fill: #fff; }

.svg-map text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.75rem;
}
.svg-map .map-marker {
  cursor: pointer;
  pointer-events: all;
}

.inside-text ul:not(.nav-menu):not(.nav-wrap):not(.nav-image-menu):not(.dropdown):not(.collapse):not(.collapsing):not(.nav-tabs):not(.cc-cp-body-tabs) li::before {
  content:'\f002';
  color:#0094DA;
  font-size: 1rem;
  line-height:inherit;
}

.border-spinkey {
  border: 10px solid #dce9ed;
}
.shadow {
  box-shadow:
  0px 0.7px 2.8px -5px rgba(0, 0, 0, 0.014),
  0px 1.7px 6.7px -5px rgba(0, 0, 0, 0.02),
  0px 3.1px 12.5px -5px rgba(0, 0, 0, 0.025),
  0px 5.6px 22.3px -5px rgba(0, 0, 0, 0.03),
  0px 10.4px 41.8px -5px rgba(0, 0, 0, 0.036),
  0px 25px 100px -5px rgba(0, 0, 0, 0.05) !important;
}

/* Animation */
.btn.btn-shake {
    -webkit-animation-name: btnShake;
    animation-name: btnShake;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.footer-navigation .btn-shake {
  animation: none;
  -webkit-animation: none;
}

@-webkit-keyframes btnShake {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    1%,2% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    3%,5%,7%,9% {
        -webkit-transform: scale3d(1.01,1.01,1.01) rotate(3deg);
        transform: scale3d(1.01,1.01,1.01) rotate(3deg)
    }

    4%,6%,8% {
        -webkit-transform: scale3d(1.01,1.01,1.01) rotate(-3deg);
        transform: scale3d(1.01,1.01,1.01) rotate(-3deg)
    }
    10% {
      -webkit-transform: scaleX(1);
      transform: scaleX(1)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes btnShake {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    1%,2% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    3%,5%,7%,9% {
        -webkit-transform: scale3d(1.01,1.01,1.01) rotate(3deg);
        transform: scale3d(1.01,1.01,1.01) rotate(3deg)
    }

    4%,6%,8% {
        -webkit-transform: scale3d(1.01,1.01,1.01) rotate(-3deg);
        transform: scale3d(1.01,1.01,1.01) rotate(-3deg)
    }

    10% {
      -webkit-transform: scaleX(1);
      transform: scaleX(1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

/* Custom breakpoints */
@media (max-height: 768px) {
  .min-vh-75 {
    min-height: 576px !important;
  }
}
@media (min-height: 768px) {
  .min-vh-75 {
    min-height: 75vh!important;
  }
}
@media (max-width: 991.98px) {
  .animateme {
    transform: none !important;
    opacity: 1 !important;
  }
  .show-lg-bg-image {
    background-image: none !important;
  }
}
@media (min-width: 576px) {
  .row.slider-cover {
    width: calc(540px - 8rem);
    margin: 0 auto;
  }
  .border-sm-right::before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border-right: 1px solid #E4E8EB;
    z-index: 1;
  }
  .p-md-5.border-sm-right::before {
    top: 1rem;
    height: calc(100% - 2rem);
  }
  .rounded-sm-left {
    border-top-left-radius: .5rem !important;
    border-bottom-left-radius: .5rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-sm-right {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: .5rem !important;
    border-bottom-right-radius: .5rem !important;
  }
}
@media (min-width: 768px) {
  .row.slider-cover {
    width: calc(720px - 8rem);
    margin: 0 auto;
  }
  .text-md-left &gt; .row { justify-content: flex-start !important; }
  .p-md-5.border-sm-right::before {
    top: 3rem;
    height: calc(100% - 6rem);
  }
}
@media (min-width: 992px) {
  .row.slider-cover {
    width: calc(960px - 8rem);
    margin: 0 auto;
  }
  .text-lg-left &gt; .row { justify-content: flex-start !important; }
  .default-p, .py-default { padding-top: 8rem; padding-bottom: 8rem;  }
}
@media (min-width: 1280px) {
  .crane-cover {
    position: absolute;
    top: -251px;
    left: calc(50% - 240px);
    width: 480px;
    height: 340px;
  }
  .crane-on-form-cover {
    position: absolute;
    display: block;
    top: -150px;
    right: -3rem;
    width: 240px;
    height: 0;
    padding-bottom: 180px;
  }
  .crane-on-form-cover-2 {
    position: absolute;
    display: block;
    top: -150px;
    right: -3rem;
    width: 240px;
    height: 0;
    padding-bottom: 180px;
  }
  .row.slider-cover {
    width: calc(100% + 2rem);
    margin: 0 -1rem;
  }
  .navbar-brand {
    padding-top:1rem;
    padding-bottom:1rem;
  }
  .navbar-brand svg {
    width: 289px;
    height: 100px;
  }
}
@media (min-width: 1600px) {
  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-size: 16px; }
  .display-1 { font-size: 60px; }
  .display-2 { font-size: 48px; }
  .display-3, [id*="article-detail-"] .inside-text h2 { font-size: 24px; }
  .display-4 { font-size: 20px; }
  .navbar-brand svg{
    width: 289px;
    height: 100px;
  }
  .small-menu .navbar-brand svg{
    width: 200px;
    height: 70px;
  }
  .top-header { top: calc(40px + 3rem); }
  section:first-of-type:not(.pt-0) { padding-top: 110px; }
  .video-text { font-size: 2rem; }
  .video-text [class*="fa-"] { font-size: 120px; }
  .btn-play::before { font-size: 120px; }
}

/* Cookies */
.termsfeed-com---palette-light .cc-pc-container {
  background: #fff;
  overflow: hidden;
  font-family:'Open Sans', sans-serif;
}
.termsfeed-com---pc-dialog .cc-cp-body-tabs-item-link, .termsfeed-com---pc-dialog .cc-cp-body-content-entry-text {
  font-size: .7143rem !important;
  font-family:'Open Sans', sans-serif;
  letter-spacing: normal;
}
.termsfeed-com---palette-light.termsfeed-com---nb {
  background-color: #fff !important;
  color: #323232 !important;
  box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 30%) !important;
}
.termsfeed-com---nb .cc-nb-main-container {
  padding: 2rem !important;
  font-family:'Open Sans', sans-serif;
}
.termsfeed-com---nb-simple {
  max-width: 480px !important;
}
.termsfeed-com---nb .cc-nb-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
}
.termsfeed-com---nb .cc-nb-text {
  font-size: .7143rem !important;
}
.termsfeed-com---palette-light .cc-nb-reject, .termsfeed-com---palette-light .cc-nb-okagree, .termsfeed-com---palette-light .cc-cp-foot-save, .termsfeed-com---pc-dialog input[type="checkbox"].cc-custom-checkbox:checked+label:before {
  background-color: #ffae45 !important;
}
.termsfeed-com---palette-light .cc-pc-head-lang select {
  color: #323232  !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.termsfeed-com---palette-light .cc-nb-changep { background: none !important; color: #666 !important; }
</pre></body></html>