/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.pod-iframe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background: #ffffff;
}

.pod-gertsch-info-btn {
    cursor: pointer;
}

.pod-gertsch-info-btn .info-img {
    display: inline-block !important;
}

.pod-order-reference {
    margin-bottom: 10px;
}

.pod-own-order-number {
    font-weight: bold;
    margin-bottom: 10px;
}

.transaction-details {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff26;
    z-index: 999999999;
    text-align: left;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.transaction-details.order-item-detail {}

.transaction-details.showed {
    display: flex;
}

.transaction-details .container-detail {
    width: 600px;
    max-height: 600px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 7px 3px #d6d6d6;
}

.transaction-details .container-detail .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: auto;
}

.transaction-details .container-detail .content .item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}

.transaction-details .container-detail .content .item:last-child {
    border-bottom: none;
}

.transaction-details .container-detail .content .item .column {
    flex: 0.5;
    padding: 10px 10px 10px;
}

.transaction-details .container-detail .content .item .column:first-child {
    font-weight: bold;
}

.transaction-details .container-detail .action {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid #f1f1f1;
}

.transaction-details .container-detail .action .close-btn {
    border: 1px solid #d1d1d1;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block !important;
}

.transaction-details .container-detail .action .close-btn:hover {
    background: #f1f1f1;
}

.transaction-details .container-detail ::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

.transaction-details .container-detail ::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 5px;
}

.transaction-details .container-detail ::-webkit-scrollbar-track {
    background: #cccccc;
}

@media (max-width: 575.98px) {
    .transaction-details .container-detail {
        width: 95%;
        height: 95%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .transaction-details .container-detail {
        width: 95%;
        height: 95%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (min-width: 1200px) {}