.rdev {
  width: 100%;
  min-height: 100vh;
  background: #111111;
}

.rdev-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.rdev-section {
  width: 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdev-section.light-bg {
  background-color: #EBEBEB;
}

.rdev-section.dark-bg {
  background-color: #111111;
}

.rdev-btn {
  font-size: 16px;
  font-weight: 600;
  background-color: #154633;
  padding: 24px 24px 24px 32px;
  display: flex;
  align-items: center;
  border-radius: 99px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.rdev-btn .rdev-text {
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 5;
  margin-right: 32px;
}

.rdev-btn svg {
  display: inline-block;
  position: relative;
  z-index: 5;
  transform: rotate(0deg) translateX(0);
  transform-origin: left;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.rdev-btn::before {
  content: '';
  background-color: #95C11F;
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 99px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.rdev-btn.light {
  background-color: #95C11F;
}

.rdev-btn.light::before {
  background-color: #154633;
}

.rdev-btn:hover svg {
  transform: rotate(45deg) translateX(-8px);
}

.rdev-btn:hover::before {
  content: '';
  width: 100%;
  height: 100%;
  right: 0;
}


.code-container {
  background-color: #1e1e1e;
  border-radius: 6px;
  font-family: 'Fira Code', Consolas, Monaco, monospace;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  width: 100%;
  overflow:hidden;
  max-height: 400px;
}

.code-header {
  background-color: #2c2c2c;
  padding: 10px 16px;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 800;
  color: #f0f0f0;
  border-bottom: 1px solid #444;
}

/* Prism base */
code[class*="language-"],
pre[class*="language-"] {
  overflow:scroll;
  max-height: 400px;
  color: #f8f8f2;
  background: none;
  font-family: 'Fira Code', Consolas, Monaco, monospace;
  font-size: 1rem;
  line-height: 1.5;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  tab-size: 4;
  hyphens: none;
}

pre[class*="language-"] {
  background: #1e1e1e;
  padding: 1.2em;
  margin: 0;
  overflow: auto;
}

/* Prism colors */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #6a9955;
}

.token.punctuation {
  color: #d4d4d4;
}

.token.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #d16969;
}

.token.boolean,
.token.number {
  color: #b5cea8;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #ce9178;
}

.token.operator,
.token.entity,
.token.url {
  color: #d4d4d4;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #c586c0;
}

.token.function,
.token.class-name {
  color: #569cd6;
}

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

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

.token.entity {
  cursor: help;
}

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

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

.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: inherit;
  left: 0;
  width: 3em;
  letter-spacing: -1px;
  border-right: 1px solid #727272 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.line-numbers-rows > span:before {
  content: counter(linenumber);
  display: block;
  padding-right: 0.8em;
  text-align: right;
  font-weight:300;
  font-size:1rem;
  color: #6d6d6d !important;
}

.template-content-nadpis {
  position: relative;
  width:100%;
  font-family: "Open sans";
  font-size: clamp(2rem, 13vw, 6rem) !important;
font-weight:800;
  line-height: 1.5;
  color:rgba(228,228,228,1.00);
  padding-bottom:30px;
  z-index: 3;
}

.template-content-subnadpis {
font-family: "Source code pro";
  color:#ddd;
  line-height:1.5;
  font-size:90%;
  font-weight:300;
  padding-bottom:20px;
}

@media (min-width:992px) {
.template-content-subnadpis {
color:#bbb;
line-height:1.7;
font-size:110%;
font-weight:350;
}
}