/* Geo Zip Form Component Styles */

/* Form wrapper */
.geo-zip-form-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    display: inline-flex;
    padding-top: 30px;
}

/* Input wrapper container */
.geo-zip-input-wrapper {
    width: 220px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
}

/* Input field container */
.geo-zip-input-container {
    align-self: stretch;
    height: 60px;
    padding: 8px;
    background: white;
    box-shadow: 0px 1px 2px rgba(10, 10, 10, 0.10) inset;
    overflow: hidden;
    outline: none;
    outline-offset: -1px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    display: inline-flex;
}

/* Search icon container */
.geo-zip-icon {
    padding-left: 0.5rem;
    display: flex;
}

/* Input field */
.geo-zip-input {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #151515;
    font-size: 20px;
    font-family: Source Sans Pro;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
}

/* Submit button */
.geo-zip-button {
    width: 93px;
    height: 60px;
    padding: 8px 20px;
    background: #FF2128;
    overflow: hidden;
    outline: 1px rgba(0, 0, 0, 0) solid;
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: flex;
}

/* Button content container */
.geo-zip-button-content {
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Button text */
.geo-zip-button-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-family: Source Sans Pro;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 18px;
    word-wrap: break-word;
}

/* Button icon container */
.geo-zip-button-icon {
    padding-left: 0.5rem;
    display: flex;
}

/* Message container */
.geo-zip-message {
    display: none;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: -0.5rem;
}

.notice-error {
    color: #cc4b37;
}
