/*------------------------------------*\
    			SETTINGS
\*------------------------------------*/
/* @group CSS2 Variables */
:root {
  /* Font Styles */
  --epcl-font-family: var(--gh-font-body, "Figtree", sans-serif);
  --epcl-title-font-family: var(--gh-font-heading, "Outfit", sans-serif);
  --epcl-font-size: 16px; /* General content font size */
  --epcl-line-height: 1.8; /* General content line height */
  --epcl-font-size-editor: 17px; /* Single Content font size */
  --epcl-line-height-editor: 1.8; /* Single Content line height */
  /* Colors */
  --epcl-main-color: #FB64B6; /* Default: #FB64B6; */
  --epcl-secondary-color: #45BCF8; /* Default: #45BCF8; */
  --epcl-titles-color: #0F172A; /* Default: #0F172A; */
  --epcl-text-color: #404855; /* Default: #404855; */
  --epcl-golden-color: #F0E1BF; /* Some Membership elements */
  --epcl-yellow: #FFC225; /* Premium Plans */
  --epcl-background-color: #E7F8FF; /* Default: #E7F8FF; */
  --epcl-boxes-background-color: #fff; /* Default: #fff; */
  --epcl-boxes-border-color: #d3edff; /* Default: #d3edff; */
  --epcl-border-color: #d3edff; /* General border color */
  --epcl-soft-border-color: rgba(0,0,0, 0.07); /* Soft border color */
  --epcl-editor-boxes-bg-color: var(--epcl-boxes-background-color); /* Koenig Cards: Bookmarks, Product, Tables, etc */
  --epcl-input-bg-color: #FFF; /* Input boxes background color */
  --epcl-dark-boxes-background-color: #1E1B1B; /* Dark mode boxes background color */
  --epcl-boxes-shadow: 0px 2px 5px 0px rgba(0,0,0, 0.03);
  --epcl-small-shadow: 0px 2px 5px 0px rgba(0,0,0, 0.02); /* Used on small images (like widgets or related articles) */
  --epcl-medium-shadow: 0px 10px 16px -4px rgba(0,0,0, 0.04);
  --epcl-large-shadow: 0px 20px 25px -4px rgba(69, 188, 248, 0.075);
  --epcl-transition-bezier: cubic-bezier(.5,2.5,.7,.7);
  /* Coding */
  --epcl-code-background: #FFF; /* FFF Used on "code" blocks not syntax highlighter */
  --epcl-code-color: #4c4a4a; /* 4c4a4a Used on code blocks not syntax highlighter */
  /* Others */
  --epcl-small-border-radius: 4px; /* Used on small elements (buttons) */
  --epcl-medium-border-radius: 12px; /* Used on medium elements (boxes) */
  --epcl-large-border-radius: 100px; /* Used to generate circles */
}

[data-theme=dark] {
  --epcl-background-color: var(--epcl-dark-boxes-background-color) !important;
  --epcl-titles-color: #e2e3e6;
  --epcl-text-color: #96a4c8;
  --epcl-border-color: rgba(255, 255, 255, 0.1) !important;
  --epcl-boxes-border-color: rgba(255, 255, 255, 0.05) !important;
  --epcl-editor-boxes-bg-color: rgba(255, 255, 255, 0.05) !important; /* Koenig Cards: Bookmarks, Product, Tables, etc */
  --epcl-input-bg-color: rgba(255,255,255, 0.05);
  --epcl-large-shadow: 0px 20px 25px -4px rgba(255,255,255, 0.05);
  /* Coding */
  --epcl-code-background: rgba(255, 255, 255, 0.05); /* fff7ef Used on "code" blocks not syntax highlighter */
  --epcl-code-color: #96a4c8; /* 9e4a13 Used on code blocks not syntax highlighter */
  /* Global */
  /* Forms */
  /* Header */
  /* Membership */
  /* Text Editor */
}
[data-theme=dark] div.body-background:before, [data-theme=dark] div.body-background:after {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 70%);
}
[data-theme=dark] .logo-default {
  display: none !important;
}
[data-theme=dark] .logo-white-version {
  display: inline-block !important;
}
[data-theme=dark] a:hover,
[data-theme=dark] .widget_menu ul li a:hover {
  color: #fff;
}
[data-theme=dark] .bg-box {
  background: rgba(255, 255, 255, 0.045);
  -webkit-box-shadow: none;
          box-shadow: none;
}
[data-theme=dark] .bg-box.bg-dark {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}
[data-theme=dark] .title.white {
  color: var(--epcl-titles-color);
}
[data-theme=dark] .tooltip:before {
  background: #fff;
  color: var(--epcl-background-color);
}
[data-theme=dark] .tooltip:after {
  border-top-color: #fff;
}
[data-theme=dark] .tooltip[data-tooltip-position=right]:after {
  border-right-color: #fff;
}
[data-theme=dark] .tags a {
  color: var(--epcl-titles-color);
  background: var(--epcl-background-color);
}
[data-theme=dark] .epcl-search-button {
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] .inputbox {
  color: #fff;
}
[data-theme=dark] .inputbox::-webkit-input-placeholder {
  color: #fff;
}

[data-theme=dark] .inputbox:-moz-placeholder {
  color: #fff;
}

[data-theme=dark] .inputbox::-moz-placeholder {
  color: #fff;
}

[data-theme=dark] .inputbox:-ms-input-placeholder {
  color: #fff;
}

[data-theme=dark] .newsletter-section {
  color: var(--epcl-text-color);
}
[data-theme=dark] .newsletter-section .bg {
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] .newsletter-section:before, [data-theme=dark] .newsletter-section:after {
  display: none;
}
[data-theme=dark] .main-nav ul.sub-menu {
  background-color: var(--epcl-background-color);
  border-color: var(--epcl-boxes-border-color);
}
[data-theme=dark] .main-nav ul.menu li a, [data-theme=dark] .main-nav ul.menu li .link {
  color: var(--epcl-text-color);
}
[data-theme=dark] .main-nav ul.menu li a:hover, [data-theme=dark] .main-nav ul.menu li .link:hover {
  color: #fff;
}
[data-theme=dark] .main-nav ul.menu li.current-menu-item a {
  color: #fff;
}
[data-theme=dark] .membership-page .epcl-switch {
  border-left-color: transparent;
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] .membership-page .subscribe-plan .plan-name .title {
  background: none;
}
[data-theme=dark] div.text ul:not([class]) li:before {
  background: var(--epcl-titles-color);
}
[data-theme=dark] div.text blockquote {
  color: var(--epcl-titles-color);
  background: rgba(255, 255, 255, 0.045);
}
[data-theme=dark] div.text blockquote:after {
  background: rgba(255, 255, 255, 0.15);
}
[data-theme=dark] div.text .kg-callout-card {
  color: var(--epcl-titles-color);
}
[data-theme=dark] div.text .kg-callout-card::before {
  background: transparent;
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--epcl-background-color);
  border: 1px solid var(--epcl-border-color);
  -webkit-box-shadow: var(--epcl-large-shadow);
          box-shadow: var(--epcl-large-shadow);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.theme-toggle .sun {
  color: #FFB900;
}
.theme-toggle .sun path {
  stroke: #FFB900;
}
.theme-toggle:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

[data-theme=light] .theme-toggle .moon {
  display: block;
}
[data-theme=light] .theme-toggle .sun {
  display: none;
}

[data-theme=dark] .theme-toggle {
  background: #fff;
}
[data-theme=dark] .theme-toggle .moon {
  display: none;
}
[data-theme=dark] .theme-toggle .sun {
  display: block;
}

@media screen and (max-width: 1200px) {
  [data-theme=dark] #header div.menu-mobile svg {
    color: #fff;
  }
  [data-theme=dark] div.menu-overlay {
    background: #fff;
  }
  [data-theme=dark] div.body-background:before, [data-theme=dark] div.body-background:after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 30%);
  }
  .theme-toggle {
    width: 40px;
    height: 40px;
    left: 10px;
    bottom: 10px;
  }
}
/* @end */
/* @group Font Families */
/* @end */
/* @end */
/* @group Effects speed */
/* @end */
/* @group Content Width and Margins */
/* @end */
/* Table of Contents / Tocbot - https://tscanlin.github.io/tocbot/ */
/* Slick Slider: http://kenwheeler.github.io/slick/ */
/* PrismJS 1.14.0 https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+markup-templating+git+sql+python+sass+scss&plugins=line-numbers+toolbar+remove-initial-line-feed+show-language+copy-to-clipboard */
/**
 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/chriskempson/tomorrow-theme
 * @author Rose Pritchard
 */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
code[class*=language-],
pre[class*=language-] {
  letter-spacing: 0px;
  color: #b0b9c5;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  text-align: left;
  white-space: pre-wrap;
  word-spacing: normal;
  word-break: break-all;
  word-wrap: normal;
  line-height: 1.6;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -ms-hyphens: none;
  hyphens: none;
}

pre[class*=language-]::-moz-selection, pre[class*=language-] ::-moz-selection,
code[class*=language-]::-moz-selection, code[class*=language-] ::-moz-selection {
  text-shadow: none;
  background: #383e49;
}

pre[class*=language-]::-moz-selection, pre[class*=language-] ::-moz-selection, code[class*=language-]::-moz-selection, code[class*=language-] ::-moz-selection {
  text-shadow: none;
  background: #9aa2b1;
}

pre[class*=language-]::selection, pre[class*=language-] ::selection,
code[class*=language-]::selection, code[class*=language-] ::selection {
  text-shadow: none;
  background: #9aa2b1;
}

@media print {
  code[class*=language-],
  pre[class*=language-] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*=language-] {
  padding: 1.5em 1.75em;
  margin: 0.5em 0;
  overflow: auto;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: #211d3f;
  border-radius: var(--epcl-medium-border-radius);
}

/* Inline code */
:not(pre) > code[class*=language-] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #5C6370;
}

.token.punctuation {
  color: #abb2bf;
}

.token.selector,
.token.tag {
  color: #e06c75;
}

.token.property,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.attr-name,
.token.deleted {
  color: #d19a66;
}

.token.string,
.token.char,
.token.attr-value,
.token.builtin,
.token.inserted {
  color: #98c379;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #56b6c2;
}

.token.atrule,
.token.keyword {
  color: #c678dd;
}

.token.function {
  color: #61afef;
}

.token.regex,
.token.important,
.token.variable {
  color: #c678dd;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

pre.line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}

pre.line-numbers > code {
  position: relative;
}

.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em; /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  border-right: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.line-numbers-rows > span {
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}

.line-numbers-rows > span:before {
  content: counter(linenumber);
  color: #5C6370;
  display: block;
  padding-right: 0.8em;
  text-align: right;
}

div.code-toolbar {
  position: relative;
}

div.code-toolbar > .toolbar {
  position: absolute;
  top: 10px;
  right: 25px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

div.code-toolbar:hover > .toolbar {
  opacity: 1;
}

div.code-toolbar > .toolbar .toolbar-item {
  display: inline-block;
}

div.code-toolbar > .toolbar a {
  cursor: pointer;
}

div.code-toolbar > .toolbar > .toolbar-item > button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none; /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
}

div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  padding: 3px 10px;
  border-radius: var(--epcl-large-border-radius);
}

div.code-toolbar > .toolbar > .toolbar-item > span {
  text-transform: uppercase;
}

div.code-toolbar > .toolbar > .toolbar-item > a {
  background: var(--epcl-main-color);
  color: #fff;
}

div.code-toolbar .toolbar-item .copy-to-clipboard-button {
  background: #fff !important;
  color: #15123A !important;
  border: 1px solid var(--epcl-border-color);
}

div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
  color: #fff;
  text-decoration: none;
}

/* Magnific magnific-popup http://dimsemenov.com/plugins/magnific-popup/ */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, .mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 10px;
  top: 10px;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  color: #fff !important;
  font-style: normal;
  font-size: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mfp-close .close-lightbox {
  right: -15px !important;
  top: 5px !important;
}
.mfp-close svg {
  vertical-align: middle;
  top: -1px;
  position: relative;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #15123A;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--epcl-title-font-family);
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  color: #15123A;
  font-size: 30px;
  line-height: 110px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow svg {
  pointer-events: none !important;
  fill: none !important;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  margin-left: 39px;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: var(--epcl-text-color);
  padding-top: 5px;
  font-size: 14px;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}