/*
Theme Name: Bridge Child
Theme URI: http://demo.qodeinteractive.com/bridge/
Description: A child theme of Bridge Theme
Author: Qode Interactive
Author URI: http://www.qodethemes.com/
Version: 1.0.0
Template: bridge
*/
@import url("../bridge/style.css");

input[type="search"] {
      -webkit-appearance: textfield;
    }


.arama body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100%;
    background: #07051a;
}

.arama form{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: #be9b5f;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid #be9b5f;
    padding: 5px;
}

.arama input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    display: none;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
	background: #be9b5f;
}

.arama .fa{
    box-sizing: border-box;
    padding: 10px;
    width: 42.5px;
    height: 42.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: white;
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
}

.arama form:hover{
    width: 200px;
    cursor: pointer;
}

.arama form:hover input{
    display: block;
	color: #be9b5f;
}

.arama form:hover .fa{
    background: #07051a;
    
}

.arama ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

.arama :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}

.arama ::-ms-input-placeholder { /* Microsoft Edge */
  color: white;
}