/* Copyright (c) 2019 Cinnabar.dev. All rights reserved.
 */
/*
- Colour palette & shadows
- Sizes
- Fonts
- Default size and scale
- Responsive breakpoints
- Base classes and mixins for design elements
- Defaults for HTML elements
- Specialisations
- UI
*/
/* ----------------------------------------
 * Colour palette
 * ----------------------------------------
 */
/* ----------------------------------------
 * Sizes
 * ----------------------------------------
 */
/* ----------------------------------------
 * Fonts
 * ----------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;800&display=swap");
/* ----------------------------------------
 * Default size and scale
 * ----------------------------------------
 *
 * Sets the width of page to device width on mobile devices
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/@viewport
 */
@viewport {
  width: device-width;
  zoom: 1;
}
/* Official default font size is 16px. Setting the font-size on the html
 * element has the effect of making the effective font size 10px and hence all
 * rem measurements relative to 1rem = 10px.
 * If the user has modified their default font size, relative sized are
 * adjusted proportionally.
 */
html {
  font-size: 62.5%;
}

/* ----------------------------------------
 * Responsive breakpoints
 * ----------------------------------------
 *
 * cf https://www.freecodecamp.org/news/the-100-correct-way-to-do-css-breakpoints-88d6a5ba1862/
 */
/* -------------------------------------------
 * Base classes and mixins for design elements
 * -------------------------------------------
 */
/* A top level container - e.g. a direct descendent of <main>.
 * This specifies the maximum width of the content.
 * Perhaps this is more appropriately applied to <main>.
 */
/* Layout child elements in a column centered on the column axis
 */
/* Layout child elements in a row
 */
/* Layout child elements in a row centered on the row axis
 */
/* Layout child elements in a row with their top edges aligned
 */
/* Layout child elements in a row with their bottom edges aligned
 */
/* ----------------------------------------
 * Defaults for HTML elements
 * ----------------------------------------
 */
/* Apply a natural box layout model to all elements, but allowing components to change
thanks to https://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.site-theme main {
  background-color: white;
  font-size: 1.5rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222222;
}

.app-theme main {
  background-color: #1A1A1A;
  background-image: url("app-theme-background_texture.7ae503527a4e.png");
  background-size: 40px;
  font-size: 1.5rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222222;
  font-size: 1.4em;
  padding: 0 1rem 0 1rem;
}

h1 {
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
}
.app-theme h1 {
  color: white;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
  font-weight: 600;
}
.app-theme h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
}
.app-theme h3 {
  font-size: 2rem;
  margin: 1.5rem 0 0 0;
}

h4 {
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
}
.app-theme h4 {
  font-size: 1.7rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: #F65058;
  text-decoration: none;
}
a:hover {
  color: #888888;
}

::-moz-selection,
::selection {
  color: white;
  background: #F65058;
}

.nowrap {
  white-space: nowrap;
}

code {
  display: block;
  background-color: #EEEEEE;
  color: #555555;
  border-radius: 5px;
  padding: 1rem;
  margin: 1rem 0;
  overflow-x: scroll;
}
code.code-inline {
  display: inline;
  padding: 0.5rem 1rem;
  margin: 0;
}

/* ----------------------------------------
 * Specialisations
 * ----------------------------------------
 */
.tippy-box[data-theme~=cinnabar-pink] {
  background-color: #F65058;
  color: white;
  border: 1px #F65058 solid;
}
.tippy-box[data-theme~=cinnabar-pink] ::selection, .tippy-box[data-theme~=cinnabar-pink] ::-moz-selection {
  background: white;
  color: #F65058;
}
.tippy-box[data-theme~=cinnabar-pink][data-placement^=top] > .tippy-arrow::before {
  border-top-color: #F65058;
}
.tippy-box[data-theme~=cinnabar-pink][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: #F65058;
}
.tippy-box[data-theme~=cinnabar-pink][data-placement^=left] > .tippy-arrow::before {
  border-left-color: #F65058;
}
.tippy-box[data-theme~=cinnabar-pink][data-placement^=right] > .tippy-arrow::before {
  border-right-color: #F65058;
}

.tippy-box[data-theme~=user-badge] {
  background-color: #28334A;
  color: white;
  border: 1px #28334A solid;
}
.tippy-box[data-theme~=user-badge] ::selection, .tippy-box[data-theme~=user-badge] ::-moz-selection {
  background: white;
  color: #28334A;
}
.tippy-box[data-theme~=user-badge][data-placement^=top] > .tippy-arrow::before {
  border-top-color: #28334A;
}
.tippy-box[data-theme~=user-badge][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: #28334A;
}
.tippy-box[data-theme~=user-badge][data-placement^=left] > .tippy-arrow::before {
  border-left-color: #28334A;
}
.tippy-box[data-theme~=user-badge][data-placement^=right] > .tippy-arrow::before {
  border-right-color: #28334A;
}

.site-theme,
.app-theme {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-theme main,
.app-theme main {
  flex: 1;
}

.note-for-none {
  font-style: italic;
}

.nav-header .cb-nav-logotype * {
  display: none;
}
@media (max-width: 599px) {
  .site-theme .nav-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
  }
}
@media (min-width: 600px) {
  .site-theme .nav-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6rem 0 2rem;
    border: none;
    border-bottom: 0.25em solid #F65058;
  }
}
.site-theme .nav-header > .cb-nav-logo-container .cb-nav-logo {
  width: 250px;
  height: auto;
  margin-right: 1rem;
}
@media (max-width: 599px) {
  .site-theme .nav-header > .cb-nav-items-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #EEEEEE;
    padding-bottom: 1.5rem;
    width: 80%;
  }
}
@media (min-width: 600px) {
  .site-theme .nav-header > .cb-nav-items-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 599px) {
  .site-theme .nav-header > .cb-nav-items-container > #text-links,
  .site-theme .nav-header > .cb-nav-items-container > #btn-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 600px) {
  .site-theme .nav-header > .cb-nav-items-container > #text-links,
  .site-theme .nav-header > .cb-nav-items-container > #btn-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
  }
}
@media (min-width: 600px) {
  .site-theme .nav-header > .cb-nav-items-container > #text-links .cb-nav-item:not(:last-of-type):after {
    padding: 0 1.5rem;
    content: "//";
  }
}
.site-theme .nav-header > .cb-nav-items-container .cb-nav-item {
  font-size: 1.5rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222222;
  margin: 0.5rem 0;
  font-weight: 600;
  font-size: 2rem;
}
.site-theme .nav-header > .cb-nav-items-container .cb-nav-item > a {
  color: black;
}
.site-theme .nav-header > .cb-nav-items-container .cb-nav-item > a:hover {
  color: #F65058;
}
.app-theme .nav-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  border: none;
  border-bottom: 1px solid #F65058;
  background-color: #1A1A1A;
  color: white;
  min-height: 50px;
}
.app-theme .nav-header .left-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.app-theme .nav-header .right-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.app-theme .nav-header .cb-nav-logo {
  height: 30px;
  width: auto;
}
.app-theme .nav-header .cb-nav-item {
  font-weight: 100;
  height: 35px;
  min-width: 35px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  margin: 0 0.5rem;
}
.app-theme .nav-header .cb-nav-item .icon {
  height: 25px;
}
.app-theme .nav-header .cb-nav-item .non-hover {
  display: block;
}
.app-theme .nav-header .cb-nav-item .hover {
  display: none;
}
.app-theme .nav-header .cb-nav-item:hover .non-hover {
  display: none;
}
.app-theme .nav-header .cb-nav-item:hover .hover {
  display: block;
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  margin: 0;
}

.main-container > section {
  width: 100%;
}
.site-theme .main-container > section {
  max-width: 960px;
  border-bottom: 3px solid #EEEEEE;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.app-theme .main-container > section {
  width: 600px;
  background-color: white;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 5px;
}
.app-theme .main-container > section header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.site-theme .main-container > section:last-of-type {
  border: 0;
}
.main-container > section.narrow {
  max-width: 750px;
}
.main-container > section.simple-section {
  max-width: 450px;
  border: 1px solid #EEEEEE;
}

#edit_section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-end;
  background: none !important;
  padding: 0;
}
#edit_section .edit-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#edit_section .edit-btn .non-hover {
  display: block;
}
#edit_section .edit-btn .hover {
  display: none;
}
#edit_section .edit-btn:hover .non-hover {
  display: none;
}
#edit_section .edit-btn:hover .hover {
  display: block;
}
#edit_section .edit-btn .icon {
  height: 40px;
}

.app-theme .page-toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.app-theme .breadcrumbs {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  color: white;
}
.app-theme .breadcrumbs a.breadcrumb:after {
  content: " > ";
  color: #555555;
}
.app-theme .breadcrumbs .inactive {
  color: #888888;
}

.subscribe-background {
  background: rgb(0, 73, 89);
  background: linear-gradient(133deg, rgb(0, 73, 89) 0%, rgb(0, 45, 101) 47%, rgb(56, 105, 167) 100%);
}

section#subscribe {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 600px) {
  section#subscribe {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  section#subscribe .description.container {
    width: 50%;
  }
  section#subscribe .form.container {
    flex-grow: 1;
    margin-left: 2rem;
  }
}
section#subscribe {
  border-bottom: 0;
  padding: 4rem 0 !important;
}
section#subscribe .container {
  padding: 2rem;
  border-radius: 10px;
}
section#subscribe .description.container {
  color: white;
}
section#subscribe .form.container {
  background-color: white;
}
section#subscribe header {
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
section#subscribe label {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-weight: 600;
  text-transform: uppercase;
}
section#subscribe .field {
  display: flex;
  flex-wrap: nowrap;
}
section#subscribe .field .control {
  flex-grow: 1;
}
section#subscribe .field .control input {
  width: 100%;
}
section#subscribe .description {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
}

.boat-launch-bkg {
  background-color: #002D65;
  background-image: url("images/boat_from_above.e8e2d9745973.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

section#launched {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 600px) {
  section#launched {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  section#launched .description.container {
    width: 60%;
  }
}
section#launched .description.container {
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
}
section#launched header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
section#launched header .title {
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
section#launched header .date {
  margin-right: 2rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
section#launched p {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
}
section#launched {
  color: white;
  padding: 4rem 0;
}

section#announcement header h1 {
  font-size: 5rem;
}
@media (min-width: 600px) {
  section#announcement header h1 {
    font-size: 8rem;
  }
}
section#announcement header h1 {
  font-weight: 800;
  line-height: 0.8;
  text-align: center;
}
section#announcement .subtitle {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0 0 2rem;
}

section#features .feature-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 900px) {
  section#features .feature-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
section#features .feature-list .feature-item {
  padding: 2rem;
  background: #fff;
  border-left: 4px solid #F65058;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(104, 102, 102, 0.2);
  width: 100%;
  margin: 0;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  section#features .feature-list .feature-item {
    margin-left: 2rem;
  }
}
section#features .feature-list .feature-item:first-of-type {
  margin-left: 0;
}

@media (max-width: 599px) {
  section#pricing {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  section#pricing .signup {
    width: 100%;
  }
}
@media (min-width: 600px) {
  section#pricing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  section#pricing .pricing-container {
    flex-grow: 2;
  }
  section#pricing .signup {
    flex-grow: 1;
    margin-left: 6rem;
  }
}
section#pricing .pricing-container {
  padding-bottom: 2rem;
}
section#pricing .signup {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #EEEEEE;
  border-radius: 10px;
  padding: 2rem 4rem;
}
section#pricing .signup header {
  text-align: center;
}
section#pricing .signup ul {
  padding-left: 0;
}
section#pricing li {
  margin-bottom: 1rem;
}

.section-postscript {
  text-align: right;
}

.screenshot {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.screenshot > img {
  width: 100%;
  box-shadow: 0 2px 12px rgba(104, 102, 102, 0.2);
  margin: 4rem 0;
}

.features-page header {
  margin-bottom: 4rem;
}
.features-page .features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  row-gap: 4rem;
  padding: 0;
  list-style: none;
}
@media (max-width: 599px) {
  .features-page .features-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.features-page .features-list li {
  padding: 2rem;
  background: #fff;
  border-left: 4px solid #F65058;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(104, 102, 102, 0.2);
}

.about-page-contents .item {
  margin-bottom: 6rem;
}

.teammember-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 900px) {
  .teammember-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    justify-content: space-around;
  }
}
.teammember-container {
  margin-top: 2rem;
}
.teammember-container .teammember {
  width: 300px;
  height: 460px;
  margin: 1rem 0;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(104, 102, 102, 0.2);
}
.teammember-container .teammember header {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  color: #F65058;
  font-weight: 600;
  font-size: 2rem;
}
.teammember-container .teammember-pic {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}
.teammember-container .member-info {
  padding: 2rem;
  color: #888888;
  font-family: "Work Sans", sans-serif;
}

footer {
  font-size: 1.5rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #1A1A1A;
}
.site-theme footer {
  padding-top: 2rem;
}
footer .footer-contact,
footer .footer-copyright,
footer .footer-logo {
  margin: 1rem;
  text-align: center;
}
footer .footer-logo {
  width: 250px;
  height: auto;
}
footer .footer-contact {
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
}
footer .footer-copyright {
  font-size: 1.5rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #888888;
  font-size: 1.3rem;
}
@media (min-width: 900px) {
  footer {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
  }
  footer .footer-logo {
    justify-self: center;
    align-self: center;
    grid-column: 2/3;
    grid-row: 1;
  }
  footer .footer-contact {
    justify-self: center;
    align-self: center;
    grid-column: 3/4;
    grid-row: 1;
  }
  footer .footer-copyright {
    justify-self: center;
    align-self: center;
    grid-column: 2/4;
    grid-row: 2;
  }
}
footer a:hover {
  color: lightseagreen;
}

.main-container.error_page {
  padding: 6rem;
}

/* ----------------------------------------
 * Forms, labels and fields
 * ----------------------------------------
 */
form {
  margin: 0 auto;
}
form .errorlist {
  padding: 0;
  list-style: none;
}
form .errorlist ul {
  padding: 0;
  margin: 0;
}

.app-theme .field,
form.cb-form .field {
  width: 100%;
  margin-bottom: 1.5rem;
}
.app-theme label, .app-theme .label,
form.cb-form label,
form.cb-form .label {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  margin: 0;
}
.app-theme label .has-errors, .app-theme .label .has-errors,
form.cb-form label .has-errors,
form.cb-form .label .has-errors {
  font-weight: 600;
}
.app-theme .control,
form.cb-form .control {
  margin-bottom: 0.5rem;
}
.app-theme input,
.app-theme textarea,
.app-theme select,
form.cb-form input,
form.cb-form textarea,
form.cb-form select {
  box-sizing: border-box;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  margin: 0;
  padding: 1rem 1.5rem;
  border-color: #EEEEEE;
  color: #888888;
  background-color: #EEEEEE;
  color: black;
}
.app-theme input::placeholder,
.app-theme textarea::placeholder,
.app-theme select::placeholder,
form.cb-form input::placeholder,
form.cb-form textarea::placeholder,
form.cb-form select::placeholder {
  color: #888888;
}
.app-theme input:hover, .app-theme input:focus,
.app-theme textarea:hover,
.app-theme textarea:focus,
.app-theme select:hover,
.app-theme select:focus,
form.cb-form input:hover,
form.cb-form input:focus,
form.cb-form textarea:hover,
form.cb-form textarea:focus,
form.cb-form select:hover,
form.cb-form select:focus {
  outline: none;
  border-color: #888888;
}
.has-errors input {
  border-color: red !important;
}

.app-theme input.is-valid,
.app-theme textarea.is-valid,
.app-theme select.is-valid,
form.cb-form input.is-valid,
form.cb-form textarea.is-valid,
form.cb-form select.is-valid {
  border-color: lightseagreen;
}
.app-theme input.is-invalid,
.app-theme textarea.is-invalid,
.app-theme select.is-invalid,
form.cb-form input.is-invalid,
form.cb-form textarea.is-invalid,
form.cb-form select.is-invalid {
  border-color: red;
}
.app-theme input,
.app-theme textarea,
.app-theme select,
form.cb-form input,
form.cb-form textarea,
form.cb-form select {
  transition: border-color 0.3s;
}
.app-theme textarea,
form.cb-form textarea {
  height: 120px;
  resize: vertical;
}
.app-theme select,
form.cb-form select {
  appearance: none;
  background: url("https://i.ibb.co/b7xjLrB/selectbox-arrow.png") right center no-repeat;
  background-color: #EEEEEE;
}
.app-theme .help-text,
.app-theme .readonly_field .control,
form.cb-form .help-text,
form.cb-form .readonly_field .control {
  box-sizing: border-box;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  margin: 0;
  padding: 1rem 1.5rem;
  border-color: #EEEEEE;
  color: #888888;
  color: #888888;
  border-width: 2px;
}
.app-theme .help-text,
form.cb-form .help-text {
  margin-bottom: 0.5rem;
}
.app-theme .error-messages,
.app-theme .errorlist,
form.cb-form .error-messages,
form.cb-form .errorlist {
  margin: 0 0 1rem 0;
  color: red;
}
.app-theme .footnote,
form.cb-form .footnote {
  font-size: 1.2rem;
}
.app-theme .required_legend,
form.cb-form .required_legend {
  text-align: right;
  margin-bottom: 1rem;
}

.repo-uri-control {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.repo-uri-control .repo-uri {
  box-sizing: border-box;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  margin: 0;
  padding: 1rem 1.5rem;
  border-color: #EEEEEE;
  color: #888888;
  color: #888888;
  border-width: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  font-family: monospace;
}

.clipboard-btn {
  border-radius: 0 5px 5px 0;
  border: none;
  background-color: #EEEEEE;
  width: 50px;
}
.clipboard-btn .clipboard-icon {
  width: 15px;
}
.clipboard-btn:hover {
  background-image: linear-gradient(#EEEEEE, #ddd);
}
.clipboard-btn:active {
  background-image: linear-gradient(#EEEEEE, #bbb);
}

#public-key {
  word-break: break-all;
}

/* ----------------------------------------
 * GRIDS
 * ----------------------------------------
 */
.settings-grid {
  margin: 1.5rem 0 0 0;
  row-gap: 1.5rem;
  display: grid;
  grid-template-columns: 25% 75%;
}
.settings-grid .full-width {
  grid-column: span 2;
}

.grid-solo-row {
  display: flex;
  margin-bottom: 1.5rem;
}
.grid-solo-row .left-content {
  width: 25%;
}
.grid-solo-row .right-content {
  width: 75%;
}

ul.workspace-list {
  list-style: none;
  padding-left: 0;
}
ul.workspace-list h3 {
  font-weight: 600;
  margin: 1.5rem 0;
}
ul.workspace-list .project-list {
  padding: 0 1.5rem;
}

ul.project-list {
  list-style: none;
  padding-left: 0;
  list-style: none;
  margin: 0.5rem;
  padding-left: 0;
}
ul.project-list li {
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}
ul.project-list li.empty {
  padding: 1rem;
}
ul.project-list li:hover:not(.empty) {
  border-radius: 5px;
  border: 1px #888888 solid;
  box-shadow: 0 2px 12px rgba(104, 102, 102, 0.2);
}
ul.project-list li a.item-link {
  width: 100%;
  padding: 1rem;
}
ul.project-list > li > .item-link {
  display: flex;
}
ul.project-list > li > .item-link > .label {
  width: 25%;
  padding-right: 1.5rem !important;
  cursor: pointer;
}
ul.project-list > li > .item-link > .abstract {
  width: 75% !important;
  border: none;
  color: #555555;
}

ul.team-list {
  margin: 1.5rem 0 0 0;
  list-style: none;
  padding-left: 0;
}

.ssh-key-list-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ssh-keys-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0.5rem;
  padding-left: 0;
}
.ssh-keys-list li {
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}
.ssh-keys-list li.empty {
  padding: 1rem;
}
.ssh-keys-list li:hover:not(.empty) {
  border-radius: 5px;
  border: 1px #888888 solid;
  box-shadow: 0 2px 12px rgba(104, 102, 102, 0.2);
}
.ssh-keys-list li a.item-link {
  width: 100%;
  padding: 1rem;
}
.ssh-keys-list {
  max-width: 90%;
}
.ssh-keys-list > li {
  width: 100%;
}
.ssh-keys-list > li > .item-link {
  display: inline-block;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-end;
}
.ssh-keys-list > li > .item-link .key-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 2rem;
}
.ssh-keys-list > li > .item-link .key-icon img {
  max-width: 100%;
}
.ssh-keys-list > li > .item-link .key-description {
  font-size: 16px;
  font-weight: 600;
}

/* ----------------------------------------
 * BUTTONS
 * ----------------------------------------
 */
.action-btns-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.primary-btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: #F65058;
  border: 2px solid #F65058;
  border-radius: 10px;
  min-width: 100px;
  color: white !important;
}
.primary-btn:not(.inactive-btn):not(:disabled):active {
  background-color: transparent;
  color: #F65058 !important;
}
.primary-btn:disabled {
  background-color: #EEEEEE !important;
  border-color: #EEEEEE !important;
  color: white !important;
}

.secondary-btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: white;
  border: 2px solid #888888;
  border-radius: 10px;
  min-width: 100px;
  color: #888888 !important;
}
.secondary-btn:not(.inactive-btn):not(:disabled):active {
  background-color: #888888;
  color: white !important;
}
.secondary-btn:disabled {
  background-color: #EEEEEE !important;
  border-color: #EEEEEE !important;
  color: white !important;
}

.warning-btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: white;
  border: 2px solid coral;
  border-radius: 10px;
  min-width: 100px;
  color: coral !important;
}
.warning-btn:not(.inactive-btn):not(:disabled):active {
  background-color: coral;
  color: white !important;
}
.warning-btn:disabled {
  background-color: #EEEEEE !important;
  border-color: #EEEEEE !important;
  color: white !important;
}

.inactive-btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: white;
  border: 2px solid #EEEEEE;
  border-radius: 10px;
  min-width: 100px;
  color: #EEEEEE !important;
}
.inactive-btn:not(.inactive-btn):not(:disabled):active {
  background-color: #EEEEEE;
  color: white !important;
}
.inactive-btn:disabled {
  background-color: #EEEEEE !important;
  border-color: #EEEEEE !important;
  color: white !important;
}

section#subscribe form button {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: lightseagreen;
  border: 2px solid lightseagreen;
  border-radius: 10px;
  min-width: 100px;
  color: white !important;
}
section#subscribe form button:not(.inactive-btn):not(:disabled):active {
  background-color: transparent;
  color: lightseagreen !important;
}
section#subscribe form button:disabled {
  background-color: #EEEEEE !important;
  border-color: #EEEEEE !important;
  color: white !important;
}
section#subscribe form input[type=text],
section#subscribe form input[type=email] {
  padding: 8px 8px;
  border: 2px #EEEEEE solid;
  border-radius: 4px;
}
section#subscribe form input.is-valid {
  border: 2px solid lightseagreen;
  box-shadow: 0 0 1.5px lightseagreen;
}
section#subscribe form input.is-invalid {
  border: 2px solid red;
  box-shadow: 0 0 1.5px red;
}
section#subscribe form button:focus,
section#subscribe form input:focus {
  outline: none;
}

.messages .message {
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.messages .success {
  background-color: lightgreen;
}
.messages .warning {
  background-color: lightyellow;
}
.messages .error {
  background-color: lightcoral;
}
.messages .info {
  background-color: lightsteelblue;
}
.messages .debug {
  background-color: lightblue;
}
.messages .message-close-btn {
  margin-left: 1.5rem;
  color: black;
}
.messages .message-close-btn:hover {
  color: #888888;
}

.ribbon-box {
  position: relative;
}

.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}

.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#F65058 0%, #BF3E44 100%);
  box-shadow: 0 3px 10px -5px rgb(0, 0, 0);
  position: absolute;
  top: 19px;
  right: -21px;
}

.ribbon span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #BF3E44;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #BF3E44;
}

.ribbon span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #BF3E44;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #BF3E44;
}

ul.user-id-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
ul.user-id-list li {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
ul.user-id-list li div.user-badge {
  white-space: nowrap;
  box-sizing: border-box;
  background: #EEEEEE;
  padding: 0.5rem 1rem;
  border-radius: 1em;
}

.page-toolbar .cb-button {
  font-size: 1.5rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  padding: 0.35rem 0.7rem;
  border-radius: 1.68rem;
  background-color: #222222;
  border: 1px solid #888888;
  color: #F65058;
}
.page-toolbar .cb-button:hover {
  background-color: #EEEEEE;
  color: #555555;
  border: 1px solid #EEEEEE;
}

/*# sourceMappingURL=styles.css.26230d9969d5.map */
