 /*======================================
  Selectric v1.9.3
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: none;
  background: transparent;
  position: relative;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 34px;
  color: #b7b7b8;
  height: 38px;
  padding: 3px 5px;
  font-family: "Adobe Jenson W08";
  font-size: 1.1em;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-hover .selectric {
  border-color: #C4C4C4;
}
.selectric-hover .selectric .button {
  color: #A2A2A2;
}
.selectric-hover .selectric .button:after {
  border-top-color: #A2A2A2;
}

.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric {
  border-color: #C4C4C4;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul{
  list-style: none;
  padding: 0;
  margin: 0;
  background: #323232;
}
.selectric-items li {
  display: block;
  padding: 8px 8px 8px 10px;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 34px;
  height: 38px;
  padding: 3px 5px;
  font-family: "Adobe Jenson W08";
  font-size: 1.1em;
  background: #323232;
  color: #b7b7b8;
  text-indent: 10px;
}
.selectric-items li.selected {
    background: #323232;
    color: #b7b7b8;
    border: none;
}
.selectric-items li:hover {
  background: #F0F0F0;
  color: #444;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}


*{ 
  -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
  -moz-box-sizing: border-box;    /* Firefox 1 - 28 */
  box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

*:focus {
    outline: 0;
}

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

.row{
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

@keyframes grow { 
  0% { display: none; opacity: 0;  } 
  1% { display: block; opacity: 0;  } 
  100% { opacity: 1; } 
} /* Add your own prefixes */

.page { position:relative; }

.footer .item { width:33.333333%; margin-left:0; margin-right:0; }

@media screen and (max-width: 767px) {
   .footer .item{ width:auto; }
}

.overlay{
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 101;
}
.overlay.open{
  display: block;
  animation: grow .5s ease-in-out;
}
.blackpanel {
  position: absolute;
  left:20%;
  top:12%;
  width:60%;
  padding: 60px 30px 100px 30px;
  border:1px solid #333333;
  -webkit-box-shadow: 0px 12px 98px -5px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 12px 98px -5px rgba(0,0,0,0.75);
  box-shadow: 0px 12px 98px -5px rgba(0,0,0,0.75);
  background: -webkit-linear-gradient(#333333, #000000); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#333333,#000000); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#333333,#000000); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#333333,#000000); /* Standard syntax (must be last) */

}

.closeBtn{
  background: url("../images/close.png");
  width: 19px;
  height: 19px;
  display: block;
  position: absolute;
  right:30px;
  top:20px;
}

.pickerLogo{
  background: url("../images/cklogo_retina.png");
  width: 131px;
  height: 91px;
  margin: 0px auto 40px;
  background-size: 131px 91px;
}

.title {
  border-top: 1px #5a5753 dotted;
  border-bottom: 1px #5a5753 dotted;
  text-align: center;
  color: #ffffff;
  font-size: 27px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 0.8em;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "EngraversGothicBold W08 Rg";
  margin-bottom:40px;
}

.flagwrapper a {
  height:30px; 
  border: 1pt solid #5d5d5d; 
  margin: 0px 10px;
  margin-bottom: 10px;
}

.flagtitle{
  color: #b7b7b8;
  font-family: "EngraversGothicBold W08 Rg";
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  margin: 0 auto;
}

.flagtitle_sub{
    color: #b7b7b8;
  font-family: "EngraversGothicBold W08 Rg";
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
}
.horizontalline_wrapper{
  width: 74%;
  margin: 0 auto;
}
.horizontalline{
  text-align: center;
  margin: 40px auto 30px;
  color:#8f8f8f;
  position: relative;
  width: 70%;
  float: left;
}
.horizontalline_sub{
   background: #333333;
  height: 1px;
  width: 10%;
  display: inline-block;
  vertical-align: middle;
    width: 15%;
  float: left;
  margin:50px auto 0px
}
/*.horizontalline:before{
  content: "";
  background: #333333;
  height: 1px;
  width: 100px;
  display: inline-block;
      vertical-align: middle;
}
.horizontalline:after{
  content: "";
  background: #333333;
  height: 1px;
  width: 100px;
  display: inline-block;
      vertical-align: middle;
}*/

.formcontents{
  /*font-size: 16px;
  color:#8f8f8f;
  font-weight: normal;
  font-family: "AdobeJensonW01-Regular";
  letter-spacing: 0.02em;
  -webkit-font-smoothing: subpixel-antialiased;*/
  color: #b7b7b8;
  font-family: "EngraversGothicBold W08 Rg";
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.formfield{
  background-color: #1e1e1e;
  border:0px;
  padding:13px;
  width: 200px;
}

.formfield option{
  border-bottom: 1px solid #333333;
}

.formfield_dropmenu {
    color: #b7b7b8;
    width: 100%;
    border: 0px;
    height: 36px;
    padding: 3px 20px;
    line-height: 1.428em;
    background-color: #323232;
    -webkit-appearance: button;
    -moz-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    background-image: url(../images/triangle.png), -webkit-linear-gradient(top, #323232, #323232);
    background-image: url(../images/triangle.png), -moz-linear-gradient(top, #323232, #323232);
    background-image: url(../images/triangle.png), -ms-linear-gradient(top, #323232, #323232);
    background-image: url(../images/triangle.png), -o-linear-gradient(top, #323232, #323232);
    background-image: url(../images/triangle.png), linear-gradient(to bottom, #323232, #323232);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 20px auto;
}

.formfield_dropmenu_wrapper{
  padding-right: 10px;
      background-color: #323232;
      width: 78%
}

.fieldlable{
  width: 32%;
  text-align: right;
  float: left;
  text-transform: uppercase;
  line-height: 36px;
  padding-right: 2%;
}

.field_select{
  width: 68%;
  float: left;
}


.flagins{
  float: left;
  width: 56px;
  display: inline-block;
  height:30px; 
  border: 1pt solid #5d5d5d; 
  margin: 0px 20px 0 0;
  background-size: 100% 30px;
}

.flagwrapper{
  width: 534px;
  margin: 0 auto;
  display: block;
  float: none;
}

#locationFooterFlags li {
  margin-right: 8px;
}

#locationFooterFlags img {
  height: 18px;
  width: auto;
  border: 1px solid #5d5d5d;
}

#locationFooterFlags a {
  opacity: .8;
}

#locationFooterFlags a:hover {
  opacity: 1;
}

.locationOpenWrapper {
   display: inline-block;
}

.locationOpenFlag {
  position: relative;
  top: 10px;
  margin-left: 26px;
}

.locationOpen img {
  height: 18px;
  width: auto;
  border: 1px solid #5d5d5d;
  opacity: .8;
}

.locationOpen img:hover {
  opacity: 1;
}

@media screen and (max-width: 989px) {

  .formfield_dropmenu_wrapper{
    width: 100%
  }
  
  .horizontalline_wrapper{
    width: 84%
  }

  .blackpanel {
    position: absolute;
    left: 6%;
    width: 88%;
    top: 3%;
    padding: 55px 15px 50px 15px;
  }

  .flagwrapper{
      width: 88%;
    }
   .title{
      font-size: 19px;
   }
   .fieldlable{
      width: 88%;
      text-align: left;
      margin-left: 6%;
   }
   .field_select{
      width: 88%;
      text-align: left;
      margin-left: 6%;
   }
   .formfield_dropmenu{
       width: 100%;
   }
   /*
   .horizontalline:before{
      width: 30px;
      position: absolute;
      top: 10px;
      left: -19px;
   }
   .horizontalline:after{
      width: 30px;
      position: absolute;
      top: 10px;
      right: -19px;
   }
   .horizontalline{
      width: 71%;
      position: relative;
      font-size: 11px;
      margin: 20px auto 15px;
   }
   */
   .flagins{
      width: 41px;
      margin: 0 10px 20px 0;
   }
   a.flagins.fr{

   }
   .horizontalline{
      font-size: 12px;
   }

}
