﻿

.search-section {
  /*  border: solid;*/
   
    position: relative;
    margin: auto;
    float: right;
    bottom: 5px;
    padding-top: 20%; 
  /*  width: 85px;*/
}

.lodgebtn {
    /*   
    font-size: x-small;
    */
    text-align: center;
    border: 2px solid #fff;
    text-decoration: none;
    background-color: maroon;
    color: #eee;
    float: right;
    width: 140px;
    border-radius: 50px;
    font-size: 10px;
    margin-bottom: 7px;
    padding: 6px;
    transition: .1s ease-out;
}
    .lodgebtn:hover {
        background-color: #317e74;
        color: #fff;
        -moz-box-shadow:  -5px 5px 5px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow:  -5px 5px 5px rgba(0, 0, 0, 0.3);
        box-shadow:  -5px 5px 5px rgba(0, 0, 0, 0.3);
    }

    .search-text {
        border: 2px solid #fff;
        border-radius: 50px;
        float: right;
        width: 140px;
        background-color: #aaa;
        color: #fff;
        padding: 3px 3px 3px 20px;
        font-size: 13px;
    }

    .search-link {
        float: right;
        border-radius: 30px;
        padding: 3px 30px;
        text-decoration: none;
        width: 140px;
        font-size: 13px;
        background-color: darkgrey;
        color: #eee;
        transition: .1s ease-out;
    }

    .search-link:hover {
        color: #eee;
        -moz-box-shadow: inset -5px 5px 5px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: inset -5px 5px 5px rgba(0, 0, 0, 0.3);
        box-shadow: inset -5px 5px 5px rgba(0, 0, 0, 0.3);
    }