@charset "UTF-8";
/*
Description: OC 2020
Version: 1.0.0
Author: Hakan Kamci
Author URI: hkamci@gmail.com
*/
:root {
  --first: #866CAF;
  --second: #81B140;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**/
.bg-white {
  background-color: #fff !important;
}

.bg-color-light-gray {
  background-color: rgba(17, 17, 17, 0.2) !important;
}

.bg-color-mid-gray {
  background-color: rgba(17, 17, 17, 0.5) !important;
}

.bg-color-dark-gray {
  background-color: #595959 !important;
}

.bg-color-p {
  background-color: var(--first) !important;
}

.bg-color-s {
  background-color: var(--second) !important;
}

.bg-red {
  background-color: #D70909 !important;
}

.text-white {
  color: #fff !important;
}

.text-color-p {
  color: var(--first) !important;
}

.text-color-s {
  color: var(--second) !important;
}

.text-black {
  color: #111 !important;
}

.text-green {
  color: #81B140 !important;
}

.text-red {
  color: #D70909 !important;
}

.text-light-gray {
  color: rgba(17, 17, 17, 0.2) !important;
}

.text-mid-gray {
  color: rgba(17, 17, 17, 0.5) !important;
}

.text-dark-gray {
  color: #595959 !important;
}

a {
  color: var(--first);
  text-decoration: none;
}

a:hover {
  color: var(--second);
}

a:focus {
  outline: 0;
}

a.link-p {
  color: var(--first);
}

a.link-p:hover {
  color: var(--second);
}

a.link-s {
  color: var(--second);
}

a.link-s:hover {
  color: var(--first);
}

a.link-black {
  color: #111;
}

a.link-black:hover {
  color: var(--first);
}

a.link-mid-gray {
  color: rgba(17, 17, 17, 0.5);
}

a.link-mid-gray:hover {
  color: var(--first);
}

a.underlined {
  border-bottom: thin solid #fcd3d5;
  transition: all 0.3s ease-out;
}

a.underlined:hover {
  color: var(--first);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe, object, embed {
  max-width: 100%;
  display: block;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**/
.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-flex.row {
  flex-flow: row wrap;
}

.d-flex.col {
  flex-flow: column wrap;
}

.d-flex.column {
  flex-flow: column wrap;
}

.d-flex.align-center {
  align-items: center;
}

.d-flex.align-start {
  align-items: flex-start;
}

.d-flex.align-end {
  align-items: flex-end;
}

.d-flex.justify-center {
  justify-content: center;
}

.d-flex.justify-space {
  justify-content: space-between;
}

.d-flex.justify-around {
  justify-content: space-around;
}

.d-flex.justify-end {
  justify-content: flex-end;
}

.d-flex.justify-start {
  justify-content: flex-start;
}

.flex-grow-vert {
  flex: 1 0 auto;
}

.oocs-col-1 {
  width: 100%;
}

.oocs-col-2 {
  width: 48%;
  margin: 0 1%;
}

@media (max-width: 48em) {
  .oocs-col-2 {
    width: 100%;
    margin: 0 0 4%;
  }
}

.oocs-col-3 {
  width: calc(100% / 3);
}

@media (max-width: 48em) {
  .oocs-col-3 {
    width: 100%;
    margin: 0 0 4%;
  }
}

.oocs-col-1-3 {
  width: calc(100% / 3);
}

@media (max-width: 37.5em) {
  .oocs-col-1-3 {
    width: 100%;
  }
}

.oocs-col-2-3 {
  width: calc(100% / 3 * 2);
}

@media (max-width: 37.5em) {
  .oocs-col-2-3 {
    width: 100%;
  }
}

.oocs-col-1-4 {
  width: calc(100% / 12 * 3);
}

@media (max-width: 37.5em) {
  .oocs-col-1-4 {
    width: 100%;
  }
}

.oocs-col-3-4 {
  width: calc(100% / 12 * 9);
}

@media (max-width: 37.5em) {
  .oocs-col-3-4 {
    width: 100%;
  }
}

.oocs-col-7 {
  width: calc(100% / 12 * 7);
}

@media (max-width: 37.5em) {
  .oocs-col-7 {
    width: 100%;
  }
}

.oocs-col-5 {
  width: calc(100% / 12 * 5);
}

@media (max-width: 37.5em) {
  .oocs-col-5 {
    width: 100%;
  }
}

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

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

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

.min-height-100 {
  min-height: 100vh;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1000;
}

:root {
  --first: #866CAF;
  --second: #81B140;
}

.btn {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 16px 24px;
  outline: 0;
  border: 0;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  transition: all 0.3s ease-out;
}

.btn.small {
  font-size: 14px;
  padding: 8px 12px;
}

.btn.color-p {
  background-color: var(--first);
  color: #fff;
}

.btn.color-p:hover {
  background-color: var(--second);
  color: #fff;
}

.btn.color-s {
  background-color: var(--second);
  color: white;
}

.btn.color-s:hover {
  background-color: var(--first);
  color: #fff;
}

.btn.color-black {
  background-color: #111;
  color: white;
}

.btn.color-black:hover {
  background-color: var(--first);
  color: white;
}

.btn.color-dark-gray {
  background-color: #595959;
  color: #fff;
}

.btn.color-dark-gray:hover {
  background-color: #111;
  color: white;
}

.btn.color-mid-gray {
  background-color: rgba(17, 17, 17, 0.5);
  color: #fff;
}

.btn.color-mid-gray:hover {
  background-color: #111;
  color: white;
}

.btn.color-light-gray {
  background-color: rgba(17, 17, 17, 0.2);
  color: #111;
}

.btn.color-light-gray:hover {
  background-color: rgba(17, 17, 17, 0.5);
  color: white;
}

.btn.color-white {
  background-color: #fff;
  color: var(--first);
}

.btn.color-white:hover {
  background-color: #111;
  color: #fff;
}

.btn.color-green {
  background-color: #81B140;
  color: #fff;
}

.btn.color-green:hover {
  background-color: #81B140;
  color: #fff;
}

.btn .btn-text {
  font-family: "Quicksand", sans-serif;
}

.btn-block {
  display: flex !important;
  justify-content: center;
  width: 100%;
}

.btn-w-icon {
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
}

.btn-w-icon .btn-icon {
  margin-right: 8px;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-border {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  padding: calc(1rem - 2px);
  outline: 0;
  border: 1.5px solid #111;
  border-radius: 4px;
  background: #fff;
  color: #111;
}

.btn-border:hover {
  transition: all 0.3s ease-out;
}

.btn-border.small {
  font-size: 14px;
  padding: calc(.5rem - 2px);
}

.btn-border.color-p {
  border-color: var(--first);
  color: var(--first);
}

.btn-border.color-p:hover {
  background-color: var(--first);
  color: #fff;
}

.btn-border.color-s {
  border-color: var(--second);
  color: var(--second);
}

.btn-border.color-s:hover {
  background-color: var(--second);
  color: var(--first);
  border-color: var(--second);
}

.btn-border.color-mid-gray {
  border-color: rgba(17, 17, 17, 0.5);
  color: rgba(17, 17, 17, 0.5);
}

.btn-border.color-mid-gray:hover {
  background-color: #111;
  color: #fff;
  border-color: #111;
}

.btn-border.color-dark-gray {
  border-color: #595959;
  color: #595959;
}

.btn-border.color-dark-gray:hover {
  background-color: #111;
  color: #fff;
  border-color: #111;
}

.btn-border.color-light-gray {
  border-color: rgba(17, 17, 17, 0.2);
  color: #595959;
}

.btn-border.color-light-gray:hover {
  background-color: #111;
  color: #fff;
  border-color: #111;
}

.btn-border i {
  font-size: 22px;
}

.btn-disabled {
  opacity: .25;
  cursor: not-allowed;
}

.btn-disabled.color-p:hover {
  background-color: var(--first);
  color: #111;
}

.table-act-button {
  opacity: .75;
  transition: all 0.3s ease-out;
  display: block;
}

.table-act-button:hover {
  opacity: 1;
}

.table-act-button:hover img {
  filter: invert(12%) sepia(13%) saturate(6744%) hue-rotate(239deg) brightness(94%) contrast(99%);
}

.oocs-toast {
  padding: 20px;
  font-weight: 600;
  color: #fff;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10000;
  border-radius: 8px;
}

.oocs-toast.green {
  background-color: #81B140;
}

.oocs-toast.red {
  background-color: #D70909;
}

.m-auto {
  margin: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-025 {
  margin-top: 0.25rem !important;
}

.mb-025 {
  margin-bottom: 0.25rem !important;
}

.ml-025 {
  margin-left: 0.25rem !important;
}

.mr-025 {
  margin-right: 0.25rem !important;
}

.mt-05 {
  margin-top: 0.5rem !important;
}

.mb-05 {
  margin-bottom: 0.5rem !important;
}

.ml-05 {
  margin-left: 0.5rem !important;
}

.mr-05 {
  margin-right: 0.5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.p-05 {
  padding: 0.5rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-05 {
  padding-top: 0.5rem !important;
}

.pr-05 {
  padding-right: 0.5rem !important;
}

.pb-05 {
  padding-bottom: 0.5rem !important;
}

.pl-05 {
  padding-left: 0.5rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100vh;
}

.hr {
  margin: 2em 0;
  height: 1px;
  width: 100%;
  background: var(--second);
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.bordered {
  border: 1px solid rgba(17, 17, 17, 0.2) !important;
}

.border-t {
  border-top: 1px solid rgba(17, 17, 17, 0.2) !important;
}

.border-b {
  border-bottom: 1px solid rgba(17, 17, 17, 0.2) !important;
}

.border-l {
  border-left: 1px solid rgba(17, 17, 17, 0.2) !important;
}

.border-r {
  border-right: 1px solid rgba(17, 17, 17, 0.2) !important;
}

.borderless {
  border: 0 !important;
}

.br-4 {
  border-radius: 4px !important;
}

.br-6 {
  border-radius: 6px !important;
}

.br-8 {
  border-radius: 8px !important;
}

.br-10 {
  border-radius: 10px !important;
}

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

html {
  font-size: 16px;
}

html.html-no-scroll {
  overflow-y: hidden;
  overscroll-behavior: none;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: #F9F9F9;
  color: #212529;
  line-height: 1.5;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: none;
}

body.body-no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: 'Quicksand', sans-serif;
  font-display: swap;
  color: #111;
}

h1,
.h1 {
  font-size: 2.074rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 1.728rem;
}

h3,
.h3 {
  font-size: 1.44rem;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.2rem;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: .833rem;
}

p:not(:last-child) {
  margin-bottom: 1.5rem;
}

i {
  font-style: italic;
}

b {
  font-weight: bold;
}

blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 20px;
  max-width: calc(100% - 54px);
  line-height: 1.4;
  position: relative;
  margin: 0;
  padding: 0 0 0 46px;
  margin: 32px 0;
  z-index: 1;
}

blockquote:before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -16px;
  z-index: 0;
  color: var(--second);
  font-size: 100px;
  line-height: 1;
  font-family: Georgia;
  font-style: normal;
  width: 50px;
  height: 50px;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.bold,
strong {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-not-uppercase {
  text-transform: initial !important;
}

.text-underline {
  text-decoration: underline !important;
}

ul.unordered {
  list-style: disc;
  list-style-position: inside;
}

ul.unordered li {
  margin-bottom: 10px;
}

.text-12 {
  font-size: 12px !important;
}

.text-14 {
  font-size: 14px !important;
}

.text-16 {
  font-size: 16px !important;
}

.text-bold-space {
  font-weight: 700;
  letter-spacing: .04em;
}

.text-18 {
  font-size: 18px !important;
}

.text-20 {
  font-size: 20px !important;
}

.text-24 {
  font-size: 24px !important;
}

.text-32 {
  font-size: 32px !important;
}

.text-404 {
  font-size: 18rem;
  font-weight: 400;
  color: var(--first);
}

@media (max-width: 48em) {
  .text-404 {
    font-size: 10rem;
  }
}

.lh-1 {
  line-height: 1;
}

.lh-1-3 {
  line-height: 1.3;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.str-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.op-50 {
  opacity: .5;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

@font-face {
  font-family: 'oocs';
  src: url("../fonts/oocs.eot?p9ew6c");
  src: url("../fonts/oocs.eot?p9ew6c#iefix") format("embedded-opentype"), url("../fonts/oocs.ttf?p9ew6c") format("truetype"), url("../fonts/oocs.woff?p9ew6c") format("woff"), url("../fonts/oocs.svg?p9ew6c#oocs") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'oocs' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
  content: "\e912";
}

.icon-email:before {
  content: "\e910";
}

.icon-users:before {
  content: "\e911";
}

.icon-eye:before {
  content: "\e90e";
}

.icon-eye-invisible:before {
  content: "\e90f";
}

.icon-trash:before {
  content: "\e90d";
}

.icon-edit:before {
  content: "\e90c";
}

.icon-mobile-menu:before {
  content: "\e90b";
}

.icon-check:before {
  content: "\e900";
}

.icon-close:before {
  content: "\e901";
}

.icon-doc:before {
  content: "\e902";
}

.icon-docs:before {
  content: "\e903";
}

.icon-down:before {
  content: "\e904";
}

.icon-excel:before {
  content: "\e905";
}

.icon-jpg:before {
  content: "\e906";
}

.icon-logout:before {
  content: "\e907";
}

.icon-pdf:before {
  content: "\e908";
}

.icon-plus:before {
  content: "\e909";
}

.icon-settings:before {
  content: "\e90a";
}

.form-label {
  display: block;
  line-height: 1;
  user-select: none;
  margin-bottom: .5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

fieldset {
  position: relative;
}

fieldset .icon-link {
  position: absolute;
  right: 10px;
  bottom: 12px;
  z-index: 1;
  color: #111;
  font-size: 24px;
}

fieldset .form-input.with-icon-link {
  width: calc(100% - 24px);
}

/**
  * Component Element
  */
.form-input,
.form-textarea,
.form-select {
  background-color: #fff;
  border: thin solid rgba(17, 17, 17, 0.2);
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  outline: none;
  outline-style: none;
  padding: 14px;
  position: relative;
  width: 100%;
  -webkit-appearance: none;
}

.form-input.w-border,
.form-textarea.w-border,
.form-select.w-border {
  border: 1px solid var(--second);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border: 2px solid #D70909;
}

.form-input.small,
.form-textarea.small,
.form-select.small {
  padding: 9px 10px;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 10px;
  padding-right: 30px;
  padding: 14px 30px 14px 12px;
  font-weight: 400;
}

.form-select:after {
  color: #000;
  content: '▾';
  display: block;
  height: 14px;
  position: absolute;
  right: 24px;
  top: 26px;
  width: 14px;
}

.form-textarea {
  font-size: 16px;
  min-height: 140px;
  line-height: 1.6;
}

.file-upload {
  position: relative;
  display: inline-block;
}

.file-upload .file-upload__label {
  display: block;
  padding: 12px 30px;
  color: var(--first);
  background: var(--second);
  border-radius: 4px;
  transition: background .3s;
}

.file-upload .file-upload__label:hover {
  cursor: pointer;
  background: var(--first);
  color: var(--second);
}

.file-upload .file-upload__input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 1;
  width: 0;
  height: 100%;
  opacity: 0;
}

.file-upload.disabled {
  opacity: .5;
  cursor: default;
}

.file-upload.disabled .file-upload__label:hover {
  cursor: default;
  color: var(--first);
  background: var(--second);
}

.form-radio,
.form-checkbox {
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: #fff;
  border: thin solid rgba(17, 17, 17, 0.2);
  color: #666;
  top: 10px;
  height: 24px;
  width: 24px;
  border-radius: 0;
  cursor: pointer;
  margin-right: 7px;
  outline: none;
  transition: all 0.3s ease-out;
}

.form-radio:checked::before,
.form-checkbox:checked::before {
  position: absolute;
  left: 6px;
  top: 1px;
  content: '\02143';
  transform: rotate(40deg);
}

.form-radio:hover,
.form-checkbox:hover {
  border-color: rgba(17, 17, 17, 0.5);
}

.form-radio:checked,
.form-checkbox:checked {
  background-color: var(--second);
  border-color: var(--second);
  color: #fff;
  z-index: 2;
}

.form-radio {
  border: 2px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  top: 6px;
  transition: all 0.3s ease-out;
}

.form-radio:before {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}

.form-radio:checked {
  background-color: transparent;
  border-color: rgba(17, 17, 17, 0.2);
  color: #fff;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.form-radio:checked:before {
  content: "";
  background: var(--second);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  border-radius: 3px;
}

.error-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #D70909;
  margin-top: .25rem;
}

button {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
}

button:focus {
  outline: 0;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.oocs-zebra-table {
  width: 100%;
}

.oocs-zebra-table tr:nth-child(even) {
  background: #F9F9F9;
}

.oocs-zebra-table th, .oocs-zebra-table td {
  padding: 10px;
  vertical-align: middle;
}

.oocs-zebra-table th:last-child, .oocs-zebra-table td:last-child {
  text-align: right;
}

.oocs-zebra-table th a [class^="icon-"], .oocs-zebra-table th a [class*=" icon-"], .oocs-zebra-table td a [class^="icon-"], .oocs-zebra-table td a [class*=" icon-"] {
  font-size: 24px;
  color: rgba(var(--first), 0.7);
  transition: all 0.3s ease-out;
}

.oocs-zebra-table th a [class^="icon-"]:hover, .oocs-zebra-table th a [class*=" icon-"]:hover, .oocs-zebra-table td a [class^="icon-"]:hover, .oocs-zebra-table td a [class*=" icon-"]:hover {
  color: var(--first);
}

.oocs-zebra-table th {
  font-weight: 600;
  color: var(--first);
  letter-spacing: 1px;
}

@media (max-width: 48em) {
  .oocs-zebra-table th {
    display: none;
  }
  .oocs-zebra-table td {
    display: block;
    width: 100% !important;
    text-align: left !important;
  }
}

.oocs-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1050;
  font-size: 48px;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #ffffff;
  background: transparent;
  width: 48px;
  height: 48px;
}

.oocs-close:hover,
.oocs-close:focus {
  color: #111;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}

button.oocs-close {
  padding: 0;
  cursor: pointer;
  border: 0;
}

.oocs-modal-open {
  overflow: hidden;
}

.oocs-modal {
  font-size: 16px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none;
  height: 100%;
  width: 100%;
  z-index: 1040;
  overflow: auto;
  overflow-y: scroll;
  visibility: hidden;
  display: table;
}

.oocs-modal.in {
  visibility: visible;
}

.oocs-modal.fade .oocs-modal-dialog {
  opacity: 0;
  transform: scale(0.8) translateZ(0);
  transition: all 250ms;
}

.oocs-modal.in .oocs-modal-dialog {
  opacity: 1;
  transform: scale(1) translateZ(0);
}

.oocs-modal-dialog {
  z-index: 1050;
  display: table-cell;
  vertical-align: middle;
}

.oocs-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  outline: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  background-clip: border-box;
  width: 50%;
  max-width: 800px;
  min-width: 320px;
  margin: auto;
  max-height: 80vh;
  overflow: auto;
  padding: 30px 40px;
}

@media (max-width: 37.5em) {
  .oocs-modal-content {
    padding: 10px 15px;
    width: 90vw;
  }
}

.oocs-modal-content .icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border: 10px solid var(--first);
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--first);
}

.oocs-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: var(--first);
  visibility: hidden;
  transition: all 250ms;
}

.oocs-modal-backdrop.fade {
  opacity: 0;
}

.oocs-modal-backdrop.in {
  opacity: .8;
  visibility: visible;
}

.oocs-modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.oocs-modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.oocs-modal-body {
  position: relative;
}

@media (max-width: 37.5em) {
  .oocs-modal-body {
    padding: 20px 0;
  }
}

.oocs-header {
  background: #fff;
  width: calc(100% - 300px);
  height: 80px;
  display: flex;
  align-items: center;
  margin-left: 300px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  transition: all 0.3s ease-out;
}

@media (max-width: 48em) {
  .oocs-header {
    margin-left: 0;
    width: 100%;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
    height: 60px;
  }
}

.oocs-mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: #111;
}

@media (max-width: 48em) {
  .oocs-mobile-menu-btn {
    display: block;
  }
}

.oocs-footer {
  margin-left: 300px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  border-radius: 4px;
  margin: 40px 0 0;
  font-size: 14px;
}

@media (max-width: 48em) {
  .oocs-footer {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

.oocs-left-sidebar {
  background: var(--first);
  width: 300px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  margin-top: -80px;
  min-height: 100vh;
  padding-bottom: 40px;
  display: flex;
  flex-flow: column nowrap;
  transition: all 0.3s ease-out;
}

.oocs-left-sidebar-header {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.oocs-left-sidebar-header-name {
  margin: 10px auto;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  color: var(--first);
  font-weight: 600;
}

@media (max-width: 48em) {
  .oocs-left-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    left: -100%;
    margin-top: 0;
    z-index: 120;
  }
  .oocs-left-sidebar.opened {
    left: 0;
  }
}

.oocs-left-sidebar-main-menu li:not(:last-child),
.oocs-left-sidebar-user-menu li:not(:last-child) {
  margin-bottom: 8px;
}

.oocs-left-sidebar-main-menu li span,
.oocs-left-sidebar-user-menu li span {
  margin-right: 10px;
  font-size: 24px;
}

.oocs-left-sidebar-main-menu li a,
.oocs-left-sidebar-user-menu li a {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  position: relative;
}

.oocs-left-sidebar-main-menu li a:after,
.oocs-left-sidebar-user-menu li a:after {
  content: "";
  background: #F9F9F9;
  border-left: 0px solid #F9F9F9;
  width: 0%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease-out;
}

.oocs-left-sidebar-main-menu li a:hover, .oocs-left-sidebar-main-menu li a.active,
.oocs-left-sidebar-user-menu li a:hover,
.oocs-left-sidebar-user-menu li a.active {
  color: var(--first);
}

.oocs-left-sidebar-main-menu li a:hover span, .oocs-left-sidebar-main-menu li a.active span,
.oocs-left-sidebar-user-menu li a:hover span,
.oocs-left-sidebar-user-menu li a.active span {
  color: var(--second);
}

.oocs-left-sidebar-main-menu li a:hover:after, .oocs-left-sidebar-main-menu li a.active:after,
.oocs-left-sidebar-user-menu li a:hover:after,
.oocs-left-sidebar-user-menu li a.active:after {
  width: 100%;
  border-left: 8px solid var(--second);
}

.oocs-left-sidebar-main-menu-sub,
.oocs-left-sidebar-user-menu-sub {
  margin: 10px 0;
}

.oocs-left-sidebar-main-menu-sub li a,
.oocs-left-sidebar-user-menu-sub li a {
  padding: 4px 20px 4px 54px;
}

.oocs-left-sidebar-main-menu-sub li a span,
.oocs-left-sidebar-user-menu-sub li a span {
  font-size: 14px;
}

.oocs-left-sidebar-main-menu {
  margin-bottom: 2rem;
}

@media (max-width: 48em) {
  .oocs-left-sidebar-main-menu {
    margin-bottom: 3rem;
  }
}

.oocs-left-sidebar-user-menu {
  margin-top: auto;
}

.oocs-left-sidebar-user-menu li:first-child {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 20px 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.oocs-mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 1.5rem;
  display: none;
}

@media (max-width: 48em) {
  .oocs-mobile-menu-close {
    display: block;
  }
}

.oocs-overlay-mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 110;
  background: var(--first);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}

.oocs-overlay-mobile-menu.opened {
  opacity: .8;
  pointer-events: all;
}

.oocs-sign-in-up-outer {
  background: var(--first);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.oocs-sign-in-up-box {
  min-width: 480px;
  max-width: 480px;
  margin: 40px auto;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.2);
}

@media (max-width: 48em) {
  .oocs-sign-in-up-box {
    width: 90vw;
  }
}

.oocs-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 32px;
}

.oocs-wrapper.oocs-wrapper-full {
  max-width: 100%;
}

@media (max-width: 64em) {
  .oocs-wrapper {
    padding: 0 20px;
  }
}

.oocs-main-content {
  width: calc(100% - 380px);
  margin: 40px;
}

@media (max-width: 48em) {
  .oocs-main-content {
    width: calc(100% - 32px);
    margin: 16px;
  }
}

.oocs-main-content-white-box {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(var(--first), 0.3);
}

@media (max-width: 48em) {
  .oocs-main-content-white-box {
    padding: 16px;
    border-radius: 6px;
  }
}

.oocs-welcome-img {
  border-radius: 10px;
}

.oocs-add-new-author-form,
.oocs-added-new-author {
  padding: 20px 0;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-width: 1px 0;
  margin-bottom: 2px;
}

.oocs-new-abstract-keyword {
  padding: 10px;
  background: rgba(17, 17, 17, 0.2);
  color: #111;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-right: .5rem;
  margin-bottom: .5rem;
}

.oocs-new-abstract-keyword a {
  color: rgba(17, 17, 17, 0.5);
}

.oocs-new-abstract-add-files {
  position: relative;
  background: #F9F9F9;
  border: 3px dashed rgba(17, 17, 17, 0.2);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oocs-new-abstract-add-files input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.oocs-pagination {
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.oocs-pagination li {
  margin: 0 6px;
}

.oocs-pagination a {
  padding: 4px;
  background: rgba(17, 17, 17, 0.2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: black;
  transition: all 0.3s ease-out;
}

.oocs-pagination a:hover {
  background: var(--second);
  color: #fff;
}

.oocs-pagination a.active {
  background: var(--first);
  font-weight: 600;
  color: #fff;
}

.box-green {
    background: greenyellow;
    padding: 5px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    width: 200px;
}

.box-red {
    background: red;
    color: white;
    padding: 5px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
}

.box-dark-gray {
    background: gray;
    color: white;
    padding: 5px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
}

.box-cadetblue {
    background: cadetblue;
    color: white;
    padding: 5px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
}