@font-face {
    font-family: 'Outfit';
    src: url('/Outfit/static/fonts/Outfit-Regular.ttf') format('truetype');
}

* {
    font-family: 'Outfit', sans-serif;
}

/* Custom css for the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0 auto;
    max-width: 1200px;
    pointer-events: none;
    top: 10%;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.40);
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.close {
    padding: 1rem;
    margin: -5rem 0rem -1rem auto;
    position: absolute;
    right: 0;
    border: 0;
    font-size: 30px;
    cursor: pointer;
    background: transparent;
}

.modal-body {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex: 1 1 auto;
}

.modal-body > div {
    padding: 1rem;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
}

.btn {
    margin: 0.5rem;
}

#productDescription {
    background-image: url('/bgbuenvi.png');
    background-repeat: repeat;
    background-size: auto;
}

#productCalculate {
    background: #016450;
    padding: 5rem 3rem;
    background-image: url('/bg-form.png');
    background-repeat: no-repeat;
    background-size: cover;
}

label {
    font-size: 16px;
    color: #FFF;
}


input[type="text"], input[type="tel"], input[type="email"], input[type="password"], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 15px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.price-details {
    display: flex;
    flex-direction: column;
}

.price-details span {
    font-size: 40px;
    font-weight: 600;
    margin: 15px 0px;
    color: #FFF;
}

.btn-submit {
    background-color: #4CAF50; /* Green background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 15px 32px; /* Some padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make the button inline-block */
    font-size: 16px; /* Increase font size */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 12px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for background color */
    width: 100%;
}

.btn-submit:hover {
    background-color: #45a049; /* Darker green on hover */
}

.btn-submit:active {
    background-color: #3e8e41; /* Even darker green when clicked */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

svg g path:hover {
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-check {
    margin: 1rem 0px;
}

#generatePdfButton {
    background-color: #4CAF50; /* Green background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 15px 32px; /* Some padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make the button inline-block */
    font-size: 16px; /* Increase font size */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 12px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    width: 100%;
    max-width: 1200px;
}

.svg-container svg {
    width: 100%;
    height: auto;
}

.svg-container svg g rect {
   cursor: pointer;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 20%;
}

.row .col-md-4 {
    width: 30%;
    margin: 1rem 0;
}

.border-radius {
    border-radius: 12px;
}

.property-info {
    display: flex;
    flex-direction: row;
    align-items: start;
}

.property-info span {
    padding: 5px 10px;
    font-size: 14px;
    color: #000;
    background: #ffcc2c;
    border-radius: 15px;
    margin-right: 10px;
    font-weight: 600;
}

.extra-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
}

#generateCotizacion {
    background-color: #2ea9e0 !important; /* Blue background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 15px 32px; /* Some padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make the button inline-block */
    font-size: 16px; /* Increase font size */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 12px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

#generateCotizacion:hover {
    background-color: #2e8ab0; /* Darker blue on hover */
}

.w-65 {
    width: 65%;
}

.w-35 {
    width: 35%;
}

.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
  }
  
  /* Estilos del mensaje */
  .chat-message {
    background-color: #232f25;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    font-size: 14px;
    max-width: 250px;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }
  
  /* Emoji */
  .emoji {
    margin-right: 8px;
    font-size: 20px;
  }


/* Animación para el emoji */
@keyframes wave {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
  }
  
  /* Botón cerrar */
  .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
  }
  
  /* Estilos del avatar */
  .chat-avatar {
    position: relative;
  }
  
  .chat-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    animation: wave 3s infinite;
  }
  
  /* Estilo para el estado en línea */
  .online-status {
    width: 12px;
    height: 12px;
    background-color: #35d175;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
  }