/* ============ kreativmad.dk .start============ */
.KM-input-text {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

.KM-font-reed {
    color: #ff2a2b !important;
    font-weight: 500 !important;
}

.KM-font-green {
    color: #32aa27 !important;
    font-weight: 600 !important;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #64AF8C;
}

input:focus + .slider {
    box-shadow: 0 0 1px #64AF8C;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Grid */
.grid {
    margin: 1em;
    border: none;
    background: none;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 2px;
    counter-reset: div;
}

.grid div {
    border: none;
    text-align: center;
}

.grid div[class]:after {
    display: block;
    text-align: center;
    background: lightblue;
    color: crimson;
}

/* spanning cols, complete values missing */
.col-1 {
    grid-column: auto/span 1;
}

.col-2 {
    grid-column: auto/span 2;
}

.col-3 {
    grid-column: auto/span 3;
}

.col-4 {
    grid-column: auto/span 4;
}

.col-5 {
    grid-column: auto/span 5;
}

.col-6 {
    grid-column: auto/span 6;
}

.col-7 {
    grid-column: auto/span 7;
}

.col-8 {
    grid-column: auto/span 8;
}

.col-9 {
    grid-column: auto/span 9;
}

.col-10 {
    grid-column: auto/span 10;
}

.col-11 {
    grid-column: auto/span 11;
}

/* spanning rows , complete values missing*/
.row-2 {
    grid-row: auto/span 2;
}

.borderexample {
    border: 1px;
    border-style: solid;
    border-color: #e3e6e9;
    padding: 20px;
    margin-bottom: 0px;
}

/* ============ kreativmad.dk .end============ */


/* ============ TEST .start============ */
/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    font-size: 10px;
    color: white;
    text-align: center;
    padding: 8px 12px;
    text-decoration: none;
}

/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}