/* Meklēšanas lauka atrašanās vieta un izskats */
.search {
    right: 0;
}

.search input {
    width: 0px;
    float: right;
    margin-right: 20px;
    width: 32px;
    border: none;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s;
    padding-right: 22px;
    border-radius: 0px;
}

.form-control {
    box-shadow: none;
}

/* Meklēšanas ikona */
.search .btn-search {
    width: 9em;
    height: 30px;
    border-radius: 7px;
    font-size: 1em;
}

.search .btn-default1 {
    border: none;
    background-color: #E45D33;
    color: white;
}

/* Rezultātu attēlošana */

.search-result {
    width: 100%;
}

.search-result .title {
    text-transform: uppercase;
    font-weight: normal;
    color: #3fabd9;
    font-family: 'roboto';
    font-size: 14px;
    text-align: center;
    word-wrap: break-word;
    line-height: 30px;
}

.search-result a:hover, .search-result a:hover span{
    font-weight: bold;
}

/* Meklētāšanas rezultātu sākuma pozīcija */
.search-box {
    margin-top: 50px;
    padding-bottom: 30px;
}

@media screen and (max-width: 480px){
    .search .btn-search{
        width: 7em;
    }

    .search-result .title {
        font-size: 12px;
    }
}