@import url("components/side-menu.d11323285be3.css");
@import url("components/richtext.180e27e87e93.css");

:root {
  --white-color: 255, 255, 255;
  --variable: rgb(255, 255, 255);

  --black-color: 51, 51, 51;
  --variable: rgb(51, 51, 51);

  --main-color: 58, 100, 150;
  --variable: rgb(58, 100, 150);

  --hover-color: 78, 127, 187;
  --variable: rgb(78, 127, 187);

  --gold-color: 250, 215, 19;
  --variable: rgb(250, 215, 19);

  --gray-color: 162, 165, 173;
  --variable: rgb(162, 165, 173);

  --light-gray-color: 233, 233, 233;
  --variable: rgb(233, 233, 233);

  --light-color: 248, 249, 250;
  --variable: rgb(248, 249, 250);

  --danger-color: 207, 108, 108;
  --variable: rgb(207, 108, 108);

  --succes-color: 207, 108, 108;
  --variable: rgb(207, 108, 108);

}

html,
body {
  overflow-x: hidden;
  background: rgb(var(--light-color), 1);
  /* width: 100%; height: 100%; */
  /* min-width: 100vw; */
  /* min-height: 100vh; */
}

html {
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  transition: .1s;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

svg {
  overflow: visible;
}

img,
svg {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  max-width: 100%;
}

li {
  list-style-position: inside;
}

a,
p {
  margin: 0;
  padding: 0;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
}

a,
a:hover {
  cursor: default;
  color: inherit;
}

a[href] {
  color: rgb(var(--main-color), 1);
}

a[href]:hover {
  cursor: pointer;
  color: rgb(var(--gold-color), 1);
}

::selection {
  background-color: rgb(var(--gold-color), .75);
  color: rgb(var(--white-color), 1);
}

address {
  font-style: normal;
}

/*
SCROLL BAR
*/
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(var(--white-color), 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(var(--main-color), .5);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--main-color), 1);
  border-radius: 2px;
}

.unSelectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html.skeletonLoading *,
html.skeletonLoading *::placeholder {
  color: rgb(var(--white-color), 0) !important;
  background: rgb(var(--gray-color), .25) !important;
  border: none !important;
  animation: skeletonLoading 1s infinite alternate;
}

html.skeletonLoading img,
html.skeletonLoading svg {
  visibility: hidden;
  /* opacity: 0; */
}

@keyframes skeletonLoading {
  from {
    background: rgb(var(--white-color), .05) !important;
    filter: blur(2px);
  }
}

.OH {
  overflow: hidden !important;
}


.container {
  margin: 0 auto;
}

.contentBlock {
  min-height: calc(100vh - 450px);
}

/*.common-page-content p:not(:last-child) {
  padding-bottom: 10px;
}

.common-page-content p:not(:first-child) {
  padding-top: 10px;
}
*/
.menu_content div:first-child {
  margin-top: 0 !important;
}

/* Content */
.contentBlock p {
  line-height: calc(1ex / 0.32);
}

blockquote {
  position: relative;
  line-height: 1.6;
  padding: 1rem;
  margin: 1rem 0;
  color: #555555;
  border-left: 8px solid rgb(var(--main-color));
  background: #EDEDED;
}
*:disabled{
  cursor: not-allowed;
}