div.GFO_Header {
    position: absolute;
    top: 0;
    left: 0;
    height: 52px;
    width: 100%;
    background-color: #e8e9eb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 10px 2px 16px;
    font-size: 1.3em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}

div.GFO_Footer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 52px;
    width: 100%;
    background-color: #e8e9eb;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div.GFO_Form_Content {
    position: relative;
    padding: 1em;
}

div.GFO_Form_Buttons {
    display: inline-block;
    flex-direction: row-reverse;
}

div.button.btn {
    position: relative;
    text-align: center;
    display: block;
    margin-top: 0;
    padding: 0.5em 1em;
    cursor: pointer;
    margin-left: 0.75em;
    color: inherit;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid #999;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 1px 1px 3px #ccc;
    -moz-box-shadow: 1px 1px 3px #ccc;
    box-shadow: 1px 1px 3px #ccc;
    background-color: #dcdcdc;
    /* Fallback */
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #dcdcdc 100%);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #ffffff 0%, #dcdcdc 100%);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #ffffff 0%, #dcdcdc 100%);
    /* IE10 */
    background-image: -o-linear-gradient(top, #ffffff 0%, #dcdcdc 100%);
    /* Opera 11.10+ */
    background-image: linear-gradient(to bottom, #ffffff 0%, #dcdcdc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#ffffff", EndColorStr="#dcdcdc");
}

div.button.btn:hover {
    border: 1px solid #666;
    -webkit-box-shadow: 1px 1px 3px #999;
    -moz-box-shadow: 1px 1px 3px #999;
    box-shadow: 1px 1px 3px #999;
    background-color: #cccccc;
    /* Fallback */
    background-image: -webkit-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
    /* IE10 */
    background-image: -o-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
    /* Opera 11.10+ */
    background-image: linear-gradient(to bottom, #eaeaea 0%, #cccccc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#eaeaea", EndColorStr="#cccccc");
}

div.button.btn:active {
    -webkit-box-shadow: inset 1px 1px 3px #999;
    -moz-box-shadow: inset 1px 1px 3px #999;
    box-shadow: inset 1px 1px 3px #999;
}

div.button.btn:focus {
    border: 1px solid #426c9e;
    text-shadow: 0 1px 0 #c4def1;
    background-color: #79ace9;
    /* Fallback */
    background-image: -webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);
    /* IE10 */
    background-image: -o-linear-gradient(top, #bddef4 0%, #79ace9 100%);
    /* Opera 11.10+ */
    background-image: linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#bddef4", EndColorStr="#79ace9");
    outline: none;
}

div.button.btn:focus:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: block;
    content: " ";
    -webkit-animation-duration: 1s;
    -webkit-animation-name: buttonPulse;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-direction: alternate;
    -moz-animation-duration: 1s;
    -moz-animation-name: buttonPulse;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -moz-animation-direction: alternate;
    -o-animation-duration: 1s;
    -o-animation-name: buttonPulse;
    -o-animation-fill-mode: forwards;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    -o-animation-direction: alternate;
    animation-duration: 1s;
    animation-name: buttonPulse;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}
div.GFO_Field input,
div.GFO_Field textarea {
    box-sizing: border-box;
    background-color: white;
    -webkit-transition: background-color ease-in-out 0.15s;
    transition: background-color ease-in-out 0.15s;
}

div.GFO_Field input:focus,
div.GFO_Field textarea:focus {
    background-color: #ffffee;
}

div.GFO_Field input[type=color],
div.GFO_Field input[type=date],
div.GFO_Field input[type=datetime],
div.GFO_Field input[type=datetime-local],
div.GFO_Field input[type=email],
div.GFO_Field input[type=month],
div.GFO_Field input[type=number],
div.GFO_Field input[type=password],
div.GFO_Field input[type=search],
div.GFO_Field input[type=tel],
div.GFO_Field input[type=text],
div.GFO_Field input[type=time],
div.GFO_Field input[type=url],
div.GFO_Field input[type=week] {
    padding: 5px 4px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 3px;
}

div.GFO_Field input[type=date],
div.GFO_Field input[type=datetime] {
    padding: 5px 4px;
    max-width: 170px;
    border: 1px solid #aaa;
    border-radius: 3px;
}

div.GFO_Field input[type=checkbox],
div.GFO_Field input[type=radio] {
    vertical-align: middle;
}

div.GFO_Field select {
    padding: 5px 4px;
    border-radius: 3px;
    border: 1px solid #aaa;
    max-width: 100%;
    width:unset;
    background-color: unset;
}
div.GFO_Field label div.GFO_Label_Info {
    font-size: 0.85em;
    margin-top: 0.25em;
}

div.GFO_Field label div.GFO_Label_Info:empty {
    margin-top: 0;
}
div.GFO_Field div.GFO_Field_Info,
div.GFO_Field div.GFO_Field_Message,
div.GFO_Field div.GFO_Field_Error {
    font-size: 11px;
    line-height: 1em;
    margin-top: 5px;
}

div.GFO_Field div.GFO_Field_Info:empty,
div.GFO_Field div.GFO_Field_Message:empty,
div.GFO_Field div.GFO_Field_Error:empty {
    margin-top: 0;
}

div.GFO_Field div.GFO_Field_Error {
    display: none;
    color: #b11f1f;
}

div.GFO_Field div.multi-value {
    display: none;
    border: 1px dotted #666;
    border-radius: 3px;
    padding: 5px;
    background-color: #fafafa;
    cursor: pointer;
}

div.GFO_Field div.multi-value span {
    font-size: 0.8em;
    line-height: 1.25em;
    display: block;
    color: #666;
}

div.GFO_Field div.multi-value.multi-noEdit {
    border: 1px solid #ccc;
    cursor: auto;
    background-color: #fcfcfc;
}

div.GFO_Field div.multi-value.multi-noEdit:hover {
    background-color: #fcfcfc;
}

div.GFO_Field div.multi-value:hover {
    background-color: #f1f1f1;
}

div.GFO_Field.disabled {
    color: grey;
}

div.GFO_Field.disabled div.multi-value {
    cursor: default;
    border: 1px dotted #aaa;
    background-color: transparent;
}

div.GFO_Field div.multi-restore {
    display: none;
    margin-top: 0.5em;
    font-size: 0.8em;
    line-height: 1.25em;
    color: #3879d9;
}

div.GFO_Field div.multi-restore:hover {
    text-decoration: underline;
    cursor: pointer;
}

div.GFO_Field_Type_textarea textarea {
    padding: 3px;
    width: 60%;
    height: 80px;
    border: 1px solid #aaa;
}

div.GFO_Field.GFO_Field_Type_date img {
    vertical-align: middle;
    cursor: pointer;
}

div.GFO_Field_Type_checkbox div.GFO_Field_Input,
div.GFO_Field_Type_radio div.GFO_Field_Input {
    padding-top: 1px;
}

div.GFO_Field_Type_checkbox div.GFO_Field_Input>div>div,
div.GFO_Field_Type_radio div.GFO_Field_Input>div>div {
    margin-bottom: 0.25em;
}

div.GFO_Field_Type_checkbox div.GFO_Field_Input>div>div:last-child,
div.GFO_Field_Type_radio div.GFO_Field_Input>div>div:last-child {
    margin-bottom: 0;
}

div.GFO_Field_Type_checkbox div.GFO_Field_Input>div>div label,
div.GFO_Field_Type_radio div.GFO_Field_Input>div>div label {
    margin-left: 0.15em;
    vertical-align: middle;
}

div.GFO_Field_Type_datatable div.dataTables_info {
    font-size: 0.8em;
    line-height: 1.3em;
    padding-right: 1em;
    padding-bottom: 0.5em;
}

div.GFO_Field_Type_datatable div.dataTables_info span.select-info {
    display: block;
}

div.GFO_Field_Type_datatable div.dataTables_filter {
    padding-right: 1em;
    padding-bottom: 0.5em;
}

div.GFO_Field_Type_datatable div.dataTables_filter input {
    width: 100%;
}

div.GFO_Field_Type_datatable div.dt-buttons {
    padding-right: 1em;
    padding-bottom: 0.5em;
}

div.GFO_Field_Type_datatable div.dt-buttons button {
    width: 100%;
}

div.GFO_Field_Type_datatable div.dt-buttons:empty {
    padding-bottom: 0;
}

div.GFO_Field_Type_datatable div.dataTables_paginate {
    float: none;
    text-align: center;
    font-size: 0.8em;
}

div.GFO_Field_Type_datatable table.dataTable.no-footer {
    border-bottom: 1px solid #aaa !important;
}

div.GFO_Field_Type_datatable table.dataTable thead th,
div.GFO_Field_Type_datatable table.dataTable thead td {
    font-weight: normal;
    padding-top: 3px;
    padding-bottom: 3px;
    border-bottom: 1px solid #aaa;
}

div.GFO_Field_Type_datatable table.dataTable tbody th:first-child,
div.GFO_Field_Type_datatable table.dataTable tbody td:first-child {
    border-left: 1px solid #aaa;
}

div.GFO_Field_Type_datatable table.dataTable tbody th:last-child,
div.GFO_Field_Type_datatable table.dataTable tbody td:last-child {
    border-right: 1px solid #aaa;
}

div.GFO_Field_Type_datatable table.dataTable tfoot th,
div.GFO_Field_Type_datatable table.dataTable tfoot td {
    font-weight: normal;
    padding-top: 3px;
    padding-bottom: 3px;
    border-top: 1px solid #aaa;
}

div.GFO_Field_Type_datatable div.dataTables_scrollHead table.dataTable,
div.GFO_Field_Type_datatable div.dataTables_scrollHead table.dataTable thead th,
div.GFO_Field_Type_datatable div.dataTables_scrollHead table.dataTable thead td {
    border-bottom: none !important;
}

div.GFO_Field_Type_datatable div.dataTables_scrollBody {
    border: 1px solid #aaa !important;
    border-radius: 3px;
}

div.GFO_Field_Type_datatable div.dataTables_scrollBody table.dataTable {
    border-bottom: none !important;
}

div.GFO_Field_Type_datatable div.dataTables_scrollBody table.dataTable tbody th:first-child,
div.GFO_Field_Type_datatable div.dataTables_scrollBody table.dataTable tbody td:first-child {
    border-left: none;
}

div.GFO_Field_Type_datatable div.dataTables_scrollBody table.dataTable tbody th:last-child,
div.GFO_Field_Type_datatable div.dataTables_scrollBody table.dataTable tbody td:last-child {
    border-right: none;
}

div.GFO_Form_Content {
    padding: 52px 20px;
}

div.GFO_Form_Content {
    position: relative;
    overflow: auto;
}

div.GFO_Form_Info {
    padding: 1em 1em 0 1em;
    margin: 0;
}

div.GFO_Field {
    position: relative;
    clear: both;
    padding: 5px 0;
    border: 1px solid transparent;
}

div.GFO_Field:after {
    display: block;
    content: ".";
    height: 0;
    line-height: 0;
    clear: both;
    visibility: hidden;
}

div.GFO_Field:hover {
    background-color: #f9f9f9;
    border: 1px solid #f3f3f3;
}

div.GFO_Field>label {
    float: left;
    min-width: 28%;
    text-align: right;
    padding: 4px 10px;
    white-space: nowrap;
}

div.GFO_Field>div.GFO_Field_Input {
    float: right;
    width: 72%;
}

div.GFO_Field.full {
    padding: 5px 0 5px 10%;
}

div.GFO_Field.block>div.GFO_Field_Input {
    float: none;
    clear: both;
    width: 100%;
}

html[dir=rtl] div.GFO_Field>label {
    float: right;
}

html[dir=rtl] div.GFO_Field>div.GFO_Field_Input {
    float: left;
}

html[dir=rtl] div.GFO_Form_Buttons button {
    float: left;
}

@media only screen and (max-width: 768px) {
    div.GFO_Field {
        padding: 5px 10%;
    }

    div.GFO_Field.full {
        padding: 5px 0 5px 10%;
    }

    div.GFO_Field.full>label {
        width: 35.5%;
    }

    div.GFO_Field.full>div.GFO_Field_Input {
        width: 64.5%;
    }

    div.GFO_Field.block>div.GFO_Field_Input {
        width: 100%;
    }
}

@media only screen and (max-width: 640px) {
    div.GFO_Field {
        padding: 5px 0;
    }

    div.GFO_Field.full {
        padding: 5px 0%;
    }

    div.GFO_Field.full>label {
        width: 40%;
    }

    div.GFO_Field.full>div.GFO_Field_Input {
        width: 60%;
    }

    div.GFO_Field.block>div.GFO_Field_Input {
        width: 100%;
    }
}

@media only screen and (max-width: 810px) {
    div.GFO_Field {
        position: relative;
        clear: both;
        padding: 5px 0;
    }

    div.GFO_Field>label {
        float: none;
        width: auto;
        padding-top: 0;
    }

    div.GFO_Field>div.GFO_Field_Input {
        float: none;
        width: auto;
        margin-top: 4px;
        margin-bottom: 6px;
    }

    div.GFO_Field.full,
    div.GFO_Field.block {
        padding: 5px 0;
    }

    div.GFO_Field.full>label,
    div.GFO_Field.full>div.GFO_Field_Input,
    div.GFO_Field.block>label,
    div.GFO_Field.block>div.GFO_Field_Input {
        width: 100%;
    }
    .GFOD_Lightbox_Container {
        height:680px !important;
        overflow:auto;
    }
    .row {
        display:flex;
    }
    .col-6 {
        width:100%;
    }
    div.GFO_Body_Content {
        text-align: left;
    }
    div.GFO_Field > label {
        text-align: left;
        min-width: unset;
        float: left;
    }

}

div.GFO_Bubble {
    position: absolute;
    z-index: 11;
    margin-top: -6px;
    opacity: 0;
    transition: top 0.5s ease-in-out 0s;
}

div.GFO_Bubble div.GFO_Bubble_Liner {
    position: absolute;
    bottom: 0;
    border: 1px solid black;
    width: 300px;
    margin-left: -150px;
    background-color: white;
    box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    border: 1px solid #666;
    padding: 1em;
    background: #fcfcfc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table {
    width: 100%;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table>form div.GFO_Form_Content {
    padding: 0;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table>form div.GFO_Form_Content div.GFO_Field {
    position: relative;
    margin-bottom: 0.5em;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table>form div.GFO_Form_Content div.GFO_Field:last-child {
    margin-bottom: 0;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table>form div.GFO_Form_Content div.GFO_Field>label {
    padding-top: 0;
    margin-bottom: 0;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table>form div.GFO_Form_Content div.GFO_Field>div {
    padding: 0;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table>form div.GFO_Form_Content div.GFO_Field>div input {
    margin: 0;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table div.GFO_Form_Buttons {
    text-align: right;
    margin-top: 1em;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Table div.GFO_Form_Buttons button {
    margin-bottom: 0;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Header+div.GFO_Form_Info,
div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Header+div.GFO_Bubble_Table {
    padding-top: 42px;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Form_Error {
    float: none;
    display: none;
    padding: 0;
    margin-bottom: 0.5em;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Close {
    position: absolute;
    top: 19px;
    right: 19px;
    cursor: pointer;
    z-index: 12;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Close:after {
    content: "×";
    color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 22px;
    font-family: "Courier New", Courier, monospace;
}

div.GFO_Bubble div.GFO_Bubble_Liner div.GFO_Bubble_Close:hover:after {
    color: black;
}

div.GFO_Bubble div.GFO_Bubble_Triangle {
    position: absolute;
    height: 10px;
    width: 10px;
    top: -6px;
    background-color: white;
    border: 1px solid #666;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

div.GFO_Bubble.below div.GFO_Bubble_Liner {
    top: 10px;
    bottom: auto;
}

div.GFO_Bubble.below div.GFO_Bubble_Triangle {
    top: 4px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

div.GFO_Bubble_Background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Fallback */
    background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* IE10 Consumer Preview */
    background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Firefox */
    background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Opera */
    background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
    /* Webkit (Safari/Chrome 10) */
    background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Webkit (Chrome 11+) */
    background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* W3C Markup, IE10 Release Preview */
    z-index: 10;
}

div.GFO_Bubble_Background>div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

div.GFO_Bubble_Background>div:not([dummy]) {
    filter: progid:DXImageTransform.Microsoft.gradient(enabled="false");
}

div.GFO_Inline {
    position: relative;
    display: table;
    width: 100%;
}

div.GFO_Inline div.GFO_Inline_Field,
div.GFO_Inline div.GFO_Inline_Buttons {
    display: table-cell;
    vertical-align: middle;
}

div.GFO_Inline div.GFO_Inline_Field div.GFO_Field,
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field {
    padding: 0;
}

div.GFO_Inline div.GFO_Inline_Field div.GFO_Field>label,
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field>label {
    display: none;
}

div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=color],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=date],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=datetime],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=datetime-local],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=email],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=month],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=number],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=password],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=search],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=tel],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=text],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=time],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=url],
div.GFO_Inline div.GFO_Inline_Field div.GFO_Field input[type=week],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=color],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=date],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=datetime],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=datetime-local],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=email],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=month],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=number],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=password],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=search],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=tel],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=text],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=time],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=url],
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Field input[type=week] {
    width: 100%;
}

div.GFO_Inline div.GFO_Inline_Field div.GFO_Form_Buttons button,
div.GFO_Inline div.GFO_Inline_Buttons div.GFO_Form_Buttons button {
    margin: -6px 0 -6px 4px;
    padding: 5px;
}

div.GFO_Inline div.GFO_Field input[type=color],
div.GFO_Inline div.GFO_Field input[type=date],
div.GFO_Inline div.GFO_Field input[type=datetime],
div.GFO_Inline div.GFO_Field input[type=datetime-local],
div.GFO_Inline div.GFO_Field input[type=email],
div.GFO_Inline div.GFO_Field input[type=month],
div.GFO_Inline div.GFO_Field input[type=number],
div.GFO_Inline div.GFO_Field input[type=password],
div.GFO_Inline div.GFO_Field input[type=search],
div.GFO_Inline div.GFO_Field input[type=tel],
div.GFO_Inline div.GFO_Field input[type=text],
div.GFO_Inline div.GFO_Field input[type=time],
div.GFO_Inline div.GFO_Field input[type=url],
div.GFO_Inline div.GFO_Field input[type=week] {
    margin: -6px 0;
}

div.GFO_Inline div.GFO_Field_Error,
div.GFO_Inline div.GFO_Form_Error {
    font-size: 11px;
    line-height: 1.2em;
    padding: 0;
    margin-top: 10px;
}

div.GFO_Inline div.GFO_Field_Error:empty,
div.GFO_Inline div.GFO_Form_Error:empty {
    margin-top: 0;
}

span.dtr-data div.GFO_Inline {
    display: inline-table;
}

div.GFOD_Lightbox_Wrapper {
    position: absolute;
    top: 52%;
    left: 50%;
    align-items: center;
    display: flex;
    transform: translate(-50%,-50%);    
    width: 880px;
    height: 100%;
    z-index: 11;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    display: table;
    height: 100%;
    width: 100%;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    position: relative;
    box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    background: white;
    border-radius: 6px;
    border: 1px solid #666;
    background: #fcfcfc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* min-height: 400px; */
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFO_Header {
    right: 0;
    width: auto;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    box-sizing: border-box;
    background: #fcfcfc;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFO_Footer {
    right: 0;
    width: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFOD_Lightbox_Close {
    position: absolute;
    top: 13px;
    right: 19px;
    cursor: pointer;
    z-index: 12;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFOD_Lightbox_Close:after {
    content: "×";
    color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 22px;
    font-family: "Courier New", Courier, monospace;
}

div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFOD_Lightbox_Close:hover:after {
    color: black;
}

div.GFOD_Lightbox_Wrapper div.GFO_Footer {
    display: flex;
    justify-content: flex-end;
}

div.GFOD_Lightbox_Wrapper div.GFO_Footer_Content {
    display: none;
}

div.GFOD_Lightbox_Wrapper div.GFO.inFormError div.GFO_Footer {
    justify-content: space-between;
}

div.GFOD_Lightbox_Background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Fallback */
    background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* IE10 Consumer Preview */
    background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Firefox */
    background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Opera */
    background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
    /* Webkit (Safari/Chrome 10) */
    background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Webkit (Chrome 11+) */
    background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* W3C Markup, IE10 Release Preview */
    z-index: 10;
}

div.GFOD_Lightbox_Background>div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

div.GFOD_Lightbox_Background>div:not([dummy]) {
    filter: progid:DXImageTransform.Microsoft.gradient(enabled="false");
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Background {
    height: 0;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Shown {
    display: none;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: auto;
    height: auto;
    margin-left: 0;
    -webkit-overflow-scrolling: touch;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    display: block;
    height: 100%;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    display: block;
    height: 100%;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    border-radius: 0;
    box-shadow: none;
    height: 100% !important;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    border-radius: 0;
    height: 100%;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFO_Header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container {
    padding-bottom: 52px;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFO_Footer {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body.GFOD_Lightbox_Mobile div.GFOD_Lightbox_Wrapper div.GFOD_Lightbox_Container div.GFOD_Lightbox_Close {
    top: 11px;
    right: 15px;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

@media only screen and (max-width: 1080px) {
    body div.GFOD_Lightbox_Wrapper {
        position: fixed;
        /* top: 0;
        left: 0; */
        width: 85%;
        /* margin-left: 5%; */
    }
}
@media only screen and (max-width: 780px) {
    body div.GFOD_Lightbox_Wrapper {
        position: fixed;
        /* top: 0;
        left: 0; */
        width: 85%;
        /* margin-left: 5%; */
    }
}

@media only screen and (max-width: 580px) {
    body div.GFOD_Lightbox_Wrapper {
        position: fixed;
        /* top: 0;
        left: 0; */
        width: 100%;
        margin-left: 0;
    }
}

@-webkit-keyframes editorProcessing {

    0%,
    80%,
    100% {
        transform: scale(1, 1);
    }

    40% {
        transform: scale(1, 1.5);
    }
}

@keyframes editorProcessing {

    0%,
    80%,
    100% {
        transform: scale(1, 1);
    }

    40% {
        transform: scale(1, 1.5);
    }
}