:root {
  --color-orange: #FF8518;
  --color-blue: #5865F2;
  --color-black: #000;
  --color-light-gray: #dfdfdf;
  --color-red: #D7392D;
  --font-family: 'Poppins', sans-serif !important;
  --bold-font: 500;
}


body {
  overflow-x: hidden !important;
}

h1,
h2 {
  font-weight: 300;
}



section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1000px) {

      #myDiv {
	width: 70px;
        display: block;
        margin-left: auto;
        margin-right: auto;
       }

}


.loading-screen-container {
  height: 100%;
  width: 100%;
  background-color: #fff;
  background-image: url('../images/logo.png');
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 10000;
  transition: opacity .5s ease-in-out
}

.loading-screen-container.hide {
  opacity: 0
}

.loading-screen-loader {
  height: 150px;
  width: 150px;
  border-radius: 100px;
  border: 1px solid #000;
  border-right: none;
  border-bottom: none;
  animation-name: spin, fade;
  animation-duration: 3s, 3s;
  animation-timing-function: cubic-bezier(.075, .82, .165, 1), linear;
  animation-iteration-count: infinite
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(1110deg)
  }
}

@keyframes fade {

  0%,
  100%,
  70% {
    opacity: 0
  }

  50% {
    opacity: 1
  }
}


.color-orange {
  color: var(--color-orange);
}

.navbar.navbar-light {
  padding-right: 100px;
  padding-left: 100px;
}

.navbar.navbar-dashboard {
  padding-right: 100px;
  padding-left: 100px;
}

.fixed-top.bg-white {
  background-color: white;
  box-shadow: 0px 0px 15px;
}

.navbar-dashboard.bg-gray {
  background-color: #F7F7F7;
}

@media (min-width:200px) and (max-width:768px) {
  .navbar.navbar-light {
    padding-right: 10px;
    padding-left: 10px;
    background-color: white !important
  }
}

#mainNav .nav-item.active,
#mainNav .nav-item:hover {
  border-bottom: 2px solid var(--color-orange);
  cursor: pointer;
}

#mainNav .nav-item {
  margin-right: 5px;
}

#subTabs .nav-link {
  max-width: 150px;
  margin: auto;
}

.home-bg {
  background-image: url('../images/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 72%;
  min-height: 700px;
}

.about-bg {
  background-image: url('../images/right-top.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 25%;
  min-height: 700px;
}

.dashboard-bg {
  background-image: url('../images/right-top.png'), url('../images/bottom-left.png');
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: top right, bottom left;
  position: relative, relative;
  background-size: 20%, 17%;
  min-height: 92vh;
  padding-top: 30px;
}

@media (min-width:992px) {
  .home-bg {
    height: 100vh;
  }

  .about-bg {
    height: 100vh;
  }
}

.home-content {
  padding-top: 250px !important;
}

.home-image {
  width: 75%;
  padding-top: 120px;
}

@media (min-width:200px) and (max-width:768px) {
  .home-content {
    padding-top: 50px !important;
  }

  .home-image {
    width: 75%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

button {
  outline: none;
}

.text-orange {
  color: var(--color-orange) !important;
}

.btn-orange {
  background-color: var(--color-orange) !important;
  color: white !important;
  border: 2px solid var(--color-orange) !important;
}

.btn-blue {
  background-color: var(--color-blue) !important;
  color: white !important;
  border: 2px solid var(--color-blue) !important;

}

.btn-orange:hover {
  background-color: white !important;
  color: var(--color-orange) !important;
  border: 2px solid var(--color-orange) !important;
}

.btn-blue:hover {
  background-color: white !important;
  color: var(--color-blue) !important;
  border: 2px solid var(--color-blue) !important;
}


.btn-round {
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-square {
  border-radius: none;
}

.plan-type-navbar {
  background: #D2D2D2;
  border-radius: 30px;
}

.plan-type-navbar .nav-link {
  width: 180px;
}

@media (max-width:786px) {
  .plan-type-navbar .nav-link {
    width: auto;
  }

}

#pricing .nav-link,
#form-section .nav-link {
  color: var(--color-black);
}

#pricing .nav-link.active,
#pricing .nav-link:hover,
#form-section .nav-link.active,
#form-section .nav-link:hover,
#dashboard-section .nav-link.active,
#dashboard-section .nav-link:hover {
  background-color: var(--color-orange) !important;
  color: white !important;
  border-radius: 30px;
}

#dashboard-section .nav-link {
  min-width: 130px;
  text-align: center;
}

#form-section .nav-link,
#dashboard-section .nav-link {
  background-color: var(--color-light-gray) !important;
  color: black !important;
  border-radius: 30px;
}

/* PRICING CARD */
#pricing .card {
  background-image: url('../images/card-bg.png');
  background-size: auto;
  background-repeat: no-repeat;
  border: 2px solid var(--color-light-gray);
  border-radius: 15px;
  background-position-y: -53px;
  transition: transform .3s;
  margin-top: 30px;
  max-width: 365px;
  margin: auto;
}

@media (min-width:768px) {
  #pricing .card:hover {
    transform: scale(1.1);
  }
}

#pricing .card-header {
  background: transparent;
  padding: 25px;
  margin: auto;
  margin-bottom: 15px;
  color: white;
  border: none;
}

#pricing .card-footer {
  background: transparent;
  border: none;
  margin-top: -20px;
  margin-bottom: 20px;
}

#pricing .card-content {
  text-transform: capitalize;
  text-align: center;
}

#pricing .card-content p {
  line-height: 0.8em;
}

#pricing .card-price {
  font-size: 3rem;
}

#pricing .card-price:before {
  content: url('../images/dollar.png');
  height: 13px;
  position: relative;
  left: -10px;
}

/* PRICING CARD END */

/* DASHBOARD CARD */
#dashboard-section .card {
  background-image: url('../images/card-bg.png');
  background-size: auto;
  background-repeat: no-repeat;
  border: 2px solid var(--color-light-gray);
  border-radius: 15px;
  background-position-y: -100px;
  max-width: 365px;
  margin: auto;
}

#dashboard-section #authIPsCard.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#dashboard-section #authIPsCard.disabled .card-body {
  pointer-events: none;
}

/* DASHBOARD CARD END */

.feature-section {
  background: linear-gradient(to top right, var(--color-orange), var(--color-red));
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-section h1 {
  color: white;
}

.feature-item {
  text-align: center;
  min-height: 200px;
  min-width: 200px;
}

.feature-content {
  margin: auto;
}

.feature-content img {
  width: 70px;
  margin-top: 30px;
}

.feature-content h5 {
  margin-top: 25px;
}

.fearure-item.border-right {
  border-right: 2px solid white;
}

.fearure-item.border-bottom {
  border-bottom: 2px solid white;
}

.border-right {
  border-right: 2px solid gray;
}

.support-sites img {
  margin-top: 30px;
  margin-bottom: 20px;
  width: 50%;
}

.panel.panel-default {
  width: 80%;
  border: 2px solid gray;
  padding: 5px 20px 5px 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.panel.panel-default a {
  font-size: 1rem;
  color: black;
}

.panel.panel-default a:hover {
  text-decoration: none;
}

.panel-body {
  border-top: 1px solid gray;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-bg-image {
  background: url('../images/footer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position-y: 80px;
  margin-top: -150px;
}

.footer-container {
  padding-top: 420px;
  padding-bottom: 25px;
}

.list-unstyled li a {
  color: white !important;
}

#form-section {
  padding-top: 200px;
}

.input-icon {
  background-repeat: no-repeat;
  background-position-y: 47%;
  background-position-x: 23px;
  background-size: 20px;
}

.input-icon.user {
  background-image: url('../images/icons/user.png');
}

.input-icon.lock {
  background-image: url('../images/icons/lock.png');
}

.input-icon.email {
  background-image: url('../images/icons/email.png');
}

.input-icon.confirm {
  background-image: url('../images/icons/conform-pass.png');
}

.form-control.custom-input {
  background: transparent;
  padding: 10px 10px 10px 50px;
  border-radius: 32px;
  height: 45px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #646ea6;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

.auth-input {
  height: 33px;
  border-radius: 25px 0px 0px 25px;
}

.auth-btn {
  height: 33px;
  font-size: 11px;
  border-radius: 0px 25px 25px 0px;
  border: 2px solid var(--color-light-gray);
  outline: none !important;
  box-shadow: none !important;
}

.border-gray {
  border: 1px solid var(--color-light-gray);
}

.status-section {
  background: linear-gradient(to right, var(--color-orange), var(--color-red));
  border-radius: 50px;
  min-height: 51px;
  margin-top: -26px;
}

.token-details.border-right-black {
  border-right: 1px solid black;
}

.token-details>h6,
.token-details>span {
  padding-left: 35px;
}

.token-details>h6 {
  margin: 0;
  letter-spacing: 1px;
  color: #54597c;
  font-weight: 500;
  font-size: 14px;
  color: white;
  margin-top: 4px;
}

.token-details>span {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 15px;
  color: #ffffff;
  font-weight: 250;
}

.token-details.progress-section {
  margin-left: -20px;
}

.token-details.progress-section>h6 {
  padding-left: 0px;
}

.token-details>img {
  position: absolute;
  width: 18px;
  margin-top: 10px;
}

@media (max-width:768px) {
  .status-section {
    border-radius: 20px;
    min-height: 51px;
    margin-top: 10px;
  }

  .token-details.border-right-black {
    border-right: none !important;
  }

  .token-details.progress-section {
    width: 85%;
    margin: auto;
  }
}

.custom-textarea {
  width: 100%;
  margin: auto;
  border: 2px solid var(--color-light-gray);
  margin-top: 20px;
}

textarea::-webkit-scrollbar {
  width: 5px;
  background-color: var(--color-light-gray);
}

textarea::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--color-orange);
}

.table-custom>.dataTables_wrapper {
  min-height: 204px;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .table-custom>.dataTables_wrapper .dataTables_info {
    bottom: -40px;
  }

  .dataTables_paginate {
    bottom: -70px;
  }

  .table-custom>.dataTables_wrapper .dataTables_info,
  .table-custom>.dataTables_wrapper .dataTables_paginate {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0px;
  }
}

.copy-section {
  margin-bottom: -19px;
}

.btn-copy,
.btn-download {
  min-width: 140px;
}

@media (max-width:768px) {
  .btn-lable {
    display: none;
  }

  .btn-copy,
  .btn-download {
    min-width: 0;
  }

  #order-history-container {
    overflow: scroll;
  }
}

.delete-image {
  float: right;
  width: 25px;
  margin-top: 4px;
  width: 20px;
  cursor: pointer;
}

.progress {
  display: flex;
  height: 10px;
  overflow: hidden;
  font-size: .75rem;
  background-color: transparent;
  border: 1px solid var(--color-orange);
  border-radius: 1.25rem;
}

.progress-bar {
  color: #fff;
  background-color: white;
}

.dataUsage span {
  font-size: 11px;
  margin-top: 2px;
}


/* checkoutModal CSS */

/* Common styles for payment options */
.custom-radio .custom-control-input {
  box-shadow: none !important;
  outline: none !important;
}

/* Add CSS for the Payment Options Title */
.modal-payment-title {
  text-align: left; /* Align to the left to have it in front of the options */
  font-weight: bold;
  margin-bottom: 15px; /* Adjust as necessary */
  padding-left: 15px; /* Align with the rest of your content */
}

/* Continue with your existing CSS adjustments */


.custom-radio .custom-control-label {
  display: flex;
  align-items: center;
  color: var(--color-black);
  font-weight: 400;
  cursor: pointer;
}

.custom-radio .payment-icon {
  margin-right: 8px; /* Adjust spacing between icon and text */
  width: 20px; /* Adjust size as needed */
  height: auto;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--color-orange);
  background-color: var(--color-orange);
}

.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgb(107 107 255 / 50%);
}

/* Hide the default radio button */
input[type='radio'] {
  opacity: 0;
  position: fixed;
  width: 0;
}

/* Create a custom radio button */
input[type='radio'] + label {
  display: inline-block;
  padding-left: 30px; /* Adjust the space for the custom radio button if needed */
  position: relative;
  cursor: pointer;
  line-height: 20px; /* Match the height of the label text */
  color: #333;
  vertical-align: middle; /* This ensures vertical alignment with the text */
}

/* Custom radio button design */
input[type='radio'] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Centers the button vertically */
  width: 20px; /* Your desired size */
  height: 20px; /* Your desired size */
  border: 1px solid #9c9c9c;
  border-radius: 50%;
  background-color: #fff;
}

/* Inner dot for checked state */
input[type='radio']:checked + label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px; /* Centers horizontally, adjust as needed */
  transform: translate(0, -50%); /* Centers the dot vertically */
  width: 12px; /* Your desired size for the dot */
  height: 12px; /* Your desired size for the dot */
  background-color: #D35400;
  border-radius: 50%;
}


.payment-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* Adjust the margin as needed */
}

.payment-radio {
  margin-right: 10px; /* Space between radio and image */
  accent-color: #ff6a00; /* Customize this with your color scheme */
}

.payment-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.payment-icon {
  width: 100px; /* Increase the width as desired */
  height: auto; /* Set height to auto to maintain the aspect ratio */
  margin-left: 10px; /* Adjust the space between the text and the icon if needed */
}
.label-text {
  /* Ensure the text comes first and takes necessary space */
  margin-right: auto;
}

#checkoutModal {
  color: var(--color-primary);
  padding-right: 0px !important;
  text-align: center;
  z-index: 9999;
}

#checkoutModal .modal-dialog {
  max-width: 576px;
  user-select: none;
}

#checkoutModal .modal-content {
  background-color: #fff;
  /* background-image: url(../images/bg_checkout.png); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 80px 0px;
}

#checkoutModal .modal-header,
#checkoutModal .modal-body,
#checkoutModal .modal-footer {
  border: none;
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 0px 15px;
  width: 100%;
}

#checkoutModal .modal-header .close {
  color: rgb(118, 111, 139);
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 35px;
  font-weight: 300;
  outline: none;
}

#checkoutModal .modal-header .close:hover {
  transform: scale(1.1);
}

#checkoutModal .modal-header .modal-title {
  /* color: var(--color-secondary); */
  font-size: 15px;
  /* letter-spacing: 10px; */
  font-weight: 599;
}

#checkoutModal .modal-body {
  flex: none;
}

#checkoutModal .modal-body #planPrice {
  /* color: var(--color-secondary); */
  font-size: 72px;
  font-weight: 600;
  letter-spacing: 2px;
}

#checkoutModal #couponCode {
  background-color: rgb(39 25 0 / 29%) !important;
  background-image: url('../images/right.png');
  background-size: 16px;
  background-position: center right 12px;
  background-repeat: no-repeat;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5) !important;
  border-radius: 10px;
  /* color: var(--color-secondary) !important; */
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  height: 44px;
  padding: 8px 32px 8px 16px;
  user-select: none;
}

#checkoutSubscription {
  box-shadow: none !important;
  outline: none !important;
}

.subscription-switch .subscription-label {
  color: var(--color-black);
  font-weight: 400;
}

.subscription-switch .subscription-label::before {
  top: 5px;
}

.subscription-switch .subscription-label::after {
  top: calc(0rem + 7px);
  background-color: var(--color-orange);
}

#checkoutSubscription:focus~.subscription-label::before {
  box-shadow: 0 0 0 0.2rem rgb(107 107 255 / 10%);
}

#checkoutSubscription:checked~.subscription-label::before {
  border-color: var(--color-orange);
  background-color: var(--color-orange);
}

#checkoutCrypto {
  box-shadow: none !important;
  outline: none !important;
}

.crypto-switch .subscription-label {
  color: var(--color-black);
  font-weight: 400;
}

.crypto-switch .subscription-label::before {
  top: 5px;
}

.crypto-switch .subscription-label::after {
  top: calc(0rem + 7px);
  background-color: var(--color-orange);
}

#checkoutCrypto:focus ~ .subscription-label::before {
  box-shadow: 0 0 0 0.2rem rgb(107 107 255 / 10%);
}

#checkoutCrypto:checked ~ .subscription-label::before {
  border-color: var(--color-orange);
  background-color: var(--color-orange);
}

#checkoutModal .modal-body #paymentInfo>div {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 16px 0px 8px;
}

#checkoutModal .modal-footer #checkoutPayBtn {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 12px 16px;
  outline: none !important;
}

#tosCheck {
  height: 12px !important;
}

.couponBtn {
  margin-left: -40px;
  z-index: 5;
  cursor: pointer;
}

.couponBtn>.input-group-text {
  background-color: transparent;
  border: none;
}

a.btn.btn-orange.btn-renew.renewBtn {
  padding: 0px 4px;
  font-size: 13px;
}

tr.odd.active,
tr.even.active {
  background: var(--color-light-gray) !important;
}

#dropdownMenuButton {
  cursor: pointer;
}

#nbrOfProxies {
  width: 100%;
  border-radius: 23px;
  border: 2px solid var(--color-light-gray);
  height: 35px;
  padding-left: 20px;
  font-size: 15px;
}

#nbrOfProxies:focus {
  outline: none !important;
}

#resiSlider,
#dcSlider,
#captchaSlider,
#subnetSlider {
  width: 80%;
  margin: auto;
}

#order-history-section {
  padding-bottom: 55px;
}

.authtype-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  border: 1px solid var(--color-orange);
  border-radius: 50px;
  /* width: auto; */
  width: max-content;
  padding: 0px 2px;
}

.authtype-item {
  cursor: pointer;
  margin: 2px auto;
  padding: 2px 8px;
  border-radius: 50px;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-orange) !important;
}

.authtype-item.active {
  background-color: var(--color-orange) !important;
  color: #ffffff !important;
  transition: 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



.reward-card {
  background-image: linear-gradient(0deg,rgba(192,236,255,.764999),hsla(0,0%,100%,1)),url(../images/data-server.png);
  background-position-y: 50px;
  background-size: cover;
  background-blend-mode: color-dodge;
  background-repeat: no-repeat;
  height: 8rem;
  display: block;
  background-position-x: left;
  border-radius: 20px;
  margin: 15px;
  border: 1px solid orange;

}

.reward-card div {
 height : 100px
}

.reward-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.reward-card:hover {
  border: orange;
  box-shadow: 0 2px 18px darkorange;
}

.reward-card .active{
  border: orange;
  box-shadow: 0 2px 18px darkorange;
}


 .trustpilot-score-link {
    text-decoration: none;
  }

  .trustpilot-score {
    display: inline-flex;
    align-items: center;
    background-color: #eaf7f0;
    border-radius: 8px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
  }

  .trustpilot-score-link:hover .trustpilot-score {
    background-color: #c4e3cb;
  }

  .trustpilot-score .rating-text {
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.7em;
    color: rgb(52, 78, 65);
    margin-right: 8px;
  }

  .trustpilot-score .trustpilot-stars {
    width: auto;
    height: 20px;
    margin-right: 8px;
  }

  .trustpilot-score .trustpilot-logo {
    width: auto;
    height: 20px;
  }

.key-points {
  display: flex;
  justify-content: flex-start; /* Align items to the left */
  align-items: center;
  gap: 10px; /* Reduced space between points */
  margin-top: 20px; /* Add space above the key points section */
  padding: 0 10px; /* Reduced padding to control spacing */
}

.point {
  display: flex;
  align-items: center;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgb(52, 78, 65);
  white-space: nowrap; /* Prevent text from wrapping */
}

.point .fa-check {
  color: #008080; /* Customize the check icon color */
  margin-right: 5px; /* Reduced space between icon and text */
}

@media (max-width: 767px) {
  .key-points {
    flex-direction: column;
    align-items: flex-start; /* Align items to the left on mobile */
    gap: 15px; /* Increased space between points for better readability */
  }

  .point {
    justify-content: flex-start; /* Align text to the left on mobile */
  }
}  .scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px; /* Add space above the scrolling section */
    height: 40px; /* Decreased height to fit smaller images */
  }

  .scroll-content {
    display: flex;
    align-items: center; /* Center images vertically */
    animation: scroll 20s linear infinite;
  }

  .scroll-content img {
    margin: 0 20px; /* Add space between images */
    height: 30px; /* Decreased height of images */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Create a second set of images for seamless loop */
  .scroll-content::after {
    content: attr(data-content);
  }


.switch {
  position: relative;
  display: inline-block;
  width: 25px;  /* Smaller width */
  height: 12px; /* Smaller height */
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider.round {
  border-radius: 12px;  /* Adjusted for smaller size */
}

.slider:before {
  position: absolute;
  content: "";
  height: 9px;  /* Smaller size */
  width: 9px;   /* Smaller size */
  left: 1px;
  bottom: 1px;
  background-color: white;
  transition: .4s;
  border-radius: 50%; /* Make the toggle round */
}

input:checked + .slider {
  background-color: #FF8518; /* Orange color */
}

input:checked + .slider:before {
  transform: translateX(13px); /* Adjust for smaller size */
}

label.color-orange {
  color: #FF8518; /* Ensure the text color matches the orange theme */
  font-size: 14px; /* Smaller font size to match the "ISP Plan" text */
  font-weight: 500; /* Adjust font weight if needed */
  margin-bottom: 0;
}

/* OR Divider */
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.or-divider span {
  background: #fff;
  padding: 0 10px;
  color: #666;
  font-size: 14px;
  font-weight: bold;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* Google Button */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #555;
  border: 2px solid #ddd; /* Thicker border */
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.google-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.btn-google:hover {
  background-color: #f7f7f7;
  border-color: #ccc;
  color: #333;
}


/* Fullscreen dark overlay */
.promo-banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none; /* ⬅️ HIDE BY DEFAULT */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
}

/* Popup container */
.promo-banner-popup {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  animation: zoomIn 0.35s ease;
}

/* Close button */
.promo-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.promo-banner-close:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Image */
.promo-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
