body,
input {
  font-family: "proxima-nova", sans-serif;
}

:root {
  /* Default color shades */
  /*
    --md-default-fg-color:               ...;
    --md-default-fg-color--light:        ...;
    --md-default-fg-color--lighter:      ...;
    --md-default-fg-color--lightest:     ...;
    --md-default-bg-color:               ...;
    --md-default-bg-color--light:        ...;
    --md-default-bg-color--lighter:      ...;
    --md-default-bg-color--lightest:     ...;
    */
  /* Primary color shades */
  --md-primary-fg-color: #6246b3;
  /*
    --md-primary-fg-color--light:        #5fc421;
    --md-primary-fg-color--dark:         #f40808;
    --md-primary-bg-color:               ...;
    --md-primary-bg-color--light:        ...;
    */
  /* Accent color shades */
  --md-accent-fg-color: #040646;
  /*
    --md-accent-fg-color--transparent:   ...;
    --md-accent-bg-color:                ...;
    --md-accent-bg-color--light:         ...;
    */
  /* Code block color shades */
  /*
    --md-code-bg-color:                  ...;
    --md-code-fg-color:                  ...;
    */

  --md-status--happy: url('data:image/svg+xml;base64,<YOUR_BASE64_ENCODED_SVG>');

  }

/*****************************************/
/* Front Page CSS                        */
/*****************************************/

.welcome {
  height: 431px;
  background: linear-gradient(270deg, #b40eaa 0%, #0d5cc7 100%);
  color: white;
  position: relative;
  padding: 30px;
}

.hero-title {
  color: #fff;
  font-family: "proxima-nova";
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin: 16px 0;
}

.welcome h3 {
  margin-top: 0px;
  border: 0px solid red;
  color: white;
}

.welcome p {
  color: #fff;
  font-family: "proxima-nova";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.main-hero {
  height: 100%;
  max-width: 1120px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.hero-bubble {
  background: url(../images/bubble-bg.png);
  background-position: right;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 570px;
  right: 0;
  top: 0;
}

.welcome .hero-text {
  width: 550px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillars {
  margin: 72px 0;
}

.info-sections {
  display: flex;
  justify-content: center;
  gap: 82px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 10px;
  min-width: 410px;
}

.info-section {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deploy-logo {
  background: url(../images/deploy.svg);
}

.optimize-logo {
  background: url(../images/optimize.svg);
}

.admin-logo {
  background: url(../images/admin.svg);
}

.main-section-logo {
  height: 100px;
  width: 100px;
  background-size: contain;
}

.section-card {
  height: 440px;
  margin-top: 16px;
  padding: 24px;
  background-color: #f2f2f6ca;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-footer {
  margin-top: 16px;
}

.section-info {
  height: 140px;
  color: #2a2a2a;
  font-family: "proxima-nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  height: 140px;
}

.section-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.section-list .item {
  color: #2a2a2a;
  font-family: "proxima-nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: flex-start;
}

.section-list .item::before {
  content: "";
  background: url(../images/check-small.svg);
  background-size: contain;
  margin-right: 5px;
  display: inline-block;
  height: 24px;
  width: 24px;
}

.main-section-title {
  margin-top: 40px;
  color: #2a2a2a;
  text-align: center;
  font-family: "proxima-nova";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.action-button {
  height: 56px;
  border-radius: 4px;
  background-color: #005cc7;

  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;

  color: #fff;
  text-align: center;
  font-family: "proxima-nova";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

@media only screen and (max-width: 1120px) {
  .hero-bubble {
    opacity: 0.3;
  }
}

@media only screen and (max-width: 1000px) {
  .info-sections {
    justify-content: center;
    gap: 50px;
  }
}

/* Theme - Light Mode */
[data-md-color-scheme="default"] .pillars_item svg {
  fill: #040646;
}

/* Theme - Dark Mode */
[data-md-color-scheme="slate"] .pillars_item svg {
  fill: white;
}

.pillars_container p {
  display: block;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}

.pillars_container .md-button {
  display: block;
  margin: auto;
  margin-top: 10px;
  border-radius: 5px;
  padding: 10px 10px 10px 10px;
}

/* Theme - Light Mode */
[data-md-color-scheme="default"] .pillars_container .md-button {
  color: #040646;
  border-color: #040646;
}

/* Theme - Dark Mode */
[data-md-color-scheme="slate"] .pillars_container .md-button {
  color: #0d14eb;
  border-color: #0d14eb;
}

.pillars_container .md-button:hover {
  color: #ffffff;
  border-color: #040646;
}

.explore .md-grid {
  border-top: 1px solid #aaa;
}

.explore h3 {
  margin-top: 10px;
}

.explore_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 100px;
}

.explore_item {
  width: 200px;
  border: 0px solid orange;
  min-height: 200px;
  margin-left: 5px;
  /* Flex details */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease-in-out;
}

.explore_item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.explore_item .md-button {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 180px;
  text-align: center;
  border-radius: 5px !important;
  padding: 5px;
  font-size: 15px;
}

.explore_item svg {
  display: block;
  margin: auto;
}

.md-header__topic {
  position: relative;
}

.md-version {
  height: unset;
}

.md-version__current {
  font-family: 'proxima-nova';
  font-weight: 600;
  padding: 10px 15px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 6px;
}

[dir=ltr] .md-version__current {
  margin: 0;
}

.md-version__list {
  left: -16px;
}

.md-version__item {
  font-weight: 600;
}

.md-version__item:hover {
  background: rgb(216, 216, 216);
}

@media screen and (max-width: 1219px) { 
  .md-header__source {
    width: fit-content;
    margin-right: 1.5rem;
  }
}

/* Theme - Light Mode */
[data-md-color-scheme="default"] .explore_item svg {
  fill: #040646;
}

/* Theme - Dark Mode */
[data-md-color-scheme="slate"] .explore_item svg {
  fill: white;
}

/* Theme - Light Mode */
[data-md-color-scheme="default"] .explore_item .md-button {
  background-color: #040646;
  border-color: #040646;
}

/* Theme - Dark Mode */
[data-md-color-scheme="slate"] .explore_item .md-button {
  background-color: #0d14eb;
  border-color: #0d14eb;
}

/*****************************************/
/* Global header formatting              */
/*****************************************/

/* Lord images */

/* Theme - Light Mode */
[data-md-color-scheme="default"] .light_theme {
  display: block;
}

[data-md-color-scheme="default"] .dark_theme {
  display: none;
}

/* Theme - Dark Mode */
[data-md-color-scheme="slate"] .light_theme {
  display: none;
}

[data-md-color-scheme="slate"] .dark_theme {
  display: block;
}

/*****************************************/
/* Global header formatting              */
/*****************************************/

h1 {
  font-weight: 550;
}

h2 {
  font-weight: bold !important;
}

h3 {
  font-weight: 550 !important;
}

/*****************************************/
/* Global table formatting               */
/*****************************************/

th,
td {
  border: 1px solid var(--md-typeset-table-color);
  border-spacing: 0;
  border-bottom: none;
  border-left: none;
  border-top: none;
}

.md-typeset__table {
  line-height: 1;
}

.md-typeset__table table:not([class]) {
  font-size: 0.74rem;
  border-right: none;
}

.md-typeset__table table:not([class]) td,
.md-typeset__table table:not([class]) th {
  padding: 9px;
}

/* Theme - Light Mode */
.md-typeset__table tr:nth-child(2n) {
  background-color: #f8f8f8;
}

/* Theme - Dark Mode */
[data-md-color-scheme="slate"] .md-typeset__table tr:nth-child(2n) {
  background-color: hsla(var(--md-hue), 25%, 25%, 1);
}

/*****************************************/
/* Admonissions                          */
/*****************************************/

.md-typeset .admonition,
.md-typeset details {
  border-left-width: 6px;
  background-color: #f8f8f8;
}

/*****************************************/
/* Tooltips                              */
/*****************************************/

.newfeature {
  color: #33cc33;
}

.newdocument {
  color: #2670d8;
}

/*****************************************/
/* Formatting for the API coding         */
/*****************************************/

.sw-verb {
  color: white;
  font-size: 100%;
  font-weight: bold;
  position: relative;
  padding: 8px;
  background-color: #005ccd;
  border-radius: 15%;
}

.sw-path-url {
  font-size: 100%;
  position: relative;
  padding: 3px;
  background-color: #eeeeee;
  border-radius: 15%;
}

/*****************************************/
/* Formatting for the code blocks <code> */
/*****************************************/

/*****************************************/
/* Icons                                 */
/*****************************************/

@keyframes heart {
  0%,
  40%,
  80%,
  100% {
    transform: scale(1);
  }
  20%,
  60% {
    transform: scale(1.15);
  }
}
.heart {
  animation: heart 1000ms infinite;
  color: #1da1f2;
}

.checkmark {
  color: #17b453;
}

.crossmark {
  color: #828282;
}

/*****************************************/
/* Footer                                */
/*****************************************/

.md-footer {
  position: relative;
  height: 110px;
  background: #121212;
}

.md-footer-meta {
  height: 100%;
}

.md-footer-meta__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*****************************************/
/* Copyright                             */
/*****************************************/

.md-copyright__highlight {
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.md-copyright-links {
  display: flex;
  align-items: center;
  color: #BEBEBE
}

.md-copyright-links a:not(:last-child)::after {
  margin: 8px;
  content: "|";
  height: 12px;
  color: #8358fe;
}

/*****************************************/
/* Header & tabs                         */
/*****************************************/

.md-tabs {
  background-color: transparent;
}

.md-tabs__list {
  display: flex;
  align-items: center;
}

.md-tabs__item {
  font-weight: 500;
  line-height: 24px;
  height: 100%;
}

.md-tabs__link {
  margin-top: 0;
}

.md-header {
  height: 70px;
  background: linear-gradient(270deg, #830f7c 0%, #0f4691 100%);
}

.md-header__button.md-logo img {
  height: 40px;
}

.md-search__form {
  border-radius: 6px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.md-header__inner {
  height: 100%;
}

.md-source__repository {
  overflow: visible;
  text-overflow: unset;
}

/*****************************************/
/* Header & tabs                         */
/*****************************************/

.md-status--happy::after {
  mask-image: var(--md-status--happy);
  -webkit-mask-image: var(--md-status--happy);
}

/*****************************************/
/* Code expansions description           */
/*****************************************/

.code-descriptions {
  color: #999999;
}

/*****************************************/
/* Toggle switch for abbreviations       */
/*****************************************/

.tooltip-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-right: 10px;
  margin-bottom: 32px;
  vertical-align: middle;
}

.tooltip-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0f4691;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.label-text {
  font-size: 14px;
  margin-left: 10px;
  vertical-align: middle;
}
