.collabsible-item {
  margin: 0 0 15px 0;
  background: #fff;
  -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.collabsible .collabsible-item:last-child {
  margin-bottom: 0;
}

.collabsible-item-toggle {
  display: none;
}

.collabsible-item-label {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #000000;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.collabsible-item-label p {
  padding-right: 10px;
}

.collabsible-item-label * {
  margin: 0;
  padding: 0;
}

.collabsible-item-label::after {
  content: "";
  display: block;
  padding: 3px;
  margin-top: -3px;
  height: 0px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform: rotate(45deg);
  border: solid #FF6524;
  border-width: 0 2px 2px 0;
}

.collabsible-item-toggle:checked+.collabsible-item-label::after {
  -webkit-transform: rotate(225deg) translateX(-3px);
  -ms-transform: rotate(225deg) translateX(-3px);
  transform: rotate(225deg) translateX(-3px);
  border-color: #FF6524;
}

.collabsible-item-content {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
}

.collabsible-item-toggle:checked+.collabsible-item-label+.collabsible-item-content {
  max-height: 100vh;
}

.collabsible-item-inner {
  padding: 20px 0 20px 75px !important;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.collabsible-item-inner p {
  font-weight: 400;
}

.collabsible-item-footer {
  padding: 14px 0;
  border-top: solid 1px #ededed;
  text-align: right;
}

.collabsible-item-footer label {
  cursor: pointer;
}

.collabsible-item-footer label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #52dbff;
}

.collabsible-item-label,
.collabsible-item-inner,
.collabsible-item-footer {
  padding-left: 24px;
  padding-right: 24px;
}

form {
  width: 100%;
}

.btn-currency {
  font-family: 'Benzin', 'Roboto', sans-serif;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  border-radius: 3px;
  border: none;
  color: #101820;
  font-size: 16px;
  white-space: nowrap;
  line-height: 57px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #ffffff;
}

.btn-currency:hover {
  background-color: #f7f7f7;
}

.btn-currency span {
  text-transform: uppercase;
  margin-right: 5px;
}

.btn-currency img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.input-group label {
  margin-bottom: 15px;
}

.input-group__wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5px;
  background: #F2F2F2;
  border-radius: 5px;
  min-height: 70px;
}

.input-group__wrapp input {
  font-family: 'Benzin', 'Roboto', sans-serif;
  font-weight: 400;
  width: 100%;
  border: none;
  background: transparent;
  min-height: 57px;
  padding: 0 0 0 10px;
  font-size: 16px;
  color: #101820;
}

.input-group__wrapp input:focus {
  outline: transparent;
}

.input-group__wrapp input::-webkit-input-placeholder {
  color: #101820;
  opacity: 0.25;
}

.input-group__wrapp input::-moz-placeholder {
  color: #101820;
  opacity: 0.25;
}

.input-group__wrapp input:-ms-input-placeholder {
  color: #101820;
  opacity: 0.25;
}

.input-group__wrapp input::-ms-input-placeholder {
  color: #101820;
  opacity: 0.25;
}

.input-group__wrapp input::placeholder {
  color: #101820;
  opacity: 0.25;
}

.input-group__wrapp select {
  font-family: 'Benzin', 'Roboto', sans-serif;
  font-weight: 400;
  width: 100%;
  border: none;
  background: transparent;
  min-height: 57px;
  padding: 0 0 0 10px;
  font-size: 16px;
  color: #101820;
  margin-right: 20px;
}

.input-group__wrapp select:focus {
  outline: transparent;
}

.btn-change {
  background: #ffffff;
  border: none;
  padding: 0;
  margin: 0 10px;
  cursor: pointer;
  margin-top: 30px;
}

.grid-change {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 192px;
  background: #101820;
}

.footer .nav {
  color: #ffffff;
}

.footer .footer__orange-desc {
  font-family: 'Raleway', 'Roboto', sans-serif;
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
}

@font-face {
  font-family: "eUkraine";
  src: url("../fonts/e-Ukraine-Bold.otf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "eUkraine";
  src: url("../fonts/e-Ukraine-Medium.otf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "eUkraine";
  src: url("../fonts/e-Ukraine-Regular.otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "eUkraine";
  src: url("../fonts/e-Ukraine-Light.otf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin_Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin_Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin_Semibold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin_Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin_Extra_Bold.ttf");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Benzin", "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #101820;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
canvas,
figure,
figcaption,
audio,
video {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 40px;
  margin: 0 auto;
}

i {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.w-100 {
  width: 100% !important;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block;
}

.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

.m-a {
  margin: 0 auto;
}

.fw-500 {
  font-weight: 500;
}

.mt-20px {
  margin-top: 20px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mt-40px {
  margin-top: 40px;
}

.mt-60px {
  margin-top: 60px;
}

.mr-60px {
  margin-right: 60px;
}

.mr-30px {
  margin-right: 30px;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.position-relative {
  position: relative;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-orange {
  background-color: #FF6524;
}

.ta-r {
  text-align: right;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mt-40px {
  margin-top: 40px;
}

.align-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-orange {
  font-family: inherit;
  padding: 0 30px;
  background: #FF6524;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  line-height: 50px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  letter-spacing: 0.08em;
}

.btn-orange:hover {
  background-color: #CF4520;
}

.ta-c {
  text-align: center;
}

.mt-0 {
  margin-top: 0 !important;
}

.ml-a {
  margin-left: auto !important;
}

.error {
  border: 1px solid red !important;
}

.error-message {
  color: red;
}

.success-message {
  color: green;
}

button[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
  padding: 25px 0;
}

.header .menu-mobile {
  display: none;
}

.header ul li:not(:last-of-type) {
  margin-right: 30px;
}

.header ul a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: 400;
  font-size: 12px;
}

.header ul a:hover {
  color: #FF6524;
}

.header ul.auth li a {
  font-weight: 500;
}

.nav li:not(:last-of-type) {
  margin-right: 30px;
}

.nav a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 12px;
}

.nav a:hover {
  color: #FF6524;
}

.present {
  margin-top: 90px;
}

.present .present__heading {
  margin-bottom: 90px;
}

.present .present__title {
  margin-right: 20px;
  font-size: 54px;
}

.present .present__desc-wrapper {
  max-width: 385px;
}

.present .present__desc-wrapper .line {
  margin-left: -5px;
  font-size: 54px;
}

.present .present__desc-wrapper .present__desc {
  font-size: 14px;
  margin: 39px 0 0 0;
  opacity: 0.8;
  display: block;
}

.download-app {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.download-app .download-app__image {
  min-width: 100px;
}

.download-app .download-app__image:not(:last-of-type) {
  margin-right: 15px;
}

.download-app .download-app__desc {
  margin-left: 25px;
  max-width: 245px;
  font-weight: 500;
  font-size: 13px;
  opacity: 0.4;
}

.rates {
  margin-bottom: 80px;
  position: relative;
}

.rates .rates__image-bg {
  position: absolute;
  width: 100%;
  max-height: 560px;
  min-height: 560px;
  background: url("../img/bg-c-2x.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}

.rates .tab-container {
  z-index: 1;
}

.rates .container {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.mb-10px {
  margin-bottom: 10px;
}

.tab-container {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.tab-container .tab-container__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #F2F2F2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tab-container .tab-container__head p:first-of-type {
  border-top-left-radius: 5px;
}

.tab-container .tab-container__head .tab-container__trigger,
.tab-container .tab-container__head .tab-container__no-trigger {
  font-size: 16px;
  padding: 30px 40px;
}

.tab-container .tab-container__head .tab-container__trigger.active {
  background-color: #fff;
  color: #FF6524;
}

.tab-container .tab-container__item {
  display: none;
  width: 100%;
  background-color: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 40px;
}

.tab-container .tab-container__item.active {
  display: block;
}

.last-update {
  color: #101820;
  margin-bottom: 30px;
  opacity: 0.55;
}

.table.table__grid.w-48 {
  width: 48%;
}

.table.table__grid.w-50 {
  width: 50%;
}

.table.table__grid .table__head .table__col {
  opacity: 0.8;
}

#rates-table .table__col strong {
  font-weight: 500;
}

.table.table__grid .table__body .table__col strong {
  font-weight: 500;
}

.table.table__grid .table__body .table__col {
  display: flex;
  font-size: 22px;
}

.table.table__grid .table__row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.table.table__grid .table__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 15px;
}

.table.table__grid .table__row-two {
  grid-template-columns: repeat(2, 1fr);
}

.table.table__grid .table__row.table__row-two {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.table__more-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background: transparent;
  color: #FF6524;
  font-weight: 500;
  font-family: inherit;
  border: none;
}

.table__more-btn:focus {
  outline: transparent;
}

.hover-gradient:hover {
  background: -webkit-gradient(linear, left top, right top, from(rgba(242, 242, 242, 0)), color-stop(50.8%, #F2F2F2), color-stop(101.61%, rgba(242, 242, 242, 0)));
  background: -o-linear-gradient(left, rgba(242, 242, 242, 0) 0%, #F2F2F2 50.8%, rgba(242, 242, 242, 0) 101.61%);
  background: linear-gradient(90deg, rgba(242, 242, 242, 0) 0%, #F2F2F2 50.8%, rgba(242, 242, 242, 0) 101.61%);
}

.title {
  font-size: 40px;
  font-weight: 500;
}

.about-mobile {
  margin-top: 90px;
  margin-bottom: 110px;
}

.about-mobile .about-mobile__head {
  margin-bottom: 60px;
}

.about-mobile .title {
  margin-right: 92px;
}

.about-mobile .title-desc {
  line-height: 1.4rem;
  max-width: 600px;
  opacity: 0.8;
}

.about-mobile .mobile-screen {
  min-width: 248px;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.about-mobile-table {
  margin-right: 80px;
}

.about-mobile-table .about-mobile-table__row p {
  line-height: 1.4rem;
}

.about-mobile-table .about-mobile-table__row {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 70px 250px 1fr;
  padding: 35px 0;
}

.about-mobile-table .about-mobile-table__title {
  font-weight: 500;
  font-size: 20px;
}

.about-slider {
  overflow-x: hidden;
  margin-bottom: 70px;
  padding: 48px 60px;
}

.swiper-container {
  margin-bottom: 40px;
}

.swiper-container .swiper-slide-custom {
  margin-right: 20px;
  width: 260px;
  min-height: 366px;
  padding: 40px 15px;
  background-color: #ffffff;
}

.swiper-container .swiper-slide-custom p.swiper-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 16px;
  color: #101820;
  letter-spacing: 0.08em;
}

.swiper-container .swiper-slide-custom p.swiper-desc {
  text-align: center;
  font-size: 14px;
  color: #101820;
}

.swiper-container .swiper-slide-custom img {
  margin-bottom: 40px;
}

.swiper-container .swiper-slide-custom p.swiper-title strong {
  font-weight: 500;
}

.swiper-container .swiper-slide-custom p.swiper-desk {
  font-family: 'Raleway', 'Roboto';
  line-height: 1.4rem;
  text-align: center;
  color: #101820;
}

.swiper-container .swiper-slide-custom {
  border-radius: 5px;
}

.okko {
  margin-bottom: 88px;
}

.okko .okko__head {
  margin-bottom: 70px;
}

.okko .title-desc {
  max-width: 455px;
}

.title-desc {
  line-height: 1.4rem;
}

.okko-bg {
  max-height: 432px;
  min-height: 432px;
  background: url("../img/okko-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}

.map-deps {
  margin-bottom: 88px;
}

.map-deps .map-deps__head {
  margin-bottom: 70px;
}

.map-deps .title-desc {
  max-width: 455px;
}

.gmap_iframe {
  height: 432px;
}

.contacts {
  margin-bottom: 120px;
}

.contacts .title {
  margin-bottom: 56px;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  display: flex;
}

.contacts__wrapper .phone-block,
.contacts__wrapper .email-block {
  margin-right: 80px;
}

.contacts__wrapper .contacts__title {
  margin-bottom: 24px;
  font-size: 14px;
  color: #101820;
  opacity: 0.8;
}

.contacts__wrapper .contacts__desc {
  font-weight: 500;
  font-size: 20px;
}

.departments {
  margin-bottom: 40px;
}

.departments .departments__wrapper--nav {
  margin: 50px 0 40px 0;
}

.departments .departments__wrapper--nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.departments .departments__wrapper--nav li {
  margin-bottom: 15px;
  padding: 10px 20px;
}

.departments .departments__wrapper--nav li.dep-active {
  color: #ffffff;
  border-radius: 3px;
  background: #FF6524;
}

.departments .depList-desc {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #101820;
  opacity: 0.7;
}

.departments .get-curr-deps {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #FF6524;
  margin-bottom: 15px;
}

.departments .watch-map-deps {
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #101820;
}

.depList-title {
  font-size: 16px;
}

.departments .watch-map-deps strong {
  font-weight: 400 !important;
}

.modal .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.modal .body {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  z-index: 9999;
}

.reset-passw {
  display: block;
  margin-top: 10px;
  color: #FF6524;
}

.hamburger-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 99999;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #101820;
}

.hamburger-btn span:not(:last-of-type) {
  margin-bottom: 5px;
}

.hamburger-btn.open span {
  background-color: #ffffff;
}

.hamburger-logo {
  margin: 0 auto;
  z-index: 99999;
}

#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff6524;
  z-index: 999;
  color: white;
}

#mobile-nav ul {
  margin-top: 90px;
  padding: 0 30px;
}

#mobile-nav ul li {
  margin-bottom: 20px;
}

#mobile-nav ul li a {
  font-weight: 500;
  font-size: 30px;
}

.mobile-accordion-deps {
  display: none;
}

.mobile-accordion-deps .depList-title {
  font-weight: 400;
}

.mobile-accordion-deps .depList-desc {
  /* font-family: 'Raleway', 'Roboto', sans-serif; */
  font-weight: 400;
}

.swiper-container-mobile-images .swiper-slide {
  width: 165px;
  margin-right: 20px;
}

.swiper-container-mobile-images {
  margin-top: 40px;
  display: none;
}

.download-app {
  margin: 20px 0 20px 0;
}

.select2 {
  width: auto !important;
}

.select2-selection {
  min-height: 55px !important;
  height: 55px !important;
  border: none !important;
}

.select2-selection__arrow {
  height: 55px !important;
}

.select2-selection__rendered {
  line-height: 55px !important;
}

.select2-dropdown {
  border: 1px solid #e0e0e0 !important;
}

.select2-results__options::-webkit-scrollbar {
  background-color: #dedede;
  width: 5px;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #ececec;
  border-radius: 8px;
  border: 2px solid #c7c7c7;
}

.input-group__wrapp-select .select2 {
  width: 100% !important;
}

.input-group__wrapp-select .select2-selection {
  background: transparent !important;
}

#map {
  width: 100%;
  height: 500px;
}

.nowrap {
  white-space: nowrap;
}

.rates-app-wrapp {
  display: none !important;
}

.table.table__grid:first-of-type {
  border-right: 1px solid transparent;
}

.table.bordered {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.border-bottom-transparent {
  border-bottom: 1px solid transparent !important;
}

i.icon {
  display: block;
  width: 25px;
  height: 18px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

i.icon-usd {
  background-image: url("../img/currencies/usd/usd.png");
}

i.icon-ron {
  background-image: url("../img/currencies/lei/lei.png");
}

i.icon-chf {
  background-image: url("../img/currencies/chf/chf.png");
}

i.icon-rub {
  background-image: url("../img/currencies/rub/rub.png");
}

i.icon-pln {
  background-image: url("../img/currencies/pln/pln.png");
}

i.icon-eur {
  background-image: url("../img/currencies/eur/eur.png");
}

i.icon-huf {
  background-image: url("../img/currencies/huf/huf.png");
}

i.icon-czk {
  background-image: url("../img/currencies/czk/czk.png");
}

i.icon-gbp {
  background-image: url("../img/currencies/gbp/gbp.png");
}

i.icon-sek {
  background-image: url("../img/currencies/sek/sek.png");
}

i.icon-aud {
  background-image: url("../img/currencies/aud/aud.png");
}

i.icon-cad {
  background-image: url("../img/currencies/cad/cad.png");
}

.logo-desc {
  position: relative;
}

.logo-desc span {
  position: absolute;
  top: 24px;
  left: 35px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.about-mobile .table__more-btn {
  padding-left: 0;
}

.fz-10 {
  font-size: 10px !important;
}

.table__head .table__row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.icon-abs {
  position: absolute;
  top: 30px;
}

i.icon-arrow {
  display: block;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

i.icon-arrow-top-green {
  background-image: url("../img/GreenArrow.png");
}

i.icon-arrow-down-red {
  background-image: url("../img/RedArrow.png");
}

.mobile-screen {
  position: relative;
  margin-top: 50px;
}

.mobile-screen::before {
  content: '';
  position: absolute;
  top: -42px;
  right: -180px;
  display: block;
  width: 517px;
  height: 700px;
  background-image: url(../img/mobile-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials .socials__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.socials li:not(:last-of-type) {
  margin-right: 50px;
}

.socials .socials__item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 66px;
  height: 66px;
  background: #EBEBEB;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.socials .socials__item img {
  z-index: 1;
}

.socials .socials__item:hover::before,
.socials .socials__item:active::before {
  background: #FF6524;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.social-block {
  max-width: 250px;
  margin: 0 auto;
}

.table__body {
  overflow-x: auto;
}

.prev-course {
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #8a8a8a;
}

/* media queries */
@media(max-width: 1015px) {
  .hamburger-btn {
    margin-right: -28px;
  }

  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 1000px) {
  .map-deps .map-deps__head {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .map-deps .map-deps__head br {
    display: none;
  }

  .map-deps .map-deps__head h2,
  .map-deps .map-deps__head p {
    margin-bottom: 20px;
  }

  .table__grid-wrapp {
    flex-direction: column;
  }

  .table.table__grid:first-of-type {
    border: 1px solid rgba(0, 0, 0, 0.3);
  }

  .table.table__grid:first-of-type {
    margin-bottom: 40px;
  }

  .table.table__grid.w-48 {
    width: 100%;
  }

  .table.table__grid.w-50 {
    width: 100%;
  }

  .okko .okko__head {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .okko .okko__head br {
    display: none;
  }

  .okko .okko__head h2,
  .okko .okko__head p {
    margin-bottom: 20px;
  }
}

@media (max-width: 940px) {
  .container {
    max-width: 1280px;
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .contacts__wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-screen {
    display: none;
  }

  .about-mobile-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .about-mobile-table .about-mobile-table__row {
    grid-template-columns: 70px 150px 1fr;
  }

  .about-mobile .title {
    margin-right: 50px;
  }

  .present__heading.desktop {
    display: none !important;
  }

  .present__heading.mobile {
    display: block !important;
  }

  .present__heading.mobile .present__title {
    font-size: 26px !important;
  }
}

@media (max-width: 860px) {
  .about-mobile-app-wrapper .download-app {
    margin-left: 0 !important;
    flex-direction: unset !important;
    margin-top: 20px !important;
  }

  .about-mobile__head {
    flex-direction: column;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 800px) {
  .title {
    font-size: 22px;
  }

  .contacts__wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .contacts__wrapper .phone-block {
    margin-bottom: 20px;
  }

  .contacts__wrapper .phone-block div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 790px) {
  .display-table-deps {
    display: none !important;
  }

  .mobile-accordion-deps {
    display: block !important;
  }
}

@media (max-width: 780px) {
  .departments .departments__wrapper--nav ul {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

@media (max-width: 710px) {
  .footer .footer__container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .footer .footer__container .footer__logo-container {
    margin-bottom: 20px;
  }

  .footer .footer__container .nav ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer .footer__container .nav ul li {
    margin-bottom: 10px;
  }
}

@media (max-width: 700px) {
  .download-app {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .download-app .mobile {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .download-app .mobile .download-app__image {
    margin-bottom: 10px;
    margin-right: 0px;
  }
}

@media (max-width: 650px) {
  .form-change-curr .btn-form-exchange {
    width: 100%;
  }

  .form-change-curr .exchange-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form-change-curr .exchange-group .btn-change {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .form-change-curr .exchange-group .btn-change img {
    width: 30px;
  }
}

@media (max-width: 600px) {
  .okko-bg {
    max-height: 232px;
    min-height: 232px;
  }

  #mobile-nav ul li a {
    font-size: 20px;
  }

  .tab-container .tab-container__head .tab-container__trigger,
  .tab-container .tab-container__head .tab-container__no-trigger {
    font-size: 14px;
  }

  .tab-container .tab-container__item {
    padding: 15px;
  }
}

@media(max-width: 500px) {
  .about-mobile-table .about-mobile-table__row {
    grid-template-columns: 1fr !important;
    padding: 15px 0 !important;
    text-align: center;
  }

  .about-mobile-table .about-mobile-table__row img {
    margin: 0 auto;
  }

  .about-mobile-table .about-mobile-table__row .about-mobile-table__title {
    margin: 10px 0;
  }

  .about-slider {
    padding: 20px 20px;
  }

  /*.table.table__grid .table__body .table__col {*/
  /*font-size: 16px;*/
  /*}*/

  .header {
    padding-top: 0 !important;
    padding-bottom: 10px !important;
  }

  .container {
    padding: 20px !important;
  }

  .rates,
  .map-deps,
  .about-slider,
  .contacts {
    margin-bottom: 20px !important;
  }

  .about-mobile {
    margin: 20px 0 !important;
  }

  .icon-abs {
    /*top: 24px;*/
  }

  .rates-app-wrapp {
    display: flex !important;
  }

  .about-mobile__head {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .about-mobile__head .title {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .tab-container .tab-container__head .tab-container__trigger,
  .tab-container .tab-container__head .tab-container__no-trigger {
    width: 50%;
    padding: 15px 20px !important;
  }

  /*.icon-abs {*/
  /*  top: 22px;*/
  /*}*/

  /*i.icon {*/
  /*  width: 14px;*/
  /*  height: 10px;*/
  /*}*/

  .rates .rates__image-bg {
    min-height: 155px;
  }

  .footer-email {
    font-size: 16px;
  }

  .contacts__wrapper .contacts__title {
    margin-bottom: 10px;
  }

  .rates {
    margin-top: 5px;
  }

  .departments {
    margin-bottom: 10px;
  }

  .present {
    margin-top: 10px;
  }

  .last-update {
    text-align: right;
    font-size: .5rem;
  }

  .table.table__grid .table__row {
    padding: 16px;
  }

  .mt-60px {
    margin-top: 5px;
  }

  .download-app {
    margin-bottom: 10px;
  }

  .present .present__heading {
    margin-bottom: 20px;
  }

  .contacts .title {
    margin-bottom: 20px;
  }

  .rates-table-header p {
    font-size: .9em;
  }
}

@media (max-width: 440px) {
  .swiper-container .swiper-slide-custom {
    width: 200px;
  }
}

@media(max-width: 420px) {
  .contacts__wrapper .phone-block,
  .contacts__wrapper .email-block {
    margin-right: 0;
  }

  /*.icon-abs {*/
  /*  top: 18px;*/
  /*}*/

  /*.table.table__grid .table__body .table__col {*/
  /*  font-size: 15px;*/
  /*}*/

  .mobile-accordion-deps .depList-title {
    font-size: 12px !important;
  }

  .mobile-accordion-deps .depList-desc {
    font-size: 8px !important;
  }

  .contacts__wrapper .phone-block {
    margin-right: 0 !important;
  }
}

@media (max-width: 400px) {
  .departments .departments__wrapper--nav {
    margin: 20px 0 20px 0;
  }

  .contacts__wrapper .contacts__desc {
    margin-right: 0 !important;
  }

  .icon-abs {
    top: 24px;
  }

  .table.table__grid .table__body .table__col {
    font-size: 18px;
  }
}

@media(max-width: 380px) {
  .rates-app-wrapp .download-app__image {
    max-width: 120px;
  }

  .collabsible-item-label img {
    margin-right: 15px !important;
  }
}

@media (max-width: 370px) {
  #rates-table .table__head {
    font-size: 12px;
  }
}

@media (max-width: 365px) {
  .icon-abs {
    top: 24px;
  }

  .table.table__grid .table__body .table__col {
    font-size: 16px;
  }
}

@media (max-width: 650px) and (max-width: 500px) {
  .form-change-curr .exchange-group .btn-change img {
    width: 20px;
  }
}

@media(min-width: 860px) and (max-width: 1150px) {
  .about-mobile-app-wrapper .download-app {
    flex-direction: column;
  }
}

@media(min-width: 1000px) {
  .mh-108-md {
    min-height: 108px;
  }
}

.banner {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.banner p {
  padding: 0 !important;
  font-weight: 600;
}

/* start widget */
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: #FF6524;
}

.widget-header p {
  padding: 2px 5px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1.1px;
}

.table-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 20px ;
  background-color: #EDEDED;
}

.table-widget table {
  font-family: "eUkraine", "Benzin", sans-serif;
  width: 100%;
  border-collapse: collapse;
  color: #101820;
}
.table-widget table thead th {
  padding: 4px 0;
  font-size: 9px;
  font-weight: 300;
}

.table-widget table td {
  padding: 0 0 8px 0;
}

.table-widget table .border-left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.table-widget table .border-right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.table-widget table .custom-td-style {
  padding: 6px 0;
  height: 100%;
  font-size: 16px;
  font-weight: 300;
  background-color: #ffffff;
}

.table-widget table .td-curr i {
  width: 19px;
  height: 13px;
}

.table-widget table .td-curr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 7px 0;
  font-size: 14px;
}

.table-widget table .td-curr i {
  margin-left: 6px;
  border-radius: 3px;
}

.widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: #FF6524;
}

.widget-footer a {
  display: block;
  width: 100%;
  padding: 2px 5px;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 1.1px;
}
/* end widget */

/*news bloc*/
.breadcrumbs {
    background-color: #ecf0f1;
    padding: 10px 0;
    margin-bottom: 30px;
    border-radius: 5px;
}

    .breadcrumbs ul {
        list-style: none;
        display: flex;
    }

    .breadcrumbs li {
        margin-right: 10px;
    }

        .breadcrumbs li.first {
            padding-left: 15px;
        }

        .breadcrumbs li:after {
            content: ">";
            margin-left: 10px;
            color: #95a5a6;
        }

        .breadcrumbs li:last-child:after {
            content: "";
        }

    .breadcrumbs a {
        color: #FF6524;
        text-decoration: none;
    }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

.page-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    border-bottom: 2px solid #FF6524;
    padding-bottom: 10px;
    font-weight: 200;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.section.news {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .section.news:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.item {
    display: flex;
    flex-direction: row;
}

.image {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
}

    .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

        .image img:hover {
            transform: scale(1.05);
        }

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.content {
    flex-grow: 1;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #95a5a6;
}

    .news-title > a {
        color: #e4591f;
    }

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.pub-date {
    font-size: 11px;
    color: #95a5a6;
    font-style: italic;
}

.read a {
    display: inline-block;
    background-color: #FF6524;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .read a:hover {
        background-color: #e4591f;
    }

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .pagination a {
        display: inline-block;
        padding: 8px 12px;
        margin: 0 5px;
        background-color: white;
        border: 1px solid #ddd;
        color: #FF6524;
        text-decoration: none;
        border-radius: 4px;
    }

        .pagination a.active {
            background-color: #FF6524;
            color: white;
            border-color: #FF6524;
        }

        .pagination a:hover:not(.active) {
            background-color: #f1f1f1;
        }

@media (max-width: 768px) {
    .item {
        flex-direction: column;
    }

    .image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}