.search_box {
    padding-top: 10px;
    padding-bottom: 50px;
}

.search {
    padding-left: 25px;
    display: flex;
    align-items: center;
    margin: auto;
    width: 430px;
    height: 54px;
    background-color: white;
    border-radius: 25px;
    -webkit-box-shadow: 0px 10px 38px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 38px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 38px 0px rgba(0, 0, 0, 0.1);
}

#smaller {
    width: 430px;
}

.select_area {
    color: #4451FE;
    display: flex;
    align-items: center;
    /*font-family: 'Roboto', sans-serif;*/
    font-family: "Plus Jakarta Sans Regular", sans-serif;
    line-height: 24px;
    font-weight: 500; /* Medium */
}

.text {
    padding-left: 15px;
}

.line {
    margin-left: 15px;
    border-left: 1px solid #D8D8D8;
    height: 40px;
}

.search_text {
    width: 100%;
    border: none;
    margin-left: 15px;
    margin-right: 25px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-family: "Plus Jakarta Sans Regular", sans-serif;
    line-height: 24px;
    font-weight: 400; /* Regular */
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ADB1B8;
}

/*.text_and-icon {*/
/*    width: 410px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.search_icon {*/
/*    color: #5E6573;*/
/*    transition: all .6s ease-in-out;*/
/*    -webkit-transition: all .6s ease-in-out; !** Chrome & Safari **!*/
/*    -moz-transition: all .6s ease-in-out; !** Firefox **!*/
/*    -o-transition: all .6s ease-in-out; !** Opera **!*/
/*}*/

.search_text:focus {
    outline: none !important;
}

.search_text:focus + .search_icon {
    color: #4451FE;
    transform: translate(55px, 0);
    -webkit-transform: translate(55px, 0);
    -o-transform: translate(55px, 0);
    -moz-transform: translate(55px);
}

@media screen and (min-width: 769px) and (max-width: 1024px){ /* tablet */

}

@media screen and (max-width: 768px) {  /* mobil */

    .search {
        max-width: 75%;
    }

    /*.search_text {*/
    /*    max-width: 90%;*/
    /*}*/

}