@font-face {
  font-family: "SimpleSansLight";
  font-style: normal;
  font-weight: normal;
  src: url("themes/rc/fonts/SimpleSansLight.woff");
}

@font-face {
  font-family: "SimpleSansMedium";
  font-style: normal;
  font-weight: normal;
  src: url("themes/rc/fonts/SimpleSansMedium.woff");
}

@font-face {
  font-family: "SimpleSans";
  font-style: normal;
  font-weight: normal;
  src: url("themes/rc/fonts/SimpleSans.woff");
}

/* restrict admin potal to tablet size minimum */

body,
html {
  overflow-x: hidden;
}

html,
#full-body {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

body {
  min-height: 100%;
  background-color: #004164;
}

#full_body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
 /*margin-top: -100px;*/
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
 /*sw 19.06 reskin changes*/
    background-color: white;
}

#logo {
  height: 52px !important;
  width: 200px !important;
  margin-top: 15px !important;
}

#logo img {
  height: 52px !important;
}

.main-content {
  overflow-x: hidden;
}

.main-content.inner-navigation {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

/* user session info */

#user-session {
  line-height: 18px;
  padding: 14px 20px;
  border-left: 1px solid #ccc;
  height: 80px;
}

p.warning,
p.info,
p.success {
  display: block;
  margin: 5px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid;
}

p.warning {
  border-color: #cd343f;
  color: #cd343f;
  background-color: rgba(205, 92, 92, 0.1);
}

p.info {
  border-color: darkorange;
  color: darkorange;
  background-color: rgba(255, 165, 0, 0.1);
}

/* buttons */

.button {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  background: #f60;
  font-family: "SimpleSans", Arial, sans-serif;
  border: 0;
  padding: 10pt 20pt;
  color: white !important;
  min-width: 180px;
  max-width: 400px;
}

.button.small {
  padding: 5pt 10pt;
  min-width: 100px;
}

.button.smallSubmit {     
  font-weight: normal;
  padding: 5pt 10pt;
  min-width: 75px;
}
.button.smallCancel {
  font-weight: normal;
  padding: 5pt 10pt;
  min-width: 75px;
  background: #645853;
}

.button.small-long {
  padding: 5pt 10pt;
  min-width: 200px;
}

.button:hover {
  background: #fc7243;
  cursor: pointer;
  color: white !important;
}

.button.disabled {
  background: #ccc;
  cursor: default;
}

.button.gray {
  background: #999;
}

.button.gray:hover {
  background: #aaa;
}

.button.red {
  background: indianred;
}

.button.red:hover {
  background: crimson;
}

.button.blue {
  background: #00a9e0;
}

.button.blue:hover {
  background: #00c0ff;
}

.button.icon {
  min-width: 36px;
  padding: 6pt;
  margin: 5px;
  background: none;
}

.button.icon:hover {
  background: #eee !important;
}

.button.icon.blue {
  color: #00a9e0 !important;
}

.button.icon.red {
  color: indianred !important;
}

.button.icon.gray {
  color: #999 !important;
}

.button.icon.green {
  color: #43B02A !important;
}

/* accordion sections */

.section-content-toggle {
  background: blue;
  padding: 20px 0 15px 0;
}

.section-content-toggle:hover {
  cursor: pointer;
}

.section-content-toggle h2 {
  color: white !important;
  margin: 0;
  line-height: 100%;
}

.section-content-toggle a {
  line-height: 74px;
  opacity: .7;
  color: white !important;
  margin: 0 15px 0 0 !important;
}

.section-content-toggle a:hover {
  opacity: 1;
  cursor: pointer;
}

.section-content {
  padding-top: 20px;
  overflow: auto;
}

@media (max-width: 800px) {
  .section-content-toggle a {
      display: none;
  }
  #section1 .container .column-4 {
      margin-top: 30px;
  }
  #section1 .container .column-4:first-child {
      margin-top: 0;
  }
  .developer-link h3 {
      font-size: 24px !important;
      line-height: 28px !important;
  }
}

/* edit/create product pages */

hr.shadow {
  width: 200%;
  margin-left: -200px;
  margin-right: -200px;
  border: 0;
  clear: both;
  border-top: 20px solid white;
  box-shadow: 0 9px 13px rgba(0, 0, 0, 0.1);
}

hr.line {
  width: 200%;
  margin-left: -200px;
  margin-right: -200px;
  border: 0;
  clear: both;
  border-top: 20px solid white;
  border-bottom: 1px solid #ccc;
  margin-top: 20px;
}

/* Developer Portal box links */

.developer-box-link-container {
  width: 100%;
  max-width: 850px;
  padding: 1em;
  margin: 0 auto;
}

.developer-box-link-container div {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox */
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.developer-box-link-container div .developer-box-link {
  width: 100%;
  min-height: 150px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /*   @include flexbox; */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox */
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  border: 2px solid #ccc;
}

.developer-box-link-container div .developer-box-link i {
  color: #bdc1cb;
  margin-top: 10px;
}

.developer-box-link-container div .developer-box-link h3 {
  margin-bottom: 0;
}

.developer-box-link-container div .developer-box-link:hover {
  border-color: #f60;
  cursor: pointer;
}

/* NEW LANDING PAGE */

/* TODO: remove styles for old landing page once approved */

#developer-hero {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

#developer-hero h1 {
  margin: 0;
}

@media (min-width: 768px) {
  #developer-hero {
      background-position: center center;
  }
}

.developer-link {
  height: 390px;
  margin-bottom: 20px;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox */
  color: white !important;
  background-color: #004164;
  cursor: pointer;
}

.developer-link#link-cardpointe {
  background-image: url("../img/devp-home/payeezy-dark.jpg");
  background-size: cover;
}

.developer-link#link-rapidconnect {
  background-image: url("../img/devp-home/rapidconnect-dark.jpg");
  background-size: cover;
}

.developer-link#link-marketplace {
  background-image: url("../img/devp-home/marketplace-dark.jpg");
  background-size: cover;
}

.developer-link#link-clover {
  background-image: url("../img/devp-home/clover-dark.jpg");
  background-size: cover;
}

.developer-link#link-creditcall {
  background-image: url("../img/devp-home/creditcall-dark.png");
  background-size: cover;
}

.developer-link#link-clover-appmarket {
  background-image: url("../img/devp-home/clover-appmarket-dark.jpg");
  background-size: cover;
}

.developer-link#link-gyft {
  background-image: url("../img/devp-home/gyft-dark.jpg");
  background-size: cover;
}

.developer-link#link-financialservices {
  background-image: url("../img/devp-home/financialservices-dark.jpg");
  background-size: cover;
}

.developer-link h3 {
  color: white;
  padding: 40px 20px;
  margin: 0;
  display: block;
  min-height: 280px;
  width: 100%;
}

.developer-link img {
  margin-bottom: 40px;
}

.developer-link .rollover-text {
  display: none;
  padding: 20px;
  min-height: 140px;
  width: 100%;
}

.developer-link .rollover-text .link {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}

.developer-link .rollover-text .name {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 24px;
}

.developer-link:hover {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.developer-link:hover h3 {
  display: none;
}

.developer-link:hover .rollover-text {
  display: block;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
}

.developer-link:hover .rollover-text .link {
  color: #00a9e0;
}

.developer-link:hover .rollover-text .link:hover {
  color: #00c0ff;
  cursor: pointer;
}

.developer-link:hover .rollover-text .name {
  color: #004164;
}

.fancy-field.required::before {
  content: "*";
  color: crimson;
  float: right;
  font-weight: bold;
  margin-bottom: -25px;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  box-sizing: border-box;
  outline: none !important;
  box-shadow: none !important;
  z-index: 1;
  background: none;
  width: 100%;
  font-size: 15px;
  border: 2px solid #ccc;
  padding: 10px;
  resize: none !important;
}

textarea:focus {
  border-color: #00a9e0;
}

label.required::after {
  content: "*";
  color: crimson;
  margin-left: 4px;
  font-weight: bold;
}

/* contact form modals */

.modal {
  color: #424242;
}

.modal .modal-content,
.modal .modal-body {
  border: 0;
  background: white !important;
}

.modal .modal-header {
  background: #004164;
  margin-bottom: 15px;
}

.modal .modal-header h4 {
  color: white !important;
}

.modal .modal-body {
  padding: 0 15px;
}

.modal .modal-body form {
  overflow: auto;
  max-width: 100%;
}

.modal .modal-body form .form-element {
  text-align: left;
}

.modal .modal-body form .form-element .fancy-field.required::before {
  content: "*";
  color: crimson;
  float: right;
  font-weight: bold;
  margin-bottom: -25px;
}

.modal .modal-body form .form-element textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  box-sizing: border-box;
  outline: none !important;
  box-shadow: none !important;
  z-index: 1;
  background: none;
  width: 100%;
  font-size: 15px;
  border: 2px solid #ccc;
  padding: 10px;
  resize: none !important;
}

.modal .modal-body form .form-element textarea:focus {
  border-color: #00a9e0;
}

.modal .modal-body table {
  width: 100%;
}

.modal .modal-footer {
  background: #eaebec;
  text-align: right;
  padding: 15px;
  margin-top: 15px;
}

.modal .modal-footer .button {
  color: white;
  font-size: 14px;
  min-width: 0;
}

.modal .modal-footer .button.button-secondary {
  background: #999;
}

.modal .modal-footer .button.button-secondary:hover {
  background: #aaa;
}

.modal .modal-footer .button.button-primary {
  background: #f60;
}

.modal .modal-footer .button.button-primary:hover {
  background: #fc7243;
}

.modal.prompt {
  width: 400px;
  text-align: center;
}

.modal.prompt.warning .modal-header {
  background: indianred;
}

.ual-error {
  background: rgba(255, 0, 0, 0.1);
  padding: 10px;
  border: 1px solid red;
  border-radius: 4px;
  color: red;
}

.table {
  width: 100%;
  text-align: left;
  margin: 20px 0;
  border-collapse: collapse;
  border: 1px solid #aaa;
}

.table tr td,
.table tr th {
  border-bottom: 1px solid #ddd;
  padding: 9px;
  font-family: "SimpleSansLight", Arial, sans-serif;
  vertical-align: middle;
  word-break: break-all;
}

.table tr.details td {
  padding: 0;
}

.table tr.details td table {
  width: 100%;
  background: #f6f7f8;
}

.table tr.details td table tr td {
  padding: 2px 9px;
  border-color: #dfdfdf;
  font-size: 90%;
}

.table tr:last-child td {
  border: 0;
}

.table tr th {
  color: #004164;
  font-family: "SimpleSansMedium", Arial, sans-serif;
  background: #efefef;
}

@media (min-width: 800px) {
  .developer-link {
      min-height: 560px !important;
  }
}

@media (min-width: 992px) {
  .developer-link {
      min-height: 450px !important;
  }
}

@media (min-width: 1200px) {
  .developer-link {
      min-height: 390px !important;
  }
}

/*# sourceMappingURL=developer.css.map */