@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    src: url('/webfonts/OpenSans-Regular-webfont.eot');
    src: url('/webfonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/webfonts/OpenSans-Regular-webfont.woff') format('woff'),
    url('/webfonts/OpenSans-Regular-webfont.ttf') format('truetype'),
    url('/webfonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/********* END : map-marker-pulse-button button ************/
.map-marker-pulse-button
{
    text-align:center;
    width:30px;
    height:30px ;
    margin:auto;
    border-radius:50px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    border: 3px solid #15b5fe;
    background: white;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.9);
    -webkit-animation: pulse 1.5s infinite;
    background-image: url("../images/placeholder.png");
    background-repeat: no-repeat;
    background-size: cover;
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }
    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
/********* END : map-marker-pulse-button button ************/

/********** START : Textbox **************/
.form-group {
    position: relative;
    width: 75%;
    left: 10%;
}
.form-group + .form-group {
    margin-top: 30px;
}

.form-label {
    font-size: 10px;
    position: absolute;
    top: 20px;
    color: deepskyblue;
    background-color: transparent;
    z-index: 1;
    transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    transition: transform 150ms ease-out, font-size 150ms ease-out, -webkit-transform 150ms ease-out;
}

.focused .form-label {
    -webkit-transform: translateY(-275%);
    transform: translateY(-275%);
    font-size: .75em;
    color: white;
}

.cbp-ig-grid li > a:hover .form-label{
    color: white;
}

.form-input {
    position: relative;
    padding: 12px 60px 5px 0;
    width: 100%;
    outline: 0;
    border: 0;
    box-shadow: 0 2px 0 0 deepskyblue;
    transition: box-shadow 150ms ease-out;
    background-color: transparent;
}

/*.cbp-ig-grid li > a:hover .form-input{
    box-shadow: 0 2px 0 0 white;
}*/

.form-input:focus {
    box-shadow: 0 2px 0 0 white;
}

.form-input.filled_valid {
    box-shadow: 0 3px 0 0 lightgreen;
    color: green;
}

.form-input.filled_invalid {
    box-shadow: 0 4px 0 0 red;
    color: red;
}
/********** END : Textbox **************/

/********** START : textarea ***********/
.textarea{
    width: 100%;
    height: 110px;
    color: black;
    font-size: 11px;
    resize: none;
    border-color: deepskyblue;
    border-width: 3px;
    border-style: solid;
    padding: 10px;
}
.cbp-ig-grid li > a:hover .textarea{
    color: black;
    border-color: white;
    background: deepskyblue;
}
/********** END : textarea *************/

/********** START : counter ***********/
.counter{
    margin-left: 295px;
    color: deepskyblue;
    font-size: 10px;
}
.cbp-ig-grid li > a:hover .counter{
    color: white;
}
/********** END : counter *************/

/********** START : stylishButton ***********/
.stylishButton {
    background: white;
    padding:6px 18px;
    margin: 1%;
    color:black;
    font-family: 'Open Sans', sans-serif;
    font-size:10px;
    border-radius:6px;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border:2px solid #15b5fe;
    box-shadow: 2px 2px 8px #15b5fe;
    width: 30%;
    min-width: 75px;
}

.stylishButton:hover {
    background: #15b5fe;
    background: -moz-linear-gradient(top,white 0%,#15b5fe 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,white),color-stop(100%,#15b5fe));
    background: -webkit-linear-gradient(top,white 0%,#15b5fe 100%);
    background: -o-linear-gradient(top,white 0%,#15b5fe 100%);
    background: -ms-linear-gradient(top,white 0%,#15b5fe 100%);
    background: linear-gradient(top,white 0%,#15b5fe 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='white',endColorstr='#FEBB49',GradientType=0);
    padding:6px 18px;
    color:white;
    font-family:'Helvetica Neue',sans-serif;
    font-size:10px;
    border-radius:6px;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border:2px solid white;
    box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}
/********** END : stylishButton ***********/