@import url(reset.css);
main {
  min-height: calc(100vh - 430px);
  display: flex;
  flex-direction: column;
}
main .main-page .errorWrapper {
  display: flex;
  vertical-align: middle;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  height: calc(100vh - 459px);
}

.default-btn {
  font-weight: bold;
  background-color: #DA364E;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: white;
  transition: 0.2s;
  border-radius: 40px;
  padding: 5px 24px;
  font-size: 14px;
}
.default-btn:hover {
  background-color: #F56A7E;
  color: white;
}
.default-btn.disabled {
  pointer-events: none;
  background-color: #F56A7E;
}
.default-btn.blue {
  background-color: #2b5588;
}
.default-btn.blue:hover {
  background-color: #24303F;
}

.border-btn {
  font-weight: bold;
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #DA364E;
  transition: 0.2s;
  border-radius: 40px;
  padding: 5px 24px;
  border: 1px solid #DA364E;
  font-size: 14px;
}
.border-btn:hover {
  border: 1px solid #F38192;
  color: #F38192;
}
.border-btn.disabled {
  pointer-events: none;
  background-color: #F56A7E;
}

.borderless-btn {
  font-weight: bold;
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #DA364E;
  transition: 0.2s;
  padding: 0 24px;
  font-size: 14px;
}
.borderless-btn.disabled {
  pointer-events: none;
  color: #F56A7E;
}

.input-form {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.input-form.error input {
  border-color: #DA364E;
}
.input-form.error input::-moz-placeholder {
  color: #DA364E;
}
.input-form.error input::placeholder {
  color: #DA364E;
}
.input-form.error label {
  color: #DA364E;
}
.input-form img {
  position: absolute;
  right: 15px;
  top: 25px;
  transform: translateY(-50%);
}
.input-form input {
  font-size: 14px;
  height: 50px;
  background-color: rgba(33, 33, 33, 0.03);
  border: 1px solid #9F9F9F;
  border-radius: 8px;
  padding: 0 15px;
  width: 100%;
  transition: 0.2s;
}
.input-form input:focus {
  background-color: #fff;
}
.input-form label {
  color: #9E9E9E;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 15px;
}

.dropdown {
  width: 100%;
  position: relative;
}
.dropdown .select {
  font-size: 14px;
  height: 50px;
  background-color: rgba(33, 33, 33, 0.03);
  border: 1px solid #9F9F9F;
  border-radius: 40px;
  padding: 0 15px;
  width: 100%;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown .select .text {
  margin-bottom: 0;
}
.dropdown.active .select {
  border-radius: 10px 10px 0 0;
  background-color: #fff;
}
.dropdown.active .result {
  max-height: 200px;
  border: 1px solid #9F9F9F;
  border-top: 0;
}
.dropdown .hidden {
  overflow: hidden;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 1;
  transition: max-height 0.2s, padding 0.2s;
  border-radius: 20px;
}
.dropdown .hidden::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.dropdown .hidden::-webkit-scrollbar-thumb {
  background-color: #121A24;
}
.dropdown .hidden .result {
  position: initial;
  overflow-y: auto;
}
.dropdown .result {
  position: absolute;
  transition: max-height 0.2s, padding 0.2s;
  top: 100%;
  left: 0;
  width: 100%;
  overflow-y: auto;
  max-height: 0;
  border-radius: 0 0 10px 10px;
  border: none;
  background-color: #fff;
  border-top: none;
  z-index: 1;
}
.dropdown .result::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.dropdown .result::-webkit-scrollbar-thumb {
  background-color: #121A24;
}
.dropdown .result ul {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.dropdown .result ul li {
  font-size: 14px;
  color: #9E9E9E;
  transition: 0.2s;
  padding: 5px 15px;
  min-height: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .result ul li:hover {
  color: #121A24;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  padding: 16px 0;
  border-bottom: 1px solid #E6E6E6;
  z-index: 1000;
  background-color: #24303F;
}
@media (max-width: 750px) {
  header {
    border-bottom: 1px solid transparent;
  }
  header.authorized .auth .drop {
    z-index: 2;
  }
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav ul {
  display: flex;
  gap: 40px;
}
header nav ul a {
  font-size: 16px;
  color: #EBEBEB;
  transition: 0.2s;
  position: relative;
}
header nav ul a::before, header nav ul a::after {
  content: "";
  left: 0;
  position: absolute;
  height: 1px;
  width: 0%;
  transition: 0.2s;
  background-color: #DA364E;
}
header nav ul a::before {
  top: -7px;
}
header nav ul a::after {
  bottom: -7px;
}
header nav ul a:hover {
  color: #DA364E;
}
header nav ul a:hover::before, header nav ul a:hover::after {
  width: 100%;
}
header .login {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .login .btn:not(.default-btn) {
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  transition: 0.2s;
  flex-shrink: 0;
}
header .login .btn:not(.default-btn):hover {
  color: rgba(218, 54, 78, 0.7);
}
header .auth {
  display: none;
}
header .lang {
  position: relative;
}
header .lang .sel {
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 30px;
  cursor: pointer;
}
header .lang .sel img {
  height: 14px;
  filter: brightness(0) invert(1);
  position: absolute;
  right: -2px;
  opacity: 0;
  transition: 0.2s;
}
header .lang .sel:hover img {
  opacity: 1;
}
header .lang .showlang {
  display: none;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  border: 1px solid #24303F;
}
header .lang .showlang li {
  margin-bottom: 3px;
}
header .lang .showlang li:last-child {
  margin-bottom: 0;
}
header .lang .showlang a {
  font-size: 14px;
}
header .lang.curreny .sel {
  font-size: 16px;
}
header.authorized .auth-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #DA364E;
  font-weight: bold;
  border-radius: 50%;
  border: 3px solid #5F5C5C;
  position: relative;
}
header.authorized .auth-btn img {
  width: 20px;
  filter: brightness(0) invert(1);
}
header.authorized .auth-btn .num {
  font-size: 11px;
  background: #DA364E;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: #fff;
  position: absolute;
  right: -7px;
  top: 0;
}
header.authorized .login {
  display: none;
}
header.authorized .auth {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
header.authorized .auth.forMob {
  display: none;
}
header.authorized .auth.forDes {
  border: 1px solid #D3D3D3;
  border-radius: 40px;
  padding: 6px 7px 6px 7px;
  min-width: 240px;
  margin: -10px 0;
}
header.authorized .auth.forDes .name {
  flex: 1;
}
header.authorized .auth.forDes .auth-btn.open-log {
  border: none;
  background-color: #DA364E;
  color: #fff;
  height: 48px;
  width: 48px;
}
header.authorized .auth.forDes .arrow {
  filter: brightness(0) invert(1);
  cursor: pointer;
}
header.authorized .auth.forDes .auth-btn.email {
  border: none;
  width: auto;
}
header.authorized .auth.forDes .auth-btn.email img {
  width: 24px;
}
header.authorized .auth.forDes .auth-btn.email .num {
  right: -8px;
  top: 8px;
}
@media (max-width: 576px) {
  header.authorized .auth .name {
    display: none;
  }
  header.authorized .auth.forDes {
    display: none;
  }
  header.authorized .auth.forMob {
    display: flex;
    gap: 5px;
    max-width: calc(100% - 140px);
  }
  header.authorized .auth.forMob .name span {
    font-size: 12px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
  }
  header.authorized .auth .auth-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
}
header.authorized .auth .name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #DA364E;
  font-size: 14px;
  text-shadow: 0 0 0;
  cursor: pointer;
}
header.authorized .auth .name span {
  color: inherit;
  padding-top: 3px;
}
header.authorized .auth .drop {
  position: absolute;
  width: 100%;
  right: 0;
  top: calc(100% + 7px);
  background: #FFFFFF;
  border: 1px solid #D3D3D3;
  border-radius: 14px;
  min-width: 240px;
  display: none;
}
@media (max-width: 576px) {
  header.authorized .auth .drop {
    width: 320px;
  }
}
@media (max-width: 420px) {
  header.authorized .auth .drop {
    right: -20px;
  }
}
@media (max-width: 380px) {
  header.authorized .auth .drop {
    right: -40px;
    width: 300px;
  }
}
header.authorized .auth .drop .number {
  font-size: 12px;
  font-weight: normal;
  font-family: firago;
}
header.authorized .auth .drop .title {
  padding-left: 24px;
  display: block;
  padding-top: 16px;
}
header.authorized .auth .drop .add-new {
  margin: 12px 20px;
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  padding-top: 2px;
}
header.authorized .auth .drop .add-new:hover {
  color: #DA364E;
}
header.authorized .auth .drop .add-new:hover img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
header.authorized .auth .drop .add-new img {
  width: 24px;
  position: relative;
  top: -2px;
}
header.authorized .auth .drop ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header.authorized .auth .drop ul li {
  width: 100%;
  margin-bottom: 15px;
}
header.authorized .auth .drop ul li a {
  width: 100%;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}
header.authorized .auth .drop ul li.logout a {
  color: #DA364E;
}
header.authorized .auth .drop .number-wrap {
  position: relative;
}
header.authorized .auth .drop .number-wrap:after {
  content: "";
  width: calc(100% - 45px);
  height: 1px;
  background-color: #D3D3D3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header.authorized .auth .drop .number-wrap:before {
  content: "";
  height: 1px;
  width: calc(100% - 45px);
  background-color: #D3D3D3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header.authorized .auth .drop .numbers-list {
  padding-top: 15px;
  max-height: 210px;
  overflow-y: scroll;
  padding-right: 10px;
}
header.authorized .auth .drop .numbers-list::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
header.authorized .auth .drop .numbers-list::-webkit-scrollbar-thumb {
  background-color: #D3D3D3;
  border-radius: 8px;
}
header.authorized .auth .drop .numbers-list a {
  transition: 0.2s;
  padding-right: 10px;
}
header.authorized .auth .drop .numbers-list a:hover {
  color: #DA364E;
}
header.authorized .auth .drop .numbers-list span {
  font-size: 13px;
  font-family: firago;
  color: inherit;
  flex: 1;
  padding-top: 2px;
  display: block;
}
header.authorized .auth .drop .list {
  padding-top: 15px;
  padding-bottom: 2px;
}
header.authorized .auth .drop .list a {
  padding-left: 23px;
  padding-top: 3px;
}
header.authorized .auth .drop .list a img {
  position: relative;
  top: -3px;
}
header.authorized .auth .drop .list a:hover {
  color: #DA364E;
}
@media (max-width: 380px) {
  header .wrapper {
    gap: 8px !important;
  }
  header .logo img {
    width: 70px;
  }
}

.intro {
  display: flex;
  position: relative;
  margin-bottom: 50px;
}
.intro .text * {
  font-family: firago;
}
.intro .owl-next {
  transform: rotate(-180deg);
}
.intro .owl-next,
.intro .owl-prev {
  position: absolute;
  bottom: -13px;
}
.intro .owl-next img,
.intro .owl-prev img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(1%) saturate(0%) hue-rotate(145deg) brightness(83%) contrast(86%);
  transition: 0.2s;
}
.intro .owl-next:hover img,
.intro .owl-prev:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(27%) saturate(596%) hue-rotate(173deg) brightness(90%) contrast(95%);
}
.intro .left {
  width: 650px;
  position: relative;
}
.intro .left .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}
.intro .left .inner.active {
  opacity: 1;
  pointer-events: unset;
}
.intro .right {
  flex: 1;
  min-width: 0;
}
.intro .right img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro .title {
  color: #24303F;
  font: 48px lightb;
  line-height: 58px;
  text-transform: uppercase;
}
.intro .text p {
  font-size: 14px;
  color: #9E9E9E;
  line-height: 17px;
}
.intro .owl-carousel {
  position: unset;
}
.intro .owl-dots {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dot {
  background-color: #D9D9D9 !important;
  width: 9px;
  height: 9px;
  border-radius: 30px;
  transition: 0.2s;
}
.owl-dot.active {
  width: 22px;
  background-color: #DA364E !important;
}

.popup-wrap {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
}
.popup-wrap .popup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.popup-wrap .popup .country-search {
  margin-top: unset;
}
.popup-wrap .popup .inner {
  padding: 20px;
  background-color: white;
  border-radius: 6px;
  min-width: 310px;
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.popup-wrap .popup .inner::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.popup-wrap .popup .inner::-webkit-scrollbar-thumb {
  background-color: #121A24;
  border-radius: 10px;
}
.popup-wrap .popup .inner .title {
  font-size: 20px;
  color: #121A24;
  font-weight: bold;
  text-align: center;
  display: block;
  max-width: calc(100% - 10px);
}
.popup-wrap .popup .inner p {
  font-size: 12px;
  color: #746A6A;
  text-align: center;
}
.popup-wrap .popup .inner p a {
  font-size: inherit;
  color: #DA364E;
}
.popup-wrap .popup .inner p.text-black {
  color: #121A24;
}
.popup-wrap .popup .inner .close {
  position: absolute;
  right: 5px;
  top: 5px;
  display: block;
}
.popup-wrap .popup .inner .default-btn {
  position: unset;
  width: 100%;
}
.popup-wrap .popup .networks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup-wrap .popup .country-network {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
}
.popup-wrap .popup .country-network .networks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.popup-wrap .popup .country-network span {
  padding: 2px;
  border: 2px solid black;
  border-radius: 5px;
  font-weight: 600;
  color: black;
}
.popup-wrap .popup .flag {
  position: relative;
  top: -2px;
  height: 22px;
  border-radius: 3px;
}
.popup-wrap .popup .img {
  width: 100%;
  height: auto;
}

.grey-title {
  font-size: 13px;
  color: #9E9E9E;
  text-align: center;
  display: block;
  margin-bottom: 24px;
}

.main-title {
  color: #121A24;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}

.partners {
  background-color: #FBFBFB;
  padding: 16px 0;
}
.partners .item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50px;
}
.partners .item a:hover img {
  filter: none;
  opacity: 1;
}
.partners .item img {
  transition: 0.2s;
  filter: grayscale(100%);
  opacity: 0.5;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.package-wrap:not(.none) {
  background-color: #F7F7F7;
  padding: 24px;
}
.package-wrap .text {
  margin: 24px 0 60px 0;
}
.package-wrap .text p {
  color: #75797D;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  font-family: firago;
}
.package-wrap .tab {
  margin: auto;
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  height: 57px;
  background: #F4F4F4;
  border-radius: 78px;
  margin-bottom: 24px;
}
.package-wrap .tab a {
  padding: 12px 16px;
  height: 41px;
  min-width: 90px;
  border-radius: 40px;
  font-size: 14px;
  color: #7E7E7E;
  transition: 0.2s;
}
.package-wrap .tab a:hover {
  color: #24303F;
}
.package-wrap .tab a.active {
  background: #24303F;
  color: #fff;
}
.package-wrap .border-btn {
  margin: 28px auto 0;
}
.package-wrap .grey-title {
  margin-bottom: 8px;
}
.package-wrap .title {
  font-family: lightb;
  display: block;
  font-size: 32px;
  color: #141920;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.package-wrap .container {
  border-radius: 16px;
  padding: 24px 60px;
  background-color: #fff;
}
.package-wrap .grid {
  justify-content: space-between;
}

.service.owl-carousel {
  margin-top: 30px;
  margin-bottom: 40px;
}
.service.owl-carousel .owl-next {
  transform: rotate(-180deg);
}
.service.owl-carousel .owl-next,
.service.owl-carousel .owl-prev {
  position: absolute;
  bottom: -13px;
}
.service.owl-carousel .owl-next img,
.service.owl-carousel .owl-prev img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(1%) saturate(0%) hue-rotate(145deg) brightness(83%) contrast(86%);
  transition: 0.2s;
}
.service.owl-carousel .owl-next:hover img,
.service.owl-carousel .owl-prev:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(27%) saturate(596%) hue-rotate(173deg) brightness(90%) contrast(95%);
}
.service.owl-carousel .owl-stage-outer {
  padding: 10px;
  margin: -16px;
}

.package-box {
  border: 2px solid #E9E9E9;
  background-color: white;
  border-radius: 16px;
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border 0.2s;
  position: relative;
}
.package-box:hover {
  border: 2px solid #DA364E;
}
.package-box .bold {
  font-weight: bold;
}
.package-box .old-price {
  color: #AFAFAF;
  text-decoration: line-through;
  margin-top: -15px;
  display: block;
  margin-bottom: 10px;
  font-family: firago;
  font-size: 14px;
}
.package-box .old-price span {
  color: inherit;
}
.package-box .old-price img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(1%) saturate(0%) hue-rotate(145deg) brightness(83%) contrast(86%);
  height: 12px;
  position: relative;
  top: -2px;
}
.package-box.dark .head {
  background-color: #24303F;
}
.package-box.dark .head .pin {
  background-color: #D9C179;
}
.package-box.dark .box-title {
  color: #fff;
}
.package-box.golden .head {
  background-color: #D9C179;
}
.package-box .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F7F7F7;
  height: 70px;
  padding: 15px;
  border-radius: 16px 16px 0 0;
  margin-bottom: 30px;
}
.package-box .head .pin {
  height: 20px;
  background: #24303F;
  border-radius: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  color: #fff;
  padding: 0 16px;
}
.package-box .head .box-title {
  display: flex;
  align-items: center;
  font: 16px lightb;
}
.package-box .head div p,
.package-box .head .sm-title {
  color: #9E9E9E;
  font-size: 10px;
}
.package-box .bottom {
  padding: 0 16px 16px 16px;
}
.package-box .price {
  color: #9E9E9E;
  font-size: 13px;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 25px;
}
.package-box .price img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(22%) saturate(923%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.package-box .price span {
  color: #141920;
  font: 40px lightb;
  margin: 0 4px 0 11px;
  line-height: 30px;
}
.package-box .default-btn {
  width: 100%;
}
.package-box .list {
  margin-top: 30px;
}
.package-box .list .list-title {
  font-size: 14px;
  color: #141920;
  display: block;
  margin-bottom: 15px;
}
.package-box .list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-box .list p {
  color: rgba(20, 25, 32, 0.8);
  font-size: 13px;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 12px;
  background-image: url(../img/blue-check.svg);
  margin-bottom: 5px;
}
.package-box .link {
  color: #24303F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  width: calc(100% - 10px);
  font-size: 14px;
  color: #24303F;
  padding-top: 2px;
  background-color: #F7F7F7;
  transition: 0.2s;
  height: 40px;
  border-radius: 12px;
  margin: 5px;
  gap: 10px;
  padding-left: 7px;
}
.package-box .link img {
  height: 14px;
  transform: translateX(-100%);
  opacity: 0;
  filter: brightness(0) invert(1);
  transition: 0.2s;
}
.package-box .link:hover {
  color: #fff;
  background-color: #DA364E;
}
.package-box .link:hover img {
  transform: translateX(0);
  opacity: 1;
}
.package-box .table-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
}
.package-box .table-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #141920;
  padding: 8px 0;
  border-bottom: 1px solid #E9E9E9;
  text-transform: uppercase;
  min-height: 45px;
}
.package-box .table-list li span {
  text-transform: initial;
  color: #9E9E9E;
}
.package-box .table-list li:last-child {
  border-bottom: none;
}
.package-box .pinTop {
  background-color: #DA364E;
  height: 25px;
  font-size: 12px;
  color: #fff;
  padding: 0 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  border-radius: 0 0 8px 8px;
  left: 20px;
  top: -7px;
}
.package-box .pinTop.blue {
  background-color: #2b5588;
}
.package-box .pinTop.blue:before {
  background-color: #24303F;
}
.package-box .pinTop:before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 10px;
  height: 5px;
  background-color: #b42c2c;
  position: absolute;
  top: 0;
  left: -10px;
}
.package-box .img {
  position: absolute;
  right: 0px;
  top: -7px;
  right: -7px;
  border-radius: 8px;
  overflow: hidden;
}
.package-box .img.for-region {
  padding: 5px;
  margin: -5px;
  border-radius: 8px;
  background-color: #F7F7F7;
  box-shadow: 0px 0px 10px 0px rgba(82, 82, 82, 0.1);
}
.package-box .img img {
  height: 60px;
}

@keyframes heightAnimation {
  0% {
    @media (min-width: 600px) {
      max-height: 120px;
    }
    @media (max-width: 600px) {
      max-height: 700px;
    }
  }
  70% {
    max-height: calc(100vh - 100px);
  }
  100% {
    max-height: initial;
  }
}
.porting .country-search {
  margin-top: 20px;
}

.country-search {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 60px 0 20px 0;
  position: relative;
}
.country-search form {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 20px);
}
.country-search .searchBar, .country-search .searchDevice {
  border-radius: 6px;
  max-width: calc(100% - 20px);
  width: 300px;
  max-width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #E8E8E8;
  font-size: 13px;
  transition: 0.2s;
}
.country-search .searchBar:focus, .country-search .searchDevice:focus {
  border-color: #d4d1d1;
}
.country-search button {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.country-search button img {
  width: 100%;
}
@media (max-width: 576px) {
  .country-search {
    margin-top: 20px;
  }
}
.country-search .search-result {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background-color: #fff;
  border: 1px solid transparent;
  max-height: 0;
  overflow-y: auto;
  transition: 0.2s;
  border-radius: 6px;
  z-index: 100;
  max-width: 100%;
}
.country-search .search-result::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.country-search .search-result::-webkit-scrollbar-thumb {
  background-color: #9E9E9E;
  border-radius: 4px;
}
.country-search .search-result ul {
  display: flex;
  flex-direction: column;
}
.country-search .search-result ul li {
  padding: 0 15px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.2s;
}
.country-search .search-result ul li img {
  height: 20px;
  border-radius: 4px;
}
.country-search .search-result ul li .title {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
  font-size: 14px !important;
  font-family: unset;
  align-items: unset !important;
  justify-content: flex-start !important;
  margin-bottom: unset;
  text-transform: none;
  gap: unset !important;
}
.country-search .search-result ul li .title .sm {
  color: #9E9E9E;
  font-size: 11px;
  font-family: light;
}
.country-search .search-result ul li .sm {
  color: #9E9E9E;
}
.country-search .search-result ul li:hover {
  background-color: #F7F7F7;
}
.country-search .search-result.active {
  max-height: 200px;
  border-color: #d4d1d1;
}

.countries {
  position: relative;
  padding-bottom: 50px;
}
.countries .list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-height: 130px;
  padding-bottom: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.countries.active .list {
  animation: heightAnimation 0.5s forwards;
}
.countries.active .more img {
  transform: rotate(180deg);
}
.countries .country.more {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .countries .list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .countries .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 750px) {
  .countries .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .countries {
    padding-bottom: 70px;
    margin-top: 20px;
  }
  .countries .country.more {
    bottom: 15px;
  }
  .countries .list {
    max-height: 700px;
  }
}
@media (max-width: 480px) {
  .countries .list {
    grid-template-columns: 1fr !important;
  }
  .countries .country.more {
    bottom: 15px;
    width: 100%;
    justify-content: center;
  }
}

.country {
  border-radius: 6px;
  background-color: rgba(245, 245, 245, 0.768627451);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  justify-content: flex-start;
  height: 50px;
  padding: 0 15px;
  gap: 15px;
  font-size: 14px;
  padding-top: 2px;
  transition: 0.2s;
  text-align: left;
  position: relative;
}
.country:hover {
  background-color: #fff;
  box-shadow: 0px 6px 8px 0px rgba(218, 54, 78, 0.2);
}
.country:hover .arr {
  opacity: 1;
  transform: translateX(0);
}
.country .flag {
  position: relative;
  top: -2px;
  height: 22px;
  border-radius: 3px;
}
.country .arr {
  position: absolute;
  right: 15px;
  transform: translateX(-100%);
  opacity: 0;
  height: 14px;
  transition: 0.3s;
}

.regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .regions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .regions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .regions {
    margin-top: 20px;
  }
}

.region {
  padding: 10px 15px;
  justify-content: space-between;
  background-color: #FFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  border: 1px solid #E8E8E8;
  transition: 0.2s;
  height: auto;
}
.region .wrap {
  font-size: 14px;
  font-family: light;
  display: flex;
  flex-direction: column;
}
.region .sub-title {
  font-size: 12px;
  color: #9E9E9E;
  font-family: firago;
}
.region img {
  height: 50px;
}
.region:hover {
  background-color: #DA364E;
}
.region:hover * {
  color: #fff;
}
.region:hover img {
  filter: brightness(0) invert(1);
}

.goBack {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}
.goBack a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  background-color: #F7F7F7;
  color: #141920;
  transition: 0.2s;
  gap: 10px;
}
.goBack a:hover {
  color: #fff;
  background-color: #DA364E;
}

.main-page .about-wrap {
  background-image: url(../img/BG.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
  background-color: transparent;
  width: 100%;
  min-height: 700px;
}
@media (max-width: 576px) {
  .main-page .about-wrap {
    background: #DA364E;
  }
}
.main-page .about-wrap .wrapper {
  display: flex;
  margin-bottom: 24px;
  gap: 40px;
}
.main-page .about-wrap .wrapper:last-child {
  margin-bottom: 0;
}
.main-page .about-wrap .wrapper img {
  border-radius: 5px;
  width: 600px;
  height: 335px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
}
.main-page .about-wrap .wrapper .title {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #FFFFFF;
  font-weight: bold;
}
.main-page .about-wrap .wrapper .text p {
  color: #fff;
  font-size: 14px;
}

.main-page .blog {
  background-color: #fff;
  margin-bottom: 80px;
}
.main-page .blog .main-title {
  margin: 48px 0 40px 0;
}
.main-page .blog .wrapper {
  min-width: 0;
  display: flex;
  gap: 24px;
}
.main-page .blog .content-title {
  font-size: 24px;
  color: black;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}
.main-page .blog .blog-slider {
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  min-height: 600px;
  padding: 24px;
  flex: 1;
}
.main-page .blog .blog-slider .frame {
  border-radius: 16px;
  overflow: hidden;
  height: 327px;
  width: 100%;
}
.main-page .blog .blog-slider .frame img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-page .blog .blog-slider .title {
  font-size: 16px;
  margin: 10px 0 5px;
}
.main-page .blog .blog-slider .date {
  font-size: 10px;
  color: #746A6A;
}
.main-page .blog .blog-slider .text {
  margin-top: 10px;
}
.main-page .blog .blog-slider .text * {
  font-size: 14px;
  color: #746A6A;
  line-height: 18px;
}
.main-page .blog .blog-slider .head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.main-page .blog .blog-slider .head-wrap .number {
  font-size: 12px;
  color: #746A6A;
}
.main-page .blog .blog-slider .head-wrap .owl-btn {
  filter: brightness(0) saturate(100%) invert(86%) sepia(1%) saturate(0%) hue-rotate(145deg) brightness(83%) contrast(86%);
  transition: 0.2s;
  margin-left: 10px;
}
.main-page .blog .blog-slider .head-wrap .owl-btn:hover {
  filter: none;
}
.main-page .blog .blog-slider .head-wrap .owl-next {
  transform: rotate(-180deg);
}
.main-page .blog .blog-slider .content-title {
  font-weight: bold;
}
.main-page .blog .blog-slider .content-title::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #DA364E;
}
.main-page .blog .other-news {
  width: 500px;
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  min-height: 600px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.main-page .blog .other-news ul {
  flex-grow: 1;
}
.main-page .blog .other-news li {
  margin-bottom: 24px;
  border-bottom: 1px solid #EEEEEE;
  padding: 8px 0;
}
.main-page .blog .other-news li a:hover * {
  color: #121A24;
}
.main-page .blog .other-news li * {
  color: #9E9E9E;
  transition: 0.2s;
}
.main-page .blog .other-news li .title {
  font-size: 14px;
}
.main-page .blog .other-news li .date {
  font-size: 12px;
  margin: 10px 0 15px;
  display: block;
}
.main-page .blog .other-news li .text * {
  font-size: 13px;
}
.main-page .blog .other-news .full {
  color: #DA364E;
  font-size: 14px;
  margin-left: auto;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}

.main-page .faqs {
  margin-bottom: 100px;
}
.main-page .faqs .container {
  display: flex;
  gap: 24px;
}
.main-page .faqs .help {
  width: 500px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F8F8F8;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  padding: 0 80px;
  flex-shrink: 0;
}
.main-page .faqs .help h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
}
.main-page .faqs .help h3 {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: left;
}
.main-page .faqs .help .item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}
.main-page .faqs .help .item span {
  font-size: 18px;
  display: block;
  text-align: left;
}
.main-page .faqs .help .item .sub {
  color: #9E9E9E;
  font-size: 16px;
  margin-top: 5px;
}
.main-page .faqs .right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main-page .faqs .right .main-title {
  margin-bottom: 30px;
}
.main-page .faqs .right ul {
  flex-grow: 1;
  width: 100%;
}
.main-page .faqs .right .border-btn {
  margin: auto;
}

.main-page .package-wrap .grid.active {
  justify-content: center;
  gap: 110px;
}
@media (max-width: 1200px) {
  .main-page .package-wrap .grid.active {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .main-page .package-wrap .grid.active {
    justify-content: flex-start;
    gap: 20px;
  }
}

.faqs-item {
  border: 1px solid #F3F3F3;
  border-radius: 4px;
  margin-bottom: 20px;
}
.faqs-item.active button img {
  transform: rotate(-180deg);
}
.faqs-item button {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  min-height: 65px;
  padding: 16px;
  font-size: 14px;
  line-height: 18px;
}
.faqs-item button img {
  transition: 0.2s;
  margin-left: 10px;
  height: 27px;
  flex-shrink: 0;
}
.faqs-item .text {
  padding: 0 16px 16px 16px;
  display: none;
}
.faqs-item .text p {
  font-size: 14px;
  line-height: 18px;
  color: #9E9E9E;
}

.about .main-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .about .main-title {
    margin-top: 0;
  }
}
.about .main-title mark {
  color: #DA364E;
  background-color: transparent;
}
.about .main-text {
  margin-bottom: 50px;
}
.about .text p {
  text-align: center;
}
.about .text * {
  font-size: 16px;
  color: #9E9E9E;
  font-weight: normal;
  line-height: 20px;
}
.about .wrapper {
  padding: 50px 0;
  background-color: #F9F9F9;
}
.about .wrapper.white {
  background-color: #fff;
}
.about .wrapper .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.about .wrapper .frame {
  border-radius: 10px;
  width: 600px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .wrapper .title {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}
.about .wrapper .content {
  flex: 1;
}
.about .partners {
  background-color: #F9F9F9;
  margin-bottom: 50px;
  padding-bottom: 40px;
}
.about .partners .main-title {
  font-size: 32px;
  text-align: center;
  line-height: 1.2;
}

.services {
  padding-top: 40px;
}
.services .main-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.services .text {
  text-align: center;
  margin-bottom: 50px;
}
.services .text p {
  color: #9E9E9E;
  font-size: 14px;
}
.services .item {
  padding: 50px 0;
}
.services .item:nth-child(2n+1) {
  background-color: #F7F7F7;
}
.services .item:nth-child(2n+1) .container {
  flex-direction: row;
}
.services .item .container {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 24px;
}
.services .item .title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.services .item .text p {
  color: rgba(18, 26, 36, 0.8);
  font-size: 14px;
  text-align: left;
}
.services .item .fit {
  width: 500px;
  flex-shrink: 0;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.login .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 15px;
  display: flex;
  margin-top: 30px;
}
.login .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login .left {
  min-height: 100vh;
  width: 520px;
  padding-top: 30px;
}
.login .left::before {
  background-color: #24303F;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
}
.login .left .logo {
  margin-bottom: 80px;
}
.login .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login .item img {
  margin-bottom: 20px;
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.login .item .title {
  margin-bottom: 10px;
  font-size: 24px;
  display: block;
  color: #fff;
  text-transform: uppercase;
}
.login .item .text p {
  color: #E7E7E7;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}
.login .form {
  width: 400px;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  box-shadow: 0px 3px 6px rgba(196, 196, 196, 0.15);
  border-radius: 10px;
  padding: 15px;
}
.login .form h1 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}
.login .form .sm-title {
  font-size: 13px;
  text-align: center;
  display: block;
  margin-bottom: 24px;
  color: #9E9E9E;
}
.login .forgot {
  font-size: 13px;
  margin-bottom: 30px;
  display: block;
  margin-top: -10px;
}
.login .default-btn {
  font-weight: bold;
  width: 100%;
}
.login .join {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  margin-top: 24px;
}
.login .join a {
  color: #DA364E;
  font-size: inherit;
}

.blog-detail {
  padding: 50px 0;
}
.blog-detail .main-img {
  margin-right: 24px;
  margin-bottom: 10px;
  width: 520px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
}
.blog-detail h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}
.blog-detail .wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.blog-detail .wrap .type {
  height: 33px;
  padding: 8px 16px;
  background: #F3F2FF;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #665AF6;
}
.blog-detail .wrap .date {
  color: #9E9E9E;
  font-size: 14px;
  margin-left: 10px;
}
.blog-detail .text * {
  font-size: 14px;
  color: #9E9E9E;
  line-height: 1.2;
}
.blog-detail .share {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.blog-detail .share .title {
  font-size: 14px;
  display: block;
  text-align: center;
  color: #9E9E9E;
  margin-bottom: 10px;
}
.blog-detail .share ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 50px;
}

.blog-list h1 {
  font-size: 64px;
  margin-top: 50px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
.blog-list .sm-title {
  font-size: 14px;
  display: block;
  color: #9E9E9E;
  text-align: center;
  margin-bottom: 50px;
}
.blog-list .wrapper {
  display: flex;
  gap: 20px;
}
.blog-list .wrapper .main-blog {
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  padding: 16px;
  width: 700px;
  flex-shrink: 0;
}
.blog-list .wrapper .main-blog .frame {
  width: 100%;
  height: 500px;
  border-radius: 11px;
  overflow: hidden;
}
.blog-list .wrapper .main-blog .frame img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-list .wrapper .main-blog .d-flex {
  margin-top: 10px;
  margin-bottom: 15px;
}
.blog-list .wrapper .main-blog .date {
  font-size: 14px;
  color: #9E9E9E;
  margin-left: 10px;
}
.blog-list .wrapper .main-blog .title {
  font-size: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}
.blog-list .wrapper .main-blog .text * {
  font-size: 14px;
  color: #9E9E9E;
  line-height: 1.2;
}
.blog-list .wrapper .aside {
  flex: 1;
}
.blog-list .wrapper .aside .box {
  display: flex;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  padding: 24px 16px;
  gap: 15px;
  margin-bottom: 20px;
}
.blog-list .wrapper .aside .box:hover img {
  opacity: 1;
}
.blog-list .wrapper .aside .box:last-child {
  margin-bottom: 0;
}
.blog-list .wrapper .aside .box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-list .wrapper .aside .box .head .date {
  font-size: 14px;
  color: #9E9E9E;
}
.blog-list .wrapper .aside .box img {
  width: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  height: 184px;
  opacity: 0.8;
  border-radius: 6px;
  transition: 0.2s;
}
@media (max-width: 1366px) {
  .blog-list .wrapper .aside .box img {
    width: 160px;
    height: 124px;
  }
}
.blog-list .wrapper .aside .box .title {
  font-size: 14px;
  margin: 15px 0;
}
.blog-list .wrapper .aside .box .text * {
  font-size: 14px;
  color: #9E9E9E;
}
.blog-list .wrapper .aside .type-blog,
.blog-list .wrapper .aside .type-news {
  font-size: 13px;
  padding: 8px 10px;
}
.blog-list .wrapper .aside .date {
  font-size: 13px;
}
.blog-list .type-blog {
  height: 33px;
  padding: 8px 16px;
  background: #F3F2FF;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #665AF6;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-list .type-news {
  height: 33px;
  padding: 8px 16px;
  background: #FFFBE8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #DBBE24;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-list .bottomTitle {
  font-size: 24px;
  margin: 50px 0 30px 0;
  font-weight: bold;
}
.blog-list .more-blog {
  background-color: #F4F4F4;
  padding: 20px 0;
  margin-bottom: 50px;
}
.blog-list .more-blog .item a {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
  padding: 16px 8px;
  display: block;
}
.blog-list .more-blog .item a img {
  width: 100%;
  height: 121px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.blog-list .more-blog .item a .title {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.blog-list .more-blog .item a .text p {
  font-size: 12px;
  color: #9E9E9E;
}

.faqs h1 {
  font-size: 24px;
  margin: 50px 0 10px 0;
  text-align: center;
}
.faqs .sm-title {
  font-size: 13px;
  color: #746A6A;
  margin-bottom: 24px;
  display: block;
  text-align: center;
}
.faqs .search {
  background: #F6F6F6;
  border: 1px solid #E7E7E7;
  border-radius: 50px;
  height: 55px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 400px;
  margin: auto;
  margin-bottom: 24px;
  padding: 0 25px;
}
.faqs .search input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  border: none;
  background-color: transparent;
}
.faqs .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.faqs .box {
  background: #FFFFFF;
  border: 1px solid #676767;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.faqs .box .title {
  font-size: 16px;
  text-align: center;
  display: block;
}
.faqs .box p {
  font-size: 12px;
  color: #9E9E9E;
}
.faqs .contactus {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
.faqs .contactus .title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}
.faqs .contactus .default-btn {
  margin-top: 40px;
  font-weight: bold;
}

.password-recovery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1;
  margin: 50px 0;
}
.password-recovery.reset .input-form {
  margin-bottom: -5px;
}
.password-recovery .box {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 437px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
}
.password-recovery .box h1 {
  font-size: 24;
  font-weight: bold;
  text-align: center;
}
.password-recovery .box .text p {
  font-size: 14px;
  color: #746A6A;
}
.password-recovery .box .border-btn,
.password-recovery .box .default-btn {
  width: 100%;
}

.joinus {
  padding-bottom: 80px;
}
.joinus .main-title {
  font-size: 48px;
  margin-top: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.joinus .wrapper {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}
.joinus .wrapper .tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 300px;
  background: #FFFFFF;
  border: 1px solid rgba(36, 48, 63, 0.6);
  gap: 16px;
  border-radius: 16px;
  text-transform: uppercase;
  flex-direction: column;
  color: #121A24;
  font-size: 32px;
  font-weight: bold;
  transition: 0.2s;
}
.joinus .wrapper .tab-item .sm-title {
  color: rgba(84, 92, 102, 0.8);
  font-size: 14px;
  text-transform: initial;
  font-weight: normal;
}
.joinus .wrapper .tab-item.active {
  background-color: #DA364E;
  border: 1px solid transparent;
  color: #fff;
}
.joinus .wrapper .tab-item.active * {
  color: #fff;
}
.joinus .reg {
  width: 1000px;
  max-width: 100%;
  padding: 0 20px;
  flex-direction: column;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.joinus .reg .title {
  padding-bottom: 10px;
}
.joinus .reg .text {
  margin-bottom: 40px;
}
.joinus .reg .text p {
  font-size: 14px;
}
.joinus .reg .text a {
  border-bottom: 1px solid #121A24;
  padding-bottom: 1px;
  display: inline-flex;
  font-weight: bold;
}
.joinus .reg .grid {
  display: flex;
  gap: 30px;
}
.joinus .reg .grid .list h3 {
  color: #121A24;
  font-size: 16px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  border-bottom: 1px solid #DA364E;
  margin-bottom: 15px;
  padding-bottom: 10px;
  height: 20px;
}
.joinus .reg .grid .list h3 .main-office {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
  font-size: 10px;
  color: #2E74CC;
  background: #EAF3FF;
  border-radius: 47px;
  height: 28px;
  margin-left: auto;
}
.joinus .reg .grid .list li {
  font-size: 14px;
  color: rgba(72, 74, 78, 0.8);
  gap: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  text-align: left;
}
.joinus .reg .grid .list li img {
  flex-shrink: 0;
}
.joinus .reg .d-flex {
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.joinus .reg .d-flex a {
  background: #FFFFFF;
  border: 1px solid #919191;
  border-radius: 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 16px;
  min-height: 170px;
  width: 170px;
  transition: 0.2s;
}
.joinus .reg .d-flex a:hover {
  color: #fff;
  background-color: #DA364E;
  border: 1px solid #DA364E;
}
.joinus .reg .d-flex a:hover .sm-title {
  color: #fff;
}
.joinus .reg .d-flex a:hover img {
  filter: brightness(0) invert(1);
}
.joinus .reg .d-flex a .sm-title {
  font-size: 14px;
  color: #7c7c7c;
}
.joinus .reg .d-flex a img {
  margin-top: 8px;
}

.porting .main-title {
  text-transform: uppercase;
}
.porting .porting-header {
  margin-top: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.porting .porting-header .steps {
  display: flex;
  align-items: center;
  gap: 40px;
}
.porting .porting-header .steps li.finished .num {
  border: 1px solid transparent;
}
.porting .porting-header .steps li.active .title {
  color: #121A24;
  font-weight: bold;
}
.porting .porting-header .steps li.active .num {
  border: 1px solid #3284EA;
  color: #3284EA;
}
.porting .porting-header .steps li a {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  gap: 16px;
}
.porting .porting-header .steps li .num {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #858585;
  font-size: 16px;
}
.porting .porting-header .steps li .title {
  font-size: 16px;
  color: #9E9E9E;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.porting .porting-header .steps li .title .sm-title {
  font-size: 13px;
  color: #AAAAAA;
}
.porting .porting-form {
  width: 400px;
  max-width: 100%;
  margin: auto;
  padding: 50px 0;
}
.porting .porting-form .input-form input {
  border-radius: 40px;
}
.porting .porting-form .title {
  font-size: 32px;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
}
.porting .porting-form .text {
  margin-bottom: 24px;
}
.porting .porting-form .text p {
  color: rgba(20, 25, 32, 0.8);
  font-size: 14px;
  text-align: center;
}
.porting .porting-form .text p a {
  color: #5293ED;
  font-size: inherit;
}
.porting .finish {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.porting .choose-package {
  background: #FAFAFA;
  border: 1px solid #E4E4E4;
  border-radius: 16px;
  width: 1050px;
  margin: auto;
  max-width: calc(100% - 30px);
  margin-top: 24px;
}
.porting .choose-package .tab-body .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 23px 16px;
}
.porting .choose-package .tab-body .grid.active {
  display: grid;
}
.porting .choose-package .tab-body .grid .package-box {
  width: 100%;
}
.porting .packages-fin {
  width: 1050px;
  max-width: calc(100% - 30px);
  margin: 50px auto 50px;
}
.porting .delivery {
  padding-bottom: 50px;
}
.porting .delivery .wrapper {
  width: 900px;
  margin: auto;
  max-width: calc(100% - 30px);
  gap: 24px;
  display: flex;
}
.porting .delivery .wrapper .tab-item {
  padding: 24px;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #919191;
  border-radius: 16px;
  gap: 8px;
  transition: 0.2s;
}
.porting .delivery .wrapper .tab-item.active {
  background-color: #24303F;
}
.porting .delivery .wrapper .tab-item.active * {
  color: #fff !important;
}
.porting .delivery .wrapper .tab-item.active img {
  filter: brightness(0) invert(1);
}
.porting .delivery .wrapper .tab-item img {
  margin-bottom: 8px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(27%) saturate(596%) hue-rotate(173deg) brightness(90%) contrast(95%);
}
.porting .delivery .wrapper .tab-item .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  color: #121A24;
}
.porting .delivery .wrapper .tab-item p {
  color: #7C7C7C;
  font-size: 14px;
}
.porting .delivery .porting-form {
  flex-direction: column;
  width: 450px;
}
.porting .delivery .porting-form .title {
  font-size: 20px;
  text-transform: uppercase;
}
.porting .delivery .main-title {
  margin-top: 24px;
}
.porting .delivery .pick-up {
  flex-direction: column;
}
.porting .delivery .pick-up .main-title {
  font-size: 24px;
  margin: 30px 0 8px;
}
.porting .delivery .pick-up .sm-title {
  font-size: 14px;
  color: #121A24;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.porting .delivery .pick-up .sub-title {
  font-size: 16px;
  display: block;
  text-align: center;
  margin: 16px 0 30px 0;
}
.porting .delivery .pick-up .select-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.porting .delivery .pick-up .select-wrap .tab-item {
  min-height: 122px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  font-size: 14px;
  text-align: center;
  padding: 24px 16px;
  border: 1px solid #919191;
  border-radius: 16px;
  transition: 0.2s;
}
.porting .delivery .pick-up .select-wrap .tab-item.active {
  background-color: #24303F;
  color: #fff;
}
.porting .delivery .pick-up .select-wrap .tab-item.active img {
  filter: brightness(0) invert(1);
}
.porting .delivery .pick-up .info-box {
  display: flex;
  align-items: center;
  color: #24303F;
  font-size: 14px;
  gap: 11px;
  text-align: center;
}
.porting .delivery .pick-up .info-box img {
  flex-shrink: 0;
}
.porting .delivery .pick-up .code {
  padding: 0 16px;
  width: -moz-fit-content;
  width: fit-content;
  color: #DA364E;
  font-size: 24px;
  margin: 16px auto;
  background: #F2F2F2;
  border: 1px solid #F2F2F2;
  min-height: 61px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.porting .delivery .pick-up .finish {
  margin: auto;
  width: 100%;
  margin-top: 50px;
}
.porting .pay .main-title {
  margin: 24px 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.porting .pay .wrapper {
  width: 700px;
  display: flex;
  margin: auto;
  gap: 24px;
  margin-bottom: 24px;
  max-width: calc(100% - 30px);
}
.porting .pay .wrapper .grid {
  flex-shrink: 0;
}
.porting .pay .wrapper .package-box {
  flex-shrink: 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.porting .pay .wrapper .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
  overflow-wrap: break-word;
}
.porting .pay .wrapper .text p {
  color: #9E9E9E;
  font-size: 14px;
}
.porting .pay .wrapper .border-btn {
  margin-top: 24px;
}
.porting .pay .table-wrap {
  display: flex;
  gap: 20px;
}
.porting .pay .table {
  padding: 16px 24px;
  width: 100%;
  margin: 0 auto 32px;
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  border-radius: 10px;
  max-width: 700px;
}
.porting .pay .table .edit:hover {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.porting .pay .table .default-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px;
  margin-left: auto;
  display: none;
}
.porting .pay .table .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #24303F;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.porting .pay .table .bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.porting .pay .table .bottom ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.porting .pay .table .bottom ul li label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 10px 12px;
  margin-left: -10px;
}
.porting .pay .table .bottom ul li label .input.disabled {
  border: none;
  font-size: 13px;
  color: #9E9E9E;
  margin-left: 3px;
  padding-left: 5px;
  pointer-events: none;
  width: -moz-fit-content;
  width: fit-content;
}
.porting .pay .table.editable .default-btn {
  display: flex;
}
.porting .pay .table.editable .bottom .input.disabled {
  pointer-events: all;
  background-color: transparent;
}
.porting .pay .table.editable .bottom ul li label {
  border-radius: 24px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
}
.porting .pay .table.editable .bottom ul li label:hover {
  background-color: #E7E7E7;
}
.porting .pay .table.editable .bottom ul li label.active {
  border-color: #DA364E;
}
.porting .pay .pay-fin {
  width: 1000px;
  max-width: calc(100% - 30px);
  margin: auto;
  margin-bottom: 70px;
}
.for-agreement.alert-warning {
  font-size: 14px;
  font-family: firago;
  max-width: 1000px;
  margin: 10px;
}
.for-agreement.alert-warning label {
  color: #DA364E !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.for-agreement.alert-warning input {
  top: 4px;
  border: 1px solid #DA364E !important;
  margin-right: 2px;
}
.for-agreement.alert-warning input:checked {
  background-color: #DA364E !important;
  border: 1px solid #DA364E !important;
}
.for-agreement.alert-warning input:checked:before {
  color: #DA364E !important;
}
.for-agreement.alert-warning .alert-link {
  font-size: 12px;
  font-family: firago;
  text-align: left;
}
.for-agreement.alert-warning .alert-link:hover {
  text-decoration: none;
}

.join-us-success {
  padding: 50px 0 100px 0;
}
.join-us-success .inner {
  width: 760px;
  max-width: calc(100% - 30px);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.join-us-success .inner .title {
  font-size: 16px;
  color: #121A24;
  margin: 16px 0 8px;
}
.join-us-success .inner .text {
  margin-bottom: 32px;
}
.join-us-success .inner .text p {
  font-size: 14px;
  color: rgba(18, 26, 36, 0.8);
  text-align: center;
}
.join-us-success .inner .big-title {
  color: rgba(18, 26, 36, 0.8);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.join-us-success .inner .input-form {
  width: 400px;
  max-width: 100%;
}

.our-bundles .wrapper {
  display: grid;
  grid-template-columns: 55% 1fr;
  grid-gap: 30px;
  align-items: center;
  min-width: 0;
  padding-right: 80px;
  position: relative;
}
.our-bundles .wrapper .right {
  position: relative;
  z-index: 1;
  left: -140px;
}
.our-bundles .wrapper img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-bundles .wrapper .vector {
  position: absolute;
  top: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  left: calc(50% - 190px);
  height: 100%;
}
.our-bundles .wrapper .title {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  display: block;
}
.our-bundles .wrapper .title b {
  color: #DA364E;
  font-size: inherit;
}
.our-bundles .wrapper p {
  font-size: 14px;
  color: #9E9E9E;
}
@media (max-width: 1366px) {
  .our-bundles .wrapper .title {
    font-size: 36px;
  }
  .our-bundles .wrapper .vector {
    left: calc(50% - 230px);
  }
}
@media (max-width: 1200px) {
  .our-bundles .wrapper {
    display: block;
    padding: 0;
    padding: 30px 0;
  }
  .our-bundles .wrapper .vector {
    display: none;
  }
  .our-bundles .wrapper img {
    display: none;
  }
  .our-bundles .wrapper .right {
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    left: 0 !important;
  }
}
@media (max-width: 576px) {
  .our-bundles .wrapper {
    padding-top: 0;
  }
  .our-bundles .wrapper .title {
    font-size: 24px;
  }
}
.our-bundles .bundleContainer {
  background-color: #F6F6F6;
  padding-top: 80px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .our-bundles .bundleContainer .choose-package.container {
    padding-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .our-bundles .bundleContainer {
    padding-top: 0 !important;
    margin-bottom: 40px !important;
  }
  .our-bundles .bundleContainer .choose-package .main-title {
    font-size: 24px !important;
  }
  .our-bundles .bundleContainer .tab {
    margin: auto;
  }
}
.our-bundles .bundleContainer .choose-package {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
}
.our-bundles .bundleContainer .choose-package .main-title {
  font-size: 32px;
  margin-bottom: 24px;
}
.our-bundles .bundleContainer .choose-package .package-wrap {
  background-color: transparent;
  padding: 0;
}
.our-bundles .bundleContainer .choose-package .grid.active {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
}
.our-bundles .bundleContainer .choose-package .packages {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  gap: 40px;
}
@media (max-width: 1200px) {
  .our-bundles .bundleContainer .choose-package .packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.port {
  padding: 60px 0;
  background-color: #fff;
}
.port .title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}
.port p {
  color: #9E9E9E;
  text-align: center;
  font-size: 14px;
  flex: 1;
}
.port .wrap {
  display: flex;
  margin-top: 40px;
  gap: 16px;
  justify-content: center;
}
.port .box {
  color: #9E9E9E;
  font-size: 14px;
  width: 180px;
  text-align: center;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 1px solid #919191;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.port .box:hover {
  background-color: #162234;
  color: #fff;
}
.port .box:hover * {
  color: #fff !important;
  filter: brightness(0) invert(1) !important;
}
.port .box img {
  margin-top: 8px;
}
.port .box .title {
  font-size: 16px;
  color: #121A24;
}

.sm-text {
  position: absolute;
  border-radius: 8px;
  width: 200px;
  right: 0;
  background-color: #ebebeb;
  font-size: 12px;
  color: white;
  padding: 5px 10px;
  color: #888888;
}

.bundle-detail .package-box {
  flex-shrink: 0;
}
.bundle-detail .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 70px 0 40px;
  width: 850px;
  max-width: calc(100% - 30px);
}
.bundle-detail .title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 0;
}
.bundle-detail .sm-title {
  font-size: 18px;
  color: #24303F;
  margin-bottom: 30px;
  display: block;
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
}
.bundle-detail .addit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px;
}
.bundle-detail .addit-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: firago;
  color: #24303F;
  font-size: 14px;
}
.bundle-detail .addit-list li label {
  font-size: 12px;
  color: #9E9E9E;
  font-family: light;
}
.bundle-detail .addit-list li span {
  padding: 2px;
  border: 2px solid black;
  border-radius: 5px;
  font-weight: 600;
  color: black;
}
.bundle-detail .addit-list li .check-networks {
  cursor: pointer;
}
@media (max-width: 750px) {
  .bundle-detail .addit-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.bundle-detail .text ol {
  padding-left: 15px;
}
.bundle-detail .text li,
.bundle-detail .text p {
  font-size: 14px;
  color: #9E9E9E;
}
.bundle-detail .default-btn {
  margin-top: 40px;
}
.bundle-detail .default-btn {
  width: 100%;
}
.bundle-detail .bottom {
  padding-bottom: 25px;
}
.bundle-detail .bottom .main-title {
  font-size: 24px;
  padding: 24px 0 32px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
.bundle-detail .bottom .bottom-wrap {
  display: flex;
  gap: 56px;
}
.bundle-detail .bottom .bottom-wrap .box {
  background: #FFFFFF;
  border: 1px solid rgba(36, 48, 63, 0.8);
  border-radius: 16px;
  padding: 16px;
}
.bundle-detail .bottom .bottom-wrap .box .box-title {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bundle-detail .bottom .bottom-wrap .box .head {
  background-color: #F4F4F4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.bundle-detail .bottom .bottom-wrap .box .head span {
  font-weight: bold;
  font-size: 14px;
}
.bundle-detail .bottom .bottom-wrap .box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #383636;
  margin-bottom: 25px;
  gap: 30px;
}
.bundle-detail .bottom .bottom-wrap .box ul li:last-child {
  margin-bottom: 0;
}
.bundle-detail .bottom .bottom-wrap .box ul li span {
  font-size: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}

.register-packages .packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .register-packages .packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.region-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.tab-body {
  position: relative;
}
.tab-body [data-tab] {
  display: none;
}
.tab-body [data-tab].active {
  display: flex;
}
.tab-body .service-slider.owl-carousel:not(.active)[data-tab] {
  display: block;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 100%;
}

#coinex-payment-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  gap: 20px;
}

footer {
  padding: 60px 0;
  background-color: #24303F;
}
footer .logo {
  flex-shrink: 0;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  width: 100%;
}
footer .wrapper .grid {
  display: grid;
  width: 100%;
  justify-content: space-between;
  gap: 50px;
  grid-template-columns: 1fr 1fr 300px 1fr;
}
footer .title {
  font: 16px lightb;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
footer .list li {
  margin-bottom: 10px;
}
footer .list li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-family: firago;
  transition: 0.2s;
}
footer .list li a:hover {
  color: #DA364E;
}
footer .lang {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  gap: 24px;
}
footer .lang a {
  font-size: 12px;
  color: #fafafa;
  font-family: gelight;
  text-transform: uppercase;
}
footer .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
footer .socials ul {
  gap: 10px;
  display: flex;
}

.cabinet {
  display: flex;
  gap: 24px;
  padding: 40px 12px;
}
.cabinet .hidden-mob {
  display: none;
}
.cabinet .menu {
  display: flex;
  background-color: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  width: 300px;
  flex-shrink: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.cabinet .menu .label {
  font-size: 12px;
  color: #272121;
  font-weight: bold;
  padding: 0;
  margin: 0;
  line-height: 1.2;
  min-width: 0;
  letter-spacing: initial;
  border-radius: 0;
  text-align: initial !important;
}
.cabinet .menu .list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cabinet .menu .list a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  background-color: transparent;
  transition: 0.3s;
  font-size: 14px;
  padding: 0 8px;
  border-right: 5px solid transparent;
  padding-top: 2px;
}
.cabinet .menu .list a .num {
  font-size: 12px;
  background-color: #FF3F3F;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.cabinet .menu .list a img {
  transition: 0.2s;
  position: relative;
  top: -2px;
  width: 25px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(27%) saturate(596%) hue-rotate(173deg) brightness(90%) contrast(95%);
}
.cabinet .menu .list a.active, .cabinet .menu .list a:hover {
  transition: 0S;
  border-right: 5px solid #DA364E;
  background-color: #24303F;
  color: #fff;
}
.cabinet .menu .list a.active img, .cabinet .menu .list a:hover img {
  transition: 0s;
  filter: brightness(0) invert(1);
}
.cabinet .text {
  font-size: 14px;
  color: #9E9E9E;
  font-family: firago;
}
.cabinet .text ul {
  margin-top: 24px;
}
.cabinet .text li {
  color: #9E9E9E;
  font-size: inherit;
}
.cabinet .home {
  flex: 1;
}
.cabinet .home .wrapper {
  display: flex;
  gap: 24px;
  flex: 1;
  height: 100%;
}
.cabinet .home .wrapper .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cabinet .home .title {
  font-size: 24px;
  font-family: lightb;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cabinet .home .box {
  background: #FFFFFF;
  box-shadow: 0px 4px 40px 2px rgba(33, 38, 47, 0.1);
  border-radius: 16px;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.cabinet .home .box .text {
  flex-grow: 1;
}
.cabinet .home .box:last-child {
  flex-grow: 1;
}
.cabinet .home .box .default-btn {
  margin-top: 24px;
}
.cabinet .home .flex {
  display: flex;
  align-items: center;
}
.cabinet .home .flex span {
  color: #24303F;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cabinet .home .status {
  background: #F5FFF8;
  border: 1px solid #E9FFE5;
  border-radius: 40px;
  padding: 4px 8px;
  font-size: 12px;
  color: #4EE335;
  font-family: light;
  text-shadow: 0 0 black;
  margin-left: 10px;
}
.cabinet .home .small-package {
  border-radius: 16px;
  padding: 8px 16px;
  background-color: #F8F8F8;
  border: 1px solid #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 15px;
}
.cabinet .home .small-package .wrap {
  display: flex;
  flex-direction: column;
}
.cabinet .home .small-package .status {
  margin: 0;
}
.cabinet .home .small-package .status.pending {
  border-color: #FFEE9A;
  color: #ECB423;
  background-color: #FFFBE8;
}
.cabinet .home .small-package .small-title {
  font-size: 14px;
  color: #171623;
  margin-bottom: 0;
  font-weight: bold;
}
.cabinet .home .small-package .date {
  color: #9E9E9E;
  font-size: 12px;
}
.cabinet .home .time {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 10px;
  margin-left: 10px;
  border-left: 1px solid #DA364E;
  border-right: 1px solid #DA364E;
}
.cabinet .home .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #DFDFDF;
  background-color: #fff;
}
.cabinet .home .right .title {
  margin-bottom: 16px;
}
.cabinet .home .right .img {
  width: 100%;
  height: auto;
}
.cabinet .home .right .package-box .head {
  background-color: transparent;
  flex-direction: column;
  gap: 15px;
  height: auto;
  margin-bottom: 0;
}
.cabinet .home .right .package-box .default-btn {
  width: calc(100% - 15px);
  margin: 16px auto;
}
.cabinet .home .right .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cabinet .home .right .meta .status {
  border-radius: 40px;
  background-color: #F5FFF8;
  color: #4EE335;
  border: 1px solid #4EE335;
  padding: 0 10px;
  font-size: 12px;
  height: 25px;
  margin: 0;
}
.cabinet .home .right .meta .text {
  flex-grow: 0;
}
.cabinet .home .right .meta .text p {
  font-size: 12px;
  color: #6B7280;
}
.cabinet .home .right .box-title {
  gap: 10px;
  display: flex;
  align-items: center;
}
.cabinet .home .right .box-title .frame {
  border-radius: 6px;
  background-color: #F5F5F5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cabinet .home .right .box-title .frame img {
  margin-right: 0;
}
.cabinet .home .right .content {
  margin-top: 15px;
}
.cabinet .home .right .content .refresh {
  color: #DA364E;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-family: firago;
  margin-top: 14px;
}
.cabinet .home .right .content .refresh img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.cabinet .home .right .content .gb-left {
  width: 100%;
  border-radius: 40px;
  background-color: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #DA364E;
  font-size: 18px;
  font-weight: bold;
  height: 38px;
  margin-top: 10px;
}
.cabinet .home .border-btn {
  width: 100%;
  flex-shrink: 0;
}
.cabinet .home .title {
  display: flex;
  justify-content: space-between;
}
.cabinet .home .title .date {
  font-size: 13px;
  color: #9E9E9E;
  display: flex;
  gap: 5px;
  align-items: center;
}
.cabinet .home .package-box {
  width: 100%;
}
.cabinet .border-box {
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.cabinet .border-box .main-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 15px;
  margin-bottom: 24px;
  text-align: left;
  justify-content: flex-start;
}
.cabinet .border-box .status {
  height: 28px;
  background: #F5FFF8;
  border: 1px solid #92FF80;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  min-width: 80px;
  color: #26D657;
  font-size: 12px;
  margin-top: -2px;
  font-weight: bold;
}
.cabinet .border-box .flex {
  display: flex;
  align-items: flex-start;
}
.cabinet .border-box .text {
  margin-bottom: 15px;
}
.cabinet .border-box .text p {
  color: #888888;
  font-size: 14px;
}
.cabinet .border-box .black-text {
  font-size: 16px;
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}
.cabinet .border-box .black-text span {
  display: flex;
  gap: 10px;
}
.cabinet .border-box .red-text {
  color: #DA364E;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.cabinet .border-box .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  cursor: pointer;
}
.cabinet .border-box .card-wrap {
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 5px;
  background: #F7F7F7;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  opacity: 0.8;
  cursor: pointer;
}
.cabinet .border-box .card-wrap.active {
  border: 1px solid #DA364E;
}
.cabinet .border-box .card-wrap .remove:hover {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.cabinet .border-box .card-wrap .card {
  position: relative;
}
.cabinet .border-box .card-wrap .card .name {
  position: absolute;
  left: 7px;
  font-size: 10px;
  color: #fff;
  bottom: 25px;
}
.cabinet .border-box .card-wrap .card .exp {
  position: absolute;
  font-size: 9px;
  left: 7px;
  font-size: 10px;
  bottom: 7px;
  color: #fff;
  text-transform: uppercase;
}
.cabinet .border-box .bold-grey {
  font-weight: bold;
  color: #4B4444;
  display: block;
  margin-bottom: 4px;
}
.cabinet .right-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cabinet .payment-option .wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  min-width: 0;
}
.cabinet .payment-option .wrapper img {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
.cabinet .payment-option .border-btn {
  margin-top: 24px;
}
.cabinet .new-card {
  background: #FCFCFC;
  border-radius: 16px;
  padding: 16px;
  margin-top: 24px;
  display: none;
}
.cabinet .new-card .title {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cabinet .new-card .title img {
  cursor: pointer;
}
.cabinet .new-card .flex {
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.cabinet .round {
  font-size: 14px;
  color: black;
  border: 1px solid #DEDEDE;
  border-radius: 40px;
  height: 50px;
  width: 100%;
}
.cabinet .relative {
  min-width: 120px;
}
.cabinet .relative .sm-text {
  display: none;
}
.cabinet .relative img {
  cursor: pointer;
}
.cabinet .relative img:hover ~ .sm-text {
  display: block;
}
.cabinet .payment-history .wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  min-width: 0;
}
.cabinet .payment-history .wrapper img {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
.cabinet .payment-history .dropdown {
  min-width: 106px;
  width: -moz-fit-content;
  width: fit-content;
  outline: none;
}
.cabinet .payment-history .dropdown .select {
  padding: 0 45px 0 15px;
  outline: none;
}
.cabinet .payment-history .dropdown .text {
  margin-bottom: 0;
}
.cabinet .payment-history .dropdown .result {
  border: 1px solid transparent;
  min-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  top: calc(100% + 5px);
  left: 0;
  overflow-y: hidden;
  transition: 0s;
}
.cabinet .payment-history .dropdown .result li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #6D6D6D;
  cursor: pointer;
}
.cabinet .payment-history .dropdown .result li:hover {
  color: black;
}
.cabinet .payment-history .dropdown .result li:last-child {
  margin-bottom: 0px;
}
.cabinet .payment-history .dropdown.active .select {
  border-radius: 40px;
  background-color: #24303F;
}
.cabinet .payment-history .dropdown.active .select * {
  filter: brightness(0) invert(1) !important;
}
.cabinet .payment-history .dropdown.active .result {
  padding: 16px;
  overflow-y: auto;
  border-radius: 16px;
  border-color: #EBEBEB;
}
.cabinet .payment-history .flex1 {
  flex: 1;
}
.cabinet .payment-history .flex1 label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cabinet .payment-history .default-btn {
  flex-shrink: 0;
}
.cabinet .payment-history label {
  display: flex;
  align-items: center;
}
.cabinet .payment-history table .dropdown {
  width: 100%;
}
.cabinet .payment-history table .dropdown .select {
  border: none;
  padding: 0 10px;
  border-radius: 10px;
  background-color: transparent;
  color: #000;
  font-size: 13px;
}
.cabinet .payment-history table .dropdown .select span {
  color: inherit;
  font-size: inherit;
}
.cabinet table {
  width: 100%;
  margin-top: 16px;
}
.cabinet table td {
  white-space: nowrap;
  width: 25%;
}
.cabinet table thead tr td {
  text-align: center;
  background-color: #F6F6F6;
  padding: 8px 10px;
  white-space: nowrap;
  font-size: 13px;
}
.cabinet table thead tr td img {
  margin-left: 6px;
}
.cabinet table thead tr td:first-child {
  border-radius: 8px 0 0 8px;
}
.cabinet table thead tr td:last-child {
  border-radius: 0 8px 8px 0;
}
.cabinet table thead .input {
  position: relative;
}
.cabinet table thead .input input {
  border-radius: 40px;
  height: 40px;
  background-color: transparent;
  color: black;
  font-size: 14px;
  border: 1px solid #9F9F9F;
}
.cabinet table thead .input img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  margin-left: 6px;
}
.cabinet table tbody td {
  color: black;
  font-size: 14px;
  text-align: center;
  padding: 12px 15px;
  border-bottom: 1px solid #E2E2E2;
}
.cabinet table tbody td:first-child {
  text-align: left;
}
.cabinet table tbody td .grey {
  font-size: 12px;
  color: #746A6A;
  margin-top: 4px;
  display: block;
}
.cabinet .border-box table .status {
  height: 36px;
  min-width: 87px;
  font-weight: normal;
  padding-top: 3px;
}
.cabinet .border-box table .status.purple {
  color: #315AED;
  border: 1px solid #315AED;
  background-color: rgba(49, 90, 237, 0.1);
}
.cabinet .border-box table .status.red {
  color: #ED313C;
  border: 1px solid #ED313C;
  background-color: rgba(237, 49, 60, 0.1);
}
.cabinet .border-box table .status.black {
  color: #151D36;
  border: 1px solid #151D36;
  background-color: rgba(21, 29, 54, 0.1);
}
.cabinet .border-box table .status.yellow {
  color: #A2A518;
  border: 1px solid #A2A518;
  background-color: rgba(162, 165, 24, 0.1);
}
.cabinet .usage td {
  padding: 8px !important;
}
.cabinet .personal-assist {
  width: 100%;
}
.cabinet .personal-assist .inner {
  width: 407px;
}
.cabinet .personal-assist .center {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cabinet .personal-assist .center .text {
  margin-bottom: 40px;
}
.cabinet .personal-assist .main-title {
  margin: 0;
  margin-bottom: 4px;
}
.cabinet .personal-assist .item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}
.cabinet .personal-assist .item span {
  font-size: 18px;
  display: block;
  text-align: left;
}
.cabinet .personal-assist .item .sub {
  color: #9E9E9E;
  font-size: 16px;
  margin-top: 5px;
}
.cabinet .personal-assist .default-btn {
  margin-top: 20px;
}
.cabinet .personal-assist .faqs {
  margin-top: 24px;
  padding-top: 24px;
}
.cabinet .personal-assist .faqs .main-title {
  text-align: center;
  justify-content: center;
}
.cabinet .personal-assist .faqs .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.cabinet .personal-assist .faqs .text {
  text-align: center;
  margin-bottom: 0;
}
.cabinet .inbox {
  background: #fafafa;
  border-radius: 6px;
}
.cabinet .inbox .head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px solid #DA364E;
  margin-bottom: 40px;
}
.cabinet .inbox .head .main-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}
.cabinet .inbox .bottom {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 16px;
  padding: 16px;
}
.cabinet .inbox .bottom .wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #DA364E;
  align-items: center;
  margin-bottom: 16px;
}
.cabinet .inbox .bottom .wrap .input {
  position: relative;
}
.cabinet .inbox .bottom .wrap .input input {
  width: 326px;
  height: 54px;
  background: rgba(33, 33, 33, 0.03);
  border-radius: 4px 4px 0px 0px;
  font-size: 16px;
  color: #000;
  border: none;
}
.cabinet .inbox .bottom .wrap .input img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.cabinet .inbox .bottom .list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cabinet .inbox .bottom .list li {
  width: 668px;
  min-height: 124px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #F1F1F1;
  border-radius: 6px;
  position: relative;
  margin-bottom: 10px;
}
.cabinet .inbox .bottom .list li .title {
  display: block;
  margin-bottom: 10px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}
.cabinet .inbox .bottom .list li p {
  color: #746A6A;
  font-size: 14px;
}
.cabinet .inbox .bottom .list li .trash {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.cabinet .chat {
  background-color: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 16px;
}
.cabinet .chat .chatHeader {
  padding: 20px 15px 15px;
  border-bottom: 1px solid #DA364E;
}
.cabinet .chat .chatHeader .back {
  color: #121A24;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cabinet .chat .scroll {
  padding: 20px;
  height: calc(100vh - 610px);
  overflow-y: scroll;
}
.cabinet .chat .scroll::-webkit-scrollbar {
  width: 6px;
}
.cabinet .chat .scroll::-webkit-scrollbar-track {
  background-color: #fafafa;
}
.cabinet .chat .scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
}
.cabinet .chat .scroll .text-item .username {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #746A6A;
  margin-bottom: 5px;
}
.cabinet .chat .scroll .text-item .message {
  background-color: #162234;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 50px);
  color: white;
  border-radius: 20px 20px 17px 17px;
  position: relative;
}
.cabinet .chat .scroll .text-item .message img {
  position: absolute;
  left: -7px;
  bottom: 0;
}
.cabinet .chat .scroll .text-item .date {
  font-size: 12px;
  padding-left: 10px;
  color: #AAAAAA;
}
.cabinet .chat .scroll .text-item.user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cabinet .chat .scroll .text-item.user .message {
  background-color: #F7F7F7;
  color: #121A24;
}
.cabinet .chat .scroll .text-item.user .message img {
  left: initial;
  right: -10px;
  top: 0;
}
.cabinet .chat .chatInputWrapper {
  display: flex;
  width: calc(100% - 48px);
  margin: auto;
  border-top: 1px solid #d5d5d5;
  margin-top: 30px;
  padding: 16px 0;
  flex-direction: column;
}
.cabinet .chat .chatInputWrapper textarea {
  width: 100%;
  height: 40px;
  border: none;
  resize: none;
  outline: 0;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  padding-right: 30px;
  font-family: light;
}
.cabinet .chat .chatInputWrapper .attach {
  color: #746A6A;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
}
.cabinet .services {
  display: flex;
  gap: 24px;
  padding-top: 0;
  flex: 1;
}
.cabinet .services .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 360px;
}
.cabinet .services .left .box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0px 4px 40px 2px rgba(33, 38, 47, 0.1);
  background-color: #fff;
  flex: 1;
}
.cabinet .services .left .box .title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
.cabinet .services .left .box p {
  color: #7C7C7C;
  font-size: 14px;
  font-family: firago;
}
.cabinet .services .right {
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  box-shadow: 0px 4px 40px 2px rgba(33, 38, 47, 0.1);
  border-radius: 16px;
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 30px;
}
.cabinet .services .right .head {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #DA364E;
  width: 100%;
}
.cabinet .services .right .title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.cabinet .services .right .sub-title {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
  padding: 0 10px;
}
.cabinet .services .right .flex {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  margin-top: 10px;
}
.cabinet .services .right .flex ul {
  list-style-type: disc;
  margin-left: 15px;
}
.cabinet .services .right .flex ul li {
  list-style-type: disc;
  color: #7c7c7c;
  font-size: 14px;
  margin-bottom: 5px;
}
.cabinet .services .right .img-wrap {
  display: flex;
  gap: 5px;
  margin-bottom: 30px;
}
.cabinet .services .popup-wrap .inner {
  width: 470px;
}
.cabinet .services .popup-wrap .inner .title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
  text-align: left;
}
.cabinet .services .popup-wrap .input-form {
  position: relative;
}
.cabinet .services .popup-wrap .input-form input {
  border-radius: 40px;
}
.cabinet .services .popup-wrap .input-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background-color: #fff;
  border: 1px solid #DA364E;
  min-width: 90px;
  border-radius: 40px;
}
.cabinet .services .popup-wrap .show {
  margin-top: 40px;
  display: none;
}
.cabinet .services .popup-wrap .show .sm-title {
  margin-bottom: 10px;
  text-align: center;
  display: block;
  font-size: 16px;
}
.cabinet .services .popup-wrap .show .default-btn {
  margin: auto;
  margin-top: 30px;
  margin-bottom: 24px;
}
.cabinet .services .popup-wrap .show .resend {
  margin-bottom: 40px;
}
.cabinet .services .popup-wrap .show .resend .red {
  color: #DA364E;
}
.cabinet .services .popup-wrap .show .remaining {
  min-height: 24px;
  padding: 3px 10px;
  background: #F4F4F4;
  border: 1px solid #F0F0F0;
  border-radius: 25px;
  font-size: 13px;
  color: #746A6A;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
}
.cabinet .services .popup-wrap .show .remaining span {
  color: #231B38;
  padding-left: 8px;
}
.cabinet .services .popup-wrap .default-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 141px;
}
.cabinet .services .popup-wrap .code {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}
.cabinet .services .popup-wrap .code input {
  border: none;
  border-bottom: 1px solid #24303F;
  width: 36px;
}
.cabinet .personal-info {
  padding: 56px 0;
  padding-top: 0;
}
.cabinet .personal-info .info-box {
  background: #FFFFFF;
  border: 1px solid #D5D1D1;
  box-shadow: 0px 4px 40px 2px rgba(33, 38, 47, 0.1);
  border-radius: 16px;
  padding: 24px;
  width: 900px;
  max-width: 100%;
  margin: auto;
}
.cabinet .personal-info .head {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.cabinet .personal-info .sm-title {
  margin-bottom: 15px;
  display: block;
  text-align: center;
  font-size: 16px;
}
.cabinet .personal-info .wrapper {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.cabinet .personal-info ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: flex-end;
}
.cabinet .personal-info ul li span {
  margin-left: 4px;
  color: #9E9E9E;
  font-size: 16px;
  font-weight: normal;
}
.cabinet .personal-info ul li span img {
  margin-top: -5px;
  margin-left: 8px;
}
.cabinet .personal-info .reset-pass {
  font-weight: bold;
  text-transform: uppercase;
  color: #5359E4;
  margin-bottom: 16px;
  margin-top: 10px;
  display: block;
}
.cabinet .personal-info .unlink {
  border-bottom: 1px solid rgba(20, 25, 32, 0.75);
  color: rgba(20, 25, 32, 0.75);
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.cabinet .personal-info .main-title {
  text-align: center;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
}
.cabinet .personal-info .prof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.cabinet .personal-info .prof .frame {
  width: 48px;
  height: 48px;
  background: #24303F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
.cabinet .personal-info .prof .right {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}
.cabinet .personal-info .prof .right div {
  color: #767676;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
}
.cabinet .personal-info .prof .right div .status {
  color: #D9C179;
  background: #FFF7DD;
  border-radius: 40px;
  padding: 4px;
  font-size: 12px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cabinet .personal-info .popup-wrap .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin-bottom: 25px;
  justify-content: flex-start;
  text-align: left;
}
.cabinet .personal-info .popup-wrap .inner {
  padding: 15px;
  width: 453px;
  max-width: calc(100vw - 30px);
}
.cabinet .personal-info .popup-wrap .input-form {
  position: relative;
  margin-bottom: 0;
}
.cabinet .personal-info .popup-wrap .input-form input {
  height: 54px;
  background: rgba(33, 33, 33, 0.03);
  border-radius: 40px;
}
.cabinet .personal-info .popup-wrap .input-form .border-btn {
  padding: 0 24px;
  height: 54px;
  border-radius: 40px;
  position: absolute;
  right: 0;
  top: 0;
}
.cabinet .personal-info .popup-wrap.password .title {
  text-align: center;
  margin-bottom: 0px;
}
.cabinet .personal-info .popup-wrap.password .default-btn {
  margin-top: 25px;
}
.cabinet .parking .inner {
  width: 450px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
}
.cabinet .parking .sm-title {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
  margin-top: 10px;
}
.cabinet .parking .input-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0 15px;
}
.cabinet .parking .input-wrap input {
  height: 36px;
  width: 60px;
  text-align: center;
  font-size: 20px;
  color: #000;
  background: #F8F8F8;
  border: 1px solid #F8F8F8;
  border-radius: 4px;
}
.cabinet .parking .price {
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  background: #24303F;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 40px;
  height: 40px;
  color: #fff;
  padding: 0 10px;
  padding-top: 1px;
}
.cabinet .parking .or {
  margin-top: 30px;
  color: #9E9E9E;
  font-size: 14px;
  display: flex;
  width: 100%;
  gap: 5px;
  align-items: center;
  margin-top: 5px;
}
.cabinet .parking .or .line {
  width: 100%;
  height: 1px;
  background-color: #E2E2E2;
  flex-shrink: 2;
}
.cabinet .parking .check {
  background: #F2F2F2;
  border-radius: 8px;
  padding: 10px;
  margin: 30px 0;
}
.cabinet .parking .check label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4E3F3F;
  font-size: 14px;
  margin-bottom: 10px;
}
.cabinet .parking .check .info {
  display: flex;
  gap: 4px;
  color: #555555;
  font-size: 12px;
  text-align: left;
  font-family: firago;
}
.cabinet .parking .check .info img {
  flex-shrink: 0;
}
.cabinet .parking.shadow {
  background-color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  position: relative;
}
.cabinet .parking.shadow .title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cabinet .parking.shadow p {
  font-size: 14px;
  color: #4E3F3F;
}
.cabinet .parking.parking-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 4px 40px 2px rgba(33, 38, 47, 0.1);
  border-radius: 16px;
}
.cabinet .parking.parking-payment .title {
  text-align: center;
  font-weight: bold;
}
.cabinet .parking.parking-payment p {
  text-align: center;
}
.cabinet .parking.parking-payment .border-box {
  width: 546px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px 2px rgba(33, 38, 47, 0.1);
  border-radius: 16px;
  border: none;
  margin-top: 24px;
}
.cabinet .parking.parking-payment .border-box p {
  text-align: left;
  color: #746A6A;
}
.cabinet .parking.parking-payment .border-box .grid {
  gap: 20px;
}
.cabinet .back {
  position: absolute;
  gap: 4px;
  display: flex;
  left: 15px;
  top: 15px;
  align-items: center;
  font-size: 16px;
}
.cabinet .service-bundles .main-img {
  flex-shrink: 0;
}
.cabinet .service-bundles .main-title {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
}
.cabinet .service-bundles .main-title b {
  color: #DA364E;
  font-size: inherit;
  text-transform: uppercase;
}
.cabinet .service-bundles p {
  text-align: center;
  color: #9E9E9E;
}
.cabinet .service-bundles .wrapper {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.cabinet .service-bundles .wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.cabinet .service-bundles .box {
  background: #FFFFFF;
  border: 1px solid #C1C1C1;
  border-radius: 16px;
  padding: 10px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #595D62;
  font-size: 14px;
  min-height: 90px;
  width: 100%;
  transition: 0.2s;
}
.cabinet .service-bundles .box.active {
  background-color: #24303F;
  color: #fff;
}
.cabinet .service-bundles .box.active img {
  filter: brightness(0) invert(1);
}
.cabinet .service-bundles .sm-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cabinet .service-bundles .input-form {
  position: relative;
  width: 100%;
}
.cabinet .service-bundles .input-form input {
  background: rgba(33, 33, 33, 0.03);
  border: 1px solid #9F9F9F;
  border-radius: 40px;
  height: 50px;
}
.cabinet .service-bundles .input-form .check {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 90px;
  height: 50px;
  border-radius: 40px;
  position: absolute;
  right: 0;
  top: 0;
}
.cabinet .service-bundles .default-btn {
  margin-left: auto;
}
.cabinet .services-package {
  background: #F2F2F2;
  border: 1px solid #E9E5E5;
  border-radius: 16px;
}
.cabinet .services-package .package-wrap .container {
  padding: 16px;
}
.cabinet .services-package .package-wrap .container .package-box {
  width: 100%;
  box-shadow: none;
}
.cabinet .services-package .package-wrap .container .title {
  font-size: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cabinet .services-package .det-wrap {
  display: flex;
  gap: 32px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 16px;
}
.cabinet .services-package .det-wrap .package-box {
  flex-shrink: 0;
  min-height: initial;
}
.cabinet .services-package .det-wrap .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
  align-items: center;
}
.cabinet .services-package .det-wrap p {
  color: #9E9E9E;
}
.cabinet .services-package .det-wrap .default-btn {
  margin-top: 40px;
  width: 100%;
}
.cabinet .services-package .bottom {
  padding: 16px 24px;
  background: #fff;
  margin-top: 8px;
  border-radius: 16px;
}
.cabinet .services-package .bottom .main-title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 24px;
  justify-content: center;
}
.cabinet .services-package .bottom .bottom-wrap {
  display: flex;
  gap: 16px;
}
.cabinet .services-package .bottom .bottom-wrap .box {
  background: #FFFFFF;
  border: 1px solid rgba(36, 48, 63, 0.8);
  border-radius: 16px;
  padding: 16px;
}
.cabinet .services-package .bottom .bottom-wrap .box .box-title {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cabinet .services-package .bottom .bottom-wrap .box .head {
  background-color: #F4F4F4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.cabinet .services-package .bottom .bottom-wrap .box .head span {
  font-weight: bold;
  font-size: 14px;
}
.cabinet .services-package .bottom .bottom-wrap .box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #383636;
  margin-bottom: 25px;
  gap: 30px;
}
.cabinet .services-package .bottom .bottom-wrap .box ul li:last-child {
  margin-bottom: 0;
}
.cabinet .services-package .bottom .bottom-wrap .box ul li span {
  font-size: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cabinet .checkout {
  background-color: #fff;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.cabinet .checkout .back {
  gap: 10px;
}
.cabinet .checkout .title {
  margin: 8px 0 15px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
}
.cabinet .checkout p {
  color: #9E9E9E;
  font-size: 14px;
}
.cabinet .checkout .package-box {
  margin-top: 15px;
}
.cabinet .checkout .bot {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
.cabinet .checkout .py {
  width: 100%;
  margin-top: 32px;
}
.cabinet .rightside {
  width: 100%;
}
.cabinet .coinX {
  min-height: 120px;
  border-radius: 16px;
  background-color: #24303F;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cabinet .coinX .title {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  font-style: italic;
}
.cabinet .coinX .title span {
  font-size: 14px;
  color: #C5C5C5;
  font-style: initial;
  display: block;
  max-width: 60%;
}
.cabinet .coinX .num {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.popup-wrap .show {
  margin-top: 40px;
  display: none;
}
.popup-wrap .show .sm-title {
  margin-bottom: 10px;
  text-align: center;
  display: block;
  font-size: 16px;
}
.popup-wrap .show .default-btn {
  margin: auto;
  margin-top: 30px;
  margin-bottom: 24px;
}
.popup-wrap .show .resend {
  margin-bottom: 40px;
}
.popup-wrap .show .resend .red {
  color: #DA364E;
}
.popup-wrap .show .remaining {
  min-height: 24px;
  padding: 3px 10px;
  background: #F4F4F4;
  border: 1px solid #F0F0F0;
  border-radius: 25px;
  font-size: 13px;
  color: #746A6A;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
}
.popup-wrap .show .remaining span {
  color: #231B38;
  padding-left: 8px;
}
.popup-wrap .default-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 141px;
}
.popup-wrap .code {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}
.popup-wrap .code input {
  border: none;
  border-bottom: 1px solid #24303F;
  width: 36px;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}
.pagination a {
  width: 39px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pagination a.active {
  background-color: #DA364E;
  color: #fff;
  border-color: transparent;
}
.pagination ul {
  display: flex;
  gap: 8px;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 39px;
  height: 40px;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  color: #20202C;
  font-weight: bold;
  font-size: 16px;
}

.number-activation {
  display: flex;
  align-items: center;
}
.number-activation .main-img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.number-activation .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
  max-width: calc(100% - 30px);
  margin-left: 200px;
  margin-top: -100px;
}
.number-activation .right .title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 8px;
  text-align: center;
}
.number-activation .right p {
  font-size: 14px;
  color: #9E9E9E;
  text-align: center;
}
.number-activation .right span {
  margin-top: 40px;
  display: block;
  text-align: center;
  color: #121A24;
  font-size: 16px;
  margin-bottom: 8px;
  text-shadow: 0 0 0;
}
.number-activation .right .input-form {
  margin-bottom: 36px;
  margin-top: 14px;
  width: 100%;
}
.number-activation .right .input-form input {
  border-radius: 40px;
}
.number-activation .right .join {
  margin-top: 14px;
  margin-bottom: 40px;
}
.number-activation .right .join a {
  font-size: inherit;
  color: #DA364E;
  border-bottom: 1px solid #DA364E;
}
.number-activation .right .terms a {
  font-size: inherit;
  color: #3999F1;
}
@media (max-width: 1366px) {
  .number-activation .right {
    margin-left: 90px;
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  .number-activation .main-img {
    display: none;
  }
  .number-activation .right {
    margin: 50px auto !important;
  }
}

.check-bundle .main-title {
  margin-bottom: 24px;
  font-size: 50px;
  text-transform: uppercase;
  margin-top: 45px;
}
.check-bundle .grey {
  color: #9E9E9E;
  font-size: 14px;
  text-align: center;
}
.check-bundle .wrapper {
  display: flex;
  gap: 24px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.check-bundle .wrapper .m-img {
  width: 650px;
  flex-shrink: 0;
}
.check-bundle .right .bold {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.check-bundle .right .input-form {
  margin-bottom: 30px;
  width: 380px;
  max-width: 100%;
}
.check-bundle .right .input-form input {
  border-radius: 40px;
  height: 50px;
}
.check-bundle .right .input-form .border-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 90px;
  height: 50px;
  right: 0;
  top: 0;
  position: absolute;
}
.check-bundle .right .flex {
  display: flex;
  gap: 16px;
}
.check-bundle .right .box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid #504C4C;
  border-radius: 16px;
}
.check-bundle .right .box img {
  margin-bottom: 8px;
}
.check-bundle .right .box .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
.check-bundle .right .box p {
  color: #9E9E9E;
  font-size: 13px;
  text-align: center;
}
.check-bundle .container {
  position: relative;
}
.check-bundle .back {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  font-size: 14px;
  gap: 6px;
  align-items: center;
}
.check-bundle .center {
  background: #FFFFFF;
  border: 1px solid #ADADAD;
  box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.15);
  border-radius: 28px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 600px;
  max-width: calc(100% - 20px);
}
.check-bundle .center .sm-title {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 8px;
}
.check-bundle .center .open-popup {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 16px;
  color: #3284EA;
  border-bottom: 1px solid #3284EA;
}
.check-bundle .center .package-box {
  margin-top: 15px;
}
.check-bundle .center .default-btn.pay-now {
  margin-top: 32px;
  width: 270px;
}
.check-bundle .grid.active {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 16px;
}
.check-bundle .popup-wrap .popup .inner {
  padding: 30px;
  min-width: 600px;
  max-width: calc(100% - 30px);
}
.check-bundle .package-wrap {
  background: #FAFAFA;
  border: 1px solid #E4E4E4;
  border-radius: 16px;
}
.check-bundle .package-wrap .titleE {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .check-bundle .grid.active {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-bottom: 24px;
  }
  .check-bundle .package-wrap .titleE {
    font-weight: bold;
    padding-top: 24px;
  }
  .check-bundle .package-wrap .tab {
    margin: 0 auto 20px auto;
  }
  .check-bundle .popup-wrap .popup .inner {
    padding: 0;
    min-width: initial;
    max-width: calc(100% - 0px);
    width: calc(100% - 20px);
  }
}

.status-page {
  flex: 1;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
.status-page .inner {
  width: 500px;
  max-width: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  gap: 20px;
  margin: auto;
  margin-top: 60px;
}
.status-page .inner p {
  color: #9E9E9E;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  text-transform: initial;
}
.status-page .inner a {
  width: -moz-fit-content;
  width: fit-content;
}

.service-slider .owl-stage-outer .package-box {
  box-shadow: none;
}

.services-package.cab .owl-carousel .item.package-box {
  width: 280px;
}

.services-package.cab {
  overflow: hidden;
}
@media (max-width: 992px) {
  .services-package.cab .tab {
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin: auto;
  }
}

@media (max-width: 1366px) {
  .cabinet table tbody td,
  .cabinet table thead tr td {
    padding: 8px 10px;
  }
  .about {
    padding-top: 40px;
  }
  .about .main-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .about .main-title mark {
    margin-left: 10px;
  }
  .about .wrapper .frame {
    width: 370px;
    height: 250px;
  }
  footer .wrapper .grid {
    gap: 70px;
  }
}
@media (max-width: 1200px) {
  .check-bundle .wrapper .m-img {
    display: none;
  }
  header nav ul a {
    font-size: 14px;
  }
  .intro .title {
    font-size: 32px;
    line-height: 1.2;
  }
  .intro .left {
    width: 500px;
  }
  .main-page .about-wrap {
    min-height: inherit;
  }
  .main-page .about-wrap .wrapper .title {
    font-size: 32px;
  }
  .main-page .about-wrap .wrapper img {
    height: 270px;
    width: 500px;
  }
  .package-wrap .container {
    padding: 24px;
  }
  .main-page .blog .other-news {
    width: 350px;
  }
  .main-page .faqs .help {
    width: 400px;
    padding: 0 40px;
  }
  footer .wrapper {
    gap: 0;
  }
  footer .wrapper .grid {
    gap: 40px;
    padding-left: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  footer .wrapper .grid .list {
    min-width: 150px;
  }
  .blog-list .wrapper {
    flex-direction: column;
  }
  .blog-list .wrapper .main-blog {
    width: 100%;
  }
  .blog-list .wrapper .main-blog .title {
    font-size: 28px;
  }
  .cabinet .menu {
    width: 220px;
    padding: 15px;
  }
  .cabinet .home .wrapper .left {
    width: 930px;
  }
  .cabinet .service-bundles .main-img {
    width: 310px;
  }
  .cabinet .service-bundles .main-title {
    font-size: 24px;
    display: block;
  }
  .cabinet .inbox .bottom .list li {
    width: 458px;
  }
}
.bottomMenu {
  display: none;
}

@media (max-width: 991px) {
  .porting .pay .table-wrap {
    flex-direction: column;
  }
  .bottomMenu {
    display: flex;
    align-items: center;
    position: fixed;
    height: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #24303F;
    z-index: 100;
  }
  .bottomMenu ul {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    align-items: center;
    width: 100%;
  }
  .bottomMenu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #fff;
    gap: 4px;
  }
  .bottomMenu ul li a img {
    filter: brightness(0) invert(1);
  }
  .bottomMenu ul li a.active {
    color: #DA364E;
  }
  .bottomMenu ul li a.active img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
  }
  .popup-wrap .popup .inner {
    max-width: calc(100% - 30px);
  }
  .cabinet .parking.shadow {
    box-shadow: none;
  }
  .cabinet .back {
    left: 5px;
    top: -5px;
  }
  .cabinet .menu {
    display: none;
  }
  .cabinet .home .wrapper {
    flex-direction: column;
  }
  .cabinet .home .wrapper .left {
    width: 100%;
  }
  .cabinet .services {
    flex-direction: column;
  }
  .cabinet .services .right {
    padding-bottom: 20px;
  }
  .cabinet .services .left {
    flex-direction: row;
    width: 100%;
  }
  .cabinet .services-package {
    margin-bottom: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .cabinet .services-package .package-wrap .container {
    padding-right: 15px !important;
    padding-bottom: 15px !important;
  }
  .cabinet .services-package .package-wrap .container .tab {
    gap: 5px;
    padding: 8px 10px;
    width: 100%;
  }
  .cabinet .services-package .package-wrap .container .title {
    margin-top: 0;
    font-size: 20px;
    padding-top: 10px;
    align-items: flex-start;
  }
  .cabinet .services-package .det-wrap {
    flex-direction: column-reverse;
    padding: 15px;
  }
  .cabinet .services-package .bottom {
    padding: 15px;
  }
  .cabinet .services-package .bottom .bottom-wrap {
    flex-direction: column;
  }
  .cabinet .services-package .bottom .container {
    padding: 0 !important;
  }
  .cabinet .inbox .bottom .wrap {
    flex-direction: column;
    gap: 15px;
  }
  .cabinet .inbox .bottom .wrap .input {
    width: 100%;
  }
  .cabinet .inbox .bottom .wrap .input input {
    width: 100%;
  }
  .cabinet .inbox .bottom .wrap .default-btn {
    width: 100%;
  }
  .cabinet .inbox .bottom .list li {
    width: 100%;
  }
  .cabinet .inbox .bottom .list li .trash {
    display: none;
  }
  .about .wrapper .container {
    flex-direction: column;
  }
  .about .wrapper .container .frame {
    width: 100%;
    height: auto;
  }
  .about .wrapper.white .container {
    flex-direction: column-reverse;
  }
  footer .wrapper .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    padding-left: 30px;
  }
  header nav {
    display: none;
  }
  header .login {
    display: none;
  }
  .intro {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .intro .left {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  .intro .left .title {
    font-size: 24px;
  }
  .intro .left .inner {
    top: 0;
    transform: none;
  }
  .intro .owl-dots {
    bottom: -7px;
  }
  .main-page .about-wrap .wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .main-page .about-wrap .wrapper .title {
    font-size: 24px;
  }
  .main-page .about-wrap .wrapper:last-child {
    flex-direction: column-reverse;
  }
  .main-page .about-wrap .wrapper img {
    width: 100%;
    height: auto;
  }
  .main-page .faqs .container {
    flex-direction: column;
  }
  .main-page .faqs .container .help {
    width: 100%;
    height: auto;
    padding: 40px;
  }
  .main-page .blog .other-news {
    width: 100%;
  }
  .main-page .blog .wrapper {
    flex-direction: column;
  }
  .package-wrap {
    padding: 0;
  }
  .package-wrap .container {
    padding-right: 0 !important;
  }
  .package-wrap .title {
    font-size: 22px;
    line-height: 1.2;
    margin-top: 40px;
    padding-right: 12px;
  }
  .package-wrap .text {
    margin: 20px 0 30px;
    padding-right: 12px;
  }
  .package-wrap .grid.active {
    overflow-x: scroll;
    gap: 10px;
    background-color: transparent;
    scroll-snap-type: both;
  }
  .package-wrap .grid.active::-webkit-scrollbar {
    display: none;
  }
  .package-wrap .grid.active .package-box {
    flex-shrink: 0;
    box-shadow: none;
    scroll-snap-align: center;
  }
  .blog-detail {
    padding-top: 0;
  }
  .blog-detail h1 {
    font-size: 20px;
  }
  .blog-detail .main-img {
    float: inherit;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .payment-history .hidden-mob {
    display: none !important;
  }
  .payment-history .hide-mob {
    display: none;
  }
  .payment-history thead tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
    background-color: #F6F6F6;
    padding: 0 15px;
    align-items: center;
  }
  .payment-history thead tr td {
    padding: 8px 0 !important;
  }
  .payment-history thead tr .input input {
    width: 100%;
  }
  .payment-history thead tr .input img {
    right: 15px;
  }
  .payment-history tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #F1F1F1;
    height: 100px;
  }
  .payment-history tbody tr span {
    font-size: 14px;
  }
  .payment-history tbody tr td {
    border: none;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 15px;
  }
  .payment-history tbody tr td.vip {
    grid-row-start: 1;
    grid-column-start: 3;
    color: #9E9E9E;
  }
  .payment-history tbody tr td.gbp {
    grid-row-start: 2;
    grid-column-start: 3;
    margin-bottom: -30px;
    display: block;
    text-align: left;
    color: #746A6A;
    font-size: 12px;
    margin-top: 4px;
  }
  .payment-history tbody tr td.numb {
    grid-row-start: 1;
    grid-column-start: 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    display: flex;
  }
  .payment-history tbody tr td.stat {
    grid-row-start: 2;
    grid-column-start: 3;
    margin-top: -14px;
  }
  .payment-history tbody tr td.stat .status {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .payment-history tbody tr td.attch {
    grid-row-start: 2;
    grid-column-start: 1;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    gap: 4px;
    margin-top: -15px;
  }
  .payment-history tbody tr td.date {
    display: flex;
    grid-row-start: 1;
    gap: 4px;
    align-items: center;
    grid-column-start: 1;
  }
  .payment-history tbody tr td.date span {
    margin: 0;
  }
  .cabinet .payment-history .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cabinet .payment-history .wrapper .default-btn {
    grid-column-start: span 2;
    width: 100%;
  }
  .cabinet .payment-history .dropdown {
    width: 100%;
  }
}
.mob-menu {
  display: none;
}

@media (max-width: 768px) {
  .login .form {
    margin: auto;
  }
  .login .default-btn.register,
  .login .border-btn.register {
    width: 400px;
  }
  .cabinet .service-bundles .main-title {
    flex-direction: column;
    font-size: 24px;
  }
  .cabinet .service-bundles .wrapper {
    flex-direction: column;
  }
  .cabinet .service-bundles .main-img {
    width: 100%;
  }
}
.mob-show {
  display: none !important;
}

.mob-hide {
  display: block !important;
}

@media (max-width: 576px) {
  .det-wrap {
    padding: 0 !important;
  }
  .tab {
    gap: 0 !important;
  }
  .tab button,
  .tab a {
    font-size: 12px !important;
    padding: 12px !important;
  }
  .package-wrap {
    padding: 0 !important;
  }
  .package-wrap .owl-dots {
    bottom: -30px;
  }
  .package {
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #F1F1F1;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .package .gb {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 3px;
  }
  .package .gb .grey {
    color: #9E9E9E;
    font-size: 12px;
    font-weight: normal;
  }
  .package .desc {
    display: flex;
    gap: 10px;
  }
  .package .pin {
    background-color: #DA364E;
    font-size: 10px;
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: normal;
    position: relative;
    top: -2px;
    font-family: firago;
  }
  .package .pin.blue {
    background-color: #2b5588;
  }
  .package .img {
    position: absolute;
    right: 0px;
    top: -7px;
    right: -7px;
    border-radius: 4px;
    overflow: hidden;
  }
  .package .img.for-region {
    padding: 5px;
    margin: -5px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(82, 82, 82, 0.1);
  }
  .package .img img {
    height: 30px;
  }
  .package .price {
    position: relative;
    top: 5px;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
  }
  .package .price span {
    line-height: 1.2;
    font-size: 14px !important;
    margin: 0;
  }
  .mob-show {
    display: block !important;
  }
  .mobile-hidden {
    display: none !important;
  }
  .mob-hide {
    display: none !important;
  }
  .bottomMenu ul li a {
    font-size: 12px;
  }
  .main-page .package-wrap .container {
    padding-bottom: 24px !important;
  }
  .mob-menu {
    height: calc(100vh - 60px) !important;
  }
  .mob-menu.active {
    top: 56px !important;
  }
  .bundle-detail .wrapper {
    flex-direction: column;
    padding-bottom: 50px !important;
  }
  .service-slider .package-box {
    box-shadow: none !important;
  }
  .service-slider .owl-stage-outer {
    padding: initial !important;
    margin: initial !important;
  }
  .payment-history tbody tr td.date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .payment-history tbody tr td.attch {
    margin-top: 0;
  }
  .payment-history thead tr {
    padding: 0 10px;
  }
  .cabinet table thead tr td img {
    display: none;
  }
  .cabinet .payment-history .wrapper {
    flex-direction: column;
    display: flex;
  }
  .port .title {
    font-size: 24px;
  }
  .check-bundle .right .flex {
    flex-direction: column;
  }
  .check-bundle .right .input-form {
    width: 100%;
  }
  .check-bundle .back {
    left: 20px;
    top: -30px;
  }
  .check-bundle .wrapper {
    margin-top: 30px;
  }
  .check-bundle .main-title {
    font-size: 28px;
    margin-top: 30px;
  }
  .check-bundle .right .title {
    font-size: 20px;
  }
  .check-bundle .right .bold {
    font-size: 18px;
    text-align: center;
  }
  header .wrapper {
    justify-content: flex-start;
    gap: 20px;
  }
  header .wrapper .logo {
    flex: 1;
  }
  .package-wrap .tab {
    gap: 4px;
    margin: 0 auto;
  }
  .cabinet .services {
    gap: 15px;
  }
  .cabinet .services .left {
    gap: 15px;
  }
  .cabinet .services .left .box .title {
    font-size: 18px;
  }
  .cabinet .services .right {
    margin-bottom: 20px;
  }
  .porting .pay .wrapper {
    width: calc(100% - 30px);
    flex-direction: column;
  }
  .porting .pay .wrapper .package-box {
    margin: auto;
  }
  .porting .pay .wrapper .title {
    text-align: center;
  }
  .porting .pay .wrapper .border-btn {
    width: 100%;
  }
  .porting .pay .table {
    width: calc(100% - 30px);
    padding: 20px;
    max-width: 700px;
  }
  .porting .pay .table .head {
    font-size: 20px;
  }
  .porting .delivery .wrapper {
    flex-direction: column;
  }
  .porting .delivery .porting-form {
    width: calc(100% - 30px);
    margin: auto;
  }
  .porting .porting-form {
    width: calc(100% - 30px);
    padding-top: 24px;
    margin: auto;
  }
  .porting .porting-form .title {
    font-size: 24px;
  }
  .porting .choose-package {
    background-color: transparent;
    border: none;
  }
  .porting .choose-package .tab-body .grid.active {
    display: flex;
    gap: 15px;
  }
  .porting .choose-package .tab-body .grid.active .package-box {
    flex-shrink: 0;
    width: 280px;
  }
  .porting .choose-package .tab-body .grid.active .package-box::-webkit-scrollbar {
    display: none;
  }
  .porting .package-wrap {
    background-color: transparent;
  }
  .porting .porting-header {
    margin: 0;
  }
  .porting .porting-header .steps {
    flex-direction: column;
    width: 100%;
    padding: 0 24px;
    gap: 12px;
  }
  .porting .porting-header .steps li {
    width: 100%;
    border-bottom: 1px solid #F1F1F1;
  }
  .porting .porting-header .steps li.active {
    border: none;
  }
  .porting .porting-header .steps li.active a {
    background-color: #DA364E;
  }
  .porting .porting-header .steps li.active a .num {
    border: none;
  }
  .porting .porting-header .steps li.active a .sm-title,
  .porting .porting-header .steps li.active a .title {
    color: #fff;
  }
  .porting .porting-header .steps li a {
    font-size: 14px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    min-height: 40px;
    padding: 8px;
    align-items: center;
    border-radius: 6px;
  }
  .porting .porting-header .steps li a .num {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
  .joinus .main-title {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.2;
  }
  .joinus .wrapper {
    width: calc(100% - 30px);
    margin: auto;
    flex-direction: column;
  }
  .joinus .tab-body {
    margin-top: 24px;
  }
  .joinus .reg .grid {
    flex-direction: column;
  }
  .joinus .reg .grid .list {
    background: #FFFFFF;
    border: 1px solid rgba(36, 48, 63, 0.8);
    padding: 20px;
    border-radius: 10px;
  }
  .joinus .reg .grid .list h3 {
    height: auto;
  }
  .login .left {
    width: 0;
  }
  .login .right {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .login .form {
    width: calc(100% - 30px);
  }
  .login .default-btn.register,
  .login .border-btn.register {
    width: calc(100% - 30px);
  }
  .login .left::before {
    width: 100%;
  }
  .login .owl-carousel {
    display: none;
  }
  .password-recovery .box {
    width: calc(100% - 30px);
    margin: auto;
  }
  .faqs .grid {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
  }
  .faqs .grid::-webkit-scrollbar {
    display: none;
  }
  .faqs .grid .box {
    flex-shrink: 0;
    width: 130px;
  }
  .faqs h1 {
    margin-top: 0;
    font-weight: bold;
  }
  .faqs .contactus .title {
    font-size: 24px;
    text-align: center;
  }
  .faqs .search {
    width: calc(100% - 30px);
  }
  .services {
    padding: 0;
  }
  .services .main-title {
    font-size: 24px;
  }
  .services .item {
    padding: 24px 0;
  }
  .services .item .container {
    gap: 15px;
    flex-direction: column !important;
  }
  .services .item .title {
    margin-bottom: 15px;
  }
  .services .item .fit {
    width: 100%;
    height: 300px;
  }
  .services .item .text {
    margin: 0;
  }
  .blog-list h1 {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.2;
  }
  .blog-list .sm-title {
    margin-bottom: 24px;
  }
  .blog-list .wrapper .main-blog .frame {
    height: 230px;
  }
  .blog-list .wrapper .main-blog .title {
    font-size: 20px;
    line-height: 1.2;
  }
  .blog-list .wrapper .main-blog .text {
    text-align: justify;
  }
  .blog-list .wrapper .aside .box img {
    width: 150px;
    height: 250px;
  }
  .about {
    padding: 0;
  }
  .about .main-title {
    font-size: 32px;
  }
  .about .text * {
    font-size: 14px;
    text-align: justify;
  }
  .about .main-text {
    margin-bottom: 30px;
  }
  .about .wrapper {
    padding: 30px 0;
  }
  .about .partners {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .about .partners .main-title {
    font-size: 24px;
  }
  .main-page .faqs .help h2 {
    font-size: 24px;
  }
  footer {
    padding: 24px 0;
  }
  footer .wrapper {
    flex-direction: column;
    gap: 20px;
  }
  footer .wrapper .grid {
    gap: 24px;
  }
  .main-title {
    font-size: 24px;
  }
  .main-page .blog .other-news .full {
    font-weight: bold;
  }
  .main-page .blog .content-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .main-page .blog .blog-slider .title {
    font-weight: bold;
  }
  main {
    padding-top: 24px;
  }
  .intro .left .inner {
    gap: 15px;
  }
  .intro .left .inner .text {
    height: 100px;
    overflow: hidden;
  }
  .intro .left .inner .border-btn {
    width: 100%;
  }
  .intro .left .title {
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .intro .right img {
    height: 250px;
  }
  .intro .owl-dots {
    bottom: -17px;
  }
  .intro .owl-next, .intro .owl-prev {
    bottom: -21px;
  }
  header {
    padding: 6px 0;
  }
}
@media (max-width: 992px) {
  .main-page .package-wrap {
    padding-bottom: 24px;
  }
  .burger-icon img {
    display: block;
  }
  .burger-icon img:last-child {
    display: none;
  }
  .burger-icon.active img {
    display: none;
  }
  .burger-icon.active img:last-child {
    display: block;
  }
  .mob-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(100vh - 77px);
    background-color: #24303F;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 24px;
    transform: translateY(-100%);
    transition: 0.5s;
    overflow-y: auto;
  }
  .mob-menu .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    height: 100%;
  }
  .mob-menu.active {
    top: 77px;
    transform: translateY(0);
  }
  .mob-menu::-webkit-scrollbar {
    width: 5px;
  }
  .mob-menu::-webkit-scrollbar-thumb {
    background-color: #DA364E;
    border-radius: 10px;
  }
  .mob-menu::-webkit-scrollbar-track {
    background-color: #24303F;
  }
  .mob-menu .nav a {
    font-size: 16px;
    text-transform: capitalize;
    padding-bottom: 8px;
    border-bottom: 1px solid #9E9E9E;
    margin-bottom: 35px;
    color: #fff;
    display: block;
    font-weight: normal;
  }
  .mob-menu .nav img {
    width: 24px;
  }
  .mob-menu .default-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mob-menu .border-btn {
    width: 100%;
  }
  .mob-menu .bottom ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    margin: 20px 0;
  }
  .mob-menu .bottom .item {
    display: block;
    color: #FAFAFA;
    font-size: 12px;
    opacity: 0.5;
    text-align: center;
  }
  .mob-menu .bottom .item.active {
    color: #fff;
    opacity: 1;
  }
  .mob-menu .bottom .center {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
  }
}
@media (max-width: 380px) {
  .mob-menu.active {
    top: 46px !important;
  }
  footer .wrapper .grid {
    grid-template-columns: 1fr;
  }
  .mob-menu {
    height: calc(100vh - 50px) !important;
  }
}
.cabinet .text p {
  font-family: firago;
}
.cabinet .back {
  transition: 0.2s;
}
.cabinet .back:hover {
  color: #DA364E;
  gap: 8px;
}
.cabinet .back:hover img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.cabinet .countries {
  padding-bottom: 70px;
}
.cabinet .countries .list {
  grid-template-columns: repeat(3, 1fr);
}
.cabinet .countries .country.more {
  bottom: 10px;
}

.firago {
  font-family: firago;
}

.double-dropdown {
  flex-shrink: 0;
  position: relative;
}
.double-dropdown .select {
  padding: 0 8px 0 12px;
  color: #fff;
  font-family: firago;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 28px;
  height: 40px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.double-dropdown .select.active, .double-dropdown .select:hover {
  background-color: #fff;
  color: #DA364E;
  border-color: #DA364E;
}
.double-dropdown .select.active img, .double-dropdown .select:hover img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.double-dropdown .select.active .curr:before, .double-dropdown .select:hover .curr:before {
  background-color: #DA364E;
}
.double-dropdown .select span {
  color: inherit;
  font-size: inherit;
  padding-top: 2px;
  display: block;
}
.double-dropdown .select span.curr {
  position: relative;
  margin-left: 14px;
}
.double-dropdown .select span.curr:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #fff;
}
.double-dropdown .select img {
  height: 15px;
  margin-left: 5px;
  filter: brightness(0) invert(1);
}
.double-dropdown .result {
  position: absolute;
  top: calc(100% + 10px);
  width: 150px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #E9E9E9;
  z-index: 100;
  right: 0;
  display: none;
}
.double-dropdown .result .sm-title {
  font-size: 12px;
  padding-left: 14px;
  display: block;
  margin-top: 10px;
  color: #9E9E9E;
  font-family: firago;
}
.double-dropdown .result .curr-list {
  display: flex;
}
.double-dropdown .result .curr-list .item {
  border-radius: 4px;
}
.double-dropdown .result .item {
  padding: 8px 14px;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  flex-direction: row;
  gap: 8px;
  font-size: 14px;
  font-family: firago;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.double-dropdown .result .item.active {
  color: #DA364E;
  pointer-events: none;
}
.double-dropdown .result .item img {
  height: 15px;
}
.double-dropdown .result .item:hover {
  background-color: #F6F6F6;
}

.about .text, .about .text p {
  font-family: firago;
  color: #9E9E9E;
}

.tab-body.wt {
  overflow-y: auto;
}
.tab-body.wt .package-box {
  width: 280px !important;
}
.tab-body.wt .packages {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  gap: 40px;
}
@media (max-width: 1200px) {
  .tab-body.wt .packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.progress-bar {
  width: 100%;
  height: 20px;
  overflow: hidden;
  border-radius: 28px;
  background-color: #F6F6F6;
  color: #fff;
  font-size: 12px;
  font-family: firago;
  text-align: right;
  padding-right: 10px;
  white-space: nowrap;
}
.progress-bar .progress {
  height: 100%;
  background-color: #DA364E;
  transition: 0.2s;
  color: #fff;
  font-size: 10px;
  font-family: firago;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 3px;
  white-space: nowrap;
}

.countries-btn {
  font-size: 13px;
  font-family: firago;
  color: #9E9E9E;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  padding: 5px 10px;
  transition: 0.2s;
  border: 1px solid #DA364E;
  color: #DA364E;
}
.countries-btn:hover {
  background-color: #DA364E;
  color: #fff;
  border-color: #DA364E;
}

.popup-wrap.appended .country-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .popup-wrap.appended .country-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .popup-wrap.appended .country-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 380px) {
  .popup-wrap.appended .country-list {
    grid-template-columns: 1fr;
  }
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: firago;
  font-size: 14px;
}

.alert.input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-wrap: wrap;
}
@media (max-width: 1200px) {
  .alert.input {
    flex-direction: column;
    gap: 10px;
  }
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #DA364E !important;
  max-width: 500px;
  margin: 10px;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

input:checked[type=checkbox] {
  background-image: url("/assets/images/check.svg") !important;
}

@media (max-width: 576px) {
  .card-body.tabber {
    padding: 0 !important;
  }
  .bundles .card {
    width: calc(100% - 25px);
    border-left: none;
    border-bottom: none;
    border-right: none;
    align-items: center;
  }
  .porting .pay .table {
    width: 100%;
  }
  .porting .pay .table .bottom ul li label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .porting .pay .table .bottom ul li label .input {
    padding-left: 0 !important;
    margin-left: 0 !important;
    font-family: firago;
  }
  .main-title {
    font-size: 18px;
  }
  .porting .porting-header {
    padding-bottom: 14px;
  }
  .porting .porting-header .steps {
    padding: 0 15px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .porting .porting-header .steps li {
    border: none;
  }
  .porting .porting-header .steps li.active a .num {
    background-color: #DA364E !important;
    color: #fff;
  }
  .porting .porting-header .steps li a {
    width: auto;
    height: auto;
    justify-content: center;
    background-color: transparent !important;
  }
  .porting .porting-header .steps li a .num {
    font-size: 16px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .porting .porting-header .steps li a .title {
    display: none;
  }
  .porting .packages-fin {
    flex-direction: column-reverse;
  }
  .porting .packages-fin a,
  .porting .packages-fin button {
    width: 100%;
    text-align: center;
  }
  .cabinet .home .title {
    font-family: gecaps;
    font-size: 18px;
    font-weight: bold;
  }
  .cabinet .home .box .text,
  .cabinet .home .box p {
    font-family: firago;
    font-size: 14px;
    color: #9E9E9E;
  }
  .cabinet .home .rightside-mob .img {
    margin-top: 10px;
  }
  .cabinet .personal-info .main-title {
    font-size: 18px;
  }
  .cabinet .personal-info .wrapper {
    width: initial;
  }
  .cabinet .personal-info .sm-title {
    font-weight: bold;
  }
  .cabinet .personal-info .prof {
    justify-content: flex-start;
  }
  .cabinet .personal-info .prof .right {
    font-size: 16px;
    font-weight: normal;
  }
  .cabinet .personal-info .prof .right div {
    font-size: 14px;
  }
  .cabinet .personal-info .info-box {
    padding: 20px;
  }
  .cabinet .personal-info .info-box li {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
    font-weight: normal;
    color: #9E9E9E;
    gap: 2px;
    text-align: left;
  }
  .cabinet .personal-info .info-box li:last-child {
    margin-bottom: 0;
  }
  .cabinet .personal-info .info-box li span {
    margin: 0;
    font-size: 14px;
    color: #121A24;
    font-family: firago;
  }
  .cabinet .border-box .main-title {
    font-size: 18px;
    text-align: center;
    justify-content: center;
    margin-right: 0;
  }
  .cabinet .border-box .border-btn {
    width: 100%;
  }
  .cabinet .border-box .bold-grey {
    color: #121A24;
  }
  .payment-history .input-form {
    margin-bottom: 0;
    width: 100%;
  }
  .payment-history thead {
    display: none;
  }
  .history-table {
    margin-top: 20px;
  }
  .history-table .table-item {
    padding: 10px 0;
    border-bottom: 1px solid #F1F1F1;
  }
  .history-table .table-item .list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: flex-start;
  }
  .history-table .table-item .list:last-child {
    margin-bottom: 0;
  }
  .history-table .table-item li {
    font-size: 14px;
    color: #121A24;
    display: flex;
    align-items: center;
    gap: 3px;
  }
  .history-table .table-item li a img {
    height: 26px;
  }
  .history-table .table-item li.column {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .history-table .table-item li.column.end {
    align-items: flex-end;
  }
  .history-table .table-item li .charge {
    color: #DA364E;
  }
  .history-table .table-item li .income {
    color: #50C878;
  }
  .history-table .table-item .grey {
    color: #9E9E9E;
    font-size: 12px;
  }
  .history-table .table-item .label {
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-family: firago;
  }
  .history-table .label-success {
    background-color: #50C878;
  }
  .data-usage-wrapper {
    flex-direction: column;
    max-height: initial;
    gap: 0;
    height: auto;
  }
  .cabinet .data-usage-bottom.data-usage-circle-progress .ep-container {
    height: 103px !important;
  }
  .data-usage-bottom p.remaining-info {
    margin-top: 20px !important;
  }
}
.notifications-list .main-title {
  justify-content: space-between !important;
}
.notifications-list .mark {
  font-size: 14px;
  flex-shrink: 0;
  color: #DA364E;
  font-family: firago;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.notifications-list .mark:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .notifications-list .mark {
    font-size: 12px;
  }
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px;
  border-bottom: 1px solid #E9E9E9;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 10px;
  border-left: 4px solid transparent;
}
.notification-item:last-child {
  margin-bottom: 0;
}
.notification-item.read .title {
  font-weight: normal;
}
.notification-item:hover {
  border-left: 4px solid #DA364E;
}
.notification-item .title {
  font-size: 14px;
  color: #121A24;
  font-weight: bold;
  transition: 0.2s;
}
.notification-item .desc {
  font-size: 12px;
  font-family: firago;
  color: #9E9E9E;
}
.notification-item .date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  font-family: firago;
  font-weight: bold;
  flex-shrink: 0;
  margin-left: 10px;
}
.notification-item .date .grey {
  font-weight: normal;
  font-size: 11px;
  color: #9E9E9E;
}
@media (max-width: 750px) {
  .notification-item {
    border-left: none !important;
    padding: 8px 0px;
  }
  .notification-item .desc {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 750px) {
  .nav .notif-btn {
    height: 25px;
    width: 25px;
    border: none;
  }
  .nav .notif-btn img {
    height: 22px;
  }
  .nav .notif-btn .num {
    width: 15px;
    height: 16px;
    font-size: 10px;
  }
  .cabinet .notifications-list .main-title {
    font-size: 20px;
    margin-bottom: 10px;
    justify-content: center;
    text-align: center;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .mob-menu .nav {
    height: initial;
  }
  .mob-menu .nav li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
  }
  .mob-menu .nav li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    padding: 10px 15px;
    min-height: 45px;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .mob-menu .nav li a img {
    filter: brightness(0) invert(1);
  }
  .mob-menu .nav li a div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
  }
  .mob-menu .nav li a .arr {
    height: 14px;
  }
}
@media (max-width: 750px) {
  .services-package .tab-body.wt {
    overflow: initial !important;
  }
}
.alert-warning {
  font-size: 14px;
  font-family: firago;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .right.tabber .tab {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto !important;
    border-radius: 5px;
    width: 100%;
  }
  .right.tabber .tab li {
    width: 100%;
  }
  .right.tabber .tab li button {
    width: 100%;
  }
  .cabinet .services-package .det-wrap .title {
    font-size: 18px;
  }
  .saveCard span {
    font-size: 14px;
    font-family: firago;
  }
  .cabinet .services-package .det-wrap .package-box {
    width: calc(100% - 10px);
  }
  .main-page .faqs .container .help {
    padding: 20px;
  }
  .main-page .faqs .help h2 {
    font-size: 22px;
  }
  .main-page .faqs .help .item .sub {
    font-size: 14px;
  }
  .main-page .service.owl-carousel .owl-stage-outer {
    padding: 10px 10px 10px 0;
    width: 100%;
    margin-left: 0;
  }
  #month-wrapper {
    padding: 20px;
  }
  .cabinet .home .wrapper .left {
    min-width: initial;
  }
  .rightside-mob {
    min-width: initial !important;
    width: 100%;
  }
  .cabinet .notifications-list .main-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .cabinet.container {
    gap: 0;
  }
}
.notifications-detail {
  padding: 24px;
}
.notifications-detail .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.notifications-detail .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.notifications-detail .desc {
  font-size: 14px;
  color: #9E9E9E;
  font-family: firago;
  margin-bottom: 20px;
}
.notifications-detail .date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  color: #121A24;
  font-weight: bold;
  font-family: firago;
  flex-shrink: 0;
}
.notifications-detail .date .grey {
  font-weight: normal;
  font-size: 12px;
  color: #9E9E9E;
}
.notifications-detail .back {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.notifications-detail .back img {
  height: 20px;
}
@media (max-width: 576px) {
  .notifications-detail .wrap {
    margin-bottom: 10px;
  }
  .notifications-detail .wrap .title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .notifications-detail .wrap .date {
    font-size: 12px;
  }
  .notifications-detail .wrap .date .grey {
    font-size: 11px;
  }
}

.notif-btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: 0.1s;
}
.notif-btn:hover {
  background-color: #DA364E;
  border-color: #DA364E;
}
.notif-btn:hover .num {
  background-color: #fff;
  color: #DA364E;
}
.notif-btn .num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  transition: 0.2s;
  background-color: #DA364E;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notif-btn img {
  height: 20px;
  filter: brightness(0) invert(1);
}

.breadCrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadCrumbs[top] {
  margin-top: 8px;
}
.breadCrumbs[bot] {
  margin-bottom: 8px;
}
.breadCrumbs li {
  font-size: 12px;
  display: flex;
  gap: 4px;
  color: #9E9E9E;
}
.breadCrumbs li:last-child {
  font-family: firago;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.breadCrumbs li:last-child a {
  color: #DA364E;
}
.breadCrumbs a {
  font-size: 12px;
  text-decoration: none;
  color: #9E9E9E;
  font-family: firago;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadCrumbs a:hover {
  color: #DA364E;
}
@media (max-width: 576px) {
  .breadCrumbs {
    gap: 4px;
  }
  .breadCrumbs li {
    font-size: 11px;
  }
  .breadCrumbs li a {
    font-size: 11px;
  }
}

.popup-wrap .popup.change-local .inner {
  max-width: 1180px;
}
@media (max-width: 1200px) {
  .popup-wrap .popup.change-local .inner {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .popup-wrap .popup.change-local .inner {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .popup-wrap .popup.change-local .inner {
    max-width: 540px;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup.change-local .inner {
    max-width: 100%;
  }
}
.popup-wrap .popup.change-local .inner .title {
  text-align: left;
}
.popup-wrap .popup.change-local .inner .close img {
  height: 26px;
}
.popup-wrap .popup.change-local .inner .close:hover img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.popup-wrap .popup.change-local ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.popup-wrap .popup.change-local ul li a {
  border: 1px solid rgb(210, 210, 213);
  font-size: 14px;
  color: rgba(18, 26, 36, 0.6);
  font-family: firago;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  height: 45px;
  padding: 0 20px;
  border-radius: 5px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrap .popup.change-local ul li a.active {
  color: #DA364E;
  border-color: #DA364E;
  pointer-events: none;
}
.popup-wrap .popup.change-local ul li a:hover {
  border-color: #DA364E;
  color: #DA364E;
}
.popup-wrap .popup.change-local .curr-list a {
  padding: 0 15px;
  min-width: 50px;
}
.popup-wrap .popup.change-local .finish {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #E9E9E9;
  padding-top: 15px;
  margin-top: -5px;
}
.popup-wrap .popup.change-local .default-btn {
  width: initial;
}
.popup-wrap .popup.change-local .borderless-btn {
  border-radius: 40px;
}
.popup-wrap .popup.change-local .borderless-btn:hover {
  background-color: #f4f4f4;
}
@media (max-width: 600px) {
  .popup-wrap .popup.change-local .language {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .popup-wrap .popup.change-local .language a {
    width: 100%;
  }
  .popup-wrap .popup.change-local .inner {
    min-width: initial;
    padding: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 5px;
  }
  .popup-wrap .popup.change-local .inner .title {
    font-size: 16px;
  }
  .popup-wrap .popup.change-local ul {
    gap: 10px;
    margin-bottom: 10px;
  }
}

.mob-local {
  padding: 0 8px 0 12px;
  color: #fff;
  font-family: firago;
  font-size: 12px;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 35px;
  display: flex;
  align-items: center;
  transition: 0.2s;
  margin: 10px auto;
}
.mob-local img {
  filter: brightness(0) invert(1);
  height: 20px;
  margin-right: 5px;
}
.mob-local span {
  color: inherit;
  font-size: inherit;
  padding-top: 2px;
  display: block;
}
.mob-local span.curr {
  position: relative;
  margin-left: 14px;
  font-size: 14px;
}
.mob-local span.curr:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #fff;
}

.instructions.popup .inner {
  width: 850px;
}
.instructions.popup .inner .default-btn,
.instructions.popup .inner .border-btn {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.instructions.popup .info-box {
  border: 1px solid #E9E9E9;
  padding: 12px;
  border-radius: 8px;
}
.instructions.popup .title {
  text-align: left;
}
.instructions.popup .item {
  font-size: 12px;
  color: #9E9E9E;
  font-family: light;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.instructions.popup .item:not(:last-child) {
  margin-bottom: 10px;
}
.instructions.popup .item span {
  font-family: firago;
  color: #24303F;
  font-size: 14px;
}
.instructions.popup .content {
  margin-top: 12px;
}
.instructions.popup .content .tab-content {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #E9E9E9;
}
.instructions.popup .content .sm-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.instructions.popup .content .tabs {
  display: flex;
  gap: 10px;
}
.instructions.popup .content .tabs .tab-button {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: firago;
  color: #9E9E9E;
  cursor: pointer;
  transition: 0.2s;
}
.instructions.popup .content .tabs .tab-button:hover {
  background-color: #F6F6F6;
}
.instructions.popup .content .tabs .tab-button.active {
  background-color: #F6F6F6;
  color: #24303F;
}
.instructions.popup .content .tab-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: flex-start;
}
.instructions.popup .content .right-content {
  padding-left: 20px;
  border-left: 1px solid #E9E9E9;
}
.instructions.popup .content .left-content {
  padding-right: 20px;
}
.instructions.popup .content .left-content.center {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.instructions.popup .content .right-content,
.instructions.popup .content .left-content {
  flex: 1;
  width: 100%;
}
.instructions.popup .content .manual-box {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #E9E9E9;
}
.instructions.popup .content .qr {
  width: 150px;
  height: 150px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #E9E9E9;
}
.instructions.popup .content .qr img {
  width: 100%;
  height: auto;
}
.instructions.popup .content .qr iframe {
  width: 100%;
  height: auto;
}
.instructions.popup .finish {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-form.dot {
  gap: 3px;
}
.input-form.dot label {
  margin-left: 0;
}
.input-form.dot input {
  height: 45px;
}
.input-form.dot .textarea {
  height: 150px;
  border: 1px solid #9F9F9F;
  border-radius: 8px;
  padding: 10px;
  background-color: rgba(33, 33, 33, 0.03);
  font-family: firago;
  font-size: 14px;
  color: #121A24;
  width: 100%;
  resize: none;
}

.plan-trip {
  padding: 40px 0;
  max-width: 1100px;
  margin: auto;
}
.plan-trip .plan-detail {
  font-size: 12px;
  font-family: firago;
  align-items: center;
  display: flex;
  gap: 7px;
  position: relative;
  top: -10px;
}
.plan-trip .plan-detail:hover {
  color: #DA364E;
}
.plan-trip .plan-detail:hover input[type=checkbox] {
  border-color: #DA364E;
}
.plan-trip .plan-detail input[type=checkbox]:checked {
  background-color: #DA364E !important;
  border-color: #DA364E !important;
}
.plan-trip .container {
  width: 700px;
}
.plan-trip .container .drop-wrap {
  flex: 1;
}
.plan-trip .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.plan-trip .text {
  font-size: 14px;
  color: #75797D;
  font-family: firago;
  margin-bottom: 20px;
  text-align: center;
}
.plan-trip .text * {
  color: inherit;
}
.plan-trip .wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
.plan-trip .wrapper .input-form {
  width: 100%;
}
.plan-trip .drop-wrap {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 50px;
}
.plan-trip .drop-wrap .f-0 {
  width: auto;
}
.plan-trip .drop-wrap > label {
  font-size: 12px;
  margin: 0;
  font-family: firago;
  color: #75797D;
  padding-left: 15px;
  margin-bottom: 4px;
  display: block;
  flex-shrink: 0;
  width: 300px;
}
.plan-trip .drop-wrap .input-form {
  flex: 1;
  margin: 0;
}
.plan-trip .dropdown label {
  transition: 0.2s;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  grid-gap: 10px;
  width: 100%;
  padding: 8px 0;
  cursor: pointer;
  align-items: center;
  font-size: 14px;
  color: #75797D;
  margin: 0;
}
.plan-trip .dropdown label img {
  height: 22px;
  border-radius: 3px;
}
.plan-trip .dropdown label:hover {
  color: #DA364E;
}
.plan-trip .dropdown label:hover input[type=checkbox] {
  border-color: #DA364E;
}
.plan-trip .dropdown label input[type=checkbox]:checked {
  background-color: #DA364E !important;
  border-color: #DA364E !important;
}
.plan-trip .sel-countries-length {
  display: none;
}
.plan-trip .sel-countries-length.active {
  display: flex;
}
.plan-trip .sel-countries-length.grid #chosen-country {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.plan-trip #chosen-country {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.plan-trip #chosen-country .country {
  gap: 10px;
  position: relative;
}
.plan-trip #chosen-country .country.widthInput {
  display: grid;
  grid-template-columns: 30px 1fr 120px;
}
.plan-trip #chosen-country .country.widthInput input {
  display: block;
}
.plan-trip #chosen-country .country img {
  position: initial;
  transform: none;
  flex-shrink: 0;
}
.plan-trip #chosen-country .country .close-btn {
  position: absolute;
  right: -4px;
  top: -6px;
  filter: none;
  border-radius: 50%;
  padding: 2px;
  background: #DA364E;
  width: 26px;
  height: 26px;
  filter: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.plan-trip #chosen-country .country .close-btn img {
  width: 18px;
  filter: brightness(0) invert(1) !important;
}
.plan-trip #chosen-country .country:hover .close-btn {
  filter: brightness(0) saturate(100%) invert(26%) sepia(90%) saturate(2890%) hue-rotate(336deg) brightness(92%) contrast(84%);
}
.plan-trip #chosen-country .country input {
  border-radius: 4px;
  display: none;
  border: 1px solid #E9E9E9;
  height: 30px;
  width: 120px;
}
.plan-trip .default-btn {
  margin-left: auto;
}
.plan-trip .suggested-packages {
  margin-top: 20px;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
}
.plan-trip .suggested-packages .suggest-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-trip .default-btn.pay {
  margin-top: 40px;
}
.plan-trip .default-btn.pay .full-price {
  font-size: 16px;
  font-family: firago;
  color: #fff;
  background: #24303F;
  border-radius: 38px;
  padding: 5px 9px;
  margin-left: 10px;
  margin-right: -17px;
  font-weight: normal;
}
.plan-trip .drop-wrap.wrapp {
  border-radius: 5px;
  width: 100%;
  background-color: #f1f1f1;
  padding: 15px;
}
.plan-trip .drop-wrap.wrapp .box {
  display: flex;
  gap: 20px;
  width: 100%;
}
.plan-trip .drop-wrap.wrapp .box .input-form {
  flex: initial;
}
.plan-trip .input-form.days input {
  padding-right: 200px;
}
.plan-trip .input-form.days label {
  position: absolute;
  right: 15px;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #75797D;
}
.plan-trip .input-form.days label:before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #75797D;
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}
.plan-trip #switch .toggle-det.active {
  display: none;
}
.plan-trip #switch.active .toggle-det {
  display: none;
}
.plan-trip #switch.active .toggle-det.active {
  display: block;
}

.package-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9e9e9;
  margin-bottom: 20px;
  gap: 20px;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}
.package-content:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.package-content .item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  color: #75797D;
  font-family: firago;
}
.package-content .item b {
  font-size: 16px;
  color: #121A24;
  font-weight: normal;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}
.package-content img {
  height: 40px;
  border-radius: 6px;
}
.package-content h2 {
  font-size: 18px;
  color: #121A24;
  font-weight: bold;
  flex: 1;
}
.package-content .pinTop {
  background-color: #DA364E;
  height: 22px;
  font-size: 12px;
  color: #fff;
  padding: 0 10px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  border-radius: 3px 0 6px 6px;
  right: 20px;
  top: -6px;
}
.package-content .pinTop.blue {
  background-color: #2b5588;
}
.package-content .pinTop.blue:before {
  background-color: #24303F;
}
.package-content .pinTop:before {
  content: "";
  width: 8px;
  height: 6px;
  background-color: #b42c2c;
  position: absolute;
  top: 0;
  right: -8px;
  -webkit-clip-path: polygon(0% 0, 0% 100%, 100% 100%);
          clip-path: polygon(0% 0, 0% 100%, 100% 100%);
}
.package-content:has(input[type=checkbox]:checked) {
  box-shadow: 0 0 6px rgba(218, 54, 78, 0.3);
  border-color: rgba(218, 54, 78, 0.3);
}
.package-content input[type=checkbox]:checked {
  background-color: #DA364E !important;
  border-color: #DA364E !important;
}

@media (max-width: 600px) {
  .tab-body [data-tab].active {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */