
.app-box .addr-marquee {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
    border-radius: 4px;
    text-align: center;
    padding: 10px;
    font-size: 16pt;
    border: 1px solid var(--app-box-border-color);
    background: var(--offset-bg-color);
}

.addr-input-group {
    margin-left: 5%;
    margin-right: 5%;
    width : 90%;
}

.addr-input-group .label {
    padding: 0px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.addr-input-group .field-container {
    padding: 0px !important;
}

.addr-input-group .field-column {
    padding: 0px !important;
}

.addr-input-group .country-code-input {
    border: 1px solid var(--field-border-color);
    border-radius: 4px 0 0 4px;
    background: var(--offset-bg-color);
    min-height: 55px;
    padding: 7px !important;
}

.addr-input-group .fullname-input {
    border: 0px solid var(--field-border-color);
    padding: 0 !important; 
}

.addr-input-group .state-code-input {
    min-height: 55px;
    border: 1px solid var(--field-border-color);
    border-radius: 0 4px 4px 0;
    padding: 7px !important;
    background: var(--offset-bg-color);
    width: 80%;

}

input.addr-form-control {
    min-height: 55px;
    padding: 10px;
    width: 100% !important;
}

select.addr-form-control {}

input.fullname {
    border-radius: 0 4px 4px 0;
    border-left: 0;
}

input.city {
    border-radius: 4px 0 0 4px;
}


/*
******************************************************************************
*    SCREEN 640px and smaller
******************************************************************************
*/
@media only screen and (640px >= width) {
    input.fullname {
        border: 1px solid var(--field-border-color);
        border-radius: 4px 4px 4px 4px;
    }
    .addr-input-group .country-code-input {
        border: 1px solid var(--field-border-color);
        border-radius: 4px 4px 4px 4px;
    }
}

/*
******************************************************************************
*    SCREEN betwen 640px and 768px
******************************************************************************
*/
@media only screen and (768px >= width > 640px) {
    input.fullname {
        border: 1px solid var(--field-border-color);
        border-radius: 4px 4px 4px 4px;
    }
    .addr-input-group .country-code-input {
        border: 1px solid var(--field-border-color);
        border-radius: 4px 4px 4px 4px;
    }
    select.state-code {
        max-width: 100%;
    }
}

/*
******************************************************************************
*    SCREEN between 769px and smaller than 1024px
******************************************************************************
*/
@media only screen and (1024px >= width > 768px) {}

/*
******************************************************************************
*    SCREEN between 1025px and smaller than 1280px
******************************************************************************
*/
@media only screen and (1280px >= width > 1024px) {}

/*
******************************************************************************
*    SCREEN larger than 1280px
******************************************************************************
*/
@media only screen and (width > 1280px) {}
