#cookieUsps {
  hr {
    border-color: $gray-line;
  }
  ul {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    padding: 0;
  }
  li {
    &:before {
      content: '\f00c';
      font-family: 'Font Awesome 5 Pro';
      font-weight: 300;
      margin-right: 8px;
    }
    flex-grow: 1;
    text-align: center;
    &:nth-child(3) {
      flex-grow: 2;
    }
    &:nth-child(4) {
      text-align: right;
    }
    &:nth-child(1) {
      text-align: left;
    }
    img {
      margin-left: 8px;
    }
  }
}

#divDisabledBackground {
  z-index:9900;
  background: gray;
  opacity: 0.5;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: fixed;
}

#cookieNote {
	position:fixed;
	bottom:0;
	z-index: 9901;
	margin: 0;
	padding: 20px;
	height: 400px; 
	.container-fluid {
		overflow-y: scroll;
		overflow-x: hidden;
		height: 275px;
	}
	.cookie-glass {
		position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
		height: 80px;
    width: 80px;
    top: -37px;
		img {
			margin-top: 10px;
			width: auto;
		}
		@include media-breakpoint-up(md) {
			height: 100px;
	    width: 100px;
	    top: -51px;
			img {
				margin-top: 19px;
				width: 70%;
			}
		}
	}
	.cookie-action a:hover {
		color: $brand-font-color
	}
}