@charset "UTF-8";
/*!
Theme Name: PG  
Theme URI: /
Description:
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: 
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

scm_gulf is based on Underscores , (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/


body.home.page #header{
  top: var(--top);
}

@media only screen and (min-width: 768px){
  
  body.home.page #header{
    z-index:19;
  }
}
/*--------------------------------------------------------------
## locale_switcher
--------------------------------------------------------------*/

#locale_switcher {
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 58px;
  background: #666;
  color: #fff;
  z-index: 20;
}

#locale_switcher .locale_cnt {
  display: flex;
  justify-content: space-between;
}

#locale_switcher .btn_close {
  position: absolute;
  top: .3rem;
  right: 1.25rem;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  
}

#locale_switcher #locale_copy {
  width: 50%;
  line-height: 1.5;
}

#locale_select_wrap {
  position: relative;
  min-width: 250px;
  user-select: none;
}

#locale_selected {
  padding: .4rem 1rem;
  width: 180px;
  border: 1px solid #ccc;
  cursor: pointer;
  line-height: 1.2;
}

#locale_select {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 180px;
  z-index: 21;
}

#locale_select.open {
  display: block;
}

#locale_select li {
  padding: .4rem 1rem;
  cursor: pointer;
  border: 1px solid #ccc;
}

#locale_select li:hover {
  background: #f5f5f5;
  color: #333;
}

#locale_select li.active {
  background: #007bff;
  color: white;
}

#switch_locale {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 56px;
  height: 34px;
  background: #ccc;
  border: 0;
  appearance:none;
}

@media screen and (max-width:880px){
  #locale_switcher {
    padding: 1rem 0;
    min-height: auto;
  }
  #locale_switcher #locale_copy {
    width: 88%;
  }
  
  #locale_switcher .btn_close {
    top: .9rem;
    right: 1rem;
  }
  #locale_switcher .locale_cnt {
    padding: 0 1rem;
    flex-direction: column;
  }
  
  #locale_select_wrap {
    margin: 1rem 0 0;
    min-width: 150px;
  }
  
  #switch_locale {
    right: auto;
    left: 190px;
  }
}

