﻿/*@import "compass/css3";

@import "compass";*/
@import url("https://fonts.googleapis.com/css?family=Lato");
/*body {
    font-family: Lato, Arial;
    color: $select-color;
    padding: 20px;
    background-color: $background;
}*/
/*.select h1 {
    font-weight: normal;
    font-size: 40px;
    font-weight: normal;
    text-transform: uppercase;

    span {
        font-size: 13px;
        display: block;
        padding-left: 4px;
    }
}

.select p {
    margin-top: 200px;

    a {
        text-transform: uppercase;
        text-decoration: none;
        display: inline-block;
        color: #fff;
        padding: 5px 10px;
        margin: 0 5px;
        background-color: darken($select-background, 2);
        @include transition(all 0.2s ease-in);

        &:hover {
            background-color: darken($select-background, 5);
        }
    }
}*/
.c-select {
  display: none; }

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px; }

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #848484;
  width: 180px;
  height: 32px;
  border: 1px solid #cecbcb;
  box-sizing: border-box; }

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  padding: 3px 15px;
  -webkit-transition: all 0.2s ease-in 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in 0.2s ease-in-out;
  transition: all 0.2s ease-in 0.2s ease-in-out; }
  .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #cecbcb transparent transparent transparent;
    position: absolute;
    top: 13px;
    right: 10px; }
  .select-styled:hover {
    background-color: #fafafa; }
  .select-styled:active, .select-styled.active {
    background-color: #f2f2f2; }
    .select-styled:active:after, .select-styled.active:after {
      top: 9px;
      border-color: transparent transparent #cecbcb transparent; }

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #f2f2f2;
  max-height: 200px;
  overflow: hidden;
  border: 1px solid #cecbcb; }
  .select-options li {
    margin: 0;
    padding: 5px 0;
    /*text-indent: 15px;*/
    border-top: 1px solid #e6e6e6;
    -webkit-transition: all 0.15s ease-in 0.2s ease-in-out;
    -moz-transition: all 0.15s ease-in 0.2s ease-in-out;
    -ms-transition: all 0.15s ease-in 0.2s ease-in-out;
    -o-transition: all 0.15s ease-in 0.2s ease-in-out;
    transition: all 0.15s ease-in 0.2s ease-in-out; }
    .select-options li:hover {
      color: #ffffff;
      background: #848484; }
    .select-options li[rel="hide"] {
      display: none; }
