/* Sell stepper CSS */

/* Fontawesome */

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);

@font-face {
    font-family: 'ltuniversbold';
    src: url('../fonts/samsunglogo-webfont.woff2') format('woff2'),
        url('../fonts/samsunglogo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'huawei_logoregular';
    src: url('../fonts/huaweilogo-webfont.woff2') format('woff2'),
        url('../fonts/huaweilogo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'iphone_logoregular';
    src: url('../fonts/iphonelogo-webfont.woff2') format('woff2'),
        url('../fonts/iphonelogo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

[class*="fa-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

/* Progress Tracker */

.step-tracker {
    text-align: center;
}

.progress-tracker {
    counter-reset: steps;
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 30px 0 30px 12px;
    text-align: left;
}

.progress-tracker li {
    border-bottom: solid 4px #aaa;
    counter-increment: steps;
    display: inline-block;
    position: relative;
    width: 8em;
    line-height: 15px;
    margin-right: -0.375em;
	-webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}

.progress-tracker li:last-child {
    border-bottom: none;
    width: 35px;
}

.progress-tracker li:after {
    background: #aaa;
    border: solid 4px transparent;
    border-radius: 50%;
    color: #fff;
    content: counter(steps);
    font-weight: bold;
    display: block;
    position: absolute;
    text-align: center;
    width: 2em;
    height: 2em;
    bottom: -1.1em;
    line-height: 2em;
    left: -4px;
	-webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
	transition-delay: .5s;
}

.progress-tracker li span {
    display: inline-block;
    color: #7f7f7f;
    position: relative;
    text-align: center;
    width: 8em;
    left: -33px;
    top: -1.75em;
    font-size: 0.75em;
    font-weight: bold;
    overflow: hidden;
}

.progress-tracker li.completed {
    border-bottom-color: #303F9F;
}

.progress-tracker li.completed:after {
    background: #303F9F;
}


.progress-tracker li.current:after {
    background: #fff;
    border-color: #303F9F;
}

.progress-tracker.icon li:after {
    content: "";
    font-family: 'FontAwesome';
}

.progress-tracker.icon li.completed:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    line-height: 1.5em;
}

.progress-value {
    color: cadetblue !important;
}

.progress-title {
    color: #303F9F !important;
    text-transform: capitalize;
}

/* Hide Steps */

.sell-model-step,
.sell-color-step,
.sell-capacity-step,
.sell-status-step,
.sell-accessories-step,
.sell-pricing-step,
.sell-modal-loader {
    display: none;
}

/* General CSS Rules */

.sell-div {
    margin-top: 100px;
    min-height: 500px;
	background: #f5f6ff;
	-webkit-box-shadow: 0px 0px 20px 20px #f5f6ff;
	-moz-box-shadow: 0px 0px 20px 20px #f5f6ff;
    box-shadow: 0px 0px 20px 20px #f5f6ff;
}

.stepper-title {
    text-align: center;
	padding: 20px;
}

.sell-buttons {
    padding-bottom: 50px;
    padding-top: 50px;
    justify-content: center;
    display: flex;
    text-align: center;
	align-items: center;
	tansitions: none !important;
}

.sell-prev {
    background: #90a4ae;
    color: #fff;
    text-align: center;
	line-height: 35px;
    width: 100px;
    margin: 0 15px;
    height: 35px;
    border-radius: 20px;
    cursor: pointer;
}

.sell-prev:hover {
    background: #e8eaf6;
    color: black;
}

.sell-next {
    background: #303F9F;
    color: #fff;
    text-align: center;
    width: 100px;
    margin: 0 15px;
    height: 35px;
	line-height: 33px;
    border-radius: 20px;
    cursor: pointer;
}

.sell-next:hover {
    background: #e8eaf6;
    color: rgba(72, 44, 191, 1);
}

.btn-text {
	margin-top: -4px;
}

.sell-accessory-next {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  display: flex;
    align-items: center;
    justify-content: center;
	transition: none;
}

.sell-accessory-next:hover, 
.sell-accessory-next:focus {
	background: #303f9f !important;
}

.sell-loader {
  display: flex;
  gap: 4px;
  position: absolute;
  visibility: hidden;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  40% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* Brand Step */

.sell-brand {
    margin: 40px 0;
    justify-content: center;
    display: flex;
	padding-bottom: 50px;
}

.sell-brand div {
    position: relative;
    text-align: center;
    cursor: pointer;
    height: 350px;
    width: 200px;
    margin: 15px;
    border-radius: 30px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    background: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.sell-brand div:hover {
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.sell-brand img {
    position: absolute;
    display: block;
    padding: 0 15%;
    margin: 100px auto 0;
    max-height: 80px;
    width: 100%;
}

.sell-brand svg {
    position: absolute;
    display: block;
    padding: 0 15%;
    margin: 100px auto 0;
    max-height: 80px;
    width: 100%;
}

.smsg-chusr svg {
	margin-top: 120px;
}

.sell-brand div:nth-child(1) img {
    padding-top: 15px;
}

.samsung-logo {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
    color: #000;
    bottom: 40px;
}

.iphone-logo {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
	font-weight: 600;
    color: #000;
    bottom: 40px;
}

.huawei-logo {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
    color: #000;
    bottom: 40px;
}

/* Model Step */

.sell-models {
    justify-content: center;
    display: flex;
}

.samsung-models,
.huawei-models,
.iphone-models {
    display: none;
}

.sell-model {
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    max-width: 800px;
}

.sell-model p {
    cursor: pointer;
    color: #fff;
    width: 200px;
    height: 50px;
    margin: 10px;
    line-height: 50px;
    text-align: center;
    border-radius: 30px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    background: #303f9f;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);*/
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.sell-model p:hover {
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* Color Step */

.sell-color-container {
    justify-content: center;
    display: flex;
}

.sell-colors {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    max-width: 800px;
}

.color-item * {
    cursor: pointer;
    text-align: center;
    display: block;
}

.color-img {
    width: 100px;
    margin: 20px;
}

.color-name {
    text-transform: capitalize;
}

/* Capacity Step */

.sell-capacity-container {
    justify-content: center;
    display: flex;
}

.sell-capacities {
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    max-width: 800px;
}

.sell-capacities p {
    cursor: pointer;
    color: #fff;
    width: 200px;
    height: 50px;
    margin: 20px;
    line-height: 50px;
    text-align: center;
    border-radius: 30px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    background: #303f9f;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);*/
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.sell-capacities p:hover {
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* Status Step */

.status-cards-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.status-cards {
    max-width: 950px;
    margin: 40px 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap
}

.status-cards div {
    display: block;
    cursor: pointer;
    color: #fff;
    padding: 5px;
    width: 280px;
    margin: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);*/
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.status-cards div:hover {
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.status-card-title {
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.status-card-description {
    padding: 10px;
    text-align: center;
    width: 100%;
}

/* Accessories Step */

.accessory-text {
    margin: 70px 0 20px;
    font-style: italic;
    text-align: center;
}

.sell-accessories {
    justify-content: center;
    display: flex;
    margin-bottom: 50px;
}

.sell-accessories p {
    cursor: pointer;
    color: #fff;
    width: 200px;
    height: 50px;
    margin: 20px;
    line-height: 50px;
    text-align: center;
    border-radius: 30px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);*/
    -webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.sell-accessories p.selected-accessory {
    color: #000;
	background: #fff;
    border: 4px solid #303F9F;
	line-height: 42px;
}

.accbox {
	position: relative;
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.checked-circle {
	display: none;
	position: absolute;
	top: 8px;
	right: 12px;
	background: #fff;
	width: 30px;
	height: 30px;
	border: 5px solid #303F9F;
	margin: 5px;
	border-radius: 50%;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.checked-circle:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 16px;
	background-color: #303F9F;
	left: 9px;
	top: 1px;
}

.checked-circle:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 5px;
	background-color: #303F9F;
	left: 4px;
	top: 12px;
}

.amount-fetcher {
    display: none;
}

/* Pricing Step */

.sell-pricing {
    text-align: center;
    margin: 80px 0 30px;
}

.sell-pricing div {
    margin: 15px 0;
}

.sell-payment-price .pricing-currency {
    color: #4CAF50;
    font-size: 20px;
}

.sell-payment-price .pricing-amount {
    color: #4CAF50;
    font-size: 50px;
}

.sell-payment-price .pricing-description {
    margin-bottom: 30px;
}

.pricing-currency {
    color: #E91E63;
    font-size: 20px;
    font-weight: 400;
}

.pricing-amount {
    color: #E91E63;
    font-size: 40px;
    font-weight: 400;
}

.sale-confirm {
    background: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 0 30px;
    margin: 0 15px;
    height: 35px;
	line-height: 33px;
    border-radius: 20px;
    cursor: pointer;
}

.sale-confirm:hover {
    background: #e8eaf6;
    color: #4CAF50;
}

.mail-send {
    display: none;
}

.sf-payment-methods {
	margin-top: 50px;
}

.payment-method {
	background: #fff !important;
}

.payment-title:hover {
	background: #ccc;
}

.sf-listing-payment {
	display: none;
}

.payment-container {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.payment-container .field {
  margin-bottom: 20px;
}
.payment-container select, .payment-container label {
  display: block;
  width: 100%;
}
.payment-container select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.payment-container .durations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.payment-container .durcard {
  padding: 10px;
  background: #e9ecef;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.payment-container .durcard.active {
  background: #303f9f;
  color: white;
  font-weight: bold;
}
.payment-container .switch {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.payment-container .switch input {
  margin-right: 10px;
}
.payment-container #listtotal {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
.payment-container button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #28a745;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

.payment-container .feature-option, .payment-container .boost-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

/* Toggle switch container */
.payment-container .toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

/* Hide default checkbox */
.payment-container .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider */
.payment-container .slider {
  position: absolute;
  cursor: pointer;
  background: #ccc !important;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  height: 26px;
  width: 46px;
  box-shadow: none;
}

/* Circle inside the slider */
.payment-container .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

/* Checked state */
.payment-container .toggle-switch input:checked + .slider {
  background-color: #202f9f !important;
}
.payment-container .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* Optional text styling */
.payment-container .toggle-label {
  font-size: 14px;
  color: inherit;
}
