/*
 * jQuery UI Slider 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */

.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 8px;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: -1px;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.slider-container h3 {
	margin:0 0 10px;
	padding:0;
	color:#333;
	font-size:30px;
	line-height:30px;
	font-weight:normal;
}
.slider-container p {
	margin:0;
	padding:0;
}
.sliderbox {
    float: left;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    background: var(--primary-color);
    padding: 48px 65px 50px;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.slider-container #slider {
    margin: 0 auto 28px;
    width: 100%;
    height: 16px;
    padding: 0;
    background: var(--border-color);
    border-radius: 3px;
}
.slider-container #slider .ui-slider-range {
    background: var(--accent);
    border-radius: 3px;
    height: 16px;
}
.slider-container #slider .ui-slider-handle {
    outline: none;
    background: url(../images/handle.png) no-repeat left top;
    border-radius: 0;
    border: 0;
    width: 30px;
    height: 30px;
    margin-top: -3px;
    margin-left: -20px;
    transition: none;
}
.slider-container #slider .ui-slider-handle:hover {
	cursor: pointer;
}
.price_rangetxt {
    width: 100%;
    display: grid;
    grid-template-columns: 5% 5% 5% 5% 5%;
    justify-content: space-between;
}
.price_rangetxt div.icon {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    text-align: center;
}
.slider-outer {
    margin-bottom: 34px;
}
.price_rangetxt div.current {
	color: var(--accent);
}
.price_content .smallbox {
    padding: 28px 30px 25px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.image_holder {
    margin-bottom: 18px;
}
.price_content .heading {
    font-size: 16px;
    line-height: 18px;
    display: block;
    margin-bottom: 10px;
}
.price_content .value {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}
.price_txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#backup_val {
    display: flex;
    align-items: center;
    justify-content: center;
}
.month-title small {
    font-size: 20px;
    line-height: 24px;
    display: block;
    color: var(--accent);
}
.price_txt .numeric1,
.price_txt .dollar,
.price_txt .numeric2{
    color: var(--accent);
    line-height: 32px;
    font-size: 32px;
    font-weight: 600;
}
.vps-total-price {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}
.vps_btn.generic-btn a {
    padding: 10px 20px;
    width: 168px;
    border-radius: 30px;
    background: var(--accent);
    height: 50px;
}
.vps_btn.generic-btn a:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.product-con {
    display: grid;
    gap: 20px;
    grid-template-columns: 18.37% 18.37% 18.37% 18.37% 18.37%;
    margin-bottom: 30px;
}
.price_txt > span {
    font-weight: 400;
    margin-bottom: 2px;
}
.price_content .generic-btn{
    text-align: center;
}