body {
    background-color: transparent;
}

.wrapper {
    margin: 16px;
}

h1 {
    color: #716eb6;
    text-align: center;
}

input {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--gray);
    background: #171717;
    display: inline-block;
    padding: 8px 17px;
    border-radius: 30px;
    width: 100%;
}

@media (min-width: 1400px) {
    input {
        min-width: 340px;
    }
}

.field-label {
    min-width: 150px;
    display: inline-block;
}

.filter-btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-btns button {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

.search-btn {
    border: 1px solid var(--gray);
    display: inline-block;
    padding: 8px 17px;
    border-radius: 30px;
    min-width: 100px;
    margin: 0 10px 0 5px;
}

.search-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #fff;
}

.reset-btn {
    content: '';
    background: url('/assets/imgs/icon/reset.svg') no-repeat;
    height: 28px;
    width: 28px;
    background-size: contain;
    float: right;
    border: none;
    transition: all 0.3s ease-in-out 0s;
}

.reset-btn:hover {
    transform: rotate(-360deg);
    transition: all 0.3s ease-in-out 0s;
}

@media only screen and (max-width: 767px) {
    .filter-btns button {
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        text-transform: uppercase;
        color: #fff;
        display: inline-block;
    }

    .filter-btns {
        margin: 10px 0 0 30px;
        align-items: center;
    }

    .search-btn {
        padding: 7px 17px;
        border-radius: 30px;
        min-width: 100px;
        margin: 0 auto;
        border: 1px solid var(--gray);
    }

    .search-btn:hover {
        background-color: #ffffff;
        color: #000000;
        border: 1px solid #fff;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table thead {
    border-bottom: 2px solid rgb(160 160 160);
    text-align: center;
    background-color: #2c5e77;
}

td,
th {
    padding: 0;
    text-align: left;
}

.c-table {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
}

.c-table__cell {
    padding: 12px 6px 12px 12px;
    word-wrap: break-word;
}

.c-table__header tr {
    color: #fff;
}

.c-table__header th {
    background-color: #716eb6;
    padding: 18px 6px 18px 12px;
}

.c-table__header th:first-child {
    border-top-left-radius: 4px;
}

.c-table__header th:last-child {
    border-top-right-radius: 4px;
}

.c-table__body tr {
    border-bottom: 1px solid rgba(113, 110, 182, 0.15);
}

.c-table__body tr {
    background: #171717;
    padding: 20px;
    border-radius: 21px;
    position: relative;
    border-bottom: none;
}

@media only screen and (max-width: 1440px) {
    .c-table__body tr {
        margin-bottom: 10px;
    }
}

.c-table__body tr:last-child {
    border-bottom: none;
}

.c-table__label {
    display: none;
}

table,
thead,
tbody,
th,
td,
tr {
    padding: 4px 0 4px 0;
    display: grid;
}

td:first-child {
    padding-top: 24px;
}

td:last-child {
    padding-bottom: 10px;
}

.c-table__header tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.c-table__cell {
    padding: 12px 24px;
    position: relative;
    width: 100%;
    word-wrap: break-word;
}

.c-table__label {
    color: #272b37;
    display: block;
    margin-bottom: 6px;
}

.c-table__body tr:nth-child(odd) {
    background: #171717;
    padding: 20px;
    border-radius: 21px;
    position: relative;
}

@media only screen and (max-width: 1440px) {
    .c-table__body tr:nth-child(odd) {
        margin-bottom: 10px;
    }
}

.warehouse-section {
    padding: 70px 40px 40px 40px;
    height: max-content;
}

@media only screen and (max-width: 1440px) {
    .warehouse-section {
        padding: 100px 0 0 0;
        height: max-content;
    }
}

@media only screen and (max-width: 767px) {
    .warehouse-section {
        padding: 100px 0 0 0;
    }
}

table thead {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    border: 1px solid var(--gray);
    border-radius: 50px;
    margin: 10px;
    width: 50px;
    height: 50px;
}

.filter {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    padding-top: 55px;
    padding-bottom: 55px;
}

@media only screen and (max-width: 767px) {
    .filter {
        display: block;
        padding-top: 10px;
        padding-bottom: 30px;
    }
}

.pagination-btn:hover {
    color: var(--pink-2);
    border: 1px solid var(--pink-2);
}

table td:nth-child(3)::before {
    content: '';
    background: url('/assets/imgs/icon/maps.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

@media only screen and (max-width: 1920px) {
    table td:nth-child(3)::before {
        content: '';
        background: url('/assets/imgs/icon/maps.svg') no-repeat;
        min-height: 16px;
        min-width: 16px;
        margin-right: 20px;
        background-size: contain;
    }
}

@media only screen and (max-width: 1440px) {
    table td:nth-child(3)::before {
        content: '';
        background: url('/assets/imgs/icon/maps.svg') no-repeat;
        min-height: 16px;
        min-width: 16px;
        margin-right: 20px;
        background-size: contain;
    }
}

@media only screen and (max-width: 1024px) {
    table td:nth-child(3)::before {
        content: '';
        background: url('/assets/imgs/icon/maps.svg') no-repeat;
        min-height: 16px;
        min-width: 16px;
        margin-right: 20px;
        background-size: contain;
    }
}

@media only screen and (max-width: 767px) {
    table td:nth-child(3)::before {
        content: '';
        min-height: 16px;
        min-width: 16px;
        margin-right: 20px;
        background-size: contain;
    }
}

table td:nth-child(4)::before {
    content: '';
    background: url('/assets/imgs/icon/coordinate.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:nth-child(5)::before {
    content: '';
    background: url('/assets/imgs/icon/mail.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:nth-child(6)::before {
    content: '';
    background: url('/assets/imgs/icon/mail.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:nth-child(7)::before {
    content: '';
    background: url('/assets/imgs/icon/mail.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:nth-child(8)::before {
    content: '';
    background: url('/assets/imgs/icon/mail.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:nth-child(9)::before {
    content: '';
    background: url('/assets/imgs/icon/mail.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:last-child::before {
    content: '';
    background: url('/assets/imgs/icon/phone.svg') no-repeat;
    min-height: 16px;
    min-width: 16px;
    margin-right: 20px;
    background-size: contain;
}

table td:first-child {
    font-weight: 500;
    font-size: 21px;
    line-height: 1.2;
    color: var(--white);
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    height: 90px;
}

@media only screen and (max-width: 1440px) {
    table td:first-child {
        font-size: 18px;
        height: 80px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    table td:first-child {
        height: auto;
        margin-bottom: 15px;
    }
}

table td:nth-child(2) {
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--gray-2);
    border: 1px solid var(--gray-14);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    width: max-content;
    height: max-content;
}

table td:nth-child(3) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

table td:nth-child(4) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

table td:nth-child(5) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    text-transform: lowercase;
}

table td:nth-child(6) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

table td:nth-child(7) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

table td:nth-child(8) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

table td:nth-child(9) {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

table td:last-child {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

@media (min-width: 1400px) {
    .warehouse-card {
        flex: 0 0 auto;
        width: 100%;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 15px;
    }
}

select {
    word-wrap: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--gray);
    background: #171717;
    display: inline-block;
    padding: 8px 17px;
    border-radius: 30px;
    width: 100%;
    cursor: pointer;
}

select option {
    color: var(--gray-2);
}

select option:first-child {
    display: none;
}

select option[disabled]:first-child {
    display: none;
}

.autoselect-zipcode {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    max-height: 300px;
    margin-top: 5px;
    margin-bottom: 5px;
    overflow-y: hidden;
    z-index: 9999;
    position: fixed;
    min-width: 340px;
    background: #121212;
    padding: 17px;
    border-radius: 0 0 21px 21px;
}

@media only screen and (max-width: 767px) {
    .autoselect-zipcode {
        width: 100%;
        position: relative;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.3;
        text-transform: uppercase;
        color: #fff;
        padding: 0 0 0 17px;
        max-height: 220px;
        overflow-y: hidden;
        margin: 5px 0;
    }
}

.autoselect-city {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    max-height: 300px;
    margin-top: 5px;
    margin-bottom: 5px;
    overflow-y: hidden;
    z-index: 9999;
    position: fixed;
    min-width: 340px;
    background: #121212;
    padding: 17px;
    border-radius: 0 0 21px 21px;
}

@media only screen and (max-width: 767px) {
    .autoselect-city {
        width: 100%;
        position: relative;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.3;
        text-transform: uppercase;
        color: #fff;
        padding: 0 0 0 17px;
        max-height: 220px;
        overflow-y: hidden;
        margin: 5px 0;
    }
}

@media only screen and (max-width: 767px) {
    .input-company {
        margin-bottom: 10px;
    }
}

ul {
    position: relative;
}

li {
    word-wrap: break-word;
    cursor: pointer;
    padding: 7px 0 7px 0;
}

@media only screen and (max-width: 767px) {
    li {
        padding: 8px 0 8px 0;
    }
}

.inputrow {
    padding: 5px;
}

@media only screen and (max-width: 767px) {
    .inputrow {
        padding: 0;
    }
}

#klmb-website-maps {
    height: 360px;
    width: 100%;
    position: absolute;
}

.maps-warehouse-info {
    font-size: 12px;
    margin-top: 5px;
}

.maps-warehouse-info-key {
    font-weight: bold;
    color: #7f7f7f;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.maps {
    height: 360px;
    padding-top: 100px;
    padding-bottom: 50px;
}

.maps-warehouse-name {
    text-transform: uppercase;
    text-align: left;
    color: #ff0030;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
}

a {
    color: #fff;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

a:hover {
    color: #ff0030;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.gm-style-iw-t {
    height: auto !important;
}

.gm-style .gm-style-iw-c {
    height: auto !important;
    width: 500px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
    padding-bottom: 12px !important;
}

.gm-style .gm-style-iw-d {
    height: auto !important;
    overflow: hidden !important;
}

.gm-style-mtc>div,
.gmnoprint>div,
.gm-svpc {
    display: none;
}

.gm-fullscreen-control {
    background: rgba(255, 255, 255, 0.023) !important;
    backdrop-filter: blur(3px) !important;
    color: #fff !important;
}

input {
    outline-color: #ff0030;
}

input:focus {
    outline: none;
}

.gm-ui-hover-effect>span {
    background-color: #fff;
    width: 18px;
    height: 18px;
    margin: 14px 14px 0px 0px !important;
}

#map.fullscreen {
    background-color: red !important
}

.poi-info-window div,
.poi-info-window a {
    color: #fff;
    background-color: transparent;
}

.gm-style .transit-container div {
    background-color: transparent;
    color: #fff
}

.gm-style .transit-container {
    background-color: transparent;
}

.poi-info-window a:link {
    color: #ff0030;
}

.gm-style iframe+div {
    border: none !important;
}