﻿@charset "UTF-8";
/*!
Styles for full screen background video demo
*/
/* =============================================================================
  RESETS
============================================================================= */
/* =============================================================================
  HTML, BODY
============================================================================= */
/*=============================================================================
  Common components
============================================================================= */
/*
operator "~" not working on Edge, resolved this by javascript
*/
/*.input_text:not(:placeholder-shown)~.placeholder, .input_text:focus~.placeholder,*/
/* checkbox */
/* Customize the label (the container) */
/* Hide the browser's default checkbox */
/* Create a custom checkbox */
/* On mouse-over, add a grey background color */
/* When the checkbox is checked, add a blue background */
/* Create the checkmark/indicator (hidden when not checked) */
/* Show the checkmark when checked */
/* Style the checkmark/indicator */
/* end checkbox */
/*=============================================================================
  Header
============================================================================= */
/*=============================================================================
  Main
============================================================================= */
/*.input_text:not(:placeholder-shown)~.placeholder, #main_register_input .input_text:focus~.placeholder,*/
/*=============================================================================
  Register
============================================================================= */
/*=============================================================================
  Enhanced protection
============================================================================= */
/*=============================================================================
  Payment
============================================================================= */
/*=============================================================================
  Footer
============================================================================= */
/*=============================================================================
  Dialog
============================================================================= */
/*=============================================================================
  Thank you
============================================================================= */
.zoom-sentinel {
  display: none;
}

/* Muestra en táctil (si esto va inline en .cshtml usa @@media) */
@media (hover: none) and (pointer: coarse) {
  .zoom-sentinel {
    display: block;
  }
}
/* El sentinela: se pega al top pero no ocupa alto */
.zoom-sentinel {
  position: sticky;
  top: 0; /* umbral de stickiness */
  height: 0; /* no “amplía” el header */
  overflow: visible; /* deja asomar los botones */
  z-index: 10000;
  pointer-events: none; /* no bloquea clics del contenido */
}

/* Los controles: absolutos respecto al sentinela, centrados */
.zoom-controls {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top)); /* justo bajo el header */
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: saturate(180%) blur(6px);
  backdrop-filter: saturate(180%) blur(6px);
  padding: 0.25rem;
}

/* Botones/label (como los tenías) */
.zoom-btn, .zoom-label {
  all: unset;
  cursor: pointer;
  line-height: 1;
}

.zoom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.6rem;
  font-size: 1.1rem;
}

.zoom-label {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
}

.zoom-btn:hover, .zoom-label:hover {
  filter: brightness(0.95);
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #c8c8c8;
  font-size: 16px;
  font-family: "MyriadPro", sans-serif;
  line-height: 1.2;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: rgb(77, 79, 83);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #c8c8c8;
  font-size: 16px;
  font-family: "MyriadPro", sans-serif;
  line-height: 1.2;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: body-color;
  overflow-x: hidden;
}

div {
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

h1 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
}

video {
  margin: 0;
  padding: 0;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
  outline: none;
  transition: all 0.3s ease;
}

.input_div {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  width: 100%;
}
.input_div .input_right_icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.ui-state-active {
  background: rgb(237, 177, 18) !important;
  border: rgb(237, 177, 18) !important;
}

.select2-container .select2-selection--single .select2-selection__clear {
  margin-left: 0px;
  margin-top: -8px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 3px;
}

/* Button used to open the chat form - fixed at the bottom of the page */
/* The popup chat - hidden by default */
/* Add styles to the form container */
/* Full-width textarea */
/* When the textarea gets focus, do something */
/* Set a style for the submit/send button */
/* Add a red background color to the cancel button */
/* Add some hover effects to buttons */
.open-button-chat {
  background-color: rgb(237, 177, 18);
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  z-index: 1;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkbox-custom {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #c0c0c0;
  background: #fff;
  display: inline-grid;
  place-content: center;
}

.checkbox-custom::after {
  content: "";
  width: 10px;
  height: 5px;
  border: 3px solid #c0c0c0;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) scale(0);
  transition: transform 120ms ease-in-out;
}

.checkbox-custom:checked::after {
  transform: rotate(-45deg) scale(1);
}

.checkbox-custom:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}

.checkbox-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.registro_call_center_realizado_logo {
  height: 80px;
  width: 80px;
}

.registro_call_center_realizado_gif {
  height: 70px;
  width: 70px;
  margin: 5px;
}

#div-header-chat {
  max-width: 331px;
  padding: 5px;
  background-color: rgb(237, 177, 18);
  max-width: 331px;
  padding: 5px;
  background-color: rgb(237, 177, 18);
  border-top-left-radius: 30px !important;
  border-top-right-radius: 30px !important;
  color: white;
  padding-top: 8px !important;
  padding-bottom: 10px !important;
}

#myForm {
  border-top-left-radius: 30px !important;
  border-top-right-radius: 30px !important;
  margin-bottom: 86px !important;
  margin-right: 2px !important;
  border-bottom-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}

.informacion_legal_chat {
  font-size: 9px !important;
  text-align: left;
}

.chat-popup-btn-times-visible {
  display: inline-block;
}

.chat-popup-btn-phones-visible {
  display: none;
}

.chat-popup-visible {
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 1px solid rgb(237, 177, 18);
  z-index: 9;
}

.chat-popup-btn-times-oculto {
  display: none;
}

.chat-popup-btn-phones-oculto {
  display: inline-block;
}

.chat-popup-oculto {
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 1px solid rgb(237, 177, 18);
  z-index: 9;
  display: none;
}

.chat-popup-btn-times {
  display: inline-block;
}

.chat-popup-btn-phones {
  display: none;
}

.chat-popup {
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 1px solid rgb(237, 177, 18);
  z-index: 9;
  max-height: calc(65dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow: auto;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 0.5rem 0.75rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0.375rem;
  transform: translateY(-200%);
  transition: 0.15s;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.form-container {
  max-width: 300px;
  padding: 20px;
  background-color: white;
  border-bottom-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}
.form-container .btn_chat {
  background-color: rgb(237, 177, 18);
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 3px;
}
.form-container .btn_chat:hover {
  opacity: 1;
}

.open-button:hover {
  opacity: 1;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  padding: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.input_text {
  border: 1px solid #c0c0c0;
  font-size: 15px;
  background-color: #fff;
  font-weight: 300;
  padding: 0.4em;
  box-sizing: border-box;
  height: 40px;
  border-radius: 3px;
  color: rgb(77, 79, 83);
  position: relative;
  width: 100%;
}
.input_text:focus {
  border: 1px solid rgb(237, 177, 18);
}

.input_text_img {
  padding-right: 30px;
}

.button {
  background: rgb(237, 177, 18);
  display: inline-block;
  border-radius: 3px;
  font-weight: normal;
  cursor: pointer;
  color: #fff;
  min-height: 40px;
  position: relative;
  border: 0px;
  font-size: 16px;
  padding: 1%;
}
.button p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.button img {
  vertical-align: middle;
}
.button .button_disabled_img {
  display: none;
}

.button_white {
  color: rgb(237, 177, 18);
  background-color: #fff;
  border: 1px solid rgb(237, 177, 18);
  font-weight: normal !important;
  height: 38px;
}

.button_not_set {
  border: 1px solid #c0c0c0;
  color: rgb(77, 79, 83);
  background: #fff;
  color: #c0c0c0;
  height: 38px;
  font-size: 12px;
  font-weight: bold;
}

.button.button_not_set .button_enabled_img {
  display: none;
}
.button.button_not_set .button_disabled_img {
  display: inline;
}

.right_button {
  border-radius: 0 3px 3px 0;
}

.left_button {
  border-radius: 3px 0 0 3px;
}

.button_group .right_button {
  margin-left: -1px;
}
.button_group .left_button {
  margin-right: -1px;
}
.button_group .button_left {
  margin-right: -1px;
}

.center_button {
  border-radius: 0;
}

.placeholder {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 10px;
  font-weight: bold;
  color: #767775;
  pointer-events: none;
  background-color: #fff;
  font-size: 12px;
}
.placeholder span {
  color: rgb(237, 177, 18);
}

.colo_letra_corporativo {
  color: rgb(237, 177, 18);
}

.input_text_fill {
  min-width: 0px !important;
  min-height: 0px !important;
  padding-top: 0px !important;
  transform: translateY(-50%);
  top: 0;
  font-size: 10px;
  color: rgb(237, 177, 18);
  margin-left: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.column2 {
  height: 40px;
  max-width: 500px;
  margin: auto;
  margin-bottom: 15px;
  position: relative;
}

.column2_left {
  position: absolute;
  height: 100%;
  right: 50%;
  left: 0;
  margin-right: 7px;
  width: auto !important;
}

#register_mr_mrs_other .button {
  transition: none;
  width: 70px;
  margin-right: -4px !important;
}

.column2_right {
  position: absolute;
  height: 100%;
  left: 50%;
  right: 0;
  margin-left: 7px;
  width: auto !important;
}

.column2_left_min {
  position: absolute;
  height: 100%;
  right: 80%;
  left: 0;
  margin-right: 7px;
  width: auto !important;
}

.column2_right_max {
  position: absolute;
  height: 100%;
  left: 20%;
  right: 0;
  margin-left: 7px;
  width: auto !important;
}

.separator {
  height: 1px;
  width: 300px;
  max-width: 80%;
  background-color: rgb(237, 177, 18);
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 12px;
}

.orange {
  color: rgb(237, 177, 18);
}

.big_price {
  font-size: 26px;
  position: relative;
  display: inline-block;
}
.big_price span {
  font-size: 0.4em;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(70%);
}

.enhanced_protection_check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.enhanced_protection_check .checkmark {
  border: 1px solid rgb(237, 177, 18);
}
.enhanced_protection_check .container .checkmark:after {
  border: 0;
}
.enhanced_protection_check img {
  display: block;
}

.enhanced_protection_check_checkbox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
}

.enhanced_protection_check_tick {
  position: absolute;
  left: 30%;
  top: 90%;
  transform: translate(-20%, -70%);
}

.hidden {
  display: none !important;
}

.light {
  font-weight: 300 !important;
}

#dialog_glass {
  background-color: #000;
  opacity: 0.5;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}

.container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container input:checked ~ .checkmark:after {
  display: block;
}
.container input:checked ~ .checkmark img {
  display: block;
}
.container input ~ .checkmark img {
  display: none;
}
.container:hover input ~ .checkmark {
  background-color: #eee;
}
.container .checkmark:after {
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid #c0c0c0;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

#content {
  /*max-width: 1200px;*/
  margin: auto;
  background: #fff;
  height: 100%;
  text-align: center;
}

#header {
  position: relative;
  background: #fff;
  height: 60px;
}

#header_logo {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  height: 30px;
}

.header_logo_img {
  max-height: 30px;
}

#header_register {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  height: 45px;
}

#main {
  position: relative;
  background-image: url("../img/WHIRLPOOL/cover_bottom.png");
  background-position: center;
  height: calc(100vh - 60px);
}

#main_cover {
  background-image: url("../img/WHIRLPOOL/cover_top.png");
  background-position: center;
  background-repeat: no-repeat;
  height: 62vh;
  background-size: cover;
  position: relative;
}
#main_cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sd-container {
  position: relative;
  float: left;
}

.sd {
  padding: 5px 10px;
}

.open-button {
  position: absolute;
  top: 8px;
  right: 2px;
  width: 25px;
  height: 25px;
  background: #fff;
  pointer-events: none;
}

.open-button button {
  border: none;
  background: transparent;
}

.error {
  border-color: red !important;
  color: red;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-inner-spin-button {
  color: #ffffff;
}

#main_register {
  position: absolute;
  top: 62vh;
  left: 50%;
  transform: translate(-50%, -50%);
}

#main_register_input {
  width: 500px;
  margin-bottom: 0;
}
#main_register_input img {
  position: absolute;
  left: 10px;
  transform: translateY(-50%);
  top: 50%;
  height: 23px;
}
#main_register_input .placeholder {
  left: 40px;
}
#main_register_input .input_text_fill {
  display: none;
}

#main_register_text {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0px 0px 6px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 50px;
  padding-left: 40px;
}

#main_register_button {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 120px;
  color: black;
  font-weight: bold;
  height: 50px;
}

#register {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 10px;
}

#register_machine {
  width: 90%;
  margin: auto;
  max-width: 1000px;
  margin-top: 60px;
}

#register_machine_logo {
  display: inline-block;
  width: 40%;
  vertical-align: top;
}

#register_machine_data {
  display: inline-block;
  width: 40%;
  vertical-align: top;
}
#register_machine_data .input_div {
  width: 100%;
}
#register_machine_data .column2 .input_div {
  width: 48%;
}

#register_title_1 {
  font-size: 32px;
  font-weight: 900;
  position: relative;
  display: inline-block;
}
#register_title_1 img {
  position: absolute;
  right: -5px;
  transform: translateX(100%);
  top: -5px;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection, .select2-container--bootstrap4.select2-container--open .select2-selection {
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  border-color: #dee2e6;
  border-radius: 3px !important;
}

.select2-container--bootstrap4 .select2-results__option--highlighted[aria-selected] {
  color: rgb(77, 79, 83) !important;
  text-decoration: none !important;
  /* text-transform: uppercase !important; */
  font-weight: 600 !important;
  width: 100% !important;
  min-width: 100% !important;
  background: rgb(237, 177, 18) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.select2-container--bootstrap4 .select2-results__option--highlighted[aria-selected]:hover {
  color: rgb(77, 79, 83) !important;
  text-decoration: none !important;
  /* text-transform: uppercase !important; */
  font-weight: 600 !important;
  width: 100% !important;
  min-width: 100% !important;
  background: rgb(237, 177, 18) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.select2-container--bootstrap4 .select2-results__option[aria-selected=true] {
  color: #212529 !important;
  background: #edf9fc !important;
  font-weight: bold !important;
  width: 100% !important;
  min-width: 100% !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.select2-container--bootstrap4 .select2-results__option {
  padding: 0.25rem 0.475rem;
  font-size: 0.8rem;
  text-align: left;
}

.select2-container--bootstrap4 .select2-selection--single {
  height: calc(2.25rem + 2px);
  line-height: 1;
  padding: 0.75rem 1rem 0rem 0.5rem;
  font-weight: 100 !important;
  font-size: 100%;
  /* box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08); */
  /* transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1); */
  transition: ease-in-out, width 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #c0c0c0 !important;
}

.select2-container--bootstrap4 .select2-selection {
  border-radius: 3px !important;
  padding: 0.475rem 0.45rem;
  color: rgb(77, 79, 83);
  /* text-transform: uppercase; */
  border-radius: 0rem;
  outline: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0px !important;
  padding-right: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left !important;
  margin-left: 5px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: rgb(237, 177, 18) !important;
  color: white;
}

.select2-results__option {
  height: 15px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #c0c0c0 !important;
  border-radius: 3px;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #c0c0c0 !important;
  border-radius: 0px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #c0c0c0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 8px !important;
  right: 1px;
  width: 20px;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 38px !important;
  text-align: left;
}

#register_title_2 {
  font-size: 0.66em;
  font-weight: 300;
}

.select2-container--bootstrap4 .select2-selection--single:focus,
.select2-container--bootstrap4.select2-container--open .select2-selection--single,
.select2-container--bootstrap4 .select2-selection--multiple:focus,
.select2-container--bootstrap4.select2-container--open .select2-selection--multiple {
  outline: 3px solid rgb(237, 177, 18);
  outline-offset: 2px;
}

.enhanced_protection_check .checkmark {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.25rem;
}

/* Muestra anillo de foco al navegar con teclado */
.enhanced_protection_check input[type=checkbox]:focus-visible + .checkmark,
.enhanced_protection_check input[type=checkbox]:focus + .checkmark { /* fallback */
  outline: 3px solid rgb(237, 177, 18);
  outline-offset: 2px;
}

/* La “tick” es decorativa */
.enhanced_protection_check_tick {
  pointer-events: none;
}

.enhanced_protection_check .checkmark img {
  aria-hidden: true;
}

#register_customer_data {
  max-width: 500px;
  margin: auto;
}
#register_customer_data .column2 .input_div {
  width: 48.5%;
}

#register_mr_mrs_other .button {
  transition: none;
  width: 70px;
  margin-bottom: 15px;
}

#enhanced_protection {
  /*max-width: 500px;*/
  margin: auto;
  text-align: left;
  /*padding-bottom: 30px;*/
}

#enhanced_protection_main {
  max-width: 500px;
  margin: auto;
  text-align: left;
  /*padding-bottom: 30px;*/
}

#enhanced_protection_title_text {
  display: inline-block;
  margin-left: 30px;
  margin-right: 80px;
}

#enhanced_protection_check {
  display: inline-block;
  position: absolute;
  left: 0;
}

.divTermsCookies {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-bottom: 0px;
  width: 100%;
  text-align: center;
  min-height: 120px;
  background-color: rgb(255, 255, 255);
  color: #fff;
  z-index: 99999;
  box-shadow: 0px 4px 13px 0px rgba(57, 57, 57, 0.38);
  font-family: "Jim Sans Regular", Arial;
}

.divTermsCookies .inner {
  width: 100%;
  position: absolute;
  padding-left: 0px;
  font-family: verdana;
  font-size: 12px;
  top: 30%;
  color: #4d4f53;
  line-height: 22px;
}

.divTermsCookies .inner a.ok {
  padding: 4px;
  color: black;
  text-decoration: none;
  border: 1px solid;
  border-radius: 5px;
  white-space: nowrap;
  background-color: rgb(237, 177, 18);
}

.divTermsCookies .inner a.info {
  text-decoration: none;
  color: #4d4f53;
  border-bottom: 1px solid;
}

/*#region ****COOKIE POLICY****/
.ot-sdk-cookie-policy-title {
  color: #4d4f53 !important;
  font-weight: bold !important;
  font-size: 16px !important;
}

.ot-sdk-cookie-policy-group {
  color: #4d4f53 !important;
  font-weight: bold !important;
  font-size: 16px !important;
}

.cookie-policy-description, .ot-sdk-cookie-policy-group-desc, #cookie-policy-description {
  font-size: 16px !important;
  color: #4d4f53 !important;
}

.ot-sdk-cookie-policy section table tbody td, ot-sdk-cookie-policy section table thead th {
  font-size: 16px !important;
}

/*#endregion*/
/*#region ****LEGAL****/
.legalText {
  max-width: 1296px;
  margin: auto;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
  background-color: #ffffff;
}
.legalText strong {
  font-weight: bold;
}
.legalText p, .legalText li {
  text-align: justify;
}
.legalText #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header {
  font-size: 0.9rem;
}
.legalText table {
  border-collapse: inherit;
  margin: auto;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  border-spacing: initial;
  width: 100%;
  overflow: hidden;
}
.legalText th, .legalText td {
  padding: 12px 15px;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.legalText th {
  background-color: #f6f6f6;
  color: #333333;
  font-size: 0.9em;
}

@media (max-width: 767px) {
  .legalText {
    max-width: 1248px;
  }
}
/*#endregion*/
#enhanced_protection_title {
  margin-top: 30px;
  position: relative;
}

#enhanced_protection_title_price {
  position: absolute;
  right: 0;
  top: -6px;
}

#enhanced_protection_text {
  margin-left: 80px;
}

.enhanced_protection_text_row {
  position: relative;
  margin-bottom: 5px;
  /*img {
      height: 20px;
      position: absolute;
      left: -40px;
      top: -5px;
  }*/
}

.enhanced_protection_text_detail {
  font-size: 0.8em;
  color: rgb(237, 177, 18);
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}
.enhanced_protection_text_detail img {
  margin-left: 5px;
}

.enhanced_protection_text_detail_text {
  margin-top: 10px;
  font-size: 0.8em;
}

#enhanced_protection_buttons {
  text-align: center;
  margin-top: 30px;
  /*padding-bottom: 40px;*/
}
#enhanced_protection_buttons .button {
  width: 200px;
  font-weight: bold;
  margin: 5px;
}

#payment {
  max-width: 500px;
  margin: auto;
  margin-top: 40px;
  /*padding-bottom: 30px;*/
}
#payment .button {
  width: 200px;
  font-weight: bold;
  margin: 5px;
}

#payment_checkbox_name {
  font-size: 14px;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 5px;
}

.checkmark_consentimientos {
  position: absolute;
  top: -2px;
  left: 0;
  height: 8px;
  width: 8px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
}

.container_consentimientos {
  display: inline-block;
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-right: 3px !important;
}

.container .checkmark_consentimientos:after {
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid #c0c0c0;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

#city_column .column2_left {
  right: 30%;
}
#city_column .column2_right {
  left: 70%;
}

#register_and_pay {
  margin-top: 30px;
  /*margin-bottom: 60px;*/
}

#footer {
  background-color: rgb(102, 102, 102);
  text-align: center;
  width: 100%;
  position: relative;
  bottom: 0;
}
#footer a:hover {
  text-decoration: underline;
}

#footer_social {
  padding-top: 20px;
}

.footer_social_item {
  display: inline-block;
  margin: 15px;
  margin-bottom: 0px;
}
.footer_social_item img {
  height: 50px;
}

#footer_logo {
  margin-top: 30px;
  margin-bottom: 30px;
}

#footer_trademark {
  max-width: 550px;
  color: #fff;
  display: inline-block;
}
#footer_trademark a {
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
}

#footer_links {
  margin-top: 30px;
  color: white;
  font-weight: bold;
  padding-bottom: 90px;
}
#footer_links a {
  color: rgb(237, 177, 18);
  margin-left: 5px;
  margin-right: 5px;
}

.width_50 {
  width: 49%;
  position: relative;
  display: inline-block;
}

.width_25 {
  width: 23%;
  position: relative;
  display: inline-block;
}

#enhanced_protection_yes {
  width: 100%;
}

#good_news {
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 600px;
  display: inline-block;
  border-radius: 3px;
  max-width: 90%;
  text-align: center;
  padding: 30px;
  padding-bottom: 0;
}
#good_news #enhanced_protection {
  padding-bottom: 0;
  /*max-width: 420px;*/
}

#good_news.hidden {
  top: 40%;
  display: inline-block !important;
  pointer-events: none;
  opacity: 0;
}

#good_news_title {
  margin-bottom: 50px;
  font-weight: 600;
}

#good_news_title_1 {
  font-size: 35px;
  color: rgb(237, 177, 18);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: bold;
}

#good_news_title_2 {
  margin-left: 20px;
  font-size: 25px;
  display: inline-block;
  max-width: 260px;
  vertical-align: middle;
  position: relative;
}
#good_news_title_2 b {
  font-weight: bold;
}
#good_news_title_2 img {
  position: absolute;
  opacity: 0.5;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

#call_completed {
  width: 600px !important;
  margin: auto;
  border: 1px solid #b5b1b1;
  border-radius: 30px;
}

.link_terminos {
  color: rgb(237, 177, 18) !important;
}

hr {
  border-top: 1px solid rgb(237, 177, 18);
}

#call_completed_polize {
  width: 800px !important;
  margin: auto;
  border: 1px solid #b5b1b1;
  border-radius: 30px;
  margin-top: 35px !important;
}

.buttonModalConfirmacion {
  background: rgb(237, 177, 18);
  display: inline-block;
  border-radius: 8px;
  font-weight: normal;
  cursor: pointer;
  color: #fff;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.black_link:link {
  color: #4d4f53;
}

.black_link:visited {
  color: #4d4f53;
}

.black_link:hover {
  color: #4d4f53;
}

.black_link:active {
  color: blue;
}

.text_button_popup2 {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid;
  text-decoration: underline;
  background-color: inherit;
  border: 0px;
  color: rgb(77, 79, 83);
}

#ModalConfirmacionRegistro {
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 600px;
  display: inline-block;
  border-radius: 3px;
  max-width: 90%;
  text-align: center;
  padding: 0px;
}
#ModalConfirmacionRegistro #enhanced_protection {
  padding-bottom: 0;
  max-width: 500px;
}

.td_2_coberturas {
  width: 100% !important;
  padding-left: 40px !important;
  font-size: 16px;
}

.tr_coberturas {
  height: 50px !important;
}

#div_titulo_1_ModalConfirmacionRegistro {
  padding-bottom: 13px;
}

#background_corporativo {
  background-color: rgb(237, 177, 18);
}

.corporative_color {
  color: rgb(237, 177, 18);
}

#div_titulo_1_ModalConfirmacionRegistro_1_heading {
  padding-top: 15px;
  padding-left: 8px;
  padding-right: 8px;
  color: rgb(237, 177, 18);
  font-weight: 600;
  font-size: 20px !important;
}

#ModalConfirmacionRegistro.hidden {
  top: 40%;
  display: inline-block !important;
  pointer-events: none;
  opacity: 0;
}

#enhanced_protection_yes {
  width: 100%;
}

#ModalConfirmacionRegistro_title {
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

#ModalConfirmacionRegistro_title_1 {
  font-size: 35px;
  color: rgb(237, 177, 18);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: bold;
}

#ModalConfirmacionRegistro_title_2 {
  margin-left: 20px;
  font-size: 25px;
  display: inline-block;
  max-width: 260px;
  vertical-align: middle;
  position: relative;
}
#ModalConfirmacionRegistro_title_2 b {
  font-weight: bold;
}
#ModalConfirmacionRegistro_title_2 img {
  position: absolute;
  opacity: 0.5;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

#thankyou {
  font-weight: 900;
  font-size: 50px;
  color: rgb(237, 177, 18);
  padding-top: 160px;
  padding-bottom: 200px;
}

.footer_thankyou {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.content_thankyou {
  position: relative;
  min-height: 950px;
}

#header_register_bandera {
  right: 113px;
  font-size: 18px !important;
  cursor: pointer;
  top: 49%;
  height: 30px;
}

#header_register_pais {
  top: 61%;
  font-weight: 550;
  cursor: pointer;
  width: 150px !important;
  text-align: right;
  position: absolute;
  top: 51%;
  right: 177px;
  transform: translateY(-50%);
  height: 30px;
  color: rgb(77, 79, 83);
  font-size: 16px;
  border: 0px;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5%;
}

@media all and (max-width: 1500px) {
  .divTermsCookies {
    min-height: 190px !important;
  }
}
.textOneColumn {
  width: 70%;
  margin-left: 12%;
}

@media all and (max-width: 835px) {
  .column2 {
    max-width: 100%;
  }
  #register_customer_data {
    max-width: 100%;
  }
  .textOneColumn {
    width: 100%;
    margin-left: 0%;
  }
  #call_completed {
    width: 330px !important;
    margin: auto;
    border: 1px solid #b5b1b1;
    border-radius: 30px;
  }
  #call_completed_polize {
    width: 90% !important;
    margin: auto;
    border: 1px solid #b5b1b1;
    border-radius: 30px;
  }
  #enhanced_protection_title_text {
    font-size: 13px;
  }
  .divTermsCookies {
    min-height: 210px !important;
  }
  .divTermsCookies .inner {
    padding-left: 0px;
    top: 5% !important;
    font-size: 10px !important;
  }
  #country_title_2 {
    font-size: 18px !important;
  }
  #main_register {
    width: 100%;
  }
  #main_register_input {
    width: 90%;
    display: block;
    margin: auto;
  }
  #register_title_1 {
    font-size: 22px;
  }
  #register_title_1 img {
    width: 40px;
  }
  #register_machine_logo {
    display: block;
    margin: auto;
    width: auto;
  }
  #register_machine_data {
    display: block;
    margin: auto;
    margin-top: 20px;
    width: auto;
  }
  #enhanced_protection {
    width: 95%;
  }
  #enhanced_protection_main {
    width: 95%;
  }
  #good_news_title_2 {
    font-size: 17px !important;
  }
  #enhanced_protection_text {
    margin-left: 27px !important;
  }
  #header_register_bandera {
    right: 156px;
    font-size: 18px !important;
    cursor: pointer;
  }
  #header_register_pais {
    display: none;
  }
  .enhanced_protection_text_row {
    font-size: 13px !important;
  }
  .enhanced_protection_text_row img {
    height: 20px;
    position: absolute;
    left: -27px;
    top: -5px;
  }
  #enhanced_protection_buttons .button {
    width: 150px;
  }
  #payment {
    width: 90%;
  }
  .button {
    font-size: 14px !important;
  }
  #payment_buttons .button {
    width: 150px;
  }
  #footer {
    padding-left: 5%;
    padding-right: 5%;
    margin: auto;
  }
  #footer a {
    display: block;
  }
  #good_news {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  #good_news #enhanced_protection {
    max-width: 95%;
  }
  .content_thankyou {
    position: relative;
    min-height: 1150px;
  }
}
@media all and (max-width: 360px) {
  #enhanced_protection_title_text {
    max-width: 350px;
  }
  #main_register_button {
    width: 90px;
  }
}
.texto_modal_confirmacion {
  font-size: 18px !important;
}

@media (max-width: 500px) {
  .column2_left_min {
    right: 70%;
  }
  .column2_right_max {
    left: 30%;
  }
  .chat-popup-btn-times {
    display: none;
  }
  .chat-popup-btn-phones {
    display: inline-block;
  }
  .chat-popup {
    display: none;
  }
  .select2-search__field {
    display: none !important;
  }
  .texto_modal_confirmacion {
    font-size: 12px !important;
  }
  #div_titulo_1_ModalConfirmacionRegistro_1_heading {
    padding-top: 8px !important;
    color: white;
    font-weight: 600;
    font-size: 14px !important;
  }
  .buttonModalConfirmacion {
    font-size: 14px;
  }
  #div_titulo_1_ModalConfirmacionRegistro {
    padding-bottom: 8px !important;
  }
  .td_2_coberturas {
    font-size: 12px;
  }
  .select2-container--bootstrap4 .select2-results > .select2-results__options {
    max-height: 150px !important;
  }
}
@media (max-width: 580px) {
  #vmap {
    width: 300px !important;
    height: 300px !important;
    display: inline-block;
  }
}
#vmap {
  width: 472px;
  height: 360px;
  display: inline-block;
}

@media all and (max-width: 835px) {
  .width_50 {
    width: 100%;
  }
  .width_25 {
    width: 100%;
  }
  #country_div {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  #country_div #country-content-map {
    max-width: 90%;
  }
  #country_div #country-list {
    max-width: 90%;
  }
  #country_div #language-list {
    max-width: 90%;
  }
}
.country-of-list {
  cursor: pointer;
  display: inline-block;
  margin-left: 5px !important;
  color: rgb(237, 177, 18);
}

.language-of-list {
  cursor: pointer;
  display: inline-block;
  margin-left: 5px !important;
  color: rgb(237, 177, 18);
}

.modalMovilOverflow {
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  overflow-x: hidden;
}

#language_div {
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 680px;
  display: inline-block;
  border-radius: 3px;
  max-width: 90%;
  text-align: center;
  padding: 30px;
  padding-bottom: 0;
}
#language_div #language-list {
  margin-top: 5px !important;
  /* margin-left: 104px !important; */
  padding-bottom: 0;
  height: 19px !important;
  width: 472px !important;
  display: inline-block;
}
#language_div #country-content-map {
  margin-top: 7px !important;
  /* margin-left: 104px !important; */
  padding-bottom: 0;
  height: 400px !important;
  width: 472px !important;
  display: inline-block;
}
#language_div .button {
  width: 180px;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 305px;
  overflow-y: auto;
}

.flag_country {
  height: 18px !important;
  vertical-align: middle;
}

.list_of_country {
  text-align: left;
  height: 20px !important;
  cursor: pointer;
  margin-top: 10px !important;
  text-decoration: none;
}

.country_name {
  color: #4d4f53;
  border-bottom: 1px solid;
}

#country_div {
  z-index: 101;
  position: fixed;
  background: #fff;
  display: inline-block;
  max-width: 90%;
  text-align: center;
  padding: 30px;
  padding-bottom: 0;
  float: right;
  width: 296px;
  padding: 10px;
  top: 0;
  right: 0;
  height: 100%;
}
#country_div #country-list {
  margin-top: 5px !important;
  /* margin-left: 104px !important; */
  padding-bottom: 0;
  height: 19px !important;
  width: 472px !important;
  display: inline-block;
}
#country_div #country-content-map {
  margin-top: 7px !important;
  /* margin-left: 104px !important; */
  padding-bottom: 0;
  height: 400px !important;
  width: 472px !important;
  display: inline-block;
}
#country_div .button {
  width: 180px;
}

#country.hidden {
  top: 40%;
  display: inline-block !important;
  pointer-events: none;
  opacity: 0;
}

#country_title {
  margin-top: 20px;
}

#country_title_1 {
  font-size: 35px;
  color: rgb(237, 177, 18);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: bold;
}

#country_title_2 {
  font-size: 25px;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  position: relative;
  font-weight: 100;
}
#country_title_2 b {
  font-weight: bold;
}
#country_title_2 img {
  position: absolute;
  opacity: 0.5;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

#language_title_2 {
  font-size: 25px;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  position: relative;
}
#language_title_2 b {
  font-weight: bold;
}
#language_title_2 img {
  position: absolute;
  opacity: 0.5;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

#loading-wrapper {
  background-color: #000;
  opacity: 0.5;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}

#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #999;
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 20px;
}

#loading-content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}
#loading-content:before {
  border: 3px solid transparent;
  border-top-color: rgb(237, 177, 18);
  border-bottom-color: rgb(237, 177, 18);
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}
#loading-content:after {
  border: 3px solid transparent;
  border-top-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

.ui-menu .ui-menu-item {
  margin: 0;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  cursor: pointer;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  font-family: "MyriadPro", sans-serif !important;
}

.ui-autocomplete {
  padding-right: 0px !important;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: 1px solid #ffffff !important;
  border-bottom: 1px solid rgb(237, 177, 18) !important;
  background: #ffffff !important;
  font-weight: normal;
  color: #2b2b2b;
}

#good_news.hidden,
#ModalConfirmacionRegistro.hidden,
.modalMovilOverflow.hidden {
  display: none !important;
  visibility: hidden !important; /* evita parpadeos si hay animación */
}
