.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px
}
.choices:focus {
  outline: 0
}
.choices:last-child {
  margin-bottom: 0
}
.choices.is-open {
  overflow: visible
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none
}
.choices.is-disabled .choices__item {
  cursor: not-allowed
}
.choices [hidden] {
  display: none!important
}
.choices[data-type*=select-one] {
  cursor: pointer
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0
}
.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .25
}
.choices[data-type*=select-one] .choices__button:focus,
.choices[data-type*=select-one] .choices__button:hover {
  opacity: 1
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333;
  margin-top: -7.5px
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0
}
.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin: 0-4px 0 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
  border-radius: 0
}
.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover {
  opacity: 1
}
.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden
}
.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px
}
.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px
}
.choices__list--single .choices__item {
  width: 100%
}
.choices__list--multiple {
  display: inline
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility
}
.is-active.choices__list--dropdown,
.is-active.choices__list[aria-expanded] {
  visibility: visible
}
.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7
}
.is-flipped .choices__list--dropdown,
.is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0
}
.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position
}
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px
}
[dir=rtl] .choices__list--dropdown .choices__item,
[dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right
}
@media (min-width:640px) {
  .choices__list--dropdown .choices__item--selectable,
  .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px
  }
  .choices__list--dropdown .choices__item--selectable::after,
  .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable,
  [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after,
  [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: .5
}
.choices__item {
  cursor: default
}
.choices__item--selectable {
  cursor: pointer
}
.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
  opacity: .5
}
.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray
}
.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer
}
.choices__button:focus,
.choices__input:focus {
  outline: 0
}
.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px
}
.choices__input::-webkit-search-cancel-button,
.choices__input::-webkit-search-decoration,
.choices__input::-webkit-search-results-button,
.choices__input::-webkit-search-results-decoration {
  display: none
}
.choices__input::-ms-clear,
.choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0
}
.choices__placeholder {
  opacity: .5
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}
body {
  margin: 0
}
main {
  display: block
}
h1 {
  font-size: 2em;
  margin: .67em 0
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}
pre {
  font-family: monospace,monospace;
  font-size: 1em;
  white-space: pre-wrap;
}
a {
  background-color: transparent
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}
b,
strong {
  font-weight: bolder
}
code,
kbd,
samp {
  font-family: monospace,monospace;
  font-size: 1em
}
small {
  font-size: 80%
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
img {
  border-style: none
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  outline: 0;
  margin: 0
}
button,
input {
  overflow: visible
}
button,
select {
  text-transform: none
}
[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}
fieldset {
  padding: .35em .75em .625em
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
details {
  display: block
}
summary {
  display: list-item
}
template {
  display: none
}
[hidden] {
  display: none
}
@font-face {
  font-family: Roboto-Bold;
  font-display: swap;
  src: url(/hc/theming_assets/01HZPFV6PYCHK18CMKFQ4AFRE5) format("woff2")
}
@font-face {
  font-family: Roboto-Medium;
  font-display: swap;
  src: url(/hc/theming_assets/01HZPFV9Q6WWRTT8T8D2B6F1WY) format("woff2")
}
@font-face {
  font-family: Roboto-Regular;
  font-display: swap;
  src: url(/hc/theming_assets/01HZPFV81RCS5CVVTTM7YKJ670) format("woff2")
}
.svg-image-doc,
.svg-image-logout {
  background: url(/hc/theming_assets/01HZPFV6TX1V64M4TXCT4E5ZXZ) no-repeat
}
.svg-image-doc {
  background-position: 0 0;
  background-size: 162.1621621622% auto;
  width: 37px
}
.svg-image-doc:before {
  content: "";
  display: block;
  font-size: 0;
  line-height: 0;
  padding-top: 121.6216216216%
}
.svg-image-doc-dims {
  width: 37px;
  height: 45px
}
.svg-image-logout {
  background-position: 100% 0;
  background-size: 260.8695652174% auto;
  width: 23px
}
.svg-image-logout:before {
  content: "";
  display: block;
  font-size: 0;
  line-height: 0;
  padding-top: 104.347826087%
}
.svg-image-logout-dims {
  width: 23px;
  height: 24px
}
.image-by-height {
  width: auto
}
.image-by-height:before {
  content: none
}
.image-by-height > svg {
  height: inherit
}
.image-by-height > img {
  height: inherit!important;
  vertical-align: top!important;
  margin: 0!important;
  padding: 0!important;
  max-width: none!important;
  max-height: none!important;
  border: 0!important;
  opacity: 0!important
}
* {
  box-sizing: border-box
}
body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  font-family: Roboto-Regular;
  font-size: 16px;
  line-height: 162%;
  color: #1a2e52;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
body.locked {
  overflow: hidden
}
body.locked .overlay {
  display: block
}
body.locked:not(.overlay) {
  overflow: hidden
}
@media (max-width:576px) {
  body.height {
    height: calc(var(--vh,1vh) * 100)!important
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,.6);
  z-index: 50
}
html {
  scroll-behavior: smooth
}
.main {
  background-color: #fafcff
}
main.bright {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  background-color: #1976d2
}
.container {
  width: 100%;
  max-width: 1640px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 20px
}
@media (max-width:1650px) {
  .container {
    max-width: 1440px;
    padding: 0 60px
  }
}
@media (max-width:1024px) {
  .container {
    padding: 0 40px
  }
}
@media (max-width:576px) {
  .container {
    padding: 0 16px
  }
}
.container_small {
  max-width: 1060px
}
@media (max-width:1650px) {
  .container_small {
    padding: 0 20px;
    max-width: 1000px
  }
}
@media (max-width:1350px) {
  .container_small {
    padding: 0 20px;
    max-width: 820px
  }
}
@media (max-width:768px) {
  .container_small {
    padding: 0 40px;
    max-width: 768px
  }
}
@media (max-width:576px) {
  .container_small {
    padding: 0 16px
  }
}
.container_form {
  max-width: 780px;
  padding: 0;
  min-width: auto;
  margin-left: 273px
}
@media (max-width:1650px) {
  .container_form {
    max-width: 720px;
    margin-left: 210px
  }
}
@media (max-width: 1350px){
  .container_form {
      margin-left: 192px;
  }
}
@media (max-width:1100px) {
    .container_form {
        margin-left: 0;
        margin-top: 40px;
    }
}
@media (max-width:1024px) {
    .container_form {
        max-width: 688px;
        margin-left: 0;
        margin-top: 0;
    }
}
.main-btn {
  padding: 14px 23px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-family: Roboto-Bold;
  border-radius: 8px;
  cursor: pointer
}
@media (max-width:1650px) {
  .main-btn {
    padding: 13px 22px;
    font-size: 16px
  }
}
@media (max-width:768px) {
  .main-btn {
    padding: 13px 24px;
    font-size: 15px
  }
}
.main-title {
  font-size: 100px;
  font-family: Roboto-Bold;
  line-height: normal;
  text-align: left;
  color: #fff
}
@media (max-width:1920px) {
  .main-title {
    font-size: 80px
  }
}
@media (max-width:1650px) {
  .main-title {
    font-size: 72px
  }
}
@media (max-width:1350px) {
  .main-title {
    font-size: 68px
  }
}
@media (max-width:576px) {
  .main-title {
    font-size: 44px
  }
}
.big-title {
  font-size: 80px;
  font-family: Roboto-Bold;
  line-height: normal;
  text-align: center;
  color: #fff
}
@media (max-width:1650px) {
  .big-title {
    font-size: 72px
  }
}
@media (max-width:1024px) {
  .big-title {
    font-size: 60px
  }
}
@media (max-width:576px) {
  .big-title {
    font-size: 40px
  }
}
.section-title {
  font-size: 40px;
  font-family: Roboto-Bold;
  line-height: normal;
  text-align: left
}
@media (max-width:576px) {
  .section-title {
    font-size: 28px
  }
}
.section-padding {
  padding: 40px 0
}
.mb32 {
  margin-bottom: 32px
}
@media (max-width:1650px) {
  .mb32 {
    margin-bottom: 28px
  }
}
@media (max-width:1024px) {
  .mb32 {
    margin-bottom: 40px
  }
}
@media (max-width:576px) {
  .mb32 {
    margin-bottom: 32px
  }
}
.mb40 {
  margin-bottom: 40px
}
@media (max-width:1650px) {
  .mb40 {
    margin-bottom: 36px
  }
}
@media (max-width:1024px) {
  .mb40 {
    margin-bottom: 24px
  }
}
@media (max-width:576px) {
  .mb40 {
    margin-bottom: 20px
  }
}
.text1 {
  font-size: 18px;
  line-height: 100%
}
@media (max-width:1650px) {
  .text1 {
    font-size: 16px
  }
}
@media (max-width:576px) {
  .text1 {
    font-size: 15px
  }
}
.text16 {
  font-size: 16px;
  line-height: 100%
}
@media (max-width:576px) {
  .text16 {
    font-size: 15px
  }
}
.text24 {
  font-size: 24px;
  font-family: Roboto-Medium;
  color: #1a2e52;
  line-height: 100%
}
@media (max-width:1650px) {
  .text24 {
    font-size: 20px
  }
}
@media (max-width:576px) {
  .text24 {
    font-size: 18px
  }
}
header {
  padding: 0
}
button {
  padding: 0;
  background-color: transparent;
  border: none
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400
}
img {
  width: auto;
  max-width: 100%
}
iframe,
img,
svg,
video {
  max-width: 100%;
  vertical-align: top
}
p {
  margin: 0
}
ul {
  margin: 0;
  padding-left: 0
}
li {
  list-style-type: none
}
a {
  text-decoration: none
}
.header {
  position: absolute;
  width: 100%;
  padding: 24px 0;
  background: #1976d2;
  z-index: 200
}
@media (max-width:1650px) {
  .header {
    padding: 17px 0
  }
}
@media (max-width:1024px) {
  .header {
    padding: 0;
    background-color: transparent
  }
}
.header__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:1024px) {
  .header__inner {
    position: relative;
    padding-top: 17px;
    padding-bottom: 17px;
    background-color: #1976d2;
    z-index: 70
  }
}
@media (max-width:576px) {
  .header__inner {
    padding-top: 14px;
    padding-bottom: 14px
  }
}
.header__left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.header__right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.header__logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:1650px) {
  .header__logo {
    -webkit-flex: 0 0 152px;
    -ms-flex: 0 0 152px;
    flex: 0 0 152px
  }
}
@media (max-width:1100px) {
  .header__logo {
    -webkit-flex: 0 0 38px;
    -ms-flex: 0 0 38px;
    flex: 0 0 38px
  }
}
@media (max-width:576px) {
  .header__logo {
    -webkit-flex: 0 0 27px;
    -ms-flex: 0 0 27px;
    flex: 0 0 27px
  }
}
.header__logo1 {
  -webkit-flex: 0 0 48px;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px
}
.header__logo1 img {
  height: 46px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}
@media (max-width:1650px) {
  .header__logo1 {
    -webkit-flex: 0 0 33px;
    -ms-flex: 0 0 33px;
    flex: 0 0 33px
  }
  .header__logo1 img {
    height: 32px
  }
}
@media (max-width:1024px) {
  .header__logo1 {
    -webkit-flex: 0 0 38px;
    -ms-flex: 0 0 38px;
    flex: 0 0 38px
  }
  .header__logo1 img {
    height: 36px
  }
}
@media (max-width:576px) {
  .header__logo1 {
    -webkit-flex: 0 0 27px;
    -ms-flex: 0 0 27px;
    flex: 0 0 27px
  }
  .header__logo1 img {
    height: 26px
  }
}
.header__logo2 {
  margin-left: 3px;
  -webkit-flex: 0 0 164px;
  -ms-flex: 0 0 164px;
  flex: 0 0 164px
}
.header__logo2 img {
  width: 164px;
  height: 25px;
  -o-object-fit: contain;
  object-fit: contain
}
@media (max-width:1650px) {
  .header__logo2 {
    margin-left: 5px;
    -webkit-flex: 0 0 111px;
    -ms-flex: 0 0 111px;
    flex: 0 0 111px
  }
}
@media (max-width:1100px) {
  .header__logo2 {
    display: none
  }
}
.header__submit {
  margin-left: 58px;
  padding: 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Roboto-Medium;
  background: #fff;
  color: #1976D2;
  transition: background .3s ease;
  cursor: pointer;
  white-space: nowrap
}
@media (max-width:1350px) {
  .header__submit {
    margin-left: 40px
  }
}
@media (max-width:1100px) {
  .header__submit {
    margin-left: 20px
  }
}
@media (max-width:768px) {
  .header__submit {
    margin-left: 32px
  }
}
@media (max-width:576px) {
  .header__submit {
    margin-left: 20px;
    padding: 10px
  }
}
.header__submit:hover {
  background: #eee;
  transition: background .3s ease
}
@media (max-width:1650px) {
  .header__submit img {
    width: 20px;
    height: 20px
  }
}
@media (max-width:576px) {
  .header__submit svg {
    width: 16px;
    height: 16px
  }
}
.header__submit span {
  margin-left: 5px;
    width: 130px;
}
@media (max-width:700px) {
  .header__submit span.hide-mob {
    display: none
  }
}
.header__submit span.show-mob {
  display: none
}
@media (max-width:700px) {
  .header__submit span.show-mob {
    width: 80px;
    display: block
  }
}
.header__dropdown {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  border-radius: 10px;
  position: absolute;
  padding: 20px;
  bottom: -14px;
  right: -50px;
  -webkit-transform: translateY(-300%);
  transform: translateY(-300%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 100;
  /* custom */
  width: 200px
}
@media (max-width:1750px) {
  .header__dropdown {
    right: 0
  }
}
@media (max-width:1650px) {
  .header__dropdown {
    bottom: -5px
  }
}
.login {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer
}
.login.active .login__drop {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease,-webkit-transform .3s ease
}
.login.active .header__dropdown {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 1;
  transition: opacity .3s ease
}
.login::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: -15px;
  left: 0
}
.login__email {
  margin-bottom: 18px;
  color: rgba(26,46,82,.4)
}
.login__logout {
  padding: 5px 0;
  color: #1a2e52;
  padding-left: 30px;
  background: url(/hc/theming_assets/01HZPFV8W9QJQKRH4Y8MY1ZH3M) left center no-repeat;
  cursor: pointer
}
.login__av {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48px;
  height: 48px;
  -webkit-flex: 0 0 48px;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
  border-radius: 100%;
  background-color: #fff;
  color: #1976d2;
  font-family: Roboto-Bold
}
@media (max-width:576px) {
  .login__av {
    width: 36px;
    height: 36px;
    -webkit-flex: 0 0 36px;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px
  }
}
.login__drop {
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease,-webkit-transform .3s ease;
  margin-left: 8px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.login__drop svg {
  stroke: #fff
}
@media (max-width:576px) {
  .login__drop {
    margin-left: 6px
  }
  .login__drop svg {
    stroke: #fff;
    width: 9px;
    height: 5px
  }
}
.menu.in-1024 {
  display: none
}
@media (max-width:1024px) {
  .menu.in-1024 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
  }
}
@media (max-width:1024px) {
  .menu {
    display: none;
    top: 80px;
    left: 0;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 50;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    opacity: 0;
    transition: opacity .3s ease-out,-webkit-transform .3s ease-out;
    transition: opacity .3s ease-out,transform .3s ease-out;
    transition: opacity .3s ease-out,transform .3s ease-out,-webkit-transform .3s ease-out;
    z-index: -1
  }
  .menu.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: opacity .3s ease-out,-webkit-transform .3s ease-out;
    transition: opacity .3s ease-out,transform .3s ease-out;
    transition: opacity .3s ease-out,transform .3s ease-out,-webkit-transform .3s ease-out;
    z-index: 60
  }
}
@media (max-width:768px) {
  .menu {
    top: 81px
  }
}
@media (max-width:576px) {
  .menu {
    top: 63px
  }
}
.menu__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:1024px) {
  .menu__list {
    padding: 40px;
    padding-bottom: 72px;
    background-color: #fff;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
  }
}
@media (max-width:576px) {
  .menu__list {
    padding: 32px 16px 45px 16px
  }
}
.menu__item {
  margin-right: 40px
}
@media (max-width:1650px) {
  .menu__item {
    margin-right: 32px
  }
}
@media (max-width:1350px) {
  .menu__item {
    margin-right: 28px
  }
}
@media (max-width:1024px) {
  .menu__item:not(:last-child) {
    margin-bottom: 20px
  }
}
.menu__link {
  font-size: 18px;
  color: #fff;
  line-height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition: color .2s ease
}
.menu__link:hover {
  color: rgba(255,255,255,.5);
  transition: color .2s ease
}
@media (max-width:1650px) {
  .menu__link {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .menu__link {
    padding: 4px 0;
    font-size: 20px;
    color: #1a2e52;
    font-family: Roboto-Medium
  }
}
@media (max-width:576px) {
  .menu__link {
    font-size: 14px
  }
}
.menu__link.with-arrow {
  margin-right: 60px
}
@media (max-width:1650px) {
  .menu__link.with-arrow {
    margin-right: 40px
  }
}
@media (max-width:1024px) {
  .menu__link.with-arrow {
    margin-right: 24px;
    color: #fff;
    font-size: 16px;
    font-family: Roboto-Regular
  }
}
@media (max-width:700px) {
  .menu__link.with-arrow {
    display: none
  }
}
.menu__link-go {
  margin-left: 7px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  width: 17px;
  height: 17px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 100%
}
.menu__link-go img {
  width: 8px;
  height: auto
}
.login-link {
  color: #fff
}
.burger {
  display: none
}
@media (max-width:1024px) {
  .burger {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 32px;
    position: relative;
    width: 23px;
    height: 12px;
    cursor: pointer
  }
  .burger span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 8px;
    height: 2px;
    background-color: #fff;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear,-webkit-transform .2s linear
  }
  .burger span:last-child {
    bottom: 0;
    top: auto
  }
  .burger.active span {
    margin-top: -2px;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear,-webkit-transform .2s linear
  }
  .burger.active span:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%,0) rotate(45deg);
    transform: translate(-50%,0) rotate(45deg)
  }
  .burger.active span:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(-50%,0) rotate(-45deg);
    transform: translate(-50%,0) rotate(-45deg)
  }
}
@media (max-width:576px) {
  .burger {
    margin-right: 25px
  }
}
.header-procloud .header__logo1 {
  -webkit-flex: 0 0 68px;
  -ms-flex: 0 0 68px;
  flex: 0 0 68px
}
@media (max-width:1650px) {
  .header-procloud .header__logo1 {
    -webkit-flex: 0 0 48px;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px
  }
}
@media (max-width:576px) {
  .header-procloud .header__logo1 {
    -webkit-flex: 0 0 34px;
    -ms-flex: 0 0 34px;
    flex: 0 0 34px
  }
}
.header-procloud .header__logo2 {
  margin-left: 8px;
  -webkit-flex: 0 0 145px;
  -ms-flex: 0 0 145px;
  flex: 0 0 145px
}
@media (max-width:1650px) {
  .header-procloud .header__logo2 {
    margin-left: 6px;
    -webkit-flex: 0 0 103px;
    -ms-flex: 0 0 103px;
    flex: 0 0 103px
  }
}
@media (max-width:1100px) {
  .header-procloud .header__logo2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
  }
}
@media (max-width:1024px) {
  .header-procloud .header__logo2 {
    display: none
  }
}
.header-procloud .header__right-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.header-procloud .menu__link.with-arrow {
  margin-right: 28px
}
@media (max-width:1650px) {
  .header-procloud .menu__link.with-arrow {
    margin-right: 16px
  }
}
@media (max-width:576px) {
  .header-procloud .menu__link.with-arrow {
    font-size: 15px
  }
}
.header-procloud .menu__link.with-arrow:last-child {
  margin-right: 100px
}
@media (max-width:1350px) {
  .header-procloud .menu__link.with-arrow:last-child {
    margin-right: 87px
  }
}
@media (max-width:1024px) {
  .header-procloud .menu__link.with-arrow:last-child {
    margin-right: 52px
  }
}
@media (max-width:700px) {
  .header-procloud .menu__link.with-arrow:last-child {
    margin-right: 22px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
  }
}
.header-procloud .menu__link.login {
  padding: 5px 0;
  color: #fff;
  padding-right: 35px;
  background: url($assets-login-white-svg) right center no-repeat;
  cursor: pointer;
  transition: color .2s ease
}
.header-procloud .menu__link.login:hover {
  color: rgba(255,255,255,.5);
  transition: color .2s ease
}
@media (max-width:1920px) {
  .header-procloud .menu__link.login {
    background-size: 20px
  }
}
@media (max-width:1024px) {
  .header-procloud .menu__link.login {
    font-size: 16px;
    font-family: Roboto-Regular
  }
}
@media (max-width:576px) {
  .header-procloud .menu__link.login {
    padding-right: 25px;
    font-size: 15px;
    background: url($assets-login-white-svg) right 56% no-repeat;
    background-size: 18px
  }
}
main {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #fafcff;
}
.promo {
  margin-top: 96px;
  padding: 60px 0;
  background-color: #1976d2
}
@media (max-width:1650px) {
  .promo {
    margin-top: 82px;
    padding: 56px 0
  }
}
@media (max-width:768px) {
  .promo {
    padding: 60px 0
  }
}
@media (max-width:576px) {
  .promo {
    margin-top: 68px;
    padding: 40px 0
  }
}
.promo__switch {
  position: relative;
  margin: 0 auto;
  margin-bottom: 32px;
  padding: 2px;
  height: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background-color: rgba(255,255,255,.05)
}
@media (max-width:1650px) {
  .promo__switch {
    margin-bottom: 28px
  }
}
@media (max-width:1350px) {
  .promo__switch {
    height: 42px
  }
}
@media (max-width:768px) {
  .promo__switch {
    margin-bottom: 40px
  }
}
@media (max-width:576px) {
  .promo__switch {
    margin-bottom: 32px
  }
}
.promo__switch button {
  position: relative;
  height: 41px;
  border-radius: 8px;
  color: #fff;
  transition: all .3s ease;
  z-index: 1;
  line-height: normal;
  padding: 8px 23px
}
.promo__switch button.active {
  color: #1976d2;
  transition: all .3s ease
}
.promo__switch button:hover {
  background: rgba(255,255,255,.05);
  transition: all .3s ease
}
@media (max-width:1650px) {
  .promo__switch button {
    padding: 8px 22px
  }
}
@media (max-width:1350px) {
  .promo__switch button {
    height: 38px
  }
}
@media (max-width:576px) {
  .promo__switch button {
    padding: 8px 24px
  }
}
@media (max-width:360px) {
  .promo__switch button {
    padding: 13px 14px
  }
}
.promo__sw2 {
  margin-left: 4px
}
.promo__form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}
@media (max-width:576px) {
  .promo__form {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
.switch-label {
  position: absolute;
  background-color: #fff;
  border-radius: 8px;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: calc(100% - 4px);
  z-index: 0;
  transition: .3s ease-out all
}
.switch-label.active-left {
  left: 2px;
  width: 146px
}
@media (max-width:1650px) {
  .switch-label.active-left {
    width: 133px
  }
}
@media (max-width:768px) {
  .switch-label.active-left {
    width: 132px
  }
}
@media (max-width:360px) {
  .switch-label.active-left {
    width: 112px
  }
}
.switch-label.active-right {
  left: 150px;
  /*width: 150px*/
}
@media (max-width:1650px) {
  .switch-label.active-right {
    /*width: 195px;*/
    left: 139px
  }
}
@media (max-width:768px) {
  .switch-label.active-right {
    /*width: 189px;*/
    left: 138px
  }
}
@media (max-width:360px) {
  .switch-label.active-right {
    /*width: 169px;*/
    left: 118px
  }
}
.requests {
  background-color: #fafcff
}
.requests__header {
  padding-bottom: 8px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:1650px) {
  .requests__header {
    padding-left: 16px;
    padding-right: 16px
  }
}
@media (max-width:768px) {
  .requests__header {
    padding-left: 20px;
    padding-right: 20px
  }
}
@media (max-width:576px) {
  .requests__header {
    padding-left: 16px;
    padding-right: 16px
  }
}
.requests__header-col {
  font-size: 12px;
  opacity: .3;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: left;
  line-height: 100%
}
.requests__header-col:last-child {
  padding-right: 20px
}
.requests__row {
  padding: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1a2e52;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  border-radius: 8px;
  background: #fff
}
.requests__row:not(:last-child) {
  margin-bottom: 18px
}
@media (max-width:1650px) {
  .requests__row:not(:last-child) {
    margin-bottom: 16px
  }
}
@media (max-width:576px) {
  .requests__row:not(:last-child) {
    margin-bottom: 8px
  }
}
@media (max-width:1650px) {
  .requests__row {
    padding: 16px
  }
}
.requests__row:hover .requests__row-col.subject span{
  text-decoration: underline
}
.requests__row-col:not(:first-child) {
  opacity: .43
}
.requests__row-col:last-child {
  opacity: 1;
  font-family: Roboto-Bold;
  border-radius: 8px
}
.requests__row-col:last-child span {
  width: 95px;
  display: inline-block;
  padding: 8px 16px;
  background: rgb(255 156 41 / 10%);
  border-radius: 8px;
  color: #efab5d;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px
}
@media (max-width:576px) {
  .requests__row-col:last-child span {
    width: 70px;
    padding: 6px 7px;
    font-size: 12px
  }
}
.requests__row-col.subject {
  position: relative;
  font-family: Roboto-Bold;
  text-overflow: ellipsis
}
.requests__row-col.subject span{
  padding: 0 8px;
}
.requests__row-col.subject i{
  font-family: Roboto-Regular;
  font-style: normal;
  font-size: 16px;
  opacity: .43;
}
@media (max-width:576px) {
  .requests__row-col.subject i{
    font-size: 12px;
  }
}
.requests .subject {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1 0 0 !important;
  margin-right: 30px;
}
.requests .id {
  -webkit-flex: 0 0 10%;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%
}
@media (max-width:1350px) {
  .requests .id {
    -webkit-flex: 0 0 6%;
    -ms-flex: 0 0 6%;
    flex: 0 0 6%
  }
}
@media (max-width:768px) {
  .requests .id {
    -webkit-flex: 0 0 8%;
    -ms-flex: 0 0 8%;
    flex: 0 0 8%
  }
}
@media (max-width:710px) {
  .requests .id {
    display: none
  }
}
.requests .created,
.requests .last {
  -webkit-flex: 0 0 12%;
  -ms-flex: 0 0 12%;
  flex: 0 0 12%
}
.requests .time-field{
   -webkit-flex: 0 0 75px !important;
  -ms-flex: 0 0 75px !important;
  flex: 0 0 75px !important;
  margin-right: 30px !important;
}
@media (max-width:1350px) {
  .requests .created,
  .requests .last {
    -webkit-flex: 0 0 14%;
    -ms-flex: 0 0 14%;
    flex: 0 0 14%
  }
}
@media (max-width:768px) {
  .requests .created,
  .requests .last {
    -webkit-flex: 0 0 21%;
    -ms-flex: 0 0 21%;
    flex: 0 0 21%
  }
  .requests .time-field{
    margin-right: 15px !important;
  }
}
@media (max-width:576px) {
  .requests .created,
  .requests .last {
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%
  }
  .requests .time-field{
   -webkit-flex: 0 0 60px !important;
    -ms-flex: 0 0 60px !important;
    flex: 0 0 60px !important;
    margin-right: 10px !important;
  }
}
@media (max-width:1650px) {
  .requests .last {
    margin-right: 44px
  }
}
@media (max-width:1024px) {
  .requests .last {
    margin-right: 0
  }
}
@media (max-width:768px) {
  .requests .last {
    display: none
  }
}
.requests .status {
  padding-left: 0;
  -webkit-flex: 0 0 95px;
  -ms-flex: 0 0 95px;
  flex: 0 0 95px
}
.requests .status.solved span {
  background: rgba(183,190,203,.1)!important;
  color: #7a87a6!important;
  font-size: 12px
}
.requests .status.answered span,
.answered-ticket-label{
  background:#E8F5E9 !important;
  color: #436C45 !important;
}
@media (max-width:576px) {
  .requests .status {
    -webkit-flex: 0 0 70px;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px
  }
}
.requests__status.solved span {
  background: rgba(183,190,203,.1)!important;
  color: #7a87a6!important
}
.tabs-content.hide {
  display: none
}
.tabs-content.show {
  display: block
}
.search-block {
  margin-right: 8px;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}
@media (max-width:1650px) {
  .search-block {
    margin-right: 12px
  }
}
@media (max-width:576px) {
  .search-block {
    margin-right: 0;
    margin-bottom: 4px
  }
}
.search-block__label {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 20px;
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 100%
}
@media (max-width:576px) {
  .search-block__label {
    display: none
  }
}
.search-block__row {
  height: 56px;
  padding: 6px 6px 6px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between
}
@media (max-width:1650px) {
  .search-block__row {
    height: 52px
  }
}
@media (max-width:576px) {
  .search-block__row {
    height: 48px
  }
}
.search-block input {
  -webkit-appearance: none;
  padding-left: 0;
  width: 100%;
  background-color: transparent;
  color: #1a2e52;
  outline: transparent;
  border: none;
  cursor: pointer;
  line-height: normal
}
.search-block input::-webkit-input-placeholder {
  font-size: 18px;
  color: #aaa
}
.search-block input::-moz-placeholder {
  font-size: 18px;
  color: #aaa
}
.search-block input:-ms-input-placeholder {
  font-size: 18px;
  color: #aaa
}
.search-block input::placeholder {
  font-size: 18px;
  color: #aaa
}
@media (max-width:1650px) {
  .search-block input::-webkit-input-placeholder {
    font-size: 16px
  }
  .search-block input::-moz-placeholder {
    font-size: 16px
  }
  .search-block input:-ms-input-placeholder {
    font-size: 16px
  }
  .search-block input::placeholder {
    font-size: 16px
  }
}
@media (max-width:576px) {
  .search-block input::-webkit-input-placeholder {
    font-size: 15px
  }
  .search-block input::-moz-placeholder {
    font-size: 15px
  }
  .search-block input:-ms-input-placeholder {
    font-size: 15px
  }
  .search-block input::placeholder {
    font-size: 15px
  }
}
.search-block__btn {
  margin-left: 32px;
  width: 44px;
  height: 44px;
  -webkit-flex: 0 0 44px;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(45,77,134,.1);
  border-radius: 7px;
  cursor: pointer;
  transition: background .3s ease
}
.search-block__btn img {
  width: 24px;
  height: 24px
}
.search-block__btn:hover {
  background: rgba(45,77,134,.2);
  transition: background .3s ease
}
@media (max-width:1650px) {
  .search-block__btn {
    width: 40px;
    height: 40px;
    -webkit-flex: 0 0 40px;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px
  }
}
@media (max-width:1350px) {
  .search-block__btn img {
    width: 20px;
    height: 20px
  }
}
.status-block {
  /*-webkit-flex: 0 0 210px;
  -ms-flex: 0 0 210px;
  flex: 0 0 210px;*/
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  
}
/*@media (max-width:1650px) {
  .status-block {
    -webkit-flex: 0 0 176px;
    -ms-flex: 0 0 176px;
    flex: 0 0 176px
  }
}
@media (max-width:1024px) {
  .status-block {
    -webkit-flex: 0 0 202px;
    -ms-flex: 0 0 202px;
    flex: 0 0 202px
  }
}*/
@media (max-width:576px) {
  .status-block {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }
}
.status-block__hidden {
  height: 56px
}
@media (max-width:1650px) {
  .status-block__hidden {
    height: 52px
  }
}
@media (max-width:576px) {
  .status-block__hidden {
    height: 48px
  }
}
.status-block__label {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 20px;
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 100%
}
@media (max-width:576px) {
  .status-block__label {
    display: none
  }
}
.status-block__row {
  position: relative;
  padding: 0 15px 0 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden
}
@media (max-width:1650px) {
  .status-block__row {
    padding-right: 12px
  }
}
@media (max-width:1350px) {
  .status-block__row {
    padding-right: 18px
  }
}
@media (max-width:576px) {
  .status-block__row {
    padding-right: 20px
  }
}
.status-block__row.is-active img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: -webkit-transform .3s linear;
  transition: transform .3s linear;
  transition: transform .3s linear,-webkit-transform .3s linear
}
.status-block__row.is-active .status-block__drop-body {
  box-sizing: content-box;
  padding-bottom: 20px;
  padding-top: 6px;
  transition: padding .3s linear,max-height .3s linear
}
@media (max-width:1650px) {
  .status-block__row.is-active .status-block__drop-body {
    padding-top: 0;
    padding-bottom: 16px
  }
}
@media (max-width:1024px) {
  .status-block__row.is-active .status-block__drop-body {
    padding-top: 0;
    padding-bottom: 18px
  }
}
.status-block__drop-header {
  height: 56px;
  padding: 19px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer
}
.status-block__drop-header img {
  transition: -webkit-transform .3s linear;
  transition: transform .3s linear;
  transition: transform .3s linear,-webkit-transform .3s linear
}
@media (max-width:1650px) {
  .status-block__drop-header {
    height: 52px
  }
}
@media (max-width:576px) {
  .status-block__drop-header {
    height: 48px;
    padding: 16px 0
  }
}
.status-block__drop-body {
  max-height: 0;
  transition: padding .3s linear,max-height .3s linear
}
.status-block .text1 {
  color: #aaa
}
.status-block__drop-item {
  cursor: pointer
}
.status-block__drop-item:not(:last-child) {
  margin-bottom: 16px
}
@media (max-width:1650px) {
  .status-block__drop-item:not(:last-child) {
    margin-bottom: 12px
  }
}
@media (max-width:1024px) {
  .status-block__drop-item:not(:last-child) {
    margin-bottom: 16px
  }
}
@media (max-width:576px) {
  .status-block__drop-item:not(:last-child) {
    margin-bottom: 12px
  }
}
.status-block__drop-current.correct {
  color: #1a2e52!important
}
.status-block [data-num="0"] {
  color: #aaa!important
}
.status-block__drop-btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.status-block__drop-btn img {
  width: 12px;
  height: auto
}
.choices__inner {
  background-color: transparent;
  border: none;
  padding: 0;
  padding-bottom: 0!important
}
.choices[data-type*=select-one].choices__inner {
  padding-bottom: 0!important
}
.choices__list--single {
  height: 56px;
  padding: 19px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer
}
.choices__list--single img {
  transition: -webkit-transform .3s linear;
  transition: transform .3s linear;
  transition: transform .3s linear,-webkit-transform .3s linear
}
@media (max-width:1650px) {
  .choices__list--single {
    height: 52px
  }
}
@media (max-width:576px) {
  .choices__list--single {
    height: 48px;
    padding: 16px 0
  }
}
.request {
  margin-top: 115px;
  background: #fafcff
}
@media (max-width:1650px) {
  .request {
    margin-top: 81px
  }
}
@media (max-width:576px) {
  .request {
    margin-top: 63px
  }
}
.request__inner {
  position: relative;
  padding: 40px 0 40px 0
}
@media (max-width:1650px) {
  .request__inner {
    padding: 40px 0 36px 0
  }
}
@media (max-width:1350px) {
  .request__inner {
    padding: 40px 0
  }
}
@media (max-width:1024px) {
  .request__inner {
    padding: 28px 0 80px 0
  }
}
@media (max-width:576px) {
  .request__inner {
    padding: 28px 0 60px 0
  }
}
.breadcrumbs {
  position: absolute;
  top: 40px;
  left: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: #1a2e52;
  font-family: Roboto-Medium
}
@media (max-width:1650px) {
  .breadcrumbs {
    top: 28px
  }
}
@media (max-width:1024px) {
  .breadcrumbs {
    top: 0;
    position: relative;
    margin-bottom: 20px
  }
}
@media (max-width:576px) {
  .breadcrumbs {
    margin-bottom: 24px
  }
}
.breadcrumbs__arr {
  margin-right: 10px;
  -webkit-flex: 0 0 32px;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: #f3f6fa;
  border-radius: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.breadcrumbs__arr img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}
.breadcrumbs__arr span {
  font-family: Roboto-Medium;
  color: #1a2e52
}
@media (max-width:576px) {
  .breadcrumbs__arr {
    -webkit-flex: 0 0 24px;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px
  }
}
.form-request {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}
.form-request input,
.form-request textarea {
  -webkit-appearance: none;
  margin-bottom: 20px;
  padding: 17px 20px;
  width: 100%;
  outline: 0;
  border: none;
  border: 1px solid rgba(26,46,82,.2);
  background-color: transparent;
  border-radius: 10px;
  color: #1a2e52;
  font-size: 18px;
  resize: none;
  line-height: normal
}
@media (max-width:1650px) {
  .form-request input,
  .form-request textarea {
    padding: 15px 18px;
    margin-bottom: 12px;
    font-size: 16px
  }
}
@media (max-width:576px) {
  .form-request input,
  .form-request textarea {
    padding: 13px 16px;
    margin-bottom: 8px;
    font-size: 15px
  }
}
.form-request input::-webkit-input-placeholder,
.form-request textarea::-webkit-input-placeholder {
  color: rgba(26,46,82,.4);
  font-size: 18px
}
.form-request input::-moz-placeholder,
.form-request textarea::-moz-placeholder {
  color: rgba(26,46,82,.4);
  font-size: 18px
}
.form-request input:-ms-input-placeholder,
.form-request textarea:-ms-input-placeholder {
  color: rgba(26,46,82,.4);
  font-size: 18px
}
.form-request input::placeholder,
.form-request textarea::placeholder {
  color: rgba(26,46,82,.4);
  font-size: 18px
}
@media (max-width:1650px) {
  .form-request input::-webkit-input-placeholder,
  .form-request textarea::-webkit-input-placeholder {
    font-size: 16px
  }
  .form-request input::-moz-placeholder,
  .form-request textarea::-moz-placeholder {
    font-size: 16px
  }
  .form-request input:-ms-input-placeholder,
  .form-request textarea:-ms-input-placeholder {
    font-size: 16px
  }
  .form-request input::placeholder,
  .form-request textarea::placeholder {
    font-size: 16px
  }
}
@media (max-width:576px) {
  .form-request input::-webkit-input-placeholder,
  .form-request textarea::-webkit-input-placeholder {
    font-size: 15px
  }
  .form-request input::-moz-placeholder,
  .form-request textarea::-moz-placeholder {
    font-size: 15px
  }
  .form-request input:-ms-input-placeholder,
  .form-request textarea:-ms-input-placeholder {
    font-size: 15px
  }
  .form-request input::placeholder,
  .form-request textarea::placeholder {
    font-size: 15px
  }
}
.form-request__subject {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}
.form-request__subject input {
  padding-right: 65px
}
@media (max-width:576px) {
  .form-request__subject input {
    padding-right: 60px
  }
}
.form-request__descr {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}
.form-request__descr textarea {
  padding-right: 65px
}
@media (max-width:576px) {
  .form-request__descr textarea {
    padding-right: 55px
  }
}
.form-request__upload {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: rgba(26,46,82,.4);
  font-size: 16px;
  background: rgba(26,46,82,.1)
}
.form-request__upload img {
  width: 24px;
  height: 24px;
  opacity: .6;
  transition: opacity .3s ease
}
.form-request__upload:hover {
  cursor: pointer
}
.form-request__upload:hover img {
  opacity: 1;
  transition: opacity .3s ease
}
@media (max-width:1650px) {
  .form-request__upload {
    bottom: 30px;
    right: 18px;
    font-size: 16px
  }
}
@media (max-width:576px) {
  .form-request__upload {
    width: 32px;
    height: 32px;
    bottom: 20px;
    right: 12px;
    font-size: 15px
  }
}
.form-request textarea {
  -webkit-appearance: none;
  overflow-y: auto;
  height: 260px;
  color: #1a2e52
}
.form-request textarea::-webkit-input-placeholder {
  color: rgba(26,46,82,.4)
}
.form-request textarea::-moz-placeholder {
  color: rgba(26,46,82,.4)
}
.form-request textarea:-ms-input-placeholder {
  color: rgba(26,46,82,.4)
}
.form-request textarea::placeholder {
  color: rgba(26,46,82,.4)
}
@media (max-width:1650px) {
  .form-request textarea {
    height: 211px
  }
}
@media (max-width:1024px) {
  .form-request textarea {
    height: 200px
  }
}
@media (max-width:576px) {
  .form-request textarea {
    height: 220px
  }
}
.form-request__btn {
  height: 52px;
  width: 100%;
  background: #1a2e52;
  border-radius: 10px;
  color: #fff;
  font-family: Roboto-Bold;
  cursor: pointer
}
@media (max-width:576px) {
  .form-request__btn {
    height: 48px
  }
}
.form-request .counter-input {
  position: absolute;
  top: calc(50% - 9px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  color: rgba(26,46,82,.4);
  font-size: 16px;
  line-height: 100%
}
@media (max-width:1650px) {
  .form-request .counter-input {
    top: calc(50% - 5.5px);
    right: 18px;
    font-size: 16px
  }
}
@media (max-width:576px) {
  .form-request .counter-input {
    top: calc(50% - 3px);
    right: 16px;
    font-size: 15px
  }
}
.upload-files {
  margin-top: -4px;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}
@media (max-width:1650px) {
  .upload-files {
    margin-bottom: 12px
  }
}
@media (max-width:576px) {
  .upload-files {
    margin-bottom: 8px
  }
}
.upload-file {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #f3f6fa;
  border-radius: 8px
}
.upload-file:not(:last-child) {
  margin-right: 12px
}
.upload-file img {
  height: 54px;
  width: 47px
}
@media (max-width:576px) {
  .upload-file img {
    height: 60px;
    width: 51px
  }
}
@media (max-width:576px) {
  .upload-file {
    width: 92px;
    height: 92px
  }
  .upload-file:not(:last-child) {
    margin-right: 8px
  }
}
.upload-close {
  position: absolute;
  width: 11px;
  height: 10px;
  top: 12px;
  right: 12px;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}
.upload-close:hover span {
  background-color: #1a2e52;
  transition: background-color .3s ease
}
.upload-close span {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 100%;
  height: 2px;
  background-color: #7a87a6;
  border-radius: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: background-color .3s ease
}
.upload-close span:last-child {
  bottom: 0
}
.upload-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
.upload-close span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%,0) rotate(45deg);
  transform: translate(-50%,0) rotate(45deg)
}
.upload-close span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%,0) rotate(-45deg);
  transform: translate(-50%,0) rotate(-45deg)
}
@media (max-width:576px) {
  .upload-close {
    top: 10px;
    right: 10px
  }
}
.upload-progress {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 12px;
  letter-spacing: .03em;
  color: rgba(122,135,166,.5);
  line-height: 100%
}
@media (max-width:576px) {
  .upload-progress {
    bottom: 4px;
    right: 4px
  }
}
.circle-name {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 56px;
  height: 56px;
  -webkit-flex: 0 0 56px;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  border-radius: 100%;
  background: #f9bcbc;
  color: #fff;
  font-size: 20px;
  font-family: Roboto-Bold
}
@media (max-width:576px) {
  .circle-name {
    margin-right: 8px;
    -webkit-flex: 0 0 48px;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 18px
  }
}
.upload-file.active.ticket .front {
  z-index: -1;
  opacity: 0
}
.upload-file.active.ticket .upload-file__back {
  transition: opacity .4s linear;
  z-index: 6;
  opacity: 1
}
.upload-file.ticket {
  margin-bottom: 12px;
  position: relative;
  cursor: pointer
}
@media (max-width:1350px) {
  .upload-file.ticket {
    width: 100px;
    height: 100px
  }
}
@media (max-width:576px) {
  .upload-file.ticket {
    margin-bottom: 8px
  }
}
.upload-file.ticket .front {
  z-index: 5;
  opacity: 1;
  transition: opacity .4s linear
}
.upload-file.ticket .upload-file__back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 12px;
  padding-bottom: 9px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fafcff;
  box-shadow: 0 2px 10px rgba(191,197,206,.4);
  border-radius: 8px;
  font-size: 14px;
  line-height: 120%;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s linear
}
@media (max-width:576px) {
  .upload-file.ticket .upload-file__back {
    font-size: 12px
  }
}
.upload-file.ticket .upload-file__name {
  margin-bottom: 4px
}
.upload-file.ticket .upload-file__size {
  color: #1a2e52;
  opacity: .2;
  font-size: 12px
}
.upload-file.ticket .upload-file__download {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  cursor: pointer
}
.upload-file.ticket .upload-file__download img {
  width: 16px;
  height: 16px
}
.ticket {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}
.ticket-wrap {
  max-width: 1316px
}
@media (max-width:1650px) {
  .ticket-wrap {
    max-width: 1140px
  }
}
@media (max-width:1420px) {
  .ticket-wrap {
    max-width: 1108px
  }
}
@media (max-width:1350px) {
  .ticket-wrap {
    max-width: 986px
  }
}
@media (max-width:1250px) {
  .ticket-wrap {
    max-width: 962px;
    max-width: calc(100% - 185px)
  }
}
@media (max-width:1100px) {
  .ticket-wrap {
    max-width: 100%
  }
}
.ticket-wrap__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between
}
@media (max-width:1100px) {
  .ticket-wrap__inner {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}
.ticket-wrap__left {
  -webkit-flex: 0 1 59.5%;
  -ms-flex: 0 1 59.5%;
  flex: 0 1 59.5%
}
@media (max-width:1650px) {
  .ticket-wrap__left {
    -webkit-flex: 0 1 63.5%;
    -ms-flex: 0 1 63.5%;
    flex: 0 1 63.5%
  }
}
@media (max-width:1420px) {
  .ticket-wrap__left {
    -webkit-flex: 0 1 58%;
    -ms-flex: 0 1 58%;
    flex: 0 1 58%
  }
}
@media (max-width:1350px) {
  .ticket-wrap__left {
    -webkit-flex: 0 1 61%;
    -ms-flex: 0 1 61%;
    flex: 0 1 61%
  }
}
@media (max-width:1100px) {
  .ticket-wrap__left {
    margin-top: 44px;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%
  }
}
@media (max-width:576px) {
  .ticket-wrap__left {
    margin-top: 32px
  }
}
.ticket-wrap__right {
  -webkit-flex: 0 0 418px;
  -ms-flex: 0 0 418px;
  flex: 0 0 418px
}
@media (max-width:1650px) {
  .ticket-wrap__right {
    -webkit-flex: 0 0 342px;
    -ms-flex: 0 0 342px;
    flex: 0 0 342px
  }
}
@media (max-width:1350px) {
  .ticket-wrap__right {
    -webkit-flex: 0 0 280px;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px
  }
}
@media (max-width:1100px) {
  .ticket-wrap__right {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%
  }
}
.ticket-wrap__right.fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 60px
}
.ticket-wrap__title {
  margin-bottom: 20px;
  line-height: 100%;
  font-size: 32px;
  font-family: Roboto-Bold;
  line-height: 100%
}
@media (max-width:1650px) {
  .ticket-wrap__title {
    margin-bottom: 16px;
    font-size: 28px
  }
}
@media (max-width:1350px) {
  .ticket-wrap__title {
    font-size: 24px
  }
}
@media (max-width:1100px) {
  .ticket-wrap__title {
    width: 80%
  }
}
@media (max-width:768px) {
  .ticket-wrap__title {
    width: 100%
  }
}
@media (max-width:576px) {
  .ticket-wrap__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 109%
  }
}
.ticket-wrap__text {
  margin-bottom: 24px;
  position: relative;
  padding-left: 10px;
  letter-spacing: .03em;
  color: rgba(26,46,82,.59);
  line-height: 120%
}
.ticket-wrap__text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #e74
}
@media (max-width:1350px) {
  .ticket-wrap__text {
    margin-bottom: 20px
  }
}
@media (max-width:1100px) {
  .ticket-wrap__text {
    margin-bottom: 24px;
    width: 80%
  }
}
@media (max-width:768px) {
  .ticket-wrap__text {
    width: 100%
  }
}
@media (max-width:576px) {
  .ticket-wrap__text {
    margin-bottom: 20px
  }
}
.ticket-wrap__footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px
}
@media (max-width:1650px) {
  .ticket-wrap__footer {
    font-size: 15px
  }
}
@media (max-width:1100px) {
  .ticket-wrap__footer {
    width: 100%;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}
.ticket-wrap__arr {
  margin-right: 10px;
  -webkit-flex: 0 0 20px;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: #f3f6fa;
  border-radius: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.ticket-wrap__arr img {
  width: 13px;
  height: 6px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}
.ticket-wrap__arr span {
  font-family: Roboto-Medium;
  color: #1a2e52
}
@media (max-width:1650px) {
  .ticket-wrap__arr {
    -webkit-flex: 0 0 18px;
    -ms-flex: 0 0 18px;
    flex: 0 0 18px;
    width: 18px;
    height: 18px
  }
}
@media (max-width:576px) {
  .ticket-wrap__arr {
    -webkit-flex: 0 0 24px;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px
  }
}
.ticket-wrap__back {
  margin-right: 28px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:1650px) {
  .ticket-wrap__back {
    margin-right: 20px
  }
}
.ticket-wrap__back span {
  margin-left: 8px
}
.ticket-wrap__next {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.ticket-wrap__next span {
  margin-right: 8px
}
.ticket-wrap__next img {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg)
}
.ticket-header {
  margin-bottom: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 59.5%
}
@media (max-width:1650px) {
  .ticket-header {
    margin-bottom: 20px;
    width: 63.5%
  }
}
@media (max-width:1420px) {
  .ticket-header {
    width: 58%
  }
}
@media (max-width:1350px) {
  .ticket-header {
    width: 61%
  }
}
@media (max-width:1100px) {
  .ticket-header {
    padding-left: 39vw;
    width: 100%
  }
}
@media (max-width:1024px) {
  .ticket-header {
    margin-bottom: 24px
  }
}
@media (max-width:650px) {
  .ticket-header {
    padding-left: 31vw
  }
}
.ticket-header__right {
  padding: 7px 10px 9px 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(183,190,203,.1);
  border-radius: 6px;
  color: #7a87a6;
  font-size: 18px;
  line-height: 100%;
  font-family: Roboto-Bold
}
@media (max-width:1650px) {
  .ticket-header__right {
    font-size: 16px
  }
}
@media (max-width:576px) {
  .ticket-header__right span {
    font-size: 15px
  }
  .ticket-header__right svg {
    margin-right: 4px
  }
}
.open-ticket {
   background: #fbebcc;
  color: #ffa800;
}
.ticket-header__left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
.ticket-header .ticket-text {
  position: relative;
  color: rgba(26,46,82,.4);
  font-size: 14px;
  line-height: 100%
}
.ticket-header .ticket-text:not(:last-child) {
  margin-right: 20px
}
.ticket-header .ticket-text:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -12px;
  width: 4px;
  height: 4px;
  background: #a0aaba;
  opacity: .4;
  border-radius: 100%
}
@media (max-width:576px) {
  .ticket-header .ticket-text:not(:last-child) {
    margin-right: 10px
  }
  .ticket-header .ticket-text:not(:last-child):after {
    width: 3px;
    height: 3px;
    right: -6px
  }
}
.ticket-att {
  margin-bottom: 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-family: Roboto-Medium;
  color: rgba(122,135,166,.6);
  letter-spacing: .03em
}
@media (max-width:576px) {
  .ticket-att {
    font-size: 15px
  }
}
.ticket-att__download {
  width: 32px;
  height: 32px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(26,46,82,.1);
  border-color: rgba(26,46,82,.1);
  transition: border-color .3s ease;
  border-radius: 100%;
  cursor: pointer
}
.ticket-att__download:hover {
  border-color: #6b7998;
  transition: border-color .3s ease
}
.ticket-files {
  margin-bottom: -12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
body.mouse .upload-file.ticket:hover .front {
  z-index: -1;
  opacity: 0
}
body.mouse .upload-file.ticket:hover .upload-file__back {
  transition: opacity .4s linear;
  z-index: 6;
  opacity: 1
}
.chat {
  margin-top: 52px;
  margin-bottom: 80px;
  padding-top: 52px;
  border-top: 1px solid rgba(26,46,82,.1);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}
@media (max-width:1650px) {
  .chat {
    margin-bottom: 60px;
    margin-top: 44px;
    padding-top: 44px
  }
}
@media (max-width:1350px) {
  .chat {
    margin-top: 48px;
    padding-top: 48px
  }
}
@media (max-width:1024px) {
  .chat {
    padding-top: 40px;
    margin-top: 40px;
    margin-bottom: 72px
  }
}
.chat__log {
  margin-right: 12px;
  -webkit-flex: 0 0 44px;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  height: 44px;
  font-size: 16px;
  background-color: #f4b998
}
@media (max-width:1024px) {
  .chat__log {
    margin-right: 8px
  }
}
@media (max-width:576px) {
  .chat__log {
    -webkit-flex: 0 0 42px;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    height: 42px;
    font-size: 15px
  }
}
.chat__mes {
  position: relative;
  max-width: 610px;
  margin-right: 8px;
  padding: 16px 75px 25px 20px;
  background: rgba(26,46,82,.03);
  border-radius: 10px
}
@media (max-width:1650px) {
  .chat__mes {
    max-width: 526px
  }
}
@media (max-width:576px) {
  .chat__mes {
    margin-right: 0;
    padding: 12px;
    padding-bottom: 30px
  }
}
.chat__name {
  margin-bottom: 3px;
  font-family: Roboto-Bold
}
.chat__text {
  letter-spacing: .03em;
  line-height: 120%
}
.chat__text a{
  text-decoration: underline;
}
.chat__text a:hover{
  text-decoration: none;
}
.chat__time {
  position: absolute;
  right: 16px;
  bottom: 8px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 12px;
  color: rgba(122,135,166,.5);
  line-height: 100%;
  white-space: nowrap
}
.chat__to {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.chat__to .chat__mes {
  background: rgba(25,118,210,.1)
}
.chat__to .chat-row__col {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto
}
.chat__to .chat__log {
  margin-right: 0;
  margin-left: 12px;
  background-color: #f9bcbc
}
@media (max-width:1024px) {
  .chat__to .chat__log {
    margin-right: 0;
    margin-left: 8px
  }
}
.chat__to .chat__mes {
  margin-left: 8px;
  margin-right: 0
}
.chat textarea {
  -webkit-appearance: none;
  height: 52px;
  overflow: hidden;
  resize: none
}
.chat-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px
}
@media (max-width:576px) {
  .chat-row {
    margin-bottom: 32px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
.chat-row__col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}
@media (max-width:576px) {
  .chat-row__col {
    margin-bottom: 4px;
    max-width: 100%
  }
}
.chat-form-row {
  margin-right: 5px;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative
}
.chat-form-row textarea {
  -webkit-appearance: none;
  margin-bottom: -5px;
  height: 52px;
  width: 100%;
  padding: 16px 45px 14px 20px;
  color: #1a2e52;
  border: 1px solid rgba(183,190,203,.5);
  border-radius: 6px;
  resize: none;
  overflow: hidden;
  background: #fafcff
}
.chat-form-row textarea::-webkit-input-placeholder {
  color: rgba(26,46,82,.3)
}
.chat-form-row textarea::-moz-placeholder {
  color: rgba(26,46,82,.3)
}
.chat-form-row textarea:-ms-input-placeholder {
  color: rgba(26,46,82,.3)
}
.chat-form-row textarea::placeholder {
  color: rgba(26,46,82,.3)
}
@media (max-width:576px) {
  .chat-form-row textarea {
    height: 42px;
    padding: 12px 45px 10px 12px
  }
}
.chat-form {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end
}
.chat-form__send {
  margin-bottom: 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer
}
.chat-form__send svg {
  fill: #2b3f6c;
  opacity: .6
}
@media (max-width:576px) {
  .chat-form__send {
    margin-bottom: 12px
  }
}
.chat-form__send:hover svg {
  fill: #303c57;
  opacity: 1
}
.files-chat {
  margin-top: 20px
}
@media (max-width:1650px) {
  .files-chat {
    margin-top: 16px
  }
}
@media (max-width:576px) {
  .files-chat {
    margin-top: 12px
  }
}
.ticket-data {
  margin-bottom: 20px;
  padding: 32px 32px 36px 32px;
  background: rgba(239,243,249,.6);
  border-radius: 10px
}
@media (max-width:1650px) {
  .ticket-data {
    margin-bottom: 16px;
    padding: 20px;
    padding-bottom: 24px
  }
}
@media (max-width:640px) {
  .ticket-data {
    padding-bottom: 0;
    overflow: hidden
  }
  .ticket-data.is-active {
    padding-bottom: 24px
  }
}
.ticket-data__more {
  display: none
}
@media (max-width:640px) {
  .ticket-data__more {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    font-size: 14px;
    color: #1976d2;
    right: 0;
    top: 0
  }
}
.ticket-data__table {
  position: relative
}
@media (max-width:1100px) {
  .ticket-data__table {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
  }
}
@media (max-width:640px) {
  .ticket-data__table {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
.ticket-data__part1 {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,46,82,.1)
}
@media (max-width:1350px) {
  .ticket-data__part1 {
    padding-bottom: 20px
  }
}
@media (max-width:1100px) {
  .ticket-data__part1 {
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(26,46,82,.1)
  }
}
@media (max-width:640px) {
  .ticket-data__part1 {
    padding-right: 90px;
    padding-bottom: 24px;
    border-right: none
  }
}
.ticket-data__part2 {
  padding-top: 24px
}
@media (max-width:1350px) {
  .ticket-data__part2 {
    padding-bottom: 20px
  }
}
@media (max-width:1100px) {
  .ticket-data__part2 {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 32px
  }
}
@media (max-width:640px) {
  .ticket-data__part2 {
    padding-left: 0;
    max-height: 0;
    transition: all .3s ease
  }
  .ticket-data__part2.is-active {
    box-sizing: content-box;
    transition: all .3s ease;
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(26,46,82,.1)
  }
}
.ticket-data .ticket-part {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px 4px
}
@media (max-width:1650px) {
  .ticket-data .ticket-part {
    gap: 19px 4px
  }
}
@media (max-width:1100px) {
  .ticket-data .ticket-part {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
  }
}
.ticket-data .table-text {
  font-size: 16px;
  font-family: Roboto-Medium;
  opacity: .5;
  line-height: 100%
}
@media (max-width:1650px) {
  .ticket-data .table-text {
    font-size: 14px
  }
}
.ticket-data__right.table-text {
  opacity: 1;
  font-family: Roboto-Regular
}
@media (max-width:640px) {
  .ticket-data__left span {
    display: none
  }
}
.ticket-data__btn {
  display: inline-block;
  min-width: 183px;
  padding: 10px 16px 10px 37px;
  font-size: 18px;
  font-family: Roboto-Bold;
  background-color: transparent;
  border: 1px solid rgba(26,46,82,.1);
  border-radius: 6px;
  cursor: pointer
}
.ticket-data__btn.close {
  background: transparent url($assets-unlock-svg) 13px center no-repeat
}
.ticket-data__btn.close:hover {
  background: #f4f6fa url($assets-lock-svg) 13px center no-repeat
}
.ticket-data__btn.open {
  background: transparent url($assets-lock-svg) 13px center no-repeat
}
.ticket-data__btn.open:hover {
  background: #f4f6fa url($assets-unlock-svg) 13px center no-repeat
}
@media (max-width:1650px) {
  .ticket-data__btn {
    font-size: 16px
  }
}
@media (max-width:1100px) {
  .request-ticket-inner {
    padding-top: 27px
  }
  .request-ticket-inner .breadcrumbs {
    top: 28px;
    position: absolute;
    margin-bottom: 0
  }
}
@media (max-width:650px) {
  .request-ticket-inner {
    padding-top: 26px
  }
  .request-ticket-inner .breadcrumbs span {
    display: none
  }
}
.home {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-top: 115px
}
@media (max-width:1650px) {
  .home {
    margin-top: 81px
  }
}
@media (max-width:576px) {
  .home {
    margin-top: 0px
  }
}
.home__wrap {
  background-color: #1976d2;
  overflow: hidden;
  padding: 120px 0 276px 0
}
@media (max-width:1650px) {
  .home__wrap {
    padding-bottom: 170px
  }
}
@media (max-width:1350px) {
  .home__wrap {
    padding-top: 112px;
    padding-bottom: 156px
  }
}
@media (max-width:1160px) {
  .home__wrap {
    padding-top: 92px;
    padding-bottom: 126px
  }
}
@media (max-width:1024px) {
  .home__wrap {
    padding-top: 120px;
    padding-bottom: 100px
  }
}
@media (max-width:576px) {
  .home__wrap {
    margin-top: 63px;
    padding-top: 68px;
    padding-bottom: 50px
  }
}
.home__footer {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: -1px;
  bottom: 0;
  left: 0;
  height: 185px;
  width: 100%;
  background-color: #fafcff;
  z-index: 1
}
@media (max-width:1650px) {
  .home__footer {
    height: 157px
  }
}
@media (max-width:1350px) {
  .home__footer {
    height: 204px
  }
}
@media (max-width:1024px) {
  .home__footer {
    display: none
  }
}
.home__img {
  position: absolute;
  top: 80px;
  right: -58px;
  z-index: 2
}
.home__img img {
  height: 808px;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 100%
}
.home__img picture:last-child {
  display: none
}
@media (max-width:2000px) {
  .home__img {
    right: -120px
  }
}
@media (max-width:1920px) {
  .home__img {
    right: 0
  }
  .home__img picture:first-child {
    display: none
  }
  .home__img picture:last-child {
    display: block
  }
  .home__img img {
    height: 760px
  }
}
@media (max-width:1650px) {
  .home__img {
    top: 57px
  }
  .home__img img {
    height: 630px
  }
}
@media (max-width:1350px) {
  .home__img {
    top: 40px
  }
  .home__img img {
    height: 580px
  }
}
@media (max-width:1160px) {
  .home__img {
    top: 55px;
    right: -30px
  }
  .home__img img {
    height: 512px
  }
}
@media (max-width:1024px) {
  .home__img {
    display: none
  }
}
.home__inner {
  max-width: 660px
}
@media (max-width:1650px) {
  .home__inner {
    max-width: 522px
  }
}
@media (max-width:1350px) {
  .home__inner {
    max-width: 462px
  }
}
@media (max-width:1024px) {
  .home__inner {
    margin: 0 auto
  }
}
@media (max-width:576px) {
  .home__inner {
    max-width: 300px
  }
}
.home__descr {
  margin-bottom: 40px;
  font-size: 24px;
  color: #fff;
  line-height: 150%;
  font-family: Roboto-Regular
}
@media (max-width:1920px) {
  .home__descr {
    max-width: 570px;
    font-size: 20px
  }
}
@media (max-width:1650px) {
  .home__descr {
    margin-bottom: 28px;
    font-size: 18px
  }
}
@media (max-width:1350px) {
  .home__descr {
    font-size: 16px
  }
}
@media (max-width:576px) {
  .home__descr {
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center
  }
}
.home__title {
  margin-bottom: 32px;
  text-align: left
}
@media (max-width:1650px) {
  .home__title {
    margin-bottom: 24px
  }
}
@media (max-width:1350px) {
  .home__title {
    margin-bottom: 20px
  }
}
@media (max-width:1024px) {
  .home__title {
    margin-bottom: 24px
  }
}
@media (max-width:576px) {
  .home__title {
    margin-bottom: 16px;
    text-align: center
  }
}
.home__btns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
@media (max-width:1024px) {
  .home__btns {
    width: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}
@media (max-width:350px) {
  .home__btns {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
  }
}
.home__submit {
  margin-bottom: 8px;
  margin-right: 2px;
  height: 44px;
  padding: 9px 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Roboto-Medium;
  background: #fff;
  color: #1976d2;
  transition: background .3s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #fff;
}
@media (max-width:1650px) {
  .home__submit {
    padding: 7px 14px
  }
}

@media (max-width:576px) {
  .home__submit {
    height: 36px;
    padding: 10px
  }
}
@media (max-width:350px) {
  .home__submit {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-bottom: 8px
  }
}
.home__submit:hover {
  background: #1976d2;
  color:#fff;
  border: 1px solid #fff;
  transition: background .3s ease
}
.home__submit img {
  width: 20px;
  height: 20px;
  background-color: #fff;
    border-radius: 10px;
}
@media (max-width:576px) {
  .home__submit img {
    width: 16px;
    height: 16px
  }
}
.home__submit span {
  margin-top: -2px;
  margin-left: 10px
}
@media (max-width:576px) {
  .home__submit span {
    margin-left: 6px
  }
}
.home__requests {
  margin-bottom: 8px;
  margin-left: 20px;
  height: 44px;
  padding: 12px 18px 14px 18px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Roboto-Medium;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: background .3s ease,border .3s ease;
  cursor: pointer;
  white-space: nowrap
}
@media (max-width:1650px) {
  .home__requests {
    margin-left: 12px;
    padding: 12px 18px;
    padding-bottom: 14px
  }
}
@media (max-width:576px) {
  .home__requests {
    height: 36px;
    margin-left: 7px;
    padding: 10px;
    padding-top: 7px
  }
}
@media (max-width:350px) {
  .home__requests {
    margin-left: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }
}
.home__requests:hover {
  background: #fff;
  color: #1976d2;
  border: 1px solid transparent;
  transition: background .3s ease,border .3s ease
}
.home-procloud .home__wrap {
  margin-top: 0
}
@media (max-width:576px) {
  .home-procloud .home__btns {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
  }
}
@media (max-width:576px) {
  .home-procloud .home__requests span:first-child {
    display: none
  }
}
.home-procloud .home__requests span:last-child {
  display: none
}
@media (max-width:576px) {
  .home-procloud .home__requests span:last-child {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
  }
}
@media (max-width:576px) {
  .home-procloud .home__requests {
    margin-left: 0;
    padding: 9px 16px 11px 16px;
    min-width: 164px
  }
}
@media (max-width:576px) {
  .home-procloud .home__submit {
    margin-bottom: 12px;
    min-width: 164px;
    padding: 10px 17px
  }
}
.home-procloud .home__inner {
  max-width: 800px
}
.home-procloud .home__descr {
  max-width: 573px;
  font-size: 20px
}
@media (max-width:1920px) {
  .home-procloud .home__descr {
    max-width: 526px;
    font-size: 18px
  }
}
@media (max-width:1350px) {
  .home-procloud .home__descr {
    font-size: 16px;
    max-width: 462px
  }
}
@media (max-width:1024px) {
  .home-procloud .home__descr {
    margin-left: auto;
    margin-right: auto;
    text-align: center
  }
}
@media (max-width:576px) {
  .home-procloud .home__descr {
    max-width: 330px;
    font-size: 14px
  }
}
.home-procloud .home__wrap {
  padding-bottom: 214px
}
@media (max-width:1920px) {
  .home-procloud .home__wrap {
    padding-bottom: 230px
  }
}
@media (max-width:1650px) {
  .home-procloud .home__wrap {
    padding-bottom: 140px
  }
}
.home-procloud .home__img {
  top: 59px;
  right: 0
}
.home-procloud .home__img img {
  height: 746px
}
.home-procloud .home__img picture:nth-child(2) {
  display: none
}
@media (max-width:1920px) {
  .home-procloud .home__img picture:nth-child(2) {
    display: block
  }
}
@media (max-width:1200px) {
  .home-procloud .home__img picture:nth-child(2) {
    display: none
  }
}
.home-procloud .home__img picture:last-child {
  display: none
}
@media (max-width:1200px) {
  .home-procloud .home__img picture:last-child {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
  }
}
@media (max-width:2150px) {
  .home-procloud .home__img {
    right: -6%
  }
}
@media (max-width:1920px) {
  .home-procloud .home__img {
    right: -6%
  }
  .home-procloud .home__img img {
    height: 706px
  }
}
@media (max-width:1850px) {
  .home-procloud .home__img {
    right: -6%
  }
}
@media (max-width:1750px) {
  .home-procloud .home__img {
    right: -9%
  }
}
@media (max-width:1650px) {
  .home-procloud .home__img {
    top: 45px;
    right: -4%
  }
  .home-procloud .home__img img {
    height: 586px
  }
}
@media (max-width:1400px) {
  .home-procloud .home__img {
    right: -9%
  }
}
@media (max-width:1350px) {
  .home-procloud .home__img {
    right: -4%
  }
  .home-procloud .home__img img {
    height: 537px
  }
}
@media (max-width:1250px) {
  .home-procloud .home__img {
    right: -9%
  }
}
@media (max-width:1200px) {
  .home-procloud .home__img {
    right: -13%
  }
}
@media (max-width:1160px) {
  .home-procloud .home__img {
    right: -16%
  }
  .home-procloud .home__img img {
    height: 507px
  }
}
.home-title-pro {
  color: #fff;
  font-size: 80px;
  margin-bottom: 32px;
  text-align: left;
  line-height: 100%;
  font-family: Roboto-Bold
}
@media (max-width:1920px) {
  .home-title-pro {
    font-size: 70px
  }
}
@media (max-width:1650px) {
  .home-title-pro {
    font-size: 56px;
    margin-bottom: 24px
  }
}
@media (max-width:1350px) {
  .home-title-pro {
    margin-bottom: 20px;
    font-size: 48px
  }
}
@media (max-width:1024px) {
  .home-title-pro {
    max-width: 500px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
  }
}
@media (max-width:576px) {
  .home-title-pro {
    margin-bottom: 16px;
    text-align: center;
    max-width: 340px
  }
}
.footer {
  padding: 50px 0 50px 0;
  border-top: 1px solid rgba(0,0,0,.2);
  background: #fafcff
}
@media (max-width:1650px) {
  .footer {
    padding: 50px 0 50px 0
  }
}
@media (max-width:1280px) {
  .footer {
    padding: 50px 0 50px 0
  }
}
@media (max-width:1024px) {
  .footer {
    padding: 40px 0
  }
}
@media (max-width:576px) {
  .footer {
    padding: 20px 0 10px 0
  }
}
.footer__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between
}
@media (max-width:1024px) {
  .footer__inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}
@media (max-width:1024px) {
  .footer__nav {
    margin-bottom: 80px
  }
}
@media (max-width:768px) {
  .footer__nav {
    margin-bottom: 60px
  }
}
.footer ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:576px) {
  .footer ul {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
  }
}
.footer li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}
.footer li:not(:last-child) {
  margin-right: 60px
}
@media (max-width:1650px) {
  .footer li:not(:last-child) {
    margin-right: 40px
  }
}
@media (max-width:576px) {
  .footer li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px
  }
}
.footer a {
  color: #1a2e52;
  font-size: 20px;
  line-height: 100%
}
@media (max-width:1440px) {
  .footer a {
    font-size: 18px
  }
}
@media (max-width:576px) {
  .footer a {
    font-size: 14px
  }
}
.footer__copy {
  opacity: .5;
  color: #1a2e52;
  font-size: 12px
}
/*# sourceMappingURL=maps/main.css.map */
/* CUSTOM CSS */ 
#request_description{
  display: block;
  border: 1px solid rgba(26,46,82,.2);
  background: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 18px;
  width: 100%;
  height: 200px;
}
#request_description_hint {
  font-size: 11px;
  line-height: 1.5;
}
#request-status-select
{
  height: 56px;
  position: relative;
    padding: 0 15px 0 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
  color: #444!important;
  border: 0;    
}
.nesty-input {
  border-radius: 10px;
  background: none;
  height: 60px;
  padding: 14px 24px;
  font-size: 18px;
  border: 1px solid rgba(26,46,82,.2);
}
.nesty-input:after{
  top: 32%;
}
.nesty-panel{
  border-radius: 10px;
  border: 1px solid rgba(26,46,82,.2);
  background: #fafcff;
}
.nesty-panel li{
  font-size: 16px;
  background: #fafcff;
}
@media (max-width:1650px) {
#request-status-select
{
  height: 52px;
  }
}
.form-field{
  margin-bottom: 10px;
}
.form-field label {
  font-weight: 500
}
.comment-attachments{
  margin-top: 10px;
}
ul[data-hc-pills-container] {
      -webkit-appearance: none;
    padding: 14px 0px 14px 12.5px;
    width: 100%;
    outline: 0;
    border: none;
    border: 1px solid rgba(26,46,82,.2);
    background-color: transparent;
    border-radius: 10px;
    color: rgba(26,46,82,.4);
    font-size: 18px;
    resize: none;
    line-height: initial;
}
@media (max-width:576px) {
ul[data-hc-pills-container] {
    margin-bottom: 10px;
    padding: 10px 0px 15px 15px;
    height: 50px;
}
}
#hc-wysiwyg {
  overflow-y: auto;
    height: 260px;
    color: rgba(26, 46, 82, 0.4);
      appearance: none;
    padding: 7px 10px;
    width: 100%;
    outline: 0px;
    border: 1px solid rgba(26, 46, 82, 0.2);
    background-color: transparent;
    border-radius: 10px;
    color: rgba(26, 46, 82, 0.4);
    font-size: 18px;
    resize: none;
    line-height: normal;
}
.request-form input[type=submit], .request-submit-comment input[type=submit],
.request-form__btn {
  height: 52px;
  width: 100%;
  background: #1976d2;
  border-radius: 10px;
  border: 0px;
  color: #fff;
  font-family: Roboto-Bold;
  cursor: pointer;
  line-height: 0;
}
@media (max-width:576px) {
  .request-form__btn {
    height: 48px
  }
}
.request-form input[type=submit]{
  height: 60px;
  font-size: 18px;
}
.notification-error{
  font-size: 1,5rem;
  color: #dd2f2f;
}
.upload-dropzone {
  border-radius: 10px;
  margin: 0 0 10px;
  border: 1px solid rgba(26,46,82,.2);
  height: 60px;
  font-size: 18px;
}
.upload-dropzone a{
  font-size: 18px;
}
.zd-comment {
  word-break: break-word;
}
.zd-comment blockquote {
  	border-left: 3px solid #ccc;
    padding: 0 10px;
}
.zd-comment ul {
    margin: 10px 0px;
}
.zd-comment ul>li {
  	list-style-type: square;
    margin: 0px 40px;
}
.zd-comment ol>li {
  	list-style-type: decimal;
    margin: 0px;
}
#request_collaborators_ {
    background: none;
  }
.login__av img{
  border-radius: 100%;
}
#request_subject {
    width: 100%;
    border: 1px solid rgba(26,46,82,.2);
    background: none;
    border-radius: 10px;
    height: 60px;
    padding: 20px;
    font-size: 18px;
}
@media (max-width:576px) {
.chat textarea {
-webkit-appearance: none;
    height: 200px;
    overflow: hidden;
    resize: none;
    width: 100%;
    border: 1px #ccc solid;
    border-radius: 10px;
    background: #fafcff;
}
}
@media (max-width:576px) {
  #request-status-select {
    height: 48px;
    position: relative;
    padding: 0 15px 0 15px;
    width: 100%
  }
  .requests .status.solved span {
    font-size: 10px
  }
  .requests__row-col:last-child span {
    font-size:10px
  }
}
.upload-dropzone span {
  color: #353535;
  padding: 17px 10px;
}
.request_custom_fields_12304193896603 {
  margin-bottom: 3px;
}
.request_anonymous_requester_email{
  margin-bottom: 10px;
}
#request_anonymous_requester_email{
  width: 100%;
  border: 1px solid rgba(26,46,82,.2);
  background: none;
  border-radius: 10px;
  height: 60px;
  padding: 20px;
  font-size: 18px;
}
#request_custom_fields_12470160496667 {
  width: 100%;
  border: 1px solid rgba(26,46,82,.2);
  background: none;
  border-radius: 10px;
  height: 60px;
  padding: 20px;
  font-size: 18px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
@media (max-width:1650px) {
  ul[data-hc-pills-container],
  #request_subject,
  .nesty-input,
  #request_custom_fields_12470160496667,
  .upload-dropzone,
  .upload-dropzone a,
  #request_description,
  #request_anonymous_requester_email,
  .request-form input[type=submit]{
     font-size: 16px;
  }
  #request_subject,
  .nesty-input,
  #request_custom_fields_12470160496667,
  .upload-dropzone,
  #request_anonymous_requester_email,
  .request-form input[type=submit]{
    height: 52px;
  }
  ul[data-hc-pills-container] {
     padding: 10px 0px 10px 10.5px;
  }
  .nesty-input{
    padding: 10px 18px;
  }
  .upload-dropzone span{
    padding: 13px 10px;
  }
  #request_subject,
  #request_custom_fields_12470160496667,
  #request_anonymous_requester_email{
    padding: 18px;
  }
  #request_description{
    padding: 10px 18px;
  }
  #hc-wysiwyg{
    padding: 7px 8px;
  }
}
@media (max-width: 700px) {
  ul[data-hc-pills-container],
  #request_subject,
  .nesty-input,
  #request_custom_fields_12470160496667,
  .upload-dropzone,
  .upload-dropzone a,
  #request_description,
  #request_anonymous_requester_email,
  .request-form input[type=submit]{
     font-size: 15px;
  }
  #request_subject,
  .nesty-input,
  #request_custom_fields_12470160496667,
  .upload-dropzone,
  #request_anonymous_requester_email,
  .request-form input[type=submit]{
    height: 48px;
  }
  ul[data-hc-pills-container] {
     padding: 8px 0px 8px 8.5px;
  }
  .nesty-input{
    padding: 7px 16px;
  }
  .upload-dropzone span{
    padding: 10px;
  }
  #request_description{
    padding: 10px 16px;
  }
  #request_subject,
  #request_custom_fields_12470160496667,
  #request_anonymous_requester_email{
    padding: 16px;
  }
  #hc-wysiwyg{
    padding: 7px 6px;
  }
  .notification-error{
  	font-size: 12px;
    line-height: 1.5;
	}
}