html {
    font-size: 0.75em;
}

#container {
    position: relative;
    margin-top: 3rem;
}

.headText{
    font-size: 2.3rem;
}

.filter {

    max-width: 25px;
    max-height: 25px;
    position:absolute;
}

h5 {
    font-size: 14px;
}

h2 {
    font-size: 14px;
}

p {
    padding: 2px;
}

hr {
    background-color: black;
}

.underline {
    text-decoration: none;
    border-bottom: 2px solid #dc3545;
}

.center {
    margin-top: 15%;
}

.fa-pencil,
.fa-trash-o {
    cursor: pointer;
}

/* -- Nav -- */
@media (max-width: 400px) {
    .navbar-brand {
        width: 175px;
    }
}

@media (min-width: 768px) {
    .navbar-nav>li {
        border-right: 2px solid white;
    }
}

.navbar-nav>li:last-child {
    border: none;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    height: 100%;
    padding: 10px;

}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: #97a2ac;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #292b2c;
}


/* -- Arrow -- */
@media (max-width: 768px) {
    .arrow {
        font-size: 65px;
    }
}

@media (min-width: 768px) {
    .arrow {
        font-size: 115px;
    }
}

.arrow {
    color: #dc3545;
}

.arrow:hover {
    color: #c82333;
}


/* -- Datatable -- */
.searchButton {
    width: 155px;
    margin-bottom: 20px;
}

.dt-buttons {
    max-width: 160px;
    min-width: 155px;
    margin-top: 9px;
}

/*.dataTables_filter{
    display: none;
}*/

/*.sorting_disabled {
    width: 40px;
}*/

.form-inline {
    display: block;
}

.dataTables_scrollHead {
    display: block;
}

@media (max-width: 992px) {
    .searchInDataTable {
        display: none;
    }
}

.paginate_button a {
    color: #666;
    text-decoration: none;
    background-color: transparent;
}

.paginate_button.active {
    border: 1px solid #979797 !important;
    background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 0.25em;
    padding-right: 20px;
}

.dataTables_wrapper .dataTables_length p.lenghtMenu {
    padding-left: 20px;
    padding-right: 5px;
    padding-top: 14px;
    /*margin-right: 15px;*/
}

.dataTables_wrapper .dataTables_info {
    padding-top: 0px;
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 20px;
}

.btn-group {
    float: left;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .dataTables_length {
        padding-left: 15px;
    }

    .dataTables_wrapper .dataTables_length::before {
        content: '\A';
        white-space: pre;
    }

    .dataTables_wrapper .dataTables_info {
        text-align: left;
    }

    .dataTables_wrapper .dataTables_paginate {
        clear: both;
        float: right;
    }

    /*button*/
    .btn-group {
        display: flex;
        justify-content: center;
        float: none;

        margin-top: 25px;
        margin-left: 5px;
    }

    /*page*/
    .dataTables_wrapper .dataTables_paginate {
        float: left;
        padding-left: 5px;
    }
}

@media (max-width: 641px) {
    .btn-group {
        margin-top: 8px;
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .btn-group {
        margin-top: 46px;
    }
}

@media (max-width: 641px) {
    .form-inline label {
        float: left;
    }
}

@media (max-width: 575px) {
    .dataTables_wrapper .dt-buttons.btn-group {
        padding-left: 0px;
    }

    .dataTables_wrapper .dataTables_info {
        padding-left: 0px;
    }


}

.counter{
    text-align: center;
    width: 75px;
}

/* Loader */
.loader {
    position: relative;
    width: 5em;
    height: 5em;
    transform: rotate(165deg);
}

.loader:before {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* position to center */
.loader {
    position: absolute;
    top: calc(50vh - 2.5em);
    left: calc(50% - 2.5em);
}


/**
 * disable background
 */
.loader-mask {
    position: absolute;
    z-index: 9794;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}

.nav-link img {
    height: 50px;
}

#adres label {
    font-size: 13px;
}

/* Styling for the calculator */

.calculator h1 {
    margin: 0 auto;
    width: 950px;
    text-align: center;
}

.calculatorForm {
    margin: 0 auto;
    margin-top: 20px;
    width: 550px;
}

.calculatorForm input[type=submit] {
    font-weight: bold;
}

.calculator table {
    width: 550px;
    margin: 0 auto;
    margin-top: 20px;
    border-collapse: collapse;
    border-bottom: 2px solid black;
    border-top: 2px solid black;
}

.calculator .dates {
    border: none;
}

.calculator .information tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.calculator .dates tr:nth-child(odd) {
    background-color: #ffff;
}


.calculator .information th,
.calculator .information td {
    border: 1px solid #ddd;
}

.calculator td,
th {
    padding: 8px 10px;
    text-align: left;
}

.calculator td {
    width: 125px;
}

.calculator .dates th,
.calculator .dates td {
    border: none;
    text-align: left;
}

.calculator table tbody tr.black {
    background-color: #000000 !important;
    color: #FFFFFF;
}

.calculator table tbody tr.platinum {
    background-color: #00FFFF !important;
}

.calculator table tbody tr.gold {
    background-color: #FFD700 !important;
}

.calculator table tbody tr.silver {
    background-color: #F2F2F2 !important;
}

.calculator table tbody tr.bronze {
    background-color: #B08D57 !important;
}

/*.calculator table tbody tr td.price{
    background-color: #6D9EEB !important;
    color: white !important;
    opacity: 0.6;
}*/

#companyNameLoad {
    text-decoration: underline;
}


.cell {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    box-sizing: border-box;
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.cell-overlay {
    position: absolute;
    background-color: #00000000;
    margin-top: -15px;
}

.cell-overlay:hover {
    background-color: #bbbbbb2b;

}

.cell-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px
}

.subcell{
    position: relative;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    img{
        border: solid 1px red;
        border-radius: 7px;
    }
}

.subcell-grid{
    display: grid;
    grid-template-columns: 75px 75px;
    grid-template-rows: 75px 75px;
}

.subcell-overlay {
    position: absolute;
    background-color: #00000000;
}

.subcell-overlay:hover {
    background-color: #bbbbbb2b;
}

.subcell-grid > a:nth-child(1){ /* row 1 col 1 */
  justify-self: start;
  align-self: start;
}
.subcell-grid > a:nth-child(2){ /* row 1 col 2 */
  justify-self: end;
  align-self: start;
}
.subcell-grid > a:nth-child(3){ /* row 2 col 1 */
  justify-self: start;
}
.subcell-grid > a:nth-child(4){ /* row 2 col 2 */
  justify-self: end;
}

@media (max-width: 1375px) {
    .cell-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 875px) {
    .cell-grid {
        grid-template-columns: 1fr;
    }

    .cell {
        margin: auto;
    }
}

.portal-background {
    background-image: url(/images/portal-bg-01.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    width: 100%;
    height: 100%;
}

.renew-popups {
    display: none;
    position: fixed;
    z-index: 8;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.renew-popups-content {
    margin: 150px auto;
    padding: 50px 50px 30px;
    background-color: #fff;
    min-height: fit-content;
    width: 65%;
    border-radius: 15px;
    position: relative;
}

#renewal-close {
    color: #aaaaaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

#renewal-close:hover,
#renewal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.renewal-text {
    font-size: large;
}

#renewal-msg,
#bestelling-msg,
#bestelling-error {
    font-size: medium;
    width: 100%;
}

.renewal-ok {
    border: solid;
    border-radius: 10px;
    border-color: green;
    padding: 10px;
}

.renewal-error {
    border: solid;
    border-radius: 10px;
    border-color: red;
    padding: 10px;
}

.errorFlash {
    animation: errorFlash 1s;
    -webkit-animation: errorFlash 1s;
}

tr.winkelmand-row > td{
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.bestellen-body{
    font-size: 14px;
}

#bestellen-content > tr:nth-child(even){
    background-color: #00000010;
}

#bestellen-content > tr:last-child{
    background-color: #ffffff;
}


@-webkit-keyframes errorFlash {
    from {
        background-color: #ff000030;
    }

    to {
        background-color: #ffFFFF;
    }
}

@keyframes errorFlash {
    from {
        background-color: #ff000030;
    }

    to {
        background-color: #ffFFFF;
    }
}

.renew-btn {
    position: relative;
    height: 30px;
    width: 30px;
    background-size: contain;
}

.active-renew-btn {
    background-image: url(/images/renew-grey.png);
    background-color: rgba(41, 237, 11, 0.878);
}
.renew-btn-color {
    background-color: rgba(41, 237, 11, 0.878);
}
.renew-inactive-btn-color {
    background-color: rgba(255, 153, 0, 0.8);
}

.active-change-btn {
    background-image: url(/images/info.png);
}

.inactive-renew-btn {
    background-image: url(/images/renew-grey.png);
    background-color: rgba(186, 186, 186, 0.531);
}

.completed-renewal {
    background-image: url(/images/renew-grey.png);
    background-color: rgba(255, 153, 0, 0.8);
    background-repeat: no-repeat;
}

.renewal-product-error {
    background-image: url(/images/renew-grey.png);
    background-color: #dc3545;
    background-repeat: no-repeat;
}

@media (max-width:600px) {
    .submit-btn {
        width: 100%;
        margin-top: 5px;
    }

    #leesMeerButton {
        font-size: 5px;
    }

    .popupMessage {
        font-size: 15px;
    }

    .renew-popups-content {
        padding: 20px 20px 30px;
    }
}

.submit-btn {
    float: right;
}

.renewal-form {
    margin-bottom: 20px;
}

.popupmsg {
    visibility: hidden;
    width: max-content;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 6px;
    padding: 15px;
    position: absolute;
    z-index: 4;
    bottom: -40%;
    left: 140%;
    box-shadow: 0px 0px 5px 3px #00000010;
    font-size: medium;
}

.popupmsg::after {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    right: 100%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

/* .highlight-row{
    background-color: yellow !important;
} */
.taalcontainer {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
}

.taalbutton {
    height: 15px;
    width: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 1px;
    border-radius: 2px;
}

#renewal-verleng-aantal {
    width: 70px;
}

.popupMessage {
    width: 100%;
    max-width: 100%;
    min-height: 150px;
    height: fit-content;
    margin-bottom: 25px;
    border-radius: 15px;
    background-color: white;
    border: solid #5b5e62ff 2px;
    display: flex;
    font-size: 40px;
    color: #c82333;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 25px;
    box-shadow: 0px 0px 5px 3px #3c3c3c41;
    line-height: 40px;
}

#leesMeerButton {
    font-size: 15px;
    padding: 5px;
    position: absolute;
    right: -8px;
    bottom: -8px;
    cursor: pointer;
    width: 10%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bigDiv {
    margin: auto;
    width: 75%;
    height: 50%;
    margin-top: 12.5%;
}

.bigDivWMessage {
    margin: auto;
    width: 56%;
    margin-top: 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#messageNL,
#messageNL_lang,
#messageEN,
#messageEN_lang,
#messageFR,
#messageFR_lang {
    min-width: 100px;
    max-width: 600px;
    /* width: 10%; */
    margin-left: 10px;
    resize: none;
}
.formLabel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.dateMessage {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}
.align {
    display: flex;
}
@media only screen and (max-width: 1650px) {
    .popupMessage {
        font-size: 25px;
    }
    #leesMeerButton{
        font-size: 15px;
        min-width: 90px;
    }
}
@media only screen and (max-width: 600px) {
    .popupMessage {
        font-size: 15px;
    }
    #leesMeerButton{
        font-size: 5px;
        min-width: 30px;
    }
}
.-row {
    margin-right: 15px;
    margin-left: 9px;
}

#productTabladen .tabs{
    display: inline-flex;
    position: relative;
    bottom: 0px;
    background-color: #FFFFFF;
    padding: 0px 10px;
}
#productTabladen .tabs a{
    position: relative;
    bottom: 0px;
    cursor: pointer;
    padding: 20px;
    border: #dc3545 solid 2px;
    border-bottom: #00000000;
    border-radius: 5px 5px 0px 0px;
    background-color: #00000053;
    font-weight: bold;
    margin-bottom: -1px;
}
.activeTab{
    padding: 25px 25px 20px 25px !important;
    margin: -5px -5px -3px -5px !important;
    background-color: inherit !important;
    z-index: 5;
}
.productTab{
    border-top: 2px solid #dc3545;
    padding-top: 10px;
}
td > input{
    max-width: 100%;
}
td > select{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

input[name="productCode"]{
    width: 100%;
}
