.code-example{
  margin-top: 15px;
}

.code-example-select-desktop{
  display: flex;
  flex-direction: row;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.code-example-select-desktop a, .code-example-select-desktop a:hover, .code-example-select-desktop a:visited, .code-example-select-desktop a:focus, p a:active{
  color:#21223d;
  text-decoration: none;
}
.code-example-select-desktop a{
  color: #21223d;
  background-color: #dbdde7;
  padding: 5px;
  padding-bottom: 7px;
  font-size: 100%;
  display: inline;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 0px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.code-example-select-desktop a.active{
  color: #ffffff;
  padding-top: 10px;
  margin-top: 0px;
  background-color: #252834;

}

.code-example-codebox{
  display: none;
}

.code-example-codebox.active{
  display: block;
}

.code-example-select-mobile {
  margin-bottom: 5px;

}
.code-example-select-mobile select{
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #252834;
  background-color: #fff;
  background-image: url(/static/images/icons/select-arrow.svg);
  background-size: 38px;
  background-position: top right;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 700;
  color: #21223d;
  font-family: Lato,sans-serif;
  padding: 0 38px 0 16px;
  outline: 0;
  cursor: pointer;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.code-example-select-mobile select option{
      font-size: 14px;
    font-weight: 700;
    color: #21223d;
    font-family: Lato,sans-serif;
    cursor: pointer;
}

@media (max-width: 600px) {
  .code-example-select-mobile{
    display:block;
  }
  .code-example-select-desktop{
    display:none;
  }
}

@media (min-width: 600px) {
  .code-example-select-mobile{
    display:none;
  }
  .code-example-select-desktop{
    display:block;
  }
}

