.pricetable {
    display: flex;
    /*align-items: flex-end;*/
    position: relative;
    flex-wrap: wrap;
}
.pricetable .pt-table,
.pricetable .pt-details {
    width: 100%;

}

@media screen and (min-width: 1024px) {
    .pricetable .pt-table {
        width: 75%;
    }
    .pricetable .pt-details {
        width: 25%;
    }
}

.pricetable .pt-input {
    position: relative;
}
.pricetable .pt-input .material-icons {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    font-size: 18px;
    color: #2097e2;
}
.pricetable .pt-input input {
    box-shadow: none;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    color: #213172;
    font-weight: 600;
    padding: 1.5rem 2.75rem;
}
.pricetable .pt-input:after {
    content: "";
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 18px;
    height: 18px;
    background: center center / 18px 18px no-repeat url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxOCAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNSA4bDQgLTVsNCA1em0wIDJsOCAwbC00IDV6IiBmaWxsPSIjNjY2Ii8+PC9zdmc+");
}

/*
<svg version="1.1" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M5 8l4 -4l4 4zm0 3l8 0l-4 4z" fill="#213172"/></svg>
*/

.pricetable table {
    margin: 0 !important;

}

.pricetable table,
.pricetable thead,
.pricetable tbody,
.pricetable tfoot,
.pricetable tr,
.pricetable th {
    border: none;
    background: none;
}
.pricetable th.pt-nav {
    padding: .625rem 0 .5rem 0;
}

.pricetable th,
.pricetable td {
    text-align: center;
}

.pricetable td {
    background-color: white;
    border: 1px solid #ebebeb;
    color: #ccc;
    height: 70px;
}
.pricetable td.pt-lbl,
.pricetable td.pt-spc {
    background-color: #fafafa;
}
.pricetable th,
.pricetable td.pt-lbl {
    font-weight: 600;
    color: #213172;
}
.pricetable th a[href] {
    color: inherit;
}
.pricetable td.pt-spc {
    width: 24px;
}

.pricetable td .pt-price,
.pricetable td .pt-price-from {
    display: block;
}
.pricetable .pt-price {
    color: #213172;
    font-size: 1.125em;
    font-weight: bold;
}
.pricetable .pt-price-discount {
    color: #2097e2;
}
.pricetable .pt-price-from {
    font-size: .85em;
    color: rgba(33, 49, 114, 0.25); /*213172 33, 49, 114 */
    text-decoration: line-through;
}
.pricetable .pt-price-date {
    font-weight: bold;
    color: rgba(33, 49, 114, 0.5);
}
.pricetable td.pt-selectable:hover {
    background-color: #fafafa;
    cursor: pointer;
}
.pricetable td.pt-selected {
    border: 2px solid #2097e2;
}

.pricetable .pt-details {
    display: flex;
    flex-wrap: nowrap;
    padding-top: 1rem;

}
.pricetable .pt-details .headline {
    font-family: 'condor';
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 0;
    display: none;

}
.pricetable .pt-details .info {


    color: #213172;
    margin-bottom: 0;
    line-height: 1.25;
    /* width: 66.21317267%; */
}
.pricetable .pt-details .prices {
    font-family: 'condor';
    text-align: right;
    color: #213172;
    margin-bottom: 0;
    line-height: 1.25;
    /* width: 33.33333%; */
}
.pricetable .pt-details .button {
    width: 100%;
    white-space: nowrap;
}

.pricetable .pt-details.fixed {
    position: fixed;
    bottom: 0;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw !important;
    padding: 10px 10px;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #eee;
}

@media screen and (min-width: 1024px) {
    .pricetable .pt-details:not(.fixed) {
        display: block;
        text-align: right;
        padding-left: 1rem;
        justify-content: flex-end;
        padding: 10px 40px;
    }
    .pricetable .pt-details .headline,
    .pricetable .pt-details .info,
    .pricetable .pt-details .prices {
        width: 100%;
        margin-bottom: 1rem;
    }
    .pricetable .pt-details.fixed .headline,
    .pricetable .pt-details.fixed .info,
    .pricetable .pt-details.fixed .prices {
        padding: 0 20px;
        margin-bottom: 0;
    }
    .pricetable .pt-details .headline {
        display: block;
    }
    .pricetable .pt-details .button {
        width: auto;
    }
    .pricetable .pt-details .button i {
        margin-right: 0;
    }
}
.pricetable .pt-details.fixed:empty {
    display: none;
}

.pricetable .pt-preloader {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(246, 246, 248, 0.9);
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}
.pricetable .pt-preloader:before,
.pricetable .pt-preloader:after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    border-radius: 50%;
    border: 2px solid transparent;
}
.pricetable .pt-preloader:before {
    border-color: rgba(0, 0, 0, 0.05);
}
@keyframes pt-spinner {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.pricetable .pt-preloader:after {
    border-top-color: #1d8af0;
}
.pricetable.loading .pt-preloader {
    opacity: 1;
}
.pricetable.loading .pt-preloader:after {
    animation: pt-spinner 1s linear infinite;
}

.pricetable .pt-foot {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.pricetable .pt-foot a[href] {
    color: #2097e2;
}
.pricetable .pt-foot i.fas {
    font-size: 0.85em;
}
@media screen and (min-width: 768px) {
    .pricetable tfoot {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    .pricetable table {
        font-size: 14px;
    }
    .pricetable .pt-details {
        display: none;
    }
    .pricetable .pt-details.fixed {
        display: flex;

    }
    .pricetable .pt-details.fixed .prices {
        display: none;
    }
    .pricetable .pt-details .info {
        font-size: 14px;
    }
    .pricetable .pt-details .button {
        width: auto;
    }

    .pricetable td {
        font-size: 12px;
    }
    .pricetable .pt-price-date {
        line-height: 1.2;
    }
    .table-info tbody th, table tbody td {
        padding: 3px 5px;
    }
    .pricetable th {
        font-size: 12px;
    }

}
