@charset "UTF-8";
/*--------------------------------------------------------------
>>> Animation
--------------------------------------------------------------*/
@-webkit-keyframes zoomInform {
  0% {
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes zoomInform {
  0% {
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@-webkit-keyframes DrawCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes DrawCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes DashCircle {
  from {
    stroke-dashoffset: 500;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes DashCircle {
  from {
    stroke-dashoffset: 500;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes sucess {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: .35rem;
    opacity: 1;
  }
  40% {
    height: .75rem;
    width: .35rem;
    opacity: 1;
  }
  100% {
    height: .75rem;
    width: .35rem;
    opacity: 1;
  }
}

@keyframes sucess {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: .35rem;
    opacity: 1;
  }
  40% {
    height: .75rem;
    width: .35rem;
    opacity: 1;
  }
  100% {
    height: .75rem;
    width: .35rem;
    opacity: 1;
  }
}

@-webkit-keyframes loader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-color: transparent;
    border-left-color: #5cb85c;
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    border-color: #5cb85c;
  }
}

@keyframes loader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border-color: transparent;
    border-left-color: #5cb85c;
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    border-color: #5cb85c;
  }
}

/*--------------------------------------------------------------
>>> Form
--------------------------------------------------------------*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.form-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.form-wrapper.show {
  opacity: 1;
  visibility: visible;
  z-index: 1002;
  -webkit-transition: none;
  transition: none;
}

.form-wrapper.show .form {
  -webkit-animation: zoomInform .5s ease-out;
          animation: zoomInform .5s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.form {
  width: 57.5rem;
  max-width: 92%;
  background: #fff;
  padding: 1.875rem 2.375rem;
  background: #fff;
  -webkit-box-shadow: 0.125rem 0.625rem 0.4375rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.125rem 0.625rem 0.4375rem rgba(0, 0, 0, 0.2);
  max-height: 85%;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-header {
  position: relative;
}

.form__subtitle {
  font-size: 1.125rem;
  font-weight: 500;
}

.form__title {
  font-size: 1.5rem;
  font-weight: 400;
  margin: .5rem 0 1rem;
}

.close-btn {
  position: absolute;
  cursor: pointer;
  right: -1.35rem;
  top: -1rem;
  background: #E4E6EB;
  border-radius: 50%;
  width: 2.1875rem;
  height: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: .35rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .25s;
  transition: all .25s;
}

.close-btn:hover {
  background: #d0d1d3;
}

.cooperate-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-content__info {
  -ms-flex-preferred-size: 30.875rem;
      flex-basis: 30.875rem;
  max-width: 30.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 1.5rem;
}

.form-content__message {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  max-width: 18.75rem;
  width: 18.75rem;
  padding: 1rem 0 1.5rem;
}

.form-content__info .form-group {
  -ms-flex-preferred-size: calc((100% - 1.25rem)/2);
  flex-basis: calc((100% - 1.25rem)/2);
  position: relative;
}

.form-line.abs-icon {
  width: .125rem;
  height: auto;
  max-height: 26.886rem;
  left: 3rem;
  top: 0;
  opacity: .5;
  bottom: 0;
  margin: auto;
  z-index: 0;
}

.cooperate-form .form-content__info .full-group {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
.form-content__event-info label,
.form-content__info label {
  display: none;
}

.form .select-group .selectize-input {
  background: #FFFFFF;
  border: thin solid rgba(0, 0, 0, 0.48);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1.5rem;
  padding: .6125rem 1.5rem;
  font-size: .875rem;
  color: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-group {
  margin-top: 1rem;
}

.form select ~ input,
.input-group input,
.textarea-group textarea {
  background: #FFFFFF;
  border: thin solid rgba(0, 0, 0, 0.48);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1.5rem;
  padding: .6125rem 1.5rem;
  width: 100%;
  height: 2.5rem;
  position: relative;
  z-index: 2;
}
.form select ~ input
{
  margin-top:1rem;
}
.form select ~ input::-webkit-input-placeholder { 
  opacity:1;
  font-size:.875rem;
}
.form select ~ input::-moz-placeholder {
  opacity:1;
  font-size:.875rem;
}
.form select ~ input:-ms-input-placeholder { 
 opacity:1;
  font-size:.875rem;
}
.form select ~ input:-moz-placeholder {
  opacity:1;
  font-size:.875rem;
}
.form .selectize-control {
  height: 2.5rem;
}

.form-content__message .form-group,
.textarea-group textarea {
  height: 100%;
  margin: 0;
  position: relative;
}

.textarea-group textarea {
  padding-right: .5rem;
  padding-left: 1rem;
  resize: none;
}
.reception_form .textarea-group textarea
{
  height:4.5rem;
}
.rise-label ::-webkit-input-placeholder,
.textarea-group.rise-label.active ::-webkit-input-placeholder,
.rise-label :-moz-placeholder,
.textarea-group.rise-label.active :-moz-placeholder,
.rise-label ::-moz-placeholder,
.textarea-group.rise-label.active ::-moz-placeholder,
.rise-label :-ms-input-placeholder,
.textarea-group.rise-label.active :-ms-input-placeholder,
.rise-label input::-webkit-input-placeholder,
.textarea-group.rise-label.active input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-family: 'SVN-Gotham';
  font-size: .9375rem;
  opacity: 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.rise-label ::-webkit-input-placeholder,
.textarea-group.rise-label.active ::-webkit-input-placeholder,
.rise-label :-moz-placeholder,
.textarea-group.rise-label.active :-moz-placeholder,
.rise-label ::-moz-placeholder,
.textarea-group.rise-label.active ::-moz-placeholder,
.rise-label :-ms-input-placeholder,
.textarea-group.rise-label.active :-ms-input-placeholder,
.rise-label input::placeholder,
.textarea-group.rise-label.active input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-family: 'SVN-Gotham';
  font-size: .9375rem;
  opacity: 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

/* fix firefox */
input::-webkit-input-placeholder {
  opacity: 0;
}
input:-ms-input-placeholder {
  opacity: 0;
}
input::-ms-input-placeholder {
  opacity: 0;
}
input::placeholder {
  opacity: 0;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
}

textarea:-ms-input-placeholder {
  opacity: 1;
}

textarea::-ms-input-placeholder {
  opacity: 1;
}

textarea::placeholder {
  opacity: 1;
}

/* fix firefox */
.rise-label.active textarea::-webkit-input-placeholder {
  opacity: 0;
}
.rise-label.active textarea:-ms-input-placeholder {
  opacity: 0;
}
.rise-label.active textarea::-ms-input-placeholder {
  opacity: 0;
}
.rise-label.active textarea::placeholder {
  opacity: 0;
}

/* remove x edge */
::-ms-clear {
  display: none;
}

/* fix ie */
.rise-label :-ms-input-placeholder {
  color: transparent;
  opacity: 1;
}

.form .selectize-input input::-webkit-input-placeholder {
  opacity: 1;
}

.form .selectize-input input:-ms-input-placeholder {
  opacity: 1;
}

.form .selectize-input input::-ms-input-placeholder {
  opacity: 1;
}

.form .selectize-input input::placeholder {
  opacity: 1;
}

.rise-label {
  position: relative;
}

.rise-label label {
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: .65rem;
  left: 1.5rem;
  margin: auto;
  z-index: 3;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  pointer-events: none;
  line-height: 1;
}

.textarea-group.rise-label label {
  opacity: 0;
}

.textarea-group.rise-label.active label {
  opacity: 1;
}

.rise-label input {
  width: 100%;
  background: #fff;
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
}

form .rise-label.active label,
form .rise-label.file-group label{
  background: #fff;
  font-size: 0.75rem;
  top: -.5rem;
  left: 1rem;
}

.form .form-group .selectize-control.single .selectize-input:after {
  background-image: url(https://www.greenfeed.com.vn/wp-content/themes/greenfeed/assets/images/arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  width: 1rem;
  height: 1rem;
  border: none;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.form-group.success .selectize-control.single .selectize-input:after {
  display: none;
}

.form-content .selectize-control.single .selectize-input.dropdown-active:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.form .selectize-dropdown {
  width: calc(100% + .5rem) !important;
  top: -.15rem !important;
  left: -.25rem !important;
  padding-top: 3.25rem;
  background: transparent;
  border-radius: 1.5rem;
}

.form-content .selectize-dropdown-content {
  background: #fff;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding-bottom: 1rem;
}

.form-content .selectize-dropdown,
.form-content .selectize-input,
.form-content .selectize-input input {
  font-size: 0.875rem;
}

.selectize-dropdown .option, .selectize-dropdown .optgroup-header, .selectize-dropdown .no-results, .selectize-dropdown .create {
  padding: .375rem 1.25rem !important;
}

.form-content .selectize-dropdown .optgroup .option {
  padding-left: 2.5rem !important;
  position: relative;
}

.form-content .selectize-dropdown .optgroup .option:before {
  content: '';
  position: absolute;
  width: .25rem;
  height: .25rem;
  background: #000;
  border-radius: 50%;
  left: 1.75rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.checkbox-control {
  display: inline-block;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  top: .25rem;
  left: 0;
  width: 1rem;
  height: 1rem;
}

.checkbox-control + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  text-indent: 0;
  padding-left: 1.5rem;
  margin-right: 1rem;
  font-size: .8125rem;
}

.checkbox-control + label:before {
  top: 0;
  left: 0;
  position: absolute;
  width: 1rem;
  height: 1rem;
  margin: 0;
  display: inline-block;
  content: "";
  float: left;
  border: 0.0625rem solid rgba(0, 0, 0, 0.48);
  border-radius: .125rem;
}

.checkbox-control:checked + label:before {
  background: #2196F3;
  border-color: #2196F3;
}

.checkbox-control:checked + label:after {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  top: .125rem;
  left: .0625rem;
  bottom: 0;
  margin: auto;
  background: url(https://www.greenfeed.com.vn/wp-content/themes/greenfeed/assets/images/icon-check.svg);
  background-size: .95rem;
  background-position: center;
}

.checkbox-group p {
  margin: 0;
}

.checkbox-group a {
  color: #449350;
  font-weight: 500;
}

.form-content__action {
  margin: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.form-content__action .checkbox-group {
  margin-top: .5rem;
}

.form-buttons {
  margin-top: 2.25rem;
  text-align: center;
}

.form-notes {
  text-align: center;
  font-size: .8125rem;
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.45);
}

.form-buttons .btn {
  min-width: 9rem;
}

.form-buttons .btn:not(:first-child) {
  margin-left: 1rem;
}

/* For Export only */
.optgroup[data-group="Xuất khẩu"] .optgroup-header,
.optgroup[data-group="Export"] .optgroup-header,
.optgroup[data-group="Khác"] .optgroup-header,
.optgroup[data-group="Other"] .optgroup-header
{
  display: none;
}

.form-content .selectize-dropdown .optgroup[data-group="Xuất khẩu"] .option,
.form-content .selectize-dropdown .optgroup[data-group="Export"] .option,
.form-content .selectize-dropdown .optgroup[data-group="Khác"] .option,
.form-content .selectize-dropdown .optgroup[data-group="Other"] .option
{
  padding: .375rem 1.25rem !important;
}

.form-content .selectize-dropdown .optgroup[data-group="Xuất khẩu"] .option:before,
.form-content .selectize-dropdown .optgroup[data-group="Export"] .option:before,
.form-content .selectize-dropdown .optgroup[data-group="Khác"] .option:before,
.form-content .selectize-dropdown .optgroup[data-group="Other"] .option:before
{
  content: none;
}

.hideexport .selectize-dropdown .optgroup[data-group="Xuất khẩu"] .option,
.hideexport .selectize-dropdown .optgroup[data-group="Export"] .option,
.hideexport .selectize-dropdown .optgroup[data-group="Khác"] .option,
.hideexport .selectize-dropdown .optgroup[data-group="Other"] .option
{
  display: none;
}

.mini-popup {
  position: fixed;
  z-index: 1003;
  width: 42rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 1.5rem 2.5rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 60vh;
  background: #fff;
  -webkit-box-shadow: 0.125rem 0.625rem 0.4375rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.125rem 0.625rem 0.4375rem rgba(0, 0, 0, 0.2);
  -webkit-animation: zoomInform .25s ease-out;
          animation: zoomInform .25s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.mini-popup__close {
  right: 1rem;
  top: 1rem;
}

.minipopup-show .form,
.minipopup-show .form-header .close-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: none;
  transition: none;
}

.mini-popup .btn {
  margin-top: 1rem;
}

.form-group .is-invalid,
.form-group .is-invalid + .selectize-control .selectize-input {
  border-color: #cc3b3b;
}

.invalid {
  color: #cc3b3b;
  display: block;
  font-size: .75rem;
  margin: .25rem 0 0;
  position: static;
  z-index: 2;
  background: #fff;
}

.checkbox-group .invalid {
  margin-left: 1.5rem;
}

.close-btn img {
  -webkit-transform: translateX(-0.0125rem);
          transform: translateX(-0.0125rem);
  margin: 0;
  max-width: unset;
}

/*--------------------------------------------------------------
>>> Thank you
--------------------------------------------------------------*/
.thankyou-content {
  position: relative;
  padding-left: 7rem;
  padding-right: 7rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  text-align: center;
  
}
[data-trigger="#reception"] .thankyou-content
{
  margin-top: 1rem;
}
.thankyou-content svg {
  width: 6.25rem;
  display: block;
  margin: 0 auto 1.5rem;
}

.thankyou-buttons {
  text-align: center;
  margin-top: 2rem;
}

.thankyou-buttons .btn:not(:first-child) {
  margin-left: 1rem;
}

#CDots {
  stroke-dasharray: 10;
}

#BCircle {
  opacity: 1;
  stroke-dasharray: 500;
  stroke-dashoffset: 100;
  -webkit-animation: DashCircle 1.2s linear;
          animation: DashCircle 1.2s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

#Check {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-animation: DrawCheck 1.2s cubic-bezier(0.65, 0, 0.45, 1) 0.5s;
          animation: DrawCheck 1.2s cubic-bezier(0.65, 0, 0.45, 1) 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-form .form-content__info,
.contact-form .form-content__message {
  -ms-flex-preferred-size: 25.3125rem;
      flex-basis: 25.3125rem;
  max-width: 25.3125rem;
}

.contact-form .form-content__info .form-group {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.success:before {
  content: "";
  position: absolute;
  border: thin solid rgba(0, 0, 0, 0.1);
  border-color: #5cb85c;
  -webkit-animation: loader-spin .5s linear;
          animation: loader-spin .5s linear;
  display: block;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  right: .675rem;
  top: .42rem;
  z-index: 3;
  background-color: #fff;
}

.success:after {
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-name: sucess;
          animation-name: sucess;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: scaleX(-1) rotate(135deg);
          transform: scaleX(-1) rotate(135deg);
}
.form-wrap .cooperate-form .success:before
{
  top:2.3125rem;
}
.form-wrap .cooperate-form .success:after
{
  top:unset;
  transform: scaleX(-1) translateY(1.3125rem) rotate(135deg);
}
.form-wrap .cooperate-form .textarea-group:before
{
  top:2.3125rem;
}
.form-wrap .cooperate-form .textarea-group.success:after
{
  top:0;
  bottom:unset;
  transform: scaleX(-1) translateY(3.125rem) rotate(135deg);
}
.success:after {
  opacity: 0;
  height: .75rem;
  width: .35rem;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  border-right: .125rem solid #5cb85c;
  border-top: .125rem solid #5cb85c;
  content: "";
  right: 1.5rem;
  top: 1.25rem;
  position: absolute;
  z-index: 3;
}

.scrollbot-btn {
  position: fixed;
  top: 38rem;
  width: 100%;
  height: 3rem;
  z-index: 2;
  left: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, white 100%);
}

.nav-arrow {
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 0.1175rem solid #aacbf0;
  border-bottom: 0.1175rem solid #aacbf0;
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
  margin: 0 0 0.06rem 0;
  width: 0.6rem;
  height: 0.6rem;
}

.arrow-1, .arrow-2, .arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.arrow-1 {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-delay: alternate;
          animation-delay: alternate;
  border-color: rgba(0, 0, 0, 0.48);
  margin-top: -0.3125rem;
}

.arrow-2 {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  animation-delay: .2s;
  animation-direction: alternate;
  border-color: rgba(0, 0, 0, 0.75);
  margin-top: -0.375rem;
}

.arrow-3 {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  animation-delay: .3s;
  animation-direction: alternate;
  border-color: black;
  margin-top: -0.375rem;
}

/* Newsletter Form */
.form-wrapper[data-trigger="#newsletter"] .form {
  padding: 0;
}

.form-wrapper[data-trigger="#newsletter"] .form-inner {
  padding: 1.875rem 2.375rem;
  padding-left: 23.25rem;
  position: relative;
}

.form-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 21.25rem;
  height: 100%;
}

.form-bg img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.form-wrapper[data-trigger="#newsletter"] .form-header {
  padding-top: 1rem;
}

.form-wrapper[data-trigger="#newsletter"] .form-content__info .form-group {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.subject-label {
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1.25rem;
  margin-top: -.5rem;
}

.subject__checkboxes label {
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  padding: .65rem 1.75rem .785rem;
  border-radius: 1.5rem;
  -webkit-transition: all .125s ease-in;
  transition: all .125s ease-in;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-transform: uppercase;
  background: #F1F3F4;
  border-color: #F1F3F4;
  color: #7B7B7B;
}

.subject__checkboxes label:before,
.subject__checkboxes label:after,
.subject__checkboxes .checkbox-control:checked + label:before,
.subject__checkboxes .checkbox-control:checked + label:after {
  content: none;
}

.subject__checkboxes label {
  margin-bottom: 1rem;
  margin-right: .5rem;
}

.subject__checkboxes .checkbox-control:checked + label {
  background: #000;
  border-color: #000;
  color: #fff;
}

.form-wrapper[data-trigger="#newsletter"] .form-buttons {
  text-align: left;
  margin-bottom: 1rem;
}

.subject__checkboxes.success:before,
.subject__checkboxes.success::after {
  content: none;
}

.checkbox-group .subject__checkboxes .invalid {
  margin-left: 0;
}

.form-wrapper[data-trigger="#newsletter"] .form-inner.thank-you-inner {
  padding-left: 2.375rem;
}
.form__title
{
  text-transform:uppercase;
}
[data-trigger="#reception"] .form__title11
{
  visibility:hidden;
  font-size:0;
  margin: 0 0 1rem;
}
[data-trigger="#reception"] h3
{
  font-weight:500;
}
.reception_form .form-content__info
{
  max-width:40%;
  padding-right:1.25rem;
  box-sizing:border-box;
  flex:none;
}
.reception_form .form-content__event-info
{
  flex-grow:1;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.reception_form .label
{
  font-weight:600;
  width:100%;
  margin-bottom:.5rem;
  font-size: 1rem;
}
.reception_form .form-content__row
{
  align-items:flex-start;
  margin-top:.5rem;
}
.form-content__event-info .form-group {
  -ms-flex-preferred-size: calc((100% - 1.25rem)/2);
  flex-basis: calc((100% - 1.25rem)/2);
  max-width:calc((100% - 1.25rem)/2);
  position: relative;
}
.form-content__event-info .form-group:nth-child(n+6)
{
  flex-basis: calc((100% - 0rem)/1);
  max-width:100%;
}
.file-group
{
  font-size:.875rem;
}
.section-form
{
  display:none;
}
.section-form:not(.section-form-3)
{
  padding-bottom:1rem;
}
.section-form.active
{
  display:block;
}
.reception_form
{
  /* min-height:40vh; */
}
.section-form-1 p,
.section-form-2 p
{
  margin-bottom:1rem;
}
.section-form-1 label,
.section-form-2 label
{
  display:none;
}
.section-form .rise-label label
{
  display:block;
}
.section-form-1 .success:before,
.section-form-1 .success:after
{
  content:none;
}
.form-wrap .cooperate-form .form-content__info .form-group:not(:first-child):not(.full-group)
{
  width:calc((100% - 1rem)/2);
  flex: none;
}
.form-wrap .cooperate-form .form-content__info .form-group.address-group:not(.full-group),
.form-content__info .address-group
{
    width:calc((100% - 2*1rem)/3);
    flex: none;
  white-space:nowrap;
}

.form-wrap .cooperate-form .form-content__info .selectize-input
{
    background: #fafcf8;
    border-radius: 0;
    box-sizing: border-box;
    height: auto;
    box-shadow: none;
    border: thin solid rgba(0, 0, 0, 0.48);
    border-color: #f5f5f5;
      padding: .6125rem 1.5rem;
  white-space:nowrap;
}
.form-wrap .cooperate-form .form-content__info .selectize-input,
.form-wrap .cooperate-form .form-content__info .input-group input
{
  padding-left:.75rem;
  padding-right:.75rem;
}
.form-wrap .cooperate-form .select-group.success:after
{
  transform: scaleX(-1) translateY(0) rotate(135deg);
  bottom: unset;
  top: 3.125rem;
}
.form-wrap .cooperate-form .form-line
{
  display:none;
}
.form-wrap .cooperate-form .form-content__info
{
   max-width:unset;
   flex:none;
   width:100%;
   padding-bottom: 1rem;
}
.form-wrap .cooperate-form .form-content__message
{
  margin-left:0;
  width: 100%;
  max-width: unset;
  padding-top: 0;
  padding-bottom: 0;
}
.form-wrap .form-header
{
  margin-bottom:0 !important;
}
.form-wrap .cooperate-form  .textarea-group textarea
{
  min-height:5rem;
}
.form-wrap .cooperate-form .form-notes
{
  text-align:left;
}
.reception_form .selectize-dropdown-content
  {
    background:#fff;
  }
@media screen and (max-width: 1023px) {
  .form {
    padding: 1.25rem;
  }
  .close-btn {
    right: -.5rem;
    top: -.5rem;
  }
  .form-line.abs-icon {
    display: none;
  }
  .form-content__info,
  .form-content__message,
  .form-content__info .form-group {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  
   .form-content__info .address-group:not(.country-group),
  .form-wrap .cooperate-form .form-content__info .form-group.address-group:not(.full-group)
  {
      width:calc((100% - 1rem)/2);
      flex: none;
  }
  .form-wrap .cooperate-form .form-content__info .country-group.form-group.address-group:not(.full-group)
  {
    width:100%;
  }
  .form-group {
    margin-top: 1.428rem;
  }
  .form-content .selectize-control,
  .form-content .select-group .selectize-input,
  .input-group input {
    height: 2.857rem;
  }
  .textarea-group textarea {
    height: 9.7rem;
  }
  .form .selectize-dropdown, .form .selectize-input, .form .selectize-input input {
    /* font-size: 1rem; */
  }
  .form-content .form-close-btn,
  .form-content .form__close {
    display: none;
  }
  .form-content__message {
    padding: 0 0 1rem;
  }
  .checkbox-control + label:before {
    top: 0.25rem;
  }
  .checkbox-control:checked + label:after {
    top: .285rem;
    bottom: unset;
  }
  .form-buttons {
    margin-top: 1.57rem;
  }
  .form .form-buttons .btn {
    margin: 0;
  }
  .thankyou-content {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .contact-form .form-content__info, .contact-form .form-content__message {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .invalid {
    font-size: .857rem;
  }
  .rise-label label {
    top: .875rem;
  }
  .mini-popup {
    width: 92%;
  }
  .scrollbot-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .form-wrapper[data-trigger="#newsletter"] .form-header {
    padding-top: 0;
    padding-right: 3rem;
  }
  .form-wrapper[data-trigger="#newsletter"] .form-inner {
    padding: 1.25rem;
  }
  .form-bg {
    display: none;
  }
  .form-wrapper[data-trigger="#newsletter"] .form-buttons {
    text-align: center;
  }
  .reception_form .form-content__event-info .label
  {
    margin-top:1rem;
  }
  .form-content__event-info .form-group
  {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
  .success:before
  {
    top: .6rem;
  }
  .success:after
  {
    top: 1.425rem;
  }
  .reception_form .form-group *,
  .reception_form .selectize-input>input
  {
    font-size:.875rem;
  }
  .form-content .form-buttons .btn img
  {
    filter:invert(1);
  }
  .section-form .btns
  {
    display:flex;
  }
   .section-form .btns a
  {
    font-size:.8125rem;
  }
  .form-wrap .form-content .cooperate-form .form-content__info .form-group:nth-child(2)
  {
     width:100%;
  }
}

@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .selectize-dropdown .option, .selectize-dropdown .optgroup-header, .selectize-dropdown .no-results, .selectize-dropdown .create {
    padding: .65rem 1.25rem !important;
  }
}
/*# sourceMappingURL=form.css.map */