        body {
            background-color: transparent;
            color: white;
            font-family: 'Poppins';
            font-size: 20px;
        }

        a, a:link, a:visited {
            color: white;
            text-decoration: none;
        }

        input {
            font-family: 'Poppins';
            font-size: 26px;
            color: #95a5a6;
			padding-left: 5px;
			padding-right: 5px;
            background-color: white;
            border-bottom-style: solid;
			border-width:0px;
            border-color: black;
        }

        

/* Removes the clear button from date inputs */
input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Removes the spin button */
input[type="date"]::-webkit-inner-spin-button { 
    display: none;
}

/* Always display the drop down caret */
input[type="date"]::-webkit-calendar-picker-indicator {
    color: #2c3e50;
}

/* A few custom styles for date inputs */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    color: #95a5a6;
    font-family: 'Poppins';
    font-size: 26px;
    border: 1px solid white;
    background:white;
    padding:5px;
    display: block-block !important;
    visibility: visible !important;
}

input[type="date"], focus {
    color: #95a5a6;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}


/* select start */
select {
    position: relative;
    color: #95a5a6;
    font-family: 'Poppins';
    font-size: 26px;
    border: 1px solid white;
    background: white;
    padding-left: 5px;
	padding-right: 0px;
    display: block-block !important;
    visibility: visible !important;
        }

/* Style by class. Effects the text of the contained options. */
.selectfarve {
    color: #95a5a6;
}

/* Style by id. Effects position of the select drop down. */
#styledSelect {
    left: 100px;
}
/* select stop */

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

input[type="image"] {
   background: transparent;
   margin:0px;
   padding:0px;
   padding-top:2px;
   border:0px;
}
input[type="image"]:disabled {
   background: transparent;
   margin:0px;
   padding:0px;
   padding-top:2px;
   border:0px;
}

</style>