@font-face {
    font-family: 'PadelProShop';
    src: url('../fonts/Haffer-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PadelProShop';
    src: url('../fonts/Haffer-RegularItalic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'PadelProShop';
    src: url('../fonts/Haffer-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

html {
    font-size: 14px;
    font-family: "PadelProShop",sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "PadelProShop", Arial;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.overlay {
    position: fixed; /* Fixed position to cover all the content */
    top: 0;
    left: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    z-index: 1050; /* High z-index to overlay on top of other content */
}

input {
    display: flex;
    font-family: 'Barlow' !important;
    border: 0;
    padding: 11px 8px !important;
    margin: 0;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    background-color: #e6e6e6;
    width: 100%;
    border-bottom: 0px solid #818A96;
    border-radius: 20px;

}
input:focus{
    outline:none;
}

/* styles.css */
.upload-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 5px dashed black;
    border-radius:5px;
    cursor: pointer;
    margin:10px;
    text-transform: uppercase;
    font-weight:bold;
}

.image-container img {
    width: 100px; /* Ajusta el tamaño de la imagen según necesites */
}

.text-container {
    flex-grow: 1;
    padding-left: 20px; /* Espacio entre la imagen y el texto */
}

#file-upload {
    display: none;
}

h1{
    color:#2940e8;
    font-weight:bold;
}

.btn-primary{
   background-color:black;
   border-color:black !important;
}

.btn-primary:hover{
    background-color:white;
    color:black !important;
}
.btn {
    min-width: 200px;
    text-align: left;
    border-radius: 20px;
    display: inline-flex;
    align-items: center; /* Centra el texto y el icono verticalmente */
    justify-content: space-between; /* Alinea el texto a la izquierda y el icono al extremo derecho */
    width: auto; /* O especifica un ancho según tu diseño */
    font-size:18px;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 20px; /* Ancho del SVG */
    height: 20px; /* Alto del SVG */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="white" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z"/></svg>');
    background-size: 20px 20px; /* Ajusta el tamaño del SVG a tus necesidades */
    margin-left: 5px; /* Espacio entre el texto y el icono */
    color:white !important;
}

table tr{
    margin:5px !important;
    background-color: #e6e6e6 !important; 
    border-color:white !important ;
    border: 3px !important;
}
table tr td:first-child{
    border-radius:20px 0px 0px 20px !important;
}
    table tr td:last-child {
        border-radius: 0px 20px 20px 0px !important;
    }

    table tr th{
        background-color: white !important;
    }
    table tr td{
        margin: 5px !important;

    }
.table > :not(caption) > * > * {
    border-bottom-width: 4px !important;
    border-color: white !important;
}
    table input{
        width: auto;
        margin-left:5px;
    }
.table > thead {
    border-bottom: 3px solid white !important;
}
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: white;
}

textarea {
    background-color: #e6e6e6 !important;
    margin:10px;
    border-radius:20px !important;
}


footer p {
    margin-left: 15px;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    background-color: #0033FF;
    color: white;
    padding: 40px 0;
    margin-top: auto; /* Ensure footer is at the bottom */
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-section, .newsletter-section {
    flex: 1;
    margin: 20px;
    min-width: 200px;
}

    .footer-section h4, .newsletter-section h4 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

        .footer-section ul li {
            margin: 5px 0;
        }

            .footer-section ul li a, .footer-section a, .newsletter-section a {
                color: white !important;
                text-decoration: none;
            }


                .footer-section ul li a:hover, .newsletter-section a:hover {
                    text-decoration: underline;
                }

.newsletter-form {
    display: flex;
    align-items: center;
}

    .newsletter-form input {
        padding: 10px;
        border: none;
        border-radius: 4px 0 0 4px;
        flex: 1;
    }

    .newsletter-form button {
        padding: 10px;
        border: none;
        background-color: black;
        color: white;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
    }

.privacy-policy {
    margin-top: 10px;
}

    .privacy-policy input {
        margin-right: 10px;
    }

.social-media a {
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

    .social-media a:hover {
        text-decoration: underline;
    }

.img-processed {
    max-height: 100vh;
    max-width: 100%;
}
.container-processed{
    width: 100%;
    text-align:center;
}
.fullscreen-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}  
