.topsearch {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid #E9E9E9;
    background-color: #121212;
    color: #fff;
}

.topsearch .container--1 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.topsearch__left {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.topsearch__total {
    width: 100%;
	text-align:left;
}

.topsearch__total span {
    font-weight: bold;
}

.topsearch__right {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.topsearch__buscar {
    position: relative;
    display: flex;
    align-items: center;
}

.topsearch__buscar input {
    padding: 8px 40px 8px 16px;
    border: 1px solid #E9E9E9;
    border-radius: 2px;
    width: 200px;
    background-color: #121212;
    outline: none;
    color: #fff;
}

.topsearch__buscar input::placeholder {
    color: #fff;
}

.topsearch__buscar button {
    position: absolute;
    right: 10px;
    font-size: 16px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    outline: none;
    top: calc(50% - 14px);
}
/* END TOPSEARCH */

/* INTERNA CONTENT */
.interna__content {
    padding: 60px 0;
	display: flex;
}
/* END INTERNA CONTENT */

@media (max-width: 1600px) {
    .topsearch .container--1 {
        padding-right: unset;
    }
}

@media (max-width: 1024px) {
    .topsearch .container--1 {
        flex-flow: row wrap;
        justify-content: center;
    }

    .topsearch__left {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .topsearch__tag {
        margin: 0 40px;
    }
}

@media (max-width: 720px) {
    .topsearch__left h1 {
        text-align: center;
        width: 100%;
    }

    .topsearch__separator {
        display: none;
    }

    .topsearch__buscar, .topsearch__buscar input {
        width: 100%;

    }
}
