/*form styles*/

.form_section{
	padding-top: 120px;
    padding-bottom: 150px;
}

.general_form {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.general_form{
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    box-sizing: border-box;
    margin: auto;
	min-height: 500px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
.tab {
    display: none;
	min-height:300px;
}

/*inputs*/
.general_form input[type="checkbox"], .general_form textarea{
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
	float: right;
}

.general_form input[type="checkbox"]:focus, .general_form textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

.sb-form-body{
	padding-bottom: 50px;
}

/*buttons*/
.sb_label_style{
	color: #55555569;
	padding: 2px;
	float: left;
	
}

.sb_form_checkbox{
	height:35px;
}

.sb_form_checkbox input[type="checkbox"] {
	z-index: -1;
}

.sb_form_checkbox input[type="checkbox"]:checked+label {
	color: #555555;
	border: 1px solid #ff6a00;
	padding: 2px;
	border-radius: 5px;
}



.action-button {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.action-button:hover, .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

.action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.action-button-previous:hover, .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.lsheader {
    background-color: rgb(255 118 118);
    color: rgba(255, 255, 255, 1);
    border-radius: 0;
    border-top-color: rgb(255 118 118);
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 10px;
}

.form-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.form-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#listing_progressbar{
	margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
	text-align: center;
	padding: 5px 0px;
}

#progressbar li {
    list-style-type: none;
    color: #555;
    text-transform: uppercase;
    font-size: 10px;
	font-weight: bold;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#listing_progressbar li {
    list-style-type: none;
    color: #555;
    text-transform: uppercase;
    font-size: 10px;
	font-weight: bold;
    width: 25%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before, #listing_progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after, #listing_progressbar li:after{
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after, #listing_progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after, #listing_progressbar li.active:before, #listing_progressbar li.active:after {
    background: #ee0979;
    color: white;
}

/*Error Messages*/
.form_error{
    background-color: #F3EBEB;
    margin-top: 90px;
}

.form_error>label{
    display: block;
    text-align: center;
}

/*form button style*/
.invalid {
    border-color: rgba(255, 26, 26, 0.6);
}

label.error {
    font-weight: 700;
    color: rgba(255, 26, 26, 0.6);
    font-family: "Trebuchet MS"
}

input.error, textarea.error, select.error {
    border-color: rgba(255, 26, 26, 0.6);
}

.form_bottom_step_sty {
    background-color: rgba(255, 26, 26, 0.6);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}
.form_bottom_step_sty:hover {
    opacity: .8;
}

.form_sub {
    background-color: rgba(255, 26, 26, 0.6);
    color: #fff;
    border-color: transparent;
    min-width: 80px;
}
/*form input stlye*/

.sstyle {
    margin-bottom: 10px;
}

.inputstyle_up {
    background-color: transparent;
    border-color: rgba(111, 111, 111, 0.3);
    border-radius: 0;
    color: rgba(111, 111, 111, 0.7);
}

.sb_input_width{
	width: 50%;
	margin-left:auto;
	margin-right: auto;
}

@media screen and (max-width: 767px) {
	#request-form{
		padding: 20px 10px;
	}
	#progressbar{
		padding: 0px;
	}
	.sb_input_width{
		width:100%
	}
}
/*...................................*/
/*listing*/
/*size option modal*/
.general_tags_btn{
    border-radius: 0;
	background-color:white;
	height:35px;	
}

.general_tags_box{
	border: 1px solid #ccc;
    position: relative;
    text-align: center;
	background: white;
	min-height: 33px;
}

.general_small_tags_input{
	float:left !important;
	padding:0px !important;
	background-color: transparent;
    margin: 2px;
    border-radius: 0 !important;
    border: 1px solid rgba(111, 111, 111, 0.3)!important;
    display: inline-block;
    text-align: center;
    font-size: 9px !important;
    pointer-events: none;
    position: relative;
	max-width: 30px;	
}

 .pl_p_label>label{
    width: 120px;
    text-align: left;
    margin: 5px 15px 10px 5px;
    color: rgba(51, 51, 51, 0.68);
}

.pl_p_size_label{
    display: inline-block;
    font-size: 12px;
}

.pl_p_size_label>label{
    text-align: left;
    color: rgba(111, 111, 111, 0.7);
    margin-left: 5px;
    margin-right: 5px;
    font-weight: none;
}

.pl_p_size_label>input, .pl_p_size_label>option {
    background-color: transparent;
    color: rgba(111, 111, 111, 0.7);
    margin: 2px;
    border-radius: 0;
    border: 1px solid rgba(111, 111, 111, 0.3);
    display: inline-block;
}

/**product page e,p,s**/
.p_category{
	color: #cecece;
    padding: 0px 15px;
	font-size: 12px;
}

.p_title{
	padding-left:15px;
	padding-right: 15px;
	font-size: 16px;
	height: auto !important;
}

.p_g_frame {
    margin-top: 80px;
    margin-bottom: 40px;
}

.p_g_row {
	padding-right: 0;
	padding-left: 0;
	margin: 10px 30px 30px;
	padding-bottom: 10px;
}

.p_g_border{
    border: 1px solid #d0cece;
    background-color: #fff;
}

.p_gallery {
    padding: 0!important;
}

.p_image{
    border: none!important;
    padding: 0!important;
    margin: 0!important;
}

.listed_by {
    color: rgba(0, 0, 255, 0.72);
    font-size: 10px;
}

.p_preview_image{
	width:100%;
	border:1px black solid;
}

.p_reviewer_icon {
    height: 50px;
    width: 50px;
	border: 1px solid grey;
}

.p_reviewer_img {
    text-align: center;
    margin-top: -25px;
}

@media screen and (max-width: 1160px) {
	.p_reviewer_img {
		margin-top: -25px!important;
	}
	.p_reviewer_icon {
		height: 50px!important;
		width: 50px!important;
	}
}

@media screen and (max-width: 736px) and (min-width: 600px) and (orientation:landscape) {
    .p_reviewer_img {
		margin-top: -25px!important;
	}
	.p_reviewer_icon{
		height: 50px!important;
		width: 50px!important;
	}
}

.h_half, .h_half_hidden {
    height: 0;
    border-width: 1px;
    border-color: rgba(202, 202, 206, 0.5);
    margin: 5px 0;
    width: 100%

}

.h_half_hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .h_half_hidden {
		display: block;
	}
	.p_g_row{
		margin: 10px 10px 30px;
	}
	.p_container{
		padding-left: 0px;
		padding-right: 0px;
	}
	.p_action_btn{
		margin-top: 20px;
	}
}

.p_inner_info_s {
    height: 270px;
}

@media screen and (max-width: 800px) {
	.p_inner_info_s {
		height: 430px;
	}
}

.p_info {
    color: grey;
    text-align: left;
    word-wrap: break-word;
    padding: 5px 15px 0;
    min-height: 100px;
}

.p_details_s{
	word-wrap: break-word;
    display: block;
    padding: 2px;
    color: #999;
    font-size: 11px;
}

.p_action_btn {
    float: right!important;
    padding: 10px 25px;
    background-color: rgba(255, 26, 26, 0.6);
    color: #fff;
    font-weight: 700;
    border: none!important;
}

.p_btn_group{
    margin: 15px 0;
}

@media screen and (max-width: 360px) {
	.p_btn_group {
		float: none;
	}
}

.p_table_style{
	font-size: 11px;
	color: #999;
	text-align: center;
	margin-top: 20px;
}

.p_table_style th, .p_table_style td{
	border: 1px solid #ccc;
	border-collapse: collapse;
	padding: 5px 10px;
}

/**summary**/
.sum_card{
	height: 300px;
}

.sum_title{
	color: #15c7c7;
}

.sum_color{
	color:#cdcdcd;
}

.sum_font_style{
	font-size: 11px;
}

.sum_content{
	padding: 25px 15px 15px;
	text-align: left;
    background-color: #fff;
}

.sum_content_height{
	height: 300px;
}