@import "christmas-tree.min.css";
#christmas{
	display: block;
}
#christmas #tree{
	background: #262161 url('../images/christmas/bg.jpg');
	background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
#christmas .buttons a:last-child{
	margin-right: 0;
}
#christmas .buttons{
	display: flex;
	justify-content: center;
}
#christmas .dotplus a{
	cursor: pointer;
}
#christmas .dotplus{
	top: -30px;
  position: relative;
}
#christmas .buttons svg .cls-1{fill:#262161;}
#christmas .buttons svg .christmas{fill:#262161;}
#christmas .icons-share svg .christmas{fill:#262161;}
#christmas .buttons svg{
	width: 30px;
	margin-right: 15px;
	max-height: 20px;
}
#christmas .buttons i{
	font-size: 24px;
	margin-right: 15px;
}

#christmas .buttons a, #christmas .buttons button{
	margin-right: 15px;
	font-size: 18px;
	font-weight:900;
	color: #262161;
	background: #fff;
	border-radius: 50px;
	padding: 15px 30px;
	display: flex;
	width: fit-content;
	justify-content: center;
	align-items: center;
	min-width: 225px;
	cursor: pointer;
	border: 0;
}
#message-form label.error{
	position: absolute;
  left: 15px;
  bottom: -14px;
	color: #fff;
}

#message-form #message-error{
	bottom: -6px;
}
#message-form #terms-error{
	bottom: -25px;
  left: 0;
}
#addmessage{
	background: #2E3192;
	text-align: center;
}
#sharetree{
	background: #262262;
	text-align: center;
}
.divstyle{
	background: url('../images/christmas/divstyle.png');
	background-repeat: no-repeat;
	background-position: center;
	height: 28px;
}
#christmas .icons-share{
	display: flex;
	justify-content: center;
}
#christmas .icons-share a:last-child{
	margin-right: 0;
}
#christmas .icons-share a{
	background: #fff;
	width: 60px;
	height: 60px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
	border-radius: 50px;
	color: #262262;
}
#form-tpl input::placeholder, #form-tpl textarea::placeholder{color: #fff;}
#form-tpl input, #form-tpl textarea{
  border-bottom: 2px solid #fff;
	background: transparent;
	color: #fff;
}
#form-tpl .g-recaptcha{
	transform: scale(0.77);
	-webkit-transform: scale(0.77);
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
}
#christmas #thanks-page{
	width: 100vw;
	height: 100vh;
	position: fixed;
	overflow-y: auto;
	top: 0;
	left: 0;
	z-index: 999;
}
.allmessagesajust svg{
	opacity: 0.6;
}
.allmessagesajust{
	color:#fff;
	padding: 15px;
}
#christmas .square {
  position: relative;
  width: 100%;

}

#christmas .square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

#christmas .content {
  position: absolute;
  width: 100%;
  height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 15px;
}

/* checkbox */
.toggle{
  --uiToggleSize: var(--toggleSize, 20px);
  --uiToggleIndent: var(--toggleIndent, .4em);
  --uiToggleBorderWidth: var(--toggleBorderWidth, 2px);
  --uiToggleColor: var(--toggleColor, #000);
  --uiToggleDisabledColor: var(--toggleDisabledColor, #868e96);
  --uiToggleBgColor: var(--toggleBgColor, #fff);
  --uiToggleArrowWidth: var(--toggleArrowWidth, 2px);
  --uiToggleArrowColor: var(--toggleArrowColor, #000);

  display: inline-block;
  position: relative;
}

.toggle__input{
  position: absolute;
  left: -99999px;
}

.toggle__label{
  display: inline-flex;
  cursor: pointer;
  min-height: var(--uiToggleSize);
  padding-left: calc(var(--uiToggleSize) + var(--uiToggleIndent));
}

.toggle__label:before, .toggle__label:after{
  content: "";
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  font-size: var(--uiToggleSize);

  position: absolute;
  left: 0;
  top: 0;
}

.toggle__label:before{
  border: var(--uiToggleBorderWidth) solid var(--uiToggleColor);
  z-index: 2;
}

.toggle__input:disabled ~ .toggle__label:before{
  border-color: var(--uiToggleDisabledColor);
}

.toggle__input:not(:disabled) ~ .toggle__label:after{
  background-color: var(--uiToggleColor);
  opacity: 0;
}

.toggle__input:not(:disabled):checked ~ .toggle__label:after{
  opacity: 1;
}

.toggle__text a, .toggle__text a:hover{color:#fff;text-decoration: underline;}
.toggle__text{
  margin-top: auto;
  margin-bottom: auto;
}
.toggle__text:before{
  content: "";
  box-sizing: border-box;
  width: 0;
  height: 0;
  font-size: var(--uiToggleSize);

  border-left-width: 0;
  border-bottom-width: 0;
  border-left-style: solid;
  border-bottom-style: solid;
  border-color: var(--uiToggleArrowColor);

  position: absolute;
  top: .5428em;
  left: .2em;
  z-index: 3;

  transform-origin: left top;
  transform: rotate(-40deg) skew(10deg);
}

.toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
  width: .5em;
  height: .25em;
  border-left-width: var(--uiToggleArrowWidth);
  border-bottom-width: var(--uiToggleArrowWidth);
  will-change: width, height;
  transition: width .1s ease-out .2s, height .2s ease-out;
}
.toggle__label:before, .toggle__label:after{
  border-radius: 2px;
}
.toggle__input:not(:disabled) ~ .toggle__label:before,
.toggle__input:not(:disabled) ~ .toggle__label:after{
  opacity: 1;
  transform-origin: center center;
  will-change: transform;
  transition: transform .2s ease-out;
}

.toggle__input:not(:disabled) ~ .toggle__label:before{
  transform: rotateY(0deg);
  transition-delay: .2s;
}

.toggle__input:not(:disabled) ~ .toggle__label:after{
  transform: rotateY(90deg);
}

.toggle__input:not(:disabled):checked ~ .toggle__label:before{
  transform: rotateY(-90deg);
  transition-delay: 0s;
}

.toggle__input:not(:disabled):checked ~ .toggle__label:after{
  transform: rotateY(0deg);
  transition-delay: .2s;
}

.toggle__text:before{
  opacity: 0;
}

.toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
  opacity: 1;
  transition: opacity .1s ease-out .3s, width .1s ease-out .5s, height .2s ease-out .3s;
}

.toggle{
  --toggleColor: #fff;
  --toggleBgColor: #fff;
  --toggleSize: 22px;
}

@media screen and (max-width:575px){
	#christmas .buttons a{
		margin: 0;
		margin-bottom: 15px;
	}
	#christmas .buttons {
    align-items: center;
    flex-direction: column;
	}
}
