@charset "UTF-8";
body {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1390px;
}

button:active, button:focus {
  outline: none;
}

.form-group.has-error input, .error {
  box-shadow: none;
  border-color: #E9101D !important;
}

.ws {
  white-space: nowrap;
}

.form-input {
  width: 100%;
  max-height: 36px;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  border-radius: 10px;
  outline: none;
}
.form-input:hover {
  border: 1px solid #CCCCCC;
}
.form-input:active {
  border: 1px solid #CCCCCC;
}
.form-input-date {
  width: 60%;
  background-image: url("/img/date.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
@media (min-width: 991px) {
  .form-input-date {
    width: 80%;
  }
}
@media (min-width: 1199px) {
  .form-input-date {
    width: 60%;
  }
}
.form-input-big {
  max-height: 300px;
  height: 300px;
  padding: 8px 23px;
}

::placeholder {
  color: #808080;
}

.dropdown {
  width: 100%;
}

.dropdown-toggle {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #808080;
  font-size: 14px;
  background-image: url("/img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  padding-right: 35px;
}
.dropdown-toggle:hover {
  color: #808080;
  text-decoration: none;
  background-image: url("/img/arrow-up.svg");
}
.dropdown-toggle:active {
  color: #808080;
  background-image: url("/img/arrow-up.svg");
}
.dropdown-toggle:after {
  content: none;
}

.dropdown-menu.show {
  width: 100%;
  margin: 0;
}

.show .dropdown-toggle {
  background-image: url("/img/arrow-up.svg");
}

.dropdown-item {
  white-space: break-spaces;
}
.dropdown-item:hover {
  background: rgba(18, 196, 115, 0.1);
}

.pointer {
  cursor: pointer;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=radio] {
    --active: #12C473;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #CCCCCC;
    --border-hover: #CCCCCC;
    --background: #fff;
    --disabled: #CCCCCC;
    --disabled-inner: #CCCCCC;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 17px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=radio]:focus {
    box-shadow: none;
  }
  input[type=radio]:not(.switch) {
    width: 17px;
  }
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type=radio]:checked {
    --s: .5;
  }
}
.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  padding: 0;
}

.custom-checkbox ~ label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-size: 14px;
}

.custom-checkbox ~ label::before {
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #CCCCCC;
  margin-right: 1em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:hover ~ label::before {
  border-color: #12C473;
  cursor: pointer;
}

.custom-checkbox:checked ~ label::before {
  border-color: #12C473;
  background-color: #12C473;
  background-image: url("/img/check.svg");
  background-size: auto;
}

.ui-datepicker-div .ui-state-hover a,
.ui-datepicker-div .ui-state-hover a:hover,
.ui-datepicker-div .ui-state-hover a:link,
.ui-datepicker-div .ui-state-hover a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-widget-header, .ui-state-default, .ui-widget-content .ui-state-default {
  background: rgba(18, 196, 115, 0.1);
  border: none;
}

.ui-widget-header, .ui-state-default {
  background: rgba(18, 196, 115, 0.1);
  border: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background: rgba(18, 196, 115, 0.1);
  color: #454545;
}

.ui-state-active {
  background: #12C473 !important;
  color: #FFFFFF;
}

.ui-state-hover, .ui-datepicker-next-hover {
  background: rgba(18, 196, 115, 0.1);
}

.border-radius-bottom {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: none;
  background: rgba(18, 196, 115, 0.1);
}

.border-radius-big {
  border-radius: 10px;
}
@media (min-width: 1199px) {
  .border-radius-big {
    border-radius: 24px;
  }
}

.border-radius-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.border-bottom {
  border-bottom: 1px solid #CCCCCC;
}

.bsh {
  box-shadow: 0px 2px 10px rgba(10, 10, 43, 0.2);
}

.bc-mainBlue {
  background-color: #232341;
}
.bc-lightBlue {
  background-color: #d5e5f3;
}
.bc-white {
  background-color: #FFFFFF;
}
.bc-darkBlue {
  background-color: #0A0A2B;
}

.text-bold {
  font-weight: 600;
}
.text-normal {
  font-weight: 400;
}
.text-colorDarkGray {
  color: #808080;
}
.text-blue {
  color: #2779C4;
}
.text-blue:hover {
  color: #2267A6;
}
.text-green {
  color: #12C473;
}
.text-black {
  color: #000000;
}
.text-black:hover .text-black:active .text-black:visited {
  color: #000000;
}
.text-fs24 {
  font-size: 24px;
}
.text-fs14 {
  font-size: 14px;
}
.text-fs12 {
  font-size: 12px;
}
.text-fs18 {
  font-size: 18px;
}
.text-fs18-24 {
  font-size: 18px;
}
@media (min-width: 991px) {
  .text-fs18-24 {
    font-size: 24px;
  }
}
.text-fs24-40 {
  font-size: 24px;
}
@media (min-width: 1199px) {
  .text-fs24-40 {
    font-size: 40px;
  }
}
.text-fs14--18 {
  font-size: 14px;
}
@media (min-width: 1199px) {
  .text-fs14--18 {
    font-size: 18px;
  }
}

.link {
  cursor: pointer;
}
.link-underline {
  text-decoration: underline;
}
.link-menu {
  display: block;
  color: #FFFFFF;
  padding: 20px 30px;
  text-decoration: none;
}
.link-menu:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.push {
  background-color: #12C473;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: bold;
  border-radius: 10px;
  position: absolute;
  padding: 1px 5px;
  top: 14px;
  left: 5px;
}
@media (min-width: 767px) {
  .push {
    top: -4px;
    left: 42px;
  }
}

.push-info {
  display: none;
  z-index: 99;
  height: 400px;
  background-color: #FFFFFF;
  position: absolute;
  top: 75%;
}
@media (min-width: 767px) {
  .push-info {
    width: 310px;
    top: 52px;
    left: -40%;
  }
}
.push-info .push-scroll {
  height: 335px;
  overflow-y: scroll;
}
.push-info .non {
  border-bottom: 1px solid #CCCCCC;
}

.icon-big {
  width: 148px;
}

.btn {
  min-width: 160px;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}
.btn:focus {
  box-shadow: none;
}
.btn-icon {
  text-align: start;
  padding: 20px 30px !important;
}
.btn-green {
  background-color: #12C473;
}
.btn-green:hover {
  color: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(10, 10, 43, 0.15);
  border-radius: 6px;
}
.btn-green:active {
  color: #FFFFFF;
  background-color: #0AB466;
  box-shadow: none;
}
.btn-ghostGreen {
  border: 2px solid #12C473;
  color: #12C473;
}
.btn-ghostGreen:hover {
  background-color: #12C473;
  color: #FFFFFF;
}
.btn-gray {
  background: rgba(229, 229, 229, 0.5);
  color: #808080;
}

.header {
  background-color: #232341;
  height: 80px;
  position: relative;
}
.header .logo {
  width: 97px;
}
@media (min-width: 767px) {
  .header .logo {
    width: 130px;
    height: 45px;
  }
}
.header .logo-text {
  color: #12C473;
  width: 100px;
  font-size: 12px;
}
.header .icon {
  width: 14px;
}
.header .header-phone {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
}

.menu {
  background-color: #232341;
  border-top: 1px solid #808080;
}

.iti {
  width: 100%;
}
.iti .iti__selected-flag {
  background-color: transparent;
  border-right: 1px solid #CCCCCC;
}
.iti .container:hover .iti__selected-flag {
  background-color: transparent;
}
.iti .iti__arrow {
  display: none;
}
.iti .iti__flag-container {
  border-radius: 10px;
  width: 100px;
}
.iti .iti__country-name {
  display: none;
}
.iti .iti__flag-container:hover > .iti__selected-flag {
  background-color: transparent;
}
.iti .iti__selected-flag {
  background-image: url("/img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.iti .iti__selected-flag:hover {
  background-image: url("/img/arrow-up.svg");
}
.iti .iti__selected-flag:active {
  background-image: url("/img/arrow-up.svg");
}
.iti .iti__selected-flag[aria-expanded=true] {
  background-image: url("/img/arrow-up.svg");
}
.iti .iti__country {
  padding: 10px 20px;
}
.iti .iti__country.iti__highlight {
  background: rgba(18, 196, 115, 0.1);
}
.iti .iti__flag-box {
  display: none;
}
.iti .iti__flag {
  display: none;
}
.iti .iti__container {
  height: 100px !important;
}
.iti .iti__country-list {
  border-radius: 10px;
  width: 100%;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 0 !important;
  right: 30px;
  position: fixed;
}

.navbar .navbar-collapse {
  height: 100vh;
  width: 100vw;
  z-index: 99;
  background-color: #232341;
}
@media (min-width: 767px) {
  .navbar .navbar-collapse {
    height: auto;
    width: 40vh;
  }
}
.navbar .navbar-toggler {
  padding: 8px 12px;
  width: 47px;
  height: 47px;
  background: rgba(255, 255, 255, 0.1);
  mix-blend-mode: normal;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  border-radius: 50%;
}
.navbar .navbar-toggler:active {
  outline: none;
}
.navbar .navbar-toggler span {
  display: block;
  background-color: #FFFFFF;
  height: 2px;
  width: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
.navbar .navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}
.navbar .navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}
.navbar .navbar-toggler span:nth-child(2) {
  opacity: 1;
}
.navbar .navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
.navbar .nav-link {
  padding: 20px 0px;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 767px) {
  .navbar .nav-link {
    padding: 0px;
    border-bottom: none;
    display: block;
    text-align: center;
  }
  .navbar .nav-link p {
    font-size: 13px;
  }
  .navbar .nav-link img {
    width: 24px;
  }
}

main .table-mob {
  overflow-x: auto;
}
main .tab_item {
  display: none;
}
main .tab_item:first-child {
  display: block;
}
main .password {
  position: relative;
}
main input[type=password] {
  font: small-caption;
}
main .password-control {
  position: absolute;
  top: 32px;
  right: 6px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain !important;
  background: url("/img/eye.svg") 0 0 no-repeat;
}
main .password-control.view {
  background-size: contain !important;
  background: url("/img/eye-green.svg") 0 0 no-repeat;
}
main .login-container .form-input {
  min-width: 260px;
}
main .login-container .login-wrapper {
  width: 100%;
  min-height: calc(100vh - 80px);
}
@media (min-width: 991px) {
  main .login-container .login-wrapper {
    width: 50%;
  }
}
@media (min-width: 991px) {
  main .login-container .login-wrapper-dark {
    background-image: url("/img/backimg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
main .login-container .login-form-container {
  background-image: url("/img/backimg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 38px;
  position: relative;
  background-color: #0A0A2B;
}
@media (min-width: 991px) {
  main .login-container .login-form-container {
    background-color: #fafafa;
    background-image: none;
  }
}
main .login-container .login-form-wrapper {
  background-color: #FFFFFF;
  border-radius: 10px;
}
@media (min-width: 991px) {
  main .login-container .login-form-wrapper {
    background-color: transparent;
  }
}
main .buttons-scroll {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100vw;
}
@media (min-width: 991px) {
  main .buttons-scroll {
    width: 100%;
  }
}
main .buttons-scroll::-webkit-scrollbar {
  display: none;
}
main .banner {
  background-color: #232341;
}
main .banner p {
  font-weight: bold;
}
main .filters {
  display: none;
}
main .stats-banner-1, main .stats-banner-2, main .stats-banner-3, main .stats-banner-4, main .stats-banner-5, main .stats-banner-6 {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 110px;
}
@media (min-width: 1199px) {
  main .stats-banner-1, main .stats-banner-2, main .stats-banner-3, main .stats-banner-4, main .stats-banner-5, main .stats-banner-6 {
    background-size: 160px;
  }
}
main .stats-banner-1 img, main .stats-banner-2 img, main .stats-banner-3 img, main .stats-banner-4 img, main .stats-banner-5 img, main .stats-banner-6 img {
  width: 107px;
}
@media (min-width: 1199px) {
  main .stats-banner-1 img, main .stats-banner-2 img, main .stats-banner-3 img, main .stats-banner-4 img, main .stats-banner-5 img, main .stats-banner-6 img {
    width: 200px;
  }
}
main .stats-banner-1 {
  background-image: url("/img/mouse-back.png");
}
main .stats-banner-2 {
  background-image: url("/img/calc-back.png");
}
main .stats-banner-3 {
  background-image: url("/img/money-3-back.png");
}
main .stats-banner-4 {
  background-image: url("/img/chart-back.png");
}
main .stats-banner-5 {
  background-image: url("/img/calc-back.png");
}
main .stats-banner-6 {
  background-image: url("/img/filter-back.png");
}
main #deals-container .table td, main #deals-container .table th {
  padding: 15px 20px !important;
}
@media (min-width: 991px) {
  main #deals-container .table-mob {
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(10, 10, 43, 0.2);
  }
}
main #deals-container .table {
  font-size: 14px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0px 2px 10px rgba(10, 10, 43, 0.2);
}
@media (min-width: 991px) {
  main #deals-container .table {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: none;
  }
}
main #deals-container .table th td {
  width: 100%;
}
main #deals-container .table td {
  overflow: hidden;
  text-overflow: ellipsis;
}
main #deals-container .table .border-radius-top-left {
  border-top-left-radius: 10px;
}
@media (min-width: 991px) {
  main #deals-container .table .border-radius-top-left {
    border-top-left-radius: 0;
  }
}
main #deals-container .table .border-radius-top-right {
  border-top-right-radius: 10px;
}
@media (min-width: 991px) {
  main #deals-container .table .border-radius-top-right {
    border-top-right-radius: 0;
  }
}
main #deals-container .sortByPrice, main #deals-container .sortByDate {
  cursor: pointer;
  position: relative;
}
main #deals-container .sortByPrice:before, main #deals-container .sortByDate:before {
  content: url("/img/arrow_down.svg");
  position: absolute;
  top: 18px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main #deals-container .flip-table.sortByPrice:before {
  transform: rotate(-180deg);
  top: 11px;
}
main #deals-container .flip-table.sortByDate:before {
  transform: rotate(-180deg);
  top: 11px;
}
main #deals-container .item--id {
  min-width: 150px;
}
main #deals-container .item--tariff {
  min-width: 230px;
}
main #deals-container .item--price {
  min-width: 95px;
}
main #deals-container .item--date {
  min-width: 155px;
}
main #deals-container .item--status {
  min-width: 120px;
}
main #deals-container .item--ref {
  min-width: 150px;
}
main #deals-report-container .collapse-link {
  text-decoration: none;
}
main #deals-report-container .collapse-link:before {
  content: "Скрыть";
  text-decoration: underline;
  font-weight: bold;
  color: #2779C4;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main #deals-report-container .collapse-link:before:hover {
  color: #2267A6;
}
main #deals-report-container .collapsed {
  text-decoration: none;
}
main #deals-report-container .collapsed:before {
  content: "Показать еще";
  text-decoration: underline;
  font-weight: bold;
  display: block;
  color: #2779C4;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
main #deals-report-container .collapsed:before:hover {
  color: #2267A6;
}
main .table th {
  border-top: none;
  border-bottom: 1px;
}
main .table .cell-1 {
  min-width: 170px;
}
main .table .cell-big {
  min-width: 450px;
}
main .table .cell-2 {
  min-width: 100px;
}
main .table .cell-3 {
  min-width: 111px;
}
main .table .cell-4 {
  min-width: 65px;
}
main .table td, main .table th {
  padding: 15px 20px 8px 0px !important;
}
main .pagination-wrapper .page-link {
  border: none;
  cursor: pointer;
  color: #808080;
}
main .pagination-wrapper .page-link:focus {
  box-shadow: none;
}
main .pagination-wrapper .active-page > a {
  color: #12C473 !important;
  font-weight: bold;
}
main .pagination-wrapper .Next, main .pagination-wrapper .Previous {
  background-repeat: no-repeat;
  height: 16px;
  background-position: center center;
  background-size: contain;
}
main .pagination-wrapper .Next:hover, main .pagination-wrapper .Previous:hover {
  background-color: #FFFFFF;
}
main .pagination-wrapper .Next {
  background-image: url("/img/next.svg");
}
main .pagination-wrapper .Previous {
  background-image: url("/img/prev.svg");
}
main .pagination-wrapper .to-end, main .pagination-wrapper .to-first {
  color: #808080;
  cursor: pointer;
}
main .pagination-wrapper .to-end:hover, main .pagination-wrapper .to-first:hover {
  text-decoration: none;
}
main .faq .collapse-link:before {
  content: "";
  width: 26px;
  height: 12px;
  background-image: url("/img/arrow-up.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  position: absolute;
  left: -44px;
  top: 7px;
}
@media (min-width: 767px) {
  main .faq .collapse-link:before {
    left: -50px;
    top: 7px;
  }
}
main .faq .collapse-link:hover {
  color: #000000;
  text-decoration: none;
}
main .faq .collapsed:before {
  content: "";
  width: 26px;
  height: 12px;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  background-image: url("/img/arrowDown.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -44px;
  top: 5px;
}
@media (min-width: 767px) {
  main .faq .collapsed:before {
    left: -50px;
    top: 5px;
  }
}
main .faq .collapsed:hover {
  color: #000000;
  text-decoration: none;
}

.modal-content {
  border: none;
  border-radius: 10px;
}

.btn-close {
  width: 23px;
  height: 23px;
  background-color: #FFFFFF;
  outline: none;
  border: none;
  background-image: url("/img/closeGray.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.promo .link img {
  vertical-align: baseline;
}

.link__name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.links-link-copy {
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background-image: url("/img/copy.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.links-link-copy-border {
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 8px 60px 8px 16px;
}
.links-link-copy-bordless {
  outline: none;
  border: none;
  width: max-content;
}

.chart-link {
  background-repeat: no-repeat;
  background-position-y: calc(100% - 18px);
}
.chart-link-nalogia {
  background-image: url("/img/nalogia-icon.svg");
}

.down {
  background-position-y: center;
  background-image: url("/img/arrowBlackDown.svg");
  -moz-transition: transform 1s;
  -webkit-transition: transform 1s;
  transition: transform 1s;
}

.flip {
  transform: rotate(-180deg);
}

.s404 {
  height: calc(100vh - 200px);
}

.presentation {
  background-image: url("/img/backimg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 222px;
}
@media (min-width: 767px) {
  .presentation {
    background-position: 276px;
  }
}
@media (min-width: 991px) {
  .presentation {
    background-position: right;
  }
}

.banner-img {
  height: inherit;
}

.topmenu a:hover { color: #aaa; }
a, a:hover { color: #333; text-decoration: none; }
a.asc:before {
  content: url("/img/arrow_up.svg");
  padding-right: 4px;
}
a.desc:before {
  content: url("/img/arrow_down.svg");
  padding-right: 4px;
}

.modal-lg {
  max-width: 1000px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

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

.btn-reset { color: #777; }
.btn-reset:hover { color: #fff; }

#registrationcompany-phone {
  padding-left: 120px !important;
}
.iti .iti__flag, .iti .iti__flag-box { display: inline-block !important; }

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