.postal-code-indicator {
    z-index: 1000;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.postal-code-indicator strong {
    margin: 0 5px;
}

.postal-code-indicator button {
    font-size: 12px;
    padding: 0 5px;
    text-decoration: underline;
    line-height: normal;
    height: auto;
    text-transform: capitalize
}

.postal-code-dropdown {
    position: absolute;
    left: -56px;
    top: 40px;
    min-width: 320px;
    z-index: 1000;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 1465px) {
    .postal-code-dropdown {
        left: -120px;
    }
}

@media (max-width: 1295px) {
    .postal-code-dropdown {
        top: 60px;
    }
}

@media (max-width: 850px) {
    .postal-code-dropdown {
        top: 80px;
    }
}

@media (max-width: 575px) {

    .postal-code-wrapper{
        position: static !important;
        width: auto;
        padding: 0 !important;
        background: transparent;
        display: flex;
        justify-content: center;
    }

    .postal-code-dropdown{
        max-width: 90vw;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 120px !important;
        z-index: 1002 !important;
    }

    .postal-code-indicator {
        display: flex !important;
        justify-content: center;
        width: auto;
    }
}