.wrapper_sb {
    display: grid;
    grid-template-columns: 1fr;
    height: 460px;
    width: 390px;
    background: #FFDE3E;
    user-select: none;
    padding: 16px 26px;
    place-content: center;
    box-sizing:border-box
}

@media screen and (max-width: 660px) {
    .wrapper_sb {
        width: 100%;
        padding: 8px 14px;
    }
}

.wrapper_sb * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a.ports_item {
    color: black;
    text-decoration: none !important;
}

a.ports_item:hover {
    color: #015871 !important;
}

a.ports_item:visited {
    color: black !important;
}

.input_wrapper {
    position: relative;
}

.input_clear {
    height: 42px;
    width: 42px;
    position: absolute;
    display: grid;
    place-content: center;
    right: 0;
    bottom: 0;
    z-index: 1;
    visibility: hidden;
    cursor: pointer;
}

.input_clear img {
    width: 16px;
}

input.field-input {
    width: 100%;
    height: 42px;
    border: none;
    outline: 2px solid #1c8bac;
    line-height: 42px;
    font-size: 14px;
    font-weight: 900;
    background-color: #fff;
    color: Black;
    border-radius: 6px;
    padding: 8px 8px 8px 12px;
    font-family: Arial, sans-serif;
    transition: all .15s linear;
}

input.field-input:focus {
    outline: 3px solid #ff7d60; /*#ff7d60*/
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.25);
}

label.label_sb {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 10px !important;
    color: #015871;
    padding-left: 2px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #a9a9a9;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #a9a9a9;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #a9a9a9;
}

:-moz-placeholder { /* Firefox 18- */
    color: #a9a9a9;
}

.grid_ports::-webkit-scrollbar {
    display: none;
}

.ports_results {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    padding-top: 22px;
}

.grid_ports {
    -ms-overflow-style: none;
    scrollbar-width: none;
    /*scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) rgb(158, 158, 158);*/
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    row-gap: 8px;
    height: 290px;
    overflow-y: auto;
}

.ports_item {
    background-color: rgba(255, 255, 255, .8);
    padding: 10px 14px;
    border-radius: 6px;
    height: min-content;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 30px 1fr;
    transition: background-color .1s ease-in-out;
}

.ports_item:hover {
    background: rgba(255, 255, 255, 1);
}

.delimiter {
    display: grid;
    place-content: center;
}

.delimiter img {
    width: 16px;
}

.port_from p:last-child, .port_to p:last-child {
    font-weight: normal;
    font-size: 14px;
}

.port_to {
    text-align: right;
}

.results_title {
    padding-bottom: 8px;
    padding-left: 2px;
    font-size: 16px;
    font-weight: 900;
    color: #015871;
}