/* font-size */
#CsvProductSearchPlugin .cpsp_form_input[type="text"],
#CsvProductSearchPlugin .cpsp_form_input[type="submit"],
#CsvProductSearchPlugin .cpsp_results-count,
#CsvProductSearchPlugin .cpsp_form-table table {
    font-size: 14px;
}

#CsvProductSearchPlugin .cpsp_form {
    display: flex;
    width: 100%;
}
#CsvProductSearchPlugin .cpsp_form p {
    margin: 0;
    padding: 0;
}
#CsvProductSearchPlugin .cpsp_form p:first-child {
    /*width: calc(100% - 120px);*/
    /*padding-right: 15px;*/
}
/*#CsvProductSearchPlugin .cpsp_form p:last-child {
    width: 120px;
}*/
#CsvProductSearchPlugin .cpsp_form_input[type="text"],
#CsvProductSearchPlugin .cpsp_form_input[type="submit"] {
    /*width: 100%;*/
    min-height: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
}
#CsvProductSearchPlugin .cpsp_form_input[type="text"],
#CsvProductSearchPlugin .cpsp_form_input[type="text"]:active,
#CsvProductSearchPlugin .cpsp_form_input[type="text"]:focus {
    border-radius: 5px;
    border: solid 1px #b5b5b5;
    background: white;
    outline: none;
    box-shadow: none;
    padding: 0 7px;
}
#CsvProductSearchPlugin .cpsp_form_input[type="submit"] {
    color: white;
    background-color: #4e4e4e;
    border-radius: 2px;
    border: solid 1px #4e4e4e;
    transition: background .2s;
    cursor: pointer;
    padding: 0 10px;
    text-transform: uppercase;
	text-align: center;
}
#CsvProductSearchPlugin .cpsp_form_input[type="submit"]:hover {
    background-color: #323232;
    border-color: #323232;
}
@media (min-width: 768px) {
    #CsvProductSearchPlugin .cpsp_form_input[type="text"],
    #CsvProductSearchPlugin .cpsp_form_input[type="submit"] {
        min-height: 35px;
        height: 35px;
        line-height: 35px;
    }
}

#CpspFormResultSearching {
    display: none;
}

#CsvProductSearchPlugin .cpsp_results-count {
    margin: 15px 0 0 0;
    padding: 5px 10px;
    text-align: center;
    color: black;
    background: #ebebeb;
    border: solid 1px #dad9dc;
    border-radius: 5px;
    transition: background .2s;
}
#CsvProductSearchPlugin .cpsp_results-count strong {
    font-size: 1.2em;
}
#CsvProductSearchPlugin .cpsp_results-count:hover {
    /*background: #dad9dc;*/
}

#CsvProductSearchPlugin .cpsp_form-table {
    width: 100%;
    overflow: auto;
}
#CsvProductSearchPlugin .cpsp_form-table table {
    min-width: 480px;
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}
#CsvProductSearchPlugin .cpsp_form-table thead td {
    text-align: left;
    background: #4e4e4e;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
}
#CsvProductSearchPlugin .cpsp_form-table tbody td {
    text-align: left;
    color: #6d6d6d;
    padding: 7px 15px;
    background: #fff;
    transition: background .2s, color .2s;
}
#CsvProductSearchPlugin .cpsp_form-table tbody td:last-child {
    text-align: center;
}
#CsvProductSearchPlugin .cpsp_form-table tbody tr:nth-child(odd) td {
    background: #f6f6f6;
}
#CsvProductSearchPlugin .cpsp_form-table tbody tr:hover td {
    background: #cecece;
    color: black;
}

#CsvProductSearchPlugin .cpsp_form > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#CsvProductSearchPlugin .cpsp_form > div > p:first-child {
    width: calc(100% - 150px);
}
#CsvProductSearchPlugin .cpsp_form > div > p:first-child input {
    width: 100%;
}
#CsvProductSearchPlugin .cpsp_form > div > p:last-child {
    width: 150px;
    padding-left: 15px;
}
#CsvProductSearchPlugin .cpsp_form > div > p:last-child input {
    width: 100%;
}