@charset "utf-8";
@font-face {
    font-family: PlutoSansDPDExtraLight;
    src: url(../../php/speedy_address_form/fonts/OTF/PlutoSansDPDExtraLight.otf);
}

@font-face {
    font-family: PlutoSansDPDLight;
    src: url(../../php/speedy_address_form/fonts/OTF/PlutoSansDPDLight.otf);
}

@font-face {
    font-family: PlutoSansDPDRegular;
    src: url(../../php/speedy_address_form/fonts/OTF/PlutoSansDPDRegular.otf);
}

@font-face {
    font-family: PlutoSansDPDThin;
    src: url(../../php/speedy_address_form/fonts/OTF/PlutoSansDPDThin.otf);
}

body{
    box-sizing: border-box;
}

:root {
    --DPD-Red: #dc0032;
    --DPD-Dark-Red: #a90034;
    --DPD-Black: #414042;
    --DPD-Warm-Grey: #cac4be;
    --DPD-Mid-Grey: #808285;
    --DPD-Light-Grey: #e6e7e8;
    --white: #FFFFFF;
}

.container {
    margin: auto;
    color: var(--DPD-Black);
    font: 12px PlutoSansDPDLight, Arial, Helvetica, sans-serif;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    vertical-align: top;
}

h3{
    margin: auto;
}


select, input{
    font-family: inherit;
}

select:focus-visible,
input:focus-visible
{
    outline: none;
}

.divBlock1 {
    /*float: left;*/
    margin: auto;
    width: 100%;
}

.headerInfo {
    height: auto;
    margin: auto;
    max-width: 800px;
}

.d-inline{
    display: inline;
    text-align: center;
}

.centered{
    text-align: center;
    margin: 5px auto;
}

.divBlock2 {
    align-self: flex-start;
    margin: auto;
}

.divBlock3{
    align-self: flex-start;
    width: 300px;
    margin-right: auto;
    display: none;
}

.column1{
    width: 35px;
}

.column2{
    width: 35px;
}

.column3{
    width: 140px;
}

.description {
    margin-right: 10px;
}

.formWidget {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding:  5px 10px;
    margin: 5px 0;
}


.tableFormColumn {
    padding-right: 15px;
}

.tableForm{
    margin: auto;
    border-spacing: 2px;
    border-collapse: separate;
    max-width: 1239px;
}

.inputFrameParam {
    height: 10px;
    color: var(--DPD-Black);
    font: 12px PlutoSansDPDLight, Arial, Helvetica, sans-serif;
    border: 1px solid #888888;
    margin: 0;
    padding: 4px;
}



.floatRight{
    float: right;
}

.inputFrameButton {
    display: block;
    height: auto;
    width: 250px;
    color: #FFFFFF;
    font: 14px PlutoSansDPDLight, Arial, Helvetica, sans-serif;
    margin: 4px auto;
    padding: 4px 20px 4px 20px;
    border: 1px solid var(--DPD-Dark-Red);
    background-color: var(--DPD-Dark-Red);
}
.inputFrameButton:hover, .inputFrameButton:active, .inputFrameButton:focus {
    background-color: var(--DPD-Red);
}

.textarea {
    width: 100%;
    height: 30px;
    color: var(--DPD-Black);
    font: 12px PlutoSansDPDLight, Arial, Helvetica, sans-serif;
    border: 1px solid #888888;
    /*background-color: var(--DPD-Light-Grey);*/
}

.textareaResult {
    width: 285px;
    height: 130px;
    color: var(--DPD-Black);
    font: 12px 'Source Code Pro', monospace;
    border: 1px solid #888888;
    background-color: var(--DPD-Light-Grey);
    margin: 2px 0 10px 0;
    padding: 4px;
}

.textareaResultJson{
    height: 260px;
}

.spanReturnedOffice {
    color: #FF0000;
}

#frameOfficeLocator {
    border: 1px solid var(--DPD-Black);
}

label {
    display: inline-block;
    text-align: right;
}

.languages {
    float: right;
}

#choose_office{
    /*display: none;*/
}

.columnAdditional{
    width: 158px;
}

.addressFormOptions{
    width: 100%;
    height: 100%;
    border-radius: unset;
}

.frameCodeDiv{
    max-width: 1000px;
    display: block;
    margin: auto;
}

.officeTextContainer{
    margin: auto;
    height: auto;
    display: block;
    max-width: 1072px;
}

.displayNone {
    display: none;
}
@media all and (max-width: 700px){

    .column3{
        width: 70px;
    }

    td
    {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tableForm{
        margin: unset;
    }

    .languages{
        float: unset;
    }
}

