/**
 * Generate font-face rule with custom font. mixin
 *
 * @param string $font-family
 * @param string $filename
 * @param string|array $default-fonts Second default font(s).
 * @param string|array $exts Extension(s) of custom font [eot ttf ... etc.].
 * @param string $font-style normal|italic|oblique
 * @param string $font-weight normal|bold|int
 * @param string $font-display Rule how to render custom font.
 */
/*----- Fonts -----*/
/*----- Variables -----*/
input[type='tel'],
input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='file'],
select,
.ui-selectmenu-button, textarea {
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0 10px;
  font-size: 14px;
  font-family: "Open Sans", "sans-serif";
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  outline: none;
  color: #10002f;
}
input[type='tel']::-webkit-input-placeholder,
input[type='text']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='file']::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.ui-selectmenu-button::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(16, 0, 47, 0.25);
}
input[type='tel']:-moz-placeholder,
input[type='text']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='password']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='number']:-moz-placeholder,
input[type='file']:-moz-placeholder,
select:-moz-placeholder,
.ui-selectmenu-button:-moz-placeholder, textarea:-moz-placeholder {
  color: rgba(16, 0, 47, 0.25);
  opacity: 1;
}
input[type='tel']::-moz-placeholder,
input[type='text']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='file']::-moz-placeholder,
select::-moz-placeholder,
.ui-selectmenu-button::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(16, 0, 47, 0.25);
  opacity: 1;
}
input[type='tel']:-ms-input-placeholder,
input[type='text']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='file']:-ms-input-placeholder,
select:-ms-input-placeholder,
.ui-selectmenu-button:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(16, 0, 47, 0.25);
}
input[readonly][type='tel'],
input[readonly][type='text'],
input[readonly][type='email'],
input[readonly][type='password'],
input[readonly][type='search'],
input[readonly][type='number'],
input[readonly][type='file'],
select[readonly],
[readonly].ui-selectmenu-button, textarea[readonly], input[disabled][type='tel'],
input[disabled][type='text'],
input[disabled][type='email'],
input[disabled][type='password'],
input[disabled][type='search'],
input[disabled][type='number'],
input[disabled][type='file'],
select[disabled],
[disabled].ui-selectmenu-button, textarea[disabled] {
  background-color: #e0e0e2;
}
input[type='tel']::-webkit-input-placeholder,
input[type='text']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='file']::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.ui-selectmenu-button::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-style: italic;
}
input[type='tel']:-moz-placeholder,
input[type='text']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='password']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='number']:-moz-placeholder,
input[type='file']:-moz-placeholder,
select:-moz-placeholder,
.ui-selectmenu-button:-moz-placeholder, textarea:-moz-placeholder {
  font-style: italic;
}
input[type='tel']::-moz-placeholder,
input[type='text']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='file']::-moz-placeholder,
select::-moz-placeholder,
.ui-selectmenu-button::-moz-placeholder, textarea::-moz-placeholder {
  font-style: italic;
}
input[type='tel']:-ms-input-placeholder,
input[type='text']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='file']:-ms-input-placeholder,
select:-ms-input-placeholder,
.ui-selectmenu-button:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-style: italic;
}

.general_button, .general_button2, input[type='submit'],
button {
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  cursor: pointer;
  color: #fff;
  font: bold 16px "Open Sans", "sans-serif";
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(256deg, #0090FF 0%, #0000ff 50%, #0090FF 100%);
  background-size: 200% auto;
  letter-spacing: 0.32px;
}
.icon.general_button:after, .icon.general_button2:after, input.icon[type='submit']:after,
button.icon:after {
  content: '';
  width: 14px;
  height: 14px;
  margin-left: 1ex;
  background: url('../images/sprite.1123518854.svg') no-repeat -50px -260px;
}
.general_button:focus, .general_button2:focus, input[type='submit']:focus,
button:focus {
  outline: none;
}
.general_button:hover, .general_button2:hover, input[type='submit']:hover,
button:hover {
  text-decoration: none;
  -webkit-animation: button_bg 3s linear infinite;
  -moz-animation: button_bg 3s linear infinite;
  -o-animation: button_bg 3s linear infinite;
  animation: button_bg 3s linear infinite;
}
@media screen and (max-width: 959px) {
  .general_button, .general_button2, input[type='submit'],
  button {
    font-size: 16px;
  }
}

.general_button {
  text-decoration: none;
}

.general_button2 {
  text-decoration: none;
  margin-right: 0;
  color: #0000ff;
  font-size: 16px;
  border: 1px solid #0000ff;
  height: 40px;
  text-shadow: none;
  text-transform: none;
  background-image: linear-gradient(to top, rgba(0, 0, 255, 0.1) 50%, transparent 50%);
  background-size: 100% 200%;
  background-position: top;
}
.general_button2:hover {
  text-decoration: none;
  color: #0000ff;
  background-position: 100% 100%;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}

.clear:after {
  content: '.';
  height: 0;
  font-size: 0;
  visibility: hidden;
  display: block;
  overflow: hidden;
  width: 100%;
}

.navigation > ul > li:before, #scroll_up:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@-webkit-keyframes button_bg {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: -100% center;
  }
}
@-moz-keyframes button_bg {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: -100% center;
  }
}
@-o-keyframes button_bg {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: -100% center;
  }
}
@keyframes button_bg {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: -100% center;
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes glow {
  from {
    box-shadow: 0 0 5px 0 #00CC66;
  }
  to {
    box-shadow: 0 0 7px 2px #00CC66;
  }
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('../fonts/OpenSans-Regular.subset.eot?#iefix') format("embedded-opentype"), url('../fonts/OpenSans-Regular.subset.woff2') format("woff2"), url('../fonts/OpenSans-Regular.subset.woff') format("woff"), url('../fonts/OpenSans-Regular.subset.ttf') format("truetype"), local("sans-serif");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url('../fonts/OpenSans-Bold.subset.eot?#iefix') format("embedded-opentype"), url('../fonts/OpenSans-Bold.subset.woff2') format("woff2"), url('../fonts/OpenSans-Bold.subset.woff') format("woff"), url('../fonts/OpenSans-Bold.subset.ttf') format("truetype"), local("sans-serif");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  text-decoration: none;
  color: inherit;
  transition-duration: .3s;
}
a:focus {
  outline: none;
}

wbr {
  display: inline-block;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none inside;
}

ol {
  list-style: decimal inside;
}

iframe {
  border: 0;
  display: block;
}

label {
  display: block;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type='tel'],
input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='file'],
select,
.ui-selectmenu-button {
  height: 40px;
}

input[type='search'] {
  -webkit-appearance: textfield;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  cursor: pointer;
}

textarea {
  height: 160px;
}

input[type='submit'],
button {
  line-height: 40px;
  border: none;
  -webkit-appearance: none;
  outline: none;
}

.error-message {
  color: #FF3333;
  font-size: 13px;
  margin-top: 4px;
}

.h1,
h1 {
  font-size: 30px;
  line-height: 1.25;
}

.h2,
h2 {
  font-size: 26px;
  line-height: 1.2;
}

.h3,
h3 {
  font-size: 24px;
  line-height: 1.2;
}

.h4,
h4 {
  font-size: 18px;
  line-height: 1.2;
}

.h5,
h5 {
  font-size: 16px;
  line-height: 1.2;
}

.h6,
h6 {
  font-size: 14px;
  line-height: 1.2;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
}

h2, h3, h4, h5, h6 {
  margin-top: 2em;
}
h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

blockquote {
  border-left: 1px solid #ececec;
  font-style: italic;
  padding: 7px 10px;
  margin-left: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

th,
td {
  vertical-align: top;
}

p {
  margin-top: 20px;
}
p:first-child {
  margin-top: 0;
}

.w-dialog {
  position: absolute;
  background: #fff;
  outline: none;
  z-index: 999;
  font: inherit;
  max-width: 100%;
}
.w-dialog .ui-corner-all {
  border-radius: 0;
}
.w-dialog.no_title .ui-dialog-titlebar {
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  width: 0;
  overflow: hidden;
}
.w-dialog.no_title .ui-dialog-title {
  display: none;
}
.w-dialog.no_close .ui-dialog-titlebar-close {
  display: none;
}
.w-dialog .popup_close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.w-dialog .popup_close:hover {
  opacity: .5;
}
.w-dialog .popup_close:before, .w-dialog .popup_close:after {
  content: "";
  width: 24px;
  height: 2px;
  margin: 8px 0 0 -3px;
  position: absolute;
  background: #000;
  display: block;
  top: 0;
  left: 0;
}
.w-dialog .popup_close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.w-dialog .popup_close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.w-dialog-content {
  padding: 35px 35px 20px;
}

.w-dialog-overlay {
  background-color: rgba(16, 0, 47, 0.75);
  background: -webkit-linear-gradient(to bottom, rgba(16, 0, 47, 0.75) 15%, #000);
  background: -moz-linear-gradient(to bottom, rgba(16, 0, 47, 0.75) 15%, #000);
  background: -ms-linear-gradient(to bottom, rgba(16, 0, 47, 0.75) 15%, #000);
  background: -o-linear-gradient(to bottom, rgba(16, 0, 47, 0.75) 15%, #000);
  background: linear-gradient(to bottom, rgba(16, 0, 47, 0.75) 15%, #000);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

#spinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: #fff;
  background: -webkit-linear-gradient(180deg, transparent 0%, rgba(45, 32, 71, 0.6) 60%);
  background: -moz-linear-gradient(180deg, transparent 0%, rgba(45, 32, 71, 0.6) 60%);
  background: -ms-linear-gradient(180deg, transparent 0%, rgba(45, 32, 71, 0.6) 60%);
  background: -o-linear-gradient(180deg, transparent 0%, rgba(45, 32, 71, 0.6) 60%);
  background: linear-gradient(180deg, transparent 0%, rgba(45, 32, 71, 0.6) 60%);
}

.spinner_wrap {
  height: 100%;
  max-height: 300px;
  position: relative;
}

.spinner {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 100px;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(13px);
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.72px;
  font-size: 36px;
  color: #10002f;
  font-weight: bold;
}
.spinner:after {
  content: '';
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='420' viewBox='1 0 377 30'%3E%3Cpath fill='none' stroke='%2310002f' stroke-width='2' d='M1,14.4h178c-1,0,.4,0,.4,0l5.2-6.9s0,0,0,0l4.9,6.9s0,0,0,0h8.7s0,0,0,0l3.8,7.7s0,0,0,0l8.9-21.1s6.8,24.2,7.7,27.4.1,0,.2,0c.5-2.3,4.7-14,4.7-14,0,0,0,0,0,0h11.1s0,0,0,0l7.4-3.7c.4-.2.9-.2,1.3,0l7.4,3.7s0,0,0,0h125'/%3E%3C/svg%3E") no-repeat;
  width: 420px;
  height: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -210px;
  animation: 2s spinner infinite linear;
  animation-delay: 1s;
}

@keyframes spinner {
  0% {
    clip: rect(0, 0, 32px, 0);
  }
  50% {
    clip: rect(0, 420px, 32px, 0);
  }
  100% {
    clip: rect(0, 420px, 32px, 420px);
  }
}
table {
  border-collapse: separate;
  border-radius: 5px;
  box-shadow: 0 1px 1px #00000029;
  border-color: transparent;
  overflow: hidden;
  background: #fff;
  color: rgba(16, 0, 47, 0.5);
}
table td, table th {
  border-left: 1px solid #ececec;
  padding: 10px;
}
table td:first-child, table th:first-child {
  border-left: none;
}
table th {
  font-weight: normal;
  background: #fff;
  font-size: 20px;
  line-height: 28px;
  color: #10002f;
}
table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
table td:first-child {
  border-left: 0;
}
table tbody {
  font-size: 12px;
  line-height: 15px;
}
table tbody tr:first-child {
  background-color: rgba(0, 0, 0, 0.05);
  background: -webkit-linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05));
  background: -moz-linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05));
  background: -ms-linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05));
  background: -o-linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05));
  background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05));
}
table tr {
  transition-duration: 0.3s;
}
table tr:hover {
  color: #10002f;
}

.input input[type='tel'],
.input input[type='text'],
.input input[type='email'],
.input input[type='password'],
.input input[type='search'],
.input input[type='number'],
.input input[type='currency'],
.input input[type='url'],
.input select,
.input .ui-selectmenu-button,
.input textarea {
  width: 100%;
}
.input label {
  margin-bottom: 7px;
}
.input.required label:after {
  content: '*';
  color: red;
  margin-left: 3px;
}

.input,
.submit {
  margin-top: 18px;
}

.checkbox label[for],
.radio label[for] {
  font-weight: normal;
}
.checkbox label[for]:after,
.radio label[for]:after {
  content: unset;
}

input[type='checkbox'],
input[type='radio'] {
  position: absolute;
  opacity: 0;
  z-index: -10;
}
input[type='checkbox'] ~ .state,
input[type='radio'] ~ .state {
  top: -1px;
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
input[type='checkbox'] ~ .state:before, input[type='checkbox'] ~ .state:after,
input[type='radio'] ~ .state:before,
input[type='radio'] ~ .state:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type='checkbox'] ~ .state:after,
input[type='radio'] ~ .state:after {
  margin: auto;
  display: none;
}
input[type='checkbox']:checked ~ .state:after,
input[type='radio']:checked ~ .state:after {
  display: block;
}

input[type='radio'] ~ .state:before {
  border: 1px solid #ececec;
  border-radius: 50%;
}
input[type='radio'] ~ .state:after {
  margin: 3px;
  background: #00CC66;
  border-radius: 50%;
}

input[type='checkbox'] ~ .state:before {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
}
input[type='checkbox']:checked ~ .state:before {
  background: #0000ff;
  border-color: #0000ff;
}
input[type='checkbox']:checked ~ .state:after {
  width: 10px;
  height: 10px;
  background: url('../images/sprite.1123518854.svg') no-repeat -50px -290px;
}
input[type='checkbox']:disabled ~ .state:before {
  background: #ececec;
}

.select select {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23233f72' transform='rotate(90)' width='10' height='10' viewBox='3.5 3 24 24'%3E%3Cpath d='M12,27h-2c-0.386,0-0.738-0.223-0.904-0.572s-0.115-0.762,0.13-1.062L17.708,15L9.226,4.633 c-0.245-0.299-0.295-0.712-0.13-1.062S9.614,3,10,3h2c0.3,0,0.584,0.135,0.774,0.367l9,11c0.301,0.369,0.301,0.898,0,1.267l-9,11 C12.584,26.865,12.3,27,12,27z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.checkbox.switcher label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox.switcher input[type='checkbox'] ~ .status {
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 1ex;
  width: 30px;
}
.checkbox.switcher input[type='checkbox'] ~ .status.on {
  display: none;
  font-weight: bold;
  color: #00CC66;
}
.checkbox.switcher input[type='checkbox'] ~ .state {
  height: 34px;
  width: 66px;
  margin: 0 0 0 10px;
  border-radius: 100px;
  background: #888097;
  transition-duration: 0.3s;
}
.checkbox.switcher input[type='checkbox'] ~ .state:before {
  content: '';
  border: none;
  top: 3px;
  left: 3px;
  right: auto;
  bottom: auto;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  transition-duration: 0.3s;
}
.checkbox.switcher input[type='checkbox'] ~ .state:after {
  content: '';
  display: block;
  top: 11px;
  right: 12px;
  left: auto;
  width: 12px;
  height: 12px;
  margin: 0;
  background: #FF3333;
  position: absolute;
  background: url('../images/sprite.1123518854.svg') no-repeat -90px -290px;
}
.checkbox.switcher input[type='checkbox']:checked ~ .status.on {
  display: inline-block;
}
.checkbox.switcher input[type='checkbox']:checked ~ .status.off {
  display: none;
}
.checkbox.switcher input[type='checkbox']:checked ~ .state {
  background: #00CC66;
}
.checkbox.switcher input[type='checkbox']:checked ~ .state:before {
  left: 35px;
}
.checkbox.switcher input[type='checkbox']:checked ~ .state:after {
  right: auto;
  left: 12px;
  background-position: -110px -260px;
}

.ui-selectmenu-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.ui-selectmenu-button .ui-selectmenu-text {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  padding-right: 20px;
}
.ui-selectmenu-button .ui-selectmenu-icon {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 9px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: translate(0px, 1px) rotate(90deg);
  -moz-transform: translate(0px, 1px) rotate(90deg);
  -ms-transform: translate(0px, 1px) rotate(90deg);
  -o-transform: translate(0px, 1px) rotate(90deg);
  transform: translate(0px, 1px) rotate(90deg);
  background: url('../images/sprite.1123518854.svg') no-repeat -200px 0;
}

.ui-selectmenu-menu {
  position: absolute;
  cursor: pointer;
  display: none;
  z-index: 201;
}
.ui-selectmenu-menu .ui-widget {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  font-size: 14px;
  line-height: 30px;
  overflow-y: auto;
}
.ui-selectmenu-menu .ui-widget .ui-menu-item .ui-menu-item-wrapper {
  padding: 0 10px;
}
.ui-selectmenu-menu .ui-widget .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  background: #ececec;
  border: none;
}
.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-menu.search_select_menu .ui-widget {
  border: none;
  border-radius: 0 0 5px 5px;
  line-height: 40px;
  overflow: hidden;
  background-color: #e0e0e2;
  background: -webkit-linear-gradient(to right, #fff, #e0e0e2);
  background: -moz-linear-gradient(to right, #fff, #e0e0e2);
  background: -ms-linear-gradient(to right, #fff, #e0e0e2);
  background: -o-linear-gradient(to right, #fff, #e0e0e2);
  background: linear-gradient(to right, #fff, #e0e0e2);
}
.ui-selectmenu-menu.search_select_menu .ui-widget .ui-menu-item .ui-menu-item-wrapper {
  padding-left: 20px;
}

.ui-slider {
  border: 1px solid #ececec;
  border-radius: 5px;
  margin: 15px auto;
  height: 11px;
  position: relative;
  font-size: 10px;
  cursor: pointer;
  max-width: 92%;
  background-color: #B0D036;
  background: -webkit-linear-gradient(to right, #B0D036, #71a536 70%);
  background: -moz-linear-gradient(to right, #B0D036, #71a536 70%);
  background: -ms-linear-gradient(to right, #B0D036, #71a536 70%);
  background: -o-linear-gradient(to right, #B0D036, #71a536 70%);
  background: linear-gradient(to right, #B0D036, #71a536 70%);
}
.ui-slider .ui-slider-range {
  background: transparent;
}
.ui-slider .ui-slider-handle,
.ui-slider .ui-slider-active {
  border-radius: 50%;
  border: 1px solid #ececec;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  color: #10002f;
  position: absolute;
  top: -5px;
  cursor: pointer;
  background-color: #ececec;
  background: -webkit-linear-gradient(131deg, #ececec 0%, #fff 100%);
  background: -moz-linear-gradient(131deg, #ececec 0%, #fff 100%);
  background: -ms-linear-gradient(131deg, #ececec 0%, #fff 100%);
  background: -o-linear-gradient(131deg, #ececec 0%, #fff 100%);
  background: linear-gradient(131deg, #ececec 0%, #fff 100%);
}
.ui-slider .ui-slider-handle:focus,
.ui-slider .ui-slider-active:focus {
  outline: none;
}
.ui-slider .ui-slider-handle .value {
  position: absolute;
  left: 0;
  top: 100%;
}

.input.slider input {
  display: none;
}
.input.slider .slider_bar {
  position: relative;
}
.input.slider .from_to {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: rgba(16, 0, 47, 0.25);
  line-height: 24px;
}
.input.slider .from_to span:first-child {
  margin-left: -10px;
}
.input.slider .from_to span:last-child {
  margin-right: -10px;
}

form .row {
  display: flex;
  justify-content: space-between;
}
form .row .half {
  width: 48%;
}
form .row .small {
  width: 22%;
}
form .row .smaller {
  width: 36%;
}
form .row .large {
  width: 62%;
}

/*----- Main css -----*/
html,
body {
  height: 100%;
}

body {
  background: #FBFBFB;
  color: #000;
  font-family: "Open Sans", "sans-serif";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.4;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.login_via_admin {
  position: fixed;
  right: 5px;
  top: 5px;
  background-color: #FF3333;
  color: #fff;
  z-index: 9999;
  padding: 1px 10px;
  font-weight: bold;
}

@keyframes pulse {
  0% {
    clip: rect(0, 0, 50px, 0);
  }
  50% {
    clip: rect(0, 240px, 50px, 0);
  }
  100% {
    clip: rect(0, 240px, 50px, 240px);
  }
}
@keyframes pulse_logo_animation {
  0% {
    clip: rect(0, 0, 50px, 0);
  }
  50% {
    clip: rect(0, 50px, 50px, 0);
  }
  100% {
    clip: rect(0, 50px, 50px, 50px);
  }
}
@keyframes pulse_logo_animation_home {
  0% {
    clip: rect(0, 0, 70px, 0);
  }
  50% {
    clip: rect(0, 70px, 70px, 0);
  }
  100% {
    clip: rect(0, 70px, 70px, 70px);
  }
}
.site_header {
  display: flex;
  justify-content: space-between;
  height: 100px;
  color: #10002f;
  border-bottom: 1px solid #ececec;
  background: #fff;
}
.site_header .logo {
  display: flex;
  align-items: center;
  width: 310px;
  transition-duration: 0.3s;
  margin-left: 30px;
  padding-top: 10px;
  position: relative;
  border-right: 1px solid #ececec;
}
.site_header .logo:before {
  content: '';
  width: 50px;
  height: 52px;
  position: absolute;
  top: 50%;
  margin-top: -21px;
  left: 0;
  background: #0000ff;
  border-radius: 10px;
}
.site_header .logo a {
  display: block;
  width: 230px;
  height: 50px;
  position: relative;
}
.site_header .logo a:before {
  content: 'Beta';
  position: absolute;
  top: -18px;
  font-weight: bold;
  right: 0;
  text-transform: uppercase;
  display: block;
  padding: 3px 5px;
  color: #fff;
  border-radius: 10px;
  letter-spacing: 0.2px;
  font-size: 10px;
  line-height: 1;
  background: transparent linear-gradient(180deg, #FFAA33 0%, #FF9500 100%) 0% 0% no-repeat padding-box;
}
.site_header .logo a:after {
  content: '';
  background: url('../images/logo_pulse.773979911.svg') no-repeat;
  width: 50px;
  height: 30px;
  position: absolute;
  bottom: 4px;
  left: 0;
  pointer-events: none;
  border-radius: 10px;
}
.site_header .logo a img {
  margin-top: 14px;
  width: 230px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.site_header .logo a:hover img {
  clip: rect(0px, 230px, 50px, 50px);
}
.site_header .logo a:hover:after {
  animation: 2s pulse_logo_animation infinite linear;
  z-index: 3;
}
.site_header .menu_button {
  display: flex;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 45px;
  font-size: 12px;
  padding-top: 20px;
}
.site_header .menu_button span {
  display: block;
  vertical-align: middle;
  width: 24px;
  height: 20px;
  margin: 0 auto;
  transition-duration: .3s;
  position: relative;
}
.site_header .menu_button span:before, .site_header .menu_button span:after {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background: #10002f;
  transition-duration: .3s;
}
.site_header .menu_button span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site_header .menu_button span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site_header .menu_button a:before {
  display: none;
}
.site_header .menu_button:hover span {
  opacity: 1;
}
.site_header .menu_button.collapsed {
  position: relative;
}
.site_header .menu_button.collapsed:before {
  content: '';
  width: 40px;
  position: absolute;
  top: 41px;
  right: -1px;
  background: #10002f;
  height: 5px;
  border-radius: 5px;
}
.site_header .menu_button.collapsed span:before, .site_header .menu_button.collapsed span:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.site_header .menu_button.collapsed span:before {
  top: -10px;
}
.site_header .menu_button.collapsed span:after {
  top: 10px;
}
@media screen and (min-width: 1260px) {
  .site_header .menu_button {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .site_header .menu_button {
    margin-left: 30px;
  }
}
.site_header .right_part {
  display: flex;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
  padding-right: 20px;
}
.site_header .links {
  display: flex;
  position: relative;
}
.site_header .links .links_menu {
  position: relative;
  float: left;
  height: inherit;
}
.site_header .links .links_menu .burger {
  display: none;
}
.site_header .links .links_menu > ul {
  float: left;
  z-index: 100;
}
.site_header .links .links_menu > ul li {
  float: left;
}
.site_header .links .links_menu > ul li a {
  font-size: 14px;
  line-height: 48px;
  font-weight: bold;
  color: #fff;
  padding: 27px 16px 25px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
}
.site_header .links .links_menu > ul li a:hover {
  background: #261a3d;
}
.site_header .links .links_menu > ul li.current a:after {
  content: '';
  display: block;
  height: 1px;
  margin-top: -1px;
  background: #00CC66;
  position: relative;
  top: -11px;
}
.site_header .links .links_menu .profile,
.site_header .links .links_menu .logout {
  display: none;
}
.site_header .links > .account {
  display: flex;
  position: relative;
  border-left: 1px solid #ececec;
  width: 274px;
  cursor: pointer;
}
.site_header .links > .account .button {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 20px;
}
.site_header .links > .account .button .avatar_wrap {
  position: relative;
  margin-right: 10px;
}
.site_header .links > .account .button .avatar_wrap.with_role {
  margin-bottom: 13px;
}
.site_header .links > .account .button .avatar_wrap .company_role {
  position: absolute;
  background: #F8F8F8;
  border: 1px solid #ececec;
  border-radius: 100px;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 10px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0 8px;
}
.site_header .links > .account .button .avatar {
  position: relative;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #10002F;
}
.site_header .links > .account .button .avatar img {
  width: 40px;
  height: 26px;
  border-radius: 50%;
}
.site_header .links > .account .button .avatar:empty:before {
  content: '';
  background: url('../images/sprite.1123518854.svg') no-repeat -130px -30px;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: 8px;
  left: 7px;
}
.site_header .links > .account .button .text {
  line-height: 1.1;
}
.site_header .links > .account .button .text .name {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site_header .links > .account .button .text .desc {
  color: #888097;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .site_header .links > .account .button .text .name {
    width: 70px;
  }
}
.site_header .links > .account .button:after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 66px;
  position: absolute;
  right: 23px;
  top: 50%;
  margin-top: -8px;
  transition-duration: .3s;
  background: url('../images/sprite.1123518854.svg') no-repeat -40px 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.site_header .links > .account .button.expanded:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.site_header .links > .account > ul {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  height: 0;
  z-index: 1001;
  border-top: none;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.site_header .links > .account > ul > li {
  border-top: 1px solid #ececec;
}
.site_header .links > .account > ul.expanded {
  height: auto;
}
.site_header .links > .account > ul .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 30px 0 60px;
  position: relative;
  height: 60px;
  cursor: pointer;
}
.site_header .links > .account > ul .wrapper:before, .site_header .links > .account > ul .wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.site_header .links > .account > ul .wrapper:before {
  width: 24px;
  height: 24px;
  left: 20px;
  opacity: .7;
  transition-duration: .3s;
  background: url('../images/sprite.1123518854.svg') no-repeat;
}
.site_header .links > .account > ul .wrapper.current, .site_header .links > .account > ul .wrapper:hover {
  background-color: rgba(136, 128, 151, 0.15);
  background: -webkit-linear-gradient(225deg, rgba(136, 128, 151, 0.15), rgba(136, 128, 151, 0.01));
  background: -moz-linear-gradient(225deg, rgba(136, 128, 151, 0.15), rgba(136, 128, 151, 0.01));
  background: -ms-linear-gradient(225deg, rgba(136, 128, 151, 0.15), rgba(136, 128, 151, 0.01));
  background: -o-linear-gradient(225deg, rgba(136, 128, 151, 0.15), rgba(136, 128, 151, 0.01));
  background: linear-gradient(225deg, rgba(136, 128, 151, 0.15), rgba(136, 128, 151, 0.01));
}
.site_header .links > .account > ul .wrapper.current:before, .site_header .links > .account > ul .wrapper:hover:before {
  opacity: 1;
}
.site_header .links > .account > ul .wrapper .link {
  font-weight: bold;
}
.site_header .links > .account > ul .company .wrapper {
  background: #F2F9FF;
}
.site_header .links > .account > ul .company .wrapper:before {
  background-position: -220px -30px;
}
.site_header .links > .account > ul .create_company .wrapper:before {
  background-position: -250px -30px;
}
.site_header .links > .account > ul .current_company .wrapper {
  background-color: #fff;
}
.site_header .links > .account > ul .current_company .wrapper:before {
  background-position: -190px -30px;
}
.site_header .links > .account > ul .profile .wrapper:before {
  background-position: -160px -30px;
}
.site_header .links > .account > ul .logout .wrapper:before {
  background-position: -280px -30px;
}
.site_header .auth {
  display: flex;
}
.site_header .auth nav {
  display: flex;
}
.site_header .auth nav .item {
  padding-left: 20px;
  border-left: 1px solid #ececec;
  display: flex;
  align-items: center;
}
.site_header .auth nav .item:first-child {
  margin-left: 0;
  padding-left: 0;
  border: none;
}
.site_header .auth nav .i18n,
.site_header .auth nav .support {
  display: none;
}
.site_header .auth nav .i18n {
  position: relative;
  width: 253px;
}
.site_header .auth nav .i18n.toggle .submenu {
  height: auto;
}
.site_header .auth nav .i18n .button {
  display: flex;
  padding-right: 20px;
  cursor: pointer;
  flex: 1;
  align-items: center;
}
.site_header .auth nav .i18n .country {
  margin-right: 10px;
  background: url('../images/sprite.1123518854.svg') no-repeat -1600px -3500px;
  width: 35px;
  min-width: 35px;
  height: 26px;
}
.site_header .auth nav .i18n .country a {
  display: inline-block;
  height: 26px;
  width: 35px;
  min-width: 35px;
}
.site_header .auth nav .i18n .country.en, .site_header .auth nav .i18n .country.gb {
  background-position: -160px -350px;
}
.site_header .auth nav .i18n .country.da, .site_header .auth nav .i18n .country.dk {
  background-position: -200px -350px;
}
.site_header .auth nav .i18n .country .DE {
  background-position: -240px -350px;
}
.site_header .auth nav .i18n .country .ES {
  background-position: -280px -350px;
}
.site_header .auth nav .i18n .country .FR {
  background-position: -320px -350px;
}
.site_header .auth nav .i18n header {
  color: #10002f;
  font-size: 16px;
  font-weight: bold;
  flex: 1;
}
.site_header .auth nav .i18n header span {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: normal;
}
.site_header .auth nav .i18n .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  z-index: 200;
  overflow: hidden;
  transition-duration: 0.3s;
  height: 0;
  border: 1px solid #ececec;
  border-top: 0;
}
.site_header .auth nav .i18n .submenu li {
  transition-duration: 0.3s;
}
.site_header .auth nav .i18n .submenu li.current {
  opacity: 0.5;
}
.site_header .auth nav .i18n .submenu li:hover {
  opacity: 0.7;
}
.site_header .auth nav .i18n .submenu .currencies {
  padding: 10px 18px;
}
.site_header .auth nav .i18n .submenu .currencies .ui-selectmenu-button {
  width: 100%;
}
.site_header .auth nav .i18n .submenu .languages {
  display: none;
}
.site_header .auth nav .i18n .submenu .countries {
  padding: 5px 15px 10px;
}
.site_header .auth nav .i18n .submenu .countries li {
  cursor: pointer;
  display: inline-block;
  margin: 5px 0 0 4px;
  width: 35px;
  min-width: 35px;
  height: 26px;
  background: url('../images/sprite.1123518854.svg') no-repeat -160px -350px;
}
.site_header .auth nav .i18n .submenu .countries li a {
  display: block;
  height: 26px;
  width: 35px;
  min-width: 35px;
}
.site_header .auth nav .i18n .submenu .countries li.GB {
  background-position: -160px -350px;
}
.site_header .auth nav .i18n .submenu .countries li.DK {
  background-position: -200px -350px;
}
.site_header .auth nav .i18n .submenu .countries li .DE {
  background-position: -240px -350px;
}
.site_header .auth nav .i18n .submenu .countries li .ES {
  background-position: -280px -350px;
}
.site_header .auth nav .i18n .submenu .countries li .FR {
  background-position: -320px -350px;
}
.site_header .auth nav .i18n .submenu .countries .current a,
.site_header .auth nav .i18n .submenu .countries a:hover {
  opacity: 0.5;
}
.site_header .auth nav .i18n .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #10002f;
  margin-left: 10px;
  position: relative;
  float: right;
}
.site_header .auth nav .i18n .arrow:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  background: url('../images/sprite.1123518854.svg') no-repeat -610px 0;
}
.site_header .auth nav a {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  transition-duration: .3s;
  background-color: rgba(255, 255, 255, 0.15);
  background: -webkit-linear-gradient(247deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(247deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  background: -ms-linear-gradient(247deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  background: -o-linear-gradient(247deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  background: linear-gradient(247deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
.site_header .auth nav a .icon {
  display: inline-block;
  margin-right: 7px;
  width: 24px;
  height: 24px;
  background: url('../images/sprite.1123518854.svg') no-repeat;
  transition-duration: .3s;
}
.site_header .auth nav a.signup {
  background: #10002f;
  border-radius: 10px;
  height: 50px;
  color: #fff;
  font-weight: bold;
  width: 217px;
  padding-left: 40px;
}
.site_header .auth nav a.signup:hover {
  background-color: #0000ff;
}
.site_header .auth nav a.signup .icon {
  background-position: -560px -80px;
  margin: 0 0 0 10px;
}
.site_header .auth nav a.login {
  margin-right: 28px;
  font-weight: bold;
  min-width: 58px;
}
.site_header .auth nav a.login .icon {
  background-position: -680px -80px;
  transition-duration: 0s;
}
.site_header .auth nav a.login:hover {
  color: #0000ff;
}
.site_header .auth nav a.login:hover .icon {
  background-position: -710px -80px;
}
.site_header .auth nav a.contact {
  text-transform: none;
  width: 180px;
}
.site_header .auth nav a.contact .icon {
  margin-right: 8px;
  position: relative;
  background: url('../images/support.1806488612.png') no-repeat;
  background-size: contain;
  min-width: 50px;
  min-height: 50px;
}
.site_header .auth nav a.contact .icon:after {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #00CC66;
  box-shadow: 0 0 10px #00CC66;
}
.site_header .auth nav a.contact:hover .icon:after {
  animation: glow 0.5s infinite alternate;
}
.site_header .auth nav a.contact:hover .icon + span {
  color: #0000ff;
}
.site_header .auth nav a.contact span {
  font-weight: bold;
}
.site_header .auth nav a.contact .subtitle {
  text-transform: uppercase;
  font-size: 10px;
  opacity: 0.5;
  display: block;
  font-weight: normal;
}
@media screen and (max-width: 1499px) {
  .site_header .links {
    margin-left: 10px;
  }
  .site_header .links .links_menu {
    margin-left: 10px;
  }
  .site_header .links .links_menu .burger {
    display: block;
    background: url('../images/sprite.1123518854.svg') no-repeat -180px -170px;
    width: 32px;
    height: 32px;
    position: relative;
    margin-right: 7px;
    outline: none;
  }
  .site_header .links .links_menu > ul {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 300px;
    overflow: hidden;
    background: #0f002e;
    height: 0;
  }
  .site_header .links .links_menu > ul.expanded {
    height: auto;
  }
  .site_header .links .links_menu > ul li {
    float: none;
  }
  .site_header .links .links_menu > ul li a {
    padding: 0 10px 0 30px;
    line-height: 60px;
    position: relative;
  }
  .site_header .links .links_menu > ul li a:after {
    content: '';
    -webkit-transform: translate(0px, 45px) rotate(0deg);
    -moz-transform: translate(0px, 45px) rotate(0deg);
    -ms-transform: translate(0px, 45px) rotate(0deg);
    -o-transform: translate(0px, 45px) rotate(0deg);
    transform: translate(0px, 45px) rotate(0deg);
    border-top: 2px solid #4b4b4b;
    border-right: 2px solid #4b4b4b;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-top: -5px;
  }
  .site_header .links .links_menu > ul li.current a {
    background: rgba(255, 255, 255, 0.2);
  }
  .site_header .links .links_menu > ul li.current a:after {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .site_header .auth nav a {
    margin: 0 10px;
  }
  .site_header .auth nav .i18n {
    line-height: 1.1;
    width: auto;
    height: 100%;
  }
  .site_header .auth nav .i18n .countries a {
    padding: 10px 10px;
  }
  .site_header .auth nav .i18n .country {
    margin: 0;
  }
  .site_header .auth nav .i18n .country li {
    white-space: nowrap;
  }
  .site_header .auth nav .i18n header,
  .site_header .auth nav .i18n .arrow {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .site_header .right_part {
    padding-right: 10px;
  }
  .site_header .auth nav .item {
    padding-left: 3px;
  }
  .site_header .auth nav .item.i18n {
    padding: 0 10px;
    height: 100px;
  }
  .site_header .auth nav .item.i18n .button {
    padding-right: 0;
  }
  .site_header .auth nav a.signup {
    width: auto;
    padding: 0 15px;
  }
  .site_header .auth nav a.contact {
    width: auto;
  }
}
@media screen and (max-width: 960px) {
  .site_header .auth nav a.login, .site_header .auth nav a.contact {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .site_header .auth nav a.login .icon {
    margin: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .site_header {
    position: relative;
  }
  .site_header .top > div {
    height: 70px;
  }
  .site_header .auth nav {
    line-height: 70px;
  }
}
@media screen and (max-width: 680px) {
  .site_header .auth nav .item {
    padding-left: 0;
    border: none;
  }
  .site_header .auth nav a.signup {
    font-size: 14px;
    line-height: 1.1;
    padding: 0 15px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .site_header .auth nav a.signup .icon {
    min-width: 24px;
  }
}
@media screen and (max-width: 610px) {
  .site_header .right_part {
    justify-content: center;
    padding: 0;
  }
  .site_header .auth nav a.signup {
    font-size: 0;
  }
  .site_header .auth nav a.signup .icon {
    margin: 0;
  }
}
@media screen and (max-width: 540px) {
  .site_header .links .links_menu {
    position: static;
  }
  .site_header .links .links_menu > ul {
    width: auto;
    left: 0;
    right: 0;
  }
  .site_header .links > .account {
    position: static;
  }
  .site_header .links > .account > ul {
    width: auto;
    left: 0;
    right: 0;
  }
}

/*----- Navigation -----*/
.navigation {
  width: 340px;
  color: #10002f;
  background: #fff;
  letter-spacing: 0.32px;
  text-align: center;
  transition-duration: .3s;
  padding-bottom: 70px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}
.navigation > ul {
  margin-bottom: 70px;
  text-align: left;
}
.navigation > ul > li {
  border: 1px solid #ececec;
  position: relative;
  cursor: pointer;
  display: block;
}
.navigation > ul > li:first-child {
  border-top: 0;
}
.navigation > ul > li:before {
  content: '';
  height: 62px;
  transition-duration: .3s;
  opacity: 0;
}
.navigation > ul > li > a {
  height: 62px;
  line-height: 62px;
  padding-right: 50px;
  text-transform: uppercase;
  font-weight: bold;
}
.navigation > ul > li > a:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 0 20px 0 30px;
  transition-duration: .3s;
  background: url('../images/sprite.1123518854.svg') no-repeat;
}
.navigation > ul > li > a.home:before {
  background-position: -40px -80px;
}
.navigation > ul > li > a.prices:before {
  background-position: -80px -80px;
}
.navigation > ul > li > a.about:before {
  background-position: -520px -80px;
}
.navigation > ul > li > a.monitoring:before {
  background-position: -440px -80px;
}
.navigation > ul > li > a.help:before {
  background-position: -480px -80px;
}
.navigation > ul > li > a.terms_and_policies:before {
  background-position: -600px -80px;
}
.navigation > ul > li > a.tools:before {
  background-position: -580px 0;
}
.navigation > ul > li > a.company:before {
  background-position: -470px -120px;
}
.navigation > ul > li > a .count {
  border-radius: 50%;
  width: 20px;
  display: inline-block;
  height: 20px;
  background: #0000ff;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  position: relative;
  top: -15px;
}
.navigation > ul > li > a .count.red {
  background: #FF3333;
}
.navigation > ul > li.current-menu-ancestor .submenu {
  display: block;
}
.navigation > ul > li.current-menu-ancestor > a, .navigation > ul > li.current > a {
  background: #0000FF0D;
  border-left: 3px solid #0000ff;
}
.navigation > ul a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition-duration: .3s;
}
.navigation > ul li .arrow {
  height: 25px;
  width: 25px;
  background: #ececec;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  top: 18px;
  opacity: .7;
  transition-duration: .3s;
}
.navigation > ul li .arrow:before {
  content: '';
  position: absolute;
  right: 7px;
  top: 12px;
  width: 11px;
  height: 3px;
  background: #10002f;
}
.navigation > ul li .arrow:after {
  content: '';
  position: absolute;
  right: 11px;
  top: 7.5px;
  width: 3px;
  height: 11px;
  background: #10002f;
}
.navigation > ul li .arrow:hover {
  opacity: 1;
}
.navigation > ul li:hover > a:before, .navigation > ul li.current > a:before {
  opacity: 1;
}
.navigation > ul li.active .arrow:after {
  display: none;
}
.navigation .submenu {
  padding: 10px 0;
  display: none;
  border-top: 1px solid #ececec;
  background: #fff;
}
.navigation .submenu li {
  display: block;
  line-height: 30px;
  height: 30px;
}
.navigation .submenu li a {
  height: 30px;
  line-height: 30px;
  padding-left: 30px;
  padding-right: 20px;
  display: inline-block;
}
.navigation .submenu li a:hover {
  text-decoration: none;
}
.navigation .submenu li.current {
  font-weight: bold;
}
.navigation .submenu li:hover, .navigation .submenu li.current {
  position: relative;
}
.navigation .submenu li:hover:before, .navigation .submenu li.current:before {
  content: '';
  width: 3px;
  left: 0;
  top: 0;
  height: 100%;
  background: #0000ff;
  position: absolute;
}
.navigation .submenu li:hover a, .navigation .submenu li.current a {
  color: #0000ff;
  background: #0000FF0D 0% 0% no-repeat padding-box;
  border-radius: 0px 10px 10px 0px;
}
.navigation .submenu li.last + li {
  margin-top: 22px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  padding-top: 22px;
}
.navigation .submenu:hover > li.current:before {
  opacity: 0;
}
.navigation .submenu:hover > li.current a {
  color: #000;
  background: transparent;
}
.navigation .copyright {
  position: relative;
  font-size: 14px;
}
.navigation .copyright span {
  transition-duration: .3s;
}
.navigation.open {
  left: 0;
}
@media screen and (max-width: 1259px) {
  .navigation {
    left: -340px;
  }
}

/*----- Content -----*/
.content {
  position: relative;
  overflow: hidden;
}
.content .main_wrap {
  padding-left: 340px;
  transition-duration: 0.3s;
  flex: 1;
  position: relative;
}
.full_width .content .main_wrap {
  padding-left: 0;
}
@media screen and (max-width: 1259px) {
  .content .main_wrap {
    padding-left: 0;
  }
}
.content .main {
  position: relative;
  padding: 43px 100px 100px;
  min-height: calc(100vh - 100px - 80px);
}
.content .main > section {
  max-width: 1360px;
}
.content .site_footer {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  line-height: 1.6;
}
.content .site_footer a {
  color: #0000ff;
  text-decoration: underline;
  font-weight: bold;
}
.content .site_footer a:hover {
  text-decoration: none;
}
.content .site_footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.content .site_footer ul li {
  position: relative;
  margin-left: 5px;
  padding-left: 7px;
}
.content .site_footer ul li:before {
  content: '';
  background: #000;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.content .site_footer ul li:first-child:before {
  display: none;
}
@media screen and (max-width: 639px) {
  .content .site_footer {
    height: auto;
    padding: 20px;
  }
  .content .site_footer ul {
    display: block;
    text-align: center;
  }
  .content .site_footer ul li:before {
    display: none;
  }
}
@media screen and (max-width: 1399px) {
  .content .main {
    padding: 35px 40px 150px;
  }
}
@media screen and (max-width: 1023px) {
  .content .main {
    padding: 30px 30px 150px;
  }
}
@media screen and (max-width: 960px) {
  .content {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .content .main {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 640px) {
  .content .site_footer ul li:first-child {
    margin-left: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .content {
    display: block;
    position: relative;
  }
  .full_width .content .main {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*----- Message boxes -----*/
.flash_messages {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 100px;
  right: 0;
}
.flash_messages .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}
.flash_messages .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}
.flash_messages .progress.active:before {
  animation: progress 5s linear forwards;
}
@keyframes progress {
  100% {
    right: 100%;
  }
}
.flash_messages .message {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 3;
  transition-duration: 1s;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  border: 1px solid #ececec;
  min-width: 320px;
}
.flash_messages .message:first-child {
  border-radius: 0 0 0 10px;
}
.flash_messages .message > div {
  padding: 10px;
  display: flex;
  align-items: center;
  min-height: 48px;
}
.flash_messages .message > div .close {
  position: absolute;
  top: 13px;
  right: 20px;
  margin-left: 10px;
  width: 14px;
  height: 14px;
  background: url('../images/sprite.1123518854.svg') no-repeat -420px -260px;
}
.flash_messages .message > div .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  background: #4070f4;
  align-items: center;
  justify-content: center;
}
.flash_messages .message > div .icon:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../images/sprite.1123518854.svg') no-repeat -30px -290px;
}
.flash_messages .message a {
  font-weight: bold;
  text-decoration: underline;
}
.flash_messages .message a:hover {
  text-decoration: none;
}
.flash_messages .message:hover > div .close {
  opacity: 1;
}
.flash_messages .message.info .icon {
  background: #4070f4;
}
.flash_messages .message.success .progress:before {
  background-color: #00CC66;
}
.flash_messages .message.success .icon {
  background: #00CC66;
}
.flash_messages .message.warning .progress:before {
  background-color: #b47a05;
}
.flash_messages .message.warning .icon {
  background: #b47a05;
}
.flash_messages .message.error .progress:before {
  background-color: #FF3333;
}
.flash_messages .message.error .icon {
  background: #FF3333;
}
.flash_messages .message.error .icon:before {
  background-position: -440px -260px;
}
.flash_messages .message + .message {
  top: 100px;
}
.flash_messages .message + .message + .message {
  top: 200px;
}
.flash_messages .message + .message + .message + .message {
  top: 300px;
}
@media screen and (max-width: 1100px) {
  .flash_messages .message > div {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .flash_messages {
    top: 70px;
  }
}

/*----- scrollUp -----*/
#scroll_up {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: -80px;
  z-index: 100;
  transition-duration: .3s;
  background: #0000ff;
}
#scroll_up:before {
  content: '';
  margin: auto;
  width: 16px;
  height: 16px;
  transition-duration: .3s;
  background: url('../images/sprite.1123518854.svg') no-repeat -670px 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#scroll_up:hover {
  background-position: 50% 100%;
}
#scroll_up:hover:before {
  bottom: 5px;
}
#scroll_up.active {
  right: 20px;
}

.swipe_table {
  overflow-x: auto;
}

.progress_notification {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
}
.progress_notification .wrap {
  width: 520px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #ececec;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px 15px;
  display: flex;
  background: #fff;
  align-items: flex-end;
}
.progress_notification .left {
  flex: 1;
  font-size: 12px;
}
.progress_notification .left .title {
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
}
.progress_notification .left .progress {
  position: relative;
  background: #ececec;
  height: 6px;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 7px;
}
.progress_notification .left .progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #16CF73;
  border-radius: 100px;
  overflow: hidden;
}
.progress_notification .pulse_animation {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  position: relative;
  background: #757575;
  margin-left: 20px;
}
.progress_notification .pulse_animation:before {
  content: '';
  width: 50px;
  height: 30px;
  background: url('../images/logo_pulse.773979911.svg') no-repeat;
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 10px;
  animation: 2s pulse_logo_animation infinite linear;
}

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