/*****************************************************************
1.  Homepage
******************************************************************/

/*==============================
    Default Style
==============================*/
:root{
	--primary: #1d77ca;
	--secondary: #1e1e1e;
	--orange: #f40;
	--blue-dark: #042c48;
	--body-text-color: #343434;
	--white: #ffffff;
	--black: #000000;
    --gray-color: #e3e3e3;

	--heading-1: 54px;
	--heading-2: 44px;
	--heading-3: 30px;
	--heading-4: 26px;
	--heading-5: 22px;
	--heading-6: 18px;

	--font-18:18px;

	--fw-300: 300;
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
	--fw-800: 800;

	--body-font-size: 16px;
	--font-poppins: "Poppins", sans-serif;
	--radius-5: 5px;
	--radius-10: 10px;
	--radius-20: 20px;
	--radius-40: 40px;
	--ease-transition: all 0.3s ease-in-out;
}
/*==============================
    Typography Styles
==============================*/
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body{
	margin: 0;
    font-family: var(--font-poppins);
    font-size: var(--body-font-size);
    font-weight: var(--fw-400);
    line-height: 21px;
    color: var(--body-text-color);
}
a{	
    text-decoration: none;
	transition: var(--ease-transition);
	color: var(--primary);
}
h1, h2, h3, h4, h5, h6{
	color: var(--secondary);
}
h1{
	font-size: var(--heading-1);
	line-height: 64px;
	font-weight: var(--fw-800);
}
h2{
	font-size: var(--heading-2);
	line-height: 54px;
	font-weight: var(--fw-800);
}
h3{
	font-size: var(--heading-3);
	line-height: 36px;
	font-weight: var(--fw-700);
}
h4{
	font-size: var(--heading-4);
	line-height: 30px;
	font-weight: var(--fw-700);
}
h5{
	font-size: var(--heading-5);
	line-height: 28px;
	font-weight: var(--fw-500);
}
h6{
	font-size: var(--heading-6);
	line-height: 22px;
	font-weight: var(--fw-500);
}
p{
	font-size: var(--body-font-size);
	line-height: 28px;
}
ul{
    padding: 0;
    margin: 0;
}
img{
	vertical-align: middle;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea{
    font-size: var(--body-font-size);
    padding: 10px 16px;
    width: 100%;
    color: var(--black);
    font-family: var(--font-poppins);
    border: 1px solid var(--gray-color);
	min-height: 48px;
	border-radius: var(--radius-5);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
/*==============================
    Global Elements CSS
==============================*/
.mb-0{
	margin-bottom: 0 !important;
}
.mt-40{
	margin-top: 40px !important;
}
.text-center{
	text-align: center;
}
.default-btn{
	background-color: var(--orange);
	color: var(--white);
	border: none;
	padding: 14px 20px;
    min-width: 120px;
    font-size: 16px;
	line-height: 20px;
	border-radius: var(--radius-5);
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-poppins);
	transition: all 350ms ease-in-out;
}
.default-btn:hover{
	background-color: var(--blue-dark);
}
.container{
	max-width: 1100px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	width: 100%;
}
.form-label{
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}
.form-group{
	margin-bottom: 20px;
}
/*==============================
    1.1 Header Section
==============================*/
.header{
	text-align: center;
	padding: 10px 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.header img{
	height: 80px;
    width: auto;
}
/*==============================
    1.2 Footer Section
==============================*/
.footer{
	text-align: center;
	border-top: 1px solid #eee;
	padding: 15px;
	background-color: var(--primary);
}
.footer p,
.footer p>a{
	margin: 0;
	color: var(--white);
}
.footer p>a{
	text-decoration: underline;
}
/*==============================
    1.3 Middle Section
==============================*/
.middle-block{
	min-height: calc(100vh - 159px);
	padding: 50px 15px;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	flex-direction: column;
	-webkit-flex-direction: column;
}
.middle-box{
	background-color: #f5f7f9;
	border-radius: 10px;
	padding: 30px;
	max-width: 100%;
}
.middle-box h6{
	margin: 0 0 10px;
}
.first_block,
.third_block{
	display: flex;
	display: -webkit-flex;
	gap: 30px;
}
.left_block,
.right_block{
	background-color: #fff;
    padding: 20px;
    border-radius: 5px;
	flex: 0 0 calc(50% - 15px);
	-webkit-flex: 0 0 calc(50% - 15px);
}
.block_btn{
	background-color: #f5f7f9;
	border: 1px dashed #677aab;
    border-radius: 5px;
	height: 200px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	color: var(--secondary);
}
.error {
    font-size: 12px;
    color: red;
}
.inner_block{
	width: 360px;
	background-color: #fff;
    padding: 30px 20px;
    border-radius: 5px;
	margin: 0 auto;
	text-align: center;
	box-shadow: rgb(0 0 0 / 11%) 0px 5px 15px;
}

.capture_screen{
	width: 300px;
	min-height: 200px;
	background-color: #f5f7f9;
	border: 1px dashed #677aab;
    border-radius: 5px;
	margin: 0 auto 25px;
}


.capture_screen_image img{
	border-radius: 5px;
	margin: 0 auto 25px;
	background-color: #f5f7f9;
	border: 1px dashed #677aab;
	object-fit: cover;
}

.camera_screen video{
	background-color: #f5f7f9;
	border: 1px dashed #677aab;
	margin-bottom: 15px;
}

.camera_screen_wrap{
	width: 300px;
	min-height: 200px;
	background-color: #f5f7f9;
	border: 1px dashed #677aab;
    border-radius: 5px;
	margin: 0 auto 25px;
}

.package_html_wrapper{
	border-radius: 10px;
    padding: 30px;
	background-color: #ffffff;
	margin-top: 30px;
}

.enterance_right_top {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 12px;
    margin-bottom: 14px;
}
.enterance_right_top>h4, .validity-top>h4 {
    font-size: 18px !important;
	margin: 0;
	text-transform: capitalize;
}

.enterance_right_top>p {
    color: #4f4f4f;
	margin: 0;
}

.enterance_right_top, .validity-top {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    gap: 6px;
}

.enterance_right_top {
    margin-bottom: 20px;
}

.enterance_right_vali .vali_list ul {
    padding-left: 20px;
    margin-bottom: 10px;
}	

.enterance_right_vali .validity-top {
    margin-bottom: 10px;
}

.enterance_right_vali input.form-control {
    margin: 10px 0 15px;
}

.val_inval {
    color: #fff;
    border-radius: 5px;
    padding: 4px 8px;
    line-height: 16px;
	background-color: rgb(1, 199, 106);
}

.vali_list ul {
    padding-left: 20px;
    margin-top: 5px;
}

.loader{
	overflow: hidden;
}

.loader .loader_wrapper {
    width: 100%;
    height: 100%;
    background: #4c4c4cc7;
    position: fixed;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}


.loader .loader_view {
	border: 5px solid #f3f3f3; /* Light grey */
	border-top: 5px solid #f40; /* Blue */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
}
.name_and_mobile{text-transform: capitalize;}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.code_hide_on_python{display: block;}
.subscriber_name h6 {
    margin: 0;
}
.name_and_mobile{
	display: block !important;
}
.name_and_mobile .subscriber_name, .name_and_mobile .subscriber_mobile{
	display: none;
}

.subscriber_mobile p {
    margin: 0;
}

.enterance_right_panel .validity-top h4 {
    font-size: 14px !important;
    font-weight: 500;
    line-height: normal;
}

.package_details{
	position: relative;
}

.backbtn-wrap {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, -20px);
}

.package_details .package_html_wrapper {
    padding-bottom: 80px;
}	

.backbtn-wrap .default-btn {
    padding: 10px 15px;
}

.package_details .package_html_wrapper h4.main-title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 700;
}
.camera_show_area{
    width: 300px;
    height: 226px;
}
.enterance_right_panel .validity-top h4 {
    font-size: 14px !important;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap: 50px;
    align-items: center;
}

.camera_image {
    position: relative;
}

.enterance_right_vali .validity-top p {
    margin: 0;
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
}
.subscriber_name_value{
	text-transform: capitalize;
}
.enterance_right_vali .vali_list ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.enterance_right_vali .validity-top .vali_list ul li {
    font-size: 14px;
}


.yesicon {
    position: absolute;
    top: 0;
    height: 82%;
    background-color: #fbfbfb3d;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package_details .package_html .name_and_mobile{
    display: none !important;
}
.package_details .package_html .code_hide_on_python .validity-top h4{
    gap: 10px;
    font-weight: 600;
}
.package_details .package_html .code_hide_on_python .validity-top h4 span{
    font-weight: 400;
    font-size: 13px;
}
.package_details .package_html .code_hide_on_python .validity-top h4 + .left_classess{
    color: #f40;
    font-size: 13px;
}
.package_details .package_html .code_hide_on_python .vali_list ul li,
.package_details .package_html .code_hide_on_python .validity-top h4 + span:not(.left_classess){
    font-size: 13px;
}

@media screen and (max-width: 767px){

	.left_block, .right_block{
		-webkit-flex: 100%;
	}
	.capture_screen_image img,
	.camera_screen video{
		width: 100%;
	}

	.first_block, .third_block{
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	}
	.camera_screen video{
		height: 100%;
	}
	.camera_screen_wrap,.inner_block{
		width: 100%;
	}

	.camera_screen_wrap img{
		width: 100%;
	}

	.middle-box{
		padding: 10px;
	}
	.inner_block{
		padding: 20px 15px;
	}

	.camera_screen_wrap{
		min-height: 150px;
	}
	.package_html_wrapper{
		padding: 15px;
	}
	.enterance_right_top>h4, .validity-top>h4{
		font-size: 16px !important;
	}
	.enterance_right_top>p{
		font-size: 14px;
	}
	.enterance_right_vali input.form-control {
		font-size: 13px;
		padding: 0 10px;
	}
}

@media screen and (max-width: 575px){
    .camera_show_area{
        width: 100%;
        height: auto;
    }
}