.delivery__item {
    display: none;
}
.delivery__item.active {
    display: block;
}


.search__datalist {
    position: relative; }
.search__datalist-field {
    position: relative; }
.search__datalist-reset {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' xml:space='preserve' fill='%23ff0000'%3E%3Cpath d='M12.2 10 19 3.2c.3-.3.5-.7.5-1.1s-.2-.8-.5-1.1c-.3-.3-.7-.5-1.1-.5-.4 0-.8.2-1.1.5L10 7.8 3.2 1C2.9.7 2.5.6 2.1.6c-.4 0-.8.2-1.1.5-.2.2-.4.6-.4 1s.1.8.4 1.1L7.8 10 1 16.8c-.3.3-.5.7-.5 1.1 0 .4.2.8.5 1.1.3.3.7.5 1.1.5s.8-.2 1.1-.5l6.8-6.8 6.8 6.8c.3.3.7.5 1.1.5.4 0 .8-.2 1.1-.5.3-.3.5-.7.5-1.1 0-.4-.2-.8-.5-1.1L12.2 10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center center;
    background-color: transparent;
    z-index: 10;
    cursor: pointer; }
.search__datalist-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #b6bcca;
    border-radius: 3px;
    background-color: #ffffff;
    max-height: 400px;
    overflow-y: auto;
    z-index: 10; }
.search__datalist-list[data-toggle="false"] {
    display: none; }
.search__datalist-list[data-toggle="true"] {
    display: block; }
.search__datalist-item {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 21px;
    color: #00205d;
    background-color: #ffffff;
    cursor: pointer; }
.search__datalist-item[data-display="false"] {
    display: none; }
.search__datalist-item[data-display="true"] {
    display: block; }
.search__datalist-item.active {
    background-color: #ef0005 !important;
    color: #ffffff !important; }
.search__datalist-item:hover {
    background-color: #f2f6f6; }
