/* the norm */
#gritter-notice-wrapper {
	position:fixed;
	top:65px;
	right:20px;
	width:301px;
	z-index:9999;
}

@media screen and (max-width: 760px) { 
#gritter-notice-wrapper {
	right:5%;
	width:90%;
	max-width:400px;
}
}

#gritter-notice-wrapper.top-left {
    left: 20px;
    right: auto;
}
#gritter-notice-wrapper.bottom-right {
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
}
#gritter-notice-wrapper.bottom-left {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 20px;
}
.gritter-item-wrapper {
	position:relative;
	margin:0 0 10px 0;
	/* background:url('../images/ie-spacer.gif'); /* ie7/8 fix */ 
}
.gritter-top {
	/* background:url(../images/gritter.png) no-repeat left -30px;
	height:10px;*/
}

.gritter-bottom {
	/* background:url(../images/gritter.png) no-repeat left bottom;
	height:8px;
	margin:0 */
}

.gritter-item {
	display:block;
	/* background:url(../images/gritter.png) no-repeat left -40px; */
	background: rgba(255, 255,255, 1);
	border-left:15px solid #000; 
	color:#333;
	padding:2px 11px 8px 11px;
font-family:'Futura PT W01 Book';
	
}

.gritter-item p {
	padding:0;
	margin:0 auto;
	word-wrap:break-word;
	max-width:200px;
}

.gritter-title {
	
font-family:'Futura PT W01 Demi';
	padding:0 0 7px 0;
	display:block;
    text-transform:uppercase;

}
.gritter-image {
	width:48px;
	height:48px;
	float:left;
}
.gritter-with-image,
.gritter-without-image {
	padding:0;
}
.gritter-with-image {
	width:220px;
	float:right;
}
/* for the light (white) version of the gritter notice */
.gritter-light .gritter-item,
.gritter-light .gritter-bottom,
.gritter-light .gritter-top,
.gritter-light .gritter-close {
    background-image: url(../images/gritter-light.png);
    color: #222;
}
.gritter-light .gritter-title {
    text-shadow: none;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #000;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 2% auto;
  box-shadow: inset 0px 0px 0px #fff;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #000;
  }
}

