

/* -------------------------------- 

Primary style

-------------------------------- */

html *
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* -------------------------------- 

Main components 

-------------------------------- */

header h1 {
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
}

#google-container
{
    position: relative;
    width: 100%;
    min-height: 445px;
    background-color: #e7eaf0;
}

@media only screen and (min-width: 641px)
{
    #google-container
    {
        min-height: 645px;
    }
}

@media only screen and (min-width: 1101px)
{
    #google-container
    {
        min-height: 93vh;
    }
}

#cd-google-map
{
    position: relative;
    z-index: 1;
}

#cd-google-map address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  background-color: rgba(255, 255, 255, 0.8);
  color: #e1c149;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (min-width: 768px)
{
#cd-google-map address {
    font-size: 15px;
    font-size: 0.9375rem;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out
{
    height: 32px;
    width: 32px;
    cursor: pointer;
    margin-left: 20px;
    background-color: #e1c149;
    background-repeat: no-repeat;
    background-size: 32px 64px;
    background-image: url("../img/cd-icon-controller.svg");
    z-index: 3333;
    margin-bottom: 25px;
}

.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover
{
    background-color: #000000;
}

@media only screen and (min-width: 768px)
{
    #cd-zoom-in, #cd-zoom-out
    {
        margin-left: 50px;
    }
}

#cd-zoom-in
{
    background-position: 50% 0;
    margin-top: 10px;
    margin-bottom: 1px;
}

@media only screen and (min-width: 768px)
{
    #cd-zoom-in
    {
        margin-top: 50px;
    }
}

#cd-zoom-out
{
    background-position: 50% -32px;
}

@media screen and (max-width:500px)
{
    #cd-zoom-in, #cd-zoom-out
    {
        display: none;
    }
}

