/**
 * Theme Name: Quotare
 * Theme URI: http://www.ansonika.com/demos/quotare/
 * Author: Ansonika
 * Author URI: http://themeforest.net/user/Ansonika/
 * Version: 1.0
 *
 * [Table of contents]
 *
 * 1. SITE STRUCTURE and TYPOGRAPHY
 * - 1.1 Typography
 * - 1.2 Buttons
 * - 1.3 Page backgrounds
 * - 1.4 Structure
 *
 * 2. CONTENT
 * - 2.1 Wizard
 * - 2.2 Contact page
 *
 * 3. COMMON
 * - 3.1 Misc
 * - 3.2 Input forms
 * - 3.3 Float Labels
 * - 3.4 Spacing
 * - 3.5 Success submit
 *
 * /*============================================================================================
 *
 * @format
 */
/* 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 #2d32aa;
  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 #2d32aa;
  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,
label {
  font-weight: 500;
}
hr {
  margin: 25px 0 25px 0;
  border: 1px dashed #d9e1e6;
  opacity: 1;
}
h2 .highlight,
h3 .highlight {
  display: inline-block;
  background-size: 100% 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(66%, rgba(255, 255, 255, 0)),
    color-stop(66%, rgba(255, 219, 109, 0.6)),
    color-stop(85%, rgba(255, 219, 109, 0.6)),
    color-stop(85%, rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 66%,
    rgba(255, 219, 109, 0.6) 66%,
    rgba(255, 219, 109, 0.6) 85%,
    rgba(255, 255, 255, 0) 85%
  );
}
.question_title {
  text-align: center;
  margin-bottom: 35px;
}
.question_title h3 {
  font-weight: 600;
  font-size: 28px;
  font-size: 1.75rem;
  color: #333;
}
.question_title p {
  font-size: 16px;
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}
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: #2d32aa;
  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: #2d32aa;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*General links color*/
a {
  color: #2d32aa;
  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 --------*/
button.backward {
  background-color: #4c51b9;
}
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #733594;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  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: #2d32aa;
}
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: #2d32aa;
  color: #fff;
}
a.btn_help:focus {
  box-shadow: none;
}
.btn-close:focus {
  box-shadow: none;
  outline: none;
}
/*-------- 1.3 Page backgrounds --------*/
.bg_cover {
  background: url(../img/bg_cover.svg) no-repeat center center;
}
@media (max-width: 767px) {
  .bg_cover {
    background: url(../img/bg_cover_mobile.svg) no-repeat left top;
    background-size: cover;
  }
}
.bg_color {
  background-color: #282c96;
  background-color: rgba(45, 50, 170, 0.03);
}
.bg_style_1 {
  background: #ff0033;
}
.bg_style_2 {
  background: #39b568 url(../img/pattern.png) repeat center center;
}
.bg_style_3 {
  background: #0acbdd;
}
.bg_style_4 {
  background: #7b3b5b;
}
/*-------- 1.4 Structure --------*/
/* Header */
header {
  position: relative;
  padding: 20px 10px 0 10px;
}
header.inner {
  position: relative;
  padding: 20px 10px;
  background-color: #fff;
}
header.inner #social ul li a {
  color: #444;
}
#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: #fff;
  text-align: center;
  display: block;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#social ul li a:hover {
  opacity: 0.7;
}
#offcanvasNav {
  background: #fff url(../img/logo_2.svg) no-repeat center bottom;
}
#offcanvasNav .offcanvas-body {
  padding: 25px;
}
#offcanvasNav ul {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  font-size: 16px;
  font-size: 1rem;
}
#offcanvasNav ul li {
  margin-bottom: 25px;
  font-weight: 500;
}
#offcanvasNav ul li a {
  color: #444;
}
.offcanvas-start#offcanvasNav {
  width: 300px;
  border-right: none;
}
/* Footer */
footer {
  padding: 20px;
  color: #fff;
}
@media (max-width: 575px) {
  footer {
    text-align: center;
    padding-top: 0;
  }
}
footer a {
  color: #fff;
}
footer p {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  footer p {
    margin-bottom: 15px;
  }
}
footer.inner {
  padding: 25px 20px;
  border-top: 1px solid #ededed;
  color: #444;
}
footer.inner a {
  color: #444;
}
footer.inner a:hover {
  color: #2d32aa;
}
/*============================================================================================*/
/* 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: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.8s;
  /* don't forget to set a duration! */
  animation-timing-function: ease;
}
#wizard_container {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  min-height: 590px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.062);
}
@media (max-width: 767px) {
  #wizard_container {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  #wizard_container {
    width: auto;
    /* -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15); */
    margin: 30px auto;
  }
}
.decorative_bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .decorative_bg {
    display: none;
  }
}
.decorative_bg.bg_1 {
  background: #fff url(../img/bg_alarms.jpg) no-repeat top left;
  background-size: cover;
}
.decorative_bg.bg_2 {
  background: #fff url(../img/bg_removals.jpg) no-repeat top right;
  background-size: cover;
}
.decorative_bg.bg_3 {
  background: #fff url(../imagen/design.png) no-repeat top right;
  background-size: cover;
}
.decorative_bg.bg_4 {
  background: #fff url(../img/bg_web.jpg) no-repeat top right;
  background-size: cover;
}
/* Wizard Buttons*/
a.backward,
a.forward {
  border: none;
  min-width: 120px;
}
button.submit {
  border: none;
  min-width: 120px;
}
button.submit {
  background: #733594;
}
a.backward {
  background-color: #eee;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #555;
}
a.backward:hover {
  background-color: #ccc;
}
a[disabled] {
  display: none;
}
button[disabled] {
  display: none;
}
#top-wizard {
  width: 100%;
  position: absolute;
  top: 0;
  margin-left: 30%;
}
#middle-wizard {
  padding: 30px 25px;
  padding-bottom: 5px;
  margin-left: 30%;
}
@media (max-width: 991px) {
  #middle-wizard {
    margin-left: 0;
    padding: 25px 20px;
  }
  .form-group.ui-sortable-handle {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
#bottom-wizard {
  position: absolute;
  right: 0px;
  left: 30%;
  bottom: 0;
  padding: 0 0 10px 0;
  text-align: center;
  margin: auto;
}
.ui-widget-content a {
  color: #222222;
}
.ui-widget-header {
  background: rgb(51, 89, 204);
}
.ui-widget-header a {
  color: #222222;
}
.ui-progressbar {
  height: 9px;
  width: 70%;
  position: relative;
  top: 0;
  z-index: 2;
}
.ui-progressbar .ui-progressbar-value {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.img_step {
  text-align: center;
  margin-bottom: 40px;
}
.img_step img {
  width: auto;
  height: 120px;
}
/*-------- 2.2 Contact page--------*/
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: 40px 45px 45px 45px;
  position: relative;
  margin-bottom: 25px;
}
.box_style_2 h2 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
}
ul.contacts_info {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.contacts_info li {
  margin-bottom: 40px;
}
ul.contacts_info li:last-child {
  margin-bottom: 0;
}
/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.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;
}
.list_block_icons p {
  margin-bottom: 20px;
  font-weight: 500;
}
.list_block_icons ul {
  padding: 0;
  margin: 0 0 20px 0;
  text-align: center;
}
.list_block_icons ul li {
  display: inline-block;
  width: 32%;
  margin: 0 2px;
}
@media (max-width: 767px) {
  .list_block_icons ul li {
    display: block;
    width: 100%;
  }
}
.list_block li a.tooltip_icon {
  display: block;
  float: right;
  margin: 9px -30px 0 0;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .list_block li a.tooltip_icon {
    margin: 9px -21px 0 0;
  }
}
/*-------- 3.2 Input forms --------*/
.form-group {
  position: relative;
}
/* Input radios style */
.checkbox_radio_container {
  margin-bottom: 10px;
  position: relative;
}
.checkbox_radio_container input[type="checkbox"],
.checkbox_radio_container input[type="radio"] {
  opacity: 0;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.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: #6c3;
  -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: #6c3;
  -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: #2d32aa;
  color: #fff;
}
.checkbox_radio_container:hover .wrapper {
  transition: all 450ms;
  background-color: #c4c4c4;
  background-color: rgba(204, 204, 204, 0.4);
}
.item_price {
  float: right;
  color: #f4511e;
  font-weight: 600;
}
.checkbox_radio_container input[type="checkbox"]:checked ~ .wrapper .item_price,
.checkbox_radio_container input[type="radio"]:checked ~ .wrapper .item_price {
  color: #ccffcc;
}
.total_price {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
}
.total_price input {
  float: right;
  border: 0;
  padding: 0;
  text-align: right;
  font-weight: 600;
}
.total_price input:focus {
  border: 0;
  outline: none;
}
.item label {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  display: block;
  border: 1px solid #ededed;
  padding: 25px;
  text-align: center;
  margin-bottom: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  color: #777;
  cursor: pointer;
}
.item label strong {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}
.item label:hover {
  -webkit-box-shadow: 0 2px 40px #e0e5f0;
  -moz-box-shadow: 0 2px 40px #e0e5f0;
  box-shadow: 0 2px 40px #e0e5f0;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
.item label img {
  display: block;
  margin: 0 auto 15px;
}
.item input[type="checkbox"]:not(old),
.item input[type="radio"]:not(old) {
  visibility: hidden;
}
.item input[type="checkbox"]:not(old):checked + label,
.item input[type="radio"]:not(old):checked + label,
.item input[type="checkbox"]:not(old):checked + span + label,
.item input[type="radio"]:not(old):checked + span + label {
  display: block;
  border: 1px solid #6c3;
  -webkit-box-shadow: 0 2px 40px #e0e5f0;
  -moz-box-shadow: 0 2px 40px #e0e5f0;
  box-shadow: 0 2px 40px #e0e5f0;
}
/* 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;
}
.container_check input:checked ~ .checkmark {
  background-color: #2d32aa;
  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;
}
/* Common inputs */
.form-floating > label {
  color: #777;
  font-size: 15px;
  font-size: 0.9375rem;
}
/* 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: 25px;
  line-height: 1;
  background-color: #f43939;
  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 #f43939;
  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;
}
input.qtyminus,
input.qtyplus {
  position: absolute;
  width: 35px;
  height: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  -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: 4px;
}
input.qtyplus {
  background: url(../img/plus.svg) no-repeat center center;
  right: 35px;
}
input.qtyplus:hover {
  background: url(../img/plus_hover.svg) no-repeat center center;
}
input.qtyminus {
  background: url(../img/minus.svg) no-repeat center center;
  right: 5px;
}
input.qtyminus:hover {
  background: url(../img/minus_hover.svg) no-repeat center center;
}
/* Rounder range slider */
.rounded_slider {
  text-align: center;
  position: relative;
  margin: auto;
}
.rounded_slider p {
  margin-bottom: 0;
  color: #777;
}
.rounded_slider #budget_slider {
  margin: 0 auto 20px;
  width: 200px !important;
  height: 200px !important;
}
.rs-tooltip-text {
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: bold;
  position: absolute;
  font-size: 28px !important;
  font-size: 28px !important;
  color: #333;
}
.rs-tooltip-text:before {
  content: "$";
}
/*** handle types ***/
.rs-handle-dot {
  border: 1px solid #ccc !important;
  padding: 6px;
}
.rs-handle-dot:after {
  border: 1px solid #fff !important;
}
/*** theming - colors ***/
.rs-seperator {
  border: 1px solid #aaaaaa;
}
.rs-border {
  border: 1px solid #fff !important;
}
.rs-path-color {
  background-color: #f4f9ed !important;
}
.rs-range-color {
  background-color: #8ec549 !important;
}
.rs-bg-color {
  background-color: #ffffff;
}
.rs-handle {
  background-color: #fff !important;
}
.rs-handle-dot {
  background-color: #ffffff;
}
.rs-handle-dot:after {
  background-color: #333 !important;
}
/*-------- 3.3 Float Labels --------*/
/*!
 * Float Labels
 * @version: 3.3.9
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://pryley.github.io/float-labels.js
 * @license: MIT
 */
/*-------- 3.5 Success submit --------*/
#success {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 150px;
  margin-top: -120px;
  margin-left: -195px;
  text-align: center;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 45px;
  border: 1px solid #d9e1e6;
  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;
}
