.edge--bottom {
  position: relative;
  z-index: 1;
}
.edge--bottom:after {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.edge--bottom:after {
  bottom: 0;
  transform: skewY(-1.5deg);
  transform-origin: 100%;
}

.edge--bottom--reverse {
  position: relative;
  z-index: 1;
}
.edge--bottom--reverse:after {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.edge--bottom--reverse:after {
  bottom: 0;
  transform: skewY(1.5deg);
  transform-origin: 0 100%;
}

.edge--top {
  position: relative;
  z-index: 1;
}
.edge--top:before {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.edge--top:before {
  top: 0;
  transform: skewY(1.5deg);
  transform-origin: 100% 0;
}

.edge--top--reverse {
  position: relative;
  z-index: 1;
}
.edge--top--reverse:before {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.edge--top--reverse:before {
  top: 0;
  transform: skewY(-1.5deg);
  transform-origin: 0 0;
}

.edge--both {
  position: relative;
  z-index: 1;
}
.edge--both:before, .edge--both:after {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.edge--both:before {
  top: 0;
  transform: skewY(1.5deg);
  transform-origin: 100% 0;
}
.edge--both:after {
  bottom: 0;
  transform: skewY(-1.5deg);
  transform-origin: 100%;
}

.edge--both--reverse {
  position: relative;
  z-index: 1;
}
.edge--both--reverse:before, .edge--both--reverse:after {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.edge--both--reverse:before {
  top: 0;
  transform: skewY(-1.5deg);
  transform-origin: 0 0;
}
.edge--both--reverse:after {
  bottom: 0;
  transform: skewY(1.5deg);
  transform-origin: 0 0;
}

@font-face {
  font-family: "Gotham-Book";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/gotham/gotham-book.eot?#iefix") format("embedded-opentype"), url("/fonts/gotham/gotham-book.woff") format("woff"), url("/fonts/gotham/gotham-book.ttf") format("truetype"), url("/fonts/gotham/gotham-book.svg#Gotham-Book") format("svg");
}
@font-face {
  font-family: "Gotham-Bold";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/gotham/gotham-bold.eot?#iefix") format("embedded-opentype"), url("/fonts/gotham/gotham-bold.woff") format("woff"), url("/fonts/gotham/gotham-bold.ttf") format("truetype"), url("/fonts/gotham/gotham-bold.svg#Gotham-Bold") format("svg");
}
@font-face {
  font-family: "Gotham-Medium";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/gotham/gotham-medium.woff") format("woff"), url("/fonts/gotham/gotham-medium.ttf") format("truetype"), url("/fonts/gotham/gotham-medium.svg#Gotham-Medium") format("svg");
}
@keyframes fade-out_bg {
  from {
    background-color: #ffcb38;
  }
  to {
    background-color: white;
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
body {
  font-family: "Gotham-Book";
  color: black;
}

h1, h2, h3, h4 {
  font-weight: bold;
}

header {
  min-height: 50px;
  width: 100%;
  background-color: #ffcb39;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

footer {
  flex: 0 0 auto;
  background-color: black;
  color: #ffcb38;
  text-align: center;
  padding: 15px 0;
}
@media all and (min-width: 768px) {
  footer {
    padding: 50px 15px;
  }
}

p {
  margin-bottom: 1em;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vH;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-nav__button {
  margin-left: 25px;
  color: black;
  font-family: "Gotham-Bold";
  text-transform: uppercase;
  text-align: right;
}
.site-nav__button .glyphicon {
  color: white;
}
.site-nav__button_chandeliercreative {
  color: white;
}
.site-nav__button_chandeliercreative .glyphicon {
  color: #fefefe;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  max-width: 1200px;
  padding: 20px 30px;
  margin-right: auto;
  margin-left: auto;
}
.site-nav_login {
  justify-content: center;
}
.site-nav__logo-wrapper {
  width: 100%;
  max-width: 200px;
}
.site-nav__logo-image {
  height: auto;
  width: 100%;
}

.section_intro-page, .section_login-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: inherit;
  background-color: #efefef;
}
.section_login-page {
  justify-content: center;
}
.section__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.section__content_intro-page {
  margin-top: 100px;
}

.form {
  display: flex;
  flex-direction: column;
  background-color: white;
}
.form_login {
  min-height: 421px;
  max-width: 517px;
  padding: 38px 50px;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .form_login {
    width: 517px;
  }
}
.form__title {
  margin: 0 0 40px;
}
.form__error-message {
  padding: 2px 5px;
  margin: 0 0 20px;
  transition: all 0.25s ease;
  animation: fade-out_bg 1s ease;
  text-decoration: underline;
}
.form__label-and-input {
  margin: 0 0 40px;
}
.form__label {
  text-transform: uppercase;
}
.form__submit-btn {
  max-width: 140px;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: black;
  border: none;
  color: white;
  text-transform: uppercase;
}

.dropdown__toggle {
  z-index: 1;
  position: absolute;
  top: 0;
  height: 34px;
  width: 100%;
  padding: 0;
  margin: 0 0 0 1px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0;
  text-indent: -10px;
}
.dropdown__toggle:focus {
  outline: 0;
}
.dropdown__toggle:focus ~ .dropdown__current-selection {
  background-color: #e8e8e8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.dropdown__toggle:focus ~ .dropdown__current-selection:after {
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #555 transparent;
}
.dropdown__toggle:focus ~ .dropdown__options-wrapper {
  opacity: 1;
  visibility: visible;
}

.dropdown__current-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  cursor: pointer;
  background-color: #e8e8e8;
  color: #333;
  text-align: center;
  text-indent: 0;
  text-shadow: 0 0 #fff;
  line-height: 32px;
}
.dropdown__current-selection i {
  font-size: 0.75em;
}
.dropdown__current-selection .current-size {
  margin-right: 5px;
  text-indent: 10px;
}

.dropdown__options-wrapper {
  transition: all 0.25s ease;
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0;
  text-indent: 20px;
  line-height: 32px;
}
.dropdown__options-wrapper:hover {
  opacity: 1;
  visibility: visible;
}
.dropdown__options-wrapper li a {
  display: block;
  color: #333;
  text-indent: 10px;
  text-shadow: 0 1px #fff;
}
.dropdown__options-wrapper li a:hover {
  background: #dfdfdf;
  text-decoration: none;
}

.dropdown__option {
  cursor: pointer;
}

.dropdown {
  display: inline-block;
  position: relative;
  width: 150px;
  font-family: "Gotham-Bold";
  text-align: left;
}
.dropdown__instruction-label {
  margin-bottom: 5px;
  font-size: 1.1em;
  font-family: "Gotham-Bold";
}

.welcome-message {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.ad-campaign__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  padding: 45px 10px 0;
}
@media all and (min-width: 768px) {
  .ad-campaign__header {
    padding: 45px 30px 0;
  }
}

.ad-campaign__size-selector {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transition: all 0.25s ease;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 767px) {
  .ad-campaign__size-selector {
    bottom: -60px;
  }
}

.ad-campaign__content {
  width: 100%;
  padding: 0 30px 45px;
  margin: 145px auto 0;
  text-align: center;
}
@media (min-width: 768px) {
  .ad-campaign__content {
    margin-top: 100px;
  }
}
.ad-campaign__content_choose-subcampaign {
  margin-top: 25px;
  text-align: left;
}

.ad-campaign__sub-campaigns {
  -webkit-padding-start: 35px;
}
.ad-campaign__sub-campaigns li {
  font-family: "Gotham-Book";
  text-transform: capitalize;
  margin-top: 10px;
}
.ad-campaign__sub-campaigns li:first-child {
  margin-top: 15px;
}

.ad-campaign__client-name, .ad-campaign__name {
  margin: 0;
  font-size: 2.15em;
  font-family: "Gotham-Bold";
}
.ad-campaign__name {
  color: black;
  font-size: 1.075em;
  text-transform: uppercase;
  text-decoration: underline;
}
.ad-campaign__loader {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 31px;
  left: 50%;
  opacity: 1;
  transition: all 0.5s ease;
  transform: translateX(-50%);
}
.ad-campaign__loader.ng-hide {
  opacity: 0;
  display: block !important;
}
.ad-campaign__loader.ng-hide-add, .ad-campaign__loader.ng-hide-remove {
  transition: all linear 0.5s;
}
.ad-campaign__html-ad {
  position: relative;
}

footer {
  font-size: 12px;
  letter-spacing: 1px;
}
footer a, footer a:hover {
  color: #ffcb38;
}
footer p:first-child {
  letter-spacing: 3px;
}
@media all and (min-width: 768px) {
  footer p:first-child {
    letter-spacing: 6px;
  }
}
footer ul.social {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
  letter-spacing: 0;
}
footer ul.social li {
  margin: 0 10px;
}
footer ul.social li a {
  height: 25px;
  width: 25px;
  border: 1px solid #ffcb38;
  display: block;
  border-radius: 50%;
  position: relative;
}
footer ul.social li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

[ng-click] {
  cursor: pointer;
}

.breadcrumb > li + li:before {
  font-family: sans-serif !important;
}

/*# sourceMappingURL=ad-browser.css.map */