:root {
    --bs-dark: #000000; 
    --bs-dark-rgb: 0,0,0;
}

html, body {
    height: 100%; /* Gør at flex kan fylde hele vinduet */
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Fylder alt mellem header og footer */
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.payment-icons .payment-icon {
    background-color: rgb(0 0 0 / .1);
    border-radius: 5px;
    display: inline-block;
    margin: 3px 3px 0;
    opacity: .6;
    padding: 3px 5px 5px;
    transition: opacity .3s;
}

.payment-icons svg {
    fill: white;
    width: 50px;
    height: auto;
}

.inline-block {
    display: inline-block;
}