/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*******************************
          Flex Layout
*******************************/
.layout.horizontal,
.layout.horizontal-reverse,
.layout.vertical,
.layout.vertical-reverse {
  display: flex;
}

.layout.horizontal {
  flex-direction: row;
}

.layout.vertical {
  flex-direction: column;
}

.layout.wrap {
  flex-wrap: wrap;
}

.flex,
.flex-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

/* alignment in cross axis */
.layout.start {
  align-items: flex-start;
}

.layout.center,
.layout.center-center {
  align-items: center;
}

.layout.end {
  align-items: flex-end;
}

/* alignment in main axis */
.layout.start-justified {
  justify-content: flex-start;
}

.layout.center-justified,
.layout.center-center {
  justify-content: center;
}

.layout.end-justified {
  justify-content: flex-end;
}

.layout.around-justified {
  justify-content: space-around;
}

.layout.justified {
  justify-content: space-between;
}

/* self alignment */
.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

/*******************************
          Other Layout
*******************************/
.block {
  display: block;
}

/* IE 10 support for HTML5 hidden attr */
[hidden] {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.relative {
  position: relative;
}

.fit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

body.fullbleed {
  margin: 0;
  height: 100vh;
}

.scroll {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
body {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5c5c5c;
}

h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.026em;
  line-height: 60px;
}

h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  font-size: 45px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 48px;
}

h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 40px;
}

h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 32px;
}

/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Colors */
/* Typography */
/* Breakpoints */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
* {
  box-sizing: border-box;
  margin: 0;
  outline: none;
}

body {
  background: #ECEFF1;
}
body.view #banner {
  padding-top: 80px;
  padding-bottom: 24px;
  position: relative;
}
body #loading-placeholder {
  display: none;
  padding: 40px 0;
  text-align: center;
}
body.loading card-sorter#cards {
  display: none;
}
body.loading div#filters,
body.loading div#searchbar {
  display: none;
}
body.loading div#loading-placeholder {
  display: block;
}

b {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: currentcolor;
}

ul, li {
  list-style: none;
  padding: 0;
}

.site-width {
  margin: 0 auto;
  width: 90vw;
  max-width: 1024px;
}

#banner {
  background-color: #fff;
  padding: 0 40px 0 40px;
  padding: 40px 0 48px 0;
  box-shadow: 0px 3px 6px -3px #BDBDBD;
}
#banner[down] .banner-slider {
  transform: none;
}
#banner[down] .banner-title {
  visibility: hidden;
}
#banner h2, #banner h3 {
  font-weight: 300;
  color: #30307f;
}
#banner #logo {
  height: 125px;
  width: auto;
  max-width: 100%;
}
#banner .banner-slider {
  position: absolute;
  top: 0;
  max-width: 100%;
  width: 100%;
  background-color: #ECEFF1;
  color: #546E7A;
  padding: 8px 0;
  transform: translateY(-100%);
  transition: transform 400ms cubic-bezier(0, 0, 0.2, 1);
  will-change: transform;
}
#banner .banner-slider h3 {
  font-size: 30px;
}
#banner .banner_arrows {
  margin-left: 16px;
}
#banner .banner-title {
  margin-bottom: 8px;
}
#banner .banner-description .banner-meta {
  padding: 0 32px 0 32px;
}
#banner .banner-description .banner-meta h3 {
  margin-bottom: 8px;
}
#banner paper-button {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  background-color: #607D8B;
  padding: 8px 16px;
  min-width: 150px;
  color: #fff;
  text-align: center;
  line-height: initial;
}
#banner paper-button.iron-selected {
  background-color: #455a64;
}

#sortby {
  padding: 24px 0;
  justify-content: center;
}
#sortby paper-tabs {
  text-transform: uppercase;
}
#sortby paper-tabs paper-tab {
  padding: 0 5px;
  margin: auto 7px;
}

.paper-button-0,
.paper-menu-button-0 {
  border-radius: 3px !important;
}

.dropdown-filter {
  background-color: #fff;
  border-radius: 3px;
}

.dropdown-content {
  border-radius: 3px !important;
}
.dropdown-content paper-item:hover {
  background: #EEEEEE;
  cursor: pointer;
}

@media (max-width: 767px) {
  #banner {
    padding: 16px 0;
    line-height: 16px;
  }
  #banner paper-button {
    display: inline-block;
    margin: 16px 0 0 0;
  }
  #filters {
    padding: 0;
    margin: 0;
    height: 20px;
    visibility: hidden;
  }
  .banner-info {
    font-size: 16px;
    line-height: 24px;
    align-self: flex-start;
    width: 100%;
  }
  .banner-description {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-technologies {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  .banner-title {
    font-size: 7vw;
    color: #30307f;
  }
  .banner-meta {
    display: none;
  }
  #logo {
    margin-bottom: 16px;
  }
  .filters {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #banner paper-button {
    margin-bottom: 16px;
  }
  #banner .banner-title {
    margin-bottom: 16px;
  }
  .banner-info {
    margin-right: 32px;
    line-height: 32px;
  }
  .banner-info a {
    text-decoration: underline;
  }
  .banner-description {
    display: flex;
  }
  .banner-description .banner-info {
    flex: 1;
  }
}
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Colors */
/* Typography */
/* Breakpoints */
#mainToolbar {
  display: flex;
  align-items: center;
  height: 64px;
  background-color: rgba(242, 246, 255, 0.6);
  color: #fff;
  padding: 16px;
}
#mainToolbar paper-icon-button[icon=menu] {
  flex-shrink: 0;
}
#mainToolbar a {
  display: flex;
  align-items: center;
}
#mainToolbar .logo-icon {
  margin-right: 16px;
  width: 30px;
  height: 24px;
}
#mainToolbar .logo-devs {
  width: 216px;
  height: 36px;
  margin-top: 5px;
}

#searchbar {
  border-radius: 3px;
}
#searchbar paper-input-container {
  padding: 0;
}
#searchbar paper-input-container label, #searchbar paper-input-container input {
  color: #fff;
}
#searchbar paper-input-container label {
  opacity: 0.5;
}

@media (min-width: 768px) {
  #searchbar {
    background-color: #546E7A;
    transition: background-color 400ms cubic-bezier(0, 0, 0.2, 1);
    width: 100%;
  }
  #searchbar:hover {
    background-color: #78909C;
  }
  .logo-devs {
    margin: 5px 32px 0 0;
  }
}
@media (max-width: 767px) {
  #searchbar paper-input-container {
    display: none;
  }
  #mainToolbar {
    height: 56px;
  }
  #mainToolbar paper-icon-button[icon=menu] {
    width: 40px;
    margin-right: 8px;
  }
}
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Colors */
/* Typography */
/* Breakpoints */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Google colors */
/* Other colors */
/* Mixins */
/* Actual CSS classes */
.Sample-bg, .about-bg {
  background-color: 4285f4;
}

.codelab-card.category-Sample, .codelab-card.category-about {
  border-bottom-color: 4285f4;
}

.about-icon, .svg, .Sample-icon {
  background-image: url("/images/icons/google-g, .svg");
}

.Sample-bg, .about-bg {
  background-color: 4285f4;
}

.codelab-card.category-Sample, .codelab-card.category-about {
  border-bottom-color: 4285f4;
}

.Sample-icon, .svg, .about-icon {
  background-image: url("/images/icons/google-ads, , .svg");
}

#cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.codelab-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 0 330px;
  margin: 0 16px 16px 0;
  background-color: #fff;
  max-width: 330px;
  border-radius: 3px;
  box-shadow: 0 1px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid transparent;
}
.codelab-card:nth-of-type(3n) {
  margin-right: 0;
}
.codelab-card img {
  margin-right: 4px;
}
.codelab-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 0 16px;
}
.codelab-card .card-duration {
  display: flex;
  align-items: center;
  color: #aaaaaa;
  font-size: 11px;
  padding: 0 16px;
  mix-blend-mode: initial;
  justify-content: space-between;
}
.codelab-card .card-duration img {
  opacity: 0.24;
}
.codelab-card .card-author,
.codelab-card .card-updated {
  font-size: 12px;
  color: #BDBDBD;
  line-height: 16px;
  text-align: right;
}
.codelab-card .description {
  padding: 16px 16px 0 16px;
  flex: 1 0 auto;
  color: #30307f;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: top justify;
  -webkit-font-smoothing: antialiased;
}
.codelab-card .summary {
  padding: 16px 16px 0 16px;
  flex: 1 0 auto;
  color: #aaaaaa;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  align-items: top;
  -webkit-font-smoothing: antialiased;
}

.card-footer {
  height: 10px;
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}
.card-footer paper-button {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #4e5f6d;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: none;
  padding: 13px 25px;
}
.card-footer .category-icon {
  width: 42px;
  height: 42px;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.card-pin {
  position: absolute;
  left: 7px;
  bottom: 14px;
  width: 15px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h18v18H0"/><path fill="#888" d="M13 4V2H5v2h1v5l-1.5 1.5V12H8v4l1 1 1-1v-4h3.5v-1.5L12 9V4"/></g></svg>');
}

/* ***** Responsive ***** */
@media (max-width: 767px) {
  #cards {
    flex-direction: column;
    align-items: center;
  }
  .codelab-card {
    margin: 0 0 16px;
    min-width: 330px;
    max-width: 100%;
    width: 100%;
    flex: 1 0 200px;
  }
  .codelab-card .card-header {
    align-items: center;
  }
  .codelab-card .card-header .category-icon {
    margin: 0;
  }
}
@media (min-width: 767px) and (max-width: 1136px) {
  .codelab-card {
    flex: 0 0 32%;
    margin: 0 2% 2% 0;
  }
}
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2015 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Colors */
/* Typography */
/* Breakpoints */
#footer {
  background-color: #000043;
  font-size: 13px;
  padding: 40px 0;
}
#footer ul, #footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer a {
  color: #9e9e9e;
}
#footer .footer-wrapper {
  display: flex;
}
#footer .link-list {
  border-top: 1px solid #616161;
  flex: 1;
  margin-right: 32px;
}
#footer .link-list:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
#footer .link-list label {
  display: block;
  color: #fff;
  margin: 8px 0 16px;
}

.footerbar {
  background-color: #616161;
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.footerbar a {
  color: currentcolor;
}

@media (max-width: 767px) {
  #footer {
    padding: 24px 0;
  }
  #footer .footer-wrapper {
    flex-direction: column;
  }
  #footer .link-list {
    margin: 0 0 24px 0;
  }
}