alk-contacts{
    display: block;
    box-sizing: border-box;
    /* max-width: 460px; */
    min-height: 150px;
    /* outline: 1px solid #ccc; */
    width: 100%;
    margin-top: 32px;
}

alk-contacts *{
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 0;
    border: none;
}

alk-contacts form {
    width: 100%;
    margin: 12px auto 0;
    /*box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.2);*/
    padding-top: 24px;
    padding-bottom: 40px;
    border-radius: 3px;
}

alk-contacts form.hide{
    display: none;
}

alk-contacts .row{
    /*overflow: hidden;*/
    position: relative;
    width: 100%;
    min-width: 10px!important;
    border-top: 0px;
    background: transparent!important;
}

alk-contacts .col{
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding-left: 0%;
    padding-right: 5%;
    position: relative;
}

alk-contacts .col.right{
    float: right;
    padding-right: 0%;
    padding-left: 5%;
}

alk-contacts .col .placeholder{
    margin-top: 24px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    padding-right: 44px;
}

alk-contacts .col.left .clear{
    right: 10%;
}

alk-contacts .col.right .clear{

}

alk-contacts .message{
    margin-top: 32px;
}


alk-contacts label,
alk-contacts .placeholder{
    position: absolute;
    font-weight: 100;
    top: 0;
    margin: 0px;
    color: #333;
    font-size: 2rem;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

alk-contacts textarea{
    background-color: transparent;
    border: 1px dashed #333;
}

alk-contacts label{
    margin: 18px 0px;
}

alk-contacts label{
    -webkit-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    transform: translateY(-110%);
}

alk-contacts input::-webkit-file-upload-button{
    border: none;
}

alk-contacts .focus .placeholder{
    -webkit-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    transform: translateY(-110%);
}

alk-contacts select,
alk-contacts input{
    margin: 24px 0%;
    width: 100%;
    display: block;
    border: none;
    padding: 10px 0;
    box-shadow: none;
    border: 0!important;
    border-radius: 0!important;
    padding-top: 0px;
    padding-bottom: 0px;

}

alk-contacts select option{
    /*color: #999;*/
    font-size: 1em;
}

alk-contacts .jobtype{
    margin-top: 24px;
}

alk-contacts input:required{
    outline: none;
    box-shadow: none;
}

alk-contacts select{
    border: 1px solid #ccc!important;
    display: inline-block;
    position: relative;
}

alk-contacts select:focus{
    border-color: #555!important;
}


alk-contacts input.valid,
alk-contacts input[type="text"] {
    border-bottom: dashed 1px #333!important;
    -webkit-transition: all 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
   /* background: 
    -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 98%, #555 2%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 98%, #555 2%);*/
    background-position: 200% 0;
    background-size: 200% 100%;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 1;
    background-color: transparent;
}

alk-contacts input:focus, 
alk-contacts input:valid {
    box-shadow: none;
    outline: none;
    background-position: 0 0;
    /* border-bottom: solid 1px #555!important; */
}

alk-contacts textarea{
    border: dashed 1px #333!important;
    margin: 24px 0;
    width: 100%;
    min-height: 120px;
}

alk-contacts textarea:focus{
    border: solid 1px #666!important;
}

alk-contacts .invalid > input{
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 98%, #FF9800 2%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 98%, #FF9800 2%);
    border-bottom-color: #FF9800!important;
}

alk-contacts .invalid > textarea{
    border: solid 1px #FF9800!important;
}

alk-contacts .invalid > select{
    border-color: #FF9800!important;
}

alk-contacts .valid > input{
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 98%, #cddc39 2%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 98%, #cddc39 2%);
    border-bottom-color: #cddc39!important;
}

alk-contacts .valid > textarea{
    border: solid 1px #cddc39!important;
}

alk-contacts .valid > select{
    border-color: #cddc39!important;
}

alk-contacts .invalid > label,
alk-contacts .invalid > .placeholder{
    color: #FF9800;
}

alk-contacts input[type="file"]{
    /*visibility: hidden;*/
    z-index: 100;
    position: absolute;
    top: 0;
    cursor: pointer;
    opacity: 0;
    display: block;
}

alk-contacts .search{
    width: 24px;
    height: 24px;
    position: absolute;
    margin: 0;
    padding: 0;
    right: 5%;
    display: block;
    left: auto;
    top: 32px;
    cursor: pointer;
    z-index: 2;
    overflow: hidden;
}

alk-contacts .search .icon{
    fill: #555;
}


alk-contacts .search:hover .icon{
    fill: #333;
}

alk-contacts .search:active .icon{
    fill: #000;
}

alk-contacts button {
    border: none;
    background: #CDDC39;
    cursor: pointer;
    border-radius: 3px;
    padding: 6px;
    width: 50%;
    color: #fff;
    line-height: 32px;
    margin-top: 24px;
    max-width: 220px;
    left: 50%;
    /* position: absolute; */
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    margin-left: 50%;
    font-size: 2rem;
    text-transform: unset;
    /*box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);*/
}

alk-contacts button:disabled{
    background: #ccc;
    color: #999;
}

alk-contacts button:hover {
    /*-webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);*/
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}

alk-contacts .clear{
    position: absolute;
    display: block;
    right: 0px;
    width: 12px;
    height: 12px;
    background-color: #333;
    cursor: pointer;
    top: 50%;
    /* margin-top: -12px; */
    z-index: 2;
    color: #ccc;
    text-align: center;
    padding: 0;
    margin: -12px 0px 0px 0px;
    font-size: 9px;
    line-height: 12px;
    border-radius: 2em;
}

alk-contacts .clear:hover{
    background-color: #333;
    color: #fff;
}

alk-contacts .clear:active{
    background-color: #000;
    color: #fff;
}

alk-contacts input[name="privacy"]{
    width: 24px;
    height: 24px;
    margin-right: 0px;
    padding: 0;
    margin-top: 0px;
    position: absolute;
    z-index: 2;

}

alk-contacts label[for="privacy"]{
    text-align: left;
    padding-left: 32px;
    transform: none;
    margin-top: 0px;
    margin-bottom: 0px;
    display: block;
    position: relative;
    color: #ccc;
}

alk-contacts .privacy-info{
    margin: 0px 5%;
    display: block;
    line-height: 1em;
    text-decoration: none;
}

/*
# MATERIAL LOADER
**********************/
alk-contacts .loader {
    position: relative;
    width: inherit;
    height: inherit;
    min-height: 150px;
    zoom: 1;
}

alk-contacts svg{
    position: absolute!important;
    top: 50%;
    margin-top: -60px;
    left: 50%;
    margin-left: -50px;
}

alk-contacts .loader.hide{
    display: none;
}

alk-contacts .circular {
    -webkit-animation: rotate 2s linear infinite;
    -ms-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100px;
    position: relative;
    width: 100px;
    outline: none;
}

alk-contacts .path {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    -ms-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}



@media only screen and (max-device-width : 500px) {
    alk-contacts .row:after{
        display: none;
    }

    alk-contacts .col.left,
    alk-contacts .col.right {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    alk-contacts .col.left .placeholder,
    alk-contacts .col.right .placeholder{
        margin-top: 0;
    }

    alk-contacts .col.left .clear{
        right: 0;
    }
}
@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}
@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%, 90% {
        stroke: #ffa700;
    }
}
@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%, 90% {
        stroke: #ffa700;
    }
}
.map{
    position: absolute!important;
    /*height: 100vh;*/
    top: 80px;
    height: calc(100vh - 80px);
}

.leaflet-top{
    margin-top: 80px;
    /*z-index: 2000;*/
}

.custom-pan-btn.dragging span:before,
.custom-pan-btn span:before{
    font-size: 32px;
}

.custom-pan-btn.dragging span:after{
    font-size: 42px;
    left: 1px;
    margin-top: 10px;
}
body{
    font-family: 'Indie Flower', cursive;
}
