@import "fonts.css";

html {
  font-size: 14px;
}
html.is-active {
  overflow: hidden;
}

body {
  background: #fafafa;
  font-family: "Roboto", sans-serif;
  position: relative;
}
body.is-active {
  overflow: hidden;
}
body.is-active .navCont {
  height:100%;
}

main {
  margin: 0 auto;
  max-width: 1000px;
}

table {
  font-size: 14px;
  max-width: 1000px;
}

code {
  border: 1px solid #dbdbdb;
}
.code {
  margin-top: 0;
}

section a {
  font-weight: 800;
  color: #ff3860;
}

section .swagger-ui a {
  font-weight: inherit;
}

.button {
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  box-shadow: 0 0 3rem rgba(255, 56, 96, 0.5);
}

.swagger-ui .information-container {
  display: none;
}

.coming-soon {
  font-size: small;
  color: #ff3860;
}

.icon.tooltip {
  background-color: #363636;
  border-radius: 100%;
  color: #FFFFFF;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.2rem;
}

/* Footer Changes */
footer .container {
  max-width: 800px;
}
.footer {
  padding: 3rem 1.5rem;
}
.footerText {
  align-self: center;
}
.footer-logo {
  width: 55px;
  margin-top: 3px;
}


/* Request Form Styling */
.access-form-submit {
  margin-top: 32px;
}
.access-form form {
  max-width: 700px;
  margin: 0 auto;
}
.access-form .brand-region-select {
  margin: 6px 0;
  display: inline-block;
  width:33%;
  min-width: 220px;
}
.access-form .field:not(:last-child) {
  margin-bottom: 1.5rem;
}
.access-form .columns {
  margin-top: 20px;
}
.label-required::after {
  content: '*';
  color: red;
  padding-left: 2px;
}
.flash-container {
  text-align: center;
}
.flash-notification {
  display: inline-block;
  margin-top: 2rem;
  text-align: center;
  margin-bottom: 0;
}


/* Responses Styling */
.response-col_links {
  display: none; /* hides [Links column](https://swagger.io/docs/specification/links/) */
}


.swagger-ui .example span,
.swagger-ui .opblock-body pre,
.swagger-ui pre.example.microlight {
  font-weight: normal;
}

.width-fifty-percent {
  width: 50%;
}

.mainCont.columns.is-gapless:not(:last-child) {
  margin-bottom:0;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: -3rem -1.5rem;
  padding: 1rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
}
.contentCont {
  width: calc(100% - 210px);
  position: relative;
}
.contentCont .section {
  min-height: calc(100vh - 164px);
}
.contentCont .column {
  max-width: 100%;
}
.contentCont .section .content {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 1.5rem;
}
.content h2 {
  font-weight: 800;
}
.content h2:not(:first-child) {
  margin-top:0;
}


/* Sidebar Navigation */
.navCont {
  background: #ff3860;
}
.sidenav {
  width: 210px;
  padding: 0 1.5rem;
  color: white;
  position: sticky;
  position: -webkit-sticky;
  overflow-y: scroll;
  height: 100vh;
  top: 0;
}
.sidenav::-webkit-scrollbar {
  width: 0px;
}
.titleTxt {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.125;
  padding: 1rem 1.5rem;
  margin: 0 -1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.titleTxt a {
  color: white;
}
.titleTxt a:hover {
  color: white;
}
.titleTxt span {
  font-size: 1.3rem;
  font-weight: 300;
}
#masterMenu {
  margin: 1.5rem 0 0 0;
  padding: 0 0 20px 0;
}
#masterMenu .parent {
  font-weight: 800;
  font-size: 1.1rem;
}
#masterMenu .menu-list a {
  color: white;
}
#masterMenu .menu-list a:hover {
  background-color: rgba(255,255,255,0.15);
}
#masterMenu .menu-list a.is-active {
  background-color: #da2e51;
}
#masterMenu .menu-list a.externalLink:hover {
  background-color: rgba(255,255,255,0.15);
}
#masterMenu .menu-list a.externalLink.is-active {
  background-color: transparent;
}


/* Mobile Burger Animation */
#mobileBurger {
  position: absolute;
  right:0;
  top:0;
  color: white;
  width:65px;
  height:68px;
  display: none;

  padding: 15px 15px;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
#mobileBurger:hover {
  opacity: 0.8;
}
#mobileBurger:focus {
  outline: none;
}
.burgerBox {
  width: 35px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.burgerBox-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.burgerBox-inner, .burgerBox-inner::before,
.burgerBox-inner::after {
  width: 35px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.burgerBox-inner::before,
.burgerBox-inner::after {
  content: "";
  display: block;
}
.burgerBox-inner::before {
  top: -10px;
}
.burgerBox-inner::after {
  bottom: -10px;
}
.animated {
  overflow: hidden;
}
.animated .burgerBox-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.animated .burgerBox-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.animated .burgerBox-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.animated.is-active .burgerBox-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.animated.is-active .burgerBox-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.animated.is-active .burgerBox-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}


/* Request Button In Title Bar */
.requestMe {
  text-transform: uppercase;
  font-weight: 800;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 0.9rem;
  height: 2.5rem;
  width: 140px;
  border-width: 2px;
}


/* FAQ Accordions */
.accordions .accordion .accordion-header {
  background-color: #ffffff;
  font-size: 1.25em;
  padding: 1.3rem;
  color: #4a4a4a;
  border: 1px solid #dbdbdb;
}
.accordions .accordion .accordion-header p {
  margin-bottom:0;
  padding-right: 1.5rem;
}
.accordions .accordion .accordion-header .toggle::before {
  content:'';
  font-family: '';
}
.accordions .accordion.is-active .accordion-header .toggle::before {
  content:'';
  font-family: '';
}
.accordions .accordion .icon {
  opacity: 0.3;
  transition: all 0.1s ease-in-out;
}
.accordions .accordion.is-active .icon {
  transform: rotate(90deg);
  color: #ff3860;
  opacity: 1;
}
.accordions .accordion .accordion-header .toggle {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
}
.accordions .accordion .accordion-header+.accordion-body {
  border-top: 0px solid;
  border-bottom: 0px solid;
  border-radius: 0;
}
.accordions .accordion:last-child .accordion-header+.accordion-body {
  border-top: 0px solid;
  border-bottom: 1px solid #dbdbdb;
}
.accordions .accordion a:not(.button):not(.tag) {
  color: #ff3860;
  text-decoration: none;
}
.accordions .accordion a:hover:not(.button):not(.tag) {
  color: #4a4a4a;
}

/* Form Checkbox Overides */
.is-checkradio[type=checkbox],
.is-checkradio[type=radio] {
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  position: absolute;
  opacity: 0;
}
.is-checkradio[type=checkbox]+label {
  position: relative;
  display: initial;
  cursor: pointer;
  vertical-align: middle;
  padding: .2rem .5rem .2rem 2rem;
  border-radius: 3px;
  color: #999999;
  margin: 0;
}
.is-checkradio[type=checkbox]:hover+label,
.is-checkradio[type=checkbox]:checked+label {
  color: #4a4a4a;
}
.is-checkradio[type=checkbox]:checked+label {
  font-weight: 800;
}
.is-checkradio[type=checkbox]+label::before,
.is-checkradio[type=radio]+label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-color: #ffffff;
  border: 2px solid #dbdbdb;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 3px;
}
.is-checkradio[type=checkbox]:hover:not([disabled])+label::before {
  border: 2px solid #ff3860;
}
.is-checkradio[type=checkbox]:checked+label::before,
.is-checkradio[type=radio]:checked+label::before {
  border: 2px solid #ff3860;
  background-color: #ff3860;
}
.is-checkradio[type=checkbox]+label::after {
  border-color: #ffffff;
  border-width: .15rem;
  width: .4rem;
  height: .8rem;
  top: .205rem;
  left: .55rem;
  position: absolute;
  display: none;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-style: solid;
  border-top: 0;
  border-left: 0;
}
.is-checkradio[type=checkbox]:checked+label::after {
  display: inline-block;
}

.card-payment-base-url {
  color: #ff3860;
}

/* Responsive Overrides */
@media all and (max-width: 768px) {
  .mainCont {
    padding-top: 68px;
  }
  .navCont {
    position: relative;
    z-index: 100;
  }
  .contentCont {
    width:100%;
  }

  .anchor {
    display: block;
    position: relative;
    top: -75px;
    visibility: hidden;
  }

  .titleTxt {
    background-color: #ff3860;
    position: fixed;
    top:0;
    left:0;
    margin: 0;
    width:100%;
    z-index: 100;
  }
  #mobileBurger {
    display: inherit;
  }
  .sidenav {
    width:100%;
    height: auto;
  }
  #masterMenu {
    display: none;
    margin: 1.5rem 0 2rem 0;
    padding: 65px 1.5rem 30px 1.5rem;
    text-align: center;
  }
  #masterMenu.is-active {
    display: inherit;
    height:100%;
    overflow-y: scroll;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    background-color: #ff3860;
  }
}

@media all and (max-width: 500px) {
  .requestMe {
    display: none;
  }
  .access-form .field:not(:last-child), .access-form .field {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .access-form .field.is-grouped > .control.is-expanded {
    flex:1 100%;
    margin: 0 0 1.5rem 0;
  }
}
