/* Header */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  position: sticky;
  padding: 0 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #00458B;
  z-index: 2;
}

.toolbar-content {
  height: 100%;
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toolbar .logo-navigation {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.s-navigation-logo {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.toolbar .logo-small {
  display: none;
}

.toolbar .navigation {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.toolbar .navigation button {
  height: 100%;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  transition: 0.2s;
}

.toolbar .navigation button:hover {
  color: rgb(255, 255, 255);
}

.toolbar .navigation button.active {
  color: rgb(255, 255, 255);
}

.toolbar .resources-button {
  height: 100%;
}

.toolbar .resources-button.show {
  color: white;
}

.toolbar .resources-dropdown {
  height: 100%;
  font-size: 16px;
}

.toolbar .resources-dropdown .dropdown-toggle::after {
  display: none;
}

.toolbar .resources-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.toolbar .resources-dropdown .resources-button span,
.toolbar .resources-dropdown:hover svg {
  transition: 0.9s;
}

.toolbar .resources-dropdown:hover .resources-button span {
  color: white;
}

.toolbar .resources-dropdown:hover .fill {
  fill: white;
}

.toolbar .resources-dropdown:hover>.dropdown-menu {
  display: block;
}

.toolbar .resources-dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.toolbar .resources-dropdown ul {
  max-width: 280px;
  border-radius: 0;
  padding: 0;
  background: linear-gradient(180deg, #003F80 0%, #00468C 14.44%), linear-gradient(180deg, #00458B 0%, rgba(0, 63, 128, 0) 100%);
  border: 1px solid rgba(30, 31, 33, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.toolbar .resources-dropdown .dropdown-item,
.toolbar .menu-dropdown-menu .dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  transition: 0.2s;
}

.toolbar .resources-dropdown .dropdown-item:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)), #00458B;
}

.toolbar .resources-dropdown .dropdown-item:active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), #00458B;
}

.toolbar .resources-dropdown ul .title,
.toolbar .menu-dropdown-menu .title {
  color: white;
  line-height: 16px;
  margin-bottom: 8px;
}

.toolbar .resources-dropdown ul .subtitle,
.toolbar .menu-dropdown-menu .subtitle {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 18px;
  white-space: pre-line;
}

.toolbar .toolbar-actions {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.toolbar .icon-buttons {
  display: flex;
}

.toolbar .language-circle-button {
  background: none;
  border: none;
  outline: none;
}

.toolbar .language-circle-button img {
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}

.toolbar .language-dropdown-menu {
  min-width: fit-content;
  margin-top: 10px !important;
  padding: 8px 12px;
  border: none;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.15));
}

.toolbar .language-dropdown-menu .beak {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 10px;
  top: -8px;
  background: #FFFFFF;
  transform: rotate(-45deg);
}

.toolbar .language-dropdown-menu li {
  min-height: 40px;
}

.toolbar .language-dropdown-menu .dropdown-item {
  display: inline-block;
  min-height: 32px;
  margin: 4px 0;
  padding: 4px 8px 4px 4px;
  border-radius: 4px;
  transition: 0.2s;
  color: #1E1F21;
}

.toolbar .language-dropdown-menu .dropdown-item-inner {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 14px;
}

.toolbar .language-dropdown-menu .dropdown-item:hover {
  background: rgba(25, 107, 190, 0.04);
}

.toolbar .language-dropdown-menu .dropdown-item:active {
  background: rgba(25, 107, 190, 0.08);
}

/* Menus: navigation, actions */
.toolbar .menu-dropdown {
  display: none;
}

.toolbar .menu-dropdown-button.show {
  background: rgba(30, 31, 33, 0.16);
}

.toolbar .menu-dropdown-menu,
.toolbar .more-dropdown-menu {
  max-height: calc(100vh - 72px);
  overflow: auto;
  margin-top: 18px !important;
  border-radius: unset;
  padding: 0;
  transform: translate(0, 54px) !important;
  background: linear-gradient(180deg, #003F80 0%, #00468C 14.44%), linear-gradient(180deg, #00458B 0%, rgba(0, 63, 128, 0) 100%);
  border: 1px solid rgba(30, 31, 33, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.toolbar .menu-dropdown-menu {
  width: 280px;
}

.toolbar .more-dropdown {
  display: none;
}

.toolbar .more-dropdown-menu {
  width: 248px;
}

.toolbar .more-dropdown-menu .language {
  padding: 16px 24px 24px;
}

.toolbar .more-dropdown-menu .language .title {
  font-size: 14px;
  line-height: 21px;
  color: white;
  margin-bottom: 16px;
}

.toolbar .more-dropdown-menu .feedback-help {
  padding: 20px 16px;
}

.toolbar .more-dropdown-menu .feedback,
.toolbar .more-dropdown-menu .help {
  display: flex;
  align-items: center;
  column-gap: 8px;
  border-radius: 2px;
  text-decoration: none;
  padding: 8px 12px;
  color: white;
  font-size: 12px;
  line-height: 16px;
  transition: 0.2s;
}

.toolbar .more-dropdown-menu .feedback,
.toolbar .more-dropdown-menu .feedback > * {
  cursor: pointer;
}

.toolbar .more-dropdown-menu .try-login {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 20px 16px 16px;
}

.toolbar .more-dropdown-menu .divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.toolbar .menu-dropdown-menu .dropdown-item {
  padding: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 24px;
}

.toolbar .menu-dropdown-menu .tab-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.toolbar .menu-dropdown-menu .dropdown-item:hover,
.toolbar .more-dropdown-menu .feedback:hover,
.toolbar .more-dropdown-menu .help:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)), #00458B;
  color: white;
}

.toolbar .menu-dropdown-menu .dropdown-item:focus,
.toolbar .more-dropdown-menu .feedback:focus,
.toolbar .more-dropdown-menu .help:focus {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), #00458B;
  color: white;
}

.toolbar .menu-dropdown-menu .tab-header .arrow-icon {
  transition: 0.3s;
}

.toolbar .menu-dropdown-menu .tab-header[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}


.banner {
  width:100%;
  background:#fad548;
  text-align:center;
  font-size:16px;
  display:block;
  line-height: 150%;
  padding:12px 0 12px 0;
  z-index:1;
  position: relative;
}

.tooltip-inner {
  width:100%;
  max-width: 600px;
  padding:20px;
}

/* Dialog: Review */
.review-modal .review-modal-dialog {
  max-width: 978px;
}

.review-modal .review-modal-body {
  padding: 30px;
}
.review-modal .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.review-modal .close-modal-button {
  background: transparent;
}

.review-modal .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 48px;
  color: #00458B;
}

.review-modal .controls {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  margin-bottom: 16px;
}

.review-modal .radios {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.review-modal .gbs-radio-control {
  display: flex;
  align-items: baseline;
}

.review-modal .gbs-radio-control label {
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
}

.review-modal .gbs-radio-control svg {
  margin-right: 4px;
}

.review-modal .gbs-radio-control input {
  margin: 16px 24px 17px 16px;
}

.review-modal .inputs-submit {
  flex: 1;
  max-width: 444px;
}

.review-modal .inputs-submit button {
  padding: 8px 16px;
}

.review-modal .inputs {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.review-modal textarea {
  resize: none;
  flex: 1;
  width: 100%;
  min-height: 150px;
}

.review-modal .gbs-input-control {
  margin-bottom: 40px;
}

/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1E1F21;
  padding: 40px 16px 24px;
  font-size: 14px;
  line-height: 24px;
}

.footer .contacts {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 24px;
}

.footer .contacts .logo {
  max-width: 126px;
  width: 126px;
  height: 24px;
  margin-right: 12px;
}

.footer .contacts .vertical-divider {
  width: 24px;
  height: 0;
  border: 1px solid #495057;
  transform: rotate(90deg);
}

.footer .contacts .mobile-info {
  display: flex;
}

.footer .contacts .mobile {
  margin: 0 40px 0 12px;
}

.footer .contacts .icon {
  margin-right: 8px;
}

.footer .payment {
  display: flex;
  column-gap: 16px;
  margin-bottom: 64px;
}

.footer .links {
  display: flex;
  column-gap: 16px;
  margin-bottom: 16px;
}

.footer .link {
  text-decoration: unset;
  color: white;
  transition: 0.2s;
}

.footer .link:hover {
  color: rgba(255, 255, 255, 0.68);
}

.footer .rights {
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1200px) {
  .toolbar .navigation {
    display: none;
  }

  .toolbar .menu-dropdown {
    display: unset;
  }
}

@media (max-width: 768px) {
  .review-modal .controls {
    flex-direction: column;
    row-gap: 50px;
  }
}

@media (max-width: 720px) {
  .footer .contacts {
    flex-direction: column;
    row-gap: 24px;
  }

  .footer .contacts .vertical-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .toolbar .icon-buttons,
  .toolbar .language-button-menu {
    display: none;
  }

  .toolbar .more-dropdown {
    display: unset;
  }
}

@media (max-width: 576px) {
  .toolbar {
    padding: 0 16px;
  }

  .toolbar .toolbar-actions .try-button,
  .toolbar .toolbar-actions .login-button {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer .contacts .mobile-info {
    flex-direction: column;
    row-gap: 24px;
  }

  .footer .links {
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
    margin-bottom: 24px;
  }
}
