.section-title {
    text-align: initial;
}
.cart-summary{
    display: flex;
    flex-flow: column;
    width: 100%;
}
.cart-summary .details-row{
    display: flex;
    margin-bottom: 1em;
    border-bottom: 1px solid #c5c5c9;
    padding-bottom: 1em;
}
.cart-summary .details-row:first-child,
.cart-summary .details-row:last-child{
    border: 0;
    margin: 0;
    padding-bottom: .5em;
}
.cart-summary .details-title{
    font-size: 15px;
    min-width: 120px;
    flex: 2;
}
.cart-summary .details-info{
    font-size: 15px;
    font-weight: bold;
    display: flex;
    flex-flow: row wrap;
    flex: 1.3;
}
.buyer-details{
    display: flex;
    flex-flow: column;
    width: 100%;
}
.buyer-details .details-row{
    display: flex;
    margin: 1em 0;
}
.buyer-details .details-title{
    font-size: 15px;
    width: 220px;
}
.buyer-details .details-info{
    font-size: 15px;
    font-weight: bold;
    flex: 1;
    display: flex;
    flex-flow: row wrap;
}
.buyer-details .details-info .note{
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    font-weight: normal;
}
.buyer-details .details-info .note.small{
	font-size:13px
}
.buyer-details .details-info .note.orange{
    color: #fe6b01;
    background: transparent;
}
.cart-item{
    display: flex;
    flex-flow: row;
    width: 100%;
}
.cart-item:not(:last-child){
    border-bottom: 1px solid #c5c5c9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.cart-item .cart-item-image{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c5c5c9;
    margin-right: 30px;
    padding: 20px;
    width: 170px;
    height: 170px;
}
.cart-item .cart-item-image img{
    max-width: 100%;
    max-height: 100%;
}
.cart-item .cart-item-details{
    flex: 4;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    align-content: flex-start;
    position: relative;
}
.cart-item .cart-item-row{
	display: flex;
	width: 100%;
    flex-flow: row wrap;
}
.cart-item .cart-item-title{
    font-size: 18px;
    border-bottom: 1px solid #c5c5c9;
    padding-bottom: 10px;
    margin-bottom: 15px;
    width: 100%;
    color: #171725;
    display: flex;
}
.cart-item .cart-item-price{
    color: #1180b0;
    font-size: 18px;
    margin-right: 30px;
}
.cart-item .cart-item-quantity{
    display: inline-flex;
    align-items: center;
}
.cart-item .cart-item-quantity .spinner-input{
    width: 60px;
    text-align: center;
    border: 1px solid #c5c5c9;
    margin: 0 3px;
    height: 28px;
    line-height: 28px;
}
.cart-item .cart-item-increment{
    width: 28px;
    border: 1px solid #c5c5c9;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
}
.cart-item .cart-item-increment i{}
.cart-item .cart-item-decrement{
    width: 28px;
    border: 1px solid #c5c5c9;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
}
.cart-item .cart-item-decrement i{}
.cart-item .cart-item-total-price{
    margin-left: auto;
    font-size: 18px;
}
.cart-item .cart-item-btns{
    display: flex;
    align-items: center;
}
.cart-item .cart-item-btn{
    color: #171725;
    display: inline-flex;
    align-items: center;
    padding: 1px 10px 1px 0;
    font-size: 12px;
}
.cart-item .cart-item-btn:hover{
	color:#fe6b01;
}
.cart-item .cart-item-btn:last-child{
	padding:0;
}
.cart-item .cart-item-btn:first-child{
    border-right: 1px solid #fe6b01;
    margin-right: 10px;
}
.cart-item .cart-item-btn i{
    color: #fe6b01;
    font-size: 17px;
    margin-right: 5px;
}
.cart-item .cart-item-seller{
    display: flex;
    justify-content: flex-end;
    margin-right: auto;
}
.cart-item .cart-item-seller-info{
    font-weight: bold;
    margin-left: 10px;
    color: #1180b0;
}
.card-footer{
    background: #edeeef;
    padding: 20px;
    font-size: 18px;
    text-align: right;
}
.cart-total-price span{
	font-weight:bold
}
.timeline{
    display: flex;
    flex-flow: column;
    min-width: 200px;
    font-weight: normal;
    flex: 1;
    margin-right: 15px;
}
.timeline .timeline-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.timeline .timeline-section:nth-child(2){
    margin: 7px 20px;
}
.timeline .timeline-section:last-child{
    margin: 0 17px;
}
.timeline .timeline-title{}
.dot{
    width: 15px;
    height: 15px;
    display: inline-flex;
    border-radius: 50%;
}
.line{height: 3px;flex: 1;margin: 0 10px;}
.grey{
    background: #c5c6ca;
}
.receive-date{
    /* background: #f6f6f7; */
    font-weight: normal;
    /* color: #1180b0; */
    padding: 15px;
    width: 210px;
}
.receive-date span{
    font-weight: bold;
}
.custom-modal .form-control.social-login-container{
    padding: 15px 0;
    border: 1px solid #c5c5c9;
    border-width: 1px 0px;
    align-items: center!important;
	flex-flow: row!important;
}
.social-login-btn{
    background: #1180b0;
    margin: 0 6px;
    width: 36px;
    height: 36px;
    color: white;
    text-align: center;
    font-size: 18px;
    line-height: 36px;
    border-radius: 50%;
	transition:all .3s ease-in-out;
	cursor:pointer
}
.social-login-btn:hover{
    border: 1px solid #1180b0;
    color: #1180b0;
    background: white;
    transform: scale(1.2);
}
.social-login-btn i{}
#register-message{
    padding: 20px;
    border: 1px solid #ccc;
    margin: 30px 0;
    text-align: center;
    border-radius: 5px;
}
#register-message h3{
    margin-bottom: 20px;
    text-align: initial;
    line-height: 1.5;
}
#register-message h5{
    margin-bottom: 20px;
    text-align: initial;
    line-height: 1.5;
}
#register-message a{
    text-align: center;
    width: 100%;
}
#forgot-password {
    color: #1180b0;
    font-family: Inter,'poppins';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    letter-spacing: 0.1px;
}
.button_log {
    background-color: #1180b0;
    color: #fff;
    height: 50px;
    width: 100%;
    margin: 0;
    border-radius: 4px !important;
    letter-spacing: 2px;
    margin-top: 24px;
    font-family: Inter,'poppins';
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}
.form-group {
    margin-bottom: 24px;
}
.checkbox-success label ,
.form-group label {
    font-family: Inter,'poppins';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #171725;
}
.input-group {
    position: relative;
    display: inline-block;
    border-collapse: separate;
    width: 100%;
}
.input-img {
    position: absolute;
    z-index: 13;
    left: 14px;
    top: 11px;
}
.input-group .form-control{
    width: 100%;
    display: inline-block;
    font-size: 14px;
    height: 46px;
    border-radius: 6px;
    border:1px solid #E2E2EA!important;
    color: #92929D;
    padding: 12px;
}
.logingregiser {
    display: inline-block;
    width: 100%;
    padding-top: 24px;
}

.checkboxxx {
    display: inline-block;
    float: left;
}

.checkboxxx > input[type="checkbox"] {
    display: none;
}

.checkboxxx > input[type="checkbox"] + label {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    cursor: pointer;
    content: "";
    padding: 0;
    background-color: #fff;
    border-radius: 3px;
    margin: 4px 0 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.checkboxxx > input[type="checkbox"]:checked + label {
    background: #3DD598;
    border-color: #3DD598;
    color: #fff;
    font-size: 10px;
}

.checkboxxx > input[type="checkbox"]:checked + label:before {
    content: "\f00c";
}
.checkbox-success > div > label {
    padding-left: 8px;
    letter-spacing: 0.1px;
    margin: 0;
}
.no_accout_regids {
    font-family: Inter,'poppins';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #171725;
    text-align: center;
    margin-top: 10px;
}
.no_accout_regids a {
    color: #1180b0;
}
.hidden{
	display:none
}
.round-steps{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    align-items: center;
}
.round-steps .round-step{
    background: #ccc;
    color: white;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    position: relative;
    text-transform: capitalize;
}
.round-steps .round-step:before{
	content:'';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1.5);
	width: 135px;
	height: 135px;
	background: transparent;
	border: 7px solid transparent;
	border-radius: 50%;
	transition: all .3s ease-in-out;
}
.round-steps .round-step.active{
    background: #FF974A;
}
.round-steps .round-step.active:before{
    border-color: white;
    transform: translate(-50%, -50%);
}
.round-steps .step-border{
    height: 3px;
    width: 30%;
    background: #ccc;
    margin: 0 20px;
    border-radius: 30px;
    min-width: 200px;
}
@media(max-width:768px){
	.round-steps{
		flex-flow: column;
	}
	.round-steps .step-border{
		width: 3px;
		height: 70px;
		min-width: auto;
		margin: 20px 0;
	}
	.cart-item .cart-item-quantity{
		margin: 0 0 10px;
		width: 100%;
		justify-content: center;
	}
	.cart-item .cart-item-seller{
		flex-flow: column;
		margin: 10px 0;
	}
	.cart-item .cart-item-seller-info{
		margin:0
	}
	.cart-item{
		flex-flow: row wrap;
	}
	.cart-item .cart-item-image{
		width: 100%;
		height: 100px;
		margin-right: 0;
		padding: 5px;
	}
	.cart-item .cart-item-title{
		font-size: 20px;
	}
	.cart-item .cart-item-details{
		flex: auto;
		width: 100%;
		margin-top: 20px;
	}
	.cart-item .cart-item-price{
		margin-right: 10px;
	}
	.buyer-details .details-row{
		flex-flow: row wrap;
	}
	.buyer-details .details-title{
		width: 100%;
	}
	.buyer-details .details-info{
		width: 100%;
		margin-top: 15px;
	}
	.timeline{
		margin: 0;
	}
	.receive-date{
		width: 100%;
		margin-top: 20px;
		text-align: center;
	}
}
