/* ================= Font Family =========== */
/* ================= Colors =========== */
/* ============== Define Color ============== */
/* ================= Font Size =========== */
/* ================= Padding =========== */
.app-top-section .santaSwitch input {
  position: absolute;
  opacity: 0;
}

.app-top-section .toggleSantaDiv {
  margin: auto;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100px;
  height: 30px;
  position: absolute;
  cursor: pointer;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(186, 186, 186, 0.21);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.app-top-section .santaSwitch .santa {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.app-top-section .santaSwitch .santa img.sImg {
  width: 70px;
  position: absolute;
  left: -15px;
  top: -19px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.app-top-section .santaSwitch .santa img.sCheckImg {
  width: 35px;
  position: absolute;
  left: -20px;
  top: -2px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  display: none;
  filter: hue-rotate(70deg);
  -webkit-filter: hue-rotate(70deg);
}

.app-top-section .santaSwitch input:checked + .toggleSantaDiv {
  background-color: rgba(219, 202, 57, 0.26);
}

.app-top-section .santaSwitch input:checked + .toggleSantaDiv .santa {
  -webkit-transform: translateX(85%);
  -moz-transform: translateX(85%);
  -ms-transform: translateX(85%);
  -o-transform: translateX(85%);
  transform: translateX(85%);
}

.app-top-section .santaSwitch input:checked + .toggleSantaDiv .santa img.sCheckImg {
  display: block;
}

.app-top-section .santaSwitch input:checked + .toggleSantaDiv .santa img.sImg {
  display: none;
}

.christmas-campaign {
  background: #cb2d3e;
  background: -webkit-linear-gradient(to bottom, #ef473a, #cb2d3e);
  background: linear-gradient(to bottom, #ef473a, #cb2d3e) fixed;
  overflow: hidden;
}

.christmas-div #days {
  font-size: 80px;
  color: #ffffff;
  font-family: Cookie, cursive;
  text-align: center;
  letter-spacing: 3px;
}

.christmas-campaign-counter-div .drop {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.christmas-campaign-counter-div .snow {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 10px #ffffff;
}

.christmas-campaign-counter-div .fallanimate {
  -webkit-animation: falling 8.5s infinite ease-in;
  -moz-animation: falling 8.5s infinite ease-in;
  -ms-animation: falling 8.5s infinite ease-in;
  -o-animation: falling 8.5s infinite ease-in;
  animation: falling 8.5s infinite ease-in;
}

.christmas-campaign .animated-button4 {
  background: linear-gradient(to bottom right, rgba(233, 116, 107, 0.8), rgba(143, 44, 135, 0.89));
  padding: 50px 40px;
  width: 225px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: hidden;
  color: #e6f7d4;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.christmas-campaign .animated-button4:hover {
  background: linear-gradient(to bottom right, #023756, rgba(0, 12, 94, 0.92));
}

.christmas-campaign .animated-button4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #99ad85;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  -webkit-transition: 0.2s opacity ease-in-out;
  -moz-transition: 0.2s opacity ease-in-out;
  -ms-transition: 0.2s opacity ease-in-out;
  -o-transition: 0.2s opacity ease-in-out;
}

.christmas-campaign .animated-button4:hover::before {
  opacity: 0.2;
}

.christmas-campaign .animated-button4 span {
  position: absolute;
}

.christmas-campaign .animated-button4 span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to left, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateTop linear infinite;
  -moz-animation: 2s animateTop linear infinite;
  -ms-animation: 2s animateTop linear infinite;
  -o-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

.christmas-campaign .animated-button4 span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to top, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
  -moz-animation: 2s animateRight linear -1s infinite;
  -ms-animation: 2s animateRight linear -1s infinite;
  -o-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

.christmas-campaign .animated-button4 span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to right, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateBottom linear infinite;
  -moz-animation: 2s animateBottom linear infinite;
  -ms-animation: 2s animateBottom linear infinite;
  -o-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

.christmas-campaign .animated-button4 span:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to bottom, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  -moz-animation: 2s animateLeft linear -1s infinite;
  -ms-animation: 2s animateLeft linear -1s infinite;
  -o-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

.newayearActionBtnDiv {
  position: absolute;
  bottom: 10%;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
}

.christmas-give .contentDiv {
  color: #ffffff;
  text-align: center;
}

.christmas-give .titleDiv {
  padding-top: 24px;
}

.christmas-give h3 {
  background: rgba(255, 255, 255, 0.75);
  color: #141e2a;
  padding: 25px 0;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 15px #000000;
}

.christmasGiveViewText {
  color: #e27c31;
  background: 0 0;
  border: none;
}

.christmas-give .carousel-control {
  top: 41%;
  color: #ffffff;
}

.christmas-give .carousel-inner {
  overflow: hidden;
}

.christmas-give .carousel-control span {
  font-size: 60px;
}

.christmas-campaign .app-top-section, .christmas-coming-soon .app-top-section, .christmas-give .app-top-section, .namamiTateDogood .app-top-section, .namamiTateDogoodTasks .app-top-section {
  background: #ffffff;
}

.christmas-campaign .app-navigation, .christmas-coming-soon .app-navigation, .christmas-give .app-navigation, .namamiTateDogood .app-navigation, .namamiTateDogoodTasks .app-navigation {
  display: none;
}

.christmas-campaign .app-top-section-fixed, .christmas-coming-soon .app-top-section-fixed, .christmas-give .app-top-section-fixed, .namamiTateDogood .app-top-section-fixed {
  position: relative;
}

.christmas-give .footer-bottom-section, .namamiTateDogood .footer-bottom-section, .theme-1.christmas-give .footer-bottom-section-theme {
  position: relative;
}

.christmas-give .corner-ribbon {
  width: 100px;
  position: absolute;
  top: 0;
  right: 0;
  letter-spacing: 1px;
  background: #e27c31;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  color: #f0f0f0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.christmasGiveDonateButton {
  width: 200px;
  padding: 16px;
  font-size: 13px;
  margin-top: 5px;
  text-transform: uppercase;
  box-shadow: 0 0 10px #000000;
  background: #e27c31;
  color: #ffffff;
  border: 1px solid #ff9800;
  cursor: pointer;
  z-index: 3;
  position: relative;
}

.christmas-give {
  height: 100%;
  width: 100%;
  position: relative;
  background: url(../../images/xmas-bg.jpg) no-repeat;
}

.christmas-give .xmas #xmas {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.christmas-give input {
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.christmas-give .toggle-wrapper {
  flex: 1 1 33.3333333333%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

@media (max-width: 960px) {
  .christmas-give .toggle-wrapper {
    flex: 1 1 50%;
  }
}
.christmas-give .toggle {
  position: relative;
  display: inline-block;
}

.christmas-give label.toggle-item {
  width: 21em;
  background: #2e394d;
  height: 7em;
  display: inline-block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform-origin: 20% center;
  cursor: pointer;
}

.christmas-give label.toggle-item:before {
  display: block;
  width: 6.3em;
  height: 6.3em;
  top: 0.25em;
  left: 0.25em;
  border-radius: 6em;
  -webkit-border-radius: 6em;
  -moz-border-radius: 6em;
  -ms-border-radius: 6em;
  -o-border-radius: 6em;
  border: 2px solid #88cf8f;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.christmas-give .pancake-stack label:before {
  content: none;
}

.christmas-give .pancake-stack .pancakes {
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.christmas-give .pancake-stack .pancake {
  background: #e27c31;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 6.5em;
  height: 6.5em;
  position: absolute;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  top: 2px;
  left: 4px;
  box-shadow: 0 2px 0 2px #fbbe7c;
}

.christmas-give .pancake-stack .pancake:nth-child(2) {
  left: 0;
  top: -3px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  transition: 0.2s ease 0.2s;
  -webkit-transition: 0.2s ease 0.2s;
  -moz-transition: 0.2s ease 0.2s;
  -ms-transition: 0.2s ease 0.2s;
  -o-transition: 0.2s ease 0.2s;
}

.christmas-give .pancake-stack .pancake:nth-child(3) {
  top: -8px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  transition: 0.2s ease 0.2s;
  -webkit-transition: 0.2s ease 0.2s;
  -moz-transition: 0.2s ease 0.2s;
  -ms-transition: 0.2s ease 0.2s;
  -o-transition: 0.2s ease 0.2s;
}

.christmas-give .pancake-stack .pancake:nth-child(3):before, .pancake-stack .pancake:nth-child(3):after {
  background: #ef8927;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  width: 50%;
  height: 20%;
}

.christmas-give .pancake-stack .pancake:nth-child(3):before {
  top: 20px;
  left: 5px;
}

.christmas-give .pancake-stack .pancake:nth-child(3):after {
  top: 22px;
  right: 5px;
}

.christmas-give .pancake-stack .butter {
  width: 38px;
  height: 37px;
  background: #fbdb60;
  top: 6px;
  left: 20px;
  position: absolute;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 1px 0 1px #d67823;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.christmas-give #pancake:checked + label .pancakes {
  -webkit-transform: translateX(182px);
  -moz-transform: translateX(182px);
  -ms-transform: translateX(182px);
  -o-transform: translateX(182px);
  transform: translateX(182px);
}

.christmas-give #pancake:checked + label .pancake:nth-child(2) {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0.2s;
}

.christmas-give #pancake:checked + label .pancake:nth-child(3) {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0.4s;
}

.christmas-give #pancake:checked + label .butter {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0.6s;
}

.christmas-give .stage {
  width: 300px;
  height: 500px;
  position: relative;
  margin: 0 auto;
}

.christmas-give .core {
  width: 65px;
  height: 95px;
  position: absolute;
  left: 65px;
  top: 200px;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  -o-transform: rotate(25deg);
  transform: rotate(25deg);
  -webkit-animation: bob 1.2s infinite;
  -moz-animation: bob 1.2s infinite;
  -ms-animation: bob 1.2s infinite;
  -o-animation: bob 1.2s infinite;
  animation: bob 1.2s infinite;
}

.christmas-give .shadow {
  width: 230px;
  height: 80px;
  background: #000000;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 30px;
  top: 390px;
  opacity: 0.2;
  z-index: 0;
  -webkit-animation: shadowbounce 1.2s infinite;
  -moz-animation: shadowbounce 1.2s infinite;
  -ms-animation: shadowbounce 1.2s infinite;
  -o-animation: shadowbounce 1.2s infinite;
  animation: shadowbounce 1.2s infinite;
}

.christmas-give .dress {
  width: 0;
  height: 0;
  border-left: 65px solid transparent;
  border-right: 65px solid transparent;
  border-bottom: 95px solid #f25437;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.christmas-give .headcontainer {
  width: 119px;
  height: 115px;
  position: absolute;
  left: 0;
  top: -100px;
  z-index: 3;
  -webkit-transform: rotate(-18deg);
  -moz-transform: rotate(-18deg);
  -ms-transform: rotate(-18deg);
  -o-transform: rotate(-18deg);
  transform: rotate(-18deg);
  -webkit-animation: headbounce 1.2s infinite;
  -moz-animation: headbounce 1.2s infinite;
  -ms-animation: headbounce 1.2s infinite;
  -o-animation: headbounce 1.2s infinite;
  animation: headbounce 1.2s infinite;
}

.christmas-give .headbg {
  width: 119px;
  height: 115px;
  background: #3d3435;
  border-radius: 65px;
  -webkit-border-radius: 65px;
  -moz-border-radius: 65px;
  -ms-border-radius: 65px;
  -o-border-radius: 65px;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.christmas-give .face {
  width: 119px;
  height: 115px;
  background: #974e3b;
  border-radius: 65px;
  -webkit-border-radius: 65px;
  -moz-border-radius: 65px;
  -ms-border-radius: 65px;
  -o-border-radius: 65px;
  position: absolute;
  left: 14px;
  top: 14px;
}

.christmas-give .bun-r {
  width: 77px;
  height: 77px;
  background: #3d3435;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: -32px;
  left: -38px;
  z-index: 1;
  -webkit-animation: bun-r-bob 1.2s infinite;
  -moz-animation: bun-r-bob 1.2s infinite;
  -ms-animation: bun-r-bob 1.2s infinite;
  -o-animation: bun-r-bob 1.2s infinite;
  animation: bun-r-bob 1.2s infinite;
}

.christmas-give .bun-l {
  width: 77px;
  height: 77px;
  background: #3d3435;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: -30px;
  right: -37px;
  z-index: 0;
  -webkit-animation: bun-l-bob 1.2s infinite;
  -moz-animation: bun-l-bob 1.2s infinite;
  -ms-animation: bun-l-bob 1.2s infinite;
  -o-animation: bun-l-bob 1.2s infinite;
  animation: bun-l-bob 1.2s infinite;
}

.christmas-give .hair-r {
  width: 95px;
  height: 95px;
  background: #3d3435;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: -54px;
  left: -20px;
  z-index: 1;
}

.christmas-give .hair-l {
  width: 95px;
  height: 95px;
  background: #3d3435;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: -54px;
  left: 63px;
  z-index: 1;
}

.christmas-give .smile {
  height: 13px;
  width: 28px;
  border-radius: 0 0 90px 90px;
  -webkit-border-radius: 0 0 90px 90px;
  -moz-border-radius: 0 0 90px 90px;
  -ms-border-radius: 0 0 90px 90px;
  -o-border-radius: 0 0 90px 90px;
  background: #ffffff;
  position: absolute;
  left: 56px;
  top: 85px;
  -webkit-animation: smilebob 1.2s infinite;
  -moz-animation: smilebob 1.2s infinite;
  -ms-animation: smilebob 1.2s infinite;
  -o-animation: smilebob 1.2s infinite;
  animation: smilebob 1.2s infinite;
}

.christmas-give .ear-r {
  width: 22px;
  height: 22px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 65px;
  left: 5px;
  z-index: 1;
}

.christmas-give .ear-l {
  width: 22px;
  height: 22px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 65px;
  right: -2px;
  z-index: 0;
}

.christmas-give .eye-r {
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.christmas-give .pupil-r {
  width: 20px;
  height: 20px;
  background: #231e1f;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.christmas-give .eyes {
  height: 35px;
  width: 86px;
  top: 42px;
  left: 27px;
  position: absolute;
  overflow: hidden;
  -webkit-animation: eyebob 1.2s infinite;
  -moz-animation: eyebob 1.2s infinite;
  -ms-animation: eyebob 1.2s infinite;
  -o-animation: eyebob 1.2s infinite;
  animation: eyebob 1.2s infinite;
}

.christmas-give .eyelid-t {
  position: absolute;
  width: 100%;
  height: 18px;
  left: 0;
  top: -18px;
  z-index: 3;
  background: #974e3b;
  -webkit-animation: blink-t 3s infinite;
  -moz-animation: blink-t 3s infinite;
  -ms-animation: blink-t 3s infinite;
  -o-animation: blink-t 3s infinite;
  animation: blink-t 3s infinite;
}

.christmas-give .eyelid-b {
  position: absolute;
  width: 100%;
  height: 18px;
  left: 0;
  bottom: -18px;
  z-index: 3;
  background: #974e3b;
  -webkit-animation: blink-b 3s infinite;
  -moz-animation: blink-b 3s infinite;
  -ms-animation: blink-b 3s infinite;
  -o-animation: blink-b 3s infinite;
  animation: blink-b 3s infinite;
}

.christmas-give .eye-l {
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.christmas-give .pupil-l {
  width: 20px;
  height: 20px;
  background: #231e1f;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.christmas-give .shoulder-r {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 20px;
  left: 50px;
  z-index: 3;
  overflow: visible;
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation: run-shoulder-r 1.2s infinite;
  -moz-animation: run-shoulder-r 1.2s infinite;
  -ms-animation: run-shoulder-r 1.2s infinite;
  -o-animation: run-shoulder-r 1.2s infinite;
  animation: run-shoulder-r 1.2s infinite;
}

.christmas-give .shoulder-r-arm-upper {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .elbow-r {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 0;
  overflow: visible;
  -webkit-transform: rotate(950deg);
  -moz-transform: rotate(950deg);
  -ms-transform: rotate(950deg);
  -o-transform: rotate(950deg);
  transform: rotate(950deg);
  -webkit-animation: run-elbow-r 1.2s infinite;
  -moz-animation: run-elbow-r 1.2s infinite;
  -ms-animation: run-elbow-r 1.2s infinite;
  -o-animation: run-elbow-r 1.2s infinite;
  animation: run-elbow-r 1.2s infinite;
}

.christmas-give .elbow-r-arm-lower {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .hand-r {
  width: 18px;
  height: 18px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -9px;
  left: 0;
  z-index: 0;
}

.christmas-give .hip-r {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: 14px;
  left: 83px;
  z-index: 1;
  overflow: visible;
  -webkit-transform: rotate(-70deg);
  -moz-transform: rotate(-70deg);
  -ms-transform: rotate(-70deg);
  -o-transform: rotate(-70deg);
  transform: rotate(-70deg);
  -webkit-animation: run-hip-r 1.2s infinite;
  -moz-animation: run-hip-r 1.2s infinite;
  -ms-animation: run-hip-r 1.2s infinite;
  -o-animation: run-hip-r 1.2s infinite;
  animation: run-hip-r 1.2s infinite;
}

.christmas-give .hip-r-leg-upper {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .knee-r {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 0;
  overflow: visible;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-animation: run-knee-r 1.2s infinite;
  -moz-animation: run-knee-r 1.2s infinite;
  -ms-animation: run-knee-r 1.2s infinite;
  -o-animation: run-knee-r 1.2s infinite;
  animation: run-knee-r 1.2s infinite;
}

.christmas-give .knee-r-leg-lower {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .sock-r {
  width: 10px;
  height: 20px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.christmas-give .foot-r {
  width: 18px;
  height: 8px;
  background: #000000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -3px;
  left: -1px;
  z-index: 0;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  transform: rotate(3deg);
  -webkit-animation: run-foot-r 1.2s infinite;
  -moz-animation: run-foot-r 1.2s infinite;
  -ms-animation: run-foot-r 1.2s infinite;
  -o-animation: run-foot-r 1.2s infinite;
  animation: run-foot-r 1.2s infinite;
}

.christmas-give .shoulder-l {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: 20px;
  left: 70px;
  z-index: 0;
  overflow: visible;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-animation: run-shoulder-l 1.2s infinite;
  -moz-animation: run-shoulder-l 1.2s infinite;
  -ms-animation: run-shoulder-l 1.2s infinite;
  -o-animation: run-shoulder-l 1.2s infinite;
  animation: run-shoulder-l 1.2s infinite;
}

.christmas-give .shoulder-l-arm-upper {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .elbow-l {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 0;
  overflow: visible;
  -webkit-transform: rotate(950deg);
  -moz-transform: rotate(950deg);
  -ms-transform: rotate(950deg);
  -o-transform: rotate(950deg);
  transform: rotate(950deg);
  -webkit-animation: run-elbow-l 1.2s infinite;
  -moz-animation: run-elbow-l 1.2s infinite;
  -ms-animation: run-elbow-l 1.2s infinite;
  -o-animation: run-elbow-l 1.2s infinite;
  animation: run-elbow-l 1.2s infinite;
}

.christmas-give .elbow-l-arm-lower {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .hand-l {
  width: 18px;
  height: 18px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -9px;
  left: 0;
  z-index: 0;
}

.christmas-give .hip-l {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: 14px;
  left: 56px;
  z-index: 1;
  overflow: visible;
  -webkit-transform: rotate(16deg);
  -moz-transform: rotate(16deg);
  -ms-transform: rotate(16deg);
  -o-transform: rotate(16deg);
  transform: rotate(16deg);
  -webkit-animation: run-hip-l 1.2s infinite;
  -moz-animation: run-hip-l 1.2s infinite;
  -ms-animation: run-hip-l 1.2s infinite;
  -o-animation: run-hip-l 1.2s infinite;
  animation: run-hip-l 1.2s infinite;
}

.christmas-give .hip-l-leg-upper {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .knee-l {
  width: 10px;
  height: 10px;
  background: #974e3b;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 0;
  overflow: visible;
  -webkit-transform: rotate(97deg);
  -moz-transform: rotate(97deg);
  -ms-transform: rotate(97deg);
  -o-transform: rotate(97deg);
  transform: rotate(97deg);
  -webkit-animation: run-knee-l 1.2s infinite;
  -moz-animation: run-knee-l 1.2s infinite;
  -ms-animation: run-knee-l 1.2s infinite;
  -o-animation: run-knee-l 1.2s infinite;
  animation: run-knee-l 1.2s infinite;
}

.christmas-give .knee-l-leg-lower {
  width: 10px;
  height: 38px;
  background: #974e3b;
  position: absolute;
  top: 5px;
  left: 0;
}

.christmas-give .sock-l {
  width: 10px;
  height: 20px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.christmas-give .foot-l {
  width: 18px;
  height: 8px;
  background: #000000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: -3px;
  left: -1px;
  z-index: 0;
  -webkit-transform: rotate(21deg);
  -moz-transform: rotate(21deg);
  -ms-transform: rotate(21deg);
  -o-transform: rotate(21deg);
  transform: rotate(21deg);
  -webkit-animation: run-foot-l 1.2s infinite;
  -moz-animation: run-foot-l 1.2s infinite;
  -ms-animation: run-foot-l 1.2s infinite;
  -o-animation: run-foot-l 1.2s infinite;
  animation: run-foot-l 1.2s infinite;
}

:root {
  --birds-dark:#878787;
  --birds-medium-dark:#AFAFAF;
  --birds-medium-light:#D3D3D3;
  --birds-light:#E2E2E2;
  --birds-bright:#FF5629;
  --birds-shadow:#DDDDDD;
}

.birds {
  position: relative;
  overflow: hidden;
  width: 800px;
  height: 500px;
  margin: auto;
}

.birds *, .birds ::after, .birds ::before {
  position: absolute;
  content: "";
}

.birds__hatdove {
  top: 70px;
  left: 450px;
  width: 255px;
  height: 400px;
}

.birds__hatdove-head {
  top: 0;
  left: 80px;
  width: 80px;
  height: 190px;
  border-radius: 40px 40px 0 0;
  -webkit-border-radius: 40px 40px 0 0;
  -moz-border-radius: 40px 40px 0 0;
  -ms-border-radius: 40px 40px 0 0;
  -o-border-radius: 40px 40px 0 0;
  background: var(--birds-dark);
  -webkit-animation: hatdove-head 2.75s linear infinite;
  -moz-animation: hatdove-head 2.75s linear infinite;
  -ms-animation: hatdove-head 2.75s linear infinite;
  -o-animation: hatdove-head 2.75s linear infinite;
  animation: hatdove-head 2.75s linear infinite;
}

.birds__hatdove-head:before {
  top: 22px;
  left: -12px;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-dark);
}

.birds__hatdove-hat {
  top: 10px;
  left: 5px;
  width: 84px;
  height: 22px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #1d1d1b;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.birds__hatdove-hat:after {
  top: -26px;
  left: 4px;
  width: 76px;
  height: 36px;
  border-radius: 34px 34px 0 0;
  -webkit-border-radius: 34px 34px 0 0;
  -moz-border-radius: 34px 34px 0 0;
  -ms-border-radius: 34px 34px 0 0;
  -o-border-radius: 34px 34px 0 0;
  background: #1d1d1b;
}

.birds__hatdove-hat:before {
  top: -44px;
  left: 29px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-bright);
}

.birds__hatdove-forehead {
  top: 20px;
  left: 4px;
  width: 78px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-dark);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.birds__hatdove-eye {
  top: 26px;
  left: -8px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #ffffff;
  overflow: hidden;
  -webkit-animation: hatdove-eye 2.75s linear infinite;
  -moz-animation: hatdove-eye 2.75s linear infinite;
  -ms-animation: hatdove-eye 2.75s linear infinite;
  -o-animation: hatdove-eye 2.75s linear infinite;
  animation: hatdove-eye 2.75s linear infinite;
}

.birds__hatdove-eye:after {
  left: 11px;
  top: 9px;
  width: 7px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #000000;
  -webkit-animation: hatdove-pupil 2.75s linear infinite;
  -moz-animation: hatdove-pupil 2.75s linear infinite;
  -ms-animation: hatdove-pupil 2.75s linear infinite;
  -o-animation: hatdove-pupil 2.75s linear infinite;
  animation: hatdove-pupil 2.75s linear infinite;
}

.birds__hatdove-eye:nth-child(4) {
  left: 20px;
}

.birds__hatdove-beak {
  top: 67px;
  left: 10px;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #ffffff;
}

.birds__hatdove-beak:after {
  top: 17px;
  left: -13px;
  width: 31px;
  height: 8px;
  border-radius: 1px 0 14px 70px/1px 0 14px 20px;
  -webkit-border-radius: 1px 0 14px 70px/1px 0 14px 20px;
  -moz-border-radius: 1px 0 14px 70px/1px 0 14px 20px;
  -ms-border-radius: 1px 0 14px 70px/1px 0 14px 20px;
  -o-border-radius: 1px 0 14px 70px/1px 0 14px 20px;
  background: var(--birds-bright);
}

.birds__hatdove-beak:before {
  top: 2px;
  left: -28px;
  width: 46px;
  height: 15px;
  border-radius: 30px 14px 0 1px/14px 13px 0 1px;
  -webkit-border-radius: 30px 14px 0 1px/14px 13px 0 1px;
  -moz-border-radius: 30px 14px 0 1px/14px 13px 0 1px;
  -ms-border-radius: 30px 14px 0 1px/14px 13px 0 1px;
  -o-border-radius: 30px 14px 0 1px/14px 13px 0 1px;
  background: var(--birds-bright);
}

.birds__hatdove-body {
  top: 174px;
  left: 69px;
  width: 91px;
  height: 110px;
  border-radius: 13px 0 0 40px/70px 0 0 40px;
  -webkit-border-radius: 13px 0 0 40px/70px 0 0 40px;
  -moz-border-radius: 13px 0 0 40px/70px 0 0 40px;
  -ms-border-radius: 13px 0 0 40px/70px 0 0 40px;
  -o-border-radius: 13px 0 0 40px/70px 0 0 40px;
  background: var(--birds-medium-light);
}

.birds__hatdove-body:after {
  top: 0;
  left: 91px;
  border-bottom: 110px solid var(--birds-medium-light);
  border-right: 68px solid transparent;
  border-radius: 0 0 20px 0/0 0 40px 0;
  -webkit-border-radius: 0 0 20px 0/0 0 40px 0;
  -moz-border-radius: 0 0 20px 0/0 0 40px 0;
  -ms-border-radius: 0 0 20px 0/0 0 40px 0;
  -o-border-radius: 0 0 20px 0/0 0 40px 0;
}

.birds__hatdove-body:before {
  top: 40px;
  left: 91px;
  border-bottom: 70px solid #1d1d1b;
  border-right: 100px solid transparent;
  border-radius: 0 0 12px 0/0 0 70px 0;
  -webkit-border-radius: 0 0 12px 0/0 0 70px 0;
  -moz-border-radius: 0 0 12px 0/0 0 70px 0;
  -ms-border-radius: 0 0 12px 0/0 0 70px 0;
  -o-border-radius: 0 0 12px 0/0 0 70px 0;
}

.birds__hatdove-shadow {
  top: 363px;
  left: 55px;
  width: 154px;
  height: 12px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-shadow);
}

.birds__hatdove-backleg {
  top: 283px;
  left: 103px;
  width: 19px;
  border-style: solid;
  border-color: var(--birds-medium-dark) transparent;
  border-width: 36px 12px 0;
}

.birds__hatdove-backleg:after {
  top: 45px;
  left: -15px;
  width: 36px;
  height: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background: var(--birds-bright);
}

.birds__hatdove-backleg:before {
  top: 0;
  left: 2px;
  width: 15px;
  height: 46px;
  background: var(--birds-bright);
}

.birds__hatdove-backleg .birds__curly {
  width: 7px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-dark);
}

.birds__hatdove-backleg .birds__curly:after {
  top: 0;
  left: 6px;
  width: 7px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-dark);
}

.birds__hatdove-backleg .birds__curly:before {
  top: 0;
  left: 12px;
  width: 7px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-dark);
}

.birds__hatdove-frontleg {
  top: 283px;
  left: 130px;
  width: 19px;
  border-style: solid;
  border-color: var(--birds-medium-light) transparent;
  border-width: 36px 12px 0;
}

.birds__hatdove-frontleg:after {
  top: 45px;
  left: -15px;
  width: 36px;
  height: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background: var(--birds-bright);
}

.birds__hatdove-frontleg:before {
  top: 0;
  left: 2px;
  width: 15px;
  height: 46px;
  background: var(--birds-bright);
}

.birds__hatdove-frontleg .birds__curly {
  width: 7px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-light);
}

.birds__hatdove-frontleg .birds__curly:after {
  top: 0;
  left: 6px;
  width: 7px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-light);
}

.birds__hatdove-frontleg .birds__curly:before {
  top: 0;
  left: 12px;
  width: 7px;
  height: 5px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-light);
}

.birds__hatdove-backwing {
  top: 186px;
  left: 20px;
  width: 100px;
  height: 90px;
  border-radius: 0 0 0 100%;
  -webkit-border-radius: 0 0 0 100%;
  -moz-border-radius: 0 0 0 100%;
  -ms-border-radius: 0 0 0 100%;
  -o-border-radius: 0 0 0 100%;
  background: var(--birds-medium-light);
}

.birds__hatdove-backwing:after {
  top: -18px;
  left: 2px;
  width: 24px;
  height: 30px;
  border-radius: 100% 100% 0 0;
  -webkit-border-radius: 100% 100% 0 0;
  -moz-border-radius: 100% 100% 0 0;
  -ms-border-radius: 100% 100% 0 0;
  -o-border-radius: 100% 100% 0 0;
  transform-origin: right bottom;
  box-sizing: border-box;
  border-top: 8px solid var(--birds-medium-light);
  border-right: 13px solid var(--birds-medium-light);
  animation-delay: -0.1s;
  -webkit-animation: hatdove-finger 0.6s infinite;
  -moz-animation: hatdove-finger 0.6s infinite;
  -ms-animation: hatdove-finger 0.6s infinite;
  -o-animation: hatdove-finger 0.6s infinite;
  animation: hatdove-finger 0.6s infinite;
}

.birds__hatdove-backwing:before {
  top: -18px;
  left: 16px;
  width: 24px;
  height: 30px;
  border-radius: 100% 100% 0 0;
  -webkit-border-radius: 100% 100% 0 0;
  -moz-border-radius: 100% 100% 0 0;
  -ms-border-radius: 100% 100% 0 0;
  -o-border-radius: 100% 100% 0 0;
  transform-origin: right bottom;
  box-sizing: border-box;
  border-top: 8px solid var(--birds-medium-light);
  border-right: 13px solid var(--birds-medium-light);
  -webkit-animation: hatdove-finger 0.6s infinite;
  -moz-animation: hatdove-finger 0.6s infinite;
  -ms-animation: hatdove-finger 0.6s infinite;
  -o-animation: hatdove-finger 0.6s infinite;
  animation: hatdove-finger 0.6s infinite;
}

.birds__hatdove-frontwing {
  top: 213px;
  left: 106px;
  width: 62px;
  height: 58px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-light);
}

.birds__hatdove-frontwing:after {
  top: -5px;
  left: -15px;
  width: 56px;
  height: 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background: var(--birds-light);
  -webkit-transform: rotate(14deg);
  -moz-transform: rotate(14deg);
  -ms-transform: rotate(14deg);
  -o-transform: rotate(14deg);
  transform: rotate(14deg);
}

.birds__hatdove-frontwing:before {
  top: -73px;
  left: 9px;
  width: 45px;
  height: 110px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-light);
  transform-origin: right bottom;
  -webkit-transform: rotate(-50deg);
  -moz-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
  -o-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.birds__hatdove .birds__circles-2 {
  top: 121px;
  left: 116px;
  width: 58px;
  height: 110px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transform-origin: right bottom;
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  transform: rotate(-60deg);
  overflow: hidden;
}

.birds__hatdove .birds__circles-2:after {
  top: -109px;
  left: -60px;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 8px solid var(--birds-dark);
  box-shadow: inset 0 0 0 6px var(--birds-light), inset 0 0 0 14px var(--birds-dark);
}

.birds__hatdove .birds__circles-1 {
  top: 135px;
  left: 66px;
  width: 58px;
  height: 110px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transform-origin: right bottom;
  -webkit-transform: rotate(-43deg);
  -moz-transform: rotate(-43deg);
  -ms-transform: rotate(-43deg);
  -o-transform: rotate(-43deg);
  transform: rotate(-43deg);
  overflow: hidden;
}

.birds__hatdove .birds__circles-1:after {
  top: -109px;
  left: -85px;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 8px solid var(--birds-dark);
  box-shadow: inset 0 0 0 6px var(--birds-medium-light), inset 0 0 0 14px var(--birds-dark);
}

.birds__hatdove-frontwing-finger {
  top: 174px;
  width: 24px;
  height: 30px;
  border-radius: 100% 100% 0 0;
  -webkit-border-radius: 100% 100% 0 0;
  -moz-border-radius: 100% 100% 0 0;
  -ms-border-radius: 100% 100% 0 0;
  -o-border-radius: 100% 100% 0 0;
  transform-origin: right bottom;
  box-sizing: border-box;
  border-top: 8px solid var(--birds-light);
  border-right: 13px solid var(--birds-light);
  -webkit-animation: hatdove-finger 0.6s infinite;
  -moz-animation: hatdove-finger 0.6s infinite;
  -ms-animation: hatdove-finger 0.6s infinite;
  -o-animation: hatdove-finger 0.6s infinite;
  animation: hatdove-finger 0.6s infinite;
}

.birds__hatdove-frontwing-finger:nth-child(10) {
  left: 44px;
  animation-delay: -0.2s;
}

.birds__hatdove-frontwing-finger:nth-child(11) {
  left: 56px;
  animation-delay: -0.5s;
}

.birds__hatdove-frontwing-finger:nth-child(12) {
  left: 68px;
  animation-delay: -0.4s;
}

.birds__rundove {
  top: 70px;
  left: 90px;
  width: 255px;
  height: 400px;
  -webkit-animation: rundove 2.75s linear infinite;
  -moz-animation: rundove 2.75s linear infinite;
  -ms-animation: rundove 2.75s linear infinite;
  -o-animation: rundove 2.75s linear infinite;
  animation: rundove 2.75s linear infinite;
}

.birds__rundove-head {
  top: 0;
  left: 99px;
  width: 80px;
  height: 190px;
  border-radius: 40px 40px 0 0;
  -webkit-border-radius: 40px 40px 0 0;
  -moz-border-radius: 40px 40px 0 0;
  -ms-border-radius: 40px 40px 0 0;
  -o-border-radius: 40px 40px 0 0;
  background: var(--birds-dark);
  transform-origin: right bottom;
  -webkit-animation: rundove-head 2.75s linear infinite;
  -moz-animation: rundove-head 2.75s linear infinite;
  -ms-animation: rundove-head 2.75s linear infinite;
  -o-animation: rundove-head 2.75s linear infinite;
  animation: rundove-head 2.75s linear infinite;
}

.birds__rundove-head:before {
  top: 22px;
  left: 52px;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-dark);
}

.birds__rundove-eye {
  top: 25px;
  left: 54px;
  width: 37px;
  height: 37px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #ffffff;
  overflow: hidden;
  -webkit-animation: rundove-eye 2.75s linear infinite;
  -moz-animation: rundove-eye 2.75s linear infinite;
  -ms-animation: rundove-eye 2.75s linear infinite;
  -o-animation: rundove-eye 2.75s linear infinite;
  animation: rundove-eye 2.75s linear infinite;
}

.birds__rundove-eye:before {
  top: 6px;
  left: 19px;
  width: 7px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #000000;
}

.birds__rundove-eye:after {
  top: -30px;
  left: -2px;
  width: 50px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-dark);
  -webkit-animation: rundove-eyelid 2.75s linear infinite;
  -moz-animation: rundove-eyelid 2.75s linear infinite;
  -ms-animation: rundove-eyelid 2.75s linear infinite;
  -o-animation: rundove-eyelid 2.75s linear infinite;
  animation: rundove-eyelid 2.75s linear infinite;
}

.birds__rundove-eye:nth-child(2) {
  left: 22px;
}

.birds__rundove-beak {
  top: 64px;
  left: 51px;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #ffffff;
}

.birds__rundove-beak:after {
  top: 17px;
  left: 1px;
  width: 31px;
  height: 8px;
  transform-origin: left top;
  border-radius: 0 1px 70px 14px/0 1px 20px 14px;
  -webkit-border-radius: 0 1px 70px 14px/0 1px 20px 14px;
  -moz-border-radius: 0 1px 70px 14px/0 1px 20px 14px;
  -ms-border-radius: 0 1px 70px 14px/0 1px 20px 14px;
  -o-border-radius: 0 1px 70px 14px/0 1px 20px 14px;
  background: var(--birds-bright);
  -webkit-animation: rundove-beak 2.75s linear infinite;
  -moz-animation: rundove-beak 2.75s linear infinite;
  -ms-animation: rundove-beak 2.75s linear infinite;
  -o-animation: rundove-beak 2.75s linear infinite;
  animation: rundove-beak 2.75s linear infinite;
}

.birds__rundove-beak:before {
  top: 2px;
  left: 1px;
  width: 46px;
  height: 15px;
  border-radius: 14px 30px 1px 0/13px 14px 1px 0;
  -webkit-border-radius: 14px 30px 1px 0/13px 14px 1px 0;
  -moz-border-radius: 14px 30px 1px 0/13px 14px 1px 0;
  -ms-border-radius: 14px 30px 1px 0/13px 14px 1px 0;
  -o-border-radius: 14px 30px 1px 0/13px 14px 1px 0;
  background: var(--birds-bright);
}

.birds__rundove-body {
  top: 174px;
  left: 98px;
  width: 91px;
  height: 110px;
  border-radius: 0 13px 40px 0/0 70px 40px 0;
  -webkit-border-radius: 0 13px 40px 0/0 70px 40px 0;
  -moz-border-radius: 0 13px 40px 0/0 70px 40px 0;
  -ms-border-radius: 0 13px 40px 0/0 70px 40px 0;
  -o-border-radius: 0 13px 40px 0/0 70px 40px 0;
  background: var(--birds-medium-light);
}

.birds__rundove-body:after {
  top: 0;
  left: -68px;
  border-bottom: 110px solid var(--birds-medium-light);
  border-left: 68px solid transparent;
  border-radius: 0 0 0 20px/0 0 0 40px;
  -webkit-border-radius: 0 0 0 20px/0 0 0 40px;
  -moz-border-radius: 0 0 0 20px/0 0 0 40px;
  -ms-border-radius: 0 0 0 20px/0 0 0 40px;
  -o-border-radius: 0 0 0 20px/0 0 0 40px;
  transform-origin: right bottom;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-animation: rundove-tail 2.75s linear infinite;
  -moz-animation: rundove-tail 2.75s linear infinite;
  -ms-animation: rundove-tail 2.75s linear infinite;
  -o-animation: rundove-tail 2.75s linear infinite;
  animation: rundove-tail 2.75s linear infinite;
}

.birds__rundove-body:before {
  top: 40px;
  left: -100px;
  border-bottom: 70px solid #1d1d1b;
  border-left: 100px solid transparent;
  border-radius: 0 0 0 12px/0 0 0 70px;
  -webkit-border-radius: 0 0 0 12px/0 0 0 70px;
  -moz-border-radius: 0 0 0 12px/0 0 0 70px;
  -ms-border-radius: 0 0 0 12px/0 0 0 70px;
  -o-border-radius: 0 0 0 12px/0 0 0 70px;
  transform-origin: right bottom;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-animation: rundove-tail 2.75s linear infinite;
  -moz-animation: rundove-tail 2.75s linear infinite;
  -ms-animation: rundove-tail 2.75s linear infinite;
  -o-animation: rundove-tail 2.75s linear infinite;
  animation: rundove-tail 2.75s linear infinite;
}

.birds__rundove-shadow {
  top: 433px;
  left: 43px;
  width: 162px;
  height: 12px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-shadow);
  -webkit-animation: rundove-shadow 2.75s linear infinite;
  -moz-animation: rundove-shadow 2.75s linear infinite;
  -ms-animation: rundove-shadow 2.75s linear infinite;
  -o-animation: rundove-shadow 2.75s linear infinite;
  animation: rundove-shadow 2.75s linear infinite;
}

.birds__rundove-backleg {
  top: 273px;
  left: 113px;
  width: 19px;
  transform-origin: 9.5px 0;
  border-style: solid;
  border-color: var(--birds-medium-dark) transparent;
  border-width: 46px 12px 0;
  -webkit-animation: rundove-back-knee 2.75s linear infinite;
  -moz-animation: rundove-back-knee 2.75s linear infinite;
  -ms-animation: rundove-back-knee 2.75s linear infinite;
  -o-animation: rundove-back-knee 2.75s linear infinite;
  animation: rundove-back-knee 2.75s linear infinite;
}

.birds__rundove-backleg:after {
  top: 45px;
  left: -3px;
  width: 36px;
  height: 6px;
  transform-origin: 10.5px -46px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background: var(--birds-bright);
  -webkit-animation: rundove-back-foot 2.75s linear infinite;
  -moz-animation: rundove-back-foot 2.75s linear infinite;
  -ms-animation: rundove-back-foot 2.75s linear infinite;
  -o-animation: rundove-back-foot 2.75s linear infinite;
  animation: rundove-back-foot 2.75s linear infinite;
}

.birds__rundove-backleg:before {
  top: -8px;
  left: 2px;
  width: 15px;
  height: 57px;
  border-radius: 7px 7px 3px 3px;
  -webkit-border-radius: 7px 7px 3px 3px;
  -moz-border-radius: 7px 7px 3px 3px;
  -ms-border-radius: 7px 7px 3px 3px;
  -o-border-radius: 7px 7px 3px 3px;
  transform-origin: 7.5px 8px;
  background: var(--birds-bright);
  -webkit-animation: rundove-back-leg 2.75s linear infinite;
  -moz-animation: rundove-back-leg 2.75s linear infinite;
  -ms-animation: rundove-back-leg 2.75s linear infinite;
  -o-animation: rundove-back-leg 2.75s linear infinite;
  animation: rundove-back-leg 2.75s linear infinite;
}

.birds__rundove-backleg .birds__curly {
  top: -10px;
  left: 0;
  width: 7px;
  height: 15px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-dark);
}

.birds__rundove-backleg .birds__curly:after {
  top: 0;
  left: 6px;
  width: 7px;
  height: 15px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-dark);
}

.birds__rundove-backleg .birds__curly:before {
  top: 0;
  left: 12px;
  width: 7px;
  height: 15px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-dark);
}

.birds__rundove-frontleg {
  top: 273px;
  left: 87px;
  width: 19px;
  border-style: solid;
  border-color: var(--birds-medium-light) transparent;
  transform-origin: 9.5px 0;
  border-width: 46px 12px 0;
  -webkit-animation: rundove-front-knee 2.75s linear infinite;
  -moz-animation: rundove-front-knee 2.75s linear infinite;
  -ms-animation: rundove-front-knee 2.75s linear infinite;
  -o-animation: rundove-front-knee 2.75s linear infinite;
  animation: rundove-front-knee 2.75s linear infinite;
}

.birds__rundove-frontleg:after {
  top: 45px;
  left: -3px;
  width: 36px;
  height: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transform-origin: 10.5px -46px;
  background: var(--birds-bright);
  -webkit-animation: rundove-front-foot 2.75s linear infinite;
  -moz-animation: rundove-front-foot 2.75s linear infinite;
  -ms-animation: rundove-front-foot 2.75s linear infinite;
  -o-animation: rundove-front-foot 2.75s linear infinite;
  animation: rundove-front-foot 2.75s linear infinite;
}

.birds__rundove-frontleg:before {
  top: -8px;
  left: 2px;
  width: 15px;
  height: 57px;
  border-radius: 7px 7px 3px 3px;
  -webkit-border-radius: 7px 7px 3px 3px;
  -moz-border-radius: 7px 7px 3px 3px;
  -ms-border-radius: 7px 7px 3px 3px;
  -o-border-radius: 7px 7px 3px 3px;
  transform-origin: 7.5px 8px;
  background: var(--birds-bright);
  -webkit-animation: rundove-front-leg 2.75s linear infinite;
  -moz-animation: rundove-front-leg 2.75s linear infinite;
  -ms-animation: rundove-front-leg 2.75s linear infinite;
  -o-animation: rundove-front-leg 2.75s linear infinite;
  animation: rundove-front-leg 2.75s linear infinite;
}

.birds__rundove-frontleg .birds__curly {
  top: -10px;
  left: 0;
  width: 7px;
  height: 15px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-light);
}

.birds__rundove-frontleg .birds__curly:after {
  top: 0;
  left: 6px;
  width: 7px;
  height: 15px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-light);
}

.birds__rundove-frontleg .birds__curly:before {
  top: 0;
  left: 12px;
  width: 7px;
  height: 15px;
  border-radius: 0 0 7px 7px;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  background: var(--birds-medium-light);
}

.birds__rundove-backwing {
  top: 150px;
  left: 84px;
  width: 85px;
  height: 85px;
  border-radius: 0 100% 40% 100%;
  -webkit-border-radius: 0 100% 40% 100%;
  -moz-border-radius: 0 100% 40% 100%;
  -ms-border-radius: 0 100% 40% 100%;
  -o-border-radius: 0 100% 40% 100%;
  background: var(--birds-light);
  transform-origin: 80px 80px;
  -webkit-transform: rotate(110deg);
  -moz-transform: rotate(110deg);
  -ms-transform: rotate(110deg);
  -o-transform: rotate(110deg);
  transform: rotate(110deg);
  -webkit-animation: rundove-back-wing 2.75s linear infinite;
  -moz-animation: rundove-back-wing 2.75s linear infinite;
  -ms-animation: rundove-back-wing 2.75s linear infinite;
  -o-animation: rundove-back-wing 2.75s linear infinite;
  animation: rundove-back-wing 2.75s linear infinite;
}

.birds__rundove-backwing .birds__finger:nth-child(1) {
  top: -6px;
  left: 40px;
  width: 20px;
  height: 50px;
  -webkit-transform: rotate(95deg);
  -moz-transform: rotate(95deg);
  -ms-transform: rotate(95deg);
  -o-transform: rotate(95deg);
  transform: rotate(95deg);
  background: var(--birds-dark);
  border-radius: 100% 0;
  -webkit-border-radius: 100% 0;
  -moz-border-radius: 100% 0;
  -ms-border-radius: 100% 0;
  -o-border-radius: 100% 0;
  transform-origin: 5px 5px;
}

.birds__rundove-backwing .birds__finger:nth-child(2) {
  top: 40px;
  left: 3px;
  width: 20px;
  height: 50px;
  -webkit-transform: rotate(165deg);
  -moz-transform: rotate(165deg);
  -ms-transform: rotate(165deg);
  -o-transform: rotate(165deg);
  transform: rotate(165deg);
  background: var(--birds-dark);
  border-radius: 0 100%;
  -webkit-border-radius: 0 100%;
  -moz-border-radius: 0 100%;
  -ms-border-radius: 0 100%;
  -o-border-radius: 0 100%;
  transform-origin: 5px 5px;
  z-index: 22;
}

.birds__rundove-backwing .birds__finger:nth-child(3) {
  top: 20px;
  left: 20px;
  width: 15px;
  height: 50px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background: var(--birds-dark);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transform-origin: 5px 5px;
}

.birds__rundove-backwing .birds__circles {
  width: 85px;
  height: 85px;
  border-radius: 0 100% 40% 100%;
  -webkit-border-radius: 0 100% 40% 100%;
  -moz-border-radius: 0 100% 40% 100%;
  -ms-border-radius: 0 100% 40% 100%;
  -o-border-radius: 0 100% 40% 100%;
  overflow: hidden;
}

.birds__rundove-backwing .birds__circles:after {
  top: 10px;
  left: 10px;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 8px solid var(--birds-dark);
  box-shadow: 0 0 0 7px var(--birds-light), 0 0 0 60px var(--birds-dark);
}

.birds__rundove-frontwing {
  top: 132px;
  left: 67px;
  width: 85px;
  height: 85px;
  border-radius: 0 100% 40% 100%;
  -webkit-border-radius: 0 100% 40% 100%;
  -moz-border-radius: 0 100% 40% 100%;
  -ms-border-radius: 0 100% 40% 100%;
  -o-border-radius: 0 100% 40% 100%;
  background: var(--birds-light);
  transform-origin: 80px 80px;
  -webkit-transform: rotate(-68deg);
  -moz-transform: rotate(-68deg);
  -ms-transform: rotate(-68deg);
  -o-transform: rotate(-68deg);
  transform: rotate(-68deg);
  -webkit-animation: rundove-front-wing 2.75s linear infinite;
  -moz-animation: rundove-front-wing 2.75s linear infinite;
  -ms-animation: rundove-front-wing 2.75s linear infinite;
  -o-animation: rundove-front-wing 2.75s linear infinite;
  animation: rundove-front-wing 2.75s linear infinite;
}

.birds__rundove-frontwing .birds__circles {
  width: 85px;
  height: 85px;
  border-radius: 0 100% 40% 100%;
  -webkit-border-radius: 0 100% 40% 100%;
  -moz-border-radius: 0 100% 40% 100%;
  -ms-border-radius: 0 100% 40% 100%;
  -o-border-radius: 0 100% 40% 100%;
  overflow: hidden;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.birds__rundove-frontwing .birds__circles:after {
  top: 10px;
  left: 10px;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 8px solid var(--birds-dark);
  box-shadow: 0 0 0 7px var(--birds-light), 0 0 0 60px var(--birds-dark);
}

.birds__rundove-frontwing .birds__finger:nth-child(1) {
  top: -6px;
  left: 40px;
  width: 20px;
  height: 50px;
  -webkit-transform: rotate(85deg);
  -moz-transform: rotate(85deg);
  -ms-transform: rotate(85deg);
  -o-transform: rotate(85deg);
  transform: rotate(85deg);
  background: var(--birds-dark);
  border-radius: 100% 0;
  -webkit-border-radius: 100% 0;
  -moz-border-radius: 100% 0;
  -ms-border-radius: 100% 0;
  -o-border-radius: 100% 0;
  transform-origin: 5px 5px;
  -webkit-animation: rundove-front-finger-1 2.75s linear infinite;
  -moz-animation: rundove-front-finger-1 2.75s linear infinite;
  -ms-animation: rundove-front-finger-1 2.75s linear infinite;
  -o-animation: rundove-front-finger-1 2.75s linear infinite;
  animation: rundove-front-finger-1 2.75s linear infinite;
}

.birds__rundove-frontwing .birds__finger:nth-child(2) {
  top: 40px;
  left: 3px;
  width: 20px;
  height: 50px;
  -webkit-transform: rotate(185deg);
  -moz-transform: rotate(185deg);
  -ms-transform: rotate(185deg);
  -o-transform: rotate(185deg);
  transform: rotate(185deg);
  background: var(--birds-dark);
  border-radius: 0 100%;
  -webkit-border-radius: 0 100%;
  -moz-border-radius: 0 100%;
  -ms-border-radius: 0 100%;
  -o-border-radius: 0 100%;
  transform-origin: 5px 5px;
  -webkit-animation: rundove-front-finger-2 2.75s linear infinite;
  -moz-animation: rundove-front-finger-2 2.75s linear infinite;
  -ms-animation: rundove-front-finger-2 2.75s linear infinite;
  -o-animation: rundove-front-finger-2 2.75s linear infinite;
  animation: rundove-front-finger-2 2.75s linear infinite;
}

.birds__rundove-frontwing .birds__finger:nth-child(3) {
  top: 28px;
  left: 28px;
  width: 20px;
  height: 50px;
  -webkit-transform: rotate(140deg);
  -moz-transform: rotate(140deg);
  -ms-transform: rotate(140deg);
  -o-transform: rotate(140deg);
  transform: rotate(140deg);
  background: var(--birds-dark);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transform-origin: 5px 5px;
  -webkit-animation: rundove-front-finger-3 2.75s linear infinite;
  -moz-animation: rundove-front-finger-3 2.75s linear infinite;
  -ms-animation: rundove-front-finger-3 2.75s linear infinite;
  -o-animation: rundove-front-finger-3 2.75s linear infinite;
  animation: rundove-front-finger-3 2.75s linear infinite;
}

.birds__table-shadow {
  top: 161px;
  left: 89px;
  width: 194px;
  height: 12px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-shadow);
}

.birds__table {
  top: 272px;
  left: 217px;
  width: 374px;
  height: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #1d1d1b;
}

.birds__table:before {
  top: 10px;
  left: 176px;
  width: 16px;
  height: 140px;
  background: var(--birds-bright);
}

.birds__table:after {
  top: 137px;
  left: 123px;
  width: 14px;
  border-style: solid;
  border-color: var(--birds-bright) transparent;
  border-width: 0 54px 30px;
}

.birds__laptop:nth-child(3) {
  top: 265px;
  left: 476px;
  height: 7px;
  width: 80px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background: #f7f7f7;
}

.birds__laptop:nth-child(3):before {
  bottom: 0;
  left: -136px;
  height: 85px;
  width: 124px;
  background: #c6c6c6;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 7px 0 0 #e5e5e5;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
}

.birds__laptop:nth-child(4) {
  top: 265px;
  left: 256px;
  height: 7px;
  width: 186px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background: #f7f7f7;
}

.birds__laptop:nth-child(4):before {
  bottom: 7px;
  left: 80px;
  height: 82px;
  width: 116px;
  background: #4c4c4c;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 5px 0 0 #e5e5e5;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}

.birds__monitor {
  top: -76px;
  left: 88px;
  height: 70px;
  width: 100px;
  background: #1d1d1b;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}

.birds__monitor:before {
  top: 16px;
  left: 10px;
  height: 4px;
  width: 54px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.birds__monitor:after {
  top: 24px;
  left: 10px;
  height: 4px;
  width: 26px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.birds__code {
  top: 32px;
  left: 10px;
  height: 4px;
  width: 38px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #ffffff;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}

.birds__code:before {
  top: 0;
  left: 42px;
  height: 4px;
  width: 11px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.birds__code:after {
  top: 9px;
  left: 2px;
  height: 4px;
  width: 30px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.birds__coffee {
  top: 229px;
  left: 335px;
  height: 43px;
  width: 35px;
  background: #ededed;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  -webkit-animation: birds-coffee 2.75s linear infinite;
  -moz-animation: birds-coffee 2.75s linear infinite;
  -ms-animation: birds-coffee 2.75s linear infinite;
  -o-animation: birds-coffee 2.75s linear infinite;
  animation: birds-coffee 2.75s linear infinite;
}

.birds__coffee:before {
  top: -6px;
  left: -3px;
  height: 6px;
  width: 40px;
  background: #e2e2e2;
}

.birds__coffee:after {
  top: -12px;
  left: 2px;
  height: 6px;
  width: 31px;
  background: #e2e2e2;
}

.birds__feather:nth-child(6) {
  top: 296px;
  left: 234px;
  width: 15px;
  height: 60px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-medium-light);
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  overflow: hidden;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  -webkit-animation: birds-feather-1 2.75s linear infinite;
  -moz-animation: birds-feather-1 2.75s linear infinite;
  -ms-animation: birds-feather-1 2.75s linear infinite;
  -o-animation: birds-feather-1 2.75s linear infinite;
  animation: birds-feather-1 2.75s linear infinite;
}

.birds__feather:nth-child(6):before {
  top: 30px;
  left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 6px solid var(--birds-dark);
  box-shadow: inset 0 0 0 4px var(--birds-medium-light);
  background: var(--birds-dark);
}

.birds__feather:nth-child(7) {
  top: 296px;
  left: 234px;
  width: 15px;
  height: 60px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: var(--birds-medium-light);
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  overflow: hidden;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  -webkit-animation: birds-feather-2 2.75s linear infinite;
  -moz-animation: birds-feather-2 2.75s linear infinite;
  -ms-animation: birds-feather-2 2.75s linear infinite;
  -o-animation: birds-feather-2 2.75s linear infinite;
  animation: birds-feather-2 2.75s linear infinite;
}

.birds__feather:nth-child(7):before {
  top: 30px;
  left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 6px solid var(--birds-dark);
  box-shadow: inset 0 0 0 4px var(--birds-medium-light);
  background: var(--birds-dark);
}

.christmas-give .empowerRuralHousehold svg {
  width: 300px;
  height: 493px;
}

.christmas-give .empowerRuralHousehold circle {
  fill: #ffffff;
  -webkit-animation: flame 2s ease-out infinite;
  -moz-animation: flame 2s ease-out infinite;
  -ms-animation: flame 2s ease-out infinite;
  -o-animation: flame 2s ease-out infinite;
  animation: flame 2s ease-out infinite;
}

.christmas-give .empowerRuralHousehold #ci2 {
  animation-delay: -0.5s;
}

.christmas-give .empowerRuralHousehold #ci3 {
  animation-delay: -1s;
}

.christmas-give .empowerRuralHousehold #ci4 {
  animation-delay: -1.5s;
}

.christmas-give .giftShoesDiv .store-container {
  line-height: 0;
  margin: 50px auto 8px auto;
  width: 50%;
}

.christmas-give .giftShoesDiv .stroke {
  stroke: #0170bb;
  stroke-width: 5;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.christmas-give .giftShoesDiv .round-end {
  stroke-linecap: round;
}

.christmas-give .giftShoesDiv #store {
  -webkit-animation: christmasFadeIn 0.8s ease-in;
  -moz-animation: christmasFadeIn 0.8s ease-in;
  -ms-animation: christmasFadeIn 0.8s ease-in;
  -o-animation: christmasFadeIn 0.8s ease-in;
  animation: christmasFadeIn 0.8s ease-in;
}

.christmas-give .giftShoesDiv .border-animation {
  background-color: rgba(0, 86, 157, 0.12);
  position: relative;
}

.christmas-give .giftShoesDiv .border-animation:after {
  content: "";
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 48.9%, rgba(0, 86, 157, 0.12) 49%);
  background-size: 300% 300%;
  position: absolute;
  top: -5px;
  left: -5px;
  height: calc(100% + 10px);
  width: calc(100% + 10px);
  z-index: -1;
  -webkit-animation: christmasBorderGradient 8s linear both infinite;
  -moz-animation: christmasBorderGradient 8s linear both infinite;
  -ms-animation: christmasBorderGradient 8s linear both infinite;
  -o-animation: christmasBorderGradient 8s linear both infinite;
  animation: christmasBorderGradient 8s linear both infinite;
}

.christmas-give .giftShoesDiv #browser {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: christmasMoveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
  -moz-animation: christmasMoveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
  -ms-animation: christmasMoveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
  -o-animation: christmasMoveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
  animation: christmasMoveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
}

.christmas-give .giftShoesDiv #toldo {
  -webkit-animation: christmasFadeIn 1s 1.4s ease-in forwards;
  -moz-animation: christmasFadeIn 1s 1.4s ease-in forwards;
  -ms-animation: christmasFadeIn 1s 1.4s ease-in forwards;
  -o-animation: christmasFadeIn 1s 1.4s ease-in forwards;
  animation: christmasFadeIn 1s 1.4s ease-in forwards;
}

.christmas-give .giftShoesDiv .grass {
  -webkit-animation: christmasFadeIn 0.5s 1.6s ease-in forwards;
  -moz-animation: christmasFadeIn 0.5s 1.6s ease-in forwards;
  -ms-animation: christmasFadeIn 0.5s 1.6s ease-in forwards;
  -o-animation: christmasFadeIn 0.5s 1.6s ease-in forwards;
  animation: christmasFadeIn 0.5s 1.6s ease-in forwards;
}

.christmas-give .giftShoesDiv #window {
  -webkit-animation: christmasFadeIn 0.5s 1.8s ease-in forwards;
  -moz-animation: christmasFadeIn 0.5s 1.8s ease-in forwards;
  -ms-animation: christmasFadeIn 0.5s 1.8s ease-in forwards;
  -o-animation: christmasFadeIn 0.5s 1.8s ease-in forwards;
  animation: christmasFadeIn 0.5s 1.8s ease-in forwards;
}

.christmas-give .giftShoesDiv #door {
  -webkit-animation: christmasFadeIn 0.5s 2s ease-in forwards;
  -moz-animation: christmasFadeIn 0.5s 2s ease-in forwards;
  -ms-animation: christmasFadeIn 0.5s 2s ease-in forwards;
  -o-animation: christmasFadeIn 0.5s 2s ease-in forwards;
  animation: christmasFadeIn 0.5s 2s ease-in forwards;
}

.christmas-give .giftShoesDiv #sign {
  transform-origin: 837px 597px;
  -webkit-animation: christmasPendulum 1.5s 2s ease-in-out alternate;
  -moz-animation: christmasPendulum 1.5s 2s ease-in-out alternate;
  -ms-animation: christmasPendulum 1.5s 2s ease-in-out alternate;
  -o-animation: christmasPendulum 1.5s 2s ease-in-out alternate;
  animation: christmasPendulum 1.5s 2s ease-in-out alternate;
}

.christmas-give .giftShoesDiv .trees {
  -webkit-animation: christmasFadeIn 0.5s 2.2s ease-in forwards;
  -moz-animation: christmasFadeIn 0.5s 2.2s ease-in forwards;
  -ms-animation: christmasFadeIn 0.5s 2.2s ease-in forwards;
  -o-animation: christmasFadeIn 0.5s 2.2s ease-in forwards;
  animation: christmasFadeIn 0.5s 2.2s ease-in forwards;
}

.christmas-give .giftShoesDiv #button, .christmas-give .giftShoesDiv #door, .christmas-give .giftShoesDiv #text, .christmas-give .giftShoesDiv #toldo, .christmas-give .giftShoesDiv #window, .christmas-give .giftShoesDiv .ball, .christmas-give .giftShoesDiv .box, .christmas-give .giftShoesDiv .cap, .christmas-give .giftShoesDiv .cat, .christmas-give .giftShoesDiv .cat-shadow, .christmas-give .giftShoesDiv .christmasParachute, .christmas-give .giftShoesDiv .grass, .christmas-give .giftShoesDiv .sky-circle, .christmas-give .giftShoesDiv .sky-circle2, .christmas-give .giftShoesDiv .sky-circle3, .christmas-give .giftShoesDiv .trees, .christmas-give .giftShoesDiv .tshirt {
  opacity: 0;
}

.christmas-give .giftShoesDiv .cat {
  transform-origin: 1145px 620px;
}

.christmas-give .giftShoesDiv .cat-shadow {
  transform-origin: 1115px 625px;
}

.christmas-give .giftShoesDiv #store:hover .cat {
  -webkit-animation: christmasCatHi 3s 3s cubic-bezier(0.7, -0.5, 0.3, 1.4);
  -moz-animation: christmasCatHi 3s 3s cubic-bezier(0.7, -0.5, 0.3, 1.4);
  -ms-animation: christmasCatHi 3s 3s cubic-bezier(0.7, -0.5, 0.3, 1.4);
  -o-animation: christmasCatHi 3s 3s cubic-bezier(0.7, -0.5, 0.3, 1.4);
  animation: christmasCatHi 3s 3s cubic-bezier(0.7, -0.5, 0.3, 1.4);
}

.christmas-give .giftShoesDiv #store:hover .cat-shadow {
  -webkit-animation: christmasCatShadow 4s 2s cubic-bezier(0.7, -0.5, 0.3, 1.4) alternate;
  -moz-animation: christmasCatShadow 4s 2s cubic-bezier(0.7, -0.5, 0.3, 1.4) alternate;
  -ms-animation: christmasCatShadow 4s 2s cubic-bezier(0.7, -0.5, 0.3, 1.4) alternate;
  -o-animation: christmasCatShadow 4s 2s cubic-bezier(0.7, -0.5, 0.3, 1.4) alternate;
  animation: christmasCatShadow 4s 2s cubic-bezier(0.7, -0.5, 0.3, 1.4) alternate;
}

.christmas-give .giftShoesDiv .box, .christmas-give .giftShoesDiv .christmasParachute {
  transform-origin: 430px 100px;
  -webkit-animation: christmasMoveBox 14s 4s linear forwards infinite;
  -moz-animation: christmasMoveBox 14s 4s linear forwards infinite;
  -ms-animation: christmasMoveBox 14s 4s linear forwards infinite;
  -o-animation: christmasMoveBox 14s 4s linear forwards infinite;
  animation: christmasMoveBox 14s 4s linear forwards infinite;
}

.christmas-give .giftShoesDiv .christmasParachute {
  -webkit-animation: christmasParachute 14s 4s linear forwards infinite;
  -moz-animation: christmasParachute 14s 4s linear forwards infinite;
  -ms-animation: christmasParachute 14s 4s linear forwards infinite;
  -o-animation: christmasParachute 14s 4s linear forwards infinite;
  animation: christmasParachute 14s 4s linear forwards infinite;
}

.christmas-give .giftShoesDiv .tshirt {
  -webkit-animation: christmasFadeInOut 42s 10s ease-in forwards infinite;
  -moz-animation: christmasFadeInOut 42s 10s ease-in forwards infinite;
  -ms-animation: christmasFadeInOut 42s 10s ease-in forwards infinite;
  -o-animation: christmasFadeInOut 42s 10s ease-in forwards infinite;
  animation: christmasFadeInOut 42s 10s ease-in forwards infinite;
}

.christmas-give .giftShoesDiv .cap {
  -webkit-animation: christmasFadeInOut 42s 24s ease-in forwards infinite;
  -moz-animation: christmasFadeInOut 42s 24s ease-in forwards infinite;
  -ms-animation: christmasFadeInOut 42s 24s ease-in forwards infinite;
  -o-animation: christmasFadeInOut 42s 24s ease-in forwards infinite;
  animation: christmasFadeInOut 42s 24s ease-in forwards infinite;
}

.christmas-give .giftShoesDiv .ball {
  -webkit-animation: christmasFadeInOut 42s 38s ease-in forwards infinite;
  -moz-animation: christmasFadeInOut 42s 38s ease-in forwards infinite;
  -ms-animation: christmasFadeInOut 42s 38s ease-in forwards infinite;
  -o-animation: christmasFadeInOut 42s 38s ease-in forwards infinite;
  animation: christmasFadeInOut 42s 38s ease-in forwards infinite;
}

.christmas-give .giftShoesDiv #button, .christmas-give .giftShoesDiv #text {
  -webkit-animation: christmasFadeIn 1s 5s ease-in forwards;
  -moz-animation: christmasFadeIn 1s 5s ease-in forwards;
  -ms-animation: christmasFadeIn 1s 5s ease-in forwards;
  -o-animation: christmasFadeIn 1s 5s ease-in forwards;
  animation: christmasFadeIn 1s 5s ease-in forwards;
}

.christmas-give .giftShoesDiv .cloud {
  -webkit-animation: christmasClouds 50s linear backwards infinite;
  -moz-animation: christmasClouds 50s linear backwards infinite;
  -ms-animation: christmasClouds 50s linear backwards infinite;
  -o-animation: christmasClouds 50s linear backwards infinite;
  animation: christmasClouds 50s linear backwards infinite;
}

.christmas-give .giftShoesDiv .cloud2 {
  -webkit-animation: christmasClouds 40s 40s linear backwards infinite;
  -moz-animation: christmasClouds 40s 40s linear backwards infinite;
  -ms-animation: christmasClouds 40s 40s linear backwards infinite;
  -o-animation: christmasClouds 40s 40s linear backwards infinite;
  animation: christmasClouds 40s 40s linear backwards infinite;
}

.christmas-give .giftShoesDiv .plane {
  will-change: transform;
  -webkit-animation: christmasClouds 30s linear backwards infinite;
  -moz-animation: christmasClouds 30s linear backwards infinite;
  -ms-animation: christmasClouds 30s linear backwards infinite;
  -o-animation: christmasClouds 30s linear backwards infinite;
  animation: christmasClouds 30s linear backwards infinite;
}

.christmas-give .giftShoesDiv .sky-circle {
  -webkit-animation: christmasFadeInOut 10s 5s ease-in infinite;
  -moz-animation: christmasFadeInOut 10s 5s ease-in infinite;
  -ms-animation: christmasFadeInOut 10s 5s ease-in infinite;
  -o-animation: christmasFadeInOut 10s 5s ease-in infinite;
  animation: christmasFadeInOut 10s 5s ease-in infinite;
}

.christmas-give .giftShoesDiv .sky-circle2 {
  -webkit-animation: christmasFadeInOut 12s 30s ease-in infinite;
  -moz-animation: christmasFadeInOut 12s 30s ease-in infinite;
  -ms-animation: christmasFadeInOut 12s 30s ease-in infinite;
  -o-animation: christmasFadeInOut 12s 30s ease-in infinite;
  animation: christmasFadeInOut 12s 30s ease-in infinite;
}

.christmas-give .giftShoesDiv .sky-circle3 {
  -webkit-animation: christmasFadeInOut 8s 40s ease-in infinite;
  -moz-animation: christmasFadeInOut 8s 40s ease-in infinite;
  -ms-animation: christmasFadeInOut 8s 40s ease-in infinite;
  -o-animation: christmasFadeInOut 8s 40s ease-in infinite;
  animation: christmasFadeInOut 8s 40s ease-in infinite;
}

.new-year-campaign .scene {
  margin-top: -100px;
}

.gift.hidden {
  display: none;
}

.new-year-campaign .gift {
  position: absolute;
  top: 68px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(to bottom, #001426 60%, #023756);
  cursor: pointer;
}

.new-year-campaign .gift svg {
  width: 100%;
  height: 100%;
}

.christmas-campaign.active .animated-button4 {
  background: linear-gradient(to bottom right, #023756, rgba(0, 12, 94, 0.92));
}

@media (max-width: 700px) {
  .christmas-give .toggle-wrapper {
    flex: 1 1 100%;
  }
  .christmas-give .xmas .contentDiv {
    top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .christmas-div #days {
    font-size: 40px;
  }
  .christmas-give .corner-ribbon {
    top: 4px;
    right: 0;
  }
  .christmas-give .titleDiv {
    margin-top: 20px;
  }
  .christmas-give h3 {
    width: 100%;
  }
  .christmas-give .carousel-control {
    top: 43%;
  }
  .christmas-give .giftShoesDiv .store-container {
    width: 90%;
  }
  .christmas-give .carousel-control {
    width: 6%;
  }
  .christmas-give .carousel-control span {
    font-size: 40px;
  }
  .christmas-give h3 {
    font-size: 16px;
    line-height: 24px;
    padding: 10px;
  }
  .birds {
    width: 100%;
  }
  .birds__hatdove {
    left: 135px;
  }
  .birds__table {
    left: -40px;
  }
  .birds__laptop:nth-child(3) {
    left: 190px;
  }
  .birds__laptop:nth-child(4) {
    left: -30px;
  }
  .birds__coffee {
    left: 155px;
  }
  .birds__feather:nth-child(6) {
    left: 60px;
  }
  .birds__feather:nth-child(7) {
    left: 70px;
  }
  .birds__rundove-shadow {
    left: -80px;
  }
  .birds__rundove {
    left: -50px;
  }
  .new-year-campaign .scene {
    margin-top: 0;
  }
  .new-year-campaign .gift {
    padding-bottom: 150px;
    top: 60px;
  }
  .newayearActionBtnDiv {
    width: 80%;
    bottom: 0;
  }
  .christmas-campaign.active .newayearActionBtnDiv {
    bottom: 20%;
  }
}

/*# sourceMappingURL=christmas-campaign.css.map */
