/* HTML: <div class="loader"></div> */
.uniloader {
  width: 65px;
  aspect-ratio: 1;
  position: relative;
}
.uniloader:before,
.uniloader:after {
  content: "";
  position: absolute;
  border-radius: 50px;
  /* Default light mode color */
  box-shadow: 0 0 0 3px inset #303f9f;
  animation: l4 2.5s infinite;
}
.uniloader:after {
  animation-delay: -1.25s;
}

/* Dark mode color */
@media (prefers-color-scheme: dark) {
  .uniloader:before,
  .uniloader:after {
    box-shadow: 0 0 0 3px inset #fff;
  }
}

@keyframes l4 {
  0% {
    inset: 0 35px 35px 0;
  }
  12.5% {
    inset: 0 35px 0 0;
  }
  25% {
    inset: 35px 35px 0 0;
  }
  37.5% {
    inset: 35px 0 0 0;
  }
  50% {
    inset: 35px 0 0 35px;
  }
  62.5% {
    inset: 0 0 0 35px;
  }
  75% {
    inset: 0 0 35px 35px;
  }
  87.5% {
    inset: 0 0 35px 0;
  }
  100% {
    inset: 0 35px 35px 0;
  }
}


.cookies-container {
	display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.sold-container {
	display: none;
    position: fixed;
    z-index: 9999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	padding-bottom: 400px;
    padding-top: 300px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookies-modal {
	top: 40%;
    position: relative;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
    z-index: 999999;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.9);
    overflow-x: hidden;
    margin: -157.5px auto;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	text-align: center;
}

.cookies-modal img {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	margin: 20px auto;
}

.sold-container img {
	width: 100px;
	height: 100px;
}

.cookies-title {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 5px 0;
	padding-top: 20px;
	padding-bottom: 15px;
}

.cookies-text {
	text-align: center;
	line-height: 20px;
	font-weight: 600;
	opacity: 0.8;
}

.cookies-accept {
	font-size: 14px;
	font-weight: 600;
	padding: 8px 25px;
	text-align: center;
	display: inline-block;
	margin: 20px auto 10px !important;
	border-radius: 50px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(72, 44, 191);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #ffffff;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
	cursor: pointer;
}

.sold-dismiss {
	font-size: 14px;
	font-weight: 600;
	padding: 8px 25px;
	width: 100px;
	text-align: center;
	display: block;
	margin: 20px auto 10px !important;
	border-radius: 50px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(72, 44, 191);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #ffffff;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
	cursor: pointer;
}

.cookies-deny {
	text-align: center;
	color: #303F9F;
	cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
	padding-bottom: 50px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.plink-area {
	position: relative;
	margin: 20px 0px 10px 20px;
	z-index: 99;
}

.plink-area img {
	position: absolute;
	max-width: 40px;
	right: 20px;
	background: #ddd;
	padding: 5px;
	border-radius: 50px;
	cursor: pointer;
	-webkit-box-shadow: 9px 9px 16px rgb(163 177 198 / 60%), -9px -9px 16px rgb(255 255 255 / 50%);
    -moz-box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.5);
    box-shadow: 9px 9px 16px rgb(163 177 198 / 60%), -9px -9px 16px rgb(255 255 255 / 50%);
}

.plink-sp img {
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.plink-area div {
	display: none;
	position: relative;
	background: #bbb;
	border-radius: 50px;
	padding: 9px 20px;
	height: 40px;
	margin-right: 80px;
	-webkit-box-shadow: 9px 9px 16px rgb(163 177 198 / 60%), -9px -9px 16px rgb(255 255 255 / 50%);
    -moz-box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.5);
    box-shadow: 9px 9px 16px rgb(163 177 198 / 60%), -9px -9px 16px rgb(255 255 255 / 50%);
}

.plink-sp div {
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.plink-area p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: black;
    font-weight: 600;
    line-height: 23px;
	margin-right: 50px;
}

.plink-area button {
	position: absolute;
	z-index: 999;
	cursor: pointer;
	right: 4px;
	height: 32px;
	background: #303F9F;
	border: none;
	color: #fff;
	font-weight: 600;
	padding: 7px 15px 8px;
	border-radius: 50px;
	top: 4px;
}

.loadmodal {
	display: none;
	justify-content: center;
	align-items: center;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.modal-close {
    margin-top: 2px;
    float: left;
    font-size: 36px;
    font-weight: bold;
	line-height: 18px;
	height: 35px;
	width: 35px;
	padding: 8px 0;
	border-radius: 50%;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-close img {
	height: 35px;
	width: 35px;
}

.modal-header {
    text-align: center;
    padding: 2px 16px;
    background: #303F9F;
	/* Old browsers */
    /* 
    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%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
}

.iframe-container {
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
}

.responsive-iframe {
	border: 6px solid #000;
}

.fluid-width-video-wrapper {
	padding-top: 56.25% !important;
}

.modal-header h3 {
    margin: 10px 0 10px;
	text-align: left;
	padding: 0 60px;
	font-weight: 600;
	color: #fff;
}

.modal-body {
    padding: 2px 16px;
}


.iframe-body {
	background: #303F9F;
    /*background: -webkit-linear-gradient(100deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(100deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(100deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
	padding-bottom: 40px;
}

.modal-content {
    top: 50px;
    position: relative;
    z-index: 999999;
    border-radius: 2px;
    background-color: #fefefe;
    overflow-x: hidden;
    margin: auto;
	margin-bottom: 50px;
    padding: 0;
    border: 0;
    width: 700px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-btn {
    padding-bottom: 50px;
    padding-top: 25px;
    justify-content: center;
    display: flex;
    text-align: center;
}

.table {
	width: 100%;
}

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
    border: none;
}

.sf-contact-details,
.bf-contact-details,
.bf-payment-successful,
.bf-payment-failed,
.bf-installment,
.bf-codfinal {
    display: none;
}

.sf-dtls-next,
.bf-dtls-next {
    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%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
    color: #fff;
    text-align: center;
    min-width: 100px;
    margin: 0 15px;
	height: 35px;
	line-height: 34px;
    border-radius: 30px;
  	padding: 0 30px;
    cursor: pointer;
	font-weight: 600;
}

.sf-dtls-next:hover,
.bf-dtls-next:hover {
    background: #e8eaf6;
	border: 2px solid #303F9F;
    color: #303F9F;
	line-height: 29px;
	padding-top: 1px;
}

.checkout-div a:hover {
	line-height: 30px;
}

.sf-dtls-next:focus,
.bf-dtls-next:focus {
    background: #e8eaf6;
	border: 2px solid #303F9F;
    color: #303F9F;
	line-height: 29px;
	padding-top: 1px;
}

.checkout-div a:focus {
	line-height: 30px;
}

.sf-dtls-prev,
.bf-dtls-prev {
    background: #90a4ae;
    color: #fff;
    text-align: center;
    width: 100px;
    margin: 0 15px;
	padding-top: 1px;
    height: 35px;
	line-height: 32px;
    border-radius: 20px;
    cursor: pointer;
}

.sf-dtls-prev:hover,
.bf-dtls-prev:hover {
    background: #e8eaf6;
	border: 2px solid #303F9F;
    color: #303F9F;
	line-height: 28px;
	padding-top: 3px;
}

.sf-dtls-prev:focus,
.bf-dtls-prev:focus {
    background: #e8eaf6;
	border: 2px solid #303F9F;
    color: #303F9F;
	line-height: 28px;
	padding-top: 3px;
}

.jjnbzw:hover {
	line-height: 32px !important;
}

.jjnbza:hover {
	line-height: 32px !important;
}

.cod-checkout:hover {
	line-height: 32px !important;
}

.jjnbzw:focus {
	color: #303F9F;
	line-height: 32px !important;
}

.jjnbza:focus {
	color: #303F9F;
	line-height: 32px !important;
}

.cod-checkout:focus {
	color: #303F9F;
	line-height: 32px !important;
}

/* --- Buy Form Step One --- */

/* Set width of table headers */
.sell-modal th,
.buy-modal th {
    width: 200px;
}

.bf-wstatus {
    text-transform: capitalize;
}

/* Phone image */
.sf-image,
.bf-image {
    position: relative;
    height: 400px;
    justify-content: center;
    display: flex;
    text-align: center;
}

.sf-image img,
.bf-image img {
    position: relative;
    margin-top: 25px;
    height: 350px;
	border-radius: 20px;
}

/* Capitalize brand, model and color cell entries */
.sf-brand,
.sf-model,
.sf-color,
.bf-brand,
.bf-model,
.bf-color {
    text-transform: capitalize;
}

/* Color row arrangement */
.sf-color-items th,
.bf-color-items th {
	line-height: 50px !important;
}

.sf-color-items td span,
.bf-color-items td span {
    line-height: 50px !important;
    float: left;
}

.sf-color-items td img,
.bf-color-items td img {
    float: left;
    height: 50px;
    margin-left: 50px;
}

/* --- Buy form Step 2 '.bf-contact-details' --- */

.sf-contact-details,
.bf-contact-details {
    padding: 60px 100px 0 100px;
}

.sf-contact-details input,
.sf-contact-details select,
.sf-contact-details textarea,
.bf-contact-details input,
.bf-contact-details select,
.bf-contact-details textarea,
.signup-modal input,
.signup-modal select,
.signup-modal textarea {
    color: rgb(72, 44, 191);
    outline: none;
    appearance: unset !important;
    -moz-appearance: unset !important;
    -webkit-appearance: unset !important;
    -o-appearance: unset !important;
    -ms-appearance: unset !important;
	font-family: 'Varela Round', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.sf-contact-details input::-webkit-outer-spin-button,
.sf-contact-details input::-webkit-inner-spin-button,
.sf-contact-details textarea::-webkit-outer-spin-button,
.sf-contact-details textarea::-webkit-outer-spin-button,
.bf-contact-details input::-webkit-outer-spin-button,
.bf-contact-details input::-webkit-inner-spin-button,
.bf-contact-details textarea::-webkit-outer-spin-button,
.bf-contact-details textarea::-webkit-outer-spin-button,
.signup-modal input::-webkit-outer-spin-button,
.signup-modal input::-webkit-inner-spin-button {
    color: black;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    -o-appearance: none !important;
    -ms-appearance: none !important;
    margin: 0;
}

.sf-contact-details input:focus,
.sf-contact-details select:focus,
.sf-contact-details textarea:focus,
.bf-contact-details input:focus,
.bf-contact-details select:focus,
.bf-contact-details textarea:focus,
.signup-modal input:focus,
.signup-modal select:focus,
.signup-modal textarea:focus {
    color: #8790af;
    outline: none;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -o-box-shadow: none !important;
    -ms-box-shadow: none !important;
}

.sf-contact-details input[type=checkbox],
.bf-contact-details input[type=checkbox],
.signup-modal input[type=checkbox] {
    appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -o-appearance: checkbox !important;
    -ms-appearance: checkbox !important;
}

.sf-contact-details input[type=radio],
.bf-contact-details input[type=radio],
.signup-modal input[type=radio] {
    appearance: radio !important;
    -moz-appearance: radio !important;
    -webkit-appearance: radio !important;
    -o-appearance: radio !important;
    -ms-appearance: radio !important;
}

.sf-contact-details .form-radio,
.bf-contact-details .form-radio {
    text-align: center;
    margin-bottom: 65px;
    padding-top: 20px;
}

.sf-contact-details .form-radio input,
.bf-contact-details .form-radio input {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
}

.sf-contact-details .form-radio label,
.bf-contact-details .form-radio label {
    color: #212121;
    left: 3px;
    text-align: center;
    vertical-align: middle;
    line-height: 37px;
}

.sf-contact-details .form-radio input + label,
.bf-contact-details .form-radio input + label {
    margin: 0 3px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    border: solid 2px #ebebeb;
    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%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
    font-size: 30px;
    color: #212121;
    text-align: center;
    vertical-align: middle;
    transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
	cursor: pointer;
}

.sf-contact-details .form-radio img,
.bf-contact-details .form-radio img {
	
}

.sf-contact-details .form-radio .lnr,
.bf-contact-details .form-radio .lnr {
    vertical-align: middle;
}

.sf-contact-details .form-radio input:checked + label,
.bf-contact-details .form-radio input:checked + label {
    background-color: #303F9F;
    color: #111;
    text-align: center;
    vertical-align: middle;
    border-color: #FFF;
    z-index: 1;
}

.sf-contact-details .form-radio input:focus + label,
.bf-contact-details .form-radio input:focus + label {
    outline: none;
}

.sf-contact-details .form-radio input:hover,
.bf-contact-details .form-radio input:hover {
    background-color: #FFF;
    color: #111;
    border-color: #FFF;
}

.sf-contact-details .radio-item-list,
.bf-contact-details .radio-item-list {
    margin: 0 -3px;
}

.sf-contact-details .active,
.bf-contact-details .active {
    position: relative;
    right: 0;
    background: #bbdefb;
    padding: 22px 0 23px;
    margin-right: 7px;
    margin-left: 3px;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -o-border-radius: 40px;
    -ms-border-radius: 40px;
}

.sf-contact-details .active:after,
.bf-contact-details .active:after {
    position: absolute;
    right: 17px;
    top: 50%;
    font-size: 14px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #222;
    font-weight: bold;
}

.sf-contact-details .call-rb.active:after,
.bf-contact-details .call-rb.active:after {
    content: 'Call';
}

.sf-contact-details .sms-rb.active:after,
.bf-contact-details .sms-rb.active:after {
    content: 'SMS';
}

.sf-contact-details .email-rb.active:after,
.bf-contact-details .email-rb.active:after {
    content: 'Email';
}

.sf-contact-details .call-rb.active input + label,
.bf-contact-details .call-rb.active input + label {
    margin-right: 52px;
}

.sf-contact-details .sms-rb.active input + label,
.bf-contact-details .sms-rb.active input + label {
    margin-right: 56px;
}

.sf-contact-details .email-rb.active input + label,
.bf-contact-details .email-rb.active input + label {
    margin-right: 69px;
}

.sf-contact-details .form-group,
.bf-contact-details .form-group,
.signup-modal .form-group {
    margin-bottom: 10px;
    position: relative;
}

.sf-contact-details .form-input,
.bf-contact-details .form-input,
.signup-modal .form-input {
    padding-top: 21px;
}

.sf-contact-details .form-label,
.bf-contact-details .form-label,
.signup-modal .form-label {
    font-weight: 600;
    position: absolute;
    transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -webkit-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    -ms-transition: 0.25s ease;
    color: #212121;
    left: 0;
    top: 23px;
}

.sf-contact-details input:focus + .form-label,
.sf-contact-details input:valid + .form-label,
.sf-contact-details textarea:focus + .form-label,
.sf-contact-details textarea:valid + .form-label,
.bf-contact-details input:focus + .form-label,
.bf-contact-details input:valid + .form-label,
.bf-contact-details textarea:focus + .form-label,
.bf-contact-details textarea:valid + .form-label,
.signup-modal input:focus + .form-label,
.signup-modal input:valid + .form-label {
    top: 1px;
    font-size: 11px;
}

.sf-contact-details input,
.sf-contact-details select,
.sf-contact-details textarea,
.bf-contact-details input,
.bf-contact-details select,
.bf-contact-details textarea,
.signup-modal input,
.signup-modal select {
    box-sizing: border-box;
    width: 100%;
    display: block;
    border: none;
    color: #212121;
    background: transparent;
    border-bottom: 1px solid #999;
    padding: 10px 0;
}

.sf-contact-details input,
.sf-contact-details textarea,
.bf-contact-details input,
.bf-contact-details textarea,
.signup-modal input {
    padding-bottom: 10px;
    transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    padding-top: 10px;
    -webkit-appearance: none;
}

#collectionaddress,
#deliveryaddress {
	text-transform: none !important;
}

.sf-contact-details input:focus,
.sf-contact-details select:focus,
.sf-contact-details teaxtarea:focus,
.bf-contact-details input:focus,
.bf-contact-details select:focus,
.bf-contact-details teaxtarea:focus,
.signup-modal input:focus,
.signup-modal select:focus {
    border-bottom: 1px solid rgb(72, 44, 191);
}

.sf-contact-details input:-webkit-autofill,
.sf-contact-details textarea:-webkit-autofill,
.bf-contact-details input:-webkit-autofill,
.bf-contact-details textarea:-webkit-autofill,
.signup-modal input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px transparent inset;
}

.sf-contact-details input::-webkit-input-placeholder,
.sf-contact-details teaxtarea::-webkit-input-placeholder,
.bf-contact-details input::-webkit-input-placeholder,
.bf-contact-details teaxtarea::-webkit-input-placeholder,
.signup-modal input::-webkit-input-placeholder {
    color: rgb(72, 44, 191);
}

.sf-contact-details input::-moz-placeholder,
.sf-contact-details textarea::-moz-placeholder,
.bf-contact-details input::-moz-placeholder,
.bf-contact-details textarea::-moz-placeholder,
.signup-modal input::-moz-placeholder {
    color: rgb(72, 44, 191);
}

.sf-contact-details input:-ms-input-placeholder,
.sf-contact-details textarea:-ms-input-placeholder,
.bf-contact-details input:-ms-input-placeholder,
.bf-contact-details textarea:-ms-input-placeholder,
.signup-modal input:-ms-input-placeholder {
    color: rgb(72, 44, 191);
}

.sf-contact-details input:-moz-placeholder,
.sf-contact-details textarea:-moz-placeholder,
.bf-contact-details input:-moz-placeholder,
.bf-contact-details textarea:-moz-placeholder,
.signup-modal input:-moz-placeholder {
    color: rgb(72, 44, 191);
}

.sf-contact-details #county,
.bf-contact-details #county {
    margin-top: 30px;
}

.sf-contact-details select[name="constituency"],
.bf-contact-details select[name="constituency"] {
    margin-top: 30px;
}

.sf-contact-details select[name="ward"],
.bf-contact-details select[name="ward"] {
    margin-top: 30px;
}

.sf-contact-details .label-radio,
.bf-contact-details .label-radio {
    display: block;
    margin-bottom: 18px;
}

.sf-contact-details #email,
.bf-contact-details #email {
    text-transform: lowercase;
}

.sf-contact-details #collectionaddress::-webkit-input-placeholder { opacity: 0 }
.sf-contact-details #collectionaddress:-moz-placeholder { opacity: 0 } /* FF 4-18 */
.sf-contact-details #collectionaddress::-moz-placeholder { opacity: 0 } /* FF 19+ */
.sf-contact-details #collectionaddress:-ms-input-placeholder { opacity: 0 } /* IE 10+ */

.sf-contact-details #collectionaddress:focus::-webkit-input-placeholder { opacity: 0.7; color: #000 }
.sf-contact-details #collectionaddress:focus:-moz-placeholder { opacity: 0.7; color: #000 } /* FF 4-18 */
.sf-contact-details #collectionaddress:focus::-moz-placeholder { opacity: 0.7; color: #000 } /* FF 19+ */
.sf-contact-details #collectionaddress:focus:-ms-input-placeholder { opacity: 0.7; color: #000 } /* IE 10+ */

.bf-contact-details #deliveryaddress::-webkit-input-placeholder { opacity: 0 }
.bf-contact-details #deliveryaddress:-moz-placeholder { opacity: 0 } /* FF 4-18 */
.bf-contact-details #deliveryaddress::-moz-placeholder { opacity: 0 } /* FF 19+ */
.bf-contact-details #deliveryaddress:-ms-input-placeholder { opacity: 0 } /* IE 10+ */

.bf-contact-details #deliveryaddress:focus::-webkit-input-placeholder { opacity: 0.7; color: #000 }
.bf-contact-details #deliveryaddress:focus:-moz-placeholder { opacity: 0.7; color: #000 } /* FF 4-18 */
.bf-contact-details #deliveryaddress:focus::-moz-placeholder { opacity: 0.7; color: #000 } /* FF 19+ */
.bf-contact-details #deliveryaddress:focus:-ms-input-placeholder { opacity: 0.7; color: #000 } /* IE 10+ */

.sms-rb label {
	line-height: 35px !important;
}

.sms-rb .lnr {
	margin-left: 2px !important;
}

.email-rb label {
	line-height: 41px !important;
}

/* --- Buy form Step 3 '.bf-payment-methods' --- */

.bf-payment-methods {
    display: none;
    margin: 40px 0;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-method:hover {
    background: #eceff1;
}

.payment-title {
	display: none;
    cursor: pointer;
    text-align: center;
	font-weight: 600;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #bdbdbd;
}

.payment-procedure {
	/*display: none;*/
    padding: 10px;
    background: #fff;
	border-radius: 20px;
	margin: 40px 10px 20px;
}

.payment-logos {
    margin: 30px 0;
    justify-content: center;
    text-align: center;
    display: flex;
    height: 70px;
}

.payment-logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.payment-details {
    padding: 20px;
    border: 1px solid #b2dfdb;
    background: #e0f2f1;
    border-radius: 15px;
}

.blacken {
    color: color: #333333;
    font-weight: 700;
}

.bank button {
    border: none;
}

.dpaydeli {
    font-style: italic;
    text-align: center;
    margin: 13px 0;
}

.vnklab {
    text-align: center;
    color: #455a64;
    background: #ffcdd2;
    display: none;
	padding: 7px ;
	max-width: 400px;
	margin: 20px auto 0;
	border-radius: 3px;
	font-weight: 600;
	line-height: 18px;
}

.vnklaa {
    text-align: center;
    color: #455a64;
    background: #ffcdd2;
    display: none;
	padding: 7px;
	max-width: 400px;
	margin: 20px auto 0;
	border-radius: 3px;
	font-weight: 600;
	line-height: 18px;
}

.tradein-fields {
	background: #fff;
}

.tin-area {
	position: relative;
}

.tin-title {
	margin: 40px 0 10px;
	font-weight: 600;
}

.tin-search-box {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	z-index: 999;
}

.tin-search {
	position: absolute;
	font-family: 'Varela Round', sans-serif;
	font-weight: 600;
	font-size: 14px;
    color: #455a64;
	background: #e8eaf6;
	padding-left: 15px;
	padding-right: 45px;
	width: 100%;
	border-radius: 40px;
	border: 3px solid #303F9F;
	height: 40px;
	line-height: 40px;
	z-index: 0;
}

.tin-submit {
	position: absolute;
	width: 30px;
	height: 30px;
	margin: 5px;
	line-height: 30px;
	border-radius: 20px;
	font-size: 20px;
	top: 0;
	right: 0;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	cursor: pointer;
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
}

.suggest-area {
	display: flex;
	justify-content: center;
	position: absolute;
	z-index: 99;
	width: 100%;
}

.suggest-strip {
	max-height: 250px;
	overflow-y: auto;
	background: #fff;
	width: 100%;
	max-width: 300px;
	margin-top: 42px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border: 1px solid #ccc;
	padding-bottom: 10px;
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.suggestion {
	font-weight: 600;
	padding: 10px 20px;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	cursor: pointer;
	background: #303F9F;
	color: #fff;
}

.suggestion:hover {
	background: #ddd;
	color: #000;
}

.tin-model {
	display: none;
	position: relative;
	margin-top: 70px;
	border: 1px solid #ddd;
	padding: 10px 10px;
	text-align: center;
	text-transform: capitalize;
	border-radius: 40px;
	font-weight: 600;
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.tin-ovals {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.tin-mem-oval {
	position: relative;
	width: 90px;
	height: 28px;
	border: 3px solid #303F9F;
	border-radius: 30px;
	margin: 8px 3px;
	cursor: pointer;
}

.tin-mem {
	position: absolute;
	line-height: 25px;
	padding-left: 5px;
}

.tin-oval-icon {
	display: none;
	position: absolute;
	z-index: 9;
	width: 18px;
	height: 18px;
	line-height: 20px;
	right: 2px;
	top: 2px;
	text-align: center;
	border-radius: 30px;
	color: #fff;
	background: rgb(72, 44, 191);
	background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
	background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
}

.tin-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.tin-status {
	position: relative;
	border: 3px solid #303F9F;
	border-radius: 10px;
	padding: 10px 10px 12px;
	margin: 10px;
	max-width: 280px;
	width: 100%;
	cursor: pointer;
	background: #ebedff;
}

.tin-status p {
	text-align: center;
	font-weight: 600;
}

.tin-status-icon {
	display: none;
	position: absolute;
	z-index: 9;
	width: 30px;
	height: 30px;
	line-height: 32px;
	right: -15px;
	top: -15px;
	font-size: 20px;
	text-align: center;
	border-radius: 30px;
	color: #fff;
	background: rgb(72, 44, 191);
	background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
	background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
}

.tin-compare-btn {
	padding: 40px 20px 0px;
}

.tin-compare {
	font-weight: 600;
	background: #303F9F;
	color: #FFF;
	padding: 7px 10px;
	width: 100px;
	text-align: center;
	border-radius: 40px;
	cursor: pointer;
	margin: 0 auto;
}

.tin-result-area {
	display: none;
}

.tin-img-area {
	display: flex;
	justify-content: center;
	margin: 40px;
}

.tin-img {
	max-height: 150px;
}

.tin-reject-area {
	display: none;
}

.tin-reject-div {
	margin: 80px auto;
	display: flex;
	justify-content: center;
}

.tin-reject {
	background: #e53935;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #e35d5b, #e53935);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #e35d5b, #e53935); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	width: 100%;
	max-width: 250px;
	padding: 20px 20px 24px;
	color: #fff;
	text-align: center;
	border-radius: 10px;
}

.checkout-div {
    justify-content: center;
    display: flex;
    text-align: center;
    padding: 20px 20px 0;
}

.checkout-div:active {
	color: #fff;
}

.sell-body .checkout-div a {
	padding-top: 0;
}

.checkout-div a {
	padding-top: 1px;
	font-weight: 600;
}

.cbmode {
	display: none;
}

.confirmation-boxes {
    padding-top: 15px;
    justify-content: center;
    display: flex;
  	flex-wrap: wrap;
    text-align: center;
}

.coboxes {
  	display: block;
  	margin: 0 auto;
  	width: 250px;
  	text-align: center;
}

.coboxes label {
  	width: 100%;
}

.textfields {
    padding: 10px;
    color: #000;
    margin: 10px 10px 0;
    border-radius: 50px;
	height: 40px;
	line-height: 100px;
    border: 3px solid #303F9F;
    background: #eceff1;
}

.textfields: focus {
    color: #000 !important;
}

.trabox {
	display: flex;
	justify-content: center;
}

.transfield {
	display:block; 
	padding: 10px;
    color: #000;
	margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #cfd8dc;
    background: #eceff1;
}

.jjnbzx, .jjnbzl {
    background: #fff;
    color: #000;
	height: 35px;
	line-height: 15px;
    text-align: center;
    min-width: 100px;
    margin: 0 15px;
	padding: 10px 0 !important;
    border-radius: 30px;
  	padding: 3.5px 30px;
    cursor: pointer;
}

.jjnbzx:hover, .jjnbzl:hover {
    background: #ddd;
    color: rgba(0, 0, 0, 0.7);
}

.tilldiv {
	text-align: center;
	display: flex;
	justify-content: center;
}

.tilldir {
	cursor: pointer;
	line-height: 20px;
    color: #8e0038;
    padding-left: 10px;
    padding-right: 10px;
	margin-top: 20px;
}

.idfields {
    text-align: center;
    display: block;
    width: 200px;
    padding: 5px;
    color: #000;
    margin: 10px auto 20px;
    border-radius: 50px;
    border: 3px solid #303F9F;
    background: #eceff1;
	height: 40px;
}

.idfields: focus {
    color: #000 !important;
}

.bf-contact-details input[type=radio] {
    appearance: radio !important;
    -moz-appearance: radio !important;
    -webkit-appearance: radio !important;
    -o-appearance: radio !important;
    -ms-appearance: radio !important;
}

.paypal-btns {
  	height: 500px;
  	overflow: auto;
}

.paypal-buttons-context-iframe {
  	height: 1450px !important;
}

.installment-options {
    border-radius: 10px;
}

/* Style the tab */
.installment-tabs {
    overflow: hidden;
    border: none;
    left: 1px;
    background: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
	display: flex;
    gap: 5px;
}

.upProg {
    height: 5px;
}

.upBar {
    height: 100%;
    width: 0%;
    background: rgb(72, 44, 191);
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
}

/* Style the buttons that are used to open the tab content */
.tablink {
    background-color: inherit;
    float: left;
    border: none;
    outline: #e8eaf6;
    cursor: pointer;
    padding: 15px 15px 5px;
    transition: 0.3s;
    width: 25%;
    color: #cfd8dc;
	border-radius: 15px;
}

/* Change background color of buttons on hover */
.tablink:hover {
    color: #b0bec5;
    background-color: #fafafa;
}

/* Create an active/current tablink class */
.tablink.active {
    background-color: #fff;
    color: #8790af;
}

.tabnum {
    font-size: 50px;
    text-align: center;
    margin-bottom: 0;
	padding-bottom: 14px;
}

.tabmon {
    text-align: center;
    margin-bottom: 0;
}

/* Style the tab content */
.tabcontent {
    padding: 6px 12px;
    border: none;
    border-top: none;
    overflow: hidden;
}

.tabcolumna {
    float: left;
    width: 40%;
}

.tabcolumnb {
    float: left;
    width: 60%;
}

.tabcontent img {
    padding: 0;
}

.tabcontent div {
    padding: 20px;
}

.premium-title {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #000;
    font-weight: 200;
	line-height: 35px;
}

.premium-text {
    text-align: center;
    font-size: 16px;
	line-height: 30px;
	font-weight: 600;
}

.tabcontent h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.premium-value {
    color: #000;
	font-weight: 600;
}

.premium-date {
    color: #555555;
}

.three-premium,
.six-premium,
.nine-premium,
.twelve-premium {
	font-size: 26px;
}

.tabnext {
    display: block;
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #fff;
    text-align: center;
    border: none;
    outline: none;
    height: 35px;
	line-height: 20px;
    width: 100px;
    margin: 30px auto 10px;
    border-radius: 20px;
    padding: 8px 20px 10px 20px;
    cursor: pointer;
}

.tabnext:hover {
    background: #e8eaf6;
	border: 2px solid #303F9F;
    color: #303F9F;
	line-height: 0;
	padding-top: 12px;
}

.tabnext:focus {
    background: #e8eaf6;
	border: 2px solid #303F9F;
    color: #303F9F;
	line-height: 0;
	padding-top: 12px;
}

.tabfunc {
    display: block;
    background: #e0e0e0;
    color: #000;
    text-align: center;
    height: 40px;
	line-height: 38px;
    right: 0;
    margin: 10px 0;
    border-radius: 20px;
    cursor: pointer;
}

.filevals {
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.submitting {
  	background: #bbb;
  	color: #000;
}

.submitting:hover {
  	background: #bbb;
  	color: #000;
}

.installmenter {
    display: none;
}

.inwarn {
	text-align: center;
	line-height: 20px;
	font-style: italic;
    color: #8e0038;
    padding-left: 10px;
    padding-right: 10px;
}

.inerror {
    text-align: center;
    color: #455a64;
    background: #ffcdd2;
    display: none;
	padding: 7px;
	max-width: 400px;
	margin: 20px auto 0;
	border-radius: 3px;
	font-weight: 600;
	line-height: 18px;
}

.tin-error {
    text-align: center;
    color: #455a64;
    background: #ffcdd2;
    display: none;
	padding: 7px;
	max-width: 400px;
	margin: 20px auto 0px;
	border-radius: 3px;
	font-weight: 600;
	line-height: 18px;
}

.pay-data {
    margin-top: 20px;
}

.payment-badge {
    justify-content: center;
    display: flex;
    padding: 30px;
}

.pbadge {
    max-width: 200px;
    max-height: 200px;
}

.pay-result-div {
    margin: 0 10px;
}

.pay-result-div table {
    text-align: right;
    max-width: 300px;
    margin: 20px auto;
    background: #eee;
    border: 1px solid #ddd;
}

.pay-result-title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: cornflowerblue;
    padding: 0;
	line-height: 30px;
}

.pay-data {
    /*text-align: center;*/
}

/* SIGNUP MODAL */

.signup-modal .modal-body {
    padding: 70px;
}

.sfnames {
    justify-content: center;
    display: flex;
    text-align: center;
}

.sfn1 {
    float: left;
    width: 45%;
    margin: 0 5% 0 0;
}

.sfn2 {
    float: left;
    width: 45%;
    margin: 0 0 0 5%;
}

.sfemail {
    text-transform: lowercase !important;
}

.signup-send {
    justify-content: center;
    display: flex;
    text-align: center;
    margin: 60px 0 0;
}

.signup-error {
    text-align: center;
    margin: 30px 70px;
    color: #f44336;
    border: #e57373;
    background: #ffebee;
    display: none;
}

.signup-loader {
    display: none;
}

.sf-submitter {
	display: none !important;
}

/* SELL MODAL */

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

.sf-data-poster {
    display: none;
}

.bf-status,
.bf-accessory {
    text-transform: capitalize;
}

.complete-content {
    margin-top: 20px;
}

.thumbs-up-badge {
    justify-content: center;
    display: flex;
    padding: 30px;
}

.thumbs-up {
    max-width: 200px;
    max-height: 200px;
}

.thank-you-div {
    text-align: center;
}

.thank-you-title {
    font-size: 30px;
    font-weight: 400;
	line-height: 30px;
    color: cornflowerblue;
    padding: 0 30px;
}

.thank-you-text {
    padding: 30px;
}

.entry-error {
    display: none;
    color: crimson;
}

.orders-modal .modal-body,
.listings-modal .modal-body {
    padding: 0;
}

.listings-modal-content, 
.orders-modal-content {
	background-color:#fff;
}

.status-tabs {
    overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #fff;
}

.status-tab {
    color: #fff;
    background: #3f51b5;
    padding: 10px;
    margin: 1.5%;
    width: 30%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px;
	box-sizing: border-box;
}

.dash-analysis,
.dash-transit {
    border-left: 1px solid #e8eaf6;
    border-right: 1px solid #e8eaf6;
}

.active-tab,
.status-button:hover {
    background: #fff;
    color: #303f9f !important; 
    outline: 3px solid #303f9f;
}

.modal-body {
	background: #fff;
}

.dark .modal-body {
	background: #222;
}

.dash-card {
	font-weight: 600;
	line-height: 20px;
    color: #000;
    margin: 20px 5px;
	padding: 0 10px;
    text-transform: capitalize;
    border: none;
    border-radius: 20px;
    overflow: hidden;
	border: 5px solid #303f9f;
}

.dash-col-1 {
    float: left;
    margin: 20px 30px;
}

.dash-col-2 {
    float: left;
    margin: 20px 30px 20px 50px;
	
}

.dash-col-3 {
    float: left;
    margin: 20px 30px 20px 50px;
}

.dash-deta {
	display: flex;
	justify-content: center;
}

.dash-sec-1 {
	width: 40%;
	text-align: center;
	padding: 20px 0;
}

.dash-sec-2 {
	width: 60%;
	text-align: center;
	padding: 40px 20px;
}

.dash-sec-2 span {
	display: flex;
	justify-content: center;
}

.dash-sec-3 {
	width: 100%;
	text-align: center;
	padding: 20px 0;
	text-transform: 
}

.dash-sec-3 > div {
	margin: 20px 0;
}

.list-cancel {
    padding: 10px 5px;
    width: 120px;
    border-radius: 20px;
    background: red;
    color: #fff;
    text-align: center;
    cursor: pointer;
	margin-top: 40px !important;
	-webkit-box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px  rgba(255,255,255, 0.5);
    -moz-box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px  rgba(255,255,255, 0.5);
    box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px  rgba(255,255,255, 0.5);
}

.list-cancel:hover {
    opacity: 0.8;
}

/* Pricing Step */

.dash-payment-price .dash-currency {
    color: #2e7d32;
    font-size: 20px;
}

.dash-payment-price .pricing-amount {
    color: #2e7d32;
    font-size: 40px;
}

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

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

.liload {
	opacity: 0;
	color: #009624;
}

.libcheck {
	display: none;
}

/* SLIDER */
.range-slider, .dash-range-slider {
    width: 100%;
    display: flex;
    justify-content: center;
	margin: 0 !important;
}

.range-box {
	position: relative;
    width: 700px;
    margin: 30px auto;
}

.dash-range-box {
	position: relative;
    width: 90%;
    margin: 10px auto !important;
}

.slider {
	-webkit-appearance: none;
	appearance: none;
	height: 15px;
	width: 100%;
    background: #3949ab;
    background: -webkit-linear-gradient(45deg, #3949ab 0%, #c62828 100%);
    background: -o-linear-gradient(45deg, #3949ab 0%, #c62828 100%);
    background: linear-gradient(45deg, #3949ab 0%, #c62828 100%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
	-webkit-box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px  rgba(255,255,255, 0.5);
    -moz-box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px  rgba(255,255,255, 0.5);
    box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px  rgba(255,255,255, 0.5);
}

@media only screen and (max-width: 767px) {
	.slider {
		width: 100%;
	}
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
	opacity: 1;
    border-radius: 50%;
    background: #3949ab;
    width: 30px;
    height: 30px;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    border: 3px solid #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.slider::-moz-range-thumb {
    background: #3949ab;
	opacity: 1;
    width: 30px;
    height: 30px;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    border: 3px solid #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Tooltip text */
.tooltiptext, .dash-slider-range .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #3949ab;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 30px;
    position: absolute;
    z-index: 1;
    bottom: 36px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltipreco, .dash-slider-range .tooltipreco {
    width: 160px;
    background-color: #eee;
    color: #777;
    text-align: center;
    padding: 0;
	height: 20px;
	line-height: 20px;
    border-radius: 30px;
    position: absolute;
    z-index: -1;
    bottom: 36px;
    opacity: 1;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltiptext::after, .dash-slider-range .tooltiptext::after {
    content: "";
    position: absolute;
	z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #3949ab transparent transparent transparent;
}

/* Tooltip arrow */
.tooltipreco::after, .dash-slider-range .tooltipreco::after {
    content: "";
    position: absolute;
	z-index: 0.8;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #3949ab transparent transparent transparent;
}

/* SLIDER END */

.dash-card .sellerID {
    display: none;
}

.dash-img {
	margin: 20px auto;
    max-height: 200px;
}

.listings-highlight,
.orders-highlight {
	padding: 10px 0;
	font-weight: 600;
    text-align: center;
}

input[name="statement"],
input[name="scan"] {
    display: none;
}

.nnblkj {
    display: none;
}

.pinbox {
	display: none;
}

.pinboxx {
	display: none;
	position: relative;
	height: 180px;
}

.pinmpesa {
	position: absolute;
	left: 0; 
	right: 0; 
	top: 40px;
	margin-left: auto; 
	margin-right: auto; 
	width: 100px;
}

.pinreqb {
	position: absolute; 
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto;
	display: block;
	width: 260px;
	padding: 20px 20px;
	margin: 20px auto;
	border-radius: 10px;
	background: #3aa335;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, rgba(38,109, 31, 0.9), rgba(38,109, 31, 0.9), rgba(38,109, 31, 0.9));  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, rgba(38,109, 31, 0.9), rgba(38,109, 31, 0.9), rgba(38,109, 31, 0.9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	text-align: center;
}

.pinreqr {
	display: block;
	width: 260px;
	padding: 20px 20px;
	margin: 20px auto;
	border-radius: 10px;
	background: #e53935;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, rgba(48, 63, 159, 0.8), rgba(48, 63, 159, 0.7), rgba(48, 63, 159, 0.8));  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, rgba(48, 63, 159, 0.8), rgba(48, 63, 159, 0.7), rgba(48, 63, 159, 0.8)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	text-align: center;
}

.pinreqz {
	display: block;
	width: 260px;
	padding: 20px 20px;
	margin: 20px auto;
	border-radius: 10px;
	background: #e53935;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #e35d5b, #e53935);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #e35d5b, #e53935); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	text-align: center;
}

.pintext {
	color: #fff;
	font-weight: 600;
}

.stkid {
	display: none;
}

.paytid {
	display: none;
}

.mcheck {
	display: none;
}

.cbmode {
	display: none;
}

.jcbmode, .jcamode {
	display: none;
}

/* MPESA loader */
.lds-spinner {
	zoom: 70%;
	color: official;
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* MPESA loader end */
/* Modal loader */
.load-spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.load-path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Modal Loader End */
/* Ripples */

.ripple {
	transition-timing-function: ease;
	-webkit-animation: at-ripple 2s ease infinite;
    animation: at-ripple 2s ease infinite;
}

@-webkit-keyframes at-ripple {
  0% {
    box-shadow: 0 0 0 0px rgba(106, 198, 240, 0.8);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(106, 198, 240, 0);
  }
}
@keyframes at-ripple {
  0% {
    box-shadow: 0 0 0 0px rgba(106, 198, 240, 0.8);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(106, 198, 240, 0);
  }
}

.show {
	display: block !important;
}

.navcss {
	height: 1px !important;
}

.mainmenu-area.uncollapsed:before {
	opacity: 0.9 !important;
}

/* Ripples End */

/* Animate */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}



@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  
  .animated[class*='Out'] {
    opacity: 0;
  }
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

@keyframes ldio-3k9sk7wug5t {
  0% { opacity: 1 }
  100% { opacity: 0 }
}
.ldio-3k9sk7wug5t div {
  left: 94px;
  top: 48px;
  position: absolute;
  animation: ldio-3k9sk7wug5t linear 1s infinite;
  background: #ffffff;
  width: 12px;
  height: 24px;
  border-radius: 6px / 12px;
  transform-origin: 6px 52px;
}.ldio-3k9sk7wug5t div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666666666666s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333333334s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666666666666s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333333334s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666666666667s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333333333s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.16666666666666666s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.08333333333333333s;
  background: #ffffff;
}.ldio-3k9sk7wug5t div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #ffffff;
}
.loadingio-spinner-spinner-uc6a058w2j {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  background: #ffffff;
}
.ldio-3k9sk7wug5t {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio-3k9sk7wug5t div { box-sizing: content-box; }

/* Animations End */
