/*1- Fonts  */

@font-face {
    font-family: 'gilroyblack';
    src: url('fonts/poppins/poppins-black-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'gilroybold';
    src: url('fonts/poppins/poppins-bold-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'gilroyextrabold';
    src: url('fonts/poppins/poppins-extrabold-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'gilroylight';
    src: url('fonts/poppins/poppins-light-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'poppinsmedium';
    src: url('fonts/poppins/poppins-medium-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'gilroyregular';
    src: url('fonts/poppins/poppins-regular-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




#toDDL .pick-city:hover, #fromDDL .pick-city:hover {
    background-color: #84329B;
    color: white !important;
    text-decoration: none !important;
}

.pick-city-list {
    position: absolute;
    width: 100%;
    height: 300px;
    background-color: #fff;
    top: 34px;
    right: 0;
    border: 1px solid #D6D6D6;
    padding: 0;
    z-index: 5;
    overflow-y: scroll;
    box-shadow: 0 30px 30px rgba(0,0,0,.2);
}

.pick-city {
    border-top: solid 1px #ddd;
    padding: 5px 20% 5px 10px;
    color: #717171;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    width: 100%;
    display: block;
    color: #333333;
    transition: all 0.5s;
}

.hidden {
    display: none;
}

.legend {
    width: 100%;
    height: 32px;
    background-color: white;
    position: absolute;
    top: 334px;
    z-index: 5;
    border: 1px solid #D6D6D6;
    box-shadow: 0 30px 30px rgba(0,0,0,.2);
    left: 0;
}

.legend_key .key {
    color: #C72A96;
    font-size: 25px;
    line-height: 41px;
    margin-right: 2px;
    margin-left: 9px;
    float: left;
    height: 1px;
    font-family: Poppins;
}

.legend_key .descr {
    line-height: 32px;
    font-size: 14px;
    color: #333333 !important;
    font-family: gilroyregular;
}

.ddlLoader {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    color: white;
    text-align: center;
    line-height: 270px;
    font-family: gilroybold;
    -webkit-animation: breathe 1.75s linear infinite;
    -moz-animation: breathe 1.75s linear infinite;
    animation: breathe 1.75s linear infinite;
}

.interline {
    color: #C72A96;
    font-size: 25px;
    line-height: 29.5px;
    margin-right: 2px;
    float: left;
    height: 1px;
}

@keyframes breathe {
    0% {opacity: 0;}
    50% {opacity: 0.5;}
    100% {opacity: 0;}
}