/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 95px; /* Location of the box */
    /*margin-right: 50px;*/ /* Location of the box */
    margin-left: 118px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 82.5%;
    height: calc(100vh - 15vh);
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 70px;
    right: 140px;
    color: #d9002a;
    font-size: 200px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1;
}

    .close:hover,
    .close:focus {
        color: #d9002a;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.dialog-headline {
    margin-top: 5px;
    margin-bottom: 10px;
}

.dialog-header {
    position: relative;
    text-align: left;
    padding: 8px;
    border: 1px solid ThreeDShadow;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.block-header {
    font-weight: normal;
    position: absolute;
    color: #6e6e6e;
    top: -10px;
    left: 5px;
    background: white;
    padding: 0 1px;
    white-space: nowrap;
    text-shadow: 1px 1px 1px #000;
}

.dialog-footer {
    position: relative;
    text-align: left;
    padding: 8px;
    border: 1px solid ThreeDShadow;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.content-scrollpane {
    height: 480px;
    width: 102%;
    overflow: auto;
    overflow-x: hidden;
    display: block;
}

/* Style the tab */
.tab {
    overflow: hidden;
    /* border: 1px solid #ccc;
  background-color: #f1f1f1;*/
}

/* Style the buttons inside the tab */
.tab button {
    float: left;
    font-size: 16px;
    font-weight: bold;
    background-color: #73767b;
    border: 1px solid #504d4d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    outline: none;
    cursor: pointer;
    padding: 8px 8px;
    transition: 0.3s;
    text-shadow: 1px 1px 1px #898383;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    color: #000;
    background-color: #fff;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    height: calc(100vh - 28vh);
    margin-right: 10px;
    /* border-top: none; */
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 10px;
    left: 190px;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 1px solid ThreeDShadow;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
    background-color: #fffdfd;
}

/* When the checkbox is checked, add a colored background */
.checkbox input:checked ~ .checkmark {
    background-color: #F60707;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    left: 190px;
    top: 10px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom checkbox */
.checkmark1 {
    position: absolute;
    top: 10px;
    left: 190px;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 1px solid ThreeDShadow;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark1 {
    background-color: #fffdfd;
}

/* When the checkbox is checked, add a colored background */
.checkbox input:checked ~ .checkmark1 {
    background-color: #F60707;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark1:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark1:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark1:after {
    left: 190px;
    top: 10px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom checkbox2 */
.checkmark2 {
    position: absolute;
    top: 10px;
    left: 190px;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border: 1px solid ThreeDShadow;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark2 {
    background-color: #fffdfd;
}

/* When the checkbox is checked, add a colored background */
.checkbox input:checked ~ .checkmark2 {
    background-color: #F60707;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark2:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark2:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark2:after {
    left: 190px;
    top: 10px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* =========================================== 
    Payment Styles
  ============================================
*/
.flex-container {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.flex-item {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%
}

    .flex-item:empty {
        display: none
    }

.direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.direction-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.direction-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.spacing-0 {
    margin: 0
}

    .spacing-0 > .flex-item {
        padding: 0
    }

.spacing-4 {
    margin: -2px
}

    .spacing-4 > .flex-item {
        padding: 2px
    }

.spacing-8 {
    margin: -4px
}

    .spacing-8 > .flex-item {
        padding: 4px
    }

.spacing-16 {
    margin: -8px
}

    .spacing-16 > .flex-item {
        padding: 8px
    }

.spacing-24 {
    margin: -12px
}

    .spacing-24 > .flex-item {
        padding: 12px
    }

.spacing-32 {
    margin: -16px
}

    .spacing-32 > .flex-item {
        padding: 16px
    }

.justify-content-flex-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.justify-content-flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.justify-content-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.justify-content-space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.justify-content-space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.justify-content-space-evenly {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.align-items-flex-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.align-items-flex-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.wrap-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.wrap-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.width-auto {
    width: auto
}

.width-auto, .width-fixed {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

.width-fixed {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.width-grow {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.width-1 {
    width: 8.33333333%
}

.width-2 {
    width: 16.66666667%
}

.width-3 {
    width: 25%
}

.width-4 {
    width: 33.33333333%
}

.width-5 {
    width: 41.66666667%
}

.width-6 {
    width: 50%
}

.width-7 {
    width: 58.33333333%
}

.width-8 {
    width: 66.66666667%
}

.width-9 {
    width: 75%
}

.width-10 {
    width: 83.33333333%
}

.width-11 {
    width: 91.66666667%
}

.width-12 {
    width: 100%
}

@media only screen and (min-width:576px) {
    .direction-row-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .direction-row-reverse-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .direction-column-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .direction-column-reverse-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .spacing-0-sm {
        margin: 0
    }

        .spacing-0-sm > .flex-item {
            padding: 0
        }

    .spacing-4-sm {
        margin: -2px
    }

        .spacing-4-sm > .flex-item {
            padding: 2px
        }

    .spacing-8-sm {
        margin: -4px
    }

        .spacing-8-sm > .flex-item {
            padding: 4px
        }

    .spacing-16-sm {
        margin: -8px
    }

        .spacing-16-sm > .flex-item {
            padding: 8px
        }

    .spacing-24-sm {
        margin: -12px
    }

        .spacing-24-sm > .flex-item {
            padding: 12px
        }

    .spacing-32-sm {
        margin: -16px
    }

        .spacing-32-sm > .flex-item {
            padding: 16px
        }

    .justify-content-flex-start-sm {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-flex-end-sm {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-center-sm {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-space-between-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .justify-content-space-around-sm {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-space-evenly-sm {
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .align-items-flex-start-sm {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-flex-end-sm {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-center-sm {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-stretch-sm {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .align-items-baseline-sm {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .wrap-wrap-sm {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .wrap-nowrap-sm {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .width-auto-sm {
        width: auto
    }

    .width-auto-sm, .width-fixed-sm {
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .width-fixed-sm {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .width-grow-sm {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .width-1-sm {
        width: 8.33333333%
    }

    .width-2-sm {
        width: 16.66666667%
    }

    .width-3-sm {
        width: 25%
    }

    .width-4-sm {
        width: 33.33333333%
    }

    .width-5-sm {
        width: 41.66666667%
    }

    .width-6-sm {
        width: 50%
    }

    .width-7-sm {
        width: 58.33333333%
    }

    .width-8-sm {
        width: 66.66666667%
    }

    .width-9-sm {
        width: 75%
    }

    .width-10-sm {
        width: 83.33333333%
    }

    .width-11-sm {
        width: 91.66666667%
    }

    .width-12-sm {
        width: 100%
    }
}

.header-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .header-desktop {
        display: none;
    }
    .header-mobile {
        display: block;
    }
}

@media only screen and (min-width:768px) {
    .direction-row-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .direction-row-reverse-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .direction-column-md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .direction-column-reverse-md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .spacing-0-md {
        margin: 0
    }

        .spacing-0-md > .flex-item {
            padding: 0
        }

    .spacing-4-md {
        margin: -2px
    }

        .spacing-4-md > .flex-item {
            padding: 2px
        }

    .spacing-8-md {
        margin: -4px
    }

        .spacing-8-md > .flex-item {
            padding: 4px
        }

    .spacing-16-md {
        margin: -8px
    }

        .spacing-16-md > .flex-item {
            padding: 8px
        }

    .spacing-24-md {
        margin: -12px
    }

        .spacing-24-md > .flex-item {
            padding: 12px
        }

    .spacing-32-md {
        margin: -16px
    }

        .spacing-32-md > .flex-item {
            padding: 16px
        }

    .justify-content-flex-start-md {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-flex-end-md {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-center-md {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-space-between-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .justify-content-space-around-md {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-space-evenly-md {
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .align-items-flex-start-md {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-flex-end-md {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-center-md {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-stretch-md {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .align-items-baseline-md {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .wrap-wrap-md {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .wrap-nowrap-md {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .width-auto-md {
        width: auto
    }

    .width-auto-md, .width-fixed-md {
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .width-fixed-md {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .width-grow-md {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .width-1-md {
        width: 8.33333333%
    }

    .width-2-md {
        width: 16.66666667%
    }

    .width-3-md {
        width: 25%
    }

    .width-4-md {
        width: 33.33333333%
    }

    .width-5-md {
        width: 41.66666667%
    }

    .width-6-md {
        width: 50%
    }

    .width-7-md {
        width: 58.33333333%
    }

    .width-8-md {
        width: 66.66666667%
    }

    .width-9-md {
        width: 75%
    }

    .width-10-md {
        width: 83.33333333%
    }

    .width-11-md {
        width: 91.66666667%
    }

    .width-12-md {
        width: 100%
    }
}

@media only screen and (min-width:992px) {
    .direction-row-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .direction-row-reverse-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .direction-column-lg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .direction-column-reverse-lg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .spacing-0-lg {
        margin: 0
    }

        .spacing-0-lg > .flex-item {
            padding: 0
        }

    .spacing-4-lg {
        margin: -2px
    }

        .spacing-4-lg > .flex-item {
            padding: 2px
        }

    .spacing-8-lg {
        margin: -4px
    }

        .spacing-8-lg > .flex-item {
            padding: 4px
        }

    .spacing-16-lg {
        margin: -8px
    }

        .spacing-16-lg > .flex-item {
            padding: 8px
        }

    .spacing-24-lg {
        margin: -12px
    }

        .spacing-24-lg > .flex-item {
            padding: 12px
        }

    .spacing-32-lg {
        margin: -16px
    }

        .spacing-32-lg > .flex-item {
            padding: 16px
        }

    .justify-content-flex-start-lg {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-flex-end-lg {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-center-lg {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-space-between-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .justify-content-space-around-lg {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-space-evenly-lg {
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .align-items-flex-start-lg {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-flex-end-lg {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-center-lg {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-stretch-lg {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .align-items-baseline-lg {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .wrap-wrap-lg {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .wrap-nowrap-lg {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .width-auto-lg {
        width: auto
    }

    .width-auto-lg, .width-fixed-lg {
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .width-fixed-lg {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .width-grow-lg {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .width-1-lg {
        width: 8.33333333%
    }

    .width-2-lg {
        width: 16.66666667%
    }

    .width-3-lg {
        width: 25%
    }

    .width-4-lg {
        width: 33.33333333%
    }

    .width-5-lg {
        width: 41.66666667%
    }

    .width-6-lg {
        width: 50%
    }

    .width-7-lg {
        width: 58.33333333%
    }

    .width-8-lg {
        width: 66.66666667%
    }

    .width-9-lg {
        width: 75%
    }

    .width-10-lg {
        width: 83.33333333%
    }

    .width-11-lg {
        width: 91.66666667%
    }

    .width-12-lg {
        width: 100%
    }
}

.Text {
    margin: 0
}

.Text-fontSize--11 {
    font-size: 11px
}

.Text-fontSize--12 {
    font-size: 12px
}

.Text-fontSize--13 {
    font-size: 13px
}

.Text-fontSize--14 {
    font-size: 14px
}

.Text-fontSize--16 {
    font-size: 16px
}

.Text-fontSize--20 {
    font-size: 20px
}

.Text-fontSize--24, .Text-fontSize--36 {
    font-size: 24px
}

.Text-fontWeight--400 {
    font-weight: 400
}

.Text-fontWeight--500 {
    font-weight: 500
}

.Text-fontWeight--600 {
    font-weight: 600
}

.Text-fontWeight--700 {
    font-weight: 700
}

.Text-fontWeight--900 {
    font-weight: 900
}

.Text-color--gray50 {
    color: #f9f9f9
}

.Text-color--gray100 {
    color: #e7e7e7
}

.Text-color--gray200 {
    color: #c7c7c7
}

.Text-color--gray300 {
    color: #ababab
}

.Text-color--gray400 {
    color: #909090
}

.Text-color--gray500 {
    color: #727272
}

.Text-color--gray600 {
    color: #565656
}

.Text-color--gray700 {
    color: #424242
}

.Text-color--gray800 {
    color: #303030
}

.Text-color--gray900 {
    color: #202020
}

.Text-color--blue {
    color: #0074d4
}

.Text-color--red {
    color: #dc2727
}

.Text-color--green {
    color: #24b47e
}

.Text-color--yellow {
    color: #ffde92
}

.Text-color--orange {
    color: #bb5504
}

.Text-transform--uppercase {
    text-transform: uppercase
}

.Text--tabularNumbers {
    font-variant-numeric: tabular-nums;
    letter-spacing: -.03rem
}

.Text--truncate {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.Link {
    text-decoration: none;
    cursor: pointer
}

    .Link:focus {
        outline: 1px dotted #909090
    }

.Link--primary {
    color: #0074d4
}

.Link--secondary {
    color: #909090
}

.Icon--sm {
    height: 12px
}

    .Icon--sm.Icon--square {
        width: 12px
    }

.Icon--md {
    height: 16px
}

    .Icon--md.Icon--square {
        width: 16px
    }

.Icon--lg {
    height: 24px
}

    .Icon--lg.Icon--square {
        width: 24px
    }

.Icon .Icon-fill {
    fill: #565656
}

.Spinner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.Spinner, .Spinner-svg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.Spinner-svg {
    position: relative
}

.Spinner--sm .Spinner-svg {
    width: 12px;
    height: 12px
}

.Spinner--md .Spinner-svg {
    width: 18px;
    height: 18px
}

.Spinner--lg .Spinner-svg {
    width: 48px;
    height: 48px
}

.Spinner-ellipse {
    fill: transparent;
    stroke: #c7c7c7;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 20;
    -webkit-animation: SpinnerAnimationShow .25s normal ease,SpinnerAnimationRotation .6s linear infinite;
    animation: SpinnerAnimationShow .25s normal ease,SpinnerAnimationRotation .6s linear infinite;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform;
    transition-timing-function: ease;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.Spinner--white .Spinner-ellipse {
    stroke: #fff
}

@-webkit-keyframes SpinnerAnimationShow {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes SpinnerAnimationShow {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes SpinnerAnimationRotation {
    0% {
        -webkit-transform: scaleX(-1) rotate(0);
        transform: scaleX(-1) rotate(0)
    }

    50% {
        -webkit-transform: scaleX(-1) rotate(-180deg);
        transform: scaleX(-1) rotate(-180deg)
    }

    to {
        -webkit-transform: scaleX(-1) rotate(-1turn);
        transform: scaleX(-1) rotate(-1turn)
    }
}

@keyframes SpinnerAnimationRotation {
    0% {
        -webkit-transform: scaleX(-1) rotate(0);
        transform: scaleX(-1) rotate(0)
    }

    50% {
        -webkit-transform: scaleX(-1) rotate(-180deg);
        transform: scaleX(-1) rotate(-180deg)
    }

    to {
        -webkit-transform: scaleX(-1) rotate(-1turn);
        transform: scaleX(-1) rotate(-1turn)
    }
}

.Button {
    border: 1px solid transparent;
    border-radius: 6px;
    transition: background-color .1s ease-in,-webkit-transform .08s ease-in;
    transition: background-color .1s ease-in,transform .08s ease-in;
    transition: background-color .1s ease-in,transform .08s ease-in,-webkit-transform .08s ease-in;
    cursor: pointer
}

.Button--sm {
    font-size: 12px
}

.Button--md {
    font-size: 14px;
    padding: 8px 16px
}

.Button--lg {
    font-size: 16px;
    padding: 12px 24px
}

.Button--primary {
    color: #fff;
    background-color: #0074d4;
    border-color: #0074d4
}

    .Button--primary:focus {
        box-shadow: 0 0 0 1px rgba(50,151,211,.3),0 1px 1px 0 rgba(0,0,0,.07),0 0 0 4px rgba(50,151,211,.3);
        outline: none
    }

    .Button--primary:not(:disabled):hover {
        background-color: #0066ba
    }

    .Button--primary:active {
        -webkit-transform: scale(.98);
        -ms-transform: scale(.98);
        transform: scale(.98)
    }

    .Button--primary:disabled {
        background-color: #0066bac7
    }

        .Button--primary:disabled:hover {
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
            cursor: default
        }

.Button--link {
    padding: 0;
    color: #0074d4;
    background-color: transparent;
    border: none;
    outline: none
}

.Button-Icon {
    margin-right: 8px
}

.Button-Icon--right {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0;
    margin-left: 8px
}

.Button-Spinner {
    opacity: .5
}

.HeaderImage--logo img {
    max-width: 150px;
    max-height: 32px;
    margin-right: 8px
}

.App-Container--setupMode .HeaderImage--logo img {
    max-height: 35px
}

.HeaderImage--icon {
    height: 28px;
    width: 28px;
    margin-right: 8px;
    box-shadow: 0 2px 5px 0 rgba(50,50,93,.1),0 1px 1px 0 rgba(0,0,0,.07);
    background: #fff;
    border-radius: 100%
}

    .HeaderImage--icon:not(.HeaderImage--iconFallback) img {
        height: 100%;
        width: 100%;
        border-radius: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.HeaderImage--iconFallback .Icon {
    fill: #909090
}

@media only screen and (min-width:992px) {
    .App-Container:not(.App-Container--setupMode) .HeaderImage--logo img {
        max-height: 28px;
        max-width: 300px
    }
}

.Tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2px 4px;
    background-color: #ffde92;
    border-radius: 4px
}

.Body--modal-open {
    overflow: hidden
}

.Modal-Overlay {
    z-index: 13;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.2);
    -webkit-tap-highlight-color: transparent
}

.Modal-Content {
    overflow: auto;
    outline: none
}

.LineItem-ImageContainer {
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.LineItem-Image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px
}

.OrderDetails .LineItem {
    margin-bottom: 16px
}

.OrderDetails-Subtotal {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 16px
}

.OrderDetails-Subtotal-Item {
    padding-bottom: 8px
}

.OrderDetails-Total {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid #e7e7e7;
    margin-top: 8px
}

.OrderDetails-Subtotal--indented, .OrderDetails-Total--indented {
    margin-left: 58px
}

.OrderDetailsDropdown-ModalOverlay {
    z-index: 11;
    background-color: rgba(0,0,0,.2);
    opacity: 0
}

@supports ((-webkit-backdrop-filter:blur(0)) or (backdrop-filter:blur(0))) {
    .OrderDetailsDropdown-ModalOverlay {
        -webkit-backdrop-filter: grayscale(80%);
        backdrop-filter: grayscale(80%)
    }
}

.OrderDetailsDropdown-ModalOverlay.Modal-Overlay--after-open {
    opacity: 1;
    transition: opacity .15s ease-out
}

.OrderDetailsDropdown-ModalOverlay.Modal-Overlay--before-close {
    opacity: 0
}

.OrderDetailsDropdown-Modal {
    margin-top: 60px;
    background-color: #fff;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

    .OrderDetailsDropdown-Modal.Modal-Content--after-open {
        -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
        transform: translateY(-1px);
        transition: -webkit-transform .15s ease-out;
        transition: transform .15s ease-out;
        transition: transform .15s ease-out,-webkit-transform .15s ease-out
    }

    .OrderDetailsDropdown-Modal.Modal-Content--before-close {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }

.OrderDetailsDropdown {
    padding: 16px;
    padding-top: 0
}

.OrderDetailsDropdown-OrderDetails {
    max-width: 380px;
    margin: auto
}

.Header {
    z-index: 12
}

.Header-Business .Link {
    display: block
}

.Header-Actions {
    display: none
}

.Header-ViewDetailsButton {
    width: 100%;
    text-align: right;
    color: #909090
}

@media only screen and (max-width:991.98px) {
    .App--multiItem .Header {
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 0;
        padding: 16px;
        background-color: #fff
    }

    .App--multiItem .Header-Content {
        max-width: 380px;
        margin: auto
    }

    .App--multiItem .Header:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border-bottom: 1px solid #e7e7e7;
        opacity: 0;
        transition: opacity .15s ease-out
    }

    .App--multiItem .Header--withShadow:after {
        opacity: 1
    }

    .App--multiItem .Header-Actions {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

.Footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.Footer-PoweredBy-Icon {
    vertical-align: text-bottom;
    -webkit-transform: translateY(1.5px);
    -ms-transform: translateY(1.5px);
    transform: translateY(1.5px);
    opacity: .7
}

.Footer-Links, .Footer-PoweredBy {
    padding: 4px
}

@media only screen and (min-width:992px) {
    .Footer {
        height: 16px;
        line-height: 16px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .Footer-Links {
        padding: 0 0 0 16px
    }

    .Footer-PoweredBy {
        padding: 0 16px 0 0;
        border-right: 1px solid #e7e7e7
    }

    .App-Container--setupMode .Footer {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.ProductSummary {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.ProductSummary, .ProductSummary-Info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.ProductSummary-ProductImageContainer {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 32px 16px
}

.App--multiItem .ProductSummary-ProductImageContainer {
    margin-bottom: 32px
}

.ProductSummary-ProductImageContainer img {
    max-height: 120px
}

.ProductSummary-TotalAmount {
    margin: 2px 0 3px;
    font-size: 28px
}

@media only screen and (min-width:992px) {
    .ProductSummary {
        text-align: left;
        -webkit-box-pack: left;
        -webkit-justify-content: left;
        -ms-flex-pack: left;
        justify-content: left;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .App--singleItem .ProductSummary {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .App--singleItem .ProductSummary-ProductImageContainer {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 300px;
        height: 300px;
        margin: 32px 0
    }

        .App--singleItem .ProductSummary-ProductImageContainer img {
            max-height: 300px;
            max-width: 300px
        }

    .App--singleItem .ProductSummary-Info {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .App--multiItem .ProductSummary-ProductImageContainer {
        display: none
    }

    .ProductSummary-TotalAmount {
        font-size: 36px
    }
}

.ProductImage-container {
    position: relative;
    text-align: center
}

.ProductImage-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px
}

.ProductImage-itemCount {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 92px;
    bottom: -10px;
    box-shadow: 0 2px 5px 0 rgba(50,50,93,.1),0 1px 1px 0 rgba(0,0,0,.07);
    background: #fff;
    text-align: center;
    border-radius: 70px;
    padding: 2px 7px;
    font-size: 13px;
    font-weight: 700
}

.ProductSummaryTotalAmount .BillingIntervalBreak {
    display: none
}

.ProductSummaryTotalAmount-BillingInterval {
    display: inline-block
}

@media only screen and (min-width:992px) {
    .ProductSummaryTotalAmount .BillingIntervalBreak {
        display: unset
    }
}

.InvalidSession {
    text-align: center
}

.InvalidSession-icon {
    margin-bottom: 16px;
    height: 64px
}

.InvalidSession-message, .InvalidSession-title {
    margin-bottom: 16px
}

.Tabs-TabList {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin: 0
}

.Tabs-TabListItemContainer {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 8px
}

    .Tabs-TabListItemContainer:last-of-type {
        margin-right: 0
    }

.Tabs-TabListItem {
    width: 100%;
    padding: 14px 12px 8px;
    border-radius: 6px;
    color: #303030;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer
}

    .Tabs-TabListItem:focus {
        outline: none;
        box-shadow: 0 0 0 1px rgba(50,151,211,.3),0 1px 1px 0 rgba(0,0,0,.07),0 0 0 4px rgba(50,151,211,.3)
    }

.Tabs-TabListItem--is-not-selected {
    border: 1px solid #e7e7e7
}

.Tabs-TabListItem--is-selected {
    border: 1px solid #303030;
    box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05)
}

.Tabs--is-disabled .Tabs-TabListItem {
    cursor: auto
}

.Tabs-TabListItem--is-not-selected .Tabs-TabListItemContent {
    opacity: .7
}

.Tabs-TabListItem--is-selected .Tabs-TabListItemContent {
    opacity: 1
}

.Tabs-TabListItem--is-not-selected .Tabs-TabListItemContent svg {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.Tabs-TabPanelContainer {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 16px
}

.InputContainer {
    position: relative;
    display: block;
    margin: 0;
    padding: 0
}

    .InputContainer:after {
        height: 0;
        visibility: hidden;
        content: attr(data-max)
    }

.InputContainer-placeholder--ie {
    pointer-events: none;
    position: absolute;
    top: -100%;
    left: 0;
    opacity: 0;
    color: #bbbbc2
}

.Input--empty + .InputContainer-placeholder--ie {
    top: 0;
    opacity: 1
}

.InputContainer .InputElement {
    position: absolute
}

    .InputContainer .InputElement::-webkit-input-placeholder {
        -webkit-text-fill-color: currentColor
    }

    .InputContainer .InputElement::-moz-placeholder {
        -webkit-text-fill-color: currentColor
    }

    .InputContainer .InputElement:-ms-input-placeholder {
        -webkit-text-fill-color: currentColor
    }

    .InputContainer .InputElement::placeholder {
        -webkit-text-fill-color: currentColor
    }

.CheckoutInput {
    position: relative;
    width: 100%;
    height: 44px;
    padding: 8px 12px;
    color: #303030;
    font-size: 16px;
    line-height: 1.5;
    border: 0;
    box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05);
    transition: box-shadow .08s ease-in,color .08s ease-in;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .CheckoutInput::-webkit-input-placeholder {
        color: #ababab
    }

    .CheckoutInput::-moz-placeholder {
        color: #ababab
    }

    .CheckoutInput:-ms-input-placeholder {
        color: #ababab
    }

    .CheckoutInput::placeholder {
        color: #ababab
    }

    .CheckoutInput + .InputContainer-placeholder--ie {
        z-index: 2;
        top: 9px;
        left: 12px;
        font-size: 16px;
        color: #ababab
    }

    .CheckoutInput:focus {
        z-index: 2;
        outline: none;
        box-shadow: 0 0 0 1px rgba(50,151,211,.3),0 1px 1px 0 rgba(0,0,0,.07),0 0 0 4px rgba(50,151,211,.3)
    }

    .CheckoutInput--fakeAutofill, .CheckoutInput:-webkit-autofill {
        -webkit-text-fill-color: #303030;
        transition: background-color 100000000s,box-shadow 0s linear;
        box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05),inset 0 0 0 1000px #fefbe7
    }

        .CheckoutInput--fakeAutofill:focus, .CheckoutInput:-webkit-autofill:focus {
            transition: box-shadow .08s ease-in,color .08s ease-in;
            box-shadow: 0 0 0 1px rgba(50,151,211,.3),0 1px 1px 0 rgba(0,0,0,.07),0 0 0 4px rgba(50,151,211,.3),inset 0 0 0 1000px #fefbe7
        }

    .CheckoutInput:disabled {
        color: #ababab;
        transition: background-color 100000000s,box-shadow 0s linear;
        box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05),inset 0 0 0 1000px #f9f9f9
    }

        .CheckoutInput--fakeAutofill:disabled, .CheckoutInput:disabled:-webkit-autofill {
            -webkit-text-fill-color: #ababab
        }

.CheckoutInput--invalid {
    z-index: 1;
    color: #dc2727;
    box-shadow: 0 0 0 1px #ef9896,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05)
}

    .CheckoutInput--invalid.CheckoutInput--fakeAutofill, .CheckoutInput--invalid:-webkit-autofill {
        -webkit-text-fill-color: #dc2727;
        box-shadow: 0 0 0 1px rgba(220,39,39,.5),0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05),inset 0 0 0 1000px #fefbe7
    }

.CheckoutInput--tabularNumbers, .CheckoutInput--tabularNumbers + .InputContainer-placeholder--ie {
    font-variant-numeric: tabular-nums;
    letter-spacing: -.03rem
}

.CheckoutInput::-ms-clear {
    display: none
}

.InputContainer com-1password-op-button {
    display: none !important
}

@media only screen and (min-width:992px) {
    .App-Container:not(.App-Container--setupMode) .CheckoutInput {
        height: 36px;
        font-size: 14px
    }

        .App-Container:not(.App-Container--setupMode) .CheckoutInput + .InputContainer-placeholder--ie {
            font-size: 14px
        }
}

.Select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.Select-source {
    width: 100%;
    height: 44px;
    font-size: 16px;
    padding: 8px 12px;
    padding-right: 24px;
    color: #303030;
    line-height: 1.5;
    border: 0;
    background-color: #fff;
    box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05);
    transition: box-shadow .08s ease-in,color .08s ease-in;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.Select-source--empty {
    color: #ababab
}

    .Select-source--empty option {
        color: #303030
    }

.Select-source:focus {
    z-index: 2;
    outline: none;
    box-shadow: 0 0 0 1px rgba(50,151,211,.3),0 1px 1px 0 rgba(0,0,0,.07),0 0 0 4px rgba(50,151,211,.3)
}

.Select--fakeAutofill .Select-source, .Select-source:-webkit-autofill {
    -webkit-text-fill-color: #303030;
    transition: background-color 100000000s,box-shadow 0s linear;
    box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05),inset 0 0 0 1000px #fefbe7
}

    .Select--fakeAutofill .Select-source:focus, .Select-source:-webkit-autofill:focus {
        transition: box-shadow .08s ease-in,color .08s ease-in;
        box-shadow: 0 0 0 1px rgba(50,151,211,.3),0 1px 1px 0 rgba(0,0,0,.07),0 0 0 4px rgba(50,151,211,.3),inset 0 0 0 1000px #fefbe7
    }

.Select-source:disabled {
    color: #ababab;
    transition: background-color 100000000s,box-shadow 0s linear;
    box-shadow: 0 0 0 1px #e0e0e0,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05),inset 0 0 0 1000px #f9f9f9
}

    .Select--fakeAutofill .Select-source:disabled, .Select-source:disabled:-webkit-autofill {
        -webkit-text-fill-color: #ababab
    }

.Select--invalid .Select-source {
    color: #dc2727;
    box-shadow: 0 0 0 1px #ef9896,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05)
}

.Select--invalid .Select-source--empty {
    color: #ababab
}

.Select--invalid.Select--fakeAutofill, .Select--invalid .Select-source:-webkit-autofill {
    -webkit-text-fill-color: #ababab;
    box-shadow: 0 0 0 1px rgba(220,39,39,.5),0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05),inset 0 0 0 1000px #fefbe7
}

.Select-source::-ms-expand {
    display: none
}

.Select-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -6px;
    pointer-events: none;
    width: 12px;
    height: 12px;
    z-index: 3
}

@media only screen and (min-width:992px) {
    .App-Container:not(.App-Container--setupMode) .Select-source {
        height: 36px;
        font-size: 14px
    }
}

.FormFieldInput {
    position: relative
}

.FormFieldInput-Icon {
    padding-right: 12px
}

.FormFieldInput-Icon, .FormFieldInput-Icons {
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 3
}

.FormFieldInput-Icons {
    padding-right: 8px
}

.FormFieldInput-IconsIcon {
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 4px;
    z-index: 3
}

.FormFieldInput-Icon.is-disabled img, .FormFieldInput-Icon.is-disabled svg {
    -webkit-filter: grayscale(.8);
    filter: grayscale(.8);
    opacity: .4
}

.FormFieldInput-Icon img, .FormFieldInput-Icon svg {
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    transition: opacity .7s cubic-bezier(.075,.82,.165,1),-webkit-transform .4s cubic-bezier(.075,.82,.165,1);
    transition: transform .4s cubic-bezier(.075,.82,.165,1),opacity .7s cubic-bezier(.075,.82,.165,1);
    transition: transform .4s cubic-bezier(.075,.82,.165,1),opacity .7s cubic-bezier(.075,.82,.165,1),-webkit-transform .4s cubic-bezier(.075,.82,.165,1)
}

.FormFieldInput-Icon.is-loaded img, .FormFieldInput-Icon.is-loaded svg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.FieldError {
    transition: all .3s ease;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left
}

    .FieldError:not:empty {
        margin-top: 4px
    }

.FormFieldGroup--is-empty .FormFieldInput-Icon {
    display: none
}

.FormFieldGroup--is-empty .FormFieldGroup-childLeft .Input:not(:focus), .FormFieldGroup--is-empty .FormFieldGroup-childLeft .Select-source:not(:focus) {
    box-shadow: 0 0 0 1px #ef9896,0 2px 4px 0 rgba(0,0,0,.07),0 1px 1.5px 0 rgba(0,0,0,.05)
}

.FormFieldGroup-Fieldset {
    margin: 4px 0 0;
    border: none;
    padding: 0
}

.FormFieldGroup-labelContainer {
    position: relative
}

.FormFieldGroup-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.FormFieldGroup-container--supportTransitions {
    -webkit-perspective: 800px;
    perspective: 800px
}

.FormFieldGroup-child {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    -webkit-transform-origin: "0%";
    -ms-transform-origin: "0%";
    transform-origin: "0%"
}

.FormFieldGroup-child--width-12 {
    width: 100%
}

.FormFieldGroup-child--width-6 {
    width: 50%
}

.FormFieldGroup-child .CheckoutInput, .FormFieldGroup-child .Select-source {
    border-radius: 0
}

.FormFieldGroup-childTop.FormFieldGroup-childLeft .CheckoutInput, .FormFieldGroup-childTop.FormFieldGroup-childLeft .Select-source {
    border-top-left-radius: 6px
}

.FormFieldGroup-childTop.FormFieldGroup-childRight .CheckoutInput, .FormFieldGroup-childTop.FormFieldGroup-childRight .Select-source {
    border-top-right-radius: 6px
}

.FormFieldGroup-childBottom.FormFieldGroup-childLeft .CheckoutInput, .FormFieldGroup-childBottom.FormFieldGroup-childLeft .Select-source {
    border-bottom-left-radius: 6px
}

.FormFieldGroup-childBottom.FormFieldGroup-childRight .CheckoutInput, .FormFieldGroup-childBottom.FormFieldGroup-childRight .Select-source {
    border-bottom-right-radius: 6px
}

.CardFormFieldGroupIconOverflow {
    width: 28px;
    height: 16px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.CardFormFieldGroupIconOverflow-Item {
    transition: all .4s ease;
    transition-delay: .15s;
    position: absolute;
    top: 0;
    left: 0
}

.CardFormFieldGroupIconOverflow-Item--visible {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.CardFormFieldGroupIconOverflow-Item--invisible {
    opacity: 0;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9)
}

.HiddenInput {
    position: absolute;
    height: 2px;
    width: 2px;
    opacity: 0
}

.PrefilledInfo {
    margin: 0;
    margin-bottom: 8px;
    padding: 12px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background-color: #f9f9f9
}

.PrefilledInfoItem-value {
    margin: 0
}

.CardPayment-method {
    display: none
}

.SubmitButton {
    position: relative;
    overflow: hidden;
    height: 44px;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(50,50,93,.1),0 2px 5px 0 rgba(50,50,93,.1),0 1px 1px 0 rgba(0,0,0,.07);
    border: 0;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease,box-shadow .08s ease-in;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

    .SubmitButton:disabled {
        cursor: default
    }

.SubmitButton-Shimmer {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 150%;
    opacity: 0;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    transition: opacity .2s ease
}

.SubmitButton-Text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 44px;
    transition: all .2s ease
}

.SubmitButton-IconContainer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(-16px);
    -ms-transform: translateX(-16px);
    transform: translateX(-16px);
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease,-webkit-transform .3s ease
}

.SubmitButton-Icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    transition: all .2s ease
}

.SubmitButton-SpinnerIcon .Icon, .SubmitButton-SpinnerIcon svg {
    height: 20px;
    width: 20px
}

.SubmitButton-SpinnerIcon ellipse {
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 70;
    stroke-dashoffset: 30;
    fill: transparent;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-animation: spinner-spin .6s linear infinite;
    animation: spinner-spin .6s linear infinite
}

.SubmitButton-CheckmarkIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(calc(-50% + 2px)) translateX(-50%) scale(.6);
    -ms-transform: translateY(calc(-50% + 2px)) translateX(-50%) scale(.6);
    transform: translateY(calc(-50% + 2px)) translateX(-50%) scale(.6)
}

    .SubmitButton-CheckmarkIcon path {
        stroke-linecap: round;
        stroke-dasharray: 30;
        stroke-dashoffset: 30;
        opacity: 0
    }

.SubmitButton--incomplete .SubmitButton-Text--current {
    opacity: .6
}

.SubmitButton--complete:focus, .SubmitButton--incomplete:focus {
    box-shadow: inset 0 0 0 1px rgba(50,50,93,.1),0 6px 15px 0 rgba(50,50,93,.2),0 2px 2px 0 rgba(0,0,0,.1),0 0 0 4px rgba(50,151,211,.3)
}

.SubmitButton--complete:hover {
    background-color: #005ebb;
    box-shadow: inset 0 0 0 1px rgba(50,50,93,.1),0 6px 15px 0 rgba(50,50,93,.2),0 2px 2px 0 rgba(0,0,0,.1)
}

.SubmitButton--complete:active {
    -webkit-transform: scale(.99);
    -ms-transform: scale(.99);
    transform: scale(.99)
}

.SubmitButton--complete-Shimmer {
    opacity: 1;
    -webkit-animation: shimmer-move 3s infinite ease;
    animation: shimmer-move 3s infinite ease
}

.SubmitButton--complete:hover.SubmitButton--complete-Shimmer {
    opacity: .6
}

.SubmitButton--success {
    background-color: #24b47e
}

    .SubmitButton--success .SubmitButton-IconContainer {
        -webkit-transform: translateX(calc(-50% + 20px / 2));
        -ms-transform: translateX(calc(-50% + 20px / 2));
        transform: translateX(calc(-50% + 20px / 2))
    }

.SubmitButton-Text--pre {
    opacity: 0;
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px)
}

.SubmitButton-Text--post {
    opacity: 0;
    -webkit-transform: translateX(-16px);
    -ms-transform: translateX(-16px);
    transform: translateX(-16px)
}

.SubmitButton-Icon--post, .SubmitButton-Icon--pre {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(.9);
    -ms-transform: translateY(-50%) scale(.9);
    transform: translateY(-50%) scale(.9)
}

.SubmitButton-Icon--current {
    opacity: 1
}

.SubmitButton-Icon--post-center {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1.3);
    -ms-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    transition-duration: .3s
}

    .SubmitButton-Icon--post-center.SubmitButton-SpinnerIcon ellipse {
        -webkit-animation: spinner-complete .3s ease;
        animation: spinner-complete .3s ease;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards
    }

.SubmitButton-CheckmarkIcon--current path {
    -webkit-animation: checkmark-check .3s ease;
    animation: checkmark-check .3s ease;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes shimmer-move {
    0% {
        -webkit-transform: translateX(-150%);
        transform: translateX(-150%)
    }

    to {
        -webkit-transform: translateX(150%);
        transform: translateX(150%)
    }
}

@keyframes shimmer-move {
    0% {
        -webkit-transform: translateX(-150%);
        transform: translateX(-150%)
    }

    to {
        -webkit-transform: translateX(150%);
        transform: translateX(150%)
    }
}

@-webkit-keyframes spinner-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes spinner-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes spinner-complete {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes spinner-complete {
    to {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes checkmark-check {
    0% {
        opacity: 0;
        stroke-dashoffset: 30
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0
    }
}

@keyframes checkmark-check {
    0% {
        opacity: 0;
        stroke-dashoffset: 30
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0
    }
}

.ConfirmPaymentTerms {
    line-height: 17px;
    text-align: center
}

.App-Container--setupMode .ConfirmPaymentTerms {
    text-align: left
}

.ConfirmPayment-Submit {
    width: 100%;
    margin-top: 16px
}

.Divider {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

    .Divider hr {
        width: 100%;
        border: 1px solid #e7e7e7;
        border-width: .5px
    }

.Divider-Text {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0 8px;
    white-space: nowrap;
    background-color: #fff
}

.PaymentRequestButtonContainer > button {
    height: 44px;
    width: 100%
}

.PaymentRequestOrHeader {
    position: relative
}

.ButtonAndDividerContainer, .PaymentHeaderContainer {
    width: 100%
}

    .ButtonAndDividerContainer .PaymentRequestButtonContainer, .PaymentHeader {
        padding-bottom: 16px
    }

    .ButtonAndDividerContainer .Divider {
        padding-top: 16px;
        padding-bottom: 32px
    }

@media only screen and (max-width:991.98px) {
    .PaymentHeader {
        display: none
    }
}

.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -25px;
    margin-right: 10px;
    position: relative;
    z-index: 2;
}



/*.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.card.card-custom {
    -webkit-box-shadow: 0 0 30px 0 rgba(82,63,105,.05);
    box-shadow: 0 0 30px 0 rgba(82,63,105,.05);
    border: 0;
}

.gutter-b {
    margin-bottom: 25px;
}

.card.card-custom > .card-body {
    padding: 2rem 2.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 2.25rem;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #ebedf3;
    border-radius: .42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}
 
.bgi-no-repeat {
    background-repeat: no-repeat;
}

.bgi-size-cover {
    background-size: cover;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #ebedf3;
    border-radius: .42rem;
}*/

.document-wrapper {
    border-left: 1px solid ThreedDarkShadow;
    border-top: 1px solid ThreedDarkShadow;
    border-right: 1px solid ThreedDarkShadow;
    border-bottom: 1px solid ThreedDarkShadow;
    cursor: pointer;
}

.document-wrap {
    width: 80px;
    height: 70px;
    border-left: 1px solid ThreeDLightShadow;
    border-top: 1px solid ThreeDLightShadow;
    border-right: 2px solid ThreeDLightShadow;
    border-bottom: 1px solid ThreeDLightShadow;
    cursor: pointer;
}

.document-medium-wrap {
    width: 70px;
    height: 45px;
    border-left: 1px solid ThreedDarkShadow;
    border-top: 1px solid ThreedDarkShadow;
    border-right: 2px solid ThreedDarkShadow;
    border-bottom: 1px solid ThreedDarkShadow;
    cursor: pointer;
}

.document-small-wrap {
    width: 25px;
    height: 20px;
    border-left: 1px solid ThreedDarkShadow;
    border-top: 1px solid ThreedDarkShadow;
    border-right: 2px solid ThreedDarkShadow;
    border-bottom: 1px solid ThreedDarkShadow;
    cursor: pointer;
}

.document-smallest-wrap {
    width: 20px;
    height: 20px;
    border-left: 1px solid ThreedDarkShadow;
    border-top: 1px solid ThreedDarkShadow;
    border-right: 2px solid ThreedDarkShadow;
    border-bottom: 1px solid ThreedDarkShadow;
    cursor: pointer;
}

.document-wrap-no-pointer {
    width: 80px;
    height: 70px;
    border-left: 1px solid ThreeDLightShadow;
    border-top: 1px solid ThreeDLightShadow;
    border-right: 2px solid ThreeDLightShadow;
    border-bottom: 1px solid ThreeDLightShadow;
    cursor: none;
}

.btn-download-gray {
    color: #00ff00;
    background-color: #3c4251;
    border-color: #272c36;
}

.btn-replace {
    color: #0000ff;
    background-color: #ffff35;
    border-color: #272c36;
}

.btn-del {
    color: #ffffff;
    background-color: #b00000;
    border-color: #272c36;
}

.download-caption {
    color: #ff0000;
    background-color: transparent;
    margin-bottom: -5px;
    text-shadow: 0px -1px 0px #c1c1c1, 0px -1px 0px #999999;
}

.file-function-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0px;
    margin-bottom: 1px;
    padding: 0px 5px 0px 5px;
    height: 18px;
    border: 1px solid #000;
    font-weight: bold;
    text-align: center;
    width: 200px;
    vertical-align: middle;
    -moz-user-select: none;
    text-shadow: 0px 1px 0px #000;
}

.file-list-function {
    border-radius: 3px;
    margin: 0px 1px 0px 1px;
    padding: 0px 2px 0px 2px;
    height: 18px;
    border: 1px solid #000;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    -moz-user-select: none;
    text-shadow: 0px 1px 0px #000;
}

.file-button-function {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    margin-bottom: 1px;
    padding: 0px 15px 0px 15px;
    height: 18px;
    border: 1px solid #000;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    -moz-user-select: none;
    text-shadow: 0px 1px 0px #000;
}

.download-button {
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0px;
    margin-bottom: 1px;
    padding: 0px 5px 0px 5px;
    height: 18px;
    border: 1px solid #000;
    font-weight: bold;
    text-align: center;
    width: 200px;
    vertical-align: middle;
    -moz-user-select: none;
    text-shadow: 0px 1px 0px #000;
}

.download-button-auto {
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0px;
    margin-bottom: 1px;
    padding: 0px 5px 0px 5px;
    height: 18px;
    border: 1px solid #000;
    font-weight: bold;
    text-align: center;
    width: auto;
    vertical-align: middle;
    -moz-user-select: none;
    text-shadow: 0px 1px 0px #000;
}

.listing-table td:nth-child(1) {
    text-align: center;
}

.listing-table th:nth-child(1) {
    text-align: center;
}

.widget-list .widget-list-item .widget-list-media.icon {
    width: 60px !important;
}

.btn-toolbar.sw-toolbar.sw-toolbar-bottom.justify-content-end {
    display: none;
}

.underline {
    background-size: 1px 1em;
    box-shadow: inset 0 -0.175em white, inset 0 -0.2em #000;
    font-weight: bold;
    padding: 10px 0px;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body {
    background-color: white;
}

.demandNoticeP {
    padding-left: 10px;
}

button.ui-datepicker-trigger {
    display: none !important;
}

#loading-image {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    display: table;
    margin-right: auto;
    margin-left: auto;
}

.fa-spinner {
    color: black;
}