/*
Theme Name: Imno
Theme URI: https://www.ansonika.com/demos/imno
Author: Ansonika
Author URI: http://themeforest.net/user/Ansonika/

[Table of contents] 

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Wizard
- 2.2 Success submit
- 2.3 Panel info

3. COMMON
- 3.1 Misc
- 3.2 Forms
- 3.3 Help Modal

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
html,
body {
  height: 100%;
}



html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
/*  background: #e9e4d6;*/
background: #efefef;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Lora", serif;
 /* color: #28412b;*/
 color: var(--color2);
}

.color1{
 color: var(--color1);
}

.color2{
  color: var(--color2);
 }

.color3{
    color: var(--color3);
}

.color4{
  color: var(--color4);
 }
h1,
h2,
h3,
h4,
h5,
h6 {
 /* color: #447663;*/
 color: var(--color2);
}

p {
  margin-bottom: 25px;
}

strong {
  font-weight: 500;
}

label {
  font-weight: 400;
  margin-bottom: 3px;
}

hr {
  margin: 30px 0 30px 0;
  border-color: #ddd;
}

/*Font_icon*/

.recepcion_icon{
  font-size: 20vw;
  color: var(--color1);
}

.gift_icon{
  font-size: 15vw;
  color: var(--color1);
}

@media screen and (min-width:700px) {
  .recepcion_icon{
    font-size: 10vw;
  }

  .gift_icon{
    font-size: 7vw;
  }
}
/*corazones*/
.button_heard{
  font-size: 5rem;
  margin: 5%;
}
.contenedor_corazones {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor_corazones2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor_corazones div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.claro,
#claro {
  color: var(--color2) !important;
  filter: drop-shadow(gray 0.5rem 0.5rem 5px);
}

.button{
    margin: auto;
    float: none;
    font-weight: bolder;
    font-size: 20px;
    padding: 8px 0;
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: 2px solid;
}

.buttonSelect{
  background-color: black !important;
  color: white !important;
}

.seleccionaBoton{
border: 2px solid red ;
}

.oscuro {
  color: var(--color1) !important;
  filter: drop-shadow(gray 0.5rem 0.5rem 5px);
}

.claro2,
#claro2 {
  color: var(--color1)!important;

}

.oscuro2 {
  color: var(--color1) !important;

}

.nombre_boton {
  text-align: center;
  font-size: 1.3rem;
  padding: 16%;
}


.heard:hover {
  animation-name: girar;
  animation-duration: 2s;
  animation-fill-mode: backwards;
}

@keyframes girar {
  0% {
      transform: rotateY(0deg);
  }

  20% {
      transform: rotateY(45deg);
  }

  50% {
      transform: rotateY(90deg);
  }

  70% {
      transform: rotateY(45deg);
  }

  100% {
      transform: rotateY(180deg);

  }
}
/*General links color*/
a {
 /* color: #54927a;*/
 color: #8b8b8e;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: var(--color1);
  text-decoration: none;
  outline: none;
}

a.animated_link {
  position: relative;
  text-decoration: none;
}

a.animated_link {
  position: relative;
  text-decoration: none;
}
a.animated_link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  opacity: 1;
  left: 0;
  background-color: #54927a;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.animated_link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

a.animated_link.active {
  position: relative;
  text-decoration: none;
  color: #54927a;
}
a.animated_link.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  opacity: 1;
  left: 0;
  background-color: #54927a;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #54927a;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 12px 25px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
a.btn_1:hover,
.btn_1:hover {
  background-color: #333;
}
a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
a.btn_1.small,
.btn_1.small {
  padding: 7px 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}
a.btn_1.medium,
.btn_1.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 30px;
}
a.btn_1.rounded,
.btn_1.rounded {
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  border-radius: 25px !important;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

a.btn_help {
  display: flex;
  align-items: center;
  margin-top: -3px;
}
a.btn_help i {
  margin-right: 5px;
  font-size: 21px;
  font-size: 1.3125rem;
}

.btn-close:focus {
  box-shadow: none;
  outline: none;
}

a.btn_scroll_to {
  width: 40px;
  padding-left: 1px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  background-color: #fff;
  font-size: 32px;
  font-size: 2rem;
  z-index: 3;
  color: #54927a;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: 15px;
  display: none;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  a.btn_scroll_to {
    display: block;
  }
}

@keyframes subtleBounce {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.Bounce {
  -webkit-animation-name: subtleBounce;
  animation-name: subtleBounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.Bounce {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/*-------- 1.3 Structure --------*/
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #333;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

#loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999999;
  display: none;
}

[data-loader="circle-side-2"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #333;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.row-height {
  min-height: 100vh !important;
  height: 100vh;
}
@media (max-width: 991px) {
  .row-height {
    height: auto;
  }
}

.content-left-bg-color {
  background-color: #54927a;
}

.content-left-wrapper {
  display: flex;
  height: 100%;
  min-height: 100%;
  padding: 0 90px;
  position: relative;
}
@media (max-width: 991px) {
  .content-left-wrapper {
    height: auto;
    padding: 95px 30px 60px 30px;
  }
}
@media (max-width: 767px) {
  .content-left-wrapper {
    height: auto !important;
    padding: 95px 15px 60px 15px;
    padding-top:0 !important;
  }
}
.content-left-wrapper small {
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
  color: #555;
}
.content-left-wrapper h1 {
  margin-top: 0;
  font-size: 28px;
  font-size: 1.75rem;
}
.content-left-wrapper h1 small {
  display: block;
  letter-spacing: 2px;
}
.content-left-wrapper h1 em {
  display: block;
  font-size: 52px;
  font-size: 4rem;
  font-family: 'WindSong', cursive;
}

.content-right {
  overflow-y: auto;
}

a#logo {
  position: absolute;
  left: 20px;
  top: 15px;
  display: block;
  height: 35px;
}
@media (max-width: 991px) {
  a#logo {
    left: 15px;
    top: 10px;
  }
}

.social {
  position: absolute;
  top: 22px;
  right: 30px;
  z-index: 999;
}
@media (max-width: 991px) {
  .social {
    right: 75px;
    top: 15px;
  }
}
@media (max-width: 767px) {
  .social {
    display: none;
  }
}
.social ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.social ul li {
  float: left;
  margin: 0 0 0 15px;
  list-style: none;
}
.social ul li a {
  color: #555;
  opacity: .6;
  text-align: center;
  line-height: 35px;
  display: block;
  font-size: 19px;
  font-size: 1.1875rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.social ul li a:hover {
  opacity: 1;
}
.social.mobile {
  display: none;
  position: static;
}
.social.mobile ul {
  padding-top: 10px;
  text-align: left;
}
.social.mobile ul li {
  float: none;
  display: inline-block;
  margin: 0 10px 0 0;
  list-style: none;
}
@media (max-width: 767px) {
  .social.mobile {
    display: block;
  }
}

@media (max-width: 991px) {
  .copy {
    border-top: 1px solid #ededed;
    padding-top: 25px;
  }
}
.copy a {
  color: #555;
}
.copy a:hover {
  color: #54927a;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Wizard --------*/
/*
ANIMATION REFERENCE

Animation Type
- fadeIn
- slideInLeft
- slideInRight
- slideInDown
- slideInUp
- zoomIn
- zoomOut
- rotateIn
- bounceIn
- bounceInLeft
- bounceInRight
- bounceInDown
- bounceInUp
- flipInX
- flipInY

Animation timing function
ease - Specifies an animation with a slow start, then fast, then end slowly (this is default)
linear - Specifies an animation with the same speed from start to end
ease-in - Specifies an animation with a slow start
ease-out - Specifies an animation with a slow end
ease-in-out - Specifies an animation with a slow start and end
*/
.step {
  animation: slideInUp;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.3s;
  /* don't forget to set a duration! */
  animation-timing-function: ease;
}

input#website {
  display: none;
}

#wizard_container {
  width: 400px;
  margin: auto;
}
@media (max-width: 991px) {
  #wizard_container {
    width: 100%;
  }
}

h3.main_question {
  margin: 0 0 25px 0;
  padding: 0;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
}
h3.main_question strong {
  display: block;
  color: #999;
  margin-bottom: 5px;
}

/* Wizard Buttons*/
button.backward,
button.forward,
button.submit {
  border: none;
  color: #fff;
  text-decoration: none;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-align: center;
 /* background: #54927a;*/
 background: var(--color1);
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  padding: 12px 30px;
}

button.backward {
  color: #777;
  background: #e8e8e8;
}

button[disabled] {
  display: none;
}

.backward:hover,
.forward:hover {
  background: #333;
  color: #fff;
}

#top-wizard {
  padding-bottom: 20px;
}

#middle-wizard {
  min-height: 300px;
}
@media (max-width: 991px) {
  #middle-wizard {
    min-height: inherit;
  }
}

#bottom-wizard {
  padding-top: 15px;
  text-align: right;
}

.ui-widget-content {
  background-color: transparent;
}

.ui-widget-content a {
  color: #222222;
}

.ui-widget-header {
  background: #6C3;
}

.ui-widget-header a {
  color: #222222;
}

.ui-progressbar {
  height: 2px;
  width: 100%;
}

.ui-progressbar .ui-progressbar-value {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#location {
  font-size: 12px;
  font-size: 0.75rem;
  color: #777;
  display: block;
  margin-bottom: 5px;
}

#progressbar {
  overflow: hidden;
}

.summary {
  text-align: center;
}
.summary .wrapper {
  padding: 60px 30px;
}
.summary h3 {
  margin-bottom: 25px;
}
.summary label {
  font-weight: 500;
}

/*-------- 2.2 Success submit --------*/
#success {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 190px;
  margin-top: -85px;
  margin-left: -150px;
  text-align: center;
}
#success h4 {
  font-weight: 400;
  margin: 20px 0 10px 0;
  font-size: 18px;
  font-size: 1.125rem;
}
#success h4 span {
  display: block;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
.inlinesvg .svg svg {
  display: inline;
}

.icon--order-success svg path {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

/*-------- 2.3 Panel info --------*/
a.close_panel {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 32px;
  font-size: 2rem;
  color: #ccc;
}
a.close_panel:hover {
  color: #444;
}

.panel {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 100%;
  background-color: #fff;
  overflow: auto;
}
.panel .panel__content {
  padding: 100px 0 30px 0;
  width: 100%;
  text-align: left;
  opacity: 0;
  will-change: margin-top;
  transition: all 600ms;
  transition-delay: 600ms;
  margin-top: -5%;
}
@media (max-width: 991px) {
  .panel .panel__content {
    padding-top: 70px;
  }
}

.panel:target .panel__content {
  opacity: 1;
  margin-top: 0;
}

.panel#panel_info {
  background-color: #fff;
  transition: all 600ms cubic-bezier(0.19, 1, 0.56, 1);
  transform: translate3d(0, -100%, 0);
}
.panel#panel_info:target {
  transform: translate3d(0, 0, 0);
}

a.btn_info {
  font-weight: 500;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background-color: #fff;
  border-radius: 3px;
  padding: 8px 15px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  a.btn_info {
    position: static;
  }
}

.strip_info {
  border-bottom: 1px solid #ededed;
  margin-bottom: 25px;
}
.strip_info h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #54927a;
}
.strip_info .date_event {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #54927a;
  font-weight: 500;
}
.strip_info .date_event small {
  display: block;
  color: #777;
  font-size: 16px;
  font-size: 1rem;
}

.list_icons ul {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}
.list_icons ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.list_icons ul li i {
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 21px;
  font-size: 1.3125rem;
}

.map_contact {
  border-radius: 5px;
  overflow: hidden;
  filter: grayscale(100%);
  margin-bottom: 25px;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .map_contact {
    margin-right: 0;
  }
}
.map_contact iframe {
  width: 100%;
  height: 270px;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.container_count {
  width: 60px;
  display: inline-block;
  margin: 0 5px 25px 0;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

.container_count.last {
  margin-right: 0;
}

.countdown {
  margin: 30px 0 20px 0;
}
.countdown h4 {
  color: #555;
  font-weight: 500;
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 10px;
}

#days,
#hours,
#minutes,
#seconds {
  border-radius: 5px;
  border: 2px solid #ddd;
  text-align: center;
  width: 60px;
  height: 60px;
  font-size: 24px;
  line-height: 56px;
  font-weight: 400;
}

.background-image {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ededed;
}

.opacity-mask {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
}

.list_block p {
  margin-bottom: 20px;
  font-weight: 500;
}
.list_block ul {
  padding: 0;
  margin: 0 0 20px 0;
}
.list_block ul li {
  display: block;
  margin: 0 0 5px 0;
}
.list_block ul li.last-child {
  margin-right: 0;
}

/*-------- 3.2 Forms --------*/
.form-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-group.terms {
  background-color: #4b836d;
  background-color: rgba(84, 146, 122, 0.075);
  padding: 12px 0 0 0;
  text-align: left;
  padding: 8px 5px 5px 8px;
}
.form-group.terms .container_check {
  margin-bottom: 0;
}

span.error {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: -20px;
  right: -15px;
  z-index: 2;
  height: 25px;
  line-height: 1;
  background-color: #e34f4f;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
}
span.error:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #e34f4f;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}

.container_radio.version_2 .error, .container_check.version_2 .error {
  left: -15px;
  top: -30px;
  right: inherit;
}

.radio_input .error {
  left: -15px;
  top: -30px;
  right: inherit;
}

.styled-select span.error {
  top: -20px;
}

.terms span.error {
  top: -30px;
  left: -15px;
  right: inherit;
}

.form-control {
  border: 1px solid transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 15px;
  font-size: 0.9375rem;
  height: calc(2.95rem + 2px);
  background-color: #4b836d;
  background-color: rgba(84, 146, 122, 0.075);
}
.form-control:focus {
  border-color: rgba(0, 0, 0, 0.15);
  outline: 0;
  background-color: #4b836d;
  background-color: rgba(84, 146, 122, 0.075);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
}

.form-control::-moz-placeholder {
  color: #555;
  opacity: 1;
}

.form-control::-webkit-input-placeholder {
  color: #555;
}

textarea.form-control {
  height: 205px !important;
}

textarea.form-control.short {
  height: 140px !important;
}

.checkbox_radio_container {
  margin-bottom: 10px;
  position: relative;
}
.checkbox_radio_container input[type="checkbox"] {
  display: none;
}
.checkbox_radio_container input[type="radio"] {
  display: none;
}
.checkbox_radio_container label {
  cursor: pointer;
}

.checkbox_radio_container .radio,
.checkbox_radio_container .checkbox {
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 5px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  left: 8px;
  top: 7px;
}
.checkbox_radio_container .radio:after,
.checkbox_radio_container .checkbox:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(4px, 11px) rotate(-45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 0ms;
}
.checkbox_radio_container .radio:before,
.checkbox_radio_container .checkbox:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transform: translate(1px, 6px) rotate(45deg);
  transform-origin: left;
  transition: all 150ms;
  transition-delay: 150ms;
}
.checkbox_radio_container .checkbox {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.checkbox_radio_container .wrapper {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: #4b836d;
  background-color: rgba(84, 146, 122, 0.075);
  /* OPACITY AND COLOR OF THE RADIO AND CHECKBOX */
  position: relative;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  padding: 10px 10px 10px 44px;
  font-weight: 500;
  cursor: pointer;
}

.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:before, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="radio"]:checked ~ .radio:before {
  width: 7px;
  transition-delay: 0ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:after, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="radio"]:checked ~ .radio:after {
  width: 13px;
  transition-delay: 150ms;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .wrapper, .checkbox_radio_container input[type="radio"]:checked ~ .wrapper {
  transition: all 450ms;
  background-color: #54927a;
  color: #fff;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.container_check input:checked ~ .checkmark {
  background-color: #54927a;
  border: 1px solid transparent;
}

.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

/* Radio styles */
.container_radio {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container_radio input {
  position: absolute;
  opacity: 0;
}

.container_radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.container_radio .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #54927a;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*Quantity incrementer inpu*/
.qty-buttons {
  position: relative;
  width: 100%;
  height: 38px;
  display: inline-block;
}

input.qty {
  width: 100%;
  text-align: center;
}

input.qtyminus,
input.qtyplus {
  position: absolute;
  width: 32px;
  height: 38px;
  border: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}

input.qtyplus {
  background: url(../img/plus.svg) no-repeat center center;
  right: 10px;
  top: 5px;
  text-indent: -9999px;
  box-shadow: none;
}

input.qtyminus {
  background: url(../img/minus.svg) no-repeat center center;
  left: 10px;
  top: 5px;
  text-indent: -9999px;
  box-shadow: none;
}

/*-------- 3.3 Help Modal --------*/
.custom-modal {
  background: #fff;
  padding: 45px;
  padding-top: 0;
  text-align: left;
  max-width: 450px;
  margin: 40px auto;
  position: relative;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

/* Popup close button*/
.custom-modal .mfp-close {
  color: #999;
  top: 12px;
  right: 10px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

.custom-modal .mfp-close:hover {
  color: #222;
}

.custom-modal .mfp-close:before {
  font-size: 26px;
  font-family: bootstrap-icons;
  content: "\f62a";
}

.small-dialog-header {
  text-align: center;
  padding: 45px 0 0 0;
}
.small-dialog-header h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
}

.modal-wrapper {
  position: relative;
  height: 100%;
}

/* Magnific popup */
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-bottom-bar {
  padding: 0 10px !important;
}

.mfp-counter {
  right: 10px !important;
  color: #fff !important;
}

.mfp-bg {
  opacity: 0.8 !important;
}

#message-help {
  margin-bottom: 5px;
  min-height: 20px;
}
#message-help .error_message {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: red;
}

.submit {
  position: relative;
}
.submit .loader {
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  top: 10px;
  margin-left: 10px;
}
