/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

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

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #cd2757  ;
}

input:focus + .slider {
  box-shadow: 0 0 1px #cd2757  ;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Range bar css*/

.range-slider {
  width: 100%;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (60px)) !important;
  height: 7px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 2px;
  display:inline !important;
}
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #cd2757;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: #cd2757  ;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #cd2757  ;
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #cd2757;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #177EE5;
}
.range-slider__range:active::-moz-range-thumb {
  background: #cd2757  ;
}

.range-slider__value {
  display: inline-block !important;
  position: relative !important;
  width: 35px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #cd2757;
  padding: 5px 10px;
  margin-left: 8px;
}
.range-slider__value:after {
  position: absolute !important;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #cd2757 ;
  border-bottom: 7px solid transparent;
  content: '';
}

::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}
#wpfooter {
	display:none;
}
.igp_footer_title {
	color:#FFFFFF;
}

.igp_pannel_bottom {
	bottom: 0;
	background: #cd2757;
	margin-top: 10px;
}
.igp_button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 8px 35px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
	    margin-top: 5px;
}

.button_1:hover {
	background-color: #3e8e41
}

.button_1:active {
  background-color: #3e8e41;
  transform: translateY(4px);
}

.button_1 {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	border-radius:5px;
}

/* Upgrade Tab Styles moved from setting.php */
.awp-upgrade-container {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.awp-upgrade-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #cd2757 0%, #e91e63 100%);
    color: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(205, 39, 87, 0.2);
}

.awp-upgrade-hero h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.awp-upgrade-hero p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.awp-offer-badge {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.awp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.awp-feature-card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    background: #fafafa;
}

.awp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #fff;
    border-color: #cd2757;
}

.awp-feature-card .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #cd2757;
    margin-bottom: 15px;
}

.awp-feature-card h3 {
    margin: 15px 0 10px;
    font-size: 1.2em;
    font-weight: 700;
}

.awp-feature-card p {
    font-size: 0.95em;
    color: #666;
}

.awp-comparison-section {
    margin-top: 60px;
}

.awp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.awp-comparison-table th,
.awp-comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.awp-comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.awp-comparison-table .feature-name {
    text-align: left;
    font-weight: 600;
    width: 40%;
}

.awp-comparison-table .free-col {
    background: #fdfdfd;
    width: 30%;
}

.awp-comparison-table .pro-col {
    background: rgba(205, 39, 87, 0.03);
    width: 30%;
    font-weight: bold;
}

.check-icon {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2em;
}

.cross-icon {
    color: #f44336;
    font-weight: bold;
    font-size: 1.2em;
}

.awp-upgrade-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-premium {
    background: #cd2757 !important;
    color: #fff !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(205, 39, 87, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-premium:hover {
    background: #b01b46 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(205, 39, 87, 0.4) !important;
}

.btn-demo {
    background: #333 !important;
    color: #fff !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-demo:hover {
    background: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}