.desktop_hide {
    display: none;
}

.sg-notification-box{
    font-size: 22px;
    line-height: 28px;
    box-sizing: border-box;
    /* display: none; */
    padding: 16px 16px 26px 16px;
    background: white;
    position: fixed;
    color: #333333;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 8px 15px rgba(34, 34, 34, 0.2);
    z-index: 90;
    text-align: center;
}

.sg_close {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

#informationBoxContainer {
    display: none;
    cursor: auto;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgb(0 0 0 / 70%);
  }

.h2, .h3, .h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.h2 {
    font-size: 24px;
    line-height: 36px;
}

.h3 {
    font-size: 20px;
    line-height: 30px;
}

.h4 {
    font-size: 17px;
    line-height: 27px;
}

.c_green {
    color: #00A21E;
    font-weight: 700;
}


.banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: -20px -60px 0;
}

.banner_image {
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 0;
    transform: translateX(-50%);
}

.banner_image__img {
    height: 100%;
    max-width: none;
}

.banner_container {
    width: 810px;
    max-width: calc(100% - 90px);
    padding: 25px 30px;
    background: #FFFFFF;
    box-shadow: 0px 1px 8px rgba(136, 136, 136, 0.5);

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner_form {
    margin: 12px auto 18px;
    display: flex;
    justify-content: space-between;
}

.banner_form ::-webkit-input-placeholder {
    color: #888888;
}

.banner_form ::-moz-placeholder {
    color: #888888;
}

.banner_form :-ms-input-placeholder {
    color: #888888;
}

.banner_form :-moz-placeholder {
    color: #888888;
}

.banner_form__input {
    width: calc(100% - 160px);
    line-height: 48px;
    padding: 0 0 0 16px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #DDDDDD;
    border-right: none;
    transition: border-color .3s ease;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.banner_form__input:hover {
    outline: none;
    border-color: rgb(11 70 150 / 50%);
}

.banner_form__input:focus {
    outline: none;
    border-color: #0B4696;
}

.banner_form__btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-color: #0B4696;
    color:white;
    font-size: 15px;
    line-height: 22px;
    width: 160px;
    border: none;
    text-align: center;
    max-width: 100%;
    padding: 13px 0;
    cursor: pointer;
    transition: color .3s ease, background-color .3s ease;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.banner_form__btn:hover {
    background-color: #FF6000;
    color: #FFF;
}

.banner_form__caption {
    font-size: 15px;
    line-height: 24px;
}


.delivery {
    margin: 40px auto 60px;
}

.delivery_details {
    margin-top: 24px;
    padding: 0 32px;
    border: 1px solid #DDDDDD;
}

.delivery_details__heading {
    padding: 32px 0;
    position: relative;
    cursor: pointer;
}

.delivery_details__heading p {
    display: inline-block;
    padding-left: 20px;
    margin-left: 17px;
    font-size: 15px;
    border-left: 1px solid #DDDDDD;
}

.delivery_details__heading p:first-of-type {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
}

.delivery_details__heading p:first-of-type strong {
    font-family: 'Roboto', sans-serif;
}

.delivery_details__heading strong {
    min-width: 170px;
    font-weight: 500;
    display: inline-block;
}

.delivery_details__heading .status {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.delivery_details__heading:after {
    content: url("chevron.svg");
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 0;
    transition: transform .3s ease;
    transform: translateY(-50%);
}

.delivery_details__heading.heading_error:after{
  display: none;
  opacity:0;
}

.delivery_details__heading.active:after {
    transform: translateY(-50%) scaleY(-1);
}

.delivery_details__content {
    border-top: 1px solid #DDDDDD;
    margin-bottom: 32px;
    display: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px 4px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

th:first-of-type {
    width: 100px;
}

td {
    color: #888888;
    font-size: 15px;
    padding: 27px 12px;
}

td:first-of-type {
    position: relative;
    text-align: center;
}

tbody tr:first-of-type td:first-of-type:before {
    content: none;
}

td:first-of-type:before {
    content: url("dots.svg");
    position: absolute;
    left: 50%;
    line-height: 0;
    bottom: calc(100% - 19px);
    transform: translateX(-50%);
}

td:first-of-type:after {
    content: "";
    width: 23px;
    height: 23px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1.5px solid #DDDDDD;
    transform: translate(-50%, -50%);
}

tbody tr:nth-child(odd) {
    background-color: #F6F6F6;
}

tr.ready td {
    color: #555555;
}

tr.ready td:first-of-type:before {
    content: url("dots__green.svg");
}

tr.ready td:first-of-type:after {
    border-color: #00A21E;
}

tr.ready td path {
    stroke: #00A21E;
}

tr.current td path {
    stroke: #FFFFFF;
}

tr.current td:first-of-type:after {
    background-color: #00A21E;
    z-index: 1;
}

tr.current td:first-of-type svg {
    position: relative;
    z-index: 2;
}

tr.current td:last-of-type {
    color: #00A21E;
}

.additional {
    margin: 40px auto 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.faq,
.benefits {
    width: calc(50% - 25px);
}

.faq .h4 {
    position: relative;
    padding-right: 50px;
}

.faq .h4:before,
.faq .h4:after {
    content: "";
    position: absolute;
    background-color: #333333;
    transition: transform .3s ease;
}

.faq .h4:before {
    right: 8px;
    top: 12px;
    width: 12px;
    height: 2px;
}

.faq .h4:after {
    right: 13px;
    top: 7px;
    height: 12px;
    width: 2px;
}

.benefits ul,
.faq ol {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.faq_question {
    cursor: pointer;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #DDDDDD;
}

.faq_question:last-of-type {
    margin-bottom: 0;
}

.faq_question.active .h4:before {
    transform: rotate(180deg);
}

.faq_question.active .h4:after {
    transform: rotate(90deg);
}

.faq p {
    display: none;
    font-size: 15px;
    line-height: 24px;
    color: #555555;
    margin-top: 16px;
    padding-right: 50px;
}

.faq a {
    color: #555555;
    white-space: nowrap;
    text-decoration: none;
}

.faq a:hover {
    text-decoration: underline;
}

.benefits li {
    position: relative;
    margin-top: 38px;
    padding-left: 48px;
    font-size: 15px;
    line-height: 24px;
}

.benefits li:before,
.benefits li:after {
    position: absolute;
}

.benefits li:before {
    content: "";
    width: 32px;
    height: 32px;
    left: 0;
    top: -5px;
    border-radius: 50%;
    color:white;
    background-color: #FF6000;
}

.benefits li:after {
    content: url("check__white.svg");
    left: 9px;
    top: 6px;
    line-height: 0;
}


.status {
    color: #FFFFFF;
    font-size: 11px;
    line-height: 16px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
}

.status.new_order {
    background-color: #3587EA;
}

.status.waiting_for_payment {
    background-color: #BA5FE4;
}

.status.order_paid {
    background-color: #9A30B5;
}

.status.in_progress {
    background-color: #FF6000;
}

.status.ready_to_send {
    background-color: #FF8C47;
}

.status.order_shipped {
    background-color: #FFA800;
}

.status.order_accepted {
    background-color: #D0E10F;
}

.status.order_issued {
    background-color: #9EE705;
}

.status.order_on_the_way {
    background-color: #8DCB0D;
}

.status.order_issued_for_delivery {
    background-color: #7AA91A;
}

.status.order_received {
    background-color: #00A21E;
}

.status.canceled {
    background-color: #FF0000;
}


@media(max-width: 1199px) {
    .banner {
        margin: -20px -16px 0;
    }
}

@media(max-width: 1024px) {
    th:first-of-type {
        width: 60px;
    }

    .banner_image {
        left: 30%;
    }

    .delivery_details__heading p {
        display: block;
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }

    .delivery_details__heading strong {
        min-width: 0;
    }

    .delivery_details__heading p:first-of-type {
        margin-bottom: 8px;
    }
}

@media(max-width: 768px) {
    .banner_image {
        left: 0;
    }

    .delivery {
        margin: 40px auto;
        padding-bottom: 40px;
        border-bottom: 1px solid #DDDDDD;
    }

    .delivery_details {
        padding: 0;
    }

    .delivery_details__heading {
        margin: 0 15px;
        padding: 15px 0 10px;
    }

    .delivery_details__heading:after {
        top: 24px;
        transform: none;
    }

    .delivery_details__heading.active:after {
        transform: scaleY(-1);
    }

    .delivery_details__heading strong {
        min-width: 145px;
    }

    .delivery_details__heading p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 4px;
    }

    .delivery_details__heading p:first-of-type {
        margin: 4px auto 35px;
        padding-bottom: 12px;
        padding-right: 50px;
        border-bottom: 1px solid #DDDDDD;
    }

    .delivery_details__heading .status {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-bottom: 4px;
    }

    .delivery_details__heading .status:before {
        content: "Aktualny status:";
        display: block;
        position: absolute;
        bottom: calc(100% + 5px);
        color: #333333;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 14px;
        width: 100%;
        left: 0;
        line-height: 22px;
        text-transform: none;
    }

    .delivery_details__heading strong.c_green {
        display: block;
    }

    .delivery_details__content {
        margin-bottom: 0;
        border-top: none;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        position: absolute;
        pointer-events: none;
        opacity: 0;
    }

    tbody tr {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        padding: 15px 0;
    }

    tbody tr:before,
    tbody tr:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    tbody tr:before {
        content: "";
        width: 25px;
        height: 25px;
        left: 15px;
        border-radius: 50%;
        border: 1.5px solid #DDDDDD;
    }

    tbody tr:after {
        content: url("check__grey.svg");
        left: 22px;
    }

    tr.ready:before {
        border-color: #00A21E;
    }

    tr.ready:after {
        content: url("check__green.svg");
    }

    tr.current:before {
        border-color: #00A21E;
        background-color: #00A21E;
    }

    tr.current:after {
        content: url("check__white.svg");
    }

    tr.current td:last-of-type {
        font-weight: 700;
    }

    tbody tr td:last-of-type {
        margin-top: 0;
    }

    td {
        position: relative;
        margin-top: 5px;
        padding: 0 15px 0 140px;
        line-height: 20px;
    }

    td .desktop_hide {
        display: inline;
    }

    .mobile_hide,
    td:first-of-type,
    td:empty {
        display: none;
    }

    td:before {
        position: absolute;
        top: 0;
        left: 60px;
        color: #333333;
        font-weight: 500;
        white-space: nowrap;
        font-family: 'Roboto', sans-serif;
    }

    td:not(:empty):nth-of-type(2):before { content: "Data:"; }
    td:not(:empty):nth-of-type(3):before { content: "Godzina:"; }
    td:not(:empty):nth-of-type(4):before { content: "Status:"; }
    td:not(:empty):nth-of-type(5):before { content: "Status:"; }


    .additional {
        flex-direction: column;
        margin: 40px auto;
    }

    .faq, .benefits {
        width: 100%;
    }

    .benefits {
        margin-top: 40px;
    }

    .benefits li {
        margin-top: 30px;
    }
}

@media(max-width: 580px) {
    .h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .h4 {
        font-size: 14px;
        line-height: 22px;
    }
    .banner_form__input,.banner_form__btn{
      border-radius:3px;
    }

    .banner {
        height: auto;
    }

    .banner_image {
        display: none;
    }

    .banner_container {
        max-width: 100%;
        width: auto;
        margin: 0 15px;
        padding: 24px 0;
        position: static;
        box-shadow: none;
        transform: none;
        border-bottom: 1px solid #DDDDDD;
    }

    .additional,
    .banner_form {
        margin: 24px auto;
    }

    .banner_form {
        display: block;
    }

    .banner_form input {
        width: 100%;
        box-sizing: border-box;
        padding: 0 16px;
        line-height: 46px !important;
        border: 1px solid #DDDDDD;
    }

    .banner_form button {
        display: block;
        width: 100%;
        margin-top: 16px;
    }

    .delivery {
        margin: 24px auto;
        padding-bottom: 24px;
    }

    .delivery .h2 {
        font-size: 17px;
        line-height: 27px;
    }

    .delivery_details {
        margin-top: 16px;
    }

    .banner_form__caption,
    .faq p,
    .benefits li {
        font-size: 13px;
        line-height: 20px;
    }

    .benefits {
        margin-top: 36px;
    }

    .benefits li:before {
        top: -6px;
    }

    .benefits li:after {
        top: 5px;
    }

    td {
        font-size: 13px;
        margin-top: 0;
        padding: 0 15px 0 130px;
    }

    td:before {
        font-size: 12px;
        line-height: normal;
    }
}
