body {
    font-family: 'Raleway', sans-serif;
    background: #f2f2f2;
    padding-bottom: 50px;
}
header {
    width: 100%;
    height: 100px;
    line-height: 100px;
    background-color: rgba(0, 59, 74, 1);
    text-align: center;
}

header img {
    height: 50%;
}

.info-text {
    color: rgba(0, 59, 74, 1);
    font-size: 16px;
    text-align: center;
    line-height: 22px;
    padding: 40px 0;
    font-weight: 500;
}

.form-wrapper-active {
    background: #fff;
    width: 100%;
    padding: 10px 15px;
    margin: 0 auto 20px auto;
    font-size: 18px;
    display: block;
    cursor: pointer;
    color: #000;
}

.form-wrapper-active:hover {
    color: rgba(0, 59, 74, 1);
}

.form-wrapper {
    background: #fff;
    width: 100%;
    padding: 30px 15px;
    margin: 0 auto;

}

.input-wrapper {
    border-bottom: 2px solid #d9d9d9;
    position: relative;
}

.input-wrapper input {
    font-size: 20px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 52px;
    background: transparent;
    padding: 0 5px;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 10;
}

.input-wrapper input:focus {
    box-shadow: none;
}

.input-wrapper .input-focus {
    z-index: 1;
}

.input-wrapper .input-focus:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: rgba(0, 59, 74, 1);
}

.input-wrapper .input-focus:after {
    font-size: 20px;
    color: #999999;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input-wrapper input:focus + .input-focus:before {
    width: 100%;
}

.input-wrapper input:focus + .input-focus:after {
    top: -15px;
    font-size: 14px
}

.input-wrapper.has-value input + .input-focus:after {
    top: -15px;
    font-size: 14px
}

.input-wrapper.has-value input + .input-focus:before {
    width: 100%;
}

.button-wrapper {
    margin: 20px 0 0 0;
}

.button-wrapper a {
    width: 100%;
    height: 50px;
    padding: 0;
    display: block;
    font-size: 20px;
    background-color: rgba(133, 117, 78, 1);
    border-radius: 0;
    border: none;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.button-wrapper a:hover {
    text-decoration: none;
    background-color: rgba(0, 59, 74, 1);
}

.result-row {
    font-size: 16px;
    border-bottom: 1px solid rgba(133, 117, 78, 1);
    padding: 5px 0;
    margin: 0;
}

.result-row > div:first-child {
    font-weight: 700;
}

.result-row:last-child {
    border: none;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
	text-shadow: 0 0 3px #000000;
}

.result-row.KIRMIZI {
    background: #FF4500;
}

.result-row.SARI {
    background: #FFFF00;
}

.result-row.YEŞİL {
    background: #9ACD32;
}

.result-row.MAVİ {
    background: #1E90FF;
}

footer {
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: rgba(0, 59, 74, 1);
}

@media (max-width: 767px) {
    .navbar-fixed-bottom {position: relative;}
}