.color-b{color: #0384c7;}

.chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  padding: 5px 12px;
  cursor: pointer;
  display: flex;
  font-size: 30px;
  align-items: center;
  color: rgb(14, 193, 47);
  justify-content: center;
}
.notification-badge-icon {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
}
.chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: rgb(241, 240, 240);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  display: none;
  width: 300px;
  color: #383838;
}
.close-chat-box {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border-radius: 100px;
  border: 1px solid #ddd;
  font-size: 12px;
  padding: 4px 7px;
  background: #fff;
}
.chat-header, .chat-message {
  display: flex;
  align-items: center;
}
.chat-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.chat-header-content {
  margin-left: 10px;
}
.avatar-status {
  position: relative;
  display: inline-block;
}
.profile-picture {
  border-radius: 50%;
  width: 55px;
  height: 55px;
}
.avatar-status::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background: #19e23e;
  border-radius: 50%;
  border: 2px solid #fff;
}
.profile-picture-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 44px;
}
.chat-message p {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.chat-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.chat-button {
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 5px;
  color: #fff;
}
.whatsapp {
  background-color: #25D366;
}
.telegram {
  background-color: #0088cc;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}
.notification-badge {
  /* ...other styles... */
  animation: pulse 2s infinite;
}

.notification-badge-menu {
  position: absolute;
  top: 6px;  
  right: 9px;
  width: 7px;
  height: 7px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
80% {
  opacity: 0;
}
}

.notification-badge-logo {
  position: absolute;
  top: 14px;
  right: 65px;
  width: 4px;
  height: 4px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
50% {
  opacity: 0;
}
}



.play-button {
  background-color: #25d366b0;
  border: #fff solid 2px;
  position: relative;
  animation: shadowPulse 1s infinite linear;
  padding: 10px 14px;
}

.play-button::before {
  position: absolute;
    content: '';
    border-top: transparent 10px solid;
    border-bottom: transparent 10px solid;
    border-left: #fff 17px solid;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.play-button::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: #fff solid 2px;
  border-radius: 100%;
  animation: ringPulse 1s infinite linear;
}

@keyframes ringPulse {
  0% {
      opacity: 0;
      transform: scale(0.95);
  }
  10% {
      opacity: 1;
  }
  80%, 100% {
      opacity: 0;
      transform: scale(2);
  }
}

@keyframes shadowPulse {
  0% {
      box-shadow: 0 0 8px 6px transparent,
                  0 0 0 0 transparent,
                  0 0 0 0 transparent;
  }
  10% {
      box-shadow: 0 0 8px 6px #25d365,
                  0 0 12px 10px transparent,
                  0 0 12px 5px #25d366b0;
  }
  80%, 100% {
      box-shadow: 0 0 8px 6px transparent,
                  0 0 0 40px transparent,
                  0 0 0 40px transparent;
  }
}

.play-button:hover {
  background-color: #cc3711c4; /*replace #yourcolor with the color you want on hover*/
  transition: background-color 0.3s ease; /*this will animate the color change*/
}

.play-button:hover i {
  color: #ddd; /*replace #yourcolor with the color you want on hover*/
  transition: color 0.3s ease; /*this will animate the color change*/
}


.modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.embed-responsive-16by9 {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.embed-responsive-16by9 iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 5px;
}

.p-blue {
  color: #0384c7;
}







.info-box {
  background: #fff;
  padding: 15px;
  border: 1px solid  #ddd;
  border-radius: 8px;
  flex-direction: column;
}

.info-text {
  text-align: center;
  margin-bottom: 15px;
}

.info-heading {
  margin-bottom: 5px;
  color: #ff7607;
  font-weight: 600;
}

.info-description {
  margin-bottom: 0px;
  font-size: 17px;
}

.info-button {
  background-color: #00bf63;
  border-color: #00964e;
  width: 100%;
}

@media (min-width: 576px) {
  .info-box {
      flex-direction: row;
  }
  .info-text {
      text-align: left;
      margin-bottom: 0;
  }
  .info-button {
      width: auto;
  }
}



.btn.view-plan {
  background-color: #000;
  color: #fff;
}

.btn.view-plan:hover, .btn.view-plan:focus {
  background-color: #333;
  color: #fff;
}




.row.global-datacenter-locations {
  background-image: url(https://stablepoint.com/assets/interface/map/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 122px 0;
  background-position: center;
}

.stp-mapLocation {
  display: flex;
  align-items: center;
  border: 1px solid #7575755c;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #fff;
}

.stp-mapLocation img {
  margin-right: 10px;
}


.hosting-options-section {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.hosting-icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 80px;
  border: 1px solid #ddd;
}

.hosting-icon-h {
  border-radius: 100px;
  margin-bottom: 80px;
  border: 1px solid #0b883a;
  line-height: 0px;
  font-size: 30px;
  background: #25d366;
  padding: 7px;
  color: #ffffff;
}

.hosting-content {
  padding-left: 9px;
}

.hosting-content p{
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 25px;
    margin-top: 15px;
}

.hosting-content h4{
  font-weight: 600;
}







body {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}
p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.container {
    max-width: 1120px;
}

/* Header */
header.sticky-top {
  background-color: #ffffff;
}

/* Logo */
header.sticky-top .navbar-brand {
  color: #fafafa;
}

/* Menu */
header.sticky-top .navbar-nav .nav-link {
  color: #000;
}

header.sticky-top .navbar-nav .nav-link:hover {
  color: #3374d4;
}

.nav-item.active .nav-link {
  color: #0088cc !important;
}


.top-bar-root-wrapper{
  background: #000000;
  color: white;
  padding: 0 10px;
  border-bottom: 1.5px solid #737373;;
}
.top-bar-main-wrapper{
  display: flex;
  line-height: 1;
}
.top-bar-main-wrapper p{
  margin: 0;
  padding: 0;
}
.top-bar-wrapper{
  display: flex;
}
.top-bar-item{
  padding: 10px;
  padding-right: 30px;
  border-right: 1.5px solid #737373;
}
.top-bar-content{
  display: flex;
}
.top-bar-item-right-content{
  display: flex;
}
.top-bar-item a{
  text-decoration: none;
  color: unset;
}
.top-bar-item-right-content p {
  padding-left: 5px;
}
.green-text-color {
  color: #00BF63;
}
.light-blue-text-color {
  color: #A4B4FF!important;
}
.font-weight-bold{
  font-weight: bold;
}
.top-bar-item:last-of-type{
  border-right: none;
}
.top-bar-item:first-of-type{
  padding-left: 0;
}

.top-bar-root-wrapper.affiliate {
  background-color:  #00BF63;
  color: black;
}

@media (max-width: 769px) {
  .top-bar-item:first-of-type{
    padding-left: 10px;
  }

  .top-bar-root-wrapper{
    padding-left: 0;
    padding-right: 0;
  }
  .top-bar-main-wrapper{
    padding-left: 0;
    padding-right: 0;
  }
  .top-bar-wrapper {
    flex-wrap: wrap;
  }
  .top-bar-item {
    width: 100%;
    border-right: none;
    border-bottom: 1.5px solid #737373
  }
  .top-bar-item:last-of-type{
    border-bottom: none;
  }

}



/* Login Button */
header.sticky-top .btn {
  border-radius: 6px;
  padding: 4px 25px;
}

header.sticky-top .btn:hover {
  background-color: #91d0ff;
  color: #fafafa;
}

/* Custom Toggler */
.custom-toggler.navbar-toggler {
  border-color: #878a8b;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2391d0ff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  padding: 5px;
  border-radius: 56px !important;
  font-size: 16px;
}

/* .dropdown-menu {
  background-color: #f8f9fa;
  padding: 0px;
}

.dropdown-item {
  color: #212529;
}
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; 
} 

.dropdown-item {padding: 9px 15px;}

.dropdown-menu-arrow::before {
  position: absolute;
  top: -7px;
  left: 20px;
  border-width: 0 7px 7px;
  border-color: transparent transparent #0f4391;
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
} */

/* .dropdown-menu-arrow {
  position: relative;
} */




@media (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    padding-left: 15px;
    padding-right: 15px;
    top: 0;
    left: 0;
    width: 80%;  /* You can change this as per your requirement */
    height: 100%;
    background-color: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
  }
  .navbar-collapse.show {
    transform: translateX(0);
  }
}

.navbar-toggler {
  z-index: 2000;  /* Make sure this is higher than the navbar-collapse's z-index */
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Change as needed */
  z-index: 1040; /* Should be less than navbar-collapse's z-index */
}

@media (max-width: 992px) {
  .navbar-collapse.show + .sidebar-backdrop {
    display: block;
  }
}
.navbar-collapse.collapsing {
  -webkit-transition: all 0.1s ease !important;
  transition: all 0.1s ease !important; /* adjust the duration as needed */
  max-height: 100vh;
  overflow: hidden;
  transition: max-height 0.1s ease !important;
}









.font-weight {font-weight: 600;}

.custom-section {
  background-color: #00BF63;
  color: #fff;
  padding: 20px 0;
}

.custom-link {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

.custom-link:hover {
  color: #ffffff;
  text-decoration: underline;
}



/* Desktop and larger devices */
#banner-section h1 {
  font-size: 35px; 
  padding-bottom: 20px;
}

/* Mobile and smaller devices */
@media screen and (max-width: 767px) {
  #banner-section h1 {
      font-size: 25px; 
  }
}


/* Custom unique button styles */
.btn.custom-btn.unique-btn {
  color: #fff;
}

.custom-btn-container {
  border: 1px solid #ddd;
  border-radius: 100px;
  width: 100%;
}

/* Custom button hover state */
.btn.custom-btn.unique-btn:hover {
  border-color: #91d0ff;
  color: #91d0ff;
}






.btn-outline-secondary {
    border-color: #ddd;
}

.border-bottom-n {
    border-bottom: solid 1px #3f3f3f !important;
}

.border-bottom {
  border-color: #d9d9d9 !important;
}
.notification-section {
    background-color: #251132;
}
.offer-section {
    background-color: white;
    border-bottom: 1px solid #ddd;
}



/* Pricing Table */

.card {
    border: 1px solid #ddd;
    background-color: #fff;
}

.card-body p {
    font-weight: 600;
}

.card .row {
  margin: 0;
  padding: 5px 0;
  border-radius: 5px;
  background: #000000;
  color: #ddd;
}

.card .row + .row {
    margin-top: 15px;
}

.card .text-left {
    text-align: left;
}

.card .text-right {
    text-align: right;
}

.card .text-right span {
    color: #00BF63; 
}

.card ul {
    line-height: 35px;
    padding-top: 10px;
    list-style: none;
    padding-left: 5px;
    margin-bottom: 0px;
}

.card select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    background: #e9f2ff;
}

/* btn */
.btn-custom {
  background-color: #00BF63;
  border-color: #00BF63;
  color: white;
  border-radius: 50px;
  font-size: 16px;
  margin-right: 14px;
  padding: 3px 15px;
}

.btn-custom:hover {
  background-color: #009b53;
  border-color: #009b53;
}

.icon-custom {
  color: #00BF63;
  font-size: 32px;
  padding: 0;
}




/* Mobile Devices */
@media (max-width: 480px) {
    h1 {
      font-size: 24px;
    }
    h2 {
      font-size: 20px;
    }
    h3 {
      font-size: 18px;
    }
    h4 {
      font-size: 16px;
    }
  }
  
  /* Tablets */
  @media (min-width: 481px) and (max-width: 768px) {
    h1 {
        font-size: 28px;
      }
      h2 {
        font-size: 22px;
      }
      h3 {
        font-size: 18px;
      }
      h4 {
        font-size: 16px;
      }
  }
  
  /* Desktops and laptops */
  @media (min-width: 769px) {
    h1 {
        font-size: 32px;
      }
      h2 {
        font-size: 24px;
      }
      h3 {
        font-size: 20px;
      }
      h4 {
        font-size: 18px;
      }
  }
  

  @media (max-width: 576px) {
    .border-on-mobile {
        border-top: 1px solid #5f5f5f !important;
        padding-top: 10px;
        margin-bottom: -57px;
    }
}















  .footer {
    background-color: #ffffff; /* or use 'black' */
    color: #000000;  /* or use 'white' for text color */
  }
  
  .footer ul li a {
    text-decoration: none;
    color: #333333 !important; 
    line-height: 40px;
  }
  
  .footer ul li a:hover {
    color: #91d0ff !important;
  }
  
  .social-icons {
    display: inline-flex;
    gap: 10px;
  }
  
  .social-icon {
    padding: 0px 8px;
    text-align: center;
    font-size: 24px;
  }
  
  .social-icon:hover {
    color: #91d0ff;
    border-color: #91d0ff;
  }
  
  .copyright-footer {
    background-color: #ffffff;
    text-align: left !important;
    color: #000000 !important;
    border-top: 1px solid #ddd;
  }


  
  .footer-07 {
    background: #121212; }
    .footer-07 a {
      color: #4e5e65; }
    .footer-07 p {
      color: rgba(255, 255, 255, 0.3); }
    .footer-07 .footer-heading {
      color: #ddd;
      font-weight: 500;
      margin-bottom: 25px; }
      .footer-07 .footer-heading .logo {
        color: #ddd; }
    .footer-07 .menu {
      margin-bottom: 20px; }
      .footer-07 .menu a {
        color: rgba(255, 255, 255, 0.6);
        margin: 0 10px; }
    .footer-07 .ftco-footer-social li a {
      background: transparent;
      border: 1px solid #a3de83; }
      .no-underline {
        text-decoration: none !important;
    }

    .no-underline:hover {
      color: #72abff !important;  /* Change this to the color you want */
  }

/*    Custom*/
.hero-left-wrapper h1{
  font-size: 25px;
}
.price-info-wrapper{
  background-color: #494949;
  padding: 20px;
  border-radius: 5px;
}
.price-info-title{
  padding: 2px 10px;
  background-color: #231F20;
  color: #D9EDF7;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 17px;
}

.price-info-green-span{
  color: #B0E6B0;
}
.price-info-radio-wrapper{
  margin: 0 5px;
}
.radio-container {
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  user-select: none;
}

.custom-radio {
  position: absolute;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 8px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  /*border: 2px solid #4CAF50;*/
  border-radius: 50%;
}
.custom-radio:checked + .checkmark {
  background-color: #00BF63;
}
.price-item-bottom-button{
  background-color: #00BF63;
  padding: 0 10px;
  border-radius: 4px;
}
.price-item-bottom-button a{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
  color: white;
}
.price-item-selection{
  margin-bottom: 20px;
  width: 100%;
}
.price-item-selection lable{
  margin: 0 5px;
}
.price-item-selection select{
  width: 100%;
  padding: 5px;
  background-color: #231F20;
  color: #FFFFFF;
  border-radius: 5px;
}
.price-item-selection .select2-container{
  width: 100%;
}
.price-item-selection .select2-container--default .select2-selection--single {
  background-color: #231F20;
  border: 1px solid #737373;

}
.price-item-selection .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #FFFFFF;
  margin-top: 2px;
}

.price-item-selection  .select2-container--default .select2-results__option {
  height: 32px;
  line-height: 32px;
}

.price-item-selection  .select2-container--default .select2-selection--single {
  height: 32px;
}

 .select2-container--default .select2-results__option:hover {
  background-color: #00BF63;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #00BF63!important;
  color: #ffffff;
  padding: 2px 10px!important;
}
