@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap);
.color-gray {
  color: #7d7d7d;
}

.w-70 {
  width: 70% !important;
}

.fa-stack {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 15px;
  width: 14px;
}
.fa-stack .fa-caret-up {
  position: absolute;
  top: -5px;
}
.fa-stack .fa-caret-down {
  position: absolute;
  bottom: -2px;
}

.spacer-navbar {
  margin-top: 64px;
  display: block;
}

@media (min-width: 992px) {
  section#license .spacer-navbar,
section#information .spacer-navbar,
section#services .spacer-navbar {
    margin-top: 0;
    height: 67px;
  }
}
.doublespacer-navbar {
  margin-top: 150px;
  display: block;
}

/* Font Awesome Extended */
.fa-rotate-45 {
  transform: rotate(45deg);
}

/* Hamburger Icon */
#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  outline: none;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 9px;
}

#nav-icon1 span:nth-child(3) {
  top: 18px;
}

.navbar-toggler[aria-expanded=true] #nav-icon1 span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded=true] #nav-icon1 span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.navbar-toggler[aria-expanded=true] #nav-icon1 span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* Material Dropdown */
.ro-select-wrapper {
  display: inline-block;
  position: relative;
  min-width: 150px;
  width: 100%;
}

.ro-select-text {
  border: 2px solid #000;
  border-radius: 5px;
  display: block;
  max-height: 48px;
  padding: 8px 26px 8px 10px;
  cursor: pointer;
}

.ro-select-text.ro-select-text-empty {
  color: #000000;
}

.ro-select-caret {
  position: absolute;
  right: 8px;
  top: 15px;
  z-index: -2;
  color: #888888;
}

.ro-select-list {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  transition: 0.25s ease;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background-color: white;
  box-shadow: 0 3px 10px #adadad;
  z-index: 999999;
  transition: 0.25s;
}

.ro-select-list > .ro-select-item {
  padding: 0 16px;
  line-height: 48px;
  cursor: pointer;
}

.ro-select-list > .ro-select-item:hover {
  background-color: #eaeaea;
}

.ro-select-list > .ro-select-item.ro-select-item-active {
  background: #eaeaea;
}

.slider-group {
  position: relative;
  border: 2px solid #000;
  border-radius: 5px;
}

.slider {
  width: 100%;
  padding: 8px 0px 8px 10px;
}
.slider label {
  width: 15%;
  margin-bottom: 0;
}

/* track */
input[type=range] {
  -webkit-appearance: none !important;
  width: 69%;
  height: 1px;
  background-color: #ff5252;
  border: none;
  margin: auto;
  transition: all 250ms;
  outline: none;
  padding: 0;
  margin: -1px 0 0 0;
  vertical-align: middle;
  margin-right: 1%;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  background-color: #ff5252;
  border: none;
  border-radius: 10px;
  margin: auto;
  -moz-transition: all 250ms;
  transition: all 250ms;
  outline: none;
  padding: 0;
  margin: 0;
}

/* thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  transform: scale(0.75);
  width: 20px;
  height: 20px;
  border: none;
  background-color: #ff5252;
  border-radius: 40px;
  box-shadow: 0px 0px 0px green;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  outline: none;
  content: "1";
  font-size: 20px;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none !important;
  transform: scale(0.75);
  width: 20px;
  height: 20px;
  border: none;
  background-color: #ff5252;
  border-radius: 30px;
  box-shadow: 0px 0px 0px green;
  -moz-transition: all 250ms;
  transition: all 250ms;
  outline: none;
  content: "1";
  font-size: 20px;
}

/* thumb hover */
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(0.85);
}

input[type=range]::-moz-range-thumb:hover {
  transform: scale(0.85);
}

/* thumb active */
input[type=range]::-webkit-slider-thumb:active {
  transform: scale(1);
}

input[type=range]::-moz-range-thumb:active {
  transform: scale(1);
}

/* for ie
#end{
  position: relative;
  top: -45px;
}

input[type="range"] {
  -webkit-appearance: none !important;
  width: 100%;
  border: none;
  border-radius: 10px;
  margin: auto;
  transition: all 250ms;
  outline:none;
  padding: 0;
  margin: 0;
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ff5252;
  border: none;
  border-radius: 10px;
  height:2px
}
input[type=range]::-ms-fill-upper {
  background: #ff5252;
  border: none;
  border-radius: 10px;
  height:2px
}
input[type=range]::-ms-thumb {
  transform:scale(0.75);
  width: 20px;
  height: 20px;
  border: none;
  background-color: #ff5252;
  border-radius: 30px;
  box-shadow: 0px 0px 0px green;
  transition: all 250ms;
  outline:none
}

input[type=range]:hover::-ms-thumb{
  transform:scale(0.85);
}

input[type=range]:active::-ms-thumb{
  transform:scale(1);
}

input[type=range]:focus::-ms-fill-lower {
  background: #ff5252;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ff5252;
}
*/
.my-slider img {
  width: 100%;
}

@media (max-width: 768px) {
  .slider-item {
    height: 500px;
  }
}
@media (min-width: 769px) {
  .slider-item {
    height: 75vh;
  }
}
.slider-item {
  width: 100%;
}

.tns-nav {
  text-align: center;
  margin-bottom: 25px;
  display: none;
}

.tns-nav button {
  background: #ffffff;
  border: 1px solid #000000;
  margin: 0 3px;
  /* width: 3px; */
  /* height: 3px; */
  padding: 4px;
  border-radius: 4px;
  transition: 0.5s;
}

.tns-nav button:focus {
  outline: none;
}

.tns-nav-active {
  background: #000000 !important;
}

.tns-slider {
  position: relative;
}

#prev-tns {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 10px;
  font-size: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #dfdfdf;
  opacity: 0;
  border: 0;
  transition: 0.25s;
}

#next-tns {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  font-size: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #dfdfdf;
  opacity: 0;
  border: 0;
  transition: 0.25s;
}

@media (max-width: 768px) {
  #prev-tns,
#next-tns {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }
}
.tns-left:hover #prev-tns,
.tns-right:hover #next-tns {
  opacity: 0.5;
}

#prev-tns:focus,
#next-tns:focus {
  outline: none;
}

.tns-left,
.tns-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 12.5%;
}

.tns-left {
  left: 0;
}

.tns-right {
  right: 0;
}

.dis-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.pure-material-checkbox {
  z-index: 0;
  position: relative;
  display: inline-block;
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
  font-size: 16px;
  line-height: 1.5;
}

/* Input */
.pure-material-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.pure-material-checkbox > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

/* Box */
.pure-material-checkbox > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 0px 5px 0px 1px;
  border: solid 2px;
  /* Safari */
  border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s;
}

/* Checkmark */
.pure-material-checkbox > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 2px;
  width: 10px;
  height: 5px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
  background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::before,
.pure-material-checkbox > input:indeterminate + span::before {
  border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
  background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::after,
.pure-material-checkbox > input:indeterminate + span::after {
  border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox > input:indeterminate + span::after {
  border-left: none;
  transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover > input {
  opacity: 0.04;
}

.pure-material-checkbox > input:focus {
  opacity: 0.12;
}

.pure-material-checkbox:hover > input:focus {
  opacity: 0.16;
}

/* Active */
.pure-material-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}

.pure-material-checkbox > input:active + span::before {
  border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox > input:disabled {
  opacity: 0;
}

.pure-material-checkbox > input:disabled + span {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  cursor: initial;
}

.pure-material-checkbox > input:disabled + span::before {
  border-color: currentColor;
}

.pure-material-checkbox > input:checked:disabled + span::before,
.pure-material-checkbox > input:indeterminate:disabled + span::before {
  border-color: transparent;
  background-color: currentColor;
}

.gradient-blue {
  background: #5e92f3;
  background: linear-gradient(90deg, #5e92f3 0%, #145fb4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5e92f3",endColorstr="#145fb4",GradientType=1);
}

.gradient-red {
  background: #e74539;
  background: linear-gradient(90deg, #e74539 0%, #c10101 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e74539",endColorstr="#c10101",GradientType=1);
}

.gradient-green {
  background: #4caf50;
  background: linear-gradient(90deg, #4caf50 0%, #138310 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4caf50",endColorstr="#138310",GradientType=1);
}

.gradient-orange {
  background: #ffa937;
  background: linear-gradient(90deg, #ffa937 0%, #ff7c00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa937",endColorstr="#ff7c00",GradientType=1);
}

.gradient-blue {
  background: #5e92f3;
  background: linear-gradient(90deg, #5e92f3 0%, #145fb4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5e92f3",endColorstr="#145fb4",GradientType=1);
}

.gradient-red {
  background: #e74539;
  background: linear-gradient(90deg, #e74539 0%, #c10101 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e74539",endColorstr="#c10101",GradientType=1);
}

.gradient-green {
  background: #4caf50;
  background: linear-gradient(90deg, #4caf50 0%, #138310 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4caf50",endColorstr="#138310",GradientType=1);
}

.gradient-orange {
  background: #ffa937;
  background: linear-gradient(90deg, #ffa937 0%, #ff7c00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa937",endColorstr="#ff7c00",GradientType=1);
}

/* Button 14 */
#app-cover {
  display: table;
  width: 600px;
  margin: 80px auto;
  counter-reset: button-counter;
}

.toggle-button-cover {
  display: table-cell;
  position: relative;
  width: 200px;
  height: 140px;
  box-sizing: border-box;
}

.button-cover {
  height: 100px;
  margin: 20px;
  background-color: #fff;
  box-shadow: 0 10px 20px -8px #c5d6d6;
  border-radius: 4px;
}

.button-cover:before {
  counter-increment: button-counter;
  content: counter(button-counter);
  position: absolute;
  right: 0;
  bottom: 0;
  color: #d7e3e3;
  font-size: 12px;
  line-height: 1;
  padding: 5px;
}

.button-cover,
.knobs,
.layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (max-width: 991px) {
  .button-cmm {
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    margin: 10px 0;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .button-cmm {
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    margin: -18px 5px 0 5px;
    overflow: hidden;
  }
}
.button.r,
.button.r .layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  border: 2px solid #fff;
  transition: 0.3s ease all;
  z-index: 1;
  border-radius: 25px;
}

/* Button 13 */
#button-13 .knobs:before,
#button-13 .knobs:after,
#button-13 .knobs span {
  position: absolute;
  top: 0px;
  width: 20px;
  height: 10px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 9px 4px;
  border-radius: 2px;
  transition: 0.3s ease all;
}

#button-13 .knobs:before,
#button-13 .knobs:after {
  color: #ffffff;
  z-index: 1;
}

#button-13 .knobs:before {
  content: "USD";
  left: 8px;
  top: 5px;
}

#button-13 .knobs:after {
  content: "IDR";
  right: 12px;
  top: 5px;
}

#button-13 .knobs span {
  width: 35px;
  left: 38px;
  background-color: #ffffff;
  z-index: 2;
  height: 35px;
  border-radius: 50%;
}

#button-13 .checkbox:checked + .knobs span {
  left: 0px;
  background-color: #ffffff;
}

.navbar.light .layer {
  border: 2px solid #000;
}
.navbar.light #button-13 .knobs:before,
.navbar.light #button-13 .knobs:after {
  color: #000;
}
.navbar.light #button-13 .knobs span,
.navbar.light #button-13 .checkbox:checked + .knobs span {
  background-color: #000;
}
.navbar.light #nav-icon1 span,
.navbar.light #nav-icon3 span,
.navbar.light #nav-icon4 span {
  background: #000000;
}

.navbar.dark #nav-icon1 span,
.navbar.dark #nav-icon3 span,
.navbar.dark #nav-icon4 span {
  background: #ffffff;
}

.navbar.red .layer {
  border: 2px solid #d62828;
}
.navbar.red #button-13 .knobs:before,
.navbar.red #button-13 .knobs:after {
  color: #d62828;
}
.navbar.red #button-13 .knobs span,
.navbar.red #button-13 .checkbox:checked + .knobs span {
  background-color: #d62828;
}
.navbar.red #nav-icon1 span,
.navbar.red #nav-icon3 span,
.navbar.red #nav-icon4 span {
  background: #d62828;
}

.toast {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  width: 100%;
  max-width: none;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background-color: #ffc8c8;
  margin-bottom: 0 !important;
  border-radius: 0;
}
.toast .toast-header {
  background-color: #ffc8c8;
  color: #191919;
}

.discount-date .input-group-append {
  background: #dfdfdf;
  border: 1px solid #bfbfbf;
  border-radius: 0 5px 5px 0;
}
.discount-date .input-group-append button {
  border: 0 !important;
  border-radius: 0 5px 5px 0;
}
.discount-date .input-group-append button .gj-icon {
  top: 50% !important;
  transform: translateY(-50%);
}
.discount-date .input-group-append button:active {
  border: 0 !important;
}

.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
  stroke: #1565c0;
}

.ct-series-a .ct-area {
  fill: #1565c0;
}

.ct-series-b .ct-bar,
.ct-series-b .ct-line,
.ct-series-b .ct-point,
.ct-series-b .ct-slice-donut {
  stroke: #ff7068;
}

.ct-series-b .ct-area {
  fill: #ff7068;
}

.ct-legend {
  position: relative;
  z-index: 10;
  text-align: center;
}
.ct-legend ul {
  margin-bottom: 0;
}
.ct-legend li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 3px;
  margin-right: 10px;
  display: inline-block;
}
.ct-legend li:before {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  content: "";
  border: 3px solid transparent;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.ct-legend li.inactive:before {
  background: transparent;
}
.ct-legend.ct-legend-inside {
  position: absolute;
  top: 0;
  right: 0;
}
.ct-legend .ct-series-0:before {
  background-color: #1565c0;
  border-color: #1565c0;
}
.ct-legend .ct-series-1:before {
  background-color: #ff7068;
  border-color: #ff7068;
}

.pure-material-switch {
  z-index: 0;
  position: relative;
  display: inline-block;
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Input */
.pure-material-switch > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  right: 6px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s 0.1s, transform 0.2s 0.1s;
}

/* Span */
.pure-material-switch > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

/* Track */
.pure-material-switch > span::before {
  content: "";
  float: right;
  display: inline-block;
  margin: 5px 0 5px 10px;
  border-radius: 7px;
  width: 36px;
  height: 14px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  vertical-align: top;
  transition: background-color 0.2s, opacity 0.2s;
}

/* Thumb */
.pure-material-switch > span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 16px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s, transform 0.2s;
}

/* Checked */
.pure-material-switch > input:checked {
  right: -10px;
  background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-switch > input:checked + span::before {
  background-color: rgba(var(--pure-material-primary-rgb, 33, 150, 243), 0.6);
}

.pure-material-switch > input:checked + span::after {
  background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
  transform: translateX(16px);
}

/* Hover, Focus */
.pure-material-switch:hover > input {
  opacity: 0.04;
}

.pure-material-switch > input:focus {
  opacity: 0.12;
}

.pure-material-switch:hover > input:focus {
  opacity: 0.16;
}

/* Active */
.pure-material-switch > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}

.pure-material-switch > input:active + span::before {
  background-color: rgba(var(--pure-material-primary-rgb, 33, 150, 243), 0.6);
}

.pure-material-switch > input:checked:active + span::before {
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
}

/* Disabled */
.pure-material-switch > input:disabled {
  opacity: 0;
}

.pure-material-switch > input:disabled + span {
  color: rgb(var(--pure-material-onsurface-rgb, 0, 0, 0));
  opacity: 0.38;
  cursor: default;
}

.pure-material-switch > input:disabled + span::before {
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
}

.pure-material-switch > input:checked:disabled + span::before {
  background-color: rgba(var(--pure-material-primary-rgb, 33, 150, 243), 0.6);
}

body {
  background: #ffffff;
  font-family: "Roboto", sans-serif;
}
body hr {
  border-top-width: 2px;
}

@media (min-width: 992px) {
  .container {
    max-width: 95%;
  }
}
.navbar {
  background: #ffffff;
  border-bottom: 2px solid #dfdfdf;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}
.navbar .navbar-brand {
  padding-bottom: 0.425rem;
  padding-top: 0.425rem;
}
.navbar .navbar-brand img {
  height: 45px;
}
.navbar .navbar-brand img {
  height: 35px;
}
.navbar .navbar-toggler {
  border: 0px;
}
.navbar .navbar-toggler:focus {
  outline: none;
}
.navbar .navbar-container {
  padding-bottom: 0;
  padding-top: 0;
}
.navbar .navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 3px;
}
.navbar .nav-item {
  padding: 0 10px;
  position: relative;
}
.navbar .nav-item.force-align {
  padding-right: 0;
}
.navbar .bubble {
  background: #75edfb;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  height: 22px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 22px;
}
@media (min-width: 768px) {
  .navbar .bubble {
    border-radius: 50%;
    font-size: 0.75rem;
    height: 22px;
    position: absolute;
    right: -10px;
    text-align: center;
    top: -5px;
    vertical-align: middle;
    width: 22px;
  }
  .navbar .bubble text {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .navbar .bubble {
    display: inline-block;
    margin-left: 3px;
  }
}

.navbar.light .navbar-nav .nav-link {
  color: #000000;
}
.navbar.light .bubble {
  background: #000000;
  color: #ffffff;
}

.navbar.dark .navbar-nav .nav-link {
  color: #ffffff;
}
.navbar.dark .bubble {
  background: #ffffff;
  color: #000000;
}

.navbar.red {
  border-bottom-color: #d62828;
}
.navbar.red .navbar-nav .nav-link {
  color: #d62828;
}
.navbar.red .bubble {
  background: #d62828;
  color: #ffffff;
}

.overlay {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100001;
}
.overlay .newsletter {
  background: #ffffff;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.overlay .newsletter .top-half {
  padding: 10px 25px;
  position: relative;
}
.overlay .newsletter .top-half .close-button {
  color: #bfbfbf;
}
.overlay .newsletter .top-half .close-button:hover {
  color: #000000;
  cursor: pointer;
}
.overlay .newsletter .top-half .left {
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.overlay .newsletter .top-half .left img {
  height: 250px;
}
.overlay .newsletter .bottom-half {
  background: #000000;
  display: block;
  padding: 10px 25px;
}
.overlay .newsletter .bottom-half div:first-child {
  color: #ffffff;
  width: 100%;
}
.overlay .newsletter .bottom-half div:last-child {
  color: #ffffff;
  width: 100%;
}
.overlay .newsletter .bottom-half input,
.overlay .newsletter .bottom-half button {
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px;
}
.overlay .newsletter .bottom-half input {
  border-radius: 5px 0 0 5px;
  border-right-width: 0;
  width: 70%;
}
.overlay .newsletter .bottom-half button {
  background: #ffffff;
  border-left-width: 0;
  border-radius: 0 5px 5px 0;
  color: #000000;
  font-size: 1rem;
  width: 30%;
}
@media (max-width: 768px) {
  .overlay .newsletter .bottom-half input,
.overlay .newsletter .bottom-half button {
    border: 1px solid #ffffff;
  }
  .overlay .newsletter .bottom-half input {
    border-radius: 5px;
    margin-bottom: 5px;
    width: 100%;
  }
  .overlay .newsletter .bottom-half button {
    border-radius: 5px;
    width: 100%;
  }
}
.overlay .trial-success {
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.overlay .trial-success .top-half {
  background: #ffffff;
  border-radius: 25px 25px 0 0;
  position: relative;
}
.overlay .trial-success .top-half .close-button {
  color: #bfbfbf;
  position: absolute;
  right: 20px;
  top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.overlay .trial-success .top-half .close-button:hover {
  color: #000000;
  cursor: pointer;
}
.overlay .trial-success .top-half img {
  margin: 30px;
  width: 100%;
  max-width: 450px;
}
.overlay .trial-success .bottom-half {
  background: #00b558;
  border-radius: 0 0 25px 25px;
  display: block;
  padding: 20px 25px;
}
.overlay .trial-success .bottom-half div:first-child {
  color: #ffffff;
  width: 100%;
}
.overlay .trial-success .bottom-half div:last-child {
  color: #ffffff;
  width: 100%;
}
.overlay .trial-success .bottom-half input,
.overlay .trial-success .bottom-half button {
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px;
}
.overlay .trial-success .bottom-half input {
  border-radius: 5px 0 0 5px;
  border-right-width: 0;
  width: 70%;
}
.overlay .trial-success .bottom-half button {
  background: #ffffff;
  border-left-width: 0;
  border-radius: 0 5px 5px 0;
  color: #000000;
  font-size: 1rem;
  width: 30%;
}
@media (max-width: 768px) {
  .overlay .trial-success .bottom-half input,
.overlay .trial-success .bottom-half button {
    border: 1px solid #ffffff;
  }
  .overlay .trial-success .bottom-half input {
    border-radius: 5px;
    margin-bottom: 5px;
    width: 100%;
  }
  .overlay .trial-success .bottom-half button {
    border-radius: 5px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .overlay .top-half {
    padding: 20px 10px;
  }
  .overlay .top-half .left {
    width: 100% !important;
  }
  .overlay .top-half .right {
    width: 100% !important;
  }
  .overlay .bottom-half {
    padding: 20px 10px;
  }
  .overlay .newsletter,
.overlay .trial-success {
    margin-bottom: 30px !important;
    margin-top: 60px !important;
    width: 90%;
  }
}

.preview-image {
  width: 100%;
}

.our-story {
  font-size: 1.125rem;
  font-weight: 500;
}
.our-story b {
  font-weight: 600;
}

.copyright,
.contact {
  font-size: 1rem;
}

.contact {
  color: #7d7d7d;
  white-space: nowrap;
}

.about-tegamitype {
  font-size: 1.125rem;
  font-weight: 400;
}
.about-tegamitype b {
  font-weight: 600;
}

@media (max-width: 767px) {
  .our-story,
.about-tegamitype {
    font-size: 1.125rem;
  }
}
@media (max-width: 992px) {
  .our-story,
.about-tegamitype {
    font-size: 1rem;
  }

  .copyright,
.contact {
    font-size: 1rem;
  }
}
#typefaces .red-text {
  color: #fb443f;
}
#typefaces .red-background {
  background: #fb443f;
  color: #ffffff;
}
#typefaces .on-sale-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: -3px;
  padding: 1px 6px 0 6px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #typefaces .on-sale-tag {
    display: block;
    margin: 5px auto 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#typefaces .font-container:not(:first-child) .big-text {
  border-top: 2px solid #dfdfdf;
}
#typefaces .font-container {
  font-weight: 600;
  text-align: center;
}
#typefaces .font-container .big-text {
  background-color: #ffffff;
  border-bottom: 2px solid #dfdfdf;
  color: #000000;
  font-size: 6rem;
  padding-bottom: 15px;
  padding-top: 15px;
  transition: 0.25s;
}
#typefaces .font-container .sub-text {
  font-size: 0.875rem;
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 20px;
}
#typefaces .font-container .sub-text .text-container {
  color: #7d7d7d;
}
#typefaces .font-container .sub-text:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  #typefaces .font-container .big-text {
    font-size: 4rem;
    line-height: 4.25rem;
  }
  #typefaces .font-container .sub-text {
    font-size: 0.75rem;
  }
}
#typefaces .font-container:hover .big-text {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}
#typefaces .font-container:hover .text-container {
  color: #707070;
}

#custom .font-container:not(:first-child) .big-text {
  border-top: 2px solid #dfdfdf;
}
#custom .font-container {
  font-weight: 600;
  text-align: center;
}
#custom .font-container .big-text {
  background-color: #000000;
  border-bottom: 2px solid #b5b5b5;
  color: #ffffff;
  font-size: 6rem;
  padding-bottom: 15px;
  padding-top: 15px;
  transition: 0.25s;
}
#custom .font-container .sub-text {
  font-size: 0.875rem;
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 20px;
}
#custom .font-container .sub-text .text-container {
  color: #b5b5b5;
}
#custom .font-container .sub-text:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  #custom .font-container .big-text {
    font-size: 2.75rem;
    line-height: 4.25rem;
  }
  #custom .font-container .sub-text {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #custom .font-container .big-text {
    font-size: 3rem;
    line-height: 4.25rem;
  }
}
#custom .font-container:hover .big-text {
  background-color: #ffbc01;
  color: #000000;
  text-decoration: none;
}
#custom .font-container:hover .text-container {
  color: #707070;
}

#trials .contact-us label {
  color: #ffffff;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
}
#trials .contact-us input,
#trials .contact-us textarea,
#trials .contact-us button {
  background: #000000;
  border: 2px solid #7d7d7d;
  color: #ffffff;
  padding: 8px 12px;
  width: 100%;
}
#trials .contact-us button {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 10px;
}

#trials .send-mail {
  background: #ffdd4f !important;
  border: 1px solid #000000 !important;
  color: #000000 !important;
  transition: 0.125s;
}
#trials .send-mail i {
  letter-spacing: 0 !important;
}
#trials .send-mail:hover,
#trials .send-mail.onhover {
  background: #000000 !important;
  color: #ffffff !important;
}
#trials .send-mail.error {
  font-weight: 400;
  letter-spacing: 0 !important;
}
#trials .send-mail:hover,
#trials .send-mail.onhover {
  background: #c3e71c;
  border: 2px solid #c3e71c;
  color: #000000;
}
#trials .trial-download a {
  color: #212529;
  font-size: 1.125rem;
  font-weight: 600;
}
#trials .text-content {
  font-size: 1.125rem;
}
@media (max-width: 576px) {
  #trials .trial-download a {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  #trials .trial-download a {
    font-size: 1rem;
  }
  #trials .text-content {
    font-size: 1rem;
  }
  #trials .text-content p {
    margin-bottom: 0;
  }
}
#trials .ro-select-wrapper {
  background-color: #000000;
}
#trials .ro-select-text {
  border-radius: 0;
  color: #ffffff;
  max-height: none;
  padding-bottom: 10px;
  padding-top: 10px;
}
#trials .ro-select-caret {
  color: #ffffff;
  position: absolute;
  right: 12px;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
}
#trials .ro-select-list {
  background: #000000 !important;
  color: #ffffff;
}
#trials .ro-select-list .ro-select-item-active {
  background-color: #777777;
}
#trials .ro-select-list .ro-select-item:hover {
  background: #555555;
  color: #ffffff;
}
#trials input,
#trials textarea {
  background: #000000;
  border: 0 !important;
  color: #ffffff;
  padding: 10px 12px !important;
  width: 100%;
}

.font-highlight {
  background: #ffffff;
  left: 0;
  padding: 20px 20px 0px 20px;
  position: fixed;
  top: 63px;
  width: 100%;
  z-index: 100000;
}
.font-highlight__input {
  border: 2px solid #000000;
  padding: 15px 20px;
  width: 100%;
}
.font-highlight__button {
  border-style: solid;
  border-width: 2px;
  height: 100%;
  min-height: 45px;
  text-align: center;
  transition: 0.125s;
  width: 100%;
}
.font-highlight__button--black {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.font-highlight__button--black:hover {
  background: #777777;
  border-color: #777777;
}
.font-highlight__button--white {
  background: #ffffff;
  border-color: #afafaf;
  color: #afafaf;
}
.font-highlight__button--white:hover {
  background: #dfdfdf;
  border-color: #dfdfdf;
}
.font-highlight__button--border-black {
  background: transparent;
  border-color: #000000;
  color: #000000;
}
.font-highlight__button--border-black.clickable:hover {
  cursor: pointer;
}
.font-highlight .family-overview__download {
  color: #000000;
}
.font-highlight .family-overview__button {
  font-size: 1.25rem;
  font-weight: 400;
}
.font-highlight .family-overview__button span {
  display: inline-block;
  transition: 0.125s;
  vertical-align: middle;
}
.font-highlight .family-overview__button span:hover {
  cursor: pointer;
}
.font-highlight .family-overview__button hr {
  margin-bottom: 0;
  margin-top: 0;
}
.font-highlight .family-overview__content {
  display: none;
  margin-bottom: 2px;
  margin-top: 15px;
}
.font-highlight .family-overview__content .content-title {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.font-highlight .family-overview__content .content-body {
  max-height: 300px;
  overflow: auto;
}
.font-highlight .family-overview__content .content-body__header {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.font-highlight .family-overview__content .content-body__child {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
.font-highlight .family-overview__content .content-body__child a {
  color: #000000;
}
.font-highlight .family-overview__content .content-body__child a:hover {
  color: #777777;
  text-decoration: none;
}
@media (min-width: 992px) {
  .font-highlight .family-overview__content .content-body {
    max-height: 400px;
  }
}

@media (max-width: 992px) {
  .font-highlight {
    z-index: 99999;
  }
}
.to-top {
  align-items: center;
  background: #000000;
  border-radius: 50%;
  bottom: 15px;
  color: #ffffff;
  display: flex;
  font-size: 1.125rem;
  height: 50px;
  justify-content: space-evenly;
  position: fixed;
  right: 15px;
  transition: 0.125s;
  width: 50px;
}

.to-top:hover {
  background: #777777;
  cursor: pointer;
}

#fonts .body-overlay,
#custom-previewer .body-overlay {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
#fonts .background-changer,
#custom-previewer .background-changer {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: none;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  width: 150px;
  z-index: 9;
}
#fonts .background-changer .background-selection,
#custom-previewer .background-changer .background-selection {
  border: 1px solid #9e9e9e;
  border-radius: 50%;
  display: inline-block;
  padding-top: 30px;
  vertical-align: middle;
  width: 31px;
}
#fonts .background-changer .background-selection:hover,
#custom-previewer .background-changer .background-selection:hover {
  border-color: #3490dc;
  cursor: pointer;
}
#fonts .background-changer .triangle,
#custom-previewer .background-changer .triangle {
  border-color: transparent transparent #e4e4e4 transparent;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  content: "";
  height: 0;
  position: absolute;
  top: -10px;
  width: 0;
}
@media (min-width: 992px) {
  #fonts .background-changer .triangle,
#custom-previewer .background-changer .triangle {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  #fonts .background-changer .triangle,
#custom-previewer .background-changer .triangle {
    right: 3px;
  }
}
#fonts .previewer__toolbar,
#custom-previewer .previewer__toolbar {
  margin-bottom: 30px;
  margin-top: 30px;
}
#fonts .previewer__toolbar .slider,
#custom-previewer .previewer__toolbar .slider {
  display: inline-block;
  position: relative;
  text-align: right;
}
#fonts .previewer__toolbar .slider input[type=range],
#custom-previewer .previewer__toolbar .slider input[type=range] {
  background: #000000;
  width: 100%;
}
#fonts .previewer__toolbar .slider input[type=range] + label,
#custom-previewer .previewer__toolbar .slider input[type=range] + label {
  display: none;
  left: 50%;
  opacity: 0.5;
  position: absolute;
  text-align: center;
  top: -12px;
  transform: translateX(-50%);
  width: 80px;
}
#fonts .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb,
#custom-previewer .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 1px solid #000000;
}
#fonts .previewer__toolbar .slider input[type=range]::-moz-range-thumb,
#custom-previewer .previewer__toolbar .slider input[type=range]::-moz-range-thumb {
  background-color: #ffffff;
  border: 1px solid #000000;
}
#fonts .previewer__toolbar .single-button,
#custom-previewer .previewer__toolbar .single-button {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#fonts .previewer__toolbar .single-button a,
#custom-previewer .previewer__toolbar .single-button a {
  color: #000000;
  margin: 0 7px;
}
@media (min-width: 1280px) {
  #fonts .previewer__toolbar .single-button a,
#custom-previewer .previewer__toolbar .single-button a {
    margin: 0 10px;
  }
}
@media (max-width: 575px) {
  #fonts .previewer__toolbar .single-button a,
#custom-previewer .previewer__toolbar .single-button a {
    margin: 0 3px;
  }
}
#fonts .previewer__toolbar .single-button a:hover,
#custom-previewer .previewer__toolbar .single-button a:hover {
  color: #777777;
}
#fonts .previewer__text,
#custom-previewer .previewer__text {
  color: #000000;
  line-height: normal;
  margin-bottom: 30px;
  outline: none;
  word-break: break-word;
}
#fonts .previewer__text--twocolumn,
#custom-previewer .previewer__text--twocolumn {
  -moz-column-count: 2;
       column-count: 2;
}
@media (min-width: 992px) {
  #fonts .previewer .show-on-hover,
#custom-previewer .previewer .show-on-hover {
    opacity: 0;
    transition: 0.125s;
  }
  #fonts .previewer:hover .show-on-hover,
#fonts .previewer:focus .show-on-hover,
#fonts .previewer:focus-within .show-on-hover,
#custom-previewer .previewer:hover .show-on-hover,
#custom-previewer .previewer:focus .show-on-hover,
#custom-previewer .previewer:focus-within .show-on-hover {
    opacity: 1;
  }
}
#fonts .description,
#custom-previewer .description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem !important;
  line-height: 2rem;
}
#fonts .description p,
#fonts .description span,
#custom-previewer .description p,
#custom-previewer .description span {
  font-size: 1rem !important;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  #fonts .description,
#custom-previewer .description {
    line-height: 1.6rem;
  }
}
#fonts .header,
#custom-previewer .header {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: -1px;
}
#fonts .text-preview,
#custom-previewer .text-preview {
  color: #ffffff;
  word-wrap: break-word;
}
#fonts .text-preview[contenteditable=true]:empty:before,
#custom-previewer .text-preview[contenteditable=true]:empty:before {
  color: #7d7d7d;
  content: attr(placeholder);
}
#fonts .text-preview:focus,
#custom-previewer .text-preview:focus {
  outline: none;
}
#fonts .options,
#custom-previewer .options {
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  height: 102%;
  margin-left: -1px;
  margin-top: -1px;
  padding: 17px 10px 17px 10px;
  transition: 0.25s;
}
#fonts .options .left-side,
#custom-previewer .options .left-side {
  display: inline-block;
  vertical-align: top;
  width: 67%;
}
#fonts .options .right-side,
#custom-previewer .options .right-side {
  display: inline-block;
  text-align: right;
  vertical-align: top;
  width: 33%;
}
#fonts .options .right-side .license-hover,
#custom-previewer .options .right-side .license-hover {
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 0.875rem;
  height: 20px;
  padding: 5px;
  position: relative;
  vertical-align: middle;
  width: 20px;
}
#fonts .options .right-side .license-hover .license-hover-text,
#custom-previewer .options .right-side .license-hover .license-hover-text {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#fonts .options .right-side .license-hover:hover,
#custom-previewer .options .right-side .license-hover:hover {
  background: #bbbbbb;
  cursor: help;
}
#fonts .options .line-1,
#custom-previewer .options .line-1 {
  font-size: 0.875rem;
  font-weight: 500;
}
#fonts .options .line-2,
#custom-previewer .options .line-2 {
  font-size: 0.75rem;
}
#fonts .options.active,
#fonts .options.perma-active,
#custom-previewer .options.active,
#custom-previewer .options.perma-active {
  background: #ffdd4f;
  color: #000000;
}
#fonts .license-hover,
#custom-previewer .license-hover {
  color: #ffffff;
}
#fonts .options.perma-active .left-side,
#custom-previewer .options.perma-active .left-side {
  width: 100%;
}
#fonts .options.perma-active .right-side,
#custom-previewer .options.perma-active .right-side {
  display: none;
}
#fonts .family-options .options,
#fonts .license-options .options,
#custom-previewer .family-options .options,
#custom-previewer .license-options .options {
  padding: 17px 10px;
  vertical-align: middle;
}
#fonts .add-to-cart,
#custom-previewer .add-to-cart {
  align-items: center;
  background: #ffffff;
  border: 0;
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  justify-content: space-between;
  margin-left: -1px;
  padding: 15px;
  width: 100%;
}
#fonts .add-to-cart:hover,
#custom-previewer .add-to-cart:hover {
  background: #dfdfdf;
  color: #000000;
  cursor: pointer;
}
#fonts .downloads ul,
#custom-previewer .downloads ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#fonts .downloads ul li,
#custom-previewer .downloads ul li {
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  margin-right: 5px;
}
#fonts .downloads ul a:not(:first-child) li,
#custom-previewer .downloads ul a:not(:first-child) li {
  margin: 0 10px;
}
#fonts .downloads ul a:hover,
#custom-previewer .downloads ul a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  #fonts .downloads ul,
#custom-previewer .downloads ul {
    text-align: left;
  }
  #fonts .downloads ul a li,
#custom-previewer .downloads ul a li {
    display: inline-block;
    margin: 0 7px 0 0 !important;
  }
  #fonts .downloads ul a:not(:first-child) li,
#custom-previewer .downloads ul a:not(:first-child) li {
    margin: 0 7px;
  }
}
#fonts .custom-select-options,
#custom-previewer .custom-select-options {
  margin-bottom: 5px;
  position: relative;
  width: 100%;
}
#fonts .custom-select-options span.fa,
#custom-previewer .custom-select-options span.fa {
  color: #888888;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#fonts .custom-select-options span.fa:hover,
#custom-previewer .custom-select-options span.fa:hover {
  cursor: pointer;
}
#fonts .custom-select-options .bg-box,
#custom-previewer .custom-select-options .bg-box {
  border: 1px solid #afafaf;
  border-radius: 5px;
  display: block;
  height: 17px;
  vertical-align: middle;
  width: 17px;
}
#fonts .custom-select-options .custom-select-field,
#custom-previewer .custom-select-options .custom-select-field {
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  padding: 8px 26px 8px 10px;
}
#fonts .custom-select-options .custom-select-wrapper,
#custom-previewer .custom-select-options .custom-select-wrapper {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
#fonts .custom-select-options .custom-select-wrapper .options,
#custom-previewer .custom-select-options .custom-select-wrapper .options {
  align-items: center;
  border: 0;
  color: #000000 !important;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 8px 0;
  padding: 0;
  transition: 0.25s;
}
#fonts .custom-select-options .custom-select-wrapper .options span,
#custom-previewer .custom-select-options .custom-select-wrapper .options span {
  padding: 10px;
  vertical-align: middle;
}
#fonts .custom-select-options .custom-select-wrapper .options span text,
#custom-previewer .custom-select-options .custom-select-wrapper .options span text {
  vertical-align: middle;
}
#fonts .custom-select-options .custom-select-wrapper .options.options-disabled span,
#custom-previewer .custom-select-options .custom-select-wrapper .options.options-disabled span {
  color: #7d7d7d;
}
#fonts .custom-select-options .custom-select-wrapper .options:hover,
#custom-previewer .custom-select-options .custom-select-wrapper .options:hover {
  background: #dfdfdf;
  cursor: pointer;
}
#fonts .ro-select-wrapper,
#custom-previewer .ro-select-wrapper {
  min-width: 100px;
}
#fonts .ro-select-text,
#custom-previewer .ro-select-text {
  border: 0 !important;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  margin-right: 25px;
  max-height: 48px;
  overflow: hidden;
  overflow: hidden;
  padding: 8px 0 8px 10px;
  white-space: nowrap;
}
#fonts .ro-select-pl-5 .ro-select-text,
#custom-previewer .ro-select-pl-5 .ro-select-text {
  padding-left: 5px !important;
}
#fonts .ro-select-list,
#fonts .custom-select-wrapper,
#custom-previewer .ro-select-list,
#custom-previewer .custom-select-wrapper {
  border-radius: 5px;
  max-height: 350px;
  min-width: 100%;
  overflow-y: auto;
  white-space: nowrap;
  width: auto;
}
#fonts .ro-select-caret,
#custom-previewer .ro-select-caret {
  top: 13px;
}
#fonts .slider-group,
#custom-previewer .slider-group {
  border: 2px solid #ffffff;
  color: #ffffff;
}
#fonts .slider-size,
#custom-previewer .slider-size {
  background: #ffffff;
  border-radius: 5px;
  color: #000000;
  font-size: 0.875rem;
  margin-left: 8px;
  padding: 9px;
  position: relative;
  position: absolute;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 15%;
}
#fonts .slider-size:after,
#custom-previewer .slider-size:after {
  border-bottom: 7px solid transparent;
  border-right: 7px solid #ffffff;
  border-top: 7px solid transparent;
  content: "";
  height: 0;
  left: -7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

#services,
#license,
#information {
  color: #000000;
}
#services a,
#license a,
#information a {
  text-decoration: none;
}
#services .menu-container,
#license .menu-container,
#information .menu-container {
  border-right: 1px solid #000000;
  overflow-y: auto;
  position: relative;
}
#services .text-container,
#license .text-container,
#information .text-container {
  border-right: 1px solid #000000;
  overflow-y: auto;
  position: relative;
}
@media (min-width: 991px) {
  #services .menu-container,
#license .menu-container,
#information .menu-container {
    height: 73vh;
  }
  #services .menu-container .menu-scrollable,
#license .menu-container .menu-scrollable,
#information .menu-container .menu-scrollable {
    height: 45vh;
    overflow-y: auto;
  }
  #services .menu-container .bottom-unscrollable,
#license .menu-container .bottom-unscrollable,
#information .menu-container .bottom-unscrollable {
    height: 25vh;
    position: relative;
  }
  #services .menu-container .bottom-unscrollable .menu-item,
#license .menu-container .bottom-unscrollable .menu-item,
#information .menu-container .bottom-unscrollable .menu-item {
    bottom: 0;
    position: absolute;
  }
  #services .text-container,
#license .text-container,
#information .text-container {
    height: 73vh;
  }
}
#services .menu-item,
#license .menu-item,
#information .menu-item {
  color: #000000;
  font-size: 1rem;
  padding-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 25px;
}
#services .menu-item:not(.disabled):hover,
#license .menu-item:not(.disabled):hover,
#information .menu-item:not(.disabled):hover {
  background: rgba(0, 0, 0, 0.2);
  color: #000000;
  cursor: pointer;
  text-decoration: none;
}
#services .menu-item,
#services .text-menu,
#license .menu-item,
#license .text-menu,
#information .menu-item,
#information .text-menu {
  border-bottom: 1px solid #000000;
  transition: 0.25s;
}
#services .menu-item.active,
#license .menu-item.active,
#information .menu-item.active {
  background: #000000;
  color: #ffffff;
}
#services .text-menu,
#license .text-menu,
#information .text-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: space-between;
  padding: 25px 35px;
}
#services .text-menu span a,
#license .text-menu span a,
#information .text-menu span a {
  color: #000000;
  font-weight: 600;
}
#services .text-menu span a:hover,
#license .text-menu span a:hover,
#information .text-menu span a:hover {
  color: #777777;
  text-decoration: none;
}
#services .text-content,
#license .text-content,
#information .text-content {
  font-size: 1rem;
  line-height: 2rem;
  padding: 20px 35px;
}
#services .text-content ul,
#services .text-content ol,
#license .text-content ul,
#license .text-content ol,
#information .text-content ul,
#information .text-content ol {
  margin-left: 0;
  padding-left: 30px;
  padding-right: 30px;
}
#services .text-content ul li,
#services .text-content ol li,
#license .text-content ul li,
#license .text-content ol li,
#information .text-content ul li,
#information .text-content ol li {
  line-height: 2rem !important;
}
#services .text-content p,
#license .text-content p,
#information .text-content p {
  line-height: 2rem !important;
}
#services .text-content table,
#license .text-content table,
#information .text-content table {
  color: #ffffff;
  margin: 0 auto;
  width: 100%;
}
#services .text-content table tr,
#license .text-content table tr,
#information .text-content table tr {
  border-bottom: 1px solid #000000;
}
#services .text-content table tr td,
#license .text-content table tr td,
#information .text-content table tr td {
  border-top: 0;
  padding: 15px 0;
}
#services .text-content table tr td:last-child,
#license .text-content table tr td:last-child,
#information .text-content table tr td:last-child {
  text-align: right;
}
#services .text-content table tr:first-child td,
#license .text-content table tr:first-child td,
#information .text-content table tr:first-child td {
  padding-top: 0;
}
@media (max-width: 576px) {
  #services table td,
#license table td,
#information table td {
    font-size: 0.875rem;
  }
  #services .text-content,
#license .text-content,
#information .text-content {
    font-size: 1rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  #services .text-content,
#license .text-content,
#information .text-content {
    padding: 20px 20px;
  }
}
#services .menu-subtext,
#license .menu-subtext,
#information .menu-subtext {
  font-size: 1rem;
  line-height: 2rem;
}
#services .menu-subtext:not(.menu-item),
#license .menu-subtext:not(.menu-item),
#information .menu-subtext:not(.menu-item) {
  bottom: 0;
  font-size: 1rem;
  line-height: 2rem;
  padding: 30px;
  position: absolute;
  vertical-align: bottom;
}
#services .custom-select-options,
#license .custom-select-options,
#information .custom-select-options {
  position: relative;
  width: 100%;
}
#services .custom-select-options span.fa,
#license .custom-select-options span.fa,
#information .custom-select-options span.fa {
  color: #888888;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
#services .custom-select-options .bg-box,
#license .custom-select-options .bg-box,
#information .custom-select-options .bg-box {
  border: 1px solid #afafaf;
  border-radius: 5px;
  display: block;
  height: 17px;
  vertical-align: middle;
  width: 17px;
}
#services .custom-select-options .custom-select-field,
#license .custom-select-options .custom-select-field,
#information .custom-select-options .custom-select-field {
  align-items: center;
  border: 0;
  border-radius: 5px;
  color: #000000;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  padding: 25px 35px;
}
@media (max-width: 576px) {
  #services .custom-select-options .custom-select-field,
#license .custom-select-options .custom-select-field,
#information .custom-select-options .custom-select-field {
    padding: 25px 25px;
  }
  #services .custom-select-options span.fa,
#license .custom-select-options span.fa,
#information .custom-select-options span.fa {
    right: 25px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  #services .custom-select-options .custom-select-field,
#license .custom-select-options .custom-select-field,
#information .custom-select-options .custom-select-field {
    padding: 25px 35px;
  }
}
#services .custom-select-options .custom-select-wrapper,
#license .custom-select-options .custom-select-wrapper,
#information .custom-select-options .custom-select-wrapper {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
#services .custom-select-options .custom-select-wrapper .options,
#license .custom-select-options .custom-select-wrapper .options,
#information .custom-select-options .custom-select-wrapper .options {
  align-items: center;
  border: 0;
  color: #000000 !important;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 8px 0;
  padding: 0;
  transition: 0.25s;
}
#services .custom-select-options .custom-select-wrapper .options span,
#license .custom-select-options .custom-select-wrapper .options span,
#information .custom-select-options .custom-select-wrapper .options span {
  padding: 10px;
  vertical-align: middle;
}
#services .custom-select-options .custom-select-wrapper .options span text,
#license .custom-select-options .custom-select-wrapper .options span text,
#information .custom-select-options .custom-select-wrapper .options span text {
  vertical-align: middle;
}
#services .custom-select-options .custom-select-wrapper .options .menu-item,
#license .custom-select-options .custom-select-wrapper .options .menu-item,
#information .custom-select-options .custom-select-wrapper .options .menu-item {
  color: #000000;
}
#services .custom-select-options .custom-select-wrapper .options.options-disabled span,
#license .custom-select-options .custom-select-wrapper .options.options-disabled span,
#information .custom-select-options .custom-select-wrapper .options.options-disabled span {
  color: #7d7d7d;
}
#services .custom-select-options .custom-select-wrapper .options:hover,
#license .custom-select-options .custom-select-wrapper .options:hover,
#information .custom-select-options .custom-select-wrapper .options:hover {
  background: #dfdfdf;
  cursor: pointer;
}

#license,
#information {
  color: #ffffff;
}
#license hr,
#information hr {
  border-top-color: #ffffff;
}
#license .menu-container,
#information .menu-container {
  border-right: 1px solid #ffffff;
}
#license .text-container,
#information .text-container {
  border-right: 1px solid #ffffff;
}
#license .menu-item,
#license .text-menu,
#information .menu-item,
#information .text-menu {
  border-bottom: 1px solid #ffffff;
}
#license .menu-item,
#information .menu-item {
  color: #ffffff;
}
#license .menu-item:not(.disabled):hover,
#information .menu-item:not(.disabled):hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}
#license .menu-item.active,
#information .menu-item.active {
  background: #dfdfdf;
  color: #000000;
}
#license .text-menu span a,
#information .text-menu span a {
  color: #ffffff;
}
#license .text-menu span a:hover,
#information .text-menu span a:hover {
  color: #707070;
}
#license .text-content table tr,
#information .text-content table tr {
  border-bottom: 2px solid #7d7d7d;
}
#license .text-content label,
#information .text-content label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0;
}
#license .text-content input,
#license .text-content textarea,
#information .text-content input,
#information .text-content textarea {
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 5px 10px;
}
#license .text-content button,
#information .text-content button {
  background: #c3e71c;
  border: 0;
  font-size: 0.875rem;
  padding: 7px;
}
#license .custom-select-field,
#information .custom-select-field {
  color: #ffffff !important;
}

@media (max-width: 1024px) {
  #services .text-content p,
#services .menu-subtext p,
#license .text-content p,
#license .menu-subtext p,
#information .text-content p,
#information .menu-subtext p {
    line-height: 1.6rem !important;
  }
  #services .text-content ul li,
#services .text-content ol li,
#services .menu-subtext ul li,
#services .menu-subtext ol li,
#license .text-content ul li,
#license .text-content ol li,
#license .menu-subtext ul li,
#license .menu-subtext ol li,
#information .text-content ul li,
#information .text-content ol li,
#information .menu-subtext ul li,
#information .menu-subtext ol li {
    line-height: 1.6rem !important;
  }
}
#goods .fix-align {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 767px) {
  #goods .fix-align {
    margin-left: 0;
    margin-right: 0;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
#goods .tns-nav {
  display: block;
}
#goods .tns-slider {
  position: relative;
}
#goods .borderx-bottom {
  border-bottom: 1px solid #000000;
}
#goods .prev-next .text-menu span a {
  color: #7d7d7d;
}
#goods .prev-next .text-menu span a:hover {
  color: #707070;
}
#goods .text-menu {
  align-items: center;
  border-bottom: 1px solid #000000;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  font-size: 1rem;
  justify-content: space-between;
  padding: 25px 40px;
  transition: 0.25s;
}
#goods .text-menu span a {
  color: #000000;
  font-weight: 600;
}
#goods .text-menu span a:hover {
  color: #777777;
  text-decoration: none;
}
#goods .text-menu .price {
  font-weight: 600;
}
@media (max-width: 576px) {
  #goods .borderx-top {
    border-top: 1px solid #000000;
  }
}
@media (min-width: 768px) {
  #goods .mid-border {
    border-right: 1px solid #000000;
  }
}
#goods .showcase {
  width: 100%;
}
@media (min-width: 768px) {
  #goods .mid-border:not(:last-child) {
    border-right: 1px solid #000000;
  }
}
#goods .text-menu.no-padding {
  border-bottom: 1px solid #000000;
  padding: 0;
}
#goods .text-menu.no-padding .ro-select-wrapper {
  background-color: #ffffff;
}
#goods .text-menu.no-padding .ro-select-text {
  border: 0;
  border-radius: 0;
  color: #000000;
  max-height: none;
  padding: 25px 25px;
}
#goods .text-menu.no-padding .ro-select-caret {
  color: #000000;
  right: 30px;
  top: 30px;
}
#goods .text-menu.no-padding .ro-select-list {
  background: #ffffff !important;
  color: #000000;
  font-size: 1rem;
  padding: 0;
}
#goods .text-menu.no-padding .ro-select-list .ro-select-item {
  padding: 15px 40px;
}
#goods .item-description {
  padding: 5px 40px;
}
#goods .item-description .name,
#goods .item-description .description {
  border-bottom: 1px solid #000000;
  color: #000000;
  padding: 30px 0;
  width: 100%;
}
#goods .item-description .name hr,
#goods .item-description .description hr {
  border-top: 1px solid #c5c5c5;
}
#goods .item-description .name {
  font-size: 1.25rem;
  font-weight: 600;
}
#goods .item-description .description {
  font-size: 1rem;
  line-height: 2rem;
}
#goods .item-description .description p {
  line-height: 2rem !important;
}
#goods .item-description .description p:last-child {
  margin-bottom: 0;
}
#goods .selection-container {
  padding: 10px 40px;
}
#goods .selection-container .header {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
#goods .selection-container .selection input {
  border: 1px solid #000000;
  padding: 10px;
  width: 100%;
}
#goods .selection-container .selection .custom-select-options {
  position: relative;
  width: 100%;
}
#goods .selection-container .selection .custom-select-options span.fa {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#goods .selection-container .selection .custom-select-options .custom-select-field {
  align-items: center;
  border: 1px solid #000000;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  padding: 10px 40px 10px 10px;
}
#goods .selection-container .selection .custom-select-options .custom-select-wrapper {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
#goods .selection-container .selection .custom-select-options .custom-select-wrapper .options {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 5px 0;
}
#goods .selection-container .selection .custom-select-options .custom-select-wrapper .options span {
  padding: 10px;
}
#goods .selection-container .selection .custom-select-options .custom-select-wrapper .options.options-disabled span {
  color: #7d7d7d;
}
#goods .selection-container .selection .custom-select-options .custom-select-wrapper .options:hover {
  background: #dfdfdf;
  cursor: pointer;
}
#goods .selection-container .selection .bootstrap-select button {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  color: #000000;
  padding: 10px;
}
#goods .selection-container .selection .bootstrap-select button:hover {
  background: #ffffff;
}
#goods .selection-container .selection button[type=submit] {
  align-items: center;
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: space-between;
  padding: 15px 15px;
  width: 100%;
}
#goods .selection-container .selection button:hover {
  background: #333;
  border: 1px solid #333;
}

#blogs .blog-navbar {
  border-bottom: 2px solid #dfdfdf;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 20px;
}
#blogs .filter {
  overflow-x: auto;
  padding: 30px 0;
  white-space: nowrap;
}
#blogs .filter a {
  color: #7d7d7d;
  font-weight: 600;
  padding: 10px 15px;
}
#blogs .filter a:hover {
  color: #000000;
  text-decoration: none;
}
@media (max-width: 767px) {
  #blogs .filter a {
    padding: 10px 15px;
  }
}
#blogs .article-container a {
  color: #000000;
}
#blogs .article-container a .read-more {
  color: #7d7d7d;
  font-weight: 600;
}
#blogs .article-container a:hover {
  text-decoration: none;
}
#blogs .article-container a:hover .read-more {
  color: #000000;
}
#blogs .article-container .article .thumbnail {
  background-color: #dfdfdf;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100%;
  width: 100%;
}
#blogs .article-container .article .title {
  font-size: 1rem;
  margin-bottom: 5px;
  margin-top: 15px;
}
#blogs .article-container .article .category {
  color: #7d7d7d;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 20px;
}

#blogs-content .blog-title {
  font-size: 2.25rem;
  margin-top: 30px;
  text-align: center;
}
#blogs-content .blog-date {
  color: #7d7d7d;
  font-size: 1rem;
  margin-bottom: 20px;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 576px) {
  #blogs-content .blog-title {
    font-size: 1.75rem;
    line-height: 2.375rem;
    text-align: left;
  }
  #blogs-content .blog-date {
    text-align: left;
  }
}
#blogs-content .blog-content {
  color: #ffffff;
  font-size: 1.125rem;
}
#blogs-content .blog-content hr {
  border-top-color: #ffffff;
}
#blogs-content .blog-content p:first-child {
  padding-top: 10px;
}
#blogs-content .blog-content p {
  margin-bottom: 0rem;
  padding: 8px 0;
  width: 100%;
}
#blogs-content .blog-content p,
#blogs-content .blog-content span {
  font-size: 1rem !important;
}
#blogs-content .blog-content p.full_paragraph {
  margin-bottom: 0;
  padding: 0;
}
#blogs-content .blog-content img {
  margin-bottom: 15px;
  width: 100%;
}
@media (max-width: 992px) {
  #blogs-content .blog-content {
    font-size: 1rem;
  }
}
#blogs-content .prev-next {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
#blogs-content .prev-next span a {
  color: #7d7d7d;
  font-weight: 600;
}
#blogs-content .prev-next span a:hover {
  color: #707070;
  text-decoration: none;
}

.cart-overlay {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: 0.25s;
  width: 100%;
  z-index: 100001;
}

.floating-cart {
  background: #ffffff;
  border-left: 1px solid #dfdfdf;
  font-size: 1.25rem;
  height: 100%;
  margin-left: 100%;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.25s;
  width: 0;
  z-index: 100;
  z-index: 100002;
}
.floating-cart .close-button {
  cursor: pointer;
  font-weight: 400;
}
.floating-cart .close-button:hover {
  font-weight: 800;
}
.floating-cart .title {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 10%;
  justify-content: space-between;
  padding: 25px 15px;
}
.floating-cart hr {
  border-top: 1px solid #dfdfdf !important;
  margin-left: 15px;
  margin-right: 15px;
}
.floating-cart .item-container {
  height: 69%;
  overflow-y: auto;
}
.floating-cart .item-container .item {
  margin: 10px 15px;
}
.floating-cart .item-container .item .name {
  font-size: 1rem;
  font-weight: 600;
}
.floating-cart .item-container .item .license {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.floating-cart .item-container .item .button {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
.floating-cart .item-container .item .button button {
  background: transparent;
  border: 0;
  color: #000000;
  font-weight: 500;
  padding: 0;
}
.floating-cart .item-container .item .button button:hover {
  color: #777777;
  text-decoration: none;
}
.floating-cart .item-container .item:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
.floating-cart .checkout {
  bottom: 0;
  display: flex;
  flex-flow: column;
  height: 16%;
  left: 0;
  position: absolute;
  width: 100%;
}
.floating-cart .checkout .disclaimer {
  flex: 0 1 auto;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.875rem;
  padding: 0 15px;
  position: relative;
}
.floating-cart .checkout .disclaimer .undo {
  background: #cc1717;
  bottom: 0;
  color: #ffffff;
  font-weight: 500;
  left: 0;
  padding: 20px 10px;
  position: absolute;
  right: 0;
  width: 100%;
}
.floating-cart .checkout .disclaimer .undo a {
  color: #ffffff;
  text-decoration: underline;
}
.floating-cart .checkout .disclaimer .undo a:hover {
  color: #0f0f0f;
}
.floating-cart .checkout .disclaimer .undo #undo-message {
  padding: 0 5px;
  width: 90%;
}
.floating-cart .checkout .disclaimer .undo #close-cart-remove {
  padding: 0 5px;
  text-align: right;
  width: 10%;
}
.floating-cart .checkout .button {
  background: #000000;
  cursor: pointer;
  flex: 1 1 auto;
  height: 100%;
  position: relative;
  transition: 0.125s;
  width: 100%;
}
.floating-cart .checkout .button .text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  left: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.floating-cart .checkout .button:hover {
  background: #222;
}
.floating-cart .item-container::-webkit-scrollbar-track {
  background-color: #ffffff;
}
.floating-cart .item-container::-webkit-scrollbar {
  background-color: #ffffff;
  width: 6px;
}
.floating-cart .item-container::-webkit-scrollbar-thumb {
  background-color: #dfdfdf;
  border-radius: 6px;
}

.floating-cart.show {
  width: 25%;
}

@media (max-width: 767px) {
  .floating-cart.show {
    width: 75%;
  }
}
.flex-height-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#checkout {
  color: #000000;
}
#checkout .left-container {
  border-right: 2px solid #dfdfdf;
  height: 86vh;
  overflow-y: auto;
  position: relative;
}
#checkout .left-container .c-info {
  margin-bottom: 5px;
}
#checkout .left-container .c-info .label {
  font-size: 0.875rem;
  font-weight: 600;
}
#checkout .left-container .c-info .value {
  font-size: 0.875rem;
}
#checkout .left-container .payment-opt {
  background: #ffffff;
  border: 2px solid #dfdfdf;
  font-weight: 500;
  height: 90px;
  margin-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
#checkout .left-container .payment-opt img {
  height: 35px;
}
#checkout .left-container .payment-opt:hover {
  cursor: pointer;
}
#checkout .left-container .payment-opt.active {
  background-color: #f5f5f5;
}
#checkout .left-container .region-alert-idr,
#checkout .left-container .region-alert-usd {
  background: #ffdd4f;
  font-size: 0.75rem;
  margin-top: 15px;
  padding: 15px;
  text-align: center;
}
#checkout .left-container .no-input {
  background: #dee2e6;
  border-radius: 10px;
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 20px;
  padding: 75px 150px;
  position: relative;
  text-align: center;
  width: 100%;
}
#checkout .left-container .no-input .overlay {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}
#checkout .left-container .no-input .overlay .vh-center {
  color: #ffffff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#checkout .left-container .no-input .overlay .vh-center .fa,
#checkout .left-container .no-input .overlay .vh-center .fas {
  font-size: 1.5rem;
}
#checkout .left-container .no-input .overlay .vh-center .loading-text {
  font-size: 1rem;
  font-style: normal;
}
@media (max-width: 767px) {
  #checkout .left-container .no-input {
    padding: 35px 75px;
  }
}
#checkout .left-container .btn-to {
  background: #000000;
  border: 0;
  border-radius: 3px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 20px 30px;
}
#checkout .left-container .btn-to.long {
  width: 150px;
}
#checkout .left-container .btn-to:hover {
  background: #777777;
}
#checkout .left-container .header {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
#checkout .left-container input:not([type=checkbox]),
#checkout .left-container .bootstrap-select {
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 10px;
  padding: 7px 10px;
  width: 100%;
}
#checkout .left-container input:not([type=checkbox]) button,
#checkout .left-container .bootstrap-select button {
  background: #ffffff;
}
#checkout .left-container .bootstrap-select {
  padding: 0;
}
#checkout .left-container .pure-material-checkbox {
  margin-left: 0px;
}
#checkout .left-container .pure-material-checkbox span {
  font-size: 0.75rem;
}
#checkout .left-container select {
  background-color: #ffffff;
}
#checkout .left-container .dropdown-menu {
  z-index: 99;
}
#checkout .right-container {
  height: 86vh;
  overflow-y: hidden;
  position: relative;
}
#checkout .right-container .title {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.25rem;
  font-weight: 400;
  height: 11%;
  justify-content: space-between;
  padding: 20px;
}
@media (max-width: 768px) {
  #checkout .right-container .title {
    height: auto;
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  #checkout .right-container {
    border-bottom: 1px solid #dfdfdf;
  }
}
#checkout hr {
  border-top: 1px solid #dfdfdf !important;
  margin: 0 15px;
}
#checkout .menu-item {
  font-size: 1rem;
  padding-bottom: 25px;
  padding-top: 25px;
}
#checkout .menu-item,
#checkout .text-menu {
  border-bottom: 1px solid #000000;
  transition: 0.25s;
}
#checkout .menu-item.active {
  background: #000000;
  color: #ffffff;
}
#checkout .text-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: space-between;
}
#checkout .text-menu span a {
  color: #000000;
  font-weight: 600;
}
#checkout .text-menu span a:hover {
  color: #777777;
  text-decoration: none;
}
#checkout .text-content {
  font-size: 1rem;
  line-height: 2rem;
  padding: 30px;
}
#checkout .text-content ul,
#checkout .text-content ol {
  margin-left: 0;
  padding-left: 30px;
  padding-right: 30px;
}
#checkout .text-content table {
  margin: 0 auto;
  width: 80%;
}
#checkout .text-content table tr {
  border-bottom: 1px solid #000000;
}
#checkout .text-content table tr td {
  padding: 15px 0;
}
#checkout .text-content table tr td:last-child {
  text-align: right;
}
#checkout .text-content .menu-subtext {
  font-size: 1rem;
  line-height: 2rem;
}
#checkout .text-content .menu-subtext:not(.menu-item) {
  bottom: 0;
  font-size: 1rem;
  line-height: 2rem;
  padding: 30px;
  position: absolute;
  vertical-align: bottom;
}
#checkout .item-container {
  height: 60%;
  margin-bottom: 10px;
  overflow-y: auto;
}
#checkout .item-container .item {
  margin: 10px 20px;
}
#checkout .item-container .item .name {
  font-size: 1rem;
  font-weight: 600;
}
#checkout .item-container .item .license {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 15px;
}
#checkout .item-container .item .button {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 15px;
}
#checkout .item-container .item .button button {
  background: transparent;
  border: 0;
  color: #000000;
  font-weight: 500;
  padding: 0;
}
#checkout .item-container .item .button button:hover {
  color: #777777;
  text-decoration: none;
}
#checkout .item-container .item:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
#checkout .item-container.b {
  height: 65%;
  margin-bottom: 10px;
  overflow-y: auto;
}
#checkout .discount {
  bottom: 17%;
  height: 11%;
  position: absolute;
  text-align: center;
  width: 100%;
}
#checkout .discount form {
  bottom: 0px;
  position: absolute;
  width: 100%;
}
#checkout .discount input {
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 7px 10px;
  width: 70%;
}
#checkout .discount button {
  background: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 600;
  margin-left: 5px;
  padding: 7px 10px;
  width: 20%;
}
#checkout .discount div {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0 20px;
}
#checkout .bottom-button {
  bottom: 0;
  display: flex;
  flex-flow: column;
  height: 15%;
  left: 0;
  position: absolute;
  width: 100%;
}
#checkout .bottom-button .undo {
  background: #cc1717;
  bottom: 0;
  color: #ffffff;
  font-weight: 500;
  height: 100%;
  left: 0;
  padding: 20px 10px;
  position: absolute;
  right: 0;
  width: 100%;
}
#checkout .bottom-button .undo a {
  color: #ffffff;
  text-decoration: underline;
}
#checkout .bottom-button .undo a:hover {
  color: #0f0f0f;
}
#checkout .bottom-button .undo #undo-message {
  padding: 0 5px;
  width: 90%;
}
#checkout .bottom-button .undo #close-cart-remove {
  padding: 0 5px;
  text-align: right;
  width: 10%;
}
#checkout .bottom-button .disclaimer {
  flex: 0 1 auto;
  font-size: 0.625rem;
  font-weight: 600;
  height: 2.5rem;
  padding: 0 10px;
}
#checkout .bottom-button .button {
  background: #000000;
  flex: 1 1 auto;
  height: 100%;
  position: relative;
  transition: 0.125s;
  width: 100%;
}
#checkout .bottom-button .button .text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  #checkout .discount {
    bottom: 0;
    position: relative;
  }
  #checkout .discount form {
    bottom: 0px;
    position: relative;
    width: 100%;
  }
  #checkout .bottom-button {
    height: auto;
    position: relative;
  }
  #checkout .bottom-button .button .text {
    left: 0;
    padding: 20px 20px;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
  }
}
#checkout .item-container::-webkit-scrollbar-track {
  background-color: #ffffff;
}
#checkout .item-container::-webkit-scrollbar {
  background-color: #ffffff;
  width: 6px;
}
#checkout .item-container::-webkit-scrollbar-thumb {
  background-color: #dfdfdf;
  border-radius: 6px;
}

@media (min-width: 768px) {
  body.checkout .navbar {
    height: 14vh;
  }
}
@media (max-width: 767px) {
  body.checkout #checkout .left-container {
    height: auto;
  }
  body.checkout #checkout .right-container {
    height: auto;
  }
  body.checkout #checkout .right-container .item-container {
    border-bottom: 1px solid #dfdfdf;
    height: auto;
  }
  body.checkout #checkout .right-container .discount {
    height: auto;
    margin: 20px 0;
  }
  body.checkout #checkout .right-container .discount input {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .px-md-5 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
footer {
  border-top: 2px solid #dfdfdf;
  font-weight: 600;
}
footer .container {
  align-items: center;
  color: #7d7d7d;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .social-button a,
footer .other-button a {
  color: #7d7d7d;
}
footer .social-button a {
  font-size: 1.5rem;
  padding-right: 6px;
}
footer .social-button a:first-child {
  padding-left: 10px;
}
footer .other-button a {
  padding-left: 10px;
  padding-right: 10px;
}
footer .social-button a:hover,
footer .other-button a:hover {
  color: #707070;
  text-decoration: none;
}
@media (max-width: 576px) {
  footer .other-button {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  footer .container {
    display: block;
    text-align: center;
  }
  footer .social-button a:first-child {
    padding-left: 0;
  }
  footer .social-button a {
    padding: 0 7px;
  }
  footer .other-button {
    display: block;
    margin-top: 3px;
    text-align: center;
  }
}

.gdpr-banner {
  bottom: 0;
  font-family: "Roboto", sans-serif;
  left: 0;
  position: fixed;
  width: 100%;
}
.gdpr-banner .container {
  background: #000000;
  border: 1px solid #dfdfdf;
  border-bottom: 0px;
  color: #ffffff;
}
.gdpr-banner .container .gpdr-title {
  font-size: 0.875rem;
  font-weight: 700;
}
.gdpr-banner .container .gpdr-body {
  font-size: 0.75rem;
  font-weight: 400;
}
.gdpr-banner .container .gpdr-btn-container {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.gdpr-banner .container .gpdr-btn-container .gpdr-btn {
  transition: 0.125s;
}
.gdpr-banner .container .gpdr-btn-container .gpdr-btn--accept {
  background: #ffffff;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  color: #000000;
  padding: 10px 15px;
}
.gdpr-banner .container .gpdr-btn-container .gpdr-btn--reject {
  color: #dfdfdf;
  opacity: 0.8;
  padding: 10px 15px;
}
.gdpr-banner .container .gpdr-btn-container .gpdr-btn--accept:hover {
  background: #dfdfdf;
  border-color: #dfdfdf;
  text-decoration: none;
}
.gdpr-banner .container .gpdr-btn-container .gpdr-btn--reject:hover {
  opacity: 1;
  text-decoration: none;
}

.dynamic-grid {
  align-items: center;
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dynamic-grid-cell {
  padding: 0 10px;
}
.dynamic-grid-cell .dynamic-grid-inner {
  align-items: center;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.dynamic-grid-cell .field-title {
  font-size: 1rem;
  font-weight: 700;
}
.dynamic-grid-cell .field-value {
  font-size: 1rem;
}
.dynamic-grid-cell:nth-child(3n) {
  padding-right: 0;
}
.dynamic-grid-cell:nth-child(3n-2) {
  padding-left: 0;
}
.dynamic-grid-cell:nth-child(3n) .dynamic-grid-cell:last-child:nth-child(3n-2) {
  flex-basis: 100% !important;
}
.dynamic-grid-cell:last-child .dynamic-grid-inner, .dynamic-grid-cell:nth-last-child(3) .dynamic-grid-inner {
  border-bottom: 0;
}
@media (max-width: 991px) {
  .dynamic-grid-cell {
    padding: 0;
  }
  .dynamic-grid-cell:nth-last-child(3) .dynamic-grid-inner {
    border-bottom: 1px solid #000000;
  }
}
.dynamic-grid-50 {
  flex-basis: 49.8%;
}
@media (max-width: 991px) {
  .dynamic-grid-50 {
    flex-basis: 100%;
  }
}
.dynamic-grid-100 {
  flex-basis: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.dynamic-grid-separator {
  background: #000000;
  display: block;
  padding: 15px 0;
  width: 1px;
}
@media (max-width: 991px) {
  .dynamic-grid-separator {
    display: none;
  }
}

#seeOurServices .card {
  border: 1px solid #000000;
  border-radius: 0;
}
#seeOurServices .card-header {
  background: #000000;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px;
  text-align: left;
}
#seeOurServices .card-header:focus {
  border-radius: 0;
  outline: none;
}
#seeOurServices .card .jump-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000000;
  color: #000000;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
  width: 100%;
}
#seeOurServices .card .jump-button:hover {
  background: #fafafa;
}
#seeOurServices .card .jump-button:last-child {
  border-bottom: 0;
}

.selector-toggle:hover {
  cursor: pointer;
}
.selector-options {
  background: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: absolute;
  width: calc(100% - 30px);
  z-index: 10;
}
@media (max-width: 991px) {
  .selector-options {
    width: 100%;
  }
}
.selector-inner {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.selector-inner li {
  padding: 20px;
}
.selector-inner li:hover {
  background: #fafafa;
  cursor: pointer;
}

.navigation-link a {
  color: #000000;
  font-weight: 600;
}
.navigation-link a:hover {
  text-decoration: none;
}

.variable-settings {
  max-height: 300px;
  overflow-y: auto;
  padding: 20px;
}
.variable-settings-wrapper {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-top: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-width: 300px;
  position: absolute;
  top: 75px;
  z-index: 1;
}
.variable-settings__group {
  margin-bottom: 15px;
}
.variable-settings__slider .pure-material-slider {
  width: 100%;
}
.variable-settings__limits {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
}
.variable-settings-toggle {
  background: transparent;
  border: 0;
  border-radius: 8px;
  transition: background 0.125s border-color;
}
.variable-settings-toggle:hover, .variable-settings-toggle:focus {
  border: 0;
  box-shadow: none !important;
  cursor: pointer;
  outline: 0 !important;
}
.variable-settings-toggle:focus, .variable-settings-toggle:focus-visible, .variable-settings-toggle:focus-within {
  box-shadow: none;
  outline: 0;
}

body.light .to-top {
  background: #000000;
}
body.light .to-top:hover {
  background: #777777;
}
body.light #fonts .body-overlay,
body.light #custom-previewer .body-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
body.light #fonts .slider-size,
body.light #custom-previewer .slider-size {
  background: #191919;
  color: #ffffff;
}
body.light #fonts .slider-size:after,
body.light #custom-previewer .slider-size:after {
  border-right: 7px solid #191919;
}
body.light #fonts .ro-select-text,
body.light #custom-previewer .ro-select-text {
  border: 2px solid #000000;
  color: #000000;
}
body.light #fonts .slider-group,
body.light #custom-previewer .slider-group {
  border: 2px solid #000000;
  color: #000000;
}
body.light #fonts .downloads ul li,
body.light #custom-previewer .downloads ul li {
  color: #000000;
  display: inline-block;
  font-weight: 600;
}
body.light #fonts .add-to-cart,
body.light #custom-previewer .add-to-cart {
  background: #000000;
  color: #ffffff;
}
body.light #fonts .add-to-cart:hover,
body.light #custom-previewer .add-to-cart:hover {
  background: #333;
  color: #ffffff;
}
body.light #fonts .header,
body.light #custom-previewer .header {
  color: #000000;
}
body.light #fonts .options,
body.light #custom-previewer .options {
  border: 1px solid #000000;
  color: #000000;
}
body.light #fonts .description,
body.light #custom-previewer .description {
  color: #000000;
}
body.light #fonts .text-preview,
body.light #custom-previewer .text-preview {
  color: #000000;
}
body.light #fonts .custom-select-field,
body.light #custom-previewer .custom-select-field {
  border: 2px solid #000000;
  color: #000000;
}
body.light #fonts .custom-select-field .options,
body.light #custom-previewer .custom-select-field .options {
  color: #000000 !important;
}
body.light #fonts .ro-select-wrapper,
body.light #custom-previewer .ro-select-wrapper {
  border-radius: 5px !important;
}
body.light #fonts .ro-select-text,
body.light #custom-previewer .ro-select-text {
  border: 0 !important;
}
body.light #fonts .license-hover,
body.light #custom-previewer .license-hover {
  color: #000000 !important;
}
body.light .navbar {
  border-bottom-color: #dfdfdf;
}
body.light hr {
  border-top: 2px solid #000000;
}
body.light .contact-us label {
  color: #000000 !important;
}
body.light .contact-us button {
  background-color: transparent !important;
  border: 1px solid #000000 !important;
  color: #000000 !important;
}
body.light footer {
  border-top-color: #dfdfdf;
}
body.light footer div {
  color: #7d7d7d;
}
body.light footer .social-button a,
body.light footer .other-button a {
  color: #7d7d7d;
  transition: 0.125s;
}
body.light footer .social-button a:hover,
body.light footer .other-button a:hover {
  color: #000000;
}
body.light .license-hover {
  color: #ffffff !important;
}

body.dark .to-top {
  background: #ffffff;
  color: #000000;
}
body.dark .to-top:hover {
  background: #dfdfdf;
}
body.dark .font-highlight {
  background: #000000;
  color: #ffffff;
}
body.dark .font-highlight__input {
  border-color: #ffffff;
}
body.dark .font-highlight__selection {
  color: #000000;
}
body.dark .font-highlight__button--black {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}
body.dark .font-highlight__button--white {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}
body.dark .font-highlight__button--white:hover {
  background: #dfdfdf;
  border-color: #dfdfdf;
}
body.dark .font-highlight__button--border-black {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
body.dark .font-highlight__button--border-black.clickable:hover {
  cursor: pointer;
}
body.dark .font-highlight .family-overview__download {
  color: #ffffff;
}
body.dark .font-highlight .family-overview__button hr {
  border-color: #ffffff;
}
body.dark .font-highlight .family-overview__content .content-title {
  color: #ffffff;
}
body.dark .font-highlight .family-overview__content .content-body__child a {
  color: #ffffff;
}
body.dark .font-highlight .family-overview__content .content-body__child a:hover {
  color: #777777;
}
body.dark #fonts .previewer__toolbar span,
body.dark #custom-previewer .previewer__toolbar span {
  color: #ffffff;
}
body.dark #fonts .previewer__toolbar .slider input[type=range],
body.dark #custom-previewer .previewer__toolbar .slider input[type=range] {
  background: #dfdfdf;
}
body.dark #fonts .previewer__toolbar .slider input[type=range] + label,
body.dark #custom-previewer .previewer__toolbar .slider input[type=range] + label {
  color: #ffffff;
}
body.dark #fonts .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb,
body.dark #custom-previewer .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb {
  background-color: #000000;
  border: 2px solid #ffffff;
}
body.dark #fonts .previewer__toolbar .slider input[type=range]::-moz-range-thumb,
body.dark #custom-previewer .previewer__toolbar .slider input[type=range]::-moz-range-thumb {
  background-color: #000000;
  border: 2px solid #ffffff;
}
body.dark #fonts .previewer__toolbar .single-button a,
body.dark #custom-previewer .previewer__toolbar .single-button a {
  color: #ffffff;
}
body.dark #fonts .previewer__toolbar .single-button a:hover,
body.dark #custom-previewer .previewer__toolbar .single-button a:hover {
  color: #dfdfdf;
}
body.dark #fonts .previewer__text,
body.dark #custom-previewer .previewer__text {
  color: #ffffff;
}
body.dark #fonts hr,
body.dark #custom-previewer hr {
  border-top-color: #ffffff;
}
body.dark #fonts .background-changer,
body.dark #custom-previewer .background-changer {
  background: #313131;
  box-shadow: 0px 0px 3px white;
}
body.dark #fonts .background-changer .triangle,
body.dark #custom-previewer .background-changer .triangle {
  border-color: transparent transparent #313131 transparent;
}
body.dark #fonts .options.active .license-hover,
body.dark #custom-previewer .options.active .license-hover {
  color: #000000 !important;
}
body.dark #fonts .add-to-cart,
body.dark #custom-previewer .add-to-cart {
  background: #f3f3f3 !important;
}
body.dark #fonts .description,
body.dark #custom-previewer .description {
  color: #ffffff;
}
body.dark footer {
  color: #ffffff;
}
body.dark footer .container {
  color: #ffffff;
}
body.dark footer .social-button a,
body.dark footer .other-button a {
  color: #ffffff;
}
body.dark footer .social-button a:hover,
body.dark footer .other-button a:hover {
  color: #bfbfbf;
}
body.dark .ro-select-caret {
  color: #ffffff !important;
}
body.dark .dynamic-grid {
  border-bottom-color: #ffffff;
  border-top-color: #ffffff;
}
body.dark .dynamic-grid-cell .dynamic-grid-inner {
  border-bottom-color: #ffffff;
}
body.dark .dynamic-grid-cell .field-title {
  color: #ffffff;
}
body.dark .dynamic-grid-cell .field-value {
  color: #ffffff;
}
@media (max-width: 991px) {
  body.dark .dynamic-grid-cell:nth-last-child(3) .dynamic-grid-inner {
    border-bottom-color: #ffffff;
  }
}
body.dark .dynamic-grid-separator {
  background: #ffffff;
}
body.dark .navigation-link a {
  color: #ffffff;
}
body.dark #seeOurServices .card {
  border-color: #ffffff;
}
body.dark #seeOurServices .card-header {
  background: #ffffff;
  color: #000000;
}
body.dark #seeOurServices .card .jump-button {
  background: #191919;
  border-bottom-color: #ffffff;
  color: #ffffff;
}
body.dark #seeOurServices .card .jump-button:hover {
  background: #212121;
}

body.red .to-top {
  background: #d62828;
  color: #ffffff;
}
body.red .to-top:hover {
  background: #b10d0d;
}
body.red .font-highlight {
  background: #f9e4e4;
  color: #d62828;
}
body.red .font-highlight__input {
  border-color: #d62828;
}
body.red .font-highlight__button--black {
  background: #d62828;
  border-color: #d62828;
  color: #ffffff;
}
body.red .font-highlight__button--white {
  background: #ffffff;
  border-color: #d62828;
  color: #d62828;
}
body.red .font-highlight__button--white:hover {
  background: #dfdfdf;
  border-color: #d62828;
}
body.red .font-highlight__button--border-black {
  background: transparent;
  border-color: #d62828;
  color: #d62828;
}
body.red .font-highlight__button--border-black.clickable:hover {
  cursor: pointer;
}
body.red .font-highlight .family-overview__download {
  color: #d62828;
}
body.red .font-highlight .family-overview__button hr {
  border-color: #d62828;
}
body.red .font-highlight .family-overview__content .content-title {
  color: #d62828;
}
body.red .font-highlight .family-overview__content .content-body__child a {
  color: #d62828;
}
body.red .font-highlight .family-overview__content .content-body__child a:hover {
  color: #b10d0d;
}
body.red #fonts .previewer__toolbar span,
body.red #custom-previewer .previewer__toolbar span {
  color: #d62828;
}
body.red #fonts .previewer__toolbar .slider input[type=range],
body.red #custom-previewer .previewer__toolbar .slider input[type=range] {
  background: #d62828;
}
body.red #fonts .previewer__toolbar .slider input[type=range] + label,
body.red #custom-previewer .previewer__toolbar .slider input[type=range] + label {
  color: #d62828;
}
body.red #fonts .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb,
body.red #custom-previewer .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb {
  background-color: #f9e4e4;
  border: 2px solid #d62828;
}
body.red #fonts .previewer__toolbar .slider input[type=range]::-moz-range-thumb,
body.red #custom-previewer .previewer__toolbar .slider input[type=range]::-moz-range-thumb {
  background-color: #f9e4e4;
  border: 2px solid #d62828;
}
body.red #fonts .previewer__toolbar .single-button a,
body.red #custom-previewer .previewer__toolbar .single-button a {
  color: #d62828;
}
body.red #fonts .previewer__toolbar .single-button a:hover,
body.red #custom-previewer .previewer__toolbar .single-button a:hover {
  color: #b10d0d;
}
body.red #fonts .previewer__text,
body.red #custom-previewer .previewer__text {
  color: #d62828;
}
body.red #fonts .background-changer,
body.red #custom-previewer .background-changer {
  background: #d62828;
}
body.red #fonts .background-changer .triangle,
body.red #custom-previewer .background-changer .triangle {
  border-color: transparent transparent #d62828 transparent;
}
body.red #fonts .slider-group,
body.red #custom-previewer .slider-group {
  border: 2px solid #d62828;
  color: #d62828;
}
body.red #fonts .downloads ul li,
body.red #custom-previewer .downloads ul li {
  color: #000000;
  display: inline-block;
  font-weight: 600;
  margin-right: 20px;
}
body.red #fonts .add-to-cart,
body.red #custom-previewer .add-to-cart {
  background: #d62828 !important;
  color: #ffffff;
}
body.red #fonts .add-to-cart:hover,
body.red #custom-previewer .add-to-cart:hover {
  background: #333;
  color: #ffffff;
}
body.red #fonts .header,
body.red #custom-previewer .header {
  color: #d62828;
}
body.red #fonts .options,
body.red #custom-previewer .options {
  border: 1px solid #d62828;
  color: #d62828;
}
body.red #fonts .options.active,
body.red #fonts .options.perma-active,
body.red #custom-previewer .options.active,
body.red #custom-previewer .options.perma-active {
  background: #d62828;
  color: #ffffff;
}
body.red #fonts .description,
body.red #custom-previewer .description {
  color: #d62828;
}
body.red #fonts .text-preview,
body.red #custom-previewer .text-preview {
  color: #d62828;
}
body.red #fonts .custom-select-field,
body.red #custom-previewer .custom-select-field {
  border: 2px solid #d62828;
  color: #d62828;
}
body.red #fonts .custom-select-field .options,
body.red #custom-previewer .custom-select-field .options {
  color: #d62828 !important;
}
body.red #fonts .license-hover,
body.red #custom-previewer .license-hover {
  background: #f9e4e4 !important;
  border: 1px solid #7d7d7d !important;
  color: #000000 !important;
}
body.red .dynamic-grid {
  border-bottom-color: #d62828;
  border-top-color: #d62828;
}
body.red .dynamic-grid-cell .dynamic-grid-inner {
  border-bottom-color: #d62828;
}
body.red .dynamic-grid-cell .field-title {
  color: #d62828;
}
body.red .dynamic-grid-cell .field-value {
  color: #d62828;
}
@media (max-width: 991px) {
  body.red .dynamic-grid-cell:nth-last-child(3) .dynamic-grid-inner {
    border-bottom-color: #d62828;
  }
}
body.red .dynamic-grid-separator {
  background: #d62828;
}
body.red footer {
  border-top-color: #d62828;
}
body.red footer .container {
  color: #d62828;
}
body.red footer .social-button a,
body.red footer .other-button a {
  color: #d62828;
}
body.red footer .social-button a:hover,
body.red footer .other-button a:hover {
  color: #d62828;
}
body.red hr {
  border-top-color: #d62828;
}
body.red .ro-select-wrapper {
  border-radius: 5px !important;
}
body.red .ro-select-caret {
  color: #d62828 !important;
}
body.red .ro-select-text {
  border: 0 !important;
  color: #d62828 !important;
}
body.red .navigation-link a {
  color: #d62828;
}
body.red #seeOurServices .card {
  border-color: #d62828;
}
body.red #seeOurServices .card-header {
  background: #d62828;
  color: #ffffff;
}
body.red #seeOurServices .card .jump-button {
  background: #d62828;
  border-bottom-color: #b10d0d;
  color: #ffffff;
}
body.red #seeOurServices .card .jump-button:hover {
  opacity: 75%;
}

body.yellow .to-top {
  background: #000000;
}
body.yellow .to-top:hover {
  background: #777777;
}
body.yellow .navbar {
  border-bottom-color: #000000;
}
body.yellow .font-highlight__button--white {
  border-color: #000000;
  color: #000000;
}
body.yellow hr {
  border-top: 2px solid #000000;
}
body.yellow #trials .contact-us label {
  color: #000000;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
}
body.yellow #trials .contact-us input,
body.yellow #trials .contact-us textarea,
body.yellow #trials .contact-us button {
  background: #000000;
  border: 0;
  color: #ffffff;
  padding: 8px 12px;
  width: 100%;
}
body.yellow #trials .contact-us button {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 10px;
}
body.yellow #fonts .previewer__toolbar .slider input[type=range],
body.yellow #custom-previewer .previewer__toolbar .slider input[type=range] {
  background: #000000;
}
body.yellow #fonts .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb,
body.yellow #custom-previewer .previewer__toolbar .slider input[type=range]::-webkit-slider-thumb {
  background-color: #c3e71c;
  border: 2px solid #000000;
}
body.yellow #fonts .previewer__toolbar .slider input[type=range]::-moz-range-thumb,
body.yellow #custom-previewer .previewer__toolbar .slider input[type=range]::-moz-range-thumb {
  background-color: #000000;
  border: 2px solid #000000;
}
body.yellow #fonts .slider-size,
body.yellow #custom-previewer .slider-size {
  background: #191919;
  color: #ffffff;
}
body.yellow #fonts .slider-size:after,
body.yellow #custom-previewer .slider-size:after {
  border-right: 7px solid #191919;
}
body.yellow #fonts .ro-select-text,
body.yellow #custom-previewer .ro-select-text {
  border: 2px solid #000000;
  color: #000000;
}
body.yellow #fonts .ro-select-caret,
body.yellow #custom-previewer .ro-select-caret {
  color: #000000 !important;
}
body.yellow #fonts .slider-group,
body.yellow #custom-previewer .slider-group {
  border: 2px solid #000000;
  color: #000000;
}
body.yellow #fonts .downloads ul li,
body.yellow #custom-previewer .downloads ul li {
  color: #000000;
  display: inline-block;
  font-weight: 600;
  margin-right: 20px;
}
body.yellow #fonts .add-to-cart,
body.yellow #custom-previewer .add-to-cart {
  background: #000000;
  color: #ffffff;
}
body.yellow #fonts .add-to-cart:hover,
body.yellow #custom-previewer .add-to-cart:hover {
  background: #333;
  color: #ffffff;
}
body.yellow #fonts .header,
body.yellow #custom-previewer .header {
  color: #000000;
}
body.yellow #fonts .options,
body.yellow #custom-previewer .options {
  border: 1px solid #7d7d7d;
  color: #000000;
}
body.yellow #fonts .options.active,
body.yellow #fonts .options.perma-active,
body.yellow #custom-previewer .options.active,
body.yellow #custom-previewer .options.perma-active {
  background: #000000;
  color: #ffffff;
}
body.yellow #fonts .description,
body.yellow #custom-previewer .description {
  color: #000000;
}
body.yellow #fonts .text-preview,
body.yellow #custom-previewer .text-preview {
  color: #000000;
}
body.yellow #fonts .custom-select-field,
body.yellow #custom-previewer .custom-select-field {
  border: 2px solid #000000;
  color: #000000;
}
body.yellow #fonts .custom-select-field .options,
body.yellow #custom-previewer .custom-select-field .options {
  color: #000000 !important;
}
body.yellow #fonts .ro-select-wrapper,
body.yellow #custom-previewer .ro-select-wrapper {
  border-radius: 5px !important;
}
body.yellow #fonts .ro-select-text,
body.yellow #custom-previewer .ro-select-text {
  border: 0 !important;
}
body.yellow #fonts .license-hover,
body.yellow #custom-previewer .license-hover {
  border: 1px solid #7d7d7d !important;
  color: #000000 !important;
}
body.yellow #fonts .background-changer,
body.yellow #custom-previewer .background-changer {
  background: #000000;
  box-shadow: 0px 0px 3px black;
}
body.yellow #fonts .background-changer .triangle,
body.yellow #custom-previewer .background-changer .triangle {
  border-color: transparent transparent #000000 transparent;
}
body.yellow footer {
  border-top-color: #000000;
}
body.yellow footer .container {
  color: #000000;
}
body.yellow footer .social-button a,
body.yellow footer .other-button a {
  color: #000000;
}
body.yellow footer .social-button a:hover,
body.yellow footer .other-button a:hover {
  color: #404040;
}
body.yellow .navigation-link a {
  color: #000000;
}
