/*slider*/
#accounts-slider {
  position: relative;
}

 .accounts__caption {
  list-style: none;
  position: absolute;
  bottom: 25px;
  z-index: 2;
  width: 140px;
  padding: 0;
  text-align: right;
  margin: 0;
}

:lang(vi)  .accounts__caption {
  width: 146px;
}

html[dir="rtl"]  .accounts__caption {
  text-align: left;
}

 .accounts__captaion_item {
  position: relative;
  font-size: 1.4rem;
  line-height: 4rem;
  color: #a1a5a9;
}

 :lang(ro) .accounts__captaion_item:nth-child(2) {
     line-height: 2rem;
 }

 .accounts__captaion_item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.2))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.white .accounts__captaion_item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: -o-linear-gradient(left, rgba(216, 219, 223, 0) 10%, rgba(216, 219, 223, 0.2) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgba(216, 219, 223, 0)), to(rgba(216, 219, 223, 0.2)));
    background: -webkit-linear-gradient(left, rgba(216, 219, 223, 0) 10%, rgba(216, 219, 223, 0.2) 100%);
    background: linear-gradient(to right, rgba(216, 219, 223, 0) 10%, rgba(216, 219, 223, 0.2) 100%);
}

html[dir="rtl"]  .accounts__captaion_item:not(:last-child)::after {
  left: auto;
  right: 0;
  background: -o-linear-gradient(right, rgba(216, 219, 223, 0) 10%, rgba(216, 219, 223, 0.2) 100%);
   background: -webkit-gradient(linear, right top, right top, color-stop(10%, rgba(216, 219, 223, 0)), to(rgba(216, 219, 223, 0.2)));
    background: -webkit-linear-gradient(right, rgba(216, 219, 223, 0) 10%, rgba(216, 219, 223, 0.2) 100%);
    background: linear-gradient(to left, rgba(216, 219, 223, 0) 10%, rgba(216, 219, 223, 0.2) 100%);
}

 .accounts__scrollable {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  height: 40rem;
  padding-left: 15rem;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

  :lang(pl)  .accounts__scrollable {
    height: 41rem;
  }
  :lang(et)  .accounts__scrollable {
    height: 41rem;
  }

  :lang(hu)  .accounts__scrollable {
    height: 41rem;
  }

  :lang(de)  .accounts__scrollable {
    height: 43rem;
  }

  :lang(ph)  .accounts__scrollable {
    height: 45rem;
  }


html[dir="rtl"]  .accounts__scrollable {
  padding-left: 0;
  padding-right: 14rem;
}

 .accounts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

 .accounts__scrollable_item {
  display: inline-block;
  position: absolute;
  z-index: 2;
  width: 280px;
  height: 100%;
  margin: 0 1rem;
  padding: 0 2.8rem 17.9rem 2.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 2px solid #145382;
  border-radius: 5px;
  background: rgba(23, 39, 55, 0.8);
  text-align: left;
  cursor: pointer;
  transition: opacity 0.9s ease-in-out, transform 0.8s ease-in-out,
    -webkit-transform 0.8s ease-in-out;
}

.white .accounts__scrollable_item {
    display: inline-block;
    position: absolute;
    z-index: 2;
    width: 280px;
    height: 100%;
    margin: 0 1rem;
    padding: 0 2.8rem 17.9rem 2.8rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 2px solid #c3dcee;
    border-radius: 5px;
    background: white;
    text-align: left;
    cursor: pointer;
    transition: opacity .9s ease-in-out, transform .8s ease-in-out,
        -webkit-transform .8s ease-in-out;
}

html[dir="rtl"]  .accounts__scrollable_item {
  text-align: right;
}


  .active
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item::before {
  content: "";
  position: absolute;
  width: 280px;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(55%, rgba(21, 30, 41, 1)),
    to(rgba(21, 30, 41, 0))
  );
  background: -o-linear-gradient(
    right,
    rgba(21, 30, 41, 1) 55%,
    rgba(21, 30, 41, 0) 100%
  );
  background: linear-gradient(
    to left,
    rgba(21, 30, 41, 1) 55%,
    rgba(21, 30, 41, 0) 100%
  );
}

  .accounts__list::before {
  content: "";
  position: absolute;
  width: 114px;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(55%, rgba(21, 30, 41, 1)),
    to(rgba(21, 30, 41, 0))
  );
  background: -o-linear-gradient(
    right,
    rgba(21, 30, 41, 1) 55%,
    rgba(21, 30, 41, 0) 100%
  );
  background: linear-gradient(
    to left,
    rgba(21, 30, 41, 1) 27%,
    rgba(21, 30, 41, 0) 115%
  );
}

.white .accounts__list::before {
  content: "";
  position: absolute;
  width: 114px;
  right: -48px;
  top: 0;
  bottom: 0;
  z-index: 3;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(55%, rgb(242 245 251)),
    to(rgba(21, 30, 41, 0))
  );
  background: -o-linear-gradient(
    right,
    rgb(242 245 251) 55%,
    rgba(21, 30, 41, 0) 100%
  );
  background: linear-gradient(
    to left,
    rgb(242 245 251 / 100%%) 27%,
    rgba(21, 30, 41, 0) 115%
  );
}

:lang(ar)  .accounts__list::before {
  content: "";
  position: absolute;
  width: 114px;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  z-index: 3;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(55%, rgba(21, 30, 41, 1)),
    to(rgba(21, 30, 41, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(21, 30, 41, 1) 55%,
    rgba(21, 30, 41, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(21, 30, 41, 1) 27%,
    rgba(21, 30, 41, 0) 115%
  );
}

.white :lang(ar) .accounts__list::before {
  content: "";
  position: absolute;
  width: 114px;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  z-index: 3;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(55%, rgb(255 255 255)),
    to(rgba(21, 30, 41, 0))
  );
  background: -o-linear-gradient(
    left,
    rgb(242 245 251) 55%,
    rgba(21, 30, 41, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgb(242 245 251) 27%,
    rgba(21, 30, 41, 0) 115%
  );
}

@media (max-width: 767px) {
  .white .accounts__list::before,
  .accounts__list::before,
   .white :lang(ar) .accounts__list::before,
    :lang(ar) .accounts__list::before{
    content: none;
  }

}

.white .active~.accounts__scrollable_item~.accounts__scrollable_item~.accounts__scrollable_item::before {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    z-index: 3;
    width: 280px;
    height: calc(100% + 4px);
    background: -o-linear-gradient(right, #f2f5fb 55%, rgba(242, 245, 251, 0) 100%);
    background: -webkit-gradient(linear, right top, left top, color-stop(55%, #f2f5fb), to(rgba(242, 245, 251, 0)));
    background: -webkit-linear-gradient(right, #f2f5fb 55%, rgba(242, 245, 251, 0) 100%);
    background: linear-gradient(to left, #f2f5fb 55%, rgba(242, 245, 251, 0) 100%);
}

html[dir="rtl"]
  
  .active
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item::before {
  left: 0;
  top: -2px;
  right: auto;
  background: -webkit-gradient(linear, left top, left top, color-stop(55%, #151e29), to(rgba(242, 245, 251, 0)));
  background: linear-gradient(to right, #151e29 55%, rgba(242, 245, 251, 0) 100%);
}

html[dir="rtl"]
  
  .white .active
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item::before {
  left: -66px;
  top: -2px;
  right: auto;
  background: -webkit-gradient(linear, left top, left top, color-stop(55%, #f2f5fb), to(rgba(242, 245, 251, 0)));
  background: linear-gradient(to right, #f2f5fb 55%, rgba(242, 245, 251, 0) 100%);
}


  .active
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item
  ~ .accounts__scrollable_item {
  opacity: 0.3;
}

 .accounts__scrollable_item:hover {
  background: #145382;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}

.white .accounts__scrollable_item:hover {
    background: #c3dcee;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

 .accounts__item_banner {
  font-size: 1.2rem;
  color: #fff;
  line-height: 2rem;
  margin: 0;
  position: absolute;
  top: -2px;
  right: 0;
  padding: 0.3rem 1.1rem 0.2rem 1.1rem;
  background: #145382;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 4px;
}

.white .accounts__item_banner {
    position: absolute;
    top: -2px;
    right: 0;
    padding: 0.4rem 1rem 0.1rem 0.9rem;
    margin: 0;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 1.2rem;
    line-height: 2rem;
    color: #000;
    background: #c3dcee;
}


 .accounts__item_title {
  margin-top: 3.6rem;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.white .accounts__item_title {
    margin-top: 2.6rem;
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
    line-height: 5rem;
    font-weight: 400;
    color: #000;
}

 .accounts__item_text {
  font-size: 1.4rem;
  color: #a1a5a9;
  font-weight: 400;
  margin: 0;
}

 .accounts__item_order {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  padding-left: 0.3rem;
  list-style: none;
  margin: 0;
}

html[dir="rtl"]  .accounts__item_order {
  padding-left: 0;
  padding-right: 0.3rem;
}

 .accounts__item_order_li {
  position: relative;
  font-size: 1.4rem;
  line-height: 4rem;
  color: #fff;
}

:lang(ph) .accounts__item_order_li:last-child span.accounts__item_text-mobile {
    display: block;
    max-width: 220px;
    line-height: 1.3;
    height: 40px;
    display: flex;
    align-items: center;
}

.white .accounts__item_order_li {
    position: relative;
    font-size: 1.4rem;
    line-height: 4rem;
    color: #000;
}
.accounts__item_order_li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -3rem;
    width: 100%;
    height: 1px;
    background: -o-linear-gradient(right, rgba(216, 219, 223, 0) 0%, rgba(216, 219, 223, 0.2) 100%);
    background: -webkit-gradient(linear, right top, left top, from(rgba(216, 219, 223, 0)), to(rgba(216, 219, 223, 0.2)));
    background: -webkit-linear-gradient(right, rgba(216, 219, 223, 0) 0%, rgba(216, 219, 223, 0.2) 100%);
    background: linear-gradient(to left, rgba(216, 219, 223, 0) 0%, rgba(216, 219, 223, 0.2) 100%);
}

html[dir="rtl"]  .accounts__item_order_li:not(:last-child)::after {
    background: -o-linear-gradient(left, rgba(216, 219, 223, 0) 0%, rgba(216, 219, 223, 0.2) 100%);
    background: -webkit-gradient(linear, left top, left top, from(rgba(216, 219, 223, 0)), to(rgba(216, 219, 223, 0.2)));
    background: -webkit-linear-gradient(left, rgba(216, 21C9, 223, 0) 0%, rgba(216, 219, 223, 0.2) 100%);
    background: linear-gradient(to right, rgba(216, 219, 223, 0) 0%, rgba(216, 219, 223, 0.2) 100%);
  left: auto;
  right: -3rem;
}

 .accounts__caption-mobile {
  display: none;
  font-size: 1.2rem;
  line-height: 1.14;
  color: #a1a5a9;
  -webkit-transition: all linear 0.5s;
  -o-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

 .accounts__slider_arrow {
  position: absolute;
  top: calc(45% - 20px);
  z-index: 2;
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all linear 0.5s;
  -o-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

 .accounts__slider_prev {
  left: -72px;
  z-index: 4;
  border-left: 2px solid #dfe0e2;
  border-bottom: 2px solid #dfe0e2;
}

 .accounts__slider_next {
  right: -72px;
  z-index: 4;
  border-right: 2px solid #dfe0e2;
  border-top: 2px solid #dfe0e2;
}

html[dir="rtl"]  .accounts__slider_next {
  right: auto;
  left: -72px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(220deg);
  transform: rotate(225deg);
}

html[dir="rtl"]  .accounts__slider_prev {
  left: auto;
  right: -72px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(220deg);
  transform: rotate(225deg);
}

@media (max-width: 1439px) {
   .accounts__table {
    padding: 0 10px;
    position: relative;
  }

   .accounts__slider_prev {
    left: -0px;
  }

  html[dir="rtl"]  .accounts__slider_prev {
    left: auto;
    right: -0px;
  }

   .accounts__slider_next {
    right: 0;
  }

  html[dir="rtl"]  .accounts__slider_next {
    right: auto;
    left: -7px;
  }

   .white .accounts__scrollable_item, .accounts__scrollable_item {
    width: 370px;
  }

  
    

  html[dir="rtl"]
    
    .active
    ~ .accounts__scrollable_item
    ~ .accounts__scrollable_item::before {
    left: 0;
    right: auto;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(55%, rgba(21, 30, 41, 1)),
      to(rgba(21, 30, 41, 0))
    );
    background: -o-linear-gradient(
      left,
      rgba(21, 30, 41, 1) 55%,
      rgba(21, 30, 41, 0) 100%
    );
    background: linear-gradient(
      to right,
      rgba(21, 30, 41, 1) 55%,
      rgba(21, 30, 41, 0) 100%
    );
  }

   .active ~ .accounts__scrollable_item ~ .accounts__scrollable_item {
    opacity: 0.3;
  }
}

@media (max-width: 1199px) {
   .active ~ .accounts__scrollable_item ~ .accounts__scrollable_item {
    opacity: 0.3;
  }
  
    .active
    ~ .accounts__scrollable_item
    ~ .accounts__scrollable_item
    ~ .accounts__scrollable_item {
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .white .accounts__scrollable_item,
   .accounts__scrollable_item {
    width: 350px;
  }
  }

  html[dir="rtl"]  .active ~ .accounts__scrollable_item::before {
    left: 0;
    right: auto;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(55%, rgba(21, 30, 41, 1)),
      to(rgba(21, 30, 41, 0))
    );
    background: -o-linear-gradient(
      left,
      rgba(21, 30, 41, 1) 55%,
      rgba(21, 30, 41, 0) 100%
    );
    background: linear-gradient(
      to right,
      rgba(21, 30, 41, 1) 55%,
      rgba(21, 30, 41, 0) 100%
    );
  }

   .active ~ .accounts__scrollable_item {
    /* opacity: 0.3; */
  }
}

@media (max-width: 768px) {
   .accounts__table {
    padding: 0 20px;
  }

   .accounts__slider_prev {
    left: -10px;
  }

  html[dir="rtl"]  .accounts__slider_prev {
    left: auto;
    right: -10px;
  }

   .accounts__slider_next {
    right: 3px;
  }

  html[dir="rtl"]  .accounts__slider_next {
    right: auto;
    left: 3px;
  }

   .accounts__caption {
    display: none;
  }

  html[dir="rtl"]  .accounts__scrollable,
   .accounts__scrollable {
    padding: 0;
    height: 40rem;
  }

  :lang(ru)  .accounts__scrollable {
    height: 42rem;
  }



   .accounts__scrollable_item {
    width: 370px;
  }

   .accounts__item_order {
    position: relative;
    bottom: auto;
    padding: 25px 0 0 0;
  }

   .accounts__item_order_li {
    padding: 0 0 5px;
  }

   .accounts__caption-mobile {
    display: block;
    margin: 5px 0 5px;
  }

   .accounts__item_text-mobile {
    display: block;
    font-size: 1.4rem;
    line-height: 1.14;
    -webkit-transition: all linear 0.5s;
    -o-transition: all linear 0.5s;
    transition: all linear 0.5s;
  }
}

@media all and (max-width: 575px) {
    :lang(ph) .accounts__scrollable {
    height: 47rem;
}
  .accounts__caption-mobile {
  display: block;
  /* position: absolute; */
  margin: 5px 0 5px;
  }
  .accounts__item_order_li {
    padding: 0 0 5px;
  }
  .accounts__item_text-mobile{
  display: block;
  }
  .accounts__item_text-mobile {
        line-height: 1.14;
  }
  .accounts__caption {
    display: none;
}
.accounts__scrollable {
    padding-left: 0;
}

html[dir="rtl"] .accounts__scrollable {
  padding-right: 0;
}
   .accounts__subtitle {
    text-align: left;
  }

  html[dir="rtl"]  .accounts__subtitle {
    text-align: right;
  }

   .wide__brand_holder {
    text-align: center;
  }

   .wide__brand-choise {
    display: block;
  }

   .accounts__slider {
    margin-bottom: 5rem;
  }

   .white .accounts__scrollable_item, .accounts__scrollable_item {
    margin: 0;
    width: 100%;
  }

  :lang(ja)  .accounts__scrollable,
  :lang(de)  .accounts__scrollable,
  :lang(es)  .accounts__scrollable,
  :lang(uk)  .accounts__scrollable,
  :lang(pt)  .accounts__scrollable,
  :lang(ms)  .accounts__scrollable {
    height: 43rem;
  }
}

@media all and (max-width: 360px) {
  :lang(zh-Hans)  .accounts__scrollable,
  :lang(zh-Hant)  .accounts__scrollable {
    height: 41rem;
  }

  :lang(de)  .accounts__scrollable {
    height: 47rem;
  }

  :lang(pt)  .accounts__scrollable,
   .accounts__scrollable,
  :lang(ru)  .accounts__scrollable {
    height: 46rem;
  }

  :lang(ms)  .accounts__scrollable,
  :lang(id)  .accounts__scrollable {
    height: 45rem;
  }

  :lang(th)  .accounts__scrollable {
    height: 42rem;
  }
}