
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #33CC99;
	text-align: center;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #33CC99;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #33CC99;
}

.inputtee{
    width: 95%;
    margin: 2px 0 12px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    padding: 10px ;
	width: 95%;
    font-size: 20px;
	font-weight:bold;
}


/* Add a background color when the inputs get focus */
.inputtee:focus{
    background-color: #ddd;
    outline: none;
}

.inputtee2{
    width: 90%;
    padding: 10px;
    margin: 2px 0 12px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
	font-size:14px;  
}

/* Add a background color when the inputs get focus */
.inputtee2:focus{
    background-color: #ddd;
    outline: none;
}

/* Add padding to container elements */
.container {
    padding: 10px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #474e5d;
    padding-top: 10px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 3% auto 13% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 80%;
    padding: 2px;
    height: 15%; /* Should be removed. Only for demonstration */
}
.column_rim {
    float: left;
    width: 20%;
	padding-left: 20px;
    height: 15%; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}