/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 7/set/2017, 18:44:53
    Author     : Milu
*/


.home_banner_input_wrapper input {
    width: calc(100% - 92px);
    border: 0;
    padding: 0 40px 0 40px;
    height: 36px;
    border-radius: 12px;
    background-position: 12px 8px;
    background-repeat: no-repeat;
    background-size: 20px;
    text-align: center;
    color: #007dab;
    display: block;
    margin: 0 auto 6px;
}
.home_banner_input_wrapper button, .home_banner_input_wrapper a {
    width: calc(100% - 12px);
    background: #00d4f9;
    color: #fff;
    border: 0;
    height: 36px;
    border-radius: 12px;
    text-align: center;
    display: block;
    margin: 0 auto 6px;
}
.home_banner_input_wrapper button[disabled], .home_banner_input_wrapper a[disabled] {
    background: rgba(0, 212, 249, 0.5);
    color: #fff;
}

.home_banner_input_wrapper input::placeholder {
    color: #007dab;
    font-size: 14px;
}

.sidebar_route_calculator_container {
    background: #007dab;
    position: relative;
    padding: 0 0 3px;
}
.sidebar_route_title {
    color: #fff;
    text-align: center;
    padding: 12px 0;
}
.sidebar_route_logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.sidebar_route_calculator_overlay {
    position: absolute;
    width: 75%;
    height: 75%;
    left: 50%;
    top: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    transform: translate(-50%,-50%);
}



.home_news_wrapper {
    padding: 0 0;
    cursor: pointer;
}
.home_news_thumb_box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.home_news_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .25s all linear;
}
.home_news_wrapper:hover .home_news_image {
    width: 106%;
    height: 106%;
    left: -3%;
    top: -3%;
}
.home_news_title_box {
    position: absolute;
    bottom: 0;
    background: rgba(0, 125, 171, 0.75);
    width: 100%;
    text-align: center;
    height: 48px;
}
.home_news_title {
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    line-height: 18px;
}
.sidebar_container {
    margin: 30px 6px 0;
    width: 238px;
}
.sidebar_container > div {
    margin: 0 0 12px;
}


@media screen and (max-width: 600px) {

.sidebar_container {
    width: calc(100% - 12px);
}
.site_container > .news_container {
    max-height: none;
}
}