@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-Light.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-LightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../fonts/Gotham/Gotham-Black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #FFCD00;
  --secondary-pink: #DA1884;
  --secondary-green: #08A800;
  --text: #000000;
  --black: #000000;
  --hover-green: #078A00;
  --grey-background: #FAFAFA;
  --grey-light:#D9D9D9;
  --grey-regular:#868686;
  --grey-dark: #333333;
  --danger: #C00202;
}

html{margin: 0; background-color: var(--black); scroll-behavior: smooth;}
body{margin: 0;font-family: Gotham, Arial, Helvetica, sans-serif; color: var(--text); background-color: var(--grey-background);}
button:focus, button:focus-visible, button:focus-within, button:active {outline:none!important;box-shadow: none!important;}
img {user-drag: none; user-select: none;-moz-user-select: none;-webkit-user-drag: none;-webkit-user-select: none;-ms-user-select: none;}
label:has(.badInput) {color: var(--danger) !important;}
.badInput {border: 1px solid var(--danger) !important;color: var(--black) !important;}
.badInput:focus-visible {border: 1px solid var(--danger) !important;}
.badInput::placeholder {color: var(--black) !important;}
.badInput + .placeholder {color: var(--black) !important;}

a{color: inherit!important;}
a:hover{text-decoration: none;}
p{margin-bottom: 0;}
ul {list-style: none;padding: 0;margin: 0;}
.terminos a {text-decoration: underline!important;}
section:not(.modal-form){padding: 2.5rem 0;}
section h2 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}
.modal-open{overflow: hidden!important;}
.modal {overflow-x: hidden;overflow-y: auto;}
input[type="text"]::placeholder, input[type="tel"]::placeholder, input[type="email"]::placeholder {
  color: var(--black);
}

/* IMAGENES */

.img{background-repeat: no-repeat;background-position: center;background-size: contain;}

.img-logo {background-image: url("../../img/logo.svg");}
.img-telefono {background-image: url("../../img/components/telefono.svg");}

/* Hide the browser's default checkbox */
.checkbox {
  position: relative;
  padding-left: 25px;
  text-align: left;
  width: fit-content;
}

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

.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  transition: background-color 0.1s;
}

.checkbox:hover input ~ .checkmark {background-color: var(--grey-background);}

.checkbox input:checked ~ .checkmark {
  background-color: var(--secondary-pink);
  border: 1px solid var(--secondary-pink);
}

.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

.checkbox .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* COMPONENTES - BOTONES */

.btn_jazztel {
  background-color: var(--primary);
  border-radius: 4px;
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  min-width: 130px;
  min-height: 42px;
  padding: 12px 16px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn_jazztel:hover,
.btn_jazztel:active {
  background-color: var(--black);
  color: #FFFFFF;
}

.btn_jazztel.disabled {
  background-color: var(--grey-light);
  color: var(--grey-regular);
  cursor: default;
}

.btn_jazztel_secondary {
  background-color: var(--secondary-green);
  border-radius: 4px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  min-width: 130px;
  min-height: 42px;
  padding: 12px 16px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn_jazztel_secondary:hover,
.btn_jazztel_secondary:active {
  background-color: var(--hover-green);
}

.btn_jazztel_secondary.disabled {
  background-color: var(--grey-light);
  color: var(--grey-regular);
  cursor: default;
}

.btn_jazztel_optional {
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid var(--black);
  font-weight: 700;
  color: var(--black);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  min-width: 130px;
  min-height: 42px;
  padding: 12px 16px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn_jazztel_optional:hover,
.btn_jazztel_optional:active {
  background-color: var(--black);
  color: #FFFFFF;
}

.btn_jazztel_optional.disabled {
  background-color: transparent;
  color: var(--grey-light);
  border: 1px solid var(--grey-light);
  cursor: default;
}

.btn_jazztel_img {
  background-color: var(--secondary-green);
  border-radius: 4px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  min-width: 130px;
  min-height: 42px;
  padding: 12px 16px;
  transition: 0.2s;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn_jazztel_img:hover,
.btn_jazztel_img:active {
  background-color: var(--hover-green);
}

.btn_jazztel_img.disabled {
  background-color: var(--grey-light);
  color: var(--grey-regular);
  cursor: default;
}

.btn_jazztel_img.disabled .img {
  -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(1125%) hue-rotate(169deg) brightness(100%) contrast(96%);
  -moz-filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(1125%) hue-rotate(169deg) brightness(100%) contrast(96%);
  -o-filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(1125%) hue-rotate(169deg) brightness(100%) contrast(96%);
  -ms-filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(1125%) hue-rotate(169deg) brightness(100%) contrast(96%);
  filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(1125%) hue-rotate(169deg) brightness(100%) contrast(96%);
}

.btn_jazztel_img .img {
  width: 30px;
  height: 30px;
}


/* ------------- MODAL ------------- */

.modal-form .contentModal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: unset;
  width: unset;
  position: unset;
  transform: unset;
  margin: 50px auto 25px auto;
}
.modal-form .contentModal.out-of-time {
  margin: 50px auto;
}

.modal-form .loadedFormJazztel {
  position: fixed;
  transform: translateX(-50%);
  left: 50%;
  top: 22%;
  width: 94%;
  min-width: 500px;
  min-height: 294px;
  background-color: rgba(255,255,255,1);
  text-align: center;
  border-radius: 4px;
  padding: 0;
  height: unset;
  max-width: 22rem;
  overflow: hidden;
}

.modal-form .closeBtn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 35px;
  cursor: pointer;
  z-index: 999;
  padding: 10px;
}

.modal-form .closeBtn .img {
  height: 15px;
  width: 15px;
  min-width: 15px;
  min-height: 15px;
}
.modal-form .closeBtn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 35px;
  cursor: pointer;
  z-index: 999;
  padding: 10px;
}
.img-cross {
  background-image: url(../../img/components/cross.svg);
}
.img-good {
  background-image: url(../../img/components/good.svg);
}
.img-error {
  background-image: url(../../img/components/error.svg);
}
.modal-form .loadedFormJazztel .form_pp {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modal-form .loadedFormJazztel .form_pp .fr-line1,
.modal-form .loadedFormJazztel .form_pp .fr-line2,
.modal-form .loadedFormJazztel .form_pp .atencion-llamada,
.modal-form .loadedFormJazztel .form_pp .fr-line4,
.modal-form .loadedFormJazztel .form_pp .fr-line3 {
  min-width: 90%!important;
  max-width: 90%!important;
  margin: auto;
}
.modal-form .loadedFormJazztel .form_pp .questi {
  min-width: 90%!important;
  max-width: 90%!important;
  padding: 0 15px;
  margin: auto;
  display: none;
}

.modal-form .loadedFormJazztel .form_pp .fr-line1 {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  font-size: 24px;
}
.modal-form .loadedFormJazztel .form_pp .fr-line2 {
  text-align: left;
}
.modal-form .loadedFormJazztel .form_pp .fr-line2 input{
  font-size: 14px;
  padding: 14px 8px;
  width: 100%;
}
.modal-form .loadedFormJazztel .form_pp .fr-line3 button {
  margin: auto;
  min-width: 100%;
}
.modal-form .loadedFormJazztel .form_pp .fr-line4 {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 0;
}
.modal-form .loadedFormJazztel .form_pp .terminos {
  font-size: 12px;
  width: fit-content;
  margin-bottom: 40px;
  margin-top: 16px;
}

.modal-form .loadedFormJazztel .form_pp .inputs-form-tel p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}

.modal-form .loadedFormJazztel .form_pp .checkbox {
  padding-left: 20px;
}

.modal-form .loadedFormJazztel .form_pp .checkbox .checkmark {
  top: 1px;
  height: 15px;
  width: 15px;
}

.modal-form .loadedFormJazztel .form_pp .checkbox .checkmark:after {
  left: 4px;
  top: 2px;
  width: 5px;
  height: 8px;
}

.modal-form .loadedFormJazztel .form_pp .atencion-llamada {
  padding-right: 15px;
  padding-left: 15px;
  text-align: left;
  margin-top: 15px;
}

.modal-form .loadedFormJazztel .form_pp .telefono-modal br{
  display: none;
}

.modal-form .fail-form_pp,
.modal-form .succes-form_pp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 210px;
  min-width: 90%!important;
  max-width: 90%!important;
  margin: auto;
  padding: 0 20px;
}

.modal-form .succes-form_pp .img {
  height: 25px;
  width: 25px;
  padding: 3px;
  border-radius: 50%;
  outline: 2px solid var(--secondary-green);
  margin-bottom: 15px;
  background-size: 50%;
}

.modal-form .fail-form_pp .img {
  height: 25px;
  width: 25px;
  padding: 3px;
  border-radius: 50%;
  outline: 2px solid var(--danger);
  margin-bottom: 15px;
  background-size: 50%;
}

.modal-form .succes-form_pp p.title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
  color: var(--secondary-green);
}
.modal-form .fail-form_pp p.title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
  color: var(--danger);
}

.modal p {
  line-height: 2;
}

.modal-form .loadedFormJazztel .form_pp .telefono-modal {
  min-width: 90% !important;
  max-width: 90% !important;
  margin: auto;
  text-align: left;
  font-size: 20px;
}

.modal-form .loadedFormJazztel .form_pp .telefono-modal p span {
  color: var(--secondary-green) !important;
  font-size: 28px;
  font-weight: 700;
}

.modal-form .loadedFormJazztel .form_pp .telefono-modal br {
  display: none;
}

.modal-form .loadedFormJazztel .form_pp .llamamos-modal {
  min-width: 90% !important;
  max-width: 90% !important;
  margin: auto;
  text-align: left;
  margin-bottom: 10px;
  font-size: 18px;
}

/* ------------- FIN MODAL ------------- */


.btn-bottom-menu {
  background-color: var(--secondary-green);
  border-radius: 4px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  min-width: 130px;
  min-height: 42px;
  padding: 12px 16px;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

/* ------------- NAVBAR ------------- */

header{
  background-color: var(--grey-background);
  width: 100%;
  position: fixed;
  z-index: 400;
  top: 0;
}

header .first{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: var(--grey-background);
  height: 100%;
  border-bottom: 1px solid #e3e3e3;
  min-height: 89px;
  display: flex;
  align-items: center;
}

header .first.mobile {
  justify-content: space-around;
}

header .container, header .row{
  justify-content: space-between;
  height: unset;
}

header>.first>.container>.row>div{
  display: flex;
  align-items: center;
}

header .telefonos {
  justify-content: flex-end;
}

header .img-logo{
  cursor: pointer;
  width: 154px;
  height: 53px;
}

header .phone {
  padding: 15px 0;
  text-align: right;
  margin-left: 40px;
}

header .phone a {
  display: block;
}

header .phone span {
  font-size: 30px;
  display: block;
  text-align: right;
  line-height: normal;
  color: var(--secondary-pink);
  white-space: nowrap;
  font-weight: 700;
}

header .phone .phoneTitle {
  font-size: 16px;
  font-weight: 300;
  color:  #000;
  margin-bottom: 3px;
}

header .phone .phone-icon {
  display: none;
}

header .nav {
  position: absolute;
  width: 100%;
  top: 88px;
  transition: transform .5s;
  background-color: var(--grey-background);
  z-index: 1;
  border-bottom: 1px solid var(--grey-regular);
}
header .nav.hidden {
  transform: translateY(-75px);
}
header .nav .menuOptions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 25px;
  width: 100%;
  gap: 43px;
  font-weight: 600;
}

header .nav .menuOptions .link-container.active {
  color: var(--secondary-pink);
}

header .nav .menuOptions .btn-bottom-menu{
  display: none;
}

header .menuButton{
  display: none;
}


.subheader {
  height: 162px;
}


/* ------------- FIN NAVBAR ------------- */


/* ------------- CALCULADORA ------------- */

#calculadora{
  min-height: 85vh;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 80px 0;
}
#calculadora .cardForm{
  position: relative;
  min-height: 219px;
  height: auto;
  width: 898px;
  background-color: white;
  box-shadow: 0px 0px 16px #ccdae3;
  border-radius: 6px;
  margin: auto;
  margin-bottom: 40px;
  padding: 27px;
  overflow: hidden;
  display: flex;
}

#calculadora .cardForm.closed{
  position: relative;
  height: 96px;
  min-height: 0;
  padding-top: 29px;
  opacity: 40%;
}
#calculadora .cardForm.closed.display-none{
  display: none;
}
#calculadora .cardForm.closed > .rightCard > div:nth-of-type(2){
  margin-top: 1rem;
}

#calculadora .cardForm .checkCompleted{
  background-color: var(--secondary-green);
  height: 35px;
  width: 35px;
  color: white;
  border-radius: 100%;
  position: absolute;
  right: -5rem;  
  top: 29px;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#calculadora .cardForm .checkCompleted i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#calculadora .cardForm.completed .checkCompleted{
  right: 27px;
}
#calculadora .cardForm.completed{
  position: relative;
  height: 150px;
  min-height: 0;
  padding-top: 29px;
}
#calculadora .cardForm.completed > .rightCard > div:nth-of-type(2){
  margin-top: 7rem;
}
.editButton{
  position: absolute;
  bottom: 25px;
  width: 113px;
  height: 41px;
  background-color: white;
  border: 2px solid #000;
  font-weight: bold;
  color: #000;
  border-radius: 2px;
  left: -10rem;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.editButton:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #FFF;
}

.editButton:focus, .editButton:focus-visible{
  outline: none;
}
#calculadora .cardForm.completed .editButton{
  left: 8%;
}

#calculadora .titlePage{
  text-align: center;
  max-width: 65rem;
  margin: auto;
}
#calculadora .titlePage h1{
  font-weight: bold;
  font-size: 44px;
  margin-bottom: 5px;
}
#calculadora .titlePage .highlight{
  color: var(--secondary-pink);
}
#calculadora .titlePage p{
  font-size: 22px;
  margin-bottom: 54px;
}
#calculadora .cardForm .headCard{
  display: flex;
  min-height: 57px;
  width: 100%;
}
#calculadora .cardForm .leftCard .number{
  margin-right: 27px;
  color: var(--text);
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
}
#calculadora .cardForm .rightCard{
  width: 100%;
}
#calculadora .cardForm .headCard .title{
  color: var(--text);
  font-size: 29px;
}
#calculadora .cardForm .inputsCard{
  transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
}
#calculadora .questi {
  padding: 1rem 0;
}

#calculadora .questi select{
  text-align: center;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  width: 233px;
  height: 38px;
  margin-bottom: 9px;
  margin-top: 15px;
}

#calculadora .questi select:focus-visible{
  outline: none;
}

#calculadora .questi input {
  width: 13px !important;
  height: 13px !important;
  margin-right: 5px !important;
  margin-bottom: 0px !important;
}

#calculadora .questi label {
  margin-right: 20px !important;
  margin-bottom: 0 !important;
}
.cardForm1 .questi label{
  position: relative;
}
.cardForm1 .questi input[type = radio]{
  opacity: 0;
}
.cardForm1 .questi label::before{
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
  border: 1px solid var(--grey-light);
  border-radius: 100%;
}

.cardForm1 .questi label.active::before{
  border: 1px solid var(--secondary-pink);
}

.cardForm1 .questi label.active::after{
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  left: 0;
  top: 50%;
  transform: translate(43.5%, -55%);
  border-radius: 100%;
  background-color: var(--secondary-pink);
}

#calculadora .cardForm .inputsCard .terminos{
  font-size: 16px;
  width: 80%;
  margin-top: 20px;
}
#calculadora .cardForm .inputsCard .terminos a{
  text-decoration: underline!important;
  cursor: pointer;
}
#calculadora .cardForm .inputsCard input{
  text-align: center;
  border: 1px solid var(--grey-light);
  padding: 15px 8px;
  border-radius: 2px;
  width: 233px;
  height: 38px;
  margin-right: 23px;
  margin-bottom: 9px;
}
#calculadora .cardForm .inputsCard .input-check{
  width: unset;
  height: unset;
  margin: 0;
}
#calculadora .cardForm .inputsCard input:focus, #calculadora .cardForm .inputsCard input:focus-visible{
  outline: none;
}
#calculadora .cardForm .inputsCard .oblig{
  font-size: 15px;
  margin-bottom: 10px;
}
#calculadora .cardForm .buttonCard{
  margin-top: 28px;
  text-align: right;
}
#calculadora .cardForm .buttonCard button{
  background-color: var(--secondary-green);
  border-radius: 4px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  min-width: 130px;
  min-height: 42px;
  padding: 12px 16px;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}
#calculadora .cardForm .buttonCard button:hover{
  background-color: var(--hover-green);
}

#calculadora .cardForm .buttonCard button:focus, #calculadora .cardForm .buttonCard button:focus-visible{
  outline: none;
}

#calculadora .cardForm .buttonCard button.disable{
  background-color: #E5E5E5;
  pointer-events: none;
}

#calculadora .cardForm .selectionCard{
  display: flex;
  margin-top: 10px;
}
#calculadora .cardForm .selectionCard.tvSelection{
  flex-direction: column;
}
#calculadora .cardForm .selectionCard input{
  position: absolute;
  opacity: 0;
}
#calculadora .cardForm .selectionCard input:checked + label{
  background-color: var(--primary);  
}
#calculadora .cardForm .selectionCard input:checked:hover + label{
  background-color: var(--primary);  
}
#calculadora .cardForm .selectionCard input:checked + label p{
  color: #000;
}
#calculadora .cardForm .selectionCard input:checked + label i{
  color: #000 !important;
}

#calculadora .cardForm .selectionCard input:checked + label img{
  -webkit-filter: brightness(0);
   filter: brightness(0);
}

#calculadora .cardForm .selectionCard .optionCard{
  cursor: pointer;
  width: 146px;
  height: 114px;
  text-align: center;
  box-shadow: 0px 0px 10px #ccdae373;
  background-color: white;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 41px;
  position: relative;
  
  transition: .2s;
  -o-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#calculadora .cardForm .selectionCard .optionCard:hover{
  background-color: #fffae4;
}
#calculadora .cardForm .selectionCard .optionCard.adicionales {
  width: 100px;
  height: 100px;
  margin-right: 25px;
}
#calculadora .cardForm .selectionCard .optionCard.television {
  width: fit-content;
  height: 100%;
  padding: 15px;
  flex-direction: row;
  justify-content: start;
}
#calculadora .cardForm .selectionCard .optionCard.television:nth-of-type(1) {
  margin-bottom: 2rem;
}
#calculadora .cardForm .selectionCard .optionCard.television p {
  margin-bottom: 0;
  margin-right: 15px;
  text-align: left;
  min-width: 115px;
}

#calculadora .cardForm .selectionCard .optionCard.television img {
  margin: 0 15px;
}

#calculadora .cardForm .selectionCard .optionCard.television .titleContainer {
  display: flex;
  align-items: center;
}

#calculadora .cardForm .selectionCard input:checked + .optionCard.television .checkTV{
  background-color: var(--primary)!important;
  border: 6px solid white!important; 
}

#calculadora .cardForm .selectionCard .optionCard.television .checkTV {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: white;
  margin: 20px;
  border: 3px solid var(--primary);
}

#calculadora .cardForm .selectionCard .optionCard.television:hover .checkTV {
  background-color: #f5f8f7;
  border: 6px solid var(--primary);
}

#calculadora .cardForm .selectionCard .optionCard.television .tvListContainer {
  display: flex;
}

#calculadora .cardForm .selectionCard .optionCard.television .tvList {
  text-align: left;
  margin: 0 15px;
  min-width: 200px;
}
#calculadora .cardForm .selectionCard .optionCard.television .tvList p{
  font-size: 16px;
  margin-right: 0;
}
#calculadora .cardForm .selectionCard .optionCard.television .tvList .fa-times {
  color: var(--rojo);
  margin-right: 10px;
}
#calculadora .cardForm .selectionCard .optionCard.television .tvList .fa-check {
  color: var(--primary);
  margin-right: 5px;
}
#calculadora .cardForm .selectionCard .optionCard.disable{
  background-color: #E5E5E5;
  pointer-events: none;
  color: #fff;
}

#calculadora .cardForm .selectionCard .optionCard.disable img{
  -webkit-filter: brightness(100);
   filter: brightness(100);
}

#calculadora .cardForm .selectionCard .optionCard.adicionales .nameOption.movil{
  font-size: 40px;
}
#calculadora .cardForm .selectionCard .optionCard img{
  height: 46px;
  width: auto;
}
#calculadora .cardForm .selectionCard .optionCard .imgMovil{
  height: 20px;
}
#calculadora .cardForm .selectionCard .optionCard .nameOption{
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

#calculadora .cardForm .selectionCard .optionCard .nameOption.movil{
  margin-bottom: 0;
}

#calculadora .cardForm .finTitle{
  font-weight: bold;
  color: var(--verde-main);
  font-size: 30px;
  margin-top: -5px;
  margin-bottom: 15px;
}
#calculadora .cardForm .finText{
  font-size: 20px;
}

.redComplete{
  display: none;
}

.redComplete2{
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 10px;
}

#calculadora .selectionCard.movil-movil .añadirLineas {
  display: flex;
  align-items: baseline;
}

#calculadora .selectionCard.movil-movil #lineas {
  font-size: 30px;
  width: 40px;
  text-align: center;
}

#calculadora .selectionCard.movil-movil .añadirLineas input#add,
#calculadora .selectionCard.movil-movil .añadirLineas input#del {
  border-radius: 5px;
  box-shadow: 0px 0px 10px #CCDAE373;
  border: none;
  background-color: white;
  color: black;
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 0;
  font-weight: 700;
  font-size: 35px;
  transition: .2s;
  position: unset;
  opacity: 1;
}

#calculadora .selectionCard.movil-movil .añadirLineas input#add.disable,
#calculadora .selectionCard.movil-movil .añadirLineas input#del.disable {
  background-color: #E5E5E5;
  pointer-events: none;
  color: #fff;
}

#calculadora .cardForm9 .spinning {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  color: var(--rosa-main);
}

#calculadora .cardForm9 .justText {
  display: none;
}

/* ------------- FIN CALCULADORA ------------- */

/* ------------- FOOTER ------------- */

footer{
  background-color: var(--black) ;
  width: 100%;
  height: 175px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}

footer .footerContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footerContainer .modalsFooter{
  display: flex;
  justify-content: start;
  align-items: center;
  gap:55px;
}
footer .footerContainer a:hover{
  text-decoration: underline!important;
}

footer .footerContainer .img-logo{
  width: 154px;
  height: 53px;
}

/* ------------- FIN FOOTER ------------- */

/**************************************************/
/* HORARIO ATENCION FUERA DE HORARIO*/
/**************************************************/

select:hover, select:focus, select:focus-visible, select:focus-within {
  box-shadow: none !important;
  outline: none;
  border-color: #1d293f;
}

.select-css {
  border: 1px solid #1d293f;
  color: #1d293f;
  font-size: 13px;
  border-radius: 6px;
  height: 30px;
  padding-left: 5px;
  padding: unset;
  -webkit-appearance: auto;
  appearance: auto;
  background-image: none;
}

.select-css:hover, .select-css:active, .select-css:focus{
  border-color: #1d293f;
}

.atencion-llamada {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  display: none;
  width: 100%;
}

.llamadme {
  font-size: 13px;
  display: inline-block;
  white-space: nowrap;
  color: var(--text);
  font-weight: 400;
  padding-right: 5px;
}

.input-show {
  display: inline-block !important;
  color: var(--text);
}


/*********************************/
