		.hidden{
			display: none;
		}
		
		.select_cont{
			    height: 55px;
			width: 100%;
			position: relative;
			z-index: 10;
		}
		.select_cont.opened{
			z-index: 100;
		}
		.div_select{
			    background: #fff;
    height: 55px;
			width: 100%;
			overflow: hidden;
			transition: height .3s ;
			position: absolute;
			cursor: pointer;
			    border-radius: 3px;
		}
		.div_select:before{
	content: '';
    display: block;
    background-repeat: no-repeat;
    width: 15px;
    height: 10px;
    position: absolute;
    right: 20px;
    background-image: url(../images/arrow.png);
    top: 23px;
		}
		.div_option{
    padding: 7px 10px;
    cursor: pointer;
    font-size: 16px;
    color: #303030;
    font-family: 'roboto-bold';
		}
		.div_option span{
    display: block;
    font-size: 14px;
    font-family: 'roboto-light';
		}
		.div_option.selected{
			background: #ddd;
		}
		.div_option:hover{
			background: #ddd;
		}
