*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  /* background-color: #0B122D; */
  /* background: linear-gradient(180deg, #0491DD -200%, #0B122D 50%, #0B122D 100%); */
  background: linear-gradient(180deg, #074F7F 0%, #0B122D 10%, #0B122D 100%);
  font-family: 'Proxima Nova Lt';
}

a{
  text-decoration: none;
  color: #0079FF;
  transition: all 0.3s ease;
}
/* a:hover {
  color: #fff;
} */

li{
  list-style: none;
}

ul,ol{
  padding: 0;
  margin: 0;
}

.custom_container{
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

h1{
  font-size: 35px;
  font-family: 'Proxima Nova Rg';
  font-weight: bold;
  color: #ffffff;
} 

h2{
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

p{
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.border_line{
  background:linear-gradient(90deg, rgba(0, 152, 234, 0) 0%, rgba(0, 152, 234, 0.77) 50%, rgba(0, 152, 234, 0) 100%);
    height: 2px;
    width: 100%;
    opacity: 1;
}

.space_bottom{
  margin-bottom: 100px;
}
/* login css start here */
.form-control {
  background: linear-gradient(180deg, rgba(11, 18, 45, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid #253B59;
  padding: 17px 20px;
  border-radius: 12px;
  color: #ffffff;
}

.form-control::placeholder {
  color: #ffffff73;
  font-weight: 400;
  font-size: 16px;
}

.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #0079FF;
  color: #ffffff;
}

.form-check-input:checked[type=checkbox]{
  background: linear-gradient(165.34deg, #0B122D -14.95%, #066EAD 89.63%);
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(180deg, rgba(11, 18, 45, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid #0079FF;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.form-check-input:focus{
  box-shadow: none;
}

.form-check-input:checked {
  background: linear-gradient(165.34deg, #0B122D -14.95%, #066EAD 89.63%);
  border: 1px solid #0079FF;
}

.form-check-input:checked::before {
  content: '';
  background-image: url('../images/checkbox_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 18px;
  color: #0d6efd; 
  cursor: pointer;
}

.primary_button {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #0079FF;
  border-radius: 90px;
  color: #ffffff;
  padding: 13px;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}

.primary_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(38.71% 236.24% at 50% 62.07%, #0196E6 0%, rgba(11, 18, 45, 0) 100%);
  filter: blur(30px);
  z-index: -1; 
}


.primary_button:hover{
  background: radial-gradient(circle,rgba(6, 115, 180, 0.3) 0%, rgba(13, 22, 50, 1) 100%);
  border: 1px solid #0079FF;
  color: #ffffff;
}

.login_section {
  min-height: 100vh;
  overflow: hidden;
}

.login_section .form-check .form-check-label{
  font-size: 16px;
  color: #fff;
}

.login_section .forgot-password {
  color: #0079FF;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login_section .forgot-password:hover{
  color: #fff;
}

.login_section .register-link span{
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.password-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0079FF;
  transform: rotate(-45deg);
  transform-origin: center;
  display: block;
}

.password-toggle.active::after {
  display: none;
}
.mh-95vh {
  min-height: 95vh;
}
/* permission page css start here  */
.permission_overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 95%); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.permission_modal {
  background: radial-gradient(365.74% 62.64% at 46.91% 114.28%, #0196e67d 0%, rgb(11 18 45) 100%);
  border-radius: 16px;
  border: 1px solid #0196E6;
  padding: 20px 0;
  max-width: 330px;
  margin: 0 auto;
}

.permission_overlay h4{
  font-size: 22px;
  font-weight: 700;
  color: #ffffffc2;
}

.permission_overlay ul li.permission_btn {
  background-color: transparent;
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(90deg, rgba(0, 152, 234, 0) 0%, rgba(0, 152, 234, 0.5) 50%, rgba(0, 152, 234, 0) 100%);
  border-image-slice: 1;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
}
.permission_overlay ul li.permission_btn a {
  color: #fff;
  transition: all 0.3s ease;
}
.permission_overlay ul li.permission_btn a:hover {
  color: #0079FF;
}

/* dashboard css start here  */
.dashboard_outer .bottom-nav {
  background: linear-gradient(90deg, #0F2240 -25.28%, #0F2240 53.3%, #0F2240 131.87%);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  padding: 10px 15px;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(2, 22, 53, 0.5) 0%, rgba(2, 22, 53, 0) 113.31%);
  z-index: 1000;
  border-radius: 20px 20px 0 0;
}

.dashboard_outer .nav-item{
  height: 63px;
  width: 20%;
  padding: 3px 10px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.dashboard_outer .nav-item span{
  font-size: 12px;
  font-weight: 400;
  color: #86909F;
}

.dashboard_outer .nav-item.active,
.dashboard_outer .nav-item:hover {
  background: linear-gradient(180deg, rgba(11, 18, 45, 0) 0%, rgba(1, 150, 230, 0.3) 100%);
  color: #FFF;
}
.dashboard_outer .nav-item.active svg path, .dashboard_outer .nav-item:hover svg path {
  stroke: #0079FF !important;
}

.dashboard_outer .nav-item.active span,
.dashboard_outer .nav-item:hover span {
  color: #FFF;
}

.nav-item:active span,
.nav-item:focus span,
.nav-item:hover span {
  color: white;
}

.scroll_content {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #1c3cbb transparent;
}

.scroll_content::-webkit-scrollbar {
  width: 3px;
}

.scroll_content::-webkit-scrollbar-track {
  background: transparent; 
}

.scroll_content::-webkit-scrollbar-thumb {
  background-color: #0B122D;
  border-radius: 10px; 
}

.our_app_sec .used_dete h3{
  font-size: 14px;
  font-weight: 400;
  color: #86909F;
}

.our_app_sec .used_dete span{
  font-size: 20px;
  font-weight: 700;
  color: #0079FF;
}

header{
  position: sticky;
  top: 0;
  background: #0a2a4f;
  z-index: 999;
}

header h2{
  font-size: 18px;
}

.spend_time_sec .row{
  padding: 13px 0;
}

.spend_time_sec{
  background-image: url("../images/spend_time_bg.png");
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: top center;
}

.spend_time_sec .profile_button {
  background-image: url("../images/profile_btn_bg.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100% 100%;
}

.spend_time_sec .support_button {
  background-image: url("../images/support_btn_bg.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100% 100%;
}

.spend_time_sec .profile_button a {
  height: 100%;
  padding: 10px 0;
  width: fit-content;
  margin-left: 18%;
}
.spend_time_sec .support_button a {
  height: 100%;
  padding: 10px 0;
  width: fit-content;
  margin-left: 30%;
}

.spend_time_sec span{
  font-size: 12px;
  font-weight: 600;
  color: #ffffffc2;
  margin-top: -6px;
}

.spend_time_sec .spend_time_content h4{
  font-size: 12px;
  font-weight: 400;
  color: #86909F;
}

.spend_time_sec .spend_time_content span{
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.animated_sec_outer .row{
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(90deg, rgba(0, 152, 234, 0) 0%, rgba(0, 152, 234, 0.5) 50%, rgba(0, 152, 234, 0) 100%);
  border-image-slice: 1;
}

.animated_video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.our_app_sec .app_sec_inner{
  background: linear-gradient(157deg,rgba(6, 115, 180, 0.3) 0%, rgba(13, 22, 50, 1) 100%);
  border-radius: 15px;
  border: 2px solid #FFFFFF1A;
}

.our_app_sec .app_sec_inner h2{
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.our_app_sec .app_sec_inner h5{
  font-size: 16px;
  font-weight: 400;
  color: #86909F;
  line-height: 2;
}

.spend_time_sec .time_animated_slice {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: radial-gradient(circle,rgba(6, 115, 180, 0.3) 0%, rgba(13, 22, 50, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
} 

.spend_time_sec .slice_fill {
  height: 100%;
  width: 100%;
}

.our_app_sec {
  padding: 20px 0;
}

.app_sec_inner {
  background: linear-gradient(135deg, #0a2850 0%, #0d3b70 100%);
  border-radius: 15px;
  color: white;
  padding: 25px 20px !important;
}

.app-store-btn, .google-play-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 118px;
  border: none;
  text-align: left;
  width: 100%;
}

.app-store-btn {
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
}

.google-play-btn {
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  transition: all 0.3s ease;
}

.app-store-btn:hover, .google-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  margin-right: 12px;
  font-size: 28px;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-small-text {
  font-size: 10px;
  font-weight: 400;
  margin-bottom: -2px;
}

.btn-large-text {
  font-size: 16px;
  font-weight: 600;
}

.google-play-logo {
  display: flex;
  align-items: center;
}

.google-play-colors {
  display: flex;
  margin-right: 8px;
}

.loader { 
  width:500px; 
  margin:0 auto;
  border-radius:10px;
  border:4px solid transparent;
  position:relative;
  padding:1px;
}

.loader .loaderBar { 
  position:absolute;
  border-radius:10px;
  top: -3px;
  height: 8px;
  right:100%;
  bottom:0;
  left:0;
  background: #075589; 
  width:0;
  animation:borealisBar 2s linear infinite;
}

@keyframes borealisBar {
  0% {
    left:0%;
    right:100%;
    width:0%;
  }
  10% {
    left:0%;
    right:75%;
    width:25%;
  }
  90% {
    right:0%;
    left:75%;
    width:25%;
  }
  100% {
    left:100%;
    right:0%;
    width:0%;
  }
}
.our_app_sec .app_sec_inner.used_internet_data_section {
  background: radial-gradient(67.37% 233.82% at 57.83% -31.54%, rgba(1, 150, 230, 0.5) 0%, rgba(11, 18, 45, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

/* Earn coin css start here  */

.earn_slider_sec .slide .inner_slide_conten_first{
   background-image: url(../images/slide_bg_2.png);
   background-size: cover;
   background-repeat: no-repeat;
   margin: 0 5px;
   border-radius: 10px;
}

.earn_slider_sec .slide .inner_slide_content_second{
  background-image: url(../images/slide2.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 5px;
  border-radius: 10px;
}

.earn_slider_sec .slide .inner_slide_content_third {
  background-image: url(../images/slide1.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 5px;
  border-radius: 10px;
}

.earncoin_sec .earncoin_inner_content .task_banner_img{
  background-image: url(../images/taskimage_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.earn_slider_sec .slide_content h3{
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.earn_slider_sec .slide_content h4{
  font-size: 13px;
  font-weight: 600;
  color: #F3D22C;
}

.earn_slider_sec .slide_content ul li{
  font-size: 9px;
  font-weight: 400;
  color: #ffffff;
  list-style: disc;
}

.earn_slider .slick-slide {
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.earn_slider .slick-center {
  opacity: 2.5;
}

.total_earn_sec .coin-card {
  background-image: url(../images/total_earn_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 20px 30px;
  width: 100%;
}

.total_earn_sec .coin-info {
  flex-grow: 1;
}

.total_earn_sec .coin-label {
  color: #e5e5e5;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 2px;
}

.total_earn_sec .coin-value {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.total_earn_sec .coin-unit {
  color: #01C8FF;
  font-size: 14px;
  font-weight: 400;
}

.earning_analysis_div a {
  font-size: 16px;
  font-weight: 700;
  color: #0098EA;
  transition: all 0.3s ease;
}
.earning_analysis_div a:hover {
  color: #fff;
}
.earning_analysis_div a:hover img {
  filter: brightness(9) grayscale(9) contrast(9);
}
.earning_analysis_div {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
/* task page css start here  */
.task_card_sec .card {
  background: radial-gradient(
    80% 100% at 0% 0%, 
    rgba(1, 150, 230, 0.25) 0%, 
    rgba(11, 18, 45, 0) 80%
  );
  border-radius: 15px;
  padding: 22px 15px;
  max-width: 420px;
  backdrop-filter: blur(30px);
  border: 2px solid #252B44;
  overflow: hidden;
}

.task_card_sec .complete_card {
  border-radius: 15px;
  padding: 22px 15px;
  max-width: 420px;
  backdrop-filter: blur(30px);
  border: 2px solid #252B44;
  overflow: hidden;
  background:
    radial-gradient(
      49.91% 200.79% at 97.33% -2.63%, 
      rgba(1, 230, 70, 0.3) 0%, 
      rgba(11, 18, 45, 0) 100%
    ),
    radial-gradient(
      80% 100% at 0% 0%, 
      rgba(1, 150, 230, 0.25) 0%, 
      rgba(11, 18, 45, 0) 80%
    );
}

.task_card_sec .complete_card .btn-complete{
  color: #00EA4E;
  font-size: 12px;
  font-weight: 400;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(103.18deg, #00832C -1.11%, rgba(0, 74, 25, 0) 128.13%);
  border: 1px solid #00EA4E;
}

.task_card_sec h6{
  font-size: 20px;
}

.task_card_sec .price-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.task_card_sec .small-text {
  color: #aaaaaa;
  font-size: 12px;
  font-weight: 400;
}
.task_card_sec .btn-complete {
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid #0098EA;
  transition: all 0.3s ease;
}

.task_card_sec .btn-complete:hover {
background: radial-gradient(circle,rgba(0, 160, 255, 0.86) 0%, rgb(13, 22, 50) 100%);
}
/* earning analysis css start here  */
.earning_cards_section .earning-card {
  background: radial-gradient(87.34% 132.79% at 97.62% -7.07%, #0196E6 0%, rgba(11, 18, 45, 0) 100%);
  border: 2px solid #142442;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.3s ease;
}
.earning_cards_section .earning-card:hover {
  background: radial-gradient(87.34% 132.79% at 97.62% -7.07%, rgba(11, 18, 45, 0)   0%, #0196e643 100%);
}

.earning_cards_section .card h6{
  font-size: 12px;
  color: #86909F;
  font-weight: 400;
}

.earning_cards_section .card h4{
  font-size: 18px;
  font-weight: 700;
  color: #0098EA;
}

.chart-container {
  border: 2px solid #142442;
  border-radius: 20px;
  background: radial-gradient(
    150% 150% at 100% 0%, 
    rgba(0, 153, 255, 0.25) 0%, 
    rgba(6, 13, 43, 1) 100%
  );
}

.statistics_sec h3{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.statistics_sec .dropdown select{
  border: 1px solid #FFFFFF4D;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  background-color: transparent;
  color: #ffffff;
  filter: brightness(9);
}

.statistics_sec .dropdown select:focus{
box-shadow: none;
outline: none;
}

.statistics_sec .dropdown .dropdown-menu{
  background: radial-gradient(
    150% 150% at 100% 0%, 
    rgba(0, 153, 255, 0.25) 0%, 
    rgba(6, 13, 43, 1) 100%
  );
  border: 1px solid #FFFFFF4D;
}

/* used internet css start here  */
.inernet_used_sec .card{
  background: radial-gradient(
    86px 87px at 100% 0%,
    rgba(0, 153, 255, 0.25) 0%,
    rgba(6, 13, 43, 1) 100%
  );
    border: 2px solid #142442;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.inernet_used_sec .card h3{
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFFC9;
  line-height: 2;
}

.inernet_used_sec .card h4{
  font-size: 25px;
  font-weight: 700;
  color: #0098EA;
  margin-bottom: -7px !important;
}

.inernet_used_sec .card span {
  color: #0098EABF;
  font-size: 12px;
  font-family: 'Proxima Nova Rg';
  margin-top: -5px;
}

.internet_name .internet_details h3{
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFFC9;
}

.internet_name .internet_details h4{
  font-size: 25px;
  font-weight: 700;
  color: #0098EA;
}

.used_internet_content .primary_button {
  max-width: 220px;
}

/* .speed-gauge .main-meter {
  position: relative;
  margin-top: 128px;
}
.speed-gauge #number-display {
  font-size: 6em;
  text-align: center;
}
.speed-gauge .mull {
  position: absolute;
  top: 182px;
  left: 198px;
  z-index: 99;
}
.speed-gauge .center {
  position: absolute;
  top: 168px;
  left: 178px;
  z-index: 100;
} */
.gauge-container {
  position: relative;
  width: 320px;
  height: 320px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto;
}

.tick-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* .tick {
  position: absolute;
  width: 2px;
  height: 12px;
  background: #00f7ff;
  top: 10px;
  left: 50%;
  transform-origin: bottom center;
  opacity: 0.7;
} */

.tick-label {
  position: absolute;
  color: #00f7ff;
  font-size: 0.75rem;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 5px #00f7ff;
}

/* .needle {
  position: absolute;
  width: 4px;
  height: 124px;
  top: 50px;
  left: 50%;
  background:linear-gradient(to top, orange, red);
  transform-origin: bottom center;
  transform: rotate(-102deg);
  border-radius:50px;
  box-shadow: 0 0 10px orange;
  z-index: 3;
} */
.needle {
  position: absolute;
  width: 100%;
  height: 100%;
}
.needle img {
  position: absolute;
  top: 151px;
  left: 164px;
  transform-origin: 1%;
  transform: rotate(-187deg);
  z-index: 3;
}

.center-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background:#09274a;
  border-radius:50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.speed-display {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  background:url(../images/meter_text.png);
  color: #58d6ff;
  font-weight: bold;
  font-size: 18px;
  padding:10px 20px;
  border-radius:10px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 150px;
  height: 45px;
}

.btn-start {
  margin-top: 80px;
}




/* Referral  page css start here  */
.invitation_code_content{
  background: linear-gradient(180deg, rgba(11, 18, 45, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 10px;
  border: 2px solid #142442;
}

.invitation_code_content .invitation_code h3{
  font-size: 16px;
  font-weight: 400;
  color: #86909F;
}

.invitation_code_content .invitation_code h4{
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.referral_social_sec ul li a{
  background: linear-gradient(180deg, rgba(11, 18, 45, 0) 0%, rgba(1, 150, 230, 0.3) 97.97%);
  border: 2px solid #142442;
  border-radius: 100%;
  padding: 10px;
  transition: all 0.3s ease;
  display: block;
}
.referral_social_sec ul li a:hover {
  transform: translateY(-3px);
}
.referral_social_sec .social_header h4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.192) 50%);
  height: 1px;
  width: 42%;
}

.referral_social_sec .social_header h4::after {
  position: absolute;
  content: "";
  right: 0;
  top: 11px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.192) 50%);
  height: 1px;
  width: 42%;
}

.referral_social_sec .social_header h4{
  font-size: 16px;
  font-weight: 400;
  color: #86909F;
}

.sky_blue {
  color: #36CCFF !important;
}
.heading_section p {
  color: #b7b7b7 !important;
}

.used_internet_data_chart {
  height: 225px;
  position: relative;
  margin-top: -3rem;
}
.used_internet_data_chart::after {
  content: "";
  background:url(../images/outer_circle.svg);
  width: 300px;
  height: 153px;
  display: block;
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
  background-position:center 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: 89%;
}
.used_internet_data_chart::before {
  content: "";
  background:url(../images/inner_circle.svg);
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position:center 45px;
  left: 50%;
  transform: translateX(-50%);
  background-size: 70px;
}