@import "ot_buttons.css";
@import "ot_carousel.css";
@import "ot_sticky.css";
@import "ot_datetime.css";
@import "ot_drawer.css";
@import "ot_icons.css";
@import "ot_picture_uploader.css";
@import "ot_popup.css";
@import "ot_spinner.css";
@import "ot_page_transition.css";
@import "ot_tongue.css";
@import "ot_form.css";
@font-face {
  font-family: "Bona Nova";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/BonaNova-Italic.woff2) format("woff2");
}
@font-face {
  font-family: "Bona Nova";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/BonaNova-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Bona Nova";
  font-style: bold;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/BonaNova-Bold.woff2) format("woff2");
}
html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-size: 15px;
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

body, input, textarea, keygen, select, button {
  font-family: "Bona Nova";
}

a, a:visited {
  text-decoration: none;
  color: #2563eb;
  cursor: pointer;
  transition: color 0.15s ease;
}
a:hover, a:visited:hover {
  color: #1d4ed8;
}

button, input {
  border: none;
}

button, input[type=submit], input[type=button] {
  cursor: pointer;
}

.button {
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #2563eb;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 5px;
  border: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.button:hover {
  background-color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

input {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.connected-user-box {
  display: flex;
  align-items: center;
}
.connected-user-box .fa-user {
  height: 50px;
  width: 50px;
  font-size: 22px;
}
.connected-user-box .fa-user::before {
  line-height: 50px;
}

.os-page-header {
  position: fixed;
  top: 0;
  z-index: 1;
  height: 56px;
  width: 100%;
  background-color: #1e293b;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 0 24px 0 50px;
}
.os-page-header .connected-user-box {
  color: white;
}

a.os-page-header-app-name {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.ot-dr-toggle-button {
  color: white;
}

.os-drawer-menu {
  padding: 0;
  margin: 0;
  overflow-y: auto;
  height: 100%;
  touch-action: pan-y;
}
.os-drawer-menu, .os-drawer-menu ul {
  list-style-type: none;
}
.os-drawer-menu .os-drawer-item {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  transition: background-color 0.15s ease;
}
.os-drawer-menu a:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: #2563eb;
}
.os-drawer-menu .connected-user-box {
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 20px;
}

.os-drawer-submenu {
  padding: 0;
}
.os-drawer-submenu > li > a {
  display: block;
  padding: 8px 8px 8px 50px;
  font-size: 14px;
  color: #64748b;
}

.os-body {
  padding: 72px 24px 40px;
  margin: 0 auto;
}

.os-page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  font-size: 11px;
  text-align: center;
}
.os-page-footer a, .os-page-footer a:visited {
  color: rgba(255, 255, 255, 0.8);
}
.os-page-footer a:hover, .os-page-footer a:visited:hover {
  color: white;
}

/* --- Login / Sign-up / Forgot-password popup forms --- */
.os-welcome-box h2, .os-sign-in h2, .os-sign-up h2, .os-forgot-pwd h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1e293b;
}
.os-welcome-box form, .os-welcome-box .form-like, .os-sign-in form, .os-sign-in .form-like, .os-sign-up form, .os-sign-up .form-like, .os-forgot-pwd form, .os-forgot-pwd .form-like {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  background-color: white;
  padding: 12px 0;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  gap: 6px;
}
.os-welcome-box input[type=checkbox], .os-sign-in input[type=checkbox], .os-sign-up input[type=checkbox], .os-forgot-pwd input[type=checkbox] {
  vertical-align: middle;
}
.os-welcome-box input[type=submit], .os-welcome-box button:not(.ot-password-toggle), .os-sign-in input[type=submit], .os-sign-in button:not(.ot-password-toggle), .os-sign-up input[type=submit], .os-sign-up button:not(.ot-password-toggle), .os-forgot-pwd input[type=submit], .os-forgot-pwd button:not(.ot-password-toggle) {
  margin: 12px 0 4px;
  padding: 10px 24px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.15s ease;
}
.os-welcome-box input[type=submit]:hover, .os-welcome-box button:not(.ot-password-toggle):hover, .os-sign-in input[type=submit]:hover, .os-sign-in button:not(.ot-password-toggle):hover, .os-sign-up input[type=submit]:hover, .os-sign-up button:not(.ot-password-toggle):hover, .os-forgot-pwd input[type=submit]:hover, .os-forgot-pwd button:not(.ot-password-toggle):hover {
  background-color: #1d4ed8;
}
.os-welcome-box input[type=text], .os-welcome-box input[type=password],
.os-welcome-box input[type=email], .os-welcome-box input[type=tel], .os-sign-in input[type=text], .os-sign-in input[type=password],
.os-sign-in input[type=email], .os-sign-in input[type=tel], .os-sign-up input[type=text], .os-sign-up input[type=password],
.os-sign-up input[type=email], .os-sign-up input[type=tel], .os-forgot-pwd input[type=text], .os-forgot-pwd input[type=password],
.os-forgot-pwd input[type=email], .os-forgot-pwd input[type=tel] {
  width: 100%;
  display: block;
  margin: 4px 0;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f8fafc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.os-welcome-box input[type=text]:focus, .os-welcome-box input[type=password]:focus,
.os-welcome-box input[type=email]:focus, .os-welcome-box input[type=tel]:focus, .os-sign-in input[type=text]:focus, .os-sign-in input[type=password]:focus,
.os-sign-in input[type=email]:focus, .os-sign-in input[type=tel]:focus, .os-sign-up input[type=text]:focus, .os-sign-up input[type=password]:focus,
.os-sign-up input[type=email]:focus, .os-sign-up input[type=tel]:focus, .os-forgot-pwd input[type=text]:focus, .os-forgot-pwd input[type=password]:focus,
.os-forgot-pwd input[type=email]:focus, .os-forgot-pwd input[type=tel]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}
.os-welcome-box label, .os-sign-in label, .os-sign-up label, .os-forgot-pwd label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
}
.os-welcome-box .ot-password-container, .os-sign-in .ot-password-container, .os-sign-up .ot-password-container, .os-forgot-pwd .ot-password-container {
  width: 100%;
  margin: 4px 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f8fafc;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.os-welcome-box .ot-password-container:focus-within, .os-sign-in .ot-password-container:focus-within, .os-sign-up .ot-password-container:focus-within, .os-forgot-pwd .ot-password-container:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}
.os-welcome-box .ot-password-container input[type=password], .os-welcome-box .ot-password-container input[type=text], .os-sign-in .ot-password-container input[type=password], .os-sign-in .ot-password-container input[type=text], .os-sign-up .ot-password-container input[type=password], .os-sign-up .ot-password-container input[type=text], .os-forgot-pwd .ot-password-container input[type=password], .os-forgot-pwd .ot-password-container input[type=text] {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.os-welcome-box .ot-password-container input[type=password]:focus, .os-welcome-box .ot-password-container input[type=text]:focus, .os-sign-in .ot-password-container input[type=password]:focus, .os-sign-in .ot-password-container input[type=text]:focus, .os-sign-up .ot-password-container input[type=password]:focus, .os-sign-up .ot-password-container input[type=text]:focus, .os-forgot-pwd .ot-password-container input[type=password]:focus, .os-forgot-pwd .ot-password-container input[type=text]:focus {
  border: none;
  box-shadow: none;
}
.os-welcome-box .ot-password-container .ot-password-toggle, .os-sign-in .ot-password-container .ot-password-toggle, .os-sign-up .ot-password-container .ot-password-toggle, .os-forgot-pwd .ot-password-container .ot-password-toggle {
  margin: 0;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  padding: 8px 12px;
}

.os-sign-up-btn {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}
.os-sign-up-btn:hover {
  background-color: #1d4ed8;
}

.os-forgot-pwd-link {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
}
.os-forgot-pwd-link:hover {
  color: #2563eb;
}

/* --- Settings page --- */
.os-settings h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1e293b;
}
.os-settings > p {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 24px 0 8px;
}
.os-settings > p:first-child {
  margin-top: 0;
}
.os-settings form, .os-settings .form-like {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  gap: 6px;
  max-width: 480px;
}
.os-settings input[type=checkbox] {
  vertical-align: middle;
}
.os-settings input[type=submit], .os-settings button:not(.ot-password-toggle) {
  margin: 12px 0 4px;
  padding: 10px 24px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.os-settings input[type=submit]:hover, .os-settings button:not(.ot-password-toggle):hover {
  background-color: #1d4ed8;
}
.os-settings input[type=text], .os-settings input[type=password],
.os-settings input[type=email], .os-settings input[type=tel] {
  width: 100%;
  display: block;
  margin: 4px 0;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f8fafc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.os-settings input[type=text]:focus, .os-settings input[type=password]:focus,
.os-settings input[type=email]:focus, .os-settings input[type=tel]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}
.os-settings select {
  width: 100%;
  max-width: 300px;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f8fafc;
  cursor: pointer;
}
.os-settings select:focus {
  outline: none;
  border-color: #3b82f6;
}
.os-settings label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
}
.os-settings .ot-password-container {
  width: 100%;
  margin: 4px 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f8fafc;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.os-settings .ot-password-container:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}
.os-settings .ot-password-container input[type=password], .os-settings .ot-password-container input[type=text] {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.os-settings .ot-password-container input[type=password]:focus, .os-settings .ot-password-container input[type=text]:focus {
  border: none;
  box-shadow: none;
}
.os-settings .ot-password-container .ot-password-toggle {
  margin: 0;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  padding: 8px 12px;
}
.os-settings > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: #2563eb;
  font-size: 14px;
}
.os-settings > a:hover {
  color: #1d4ed8;
}
.os-settings > br {
  display: none;
}

.os-settings-section {
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.os-settings-section > p:first-child {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
}
.os-settings-section form {
  border: none;
  box-shadow: none;
  padding: 0;
}

#os-msg {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 600px;
  padding: 0 16px;
}
#os-msg p {
  padding: 16px 24px;
  text-align: center;
  background-color: rgba(37, 99, 235, 0.95);
  color: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  font-weight: 500;
}
#os-msg p.os-err {
  background-color: rgba(220, 38, 38, 0.95);
  color: white;
}

.os-page-main .os-page-header .os-connection-box {
  position: absolute;
  top: 15px;
  right: 15px;
}

.os-page-main:not(.os-connected) .os-page-header {
  display: block;
  height: 40vh;
  background: linear-gradient(135deg, #1e293b 0%, rgb(50.6292134831, 69.193258427, 99.5707865169) 100%);
}
.os-page-main:not(.os-connected) .os-page-header .os-page-header-app-name {
  display: block;
  position: absolute;
  top: 28vh;
  font-size: 32px;
}
.os-page-main:not(.os-connected) .os-body {
  margin-top: 40vh;
}

@media (max-width: 720px) {
  .os-page-footer {
    display: none;
  }
  .os-page-header .os-connection-box, .os-page-header .os-page-header-app-name, .os-page-header .connected-user-box {
    display: none;
  }
  .os-page-main .os-page-header .os-connection-box {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 45vh;
    left: 0;
    width: 100%;
  }
  .os-page-main .os-page-header .os-connection-box .button {
    width: 150px;
    margin: 16px auto;
  }
  .os-page-main.os-not-connected .os-body {
    display: none;
  }
  .os-page-header {
    display: block;
  }
}
.os-emails {
  text-align: left;
}
.os-emails ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.os-emails ul li {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.os-emails ul li:last-child {
  border-bottom: none;
}
.os-emails ul li .os-settings-label {
  font-weight: 600;
  padding: 3px 10px;
  margin-left: 4px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.os-emails ul li .os-settings-email {
  flex-grow: 2;
  padding-right: 12px;
  font-size: 14px;
}
.os-emails ul li .os-main-email {
  color: #fff;
  background-color: #16a34a;
}
.os-emails ul li .os-validated-email {
  color: #fff;
  background-color: #2563eb;
}
.os-emails ul li .os-remove-email-button {
  box-shadow: none;
  font-size: 16px;
  margin: 0;
  padding: 6px 8px;
  color: #dc2626;
  background: none;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.os-emails ul li .os-remove-email-button:hover {
  background-color: rgba(220, 38, 38, 0.08);
}
.os-emails ul li .button {
  font-size: 12px;
  padding: 5px 12px;
  margin: 0 2px;
}

.os-avatar {
  margin-right: 15px;
  width: 35px;
}

.ot-drawer {
  display: flex;
  flex-direction: column;
}
.ot-drawer .connected-user-box {
  flex-shrink: 0;
}

.ot-dr-left .os-avatar {
  margin-left: 16px;
}

/* --- Popup overrides --- */
.ot-popup {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 16px;
  overflow: visible;
  min-width: 340px;
  max-width: 440px;
}

.ot-popup-close {
  top: 8px;
  right: 8px;
  padding: 8px;
  color: #64748b;
  background: white;
  border-radius: 50%;
  transition: color 0.15s ease, background-color 0.15s ease;
  z-index: 3;
}
.ot-popup-close:hover {
  color: #1e293b;
  background-color: #f8fafc;
}

.ot-popup-content {
  padding: 0;
}

.ot-popup-background {
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

/* Tips */
div.os-tip {
  position: absolute;
  margin: 20px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 1111;
  transition: opacity 0.5s;
}
div.os-tip div.os-tip-bec {
  background-color: white;
  width: 20px;
  height: 20px;
  position: absolute;
  transform: rotate(45deg);
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
  z-index: -1;
}
div.os-tip div.os-tip-content {
  padding: 30px 20px 30px 20px;
  background-color: white;
  height: 100%;
  width: 100%;
}
div.os-tip .os-tip-close {
  position: absolute;
  top: 5px;
  right: 5px;
}
div.os-tip li,
div.os-tip p {
  padding-bottom: 10px;
}

/* This file was generated by Ocsigen Start.
   Feel free to use it, modify it, and redistribute it as you wish.
*/
.demo-carousel1 {
  display: flex;
  justify-content: center;
}
.demo-carousel1 .demo-carousel1-box {
  position: relative;
  margin: auto;
}
.demo-carousel1 .ot-carousel {
  width: 300px;
  height: 200px;
}
.demo-carousel1 .demo-carousel1-page {
  width: 100%;
  height: 100%;
  padding: 16px;
  text-color: #334155;
  background-color: #e2e8f0;
}
.demo-carousel1 .ot-bullet-nav {
  position: absolute;
  bottom: 16px;
  right: 16px;
  margin: 0;
}
.demo-carousel1 .ot-car-prev,
.demo-carousel1 .ot-car-next {
  position: absolute;
  top: 75px;
  width: 50px;
  height: 50px;
  color: #334155;
  outline: none;
  font-size: xx-large;
}
.demo-carousel1 .ot-car-prev {
  left: 0;
}
.demo-carousel1 .ot-car-next {
  right: 0;
}
.demo-carousel1 ul {
  list-style-type: none;
  padding: 1em;
}

.os-page-demo-carousel2 .demo-carousel2 {
  margin: 0 -16px;
}
.os-page-demo-carousel2 .ot-carousel {
  width: 100%;
  height: auto;
}
.os-page-demo-carousel2 .demo-carousel2-page {
  padding: 16px;
}
.os-page-demo-carousel2 .demo-carousel2-page p {
  text-align: justify;
}
.os-page-demo-carousel2 .demo-carousel2-page-1 {
  background-color: white;
}
.os-page-demo-carousel2 .demo-carousel2-page-2 {
  background-color: #ffffee;
}
.os-page-demo-carousel2 .demo-carousel2-page-3 {
  background-color: #ffddee;
}
.os-page-demo-carousel2 .demo-carousel2-page-4 {
  background-color: #ddffee;
}
.os-page-demo-carousel2 .demo-carousel2-tabs {
  position: sticky;
  background-color: white;
  z-index: 1;
  top: 50px;
}

.os-page-demo-carousel3 .demo-prev,
.os-page-demo-carousel3 .demo-next {
  width: 20px;
  height: 20px;
  background-color: #6ae;
  color: white;
}

.os-page-demo-notif input:not([type]),
.os-page-demo-react input:not([type]) {
  background-color: #eee;
}

.os-page-demo-links .demo-static-img {
  width: 300px;
}

.os-page-demo-transition .demo-list {
  padding-left: 0;
  list-style-type: none;
}
.os-page-demo-transition .demo-list-item {
  width: 100%;
  height: 150px;
  font-size: 20px;
  padding-top: 65px;
  text-align: center;
}
.os-page-demo-transition .demo-list-item > a:visited,
.os-page-demo-transition .demo-list-item > a {
  color: white;
}
.os-page-demo-transition .demo-list-item.demo-list-item-0 {
  background-color: #b1eb00;
}
.os-page-demo-transition .demo-list-item.demo-list-item-1 {
  background-color: #53baf3;
}
.os-page-demo-transition .demo-list-item.demo-list-item-2 {
  background-color: #ff85cb;
}
.os-page-demo-transition .demo-list-item.demo-list-item-3 {
  background-color: #f4402c;
}
.os-page-demo-transition .demo-list-item.demo-list-item-4 {
  background-color: #ffac00;
}
.os-page-demo-transition .demo-button {
  margin: 0 auto;
  padding: 20px;
  width: 200px;
  font-size: 20px;
  text-align: center;
  background-color: #ffffee;
}

.demo-tongue {
  display: flex;
  flex-direction: column;
}
.demo-tongue .demo-tongue-1 {
  background-color: #ffffee;
  height: 100px;
}
.demo-tongue .demo-tongue-2 {
  background-color: #ffddee;
  height: 150px;
}
.demo-tongue .demo-tongue-3 {
  background-color: #ddffee;
  height: 80px;
}
.demo-tongue .demo-tongue-4 {
  background-color: #ddeeff;
  height: 200px;
}
.demo-tongue .demo-tongue-5 {
  background-color: #eeccff;
  height: 130px;
}
.demo-tongue .demo-tongue-6 {
  background-color: #ffeeaa;
  height: 300px;
}

.os-page-demo-forms > .os-body .demo-forms-section {
  margin-bottom: 2em;
  padding: 1em 1.2em;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fafafa;
}
.os-page-demo-forms > .os-body .demo-forms-section h3 {
  margin-top: 0;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1em;
}
.os-page-demo-forms > .os-body .demo-forms-output {
  margin: 0.4em 0;
  padding: 0.5em 0.8em;
  background-color: #f0f4f8;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}
.os-page-demo-forms > .os-body input[type=text],
.os-page-demo-forms > .os-body input[type=email],
.os-page-demo-forms > .os-body input[type=number],
.os-page-demo-forms > .os-body input[type=date],
.os-page-demo-forms > .os-body input[type=time],
.os-page-demo-forms > .os-body input[type=password],
.os-page-demo-forms > .os-body textarea,
.os-page-demo-forms > .os-body select {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 0.5em;
  margin: 0.4em 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}
.os-page-demo-forms > .os-body textarea {
  min-height: 80px;
  resize: vertical;
}
.os-page-demo-forms > .os-body .button,
.os-page-demo-forms > .os-body button:not(.ot-password-toggle):not(.ot-toggle-button):not(.ot-form-step-button) {
  padding: 0.5em 1.2em;
  margin: 0.5em 0;
  border: none;
  border-radius: 4px;
  background-color: #4a90d9;
  color: white;
  font-size: 1em;
  cursor: pointer;
}
.os-page-demo-forms > .os-body .button:hover,
.os-page-demo-forms > .os-body button:not(.ot-password-toggle):not(.ot-toggle-button):not(.ot-form-step-button):hover {
  background-color: #3a7bc8;
}
.os-page-demo-forms > .os-body .button:disabled,
.os-page-demo-forms > .os-body button:not(.ot-password-toggle):not(.ot-toggle-button):not(.ot-form-step-button):disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
.os-page-demo-forms > .os-body .ot-password-container {
  max-width: 400px;
}
.os-page-demo-forms > .os-body .ot-password-container input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.os-page-demo-forms > .os-body .ot-password-toggle {
  margin: 0.4em 0;
  border-radius: 0 4px 4px 0;
}

nav.flex {
  display: flex;
  flex-flow: row wrap;
}
nav.flex div {
  min-width: 20em;
  max-width: 30vh;
}
nav.flex div img {
  padding: 1em;
  max-width: 100%;
}

body {
  background-image: url(../images/background.jpg);
}

/*# sourceMappingURL=yt.css.map */
