@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body {
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  letter-spacing: 0.02em;
  color: #f5f5f5;
  background: url('/static/RDF/site/content/landing/lp-carters/img/bg-pattern.svg') repeat top left;
  background-size:100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


a.buy-button{
    display: inline-block;
    height: 40px;
    width: 190px;
    background: #aecbd400;
    color: #38535d;
    line-height: 36px;
    text-align: center;
    border-radius: 8px;
    vertical-align: top;
    /*text-decoration: none;
    border: 2px solid #38545d;*/
}

/*::-moz-selection {
  background: rgba(33, 16, 118, 0.75);
  text-shadow: none;
}
::selection {
  background: rgba(33, 16, 118, 0.75);
  text-shadow: none;
}
*/


.button-container{
	text-align: center;
	margin: 4em 0;
}

.button-container button{
	padding: 16px 40px;
	    border: none;
	    background:#38545d;
	    border-radius: 8px;
	    color: #fff;
	    font-weight: 600;
	    font-size: 1.2em;
		cursor:pointer;
}




.title {
  font-size: 3.5em;
  font-weight: 500;
  margin: 0.5em 0.2em 0;
  text-align: center;
  color:#656565;
}
.title img{
    width: 250px;
	margin-right: 10px;
}

header p{
    color: #5a5a5a;
    text-align: center;
    font-size: 1.6em;
    margin: 0.5em 0.2em 1.5em;
}

header p span{
	font-size:0.8em;
}


.container {
  display: flex;
  max-width: 1550px;
  margin: 0 auto;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-around;
  background:#fff;
  border-radius: 8px;
}
.container .checklist {
  min-width:600px;
  max-width:640px;
  margin: 15px 15px 0;
}
.container .checklist .checklist-container {
  margin: 0;
  padding: 0;
}
.checklist__title {
  font-size: 2.125em;
  font-weight: 500;
  margin: 0;
  color: #e6e6e6;
}
.checklist__title-border {
  display: block;
  width: 350px;
  margin-top: 8px;
  border-bottom: 2px solid #21acb3;
  box-shadow: 0 15px 15px -15px rgba(33, 16, 118, 0.5);
}

.checklist-item {
  display: block;
  padding: 15px 20px;
  border-radius: 8px;
}
.checklist-item:nth-child(odd) {
  background:#eaf4f7;
}
.checkbox {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 150ms ease;
  border: 2px solid #38535d;
  border-radius: 8px;
}
.checkbox:hover {
  background:rgb(56 83 93 / 19%);
}
.checkbox:after {
  position: absolute;
  top: 3px;
  left: 12px;
  width: 10px;
  height: 24px;
  content: '';
  transition: all 325ms ease;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  border-right: 2px solid #e6e9ed;
  border-bottom: 2px solid #e6e9ed;
}
.checklist-item__title {
  font-size: 1.125em;
  line-height:40px;
  display: inline-block;
  width: calc(100% - 256px);
  margin-left:16px;
  vertical-align: top;
  color:#4c4c4c;
}
/*.checklist-item__title:focus,
.checklist-item__title:hover {
  color: #dcdcdc;
}*/
input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked ~ .checkbox {
  -webkit-animation: wiggle 0.4s ease;
  animation: wiggle 0.4s ease;
  border-color: transparent;
  background: #38535d;
}
input[type=checkbox]:checked ~ .checkbox:after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
input[type=checkbox]:checked ~ .checklist-item__title {
  transition: all 175ms ease;
  text-decoration: line-through;
  opacity: 0.5;
}

input[type=checkbox]:checked ~ a.buy-button {
    display: none;
}



@-webkit-keyframes wiggle {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes wiggle {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
.checklist-item__expand {
  float: right;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 0;
  outline: 0;
  background: 0 0;
}
.line {
  display: block;
  width: 20px;
  transition: all 0.3s cubic-bezier(0.76, -0.26, 0.15, 1.32);
  transform: translateY(-50%);
  transform-origin: center center;
  outline: 1px solid transparent;
  background: #211076;
}
.line:after {
  display: block;
  width: 20px;
  height: 4px;
  content: '';
  transition: all 0.3s cubic-bezier(0.76, -0.26, 0.15, 1.32);
  transform: rotate(90deg);
  transform-origin: center center;
  outline: 1px solid transparent;
  background: #211076;
}
.closed.line {
  top: 45%;
  transform: rotate(180deg);
  background: #bf6bfe;
}
.closed.line:after {
  transform: rotate(0);
  background: 0 0;
}


/*
@media print {
  *,
  :after,
  :before,
  :first-letter,
  :first-line {
    color: #000 !important;
    background: 0 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: ' (' attr(href) ')';
  }
  abbr[title]:after {
    content: ' (' attr(title) ')';
  }
  a[href^='#']:after,
  a[href^='javascript:']:after {
    content: '';
  }
  img {
    page-break-inside: avoid;
  }
  h2 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
}
*/