@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root {
    --logo-bg: #B2CBEA;
    --body-bg: #EEF7FE;
    --nav-hover: #E7E7E7;
    
    --blue-middle: #B4E2F2;
    --dark-blue: #006599;
    --light-blue: #20AAE9;
    --color-yellow: #FFB145;
    --color-green: #06D7A0;
    --color-green-light: #bcebdf;
    --color-orange: #cc7f0c;
    --color-orange-light: #fcf2e3;
    --color-red: #D33031;
    --color-black:#000;
    --color-white: #fff;
    --color-red:#dc3545;
    --color-red-light:#fcd4d8;
    --color-light-grey:#d7dade;

}


body {
    background-color: var(--body-bg);
}

::-webkit-scrollbar{
    width: 0.5rem;
}
::-webkit-scrollbar-track{
    background-color: var(--color-white);
}
::-webkit-scrollbar-thumb{
    background-color: var(--logo-bg);
    border-radius: 10px;
    border: 1px solid transparent;
    background-clip: content-box;
}

/* Nav Start */
.navbar {
    padding: 12px 0 0 0;
}
/* .nav-content-main {
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0;
} */
.navbar-brand {
    padding: 0;
}
.navbar-brand .logo {
    padding: 9px 42px 9px 42px;
   
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 6px;
}
.navbar-brand .logo img{
    max-width:180px;
}
.nav-item {
    padding-top: 19px;
}
.nav-item .nav-link {
    color: var(--dark-blue);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    padding: 0px 12px 12px 12px;
    margin-right: 8px;
}
.nav-item .nav-link.active {
    border-bottom: 3px solid var(--color-yellow);
    color: var(--dark-blue);
}

.nav-item .btn-secondary {
    color: var(--dark-blue);
    padding: 0px 12px 12px 12px;
    background-color: transparent;
    border: 0;
    font-weight: 500;
    margin-right: 6px;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    transition: 0.3s ease;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border: 0;
    background-color: transparent;
    color: var(--dark-blue);
    border-bottom: 3px solid var(--color-yellow);
}
.wallet-price {
    display: flex;
    align-self: center;
}

.navbar .dropdown-item.active, .dropdown-item:active {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--dark-blue);
}
.wallet-price span:first-child i {
    font-size: 22px;
}
.wallet-price span:last-child {
    color: var(--color-green);
   /* margin-left: 12px; */
    font-weight: 500;
}

.cart span:last-child {
    color: var(--color-yellow);
}
.nav-right-part {
    display: flex;
    align-items: center;
}
.nav-right-part .saldo-btn {
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    padding: 6px 18px 6px 18px;
    color: var(--color-white);
    border-radius: 999px;
    margin-left: 18px;
}
.nav-right-part .saldo-btn:focus {
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    padding: 6px 18px 6px 18px;
    color: var(--color-white);
    border-radius: 999px;
}

.bas-kr {
    display: flex;
    align-items: center;
    margin-left: 18px;
}
.bas-kr span:first-child {
    display: inline-block;
    padding: 3px;
    background-color: var(--dark-blue);
    border-radius: 50%;
}
.bas-kr .dropdown-menu {
    max-width: 50px !important;
}
.bas-kr .dropdown-menu .dropdown-item {
    padding-right: 12px;
}

.country ul:first-child {
    display: inline-block;
    padding: 2px;
    margin-top:-50px;
}
.country .navbar-nav .nav-item {
    padding-top: 6px;
}
.country {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.country img {
border-radius: 50px;
}

@media (max-width: 1562px) {
    .navbar-collapse {
        flex-wrap: wrap !important;
    }
}

.bas-kr-mobile{
    display:none !important;
}
@media screen and (max-width:1400px) {
    .nav-right-part {
        display: flex;
    }

    .saldo-btn{
        margin-left:20px !important;
    }

    .nav-right-part .country{
        display:none !important;
    }
    .bas-kr{
        display:none !important;
    }
    .bas-kr-mobile{
        display:block !important;
    }
    .nounderline{
        display: flex;
        float:left;
    }
    .nav-item .btn-secondary {
        margin-right: 3px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .nav-right-part .saldo-btn {
        margin-left: 0;
    }
    .bas-kr {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    .bas-kr .navbar-nav .nav-item {
        padding-top: 6px;
        text-align: center;
    }
    .country .navbar-nav .nav-item {
        padding-top: 6px;
    }
    .country {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }
    .country .nav-item {
        text-align: center;
    }
    .wallet-price-main {
        margin-top: 6px;
        margin-bottom: 0;
    }
}

@media screen and (max-width:1400px) {
.megamenu .dropdown-menu {
    min-width: 100% !important;
    max-width: 100% !important;
    font-size: 12px;
    padding: 10px;
}
}
/* Dashboard Content Start */
#dashboardcontent {
    padding-top: 24px;
    padding-bottom: 24px;
}
#dashboardcontent h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--logo-bg);
}
.dashboard-content-main {
    background-color: var(--color-white);
    border-radius: 18px;
}
.dashboard-content-main .dashboard-content-head {
    padding: 18px 26px 18px 26px;
    border-bottom: 2px solid var(--body-bg);
}
.dashboard-content-main .dashboard-content-head h3 {
    font-size: 20px;
    color: var(--dark-blue);
}
.dashboard-content-search {
    padding: 18px 26px 18px 26px;
    border-bottom: 2px solid var(--body-bg);
}
.dashboard-content-search .form-control {
    border: 2px solid var(--blue-middle);
    background-color: var(--body-bg);
    padding: 12px 0 12px 24px;
    border-radius: 32px;
}
.dashboard-content-search .form-control::placeholder {
    color: var(--logo-bg);
}

.dashboard-content-accordion {
    padding: 18px 0 10px 0;
}
.dashboard-content-body {
    padding: 18px 0 10px 0;
}

.content-accordion-head span {
    color: var(--logo-bg);
    font-weight: 500;
}
.content-accordion-head span:first-child {
    margin-left: 11%;
    width: 65%;
}
.content-accordion-head span:last-child {
    margin-left: 8%;
}
.dashboard-accordion .accordion-item {
    border: 0;
    margin-bottom: 4px;
}
.dashboard-accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--body-bg);
}
.dashboard-accordion .accordion-header .btn:last-child {
    font-size: 14px;
    padding: 2px 22px 2px 22px !important;
    background-color: var(--light-blue);
    white-space: nowrap;
    height: 32px;
    border: 0;
    color: var(--color-white);
    border-radius: 32px;
    margin-right: 14px;
}
.dashboard-accordion .accordion-header .btn:active {
    background-color: var(--light-blue);
}
.dashboard-accordion .accordion-button {
    background-color: var(--body-bg);
    color: var(--dark-blue);
    font-weight: 500;
    display: flex;
    align-items: center;
} 
.dashboard-accordion .accordion-button span{
    margin-left: 6.5%;
    width: 65%;
}
.dashboard-accordion .accordion-button:focus {
    box-shadow: none;
}
.dashboard-accordion .accordion-button::after {
    display: none;
}
.dashboard-accordion .accordion-button::before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    transition: 0.3s ease-in-out;
}
.dashboard-accordion .accordion-button:not(.collapsed)::before {
    transform: var(--bs-accordion-btn-icon-transform);
}
/* .dashboard-accordion .accordion-button span:nth-child(2) {
    margin-left: 25%;
} */
.dashboard-accordion .accordion-body span {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--dark-blue);
    font-weight: 500;
}


@media screen and (max-width:576px) {
    .dashboard-accordion .accordion-button span {
        margin-left: 6.5%;
        width: 50%;
    }
    .dashboard-accordion .accordion-button span:last-child {
        margin-left: 22%;
    }
}

.dashboard-accordion {
    height: 425px;
    overflow-y: scroll;
}

.dashboard-accordion::-webkit-scrollbar{
    width: 0.6rem;
}
.dashboard-accordion::-webkit-scrollbar-track{
    background-color: var(--gray-font-color);
}
.dashboard-accordion::-webkit-scrollbar-thumb{
    background-color: var(--blue-middle);
    border-radius: 6px;
    border: 1px solid transparent;
    background-clip: content-box;
}



/* Pakket Table Main */
.pakket-table-main {
    padding: 14px 28px 14px 28px;
    height: 768px;
    overflow-y: scroll;
}
.pakket-table-main::-webkit-scrollbar{
    width: 0.6rem;
}
.pakket-table-main::-webkit-scrollbar-track{
    background-color: var(--gray-font-color);
}
.pakket-table-main::-webkit-scrollbar-thumb{
    background-color: var(--blue-middle);
    border-radius: 6px;
    border: 1px solid transparent;
    background-clip: content-box;
}

.pakket-table {
    border-radius: 18px;
    background-color: var(--body-bg);
}
.pakket-table .pakket-table-head {
    background-color: var(--dark-blue);
    color: var(--color-white);
    padding: 8px 24px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    font-size: 14px;
}

.pakkettable {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    font-size: 14px;
}
.pakkettable tr:first-child td {
    color: var(--dark-blue);
    padding: 4px;
    border-bottom: 2px solid var(--logo-bg);
    font-weight: 300;
}
.pakkettable tr:nth-child(2) td {
    padding-top: 12px;
}
.pakkettable tr td {
    padding: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    color: var(--dark-blue);
    font-weight: 500;
}
.pakkettable tr td:first-child {
    padding-left: 24px;
    width: 50%;
}
.pakkettable-price div:first-child {
    text-align: end;
    padding-top: 10px;
    border-top:  2px solid var(--logo-bg);
    font-size: 24px;
    color: var(--dark-blue);
    font-weight: bolder;
    padding-right: 16px;
    margin-top: 6px;
}

.pakkettable-price-btn {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 8px;
    margin-bottom: 3px;
}
.pakkettable-price-btn .btn {
    padding: 4px 14px 4px 14px;
    color: var(--color-white);
    border-radius: 32px;
    width: 100%;
}
.pakkettable-price-btn .btn:first-child {
    background-color: var(--light-blue);
    border: 2px solid var(--light-blue);
    color: var(--color-white);
}
.pakkettable-price-btn .btn:first-child:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--color-white);
}
.pakkettable-price-btn .btn:last-child {
    margin-left: 12px;
    background-color: var(--color-green);
    border: 2px solid var(--color-green);
    color: var(--color-white);
}
.pakkettable-price-btn .btn:last-child:hover {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}



/* Mijn Links Start */
.mijnlinks-dropdown .dropdown .btn {
    padding: 0;
    background-color: transparent;
    border: 0;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 20px;
}
.mijnlinks-dropdown {
    padding: 18px 26px;
}

.dashboard-content-main h6 {
    padding: 2px 26px 0 26px;
    margin-bottom: 0;
    color: var(--dark-blue);
}
.mijnlinks-table-main {
    overflow-x: auto;
}
.mijnlinks-table {
    width: 100%;
    font-size: 14px;
    margin-top: 6px;
    min-width: 740px;
    overflow-x: auto;
}
.mijnlinks-table-main::-webkit-scrollbar{
    width: 0.5rem;
}

.mijnlinks-table-main::-webkit-scrollbar-thumb{
    background-color: var(--blue-middle);
    border-radius: 6px;
    border: 1px solid transparent;
    background-clip: content-box;
}
.mijnlinks-table-main {
    padding-left: 20px;
    padding-right: 20px;
}
.mijnlinks-table th {
    padding-left: 6px;
    padding-right: 6px;
    color: var(--dark-blue);
    font-weight: 600;
    border-bottom: 1px solid var(--body-bg);
    vertical-align: middle;
}
.mijnlinks-table td {
    padding: 6px 6px 6px 6px;
    vertical-align: middle;
    color: var(--dark-blue);
    font-weight: 400;
}
.mijnlinks-table  a {
    color: var(--light-blue);
    text-decoration: none;
}
.mijnlinks-table-btn {
    padding-left: 26px;
    padding-right: 26px;
    margin-top: 8px;
    padding-bottom: 14px;
}
.mijnlinks-table-btn .btn {
    width: 100%;
    background-color: var(--light-blue);
    border-radius: 32px;
    border: 1px solid var(--light-blue);
    color: var(--color-white);
}
.mijnlinks-table-btn .btn:hover {
    background-color: var(--light-blue);
    color: var(--color-white);
    border: 1px solid var(--light-blue);
}

.verlopen-links {
    padding: 18px 26px 12px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.verlopen-links-content h4 {
    color: var(--color-red);
    line-height: 18px;
    font-size: 20px;
}
.verlopen-links-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-blue);
}
.verlopen-links-btn .btn {
    color: var(--color-white);
    padding: 4px 18px 4px 18px;
    background-color: var(--color-red);
    border: 1px solid var(--color-red);
    border-radius: 32px;
    margin-left: 12px;
}
.verlopen-links-btn .btn:hover {
    background-color: var(--color-red);
    border: 1px solid var(--color-red);
    color: var(--color-white);
}
.verlopen-links-two h4 {
    color: var(--color-yellow);
}
.verlopen-links-two .verlopen-links-btn .btn {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}
.verlopen-links-two .verlopen-links-btn .btn:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}





h2{
    font-size:18px;
    color: var(--dark-blue);
    margin-top:10px;
}

#footer,#footer a{
    font-size:11px;
}

.btn-blue{
    padding: 4px 14px 4px 14px;
    color: var(--color-white) !important;
    border-radius: 32px;
    background-color: var(--light-blue) !important;
    border: 2px solid var(--light-blue) !important;
}
.btn-blue:hover {
    background-color: var(--light-blue-light) !important;
    border-color: var(--light-blue) !important;
    color: var(--color-black) !important;
}
.btn-blue:disabled{
   padding: 4px 14px 4px 14px;
    color: var(--color-black) !important;
    border-radius: 32px;
    background-color: var(--color-light-grey) !important;
    border: 2px solid var(--color-light-grey) !important;
}



.btn-green {
    padding: 4px 14px 4px 14px;
    color: var(--color-white) !important;
    border-radius: 32px;
    background-color: var(--color-green) !important;
    border: 2px solid var(--color-green) !important;
    color: var(--color-white) !important;
}
.btn-green:hover {
    background-color: var(--color-green-light) !important;
    border-color: var(--color-green) !important;
    color: var(--color-black) !important;
}


.btn-orange {
    padding: 4px 14px 4px 14px;
    color: var(--color-white) !important;
    border-radius: 32px;
    background-color: var(--color-orange) !important;
    border: 2px solid var(--color-orange) !important;
    color: var(--color-white) !important;
}
.btn-orange:hover {
    background-color: var(--color-orange-light) !important;
    border-color: var(--color-orange) !important;
    color: var(--color-black) !important;
}



.btn-red {
    padding: 4px 14px 4px 14px;
    color: var(--color-white) !important;
    border-radius: 32px;
    margin-left: 12px;
    background-color: var(--color-red) !important;
    border: 2px solid var(--color-red) !important;
    color: var(--color-white) !important;
}
.btn-red:hover {
    background-color: var(--color-red-light) !important;
    border-color: var(--color-red) !important;
    color: var(--color-black) !important;
}

.btn-fullwidth{
     width: 100%;
}


.form-field{

    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding:0 5px;
}


.alert-success{
    background-color: var(--color-white);
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

.table-header-exception{
    font-size:12px;
    font-weight:bold;
}

.bigcheckbox { transform: scale(1.5); -ms-transform: scale(1.5);  -webkit-transform: scale(1.5);  -o-transform: scale(1.5);  -moz-transform: scale(1.5); transform-origin: 0 0;  -ms-transform-origin: 0 0; -webkit-transform-origin: 0 0;   -o-transform-origin: 0 0; -moz-transform-origin: 0 0; -webkit-transform-origin: 0 0;}


.strikethrough { color:grey; position: relative;}
.strikethrough:before { color:grey; position: absolute; content: ""; left: 0; top: 50%; right: 0; border-top: 1px solid; border-color: inherit;-webkit-transform:rotate(-15deg);-moz-transform:rotate(-15deg); -ms-transform:rotate(-15deg); -o-transform:rotate(-15deg); transform:rotate(-15deg);}
.promo{
    height:50px;
    min-width:50px;
    min-width:120px;
    width:120px;
    color:white;
    font-weight:bold;
    background-image: url("https://allepaginas.nl/img/discount3.png");
    background-repeat: no-repeat;
    vertical-align:center;
}
.ui-autocomplete li{background:#fff;padding:5px 5px;font-size:12px;color:grey;list-style-type: none;cursor:pointer;max-width:200px;}
.ui-autocomplete li:hover{background:#d6e5ff;}

 .width-120{
      max-width:120px;
      width:120px;
    }

.pricebtn{
    padding: 5px 10px !important;
    min-width: 80px;
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}


.megamenu .dropdown-menu{
    min-width:600px;
    max-width: 600px;
    font-size:12px;
    padding:10px;
}
@media screen and (min-width: 768px) {
    .megamenu ul {
        padding-bottom:15px;
    }

    .megamenu ul li{
        height:20px !important;
        border:none !important;
    }

    .megamenu h3{
        font-size:12px;
        font-weight:bold;
    }

    .megamenu > .dropdown-menu {
        min-width:600px;
    } 
}


.megamenu h3{
    font-size:12px;
    font-weight:bold;
}

.megamenu ul li{
    border:none !important;
}

.megamenu ul li a{
    background:none !important;
}

.color-black{
    color:var(--color-black) !important;
}

.color-dark-blue{
    color:var(--dark-blue) !important;
}

.bootstrap-dialog .bootstrap-dialog-title{
    color:#000 !important;
}



.btn-brd-green.active,.btn-brd-green:hover,.btn-check:checked+.btn-brd-green, .btn-brd-green.active, .btn-brd-green.show, .btn-brd-green:first-child:active, :not(.btn-check)+.btn-brd-green:active{
    border-bottom: 3px solid #43A87C !important;
}

.btn-brd-orange.active,.btn-brd-orange:hover,.btn-check:checked+.btn-brd-orange, .btn-brd-orange.active, .btn-brd-orange.show, .btn-brd-orange:first-child:active, :not(.btn-check)+.btn-brd-orange:active{
    border-bottom: 3px solid var(--color-yellow) !important;
}

.btn-brd-blue.active,.btn-brd-blue:hover,.btn-check:checked+.btn-brd-blue, .btn-brd-blue.active, .btn-brd-blue.show, .btn-brd-blue:first-child:active, :not(.btn-check)+.btn-brd-blue:active{
    border-bottom: 3px solid var(--light-blue) !important;
}

.nounderline{
    text-decoration:none;
}

.boldtxt{
        font-weight:bold;
    }
    
.link-actief{
    color:green !important;
}


.link-in-de-wacht,.link-gaan-verlopen{
    color:orange !important;
} 


.link-In-behandeling{
    color:blue !important;
}



.gaan-verlopen-bijna-verwijderd,.link-actief-verwijderd,.link-Verwijderd,.link-verlopen,.link-verlopen-verwijderd,.link-onbetaald,.link-onbetaald-verwijderd,.link-in-de-wacht-verwijderd,.link-In-behandeling-verwijderd{
    color:red !important;
} 

label{
    font-weight:strong;
}