@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');

* {
    padding: 0;
    margin: 0;
}

.body {
   background-color: #eee;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    color: #575757;

}

h2 {
    font-size: 40px;
    line-height: 42px;
    font-weight: normal;
    text-align: center;
}

p {
    text-align: center;
    font-size: 13px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.button_wrapper {
    display: flex;
    justify-content: center;
}

.button {
    background-color: #00bed6 !important;
    font-size: 16px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
}
#intro{
    text-align: center;
}
#intro >img{
    width: 30%;
}


.intro{
    text-align: center;
}
.intro >img{
    width: 70%;
}
#datos,
#categorias,  #marcas{
    flex-direction: column;
    align-items: center;
}


.container {
    max-width: 700px;
    width: 100%;
}

h4 {
    font-size: 24px;
    font-weight: normal;
}

.text {
    font-size: 15px;
    font-weight: normal;
    text-align: left;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 5px 0px 10px;
}

input {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    border: 0;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    color: #575757;
    margin-top: 5px;
    font-size: 14px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;

}

select {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    border: 0;
    padding: 10px 5px;
    width: 100%;
    border-radius: 10px;
    color: #575757;
    margin-top: 5px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

option {
    color: black;
}


.select_option {
    width: 32%;
}

input::placeholder {
    color: #575757;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.input {
    width: 47%;
    padding-bottom: 10px;
}

.checkbox {
    background-color: rgba(255, 255, 255, 0.3);
    border: 0;
    padding: 10px 5px;
    width: 100%;
    border-radius: 10px;
    color: #575757;
    margin-top: 10px;
}

.checkbox > label{
    font-size: 14px;
}

.checkbox:hover{
    background-color: #00bed6;
    color: rgb(92, 92, 92);
    cursor: pointer;
}

.checkbox input:checked  {
    background-color: #002B4E;
  }

.checkboxes{
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

label{
    padding: 20px;
}

.checkbox_group{
    width: 47%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.checkbox_group_marcas{
    width: 31%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.check_bttn{
    align-items: center;
    justify-content: center;
    align-items: center;
}


.checkboxes_marcas{
    width: 87%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}


button{
    border: 0;
    color: #575757;
    width: 250px ;
    background-color: #575757;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
}



@media screen and (max-width: 700px) {
    .flex{
        flex-direction: column;
    }

    .input{
        width: 80%;
        flex-direction: row;
    }

    .container{
        width: 85%;
    }
    
    .checkboxes, .checkboxes_marcas{
        flex-direction: column;
        width: 100%;
    }


    .checkbox_group, .checkbox_group_marcas{
        width: 94%;
    }
}