
/* mostly placeholder */
:root {
    --bgcolor: #f4f4f4;
    --containertext: #31708f;
    --containerbg: #d9edf7;
    --containerborder: #bce8f1;
}

textarea {
    resize: none;
}

#bleu {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.centertext {
    text-align: center;
}

.header-billing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-basis: 1;
}

#billing-summary {
    justify-self: center;
}

th.sorted-asc {
    background-color: #e7ecf0;
}
th.sorted-desc {
    background-color: #e7ecf0;
}

th.sorted-asc::after {
    content: " ↓";
}

th.sorted-desc::after {
    content: " ↑";
}

thead tr {
    cursor:pointer;
}

thead tr th {
    user-select: none;
}

.product {
    width: 400px;
}

thead tr th:hover {
    background-color: #e7ecf0;
}

.renew-on {
    color: #0e770e;
}

.renew-off {
    color: #830909;
}

.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: fit-content;
    margin: 1em auto;
    margin-bottom: 0;
    padding: 2px 20px;
    background-color: #e7ecf0;
}
.pagination a {
    text-decoration:none;
}

.pagination a:hover {
    text-decoration: underline;
}

.current-page {
    padding: 0;
    margin: 0;
}

.billing-method {
    padding: 1em;
    background-color: #e7ecf0;
    width: 25%;
    border-radius: 8px;
    font-size: 80%;
}


.buntainer {
    position: relative;
}

.money {
    overflow: hidden;
    height: auto;
    width: 20%;
    transform: rotate(90deg);
    position: absolute;
    z-index: -1;
}

@media (max-width:575px) {
    .money {
        display: none !important
    }
}

@media (min-width:576px) {
    .money {
        top: 8rem;
        right: -4.4rem;
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width:768px) {
    .money {
        top: 8rem;
        right: -5.7rem;
    }
}

@media (min-width:1024px) {
    .money {
        top: 8rem;
        right: -7.2rem;
    }
}

@media (min-width:1280px) {
    .money {
        top: 8rem;
        right: -8.6rem;
    }
}

@media (min-width:1536px) {
    .money {
        top: 8rem;
        right: -10rem;
    }
}