@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-display: swap;
}

@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-display: swap;
}

@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;
	font-display: swap;
}

:root{
  --theme:#303AF9; /* provided theme color */
  --accent:#3F51B5; /* link color requested */
  --card-w:250px;
  --card-h:300px;
  --radius:40px;
  --pad:28px; /* thick padding */
}

/* wrapper to allow perspective for 3D hover */
.stage{
  perspective:1200px;
}

/* Card */
.glass-card {
  cursor: pointer;
  margin-top: 100px;
  width: var(--card-w);
  height: var(--card-h);
  border-radius: var(--radius);
  padding: var(--pad);
  position: relative;
  overflow: hidden;

  /* African pattern background ONLY */
  background-image: url('images/afro-mpesa.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 3px solid #303f9f;
}

/* animated gradient rim */
.glass-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background-image: url('images/afro-mpesa.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

/* thin glowing inner stroke */
.glass-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 2;
  pointer-events: none;
}

@keyframes shine{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* content */
.card-content{
  position:relative;
  z-index:2;
  transform:translateZ(30px);
  text-align:center;
  line-height:1.45;
  font-size:15px;
  padding:4px 2px;
}

.card-content strong{
  display:inline-block;
  font-weight:700;
  letter-spacing:0.2px;
}

.card-content a{
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
  border-bottom:1px dotted rgba(255,255,255,0.08);
  transition:transform .22s ease, text-shadow .22s ease;
}
.card-content a:hover{transform:translateY(-2px); text-shadow:0 6px 22px rgba(63,81,181,0.18)}

/* Decorative floating orbs */
.orb{
  position:absolute;
  width:140px;
  height:140px;
  border-radius:50%;
  filter:blur(36px);
  transform:translate3d(0,0,0);
  opacity:0.12;
  z-index:0;
  pointer-events:none;
  mix-blend-mode:screen;
}
.orb.one{right: -30px; top: -30px; background:linear-gradient(180deg, rgba(48,58,249,0.9), rgba(79,60,255,0.6)); animation:floaty 8s ease-in-out infinite}
.orb.two{left: -40px; bottom: -40px; background:linear-gradient(180deg, rgba(63,81,181,0.82), rgba(99,102,241,0.55)); animation:floaty 10s ease-in-out infinite}

@keyframes floaty{
  0%{transform:translateY(0) translateX(0)}
  50%{transform:translateY(10px) translateX(6px)}
  100%{transform:translateY(0) translateX(0)}
}

/* entrance animation */
.glass-card{opacity:0; transform:translateY(14px) scale(.985)}
.glass-card.revealed{opacity:1; transform:translateY(0) scale(1); transition:transform 650ms cubic-bezier(.18,.9,.25,1), opacity 450ms ease}

/* responsive small-screen tweak */
@media (max-width:420px){
  :root{--card-w:92vw;--card-h:36vh}
}

.glass-card strong { /* border color around text */
    font-weight: 600;
    font-size: 14px;
	color: #000;
}

.dark .glass-card strong {
	color: #fff;
}

/* Shining animation using a pseudo-element */
.glass-card strong::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  color: #303f9f;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 215, 0, 0.9) 50%,
    transparent 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

/* Animate the light sweep */
@keyframes gold {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.bf-model h1 {
	font-size: 14px;
}

.buy-div {
	position: relative;
    margin-top: 100px;
	overflow: hidden;
	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;
}

.buy-els {
	display: none;
}

.search-row {
	width: 100%;
	padding: 10px 20px;
	display: flex;
	justify-content: center;
}

.search-bar {
	width: 80%;
	max-width: 230px;
	display: flex;
	justify-content: center;
	position: relative;
}

.search-input {
	font-family: 'Varela Round', sans-serif;
	font-weight: 600;
	font-size: 14px;
    color: #455a64;
	background: #e8eaf6;
	position: absolute;
	padding-left: 15px;
	padding-right: 45px;
	width: 100%;
	border-radius: 40px;
	border: 2px solid #303F9F;
	height: 40px;
	line-height: 40px;
	z-index: 0;
}

.search-btn {
	position: absolute;
	width: 32px;
	height: 32px;
	margin: 4px;
	line-height: 32px;
	border-radius: 20px;
	font-size: 20px;
	cursor: pointer;
	top: 0;
	right: 0;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	cursor: pointer;
    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%);*/
}

.search-filter {
	width: 20%;
	width: 40px;
	height: 40px;
	line-height: 42px;
	font-size: 25px;
	margin: 0 0 0 10px;
	border-radius: 50px;
	text-align: center;
	cursor: pointer;
	color: #fff;
    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%);*/
}

.filters-container {
	display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
	padding-bottom: 50px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.filters {
	position: relative;
	max-width: 400px;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	top: 50px;
    position: relative;
    z-index: 999999;
    overflow-x: hidden;
    margin: auto;
	margin-bottom: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.filters-close {
	font-size: 30px;
	color: #999;
	font-weight: 800;
	margin-top: -20px;
	text-align: center;
	cursor: pointer;
}

.filter-title {
	text-align: left;
	font-size: 15px;
	text-transform: capitalize;
	color: #212121;
	font-weight: 700;
}

.filter-desc {
	text-align: left;
	color: #999999;
	font-size: 12px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.filter-sec-title {
	color: #3949ab;
	font-size: 12px;
}

.price-limit {
	position: relative;
	font-size: 12px;
	width: 23em;
	margin: 1em auto;
}

.price-limit div {
	width: 50%;
	float: left;
	margin-bottom: 5px;
}

.max-price-div {
	text-align: right;
}

.price-limit p {
	height: 10px;
	line-height: 20px;
	margin-bottom: 10px;
	color: #999;
}

.price-slider.wrap {
  --dif: calc(var(--max) - var(--min));
  display: grid;
  grid-template: repeat(2, -webkit-max-content) 5px/ 1fr 1fr;
  grid-template: repeat(2, max-content) 5px/ 1fr 1fr;
  position: relative;
  margin: 25px auto;
  width: 20em;
  border-radius: 5px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(5px, #ccc), color-stop(0, transparent));
  background: linear-gradient(0deg, #ccc 5px, transparent 0);
  font-family: ubuntu mono, consolas, monaco, monospace;
}

.price-slider.wrap::before, .price-slider.wrap::after {
  grid-column: 1/ span 2;
  grid-row: 3;
  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%);
  content: "";
}

.price-slider.wrap::before {
  margin-left: calc(1em + (var(--a) - var(--min))/var(--dif)*18em);
  width: calc((var(--b) - var(--a))/var(--dif)*18em);
}

.price-slider.wrap::after {
  margin-left: calc(1em + (var(--b) - var(--min))/var(--dif)*18em);
  width: calc((var(--a) - var(--b))/var(--dif)*18em);
}

[id='multi-lbl'] {
  grid-column: 1/span 2;
}

.sr-only {
  position: absolute;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.price-slider input[type='range'] {
  grid-column: 1/ span 2;
  grid-row: 3;
  z-index: 1;
  top: 0;
  left: 0;
  margin: 0;
  background: none;
  /* get rid of white Chrome background */
  --col: #000;
  pointer-events: none;
}

.price-slider input[type='range']::-webkit-slider-runnable-track, .price-slider input[type='range']::-webkit-slider-thumb, .price-slider input[type='range'] {
  -webkit-appearance: none;
}

.price-slider input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
  background: none;
}

.price-slider input[type='range']::-moz-range-track {
  width: 100%;
  height: 100%;
  background: none;
}

.price-slider input[type='range']::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-top: -7.5px;
  background: #303f9f;
  border: 3px solid #e8f3ff;
  -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;
  pointer-events: auto;
  cursor: pointer;

}

.price-slider input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-top: -7.5px;
  background: #3949ab;
  border: 3px solid #e8f3ff;
  -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;
  pointer-events: auto;
  cursor: pointer;
}

.price-slider.maxxed input[type='range']::-moz-range-thumb {
	background: red;
}

.price-slider.maxxed input[type='range']::-webkit-slider-thumb {
	background: red;
}

.price-slider input[type='range']:focus {
  z-index: 2;
  outline: dotted 1px currentcolor;
}

.price-slider input[type='range']:focus, .price-slider input[type='range']:focus + .price-slider output {
  --col: darkorange ;
}

.price-slider output {
  display: none;
  grid-row: 2;
  color: var(--col);
}

.price-slider output:last-child {
  text-align: right;
}

.price-slider output::after {
  counter-reset: c var(--c);
  content: "--" attr(for) ": " counter(c) ";";
}

.filter-divider {
	width: 100%;
	border-top: 1px solid #ccc;
	margin: 10px 0;
}

.filter-ovals {
	margin: 20px 0;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}

.filter-oval {
	position: relative;
	width: 110px;
	height: 26px;
	border: 2px solid #303F9F;
	border-radius: 30px;
	margin: 8px 3px;
	cursor: pointer;
}

.filter-oval.disabled {
	border: 2px solid #555;
	opacity: 0.6;
	pointer-events: none;
}


.memory-oval {
	width: 65px;
	cursor: pointer;
}

.filter-oval p {
	position: absolute;
	width: 100%;
	line-height: 22px;
	padding-left: 7px;
	font-size: 12px;
}

.filter-oval span {
	display: none;
	position: absolute;
	z-index: 999;
	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%);
}

.sort-ovals {
	margin: 10px 0;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}

.sort-oval {
	position: relative;
	width: 94px;
	height: 26px;
	border: 2px solid #303F9F;
	border-radius: 30px;
	margin: 8px 3px;
	cursor: pointer;
}

.sort-oval.sort-oval-selected {
	border: none;
	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%);
}

.sort-oval p {
	position: absolute;
	width: 100%;
	line-height: 22px;
	padding-left: 7px;
	font-size: 12px;
}

.sort-oval.sort-oval-selected p {
	color: #fff;
	line-height: 25px;
}

.sort-oval span {
	position: absolute;
	z-index: 999;
	width: 18px;
	height: 18px;
	line-height: 17px;
	right: 2px;
	top: 2px;
	text-align: center;
	border-radius: 30px;
	background: none;
}

.sort-oval.sort-oval-selected span {
	color: #fff;
	line-height: 19px;
}

.filter-submitter {
	width: 100%;
	margin: 10px 0;
}

.filter-submit {
	border-radius: 50px;
	margin-top: 30px;
	line-height: 32px;
	text-align: center;
	color: #fff;
	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%);*/
	cursor: pointer;
}

.buy-brand {
	display: flex;
	justify-content: center;
}

.brand-item {
    position: relative;
    font-size: 20px;
	line-height: 28px;
    margin: 10px 10px;
	padding-bottom: 2px;
}

.brand-item::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: rgba(72, 44, 191, 7);
    transition: all ease-in-out .2s;
}

.brand-item:hover {
    cursor: pointer;
}

.brand-item:hover::after {
    width: 100%;
    left: 0;
}

.selected-brand::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 7);
}

.samsung-logo {
    /*font-family: 'ltuniversbold', Arial, sans-serif;*/
	line-height: 28px;
	color: #000;
}

.iphone-logo {
    /*font-family: 'iphone_logoregular', Arial, sans-serif;*/
    color: #000;
}

.huawei-logo {
    /*font-family: 'huawei_logoregular', Arial, sans-serif;*/
    color: #000;
    line-height: 31px;
}

.brand-dot {
	margin-top: 13px;
	font-size: 18px;
}

.payment-method {
	background: none !important;
}

@media only screen and (max-width: 767px) {
	.brand-dot {
		margin-top: 15px;
	}
}

/* Loading ellipsis */

.loader-css {
    justify-content: center;
    display: flex;
}

.bloader-css {
    justify-content: center;
    display: flex;
    height: 180px;
    margin-top: 130px;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgb(72, 44, 191);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

/* Loading ellipsis end */

.swiper-container {
  width: 100%;
  height: 45px;
}

.swiper-slide {
  text-align: center;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.buy-model-container {
	position: relative;
	border-top: 1px solid #8790af;
    border-bottom: 1px solid #8790af;
}

.buy-model-container:after {
    content: '';
    position: absolute;
    pointer-events: none;
    left: 0; right: 0;
    top: 0; bottom: 0;
    background-image:
    linear-gradient(to right, rgba(255,255,255,0.4), rgba(150,150,150,0) 150px),
    linear-gradient(to left , rgba(255,255,255,0.4), rgba(150,150,150,0) 150px) !important;
}

.buy-model-carousel {
	position: absolute;
	height: 45px;
    line-height: 45px;
}

.model-item {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #212121;
	-webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.selected-model {
	color: #303F9F;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
	content: "\f138";
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	content: "\f137";
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: FontAwesome;
	background: #fff;
}

.buy-model-error {
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: -2px;
}

.buy-status {
    text-align: center;
    border-bottom: 1px solid #8790af;
    padding: 6px 0;
}

.status-item {
    position: relative;
    padding: 0 20px;
    font-size: 14px;
    cursor: pointer;
    color: #212121;
  	text-transform: capitalize;
}

.status-item fa {
    margin-left: 10px;
}

.selected-status {
	color: #303F9F;
	font-weight: 600;
}

/* Cards */
.buy-cards-container {
	padding-bottom: 50px;
}

.buy-cards {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
	padding-bottom: 50px;
}

.buy-card {
    position: relative;
    /* background: #e8eaf6; */
    width: 250px;
    color: #212121;
    margin-top: 90px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 20px;
    border: none;
	background: #fff;
	-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); 
	opacity: 0;
	transform: translateY(30px) scale(0.95);
	transition: all 0.6s ease-out;
	will-change: opacity, transform;
}

.buy-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-img {
    position: absolute;
    left: 130px;
    margin-top: -50px;
    max-height: 200px;
}

.card-logo {
    left: 20px;
    margin-top: 50px;
    width: 110px;
    max-height: 70px;
}

.huawei-brand {
    font-family: 'huawei_logoregular', Arial, sans-serif;
    text-transform: uppercase;
    position: absolute;
    margin-top: 60px;
    right: 30px;
	opacity: 0.2;
}

.samsung-brand {
    font-family: 'ltuniversbold', Arial, sans-serif;
    text-transform: uppercase;
    position: absolute;
    margin-top: 60px;
    right: 30px;
	opacity: 0.3;
}

.iphone-brand {
    font-family: 'iphone_logoregular', Arial, sans-serif;
    text-transform: lowercase;
    position: absolute;
    margin-top: 60px;
    right: 30px;
	opacity: 0.3;	
}

.card-model {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-top: 40px;
    margin-left: -10px;
}

.card-nitty {
    margin-top: 20px;
}

.card-nitty li {
    text-transform: capitalize;
    list-style-type: circle;
}

.buy-card-price {
    justify-content: center;
    display: flex;
    margin: 20px 0;
    padding-bottom: 20px;
}

.card-currency {
    float: left;
    font-size: 16px;
    line-height: 16px;
}

.card-price {
    float: left;
    font-size: 40px;
}

.buy-card-buy {
    position: absolute;
    bottom: -15px;
    width: 100%;
    text-align: center;
}

.card-buy {
    color: #fff;
    border-radius: 50px;
    padding: 11px 30px 13px;
	line-height: 33px;
    cursor: pointer;
    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;
}

.card-buy:hover {
    color: #fff;
}

.card-buy:focus {
	color: #fff;
}

.buy-alert {
	display: none;
}

.buy-alert-container {
    justify-content: center;
    display: flex;
}

.brand-alert {
    color: #fff;
    width: 240px;
    border-radius: 40px;
    background: #283593;
    padding: 20px;
    text-align: center;
    margin: 40px;
}

.model-alert {
	color: #fff;
    width: 240px;
    border-radius: 40px;
    background: #0D47A1;
    padding: 20px;
    text-align: center;
    margin: 40px;
}

.status-alert {
	color: #fff;
    width: 240px;
    border-radius: 40px;
    background: #283593;
    padding: 20px;
    text-align: center;
    margin: 40px;
}

.alert-img {
    max-height: 90px;
    margin: 20px;
}

.alert-title {
    font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

.alert-text {
    opacity: 0.7;
}

.search-results {
	display: none;
	padding: 0 20px;
	border-top: 1px solid #ddd;
}

.results-title {
	font-size: 20px;
	font-weight: 700;
	margin: 10px 0;
}

.results-desc {
	color: #888;
	margin: 10px 0;
	line-height: 20px;
}

.results-filters {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.results-oval {
	display: none;
	position: relative;
	width: 120px;
	height: 31px;
	border: 2px solid #303F9F;
	border-radius: 30px;
	margin: 8px 3px;
	cursor: pointer;
}

.results-oval {
	pointer-events: none;
}

.results-oval.memory-oval {
	width: 90px;
}

.results-oval p {
	position: absolute;
	width: 100%;
	line-height: 28px;
	padding-left: 7px;
	font-size: 12px;
	text-transform: capitalize;
}

.results-oval span {
	position: absolute;
	z-index: 9;
	width: 22.5px;
	height: 22.5px;
	line-height: 25px;
	right: 2px;
	top: 2px;
	text-align: center;
	border-radius: 30px;
	color: #fff;
	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%);
}

.results-entries {
	display: block;
}

.cards-page {
	display: none;
}

.active-page {
	display: flex;
}

/*-- 21. Pagination --*/
.pagination {
	display: none;
}

.pagination .nav-links {
    padding: 5px 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); 
    display: inline-block;
	border-radius: 10px;
	background: #fff;
}

.pagination {
	display: none;
    text-align: center;
    margin-top: 80px;
    width: 100%;
	padding-bottom: 20px;
}

.pagination .nav-links .page-numbers {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 50%;
  	cursor: pointer;
}

.pagination .nav-links .page-numbers:hover {
    color: #303F9F;
    background-color: #f5f6ff;

}

.pagination .nav-links .page-numbers.current {
    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: #ffffff;
}

.sellerID,
.phoneID {
    display: none;
}

.buy-email-loader {
    display: none;
}

.offers-div {
	padding-top: 80px;
	background: #f5f6ff;
	-webkit-box-shadow: 0px 0px 50px 50px #f5f6ff;
	-moz-box-shadow: 0px 0px 50px 50px #f5f6ff;
    box-shadow: 0px 0px 50px 50px #f5f6ff;
	padding-bottom: 50px;
}

.offer-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.load-more {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.load-more button {
	border: none;
	padding: 8px 15px 10px;
	background: #ddd;
	color: #000;
	font-family: 'Varela Round';
	font-weight: 600;
	border-radius: 10px;
}

.load-more button:focus, .load-more button:hover {
	color: #000;
}

.params-loader {
	display: none;
}

.ofnext {
	display: none;
}

.more-cards {
	display: none;
}

.more-loader {
	justify-content: center;
    display: flex;
	margin-top: 40px;
}