/* :root {
  main-color: #2260ff;
} */
@font-face {
  font-family: "PeydaWeb";
  src: url("../fonts/PeydaWeb-Bold.woff2") format("woff2");
  font-weight: bold;
}

@font-face {
  font-family: "PeydaWeb";
  src: url("../fonts/PeydaWeb-Regular.ttf") format("truetype"),
    url("../fonts/PeydaWeb-Regular.woff2") format("woff2");
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
body {
  margin: 0;
  direction: rtl;
  font-family: "PeydaWeb", "sans-serif";
}

body {
  background: #f9f9f9;
}

a {
  cursor: pointer;
}

#footer {
  font-weight: bold;
  text-align: center;
  color: #888;
  font-size: 19px;
  padding: 19px;
  margin-bottom: 19px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/*** radio-group for plans */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  user-select: none;
}

.radio-group > * {
  margin: 0.5rem 0.5rem;
}

.numberImage {
  width: 32px;
  position: relative;
  top: 12px;
}

.smallInfoImage {
  width: 26px;
  top: 9px;
  left: 2px;
}

.radio-group-legend {
  font-size: 16px;
  font-weight: 700;
  color: #636363;
  text-align: right;
  line-height: 28px;
  padding-bottom: 33px;
}

.radio-input {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.radio-input:checked + .radio-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #2260ff;
}

.radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}

.radio-input:checked + .radio-tile .radio-icon,
.radio-input:checked + .radio-tile .radio-label {
  color: #2260ff;
}

.radio-icon img {
  filter: invert(38%) sepia(16%) saturate(111%) hue-rotate(216deg)
    brightness(217%) contrast(65%);
  width: 70px;
  height: 70px;
}

.radio-input:focus + .radio-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}

.radio-input:focus + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
}

.radio-group > .radio {
  width: 30%;
  max-width: 114px;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  padding: 10px 0 0;
}

.user-text {
  background: #b5bfd9;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-top: 4px;
  border-radius: 0 0 4px 4px;
  padding-top: 4px;
}

.radio-input:checked + .radio-tile .user-text {
  background: #2260ff;
}

.radio-input:checked + .radio-tile img {
  filter: invert(13%) sepia(167%) saturate(5841%) hue-rotate(244deg)
    brightness(144%) contrast(102%);
}

.radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.radio-tile:hover {
  border-color: #2260ff;
}

.radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-icon {
  transition: 0.375s ease;
  color: #494949;
}

.radio-icon svg {
  width: 3rem;
  height: 3rem;
}

.radio-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}

/**  input */
.form {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.form legend {
  display: block;
  width: 100%;
  text-align: right;
}

fieldset {
  border: none;
}

.input-wrapper {
  max-width: 360px;
  width: 100%;
  position: relative;
}

.input {
  height: 50px;
  font-size: 16px;
  padding: 11px 15px;
  border-radius: 4px;
  border: 1px solid #cbd8e3;
  width: 100%;
  outline: none;
  box-sizing: border-box;
}

.placeholder {
  pointer-events: none;
  position: absolute;
  font-weight: 400;
  top: 16px;
  left: 8px;
  padding: 0 8px;
  background-color: white;
  border-radius: 5px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  color: grey;
}

.input:not(:placeholder-shown).input:not(:focus) + .placeholder {
  transform: scale(0.75) translateY(-36px) translateX(-15%);
  color: #cbd8e3;
  transition: 0.2s ease;
}

.input:focus {
  border-color: #0088ff;
}

.input:focus + .placeholder {
  transform: scale(0.75) translateY(-36px) translateX(-15%);
  color: #0088ff;
  transition: 0.2s ease;
}

.input:invalid:not(:placeholder-shown) {
  transition: 0.2s ease;
  border-color: #f52c5c;
}

.input:invalid:not(:placeholder-shown) + .placeholder {
  transition: 0.2s ease;
  color: #f52c5c;
}

.input:invalid:not(:placeholder-shown).input:not(:focus) + .placeholder {
  transform: scale(0.75) translateY(-36px) translateX(-15%);
  color: #f52c5c;
  transition: 0.2s ease;
}

/** button */
.material-button {
  text-decoration: none;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  min-width: 64px;
  height: 36px;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: #fff;
  background-color: #2260ff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

a.material-button.big-button {
  padding-top: 4px;
}

.big-button {
  font-size: 16px;
  min-width: 135px;
  height: 45px;
}

.white-button {
  background: #fff;
  color: #2260ff;
}

.material-button::-moz-focus-inner {
  border: none;
}

/* Overlay */
.material-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  opacity: 0;
  transition: opacity 0.2s;
}

/* Ripple */
.material-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  padding: 50%;
  width: 32px;
  /* Safari */
  height: 32px;
  /* Safari */
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.material-button:hover,
.material-button:focus {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.material-button:hover::before {
  opacity: 0.08;
}

.material-button:focus::before {
  opacity: 0.24;
}

.material-button:hover:focus::before {
  opacity: 0.3;
}

/* Active */
.material-button:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.material-button:active::after {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0s;
}

/* Disabled */
.material-button:disabled {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
  box-shadow: none;
  cursor: initial;
}

.material-button:disabled::before {
  opacity: 0;
}

.material-button:disabled::after {
  opacity: 0;
}

/** payment picker */

.plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  max-width: 970px;
  padding: 25px 50px;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  /* background: #fff;
    -webkit-box-shadow: 0px 8px 10px 0px #d8dfeb;
    box-shadow: 0px 8px 10px 0px #d8dfeb; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 19px auto;
}

.plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plans .plan {
  cursor: pointer;
  width: 48.5%;
}

.plans .plan .plan-content {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e1e2e7;
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
}

.paymentImage {
  margin: 0 19px;
  height: 50px;
  width: 50px;
}

.plans .plan .plan-details span {
  margin-bottom: 10px;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #252f42;
  font-weight: 600;
}

.container .title {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  color: #252f42;
  margin-bottom: 20px;
}

.plans .plan .plan-details p {
  color: #1c1c1c;
  font-size: 15px;
  line-height: 23px;
}

.plans .plan .plan-content:hover {
  -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
  box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background: #2260ff;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #0066ff;
}

.plans .plan input[type="radio"]:checked + .plan-content {
  border: 2px solid #2260ff;
  background: #eaf1fe;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  margin: 5px;
}
@media screen and (max-width: 991px) {
  .plans {
    margin: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    padding: 20px;
  }
  .plans .plan {
    width: 100%;
  }

  .plan.complete-plan {
    margin-top: 20px;
  }

  .plans .plan .plan-content .plan-details {
    width: 70%;
    display: inline-block;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 45%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

.hamburger-menu-ul {
  flex-direction: column;
  gap: 15px;
}
/** verification input */
#verification-input {
  direction: ltr;
  display: flex;
  justify-content: center;
}

#verification-input > input {
  width: 46px;
  height: 40px;
  font-size: 35px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin: 2px;
  padding-top: 8px;
  padding-right: 3px;
  color: #555;
}

#verification-input > input::-webkit-inner-spin-button,
#verification-input > input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.red-input {
  border-color: #ff4466;
}

.red-placeholder {
  color: #ff4466;
}

/** loading */
.spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}
/*******************\
 Loading Roller
 \*******************/
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lds-roller {
  position: relative;
  display: inline-block;
  height: 64px;
  width: 64px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.lds-roller div:after {
  position: absolute;
  display: block;
  background: #00539f;
  border-radius: 50%;
  content: " ";
  margin: -3px 0 0 -3px;
  height: 6px;
  width: 6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

/** accordion */
/* .accordion {
  max-width: 700px;
  width: 70%;
} */
@media screen and (max-width: 700px) {
  .accordion {
    width: 100%;
  }
}
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #03b5d2;
}
.accordion button {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  padding: 1em 16px;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  outline: none;
  background: none;
}
.accordion button small {
  float: left;
  margin-left: 31px;
  direction: ltr;
  color: #bbb;
  font-weight: 100;
  margin-top: 3px;
  font-size: 13px;
}
.accordion button span span {
  margin-left: 31px;
  color: #aaa;
  font-size: 14px;
  margin: 0 5px;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 19px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  color: #03b5d2;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 28em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  padding: 0 0 19px;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 0.5em 0;
}
.copyIcon {
  width: 20px;
  top: 5px;
  position: relative;
  margin: 0 4px;
}
.copiable {
  cursor: pointer;
}
.successfullPurchase {
  background-color: #f3fff5 !important;
}

/** toast */

.toast {
  background-color: #2260ff;
  color: white;
  border-radius: 4px;
  padding: 1em 2em;
  margin: 0.5em;
}
.card {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}
#toasts {
  position: fixed;
  left: 10px;
  bottom: 10px;
}
.headerButton {
  text-decoration: none;
  color: #fff;
}
.refreshDeviceButton {
  display: inline-block;
  cursor: pointer;
  background-color: #2260ff;
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.refreshDeviceButton:hover {
  box-shadow: none;
}
.successColor {
  color: #03b5d2;
}
#alertSpan {
  margin: 16px;
  color: #e91e63;
}
.failedColor {
  color: #e91e63;
}
.mainColor {
  color: #2260ff;
}

header .header-top {
  -webkit-transform: translatex(0px) translatey(0px);
  -ms-transform: translatex(0px) translatey(0px);
  transform: translatex(0px) translatey(0px);
}

.header-top {
  background-color: #2260ff;
  color: #fff;
  padding: 0 20px;
  font-size: 12px;
  line-height: 10px;
}

@media (min-width: 1381px) {
  header .header-top .headerContainer {
    -webkit-transform: translatex(0px) translatey(0px);
    -ms-transform: translatex(0px) translatey(0px);
    transform: translatex(0px) translatey(0px);
  }
  header .main-header {
    -webkit-transform: translatex(0px) translatey(0px);
    -ms-transform: translatex(0px) translatey(0px);
    transform: translatex(0px) translatey(0px);
  }
}

.header .header-top .headerContainer {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.headerContainer ul li a {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-top ul {
  display: flex;
  gap: 20px;
  padding: 0;
  height: 34px;
}

.header-top .headerContainer div svg {
  width: 20px;
  position: relative;
  top: 7px;
}

header .main-header {
  margin-bottom: 27px;
}

.main-header {
  padding: 10px 20px;
}

.headerContainer {
  display: flex;
  justify-content: space-between;
}

.main-header .headerContainer {
  padding-top: 8px;
}

.main-header .headerContainer {
  padding-top: 8px;
}

.main-header .headerContainer {
  display: flex;
  justify-content: space-between;
}

.hamburger-panel {
  display: none;
}

.hamburger-panel img {
  font-size: 25px;
  padding-top: 5px;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  color: #000;
  transition: right 0.3s ease;
  z-index: 99;
  padding: 20px;
  box-shadow: 0 0 20px -3px #9e9e9ec7;
}

.main-header .headerContainer ul {
  display: flex;
  gap: 130px;
  margin-right: 20px;
  padding: 0 15px;
}

.main-header .headerContainer ul li {
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.main-header .headerContainer a {
  color: #000;
}

.main-header .headerContainer ul li ul {
  flex-direction: column;
  gap: 5px;
  background: #fff;
  position: absolute;
  width: max-content;
  padding: 12px;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  margin-right: 10px;
  box-shadow: 0px 6px 27px rgb(32 32 32 / 10%);
  border-radius: 10px;
}

.main-header .headerContainer ul li ul li {
  color: #000;
  padding: 5px;
}

.main-header .headerContainer .languages {
  margin: auto 0 auto 10px;
  height: 16px;
  border-left: solid 1px #777;
}

.main-header .headerContainer .languages img {
  width: 20px;
  border-radius: 4px;
  height: fit-content;
  margin: 0 5px;
}

.main-header .headerContainer ul li {
  position: relative;
  font-weight: 600;
}

.logo {
  align-self: center;
}

.main-header .menu {
  line-height: 21px;
}

a {
  text-decoration: none;
}

.logo img {
  width: 217px;
  height: auto;
  padding-top: 7px;
}

li {
  list-style: none;
}

.header-top a {
  color: #fff;
}

@media (max-width: 1200px) {
  .main-header .headerContainer ul {
    gap: 60px;
  }
}

.main-header .menu {
  line-height: 21px;
}

.main-header .headerContainer ul li:hover ul {
  visibility: visible;
  margin-right: 20px;
  opacity: 1;
  z-index: 99;
}

@media (max-width: 870px) {
  .main-header .headerContainer ul {
    gap: 30px;
  }
}
.hamburger-menu.active {
  right: 0;
}
.hamburger-menu .sub-menu {
  z-index: 1199;
  position: inherit !important;
  box-shadow: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  margin-right: 20px !important;
  height: 0 !important;
  padding: 0 !important;
  transition: 0.2s ease-in-out !important;
}
.hamburger-menu .sub-menu.active {
  visibility: visible !important;
  opacity: 1 !important;
  height: fit-content !important;
  padding: 10px 15px !important;
}

footer section div img {
  width: 60%;
  height: auto;
  display: inline-block;
  transform: translatex(0px) translatey(0px);
  background-color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
}
footer {
  margin-top: 100px;
  background-color: #2260ff;
}
footer section div {
  flex: 0 0 50%;
  text-align: center;
  color: #ffffff;
}

/** modal */
#modalParent {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: -100%;
  right: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  transition: top 0.2s linear;
}

#modalBackground {
  background-color: #abe3ff33;
  position: fixed;
  top: -100%;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: top 0.2s linear;
  backdrop-filter: blur(4px);
}

#modalBody {
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 4px;
  height: 500px;
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

#modalFooter {
  border-top: 1px solid #eee;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
}

#modalFooter button {
  margin: 0 10px;
}

#modalHeader {
  height: 51px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 10px;
}

#modalContent {
  flex-grow: 1;
  padding: 20px;
}

.tab {
  --tab-padding: 1.25rem;
  --tab-active-bg: #fff;
  min-width: 60%;
  max-width: 100%;
  width: 700px;
}
.tab input {
  display: none;
}
.tab input:checked + label {
  background-color: var(--tab-active-bg);
  color: #000;
}
/* .tab input:not(:checked) + label + * {
  display: none;
} */

.tab-content {
  width: 100%;
  padding: var(--tab-padding) 40px;
  background-color: var(--tab-active-bg);
  transition: visibility 1s, opacity 0.5s linear;
}

.tab label {
  cursor: pointer;
  padding: var(--tab-padding);
  font-weight: bold;
}
@media (max-width: 575px) {
  /* .tab input:not(:checked) + label + * {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0;
    display: block;
  }
  .tab input:checked + label + * {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 18px;
  } */
  .tab input:checked + label:after {
    content: "\2039";
    display: inline-block;
    padding: 0 10px;
    transform: rotate(-90deg);
    float: left;
  }
  .tab input + label:after {
    content: "\2039";
    display: inline-block;
    transform: rotate(90deg);
    float: left;
  }
  .tab label {
    width: 100%;
  }
}
.tab-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--tab-bg);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.tab-content {
  width: 100%;
  padding: var(--tab-padding) 40px;
  background-color: var(--tab-active-bg);
  transition: visibility 1s, opacity 0.5s linear;
}
@media (min-width: 576px) {
  .tab-content {
    order: 9999;
  }
}

@media (max-width: 767px) {
  .singleUser {
    height: 40px !important;
  }
  .accordion button .icon {
    left: 7px;
  }
  .accordion button {
    padding: 1em 5px;
    font-size: 1rem;
  }
  .tab-content {
    padding: 18px;
  }
  .tab label {
    border: 1px solid #e1e1e1;
  }
  #hamburger-menu {
    -webkit-transform: translatex(0px) translatey(0px);
    -ms-transform: translatex(0px) translatey(0px);
    transform: translatex(0px) translatey(0px);
    height: auto !important;
    border-bottom-left-radius: 50px;
    opacity: 0.98;
    display: inline-block;
    width: 290px;
  }
  #close-icon {
    cursor: pointer;
  }
  .hamburger-panel {
    display: inherit;
  }
  .header-top ul {
    gap: 5px;
  }
  #hamburger-button {
    cursor: pointer;
  }
  #menu-main-menu .menu-item:nth-child(1) > a:nth-child(1) {
    cursor: pointer;
  }
  .languages {
    display: none;
  }
  .main-header .headerContainer .menu {
    display: none;
    font-size: 25px;
  }
  .logo img {
    width: 180px;
    height: auto;
  }
}

/** footer */
.copyright-section {
  font-size: 12px;
  border-top: solid 1px #2260ff;
  padding-top: 15px;
}

footer section {
  padding: 42px 0 15px 0;
  margin: 15px auto 0 auto;
  transform: translatex(0px) translatey(0px);
}
@media (max-width: 1380px) {
  footer .copyright-section {
    padding-right: 26px;
    padding-left: 26px;
  }
}

img.wp-smiley,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

@media (max-width: 767px) {
  footer section div img {
    width: 50%;
  }
}
@media (max-width: 870px) {
  footer section div img {
    width: 25%;
  }
}

.fab {
  position: fixed;
  bottom: 56px;
  right: 20px;
  width: 65px;
  height: 65px;
  z-index: 10000;
  background: #2260ff;
  border-radius: 50%;
  text-align: center;
  padding: 9px;
  transition: 0.2s ease;
}

.fab img {
  width: 44px;
  position: relative;
  top: 4px;
  right: 1px;
}

.fab:hover {
  box-shadow: none;
}

.break-flex {
  flex-basis: 100%;
  height: 0;
}

.plans h1 {
  font-size: 21px;
}

.light-border {
  color: #ffc400;
}
.dark-border {
  color: #1de9b6;
}

.vpnForm {
  padding: 33px 25px;
  background: #fff;
  border-radius: 8px;
}

.singleUser {
  padding: 5px 0;
}

.cardForm {
  padding: 51px;
  background: #fff;
  border-radius: 8px;
  max-width: 550px;
}

#learnPaymentLink {
  display: block;
  text-decoration: underline;
  text-align: center;
  font-size: 15px;
  margin: 5px 0 10px;
  cursor: pointer;
  background-color: #f4ffed;
  padding-bottom: 7px;
  font-weight: 600;
  color: #1964e1;
}

.formPageParentDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: 500px;
}

.center {
  text-align: center !important;
}

.paymentImageModal {
  position: relative;
  top: 16px;
}

#modalPayment {
  display: flex;
  align-items: center;
  gap: 47px;
  flex-direction: column;
  padding-top: 80px;
}

a.connection_download {
  padding: 8px;
  margin: 12px;
  display: block;
  border: 2px solid #2260ff;
  border-radius: 4px;
}
a.connection_download img {
  width: 25px;
  position: relative;
  border: 10px;
  vertical-align: bottom;
  left: 5px;
}
@media screen and (max-width: 767px) {
  #modalPayment {
    padding-top: 43px;
  }
  .cardForm {
    padding: 50px 19px;
  }
  .vpnForm {
    padding: 28px 14px 37px;
  }
  .plans .plan .plan-content .plan-details {
    width: 60%;
    display: inline-block;
  }
  .plans {
    padding: 4px;
    margin: 4px;
  }
  .plans h1 {
    font-size: 19px;
  }
  .radio-group-legend {
    font-size: 1.1rem;
  }
  .radio-icon img {
    width: 40px;
    height: 40px;
  }
  .radio-group > * {
    margin: 0.2rem 0.2rem;
  }
  .radio-group {
    width: auto;
  }
  .paymentImage {
    margin: 0;
    margin-bottom: 4px;
  }
  .paymentImageModal {
    top: 0;
    margin: 4px auto;
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .formPageParentDiv {
    height: 430px;
  }
  .radio-group-legend {
    font-size: 0.9rem;
  }
  .vpnForm {
    padding: 28px 14px 37px;
  }
  .paymentImage {
    margin-bottom: 2px;
    height: 50px;
    -webkit-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
	margin-top: 10px;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 20px;
    right: 10px;
  }

  .plans .plan .plan-content .plan-details {
    width: 100%;
  }

  .plans .plan .plan-content {
    padding: 0px 37px 21px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .plans .plan .plan-details span {
    margin-bottom: 2px;
    font-size: 18px;
	padding-top: 20px;
  }
}

@media screen and (max-width: 440px) {
  #verification-input > input {
    width: 33px;
  }
}

@keyframes shake {
  2%,
  18%,
  100% {
    transform: translate3d(-1px, 0, 0);
  }

  4%,
  16% {
    transform: translate3d(2px, 0, 0);
  }

  6%,
  10%,
  14% {
    transform: translate3d(-2px, 0, 0);
  }

  8%,
  12% {
    transform: translate3d(2px, 0, 0);
  }
}

#learnPaymentLink img {
  animation: shake 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
  transition-delay: 2s;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

#addCreditMainDiv {
  text-align: center;
}

.credit-input-wrapper {
  margin: 8px auto;
}

.tab-content {
  padding: 16px;
  max-height: 9999px;
  overflow: hidden;
  opacity: 1;
  transition: 1s opacity all;
}

.tab-content.h-hide {
  opacity: 0;
  padding: 0;
  max-height: 0;
}
@media (max-width: 575px) {
  .tab-content {
    transition: 1s ease all;
  }
}
