/*
Theme Name: Limmo
Theme URI: http://www.ansonika.com/limmo/
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 Inner pages

3. COMMON
- 3.1 Misc
- 3.2 Datepicker
- 3.3 Input forms
- 3.4 Spacing

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/

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

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite 0.95s linear;
  -moz-animation: circle infinite 0.95s linear;
  -o-animation: circle infinite 0.95s linear;
  animation: circle infinite 0.95s linear;
  border: 2px solid #6e2d2e;
  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);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

#loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fafafa;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 99999999999 !important;
  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 0.95s linear;
  -moz-animation: circle infinite 0.95s linear;
  -o-animation: circle infinite 0.95s linear;
  animation: circle infinite 0.95s linear;
  border: 2px solid #f7274a;
  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);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}
#loading-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  text-align: center;
}
#loading-overlay span {
  position: relative;
  width: 100%;
  top: 30%;
  font-size: 20px;
  font-weight: bolder;
}
#loading-overlay .loading-l {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite 0.95s linear;
  -moz-animation: circle infinite 0.95s linear;
  -o-animation: circle infinite 0.95s linear;
  animation: circle infinite 0.95s linear;
  border: 2px solid #f7274a;
  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);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*-------- 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 * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Inter", Arial, sans-serif;
  color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

p {
  margin-bottom: 30px;
}

strong {
  font-weight: 600;
}

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

i {
  font-style: normal;
}
.forward:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #999;
  background-color: #f0f0f0;
  pointer-events: none;
}
#progress-container {
  display: flex;
  justify-content: space-between;
  width: 650px;
  /* max-width: 650px; */
  margin: 0px auto 50px;
  align-items: center;
  position: relative;
}

.circle {
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  position: relative;
  color: white;
  font-size: 27px;
  transition: background-color 0.3s ease;
}
.circle[data-step="2"],
.circle[data-step="6"],
.circle[data-step="8"],
.circle[data-step="10"] {
  width: 52px;
  height: 52px;
}
.circle[data-step="2"] span,
.circle[data-step="6"] span,
.circle[data-step="8"] span,
.circle[data-step="10"] span {
  width: 52px;
  height: 52px;
}
.circle[data-step="9"] {
  width: 38px;
  height: 38px;
}
.circle[data-step="9"] span {
  width: 38px;
  height: 38px;
}
.circle span {
  background-color: #e53030;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle.active {
  border: 1px solid #03eef4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.circle.active span {
  background-color: #03eef4;
  width: 34px;
  height: 34px;
}

.line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #e53030;
  z-index: -1;
}

.wpcf7 form .wpcf7-response-output {
  position: relative;
  width: 100%;
  border: none;
  bottom: 5px;
  text-align: center;
  font-size: 19px;
  padding: 10px 0px;
}
a.animated_link {
  position: relative;
  text-decoration: none;
}

a.animated_link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  opacity: 1;
  left: 0;
  background-color: #f7274a;
  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;
}

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

/*General links color*/
a {
  color: #f7274a;
  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: #111;
  text-decoration: none;
  outline: none;
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #e53030;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  -webkit-box-shadow: 0px 10px 40px -10px rgba(110, 45, 46, 0.5);
  -moz-box-shadow: 0px 10px 40px -10px rgba(110, 45, 46, 0.5);
  box-shadow: 0px 10px 40px -10px rgba(110, 45, 46, 0.5);
  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 {
  -webkit-filter: brightness(115%);
  filter: brightness(115%);
}

a.btn_nav {
  color: #111;
  font-size: 24px;
  font-size: 1.5rem;
}

a.btn_nav:hover {
  color: #f7274a;
}

a.btn_help {
  background-color: #ddd;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 500;
}

a.btn_help:hover {
  background-color: #f7274a;
  color: #fff;
}

a.btn_help:focus {
  box-shadow: none;
}

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

/*-------- 1.3 Structure --------*/
/* Header */
header {
  position: relative;
  padding: 20px 10px;
  background-color: #fff;
  border-bottom: 1px solid #d9e1e6;
}
.alert-offline {
  font-size: 18px;
  width: 100%;
  text-align: center;
  background: #8d2727;
  color: #fff;
  border-radius: 4px;
  padding: 9px 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  header {
    padding: 15px 0;
  }
}

#social {
  float: right;
}

#social ul {
  margin: 0;
  padding: 0 0 0 0;
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
}

#social ul li {
  display: inline-block;
  margin: 0 0 0 10px;
}

#social ul li:first-child {
  margin: 0;
}

#social ul li a {
  color: #555;
  text-align: center;
  display: block;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#social ul li a:hover {
  color: #f7274a;
}

#offcanvasNav ul {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  font-size: 16px;
  font-size: 1rem;
}

#offcanvasNav ul li {
  margin-bottom: 20px;
  font-weight: 500;
}

#offcanvasNav ul li a {
  color: #444;
}

.offcanvas-start#offcanvasNav {
  width: 300px;
  border-right: none;
}

/* Footer */
footer {
  background-color: #fff;
  border-top: 1px solid #d9e1e6;
  padding: 20px 10px;
  height: 70px;
}

@media (max-width: 767px) {
  footer {
    text-align: center;
  }
}

footer a {
  color: #444;
}

footer p {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  footer p {
    margin-bottom: 15px;
  }
}
.linha-vertical {
  height: 76px; /*Altura da linha*/
  border-left: 2px solid #e53030; /* Adiciona borda esquerda na div como ser fosse uma linha.*/
  position: relative;
  margin: 0px 13px;
}
.content-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*============================================================================================*/
/* 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
*/
.list-products {
  padding: 5px 10px;
}
.list-products li {
  list-style-type: none;
}
.list-products li h2 {
  font-size: 20px;
  margin-bottom: 5px;
}
.step {
  width: 100%;
  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 {
  position: relative;
  max-width: 800px;
  margin: 0px auto;
}

/* Wizard Buttons*/
button.backward,
button.forward,
button.submit {
  border: none;
  min-width: 140px;
}

.submit-form.submit:not(.sending) {
  background: #66cc33;
  -webkit-box-shadow: 0px 10px 40px -10px rgba(102, 204, 51, 0.5);
  -moz-box-shadow: 0px 10px 40px -10px rgba(102, 204, 51, 0.5);
  box-shadow: 0px 10px 40px -10px rgba(102, 204, 51, 0.5);
}

button.backward {
  background-color: #ddd;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #555;
}
.sending {
  background-color: rgba(19, 1, 1, 0.3);
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(195, 195, 195, 0.3);
  cursor: not-allowed;
}

button.backward:hover {
  background-color: #ccc;
}
.submit-form[disabled]:not(.sending) {
  display: none;
}
button[disabled] {
  display: none;
}

a#myBtn[disabled] {
  display: none;
}

a#myBtn {
  -webkit-appearance: button-bevel;
}

#top-wizard {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

#middle-wizard {
  padding: 60px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#middle-wizard h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 29px;
  display: block;
}
#bottom-wizard {
  padding: 5px 0 30px 0;
  text-align: center;
  z-index: 5;
}

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

.ui-widget-header {
  background: #e53030;
}

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

.ui-progressbar {
  height: 6px;
  width: 100%;
  position: relative;
  top: -1px;
  z-index: 2;
}

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

/*-------- 2.2 Autocomplete Address Search --------*/
.pac-container {
  margin-top: 5px;
  border-top: none !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  border-radius: 4px !important;
  font-family: "Inter", Arial, sans-serif;
  color: #444;
  -webkit-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
}

.pac-item-query {
  color: #444;
}

/*-------- 2.3 Inner pages --------*/
.main_title {
  text-align: center;
}

.main_title h2 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 42px;
  font-size: 2.625rem;
}

@media (max-width: 767px) {
  .main_title h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.main_title p {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0 10%;
  margin-bottom: 45px;
  color: #777;
}

@media (max-width: 767px) {
  .main_title p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.parallax_window_in {
  height: 420px;
  position: relative;
  display: table;
  width: 100%;
}

#sub_content_in {
  display: table-cell;
  padding: 45px 15% 0 15%;
  vertical-align: middle;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  #sub_content_in {
    padding: 45px 30px 0 30px;
  }
}

#sub_content_in h1 {
  color: #fff;
  font-weight: 600;
  font-size: 52px;
  font-size: 3.25rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  #sub_content_in h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

#sub_content_in p {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  #sub_content_in p {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #f7274a !important;
}

.team-item-img {
  position: relative;
}

.team-item-img .team-item-detail {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

.team-item:hover .team-item-detail {
  opacity: 1;
  visibility: visible;
}

.team-item-img .team-item-detail .team-item-detail-inner {
  margin: auto;
  padding: 25px;
}

.team-item-detail-inner .social {
  margin: 0 0px 25px 0px;
  padding: 0px;
}

.team-item-detail-inner .social li {
  list-style: none;
  display: inline-block;
  margin: 0px 8px;
  font-size: 24px;
  font-size: 1.5rem;
}

.team-item-detail-inner .social li a {
  color: #fff;
}

.team-item-detail-inner .social li a:hover {
  color: #d62544;
}

.team-item-info {
  padding-top: 15px;
  text-align: center;
}

.team-item-info h4 {
  margin-bottom: 0px;
}

iframe#map_iframe {
  width: 100%;
  height: 450px;
  border: 0;
  margin: 0;
}

@media (max-width: 991px) {
  iframe#map_iframe {
    height: 400px;
  }
}

.box_style_2 {
  background-color: #f8f8f8;
  padding: 25px 30px 30px 30px;
  position: relative;
  margin-bottom: 25px;
}

.box_style_2 .form-control {
  background-color: #fff !important;
}

ul.contacts_info {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

ul.contacts_info li {
  margin-bottom: 15px;
}

ul.contacts_info li:last-child {
  margin-bottom: 0;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.bg_color_gray {
  background-color: #f8f8f8;
}

.modal-content {
  border: 1px solid transparent;
}

.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 Datepicker --------*/
.daterangepicker td.in-range {
  background-color: #ffd9e5 !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #f7274a !important;
}

/* Fixed single picker style */
.daterangepicker.single .left .calendar-table {
  border: 1px solid #d9e1e6 !important;
  border-radius: 4px !important;
}

/* Fixed current date */
.today.active.start-date.active.end-date.in-range.available {
  background-color: #eee !important;
  color: #444;
}

.today.active.start-date.active.end-date.in-range.available:hover {
  background-color: #f7274a !important;
  color: #fff;
}

/*-------- 3.3 Input forms --------*/
/* Input radios style */
.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: 9;
  left: 8px;
  top: 7px;
}

.checkbox_radio_container .radio:after,
.checkbox_radio_container .checkbox:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background: #d62544;
  -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: #d62544;
  -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: #c2c2c2;
  background-color: rgba(204, 204, 204, 0.2);
  /* 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: #f7274a;
  color: #fff;
}

.radios {
  display: flex;
  padding: 10px;
  align-items: center;
  background: #eee;
  margin-bottom: 10px;
}

/* Checkbox style */
.container_radio {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 30px;
  line-height: 1.3;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 50;
}

.input-radio {
  left: 0;
  height: 20px;
  width: 20px;
}

.container_radio input:checked ~ .checkmark {
  background-color: #e53030;
  border: 1px solid transparent;
}

.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #d9e1e6;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -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_radio input:checked ~ .checkmark:after {
  display: block;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  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_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.input-radio {
  left: 0;
  height: 20px;
  width: 20px;
}

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

.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #d9e1e6;
  background-color: #fff;
  -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;
}

/* Input smiles review */
.review_block_smiles ul {
  padding: 0;
  margin: 0 -3px;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.review_block_smiles ul li {
  display: list-item;
  margin: 0 3px;
  width: 100%;
}

.container_smile {
  margin-bottom: 5px;
  position: relative;
}

.container_smile input[type="radio"] {
  display: none;
}

.container_smile label {
  cursor: pointer;
}

.container_smile .radio {
  position: relative;
  background-color: white;
  background-color: white;
  /* OPACITY AND COLOR */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d9e1e6;
  padding: 15px;
  display: block;
  text-align: center;
}

@media (max-width: 575px) {
  .container_smile .radio {
    padding: 10px;
  }
  .circle {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }
  .circle span {
    width: 20px;
    height: 20px;
  }
  #wizard_container {
    max-width: 100%;
  }
  #progress-container {
    min-width: 100%;
    width: 100%;
  }
  .circle.active {
    width: 20px;
    height: 20px;
  }
  .circle.active span {
    width: 20px;
    height: 20px;
  }
  .circle[data-step="2"],
  .circle[data-step="6"],
  .circle[data-step="8"],
  .circle[data-step="9"],
  .circle[data-step="10"] {
    width: 20px;
    height: 20px;
  }
  .circle[data-step="2"] span,
  .circle[data-step="6"] span,
  .circle[data-step="8"] span,
  .circle[data-step="9"] span,
  .circle[data-step="10"] span {
    width: 20px;
    height: 20px;
  }
}

.container_smile .radio:after {
  font-family: "smiles";
  font-size: 42px;
  font-size: 2.625rem;
}

@media (max-width: 1199px) {
  .container_smile .radio:after {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media (max-width: 575px) {
  .container_smile .radio:after {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.container_smile .radio span {
  display: none;
}

.container_smile .radio.smile_1:after {
  content: "\0041";
}

.container_smile .radio.smile_2:after {
  content: "\0042";
}

.container_smile .radio.smile_3:after {
  content: "\0043";
}

.container_smile .radio.smile_4:after {
  content: "\0044";
}

.container_smile .radio.smile_5:after {
  content: "\0045";
}

.container_smile .radio {
  transition: all 450ms;
}

.container_smile .radio.smile_1:hover {
  background-color: #ff0033;
  color: #fff;
}

.container_smile .radio.smile_2:hover {
  background-color: #ff5f7f;
  color: #fff;
}

.container_smile .radio.smile_3:hover {
  background-color: #94b49b;
  color: #fff;
}

.container_smile .radio.smile_4:hover {
  background-color: #68cd7f;
  color: #fff;
}

.container_smile .radio.smile_5:hover {
  background-color: #4ccd6a;
  color: #fff;
}

.container_smile input[type="radio"]:checked ~ .radio {
  transition: all 450ms;
  color: #fff;
}

.container_smile input[type="radio"]:checked ~ .radio:after {
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
  transform: rotateY(360deg);
}

.container_smile input[type="radio"]:checked ~ .radio.smile_1 {
  background-color: #ff0033;
}

.container_smile input[type="radio"]:checked ~ .radio.smile_2 {
  background-color: #ff5f7f;
}

.container_smile input[type="radio"]:checked ~ .radio.smile_3 {
  background-color: #94b49b;
}

.container_smile input[type="radio"]:checked ~ .radio.smile_4 {
  background-color: #68cd7f;
}

.container_smile input[type="radio"]:checked ~ .radio.smile_5 {
  background-color: #4ccd6a;
}

/* Common inputs */
input.form-control,
.form-select,
textarea.form-control {
  background-color: #fff;
  border: 1px solid #d9e1e6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-weight: 400;
  padding: 1rem 0.75rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Inter", Arial, sans-serif;
}
input::placeholder {
  font-weight: 100;
  opacity: 1 !important;
  color: #c7c7c7 !important;
  font-size: 13px;
}
input.error {
  border: 1px solid #ff0057;
}

input.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(247, 39, 74, 0.2);
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgba(247, 39, 74, 0.05);
  color: #444;
  -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;
}

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

.form-floating > label {
  color: #777;
  font-size: 12px;
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  text-transform: uppercase;
}

/* Error label */
span.error {
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: -20px;
  left: 15px;
  z-index: 10;
  height: auto;
  line-height: 1;
  background-color: #222;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
  min-width: 140px;
}

span.error:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #222;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}

.terms span.error {
  top: -30px;
}

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

.qty-buttons .form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

input.qty {
  width: 100%;
}

input.qtyminus,
input.qtyplus {
  position: absolute;
  width: 35px;
  height: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-indent: -9999px;
  top: 10px;
}

input.qtyplus {
  background: url(../img/plus.svg) no-repeat center center;
  right: 35px;
}

input.qtyminus {
  background: url(../img/minus.svg) no-repeat center center;
  right: 5px;
}

/*-------- 3.4 Spacing --------*/
.add_bottom_10 {
  margin-bottom: 10px;
}

.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_10 {
  margin-top: 10px;
}

.add_top_15 {
  margin-top: 15px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.margin_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}

.documento {
  max-width: 700px;
  margin: 60px auto;
  display: flex;
  align-items: baseline;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.documento-numero {
  font-size: 35px;
  font-weight: 500;
  margin-right: 15px;
}

.documento-conteudo {
  flex: 1;
  text-align: left;
}
.content-docs {
  margin-top: 10px;
  max-width: 100%;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: space-between;
}
.text-doc {
  font-size: 14px;
  font-weight: 300;
  /* font-weight: 600; */
}
.select-files {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 10px 25px;
  margin-bottom: 10px;
}
.imagem-doc {
  margin-top: 10px;
  max-width: 100%;
  height: auto;
}

.documento:nth-child(1) {
  animation-delay: 0s;
}
.documento:nth-child(2) {
  animation-delay: 0.3s;
}
.documento:nth-child(3) {
  animation-delay: 0.6s;
}
.documento:nth-child(4) {
  animation-delay: 0.9s;
}
/* Adicione mais se houver mais blocos */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------- 3.5 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: #f7274a;
}

.submit {
  position: relative;
  margin-top: 21px;
}

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

/*-------- 3.6 Success submit --------*/
#success {
  position: relative;
  top: 0;
  left: 0;
  margin: 300px auto;
  max-width: 500px;
  height: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 45px;
  box-sizing: content-box;
}

#success h4 {
  font-size: 18px;
  margin-top: 15px;
}

#success h4 span {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

@-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;
}
