/* General *********************/
body {
	font-family: "Satoshi-Variable", sans-serif;
	font-weight: 400;
    background: #ffffff;
    color: #00254a;
    /* -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; */
    overflow-x: hidden;
}
img {
  	-webkit-user-drag: none;
  	-khtml-user-drag: none;
  	-moz-user-drag: none;
  	-o-user-drag: none;
}
a, .btn {
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:focus, .btn:focus {
	outline: none;
	box-shadow: none;
}
p {
	color: #52525d;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
    font-size: 1.2rem;
	/* line-height: 1.1; */
}

.gr-clr {
	color: #dbe021;
}
.bl-clr {
	color: #008fef;
}
.dr-clr {
	color: #00254c;
}
.or-clr {
	color: #f99c00;
}
.gr-bg {
	background-color: #dbe021;
}
.bl-bg {
	background-color: #008fef;
}



/* NAVBAR ****************************************************/
.home-page-header {
	background-color: #ffffff;
}
.navbar .logo {
	height: 36px;
	width: auto;
}
.navbar-light .navbar-toggler {
	border-radius: 0px;
	border: 2px solid #00254c;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	border-radius: 5px;
}
.navbar-light .navbar-toggler:hover {
	border-color: #00254c;
}
.navbar-light .navbar-toggler:focus {
	outline: none;
	border-color: #00254c;
}
.navbar .nav-item .nav-link {
    font-family: 'satoshi-bold';
    color: #00254c;
	padding: 5px 20px;
	border-radius: 10px;
	margin-right: 5px;
	margin-left: 5px;
	font-size: 1.2rem;
}
.navbar .nav-item.active .nav-link,
.navbar .nav-item .nav-link:hover {
	color: #008fef;
}
.navbar .nav-item.nav-brd .nav-link {
    font-family: 'satoshi-regular';
    color: #00254c;
	padding: 5px 20px;
	border-radius: 30px;
	margin-left: 0px;
	margin-right: 0px;
	border: 2px solid #00254c;
}
.navbar .nav-item.nav-brd .nav-link strong {
	font-family: 'satoshi-bold';
}
.navbar .nav-item.nav-brd .nav-link:hover {
	color: #ffffff;
	background-color: #00254c;
}
.navbar .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00254c;
	align-self: center;
}
.navbar .nav-menu {
	flex: 1;
	align-items: center;
	justify-content: center;
}
.navbar .nav-lbl {
	margin-bottom: 0px;
	margin-right: 30px;
}
/* BUTTONS *********************************/
.btn-order {
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	font-size: 1.3rem;
	padding: 4px;
	padding-left: 20px;
	border-radius: 35px;
	height: 70px;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	line-height: 1;
}
.btn-order.btn-gr {
	background: #dbe021;
	color: #00254c;
}
.btn-order.btn-bl {
	background: #008fef;
	color: #ffffff;
}
.btn-order .arrow {
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	height: 100%;
	width: auto;
	margin-left: 15px;
	background-color: #ffffff;
	border-radius: 50%;
	padding: 8px;
}
.btn-order .ctx-txt {
	display: flex;
	flex-direction: column;
	width: calc(100% - 44px);
	text-align: right;
}
.btn-order .sm-txt-btn {
	margin-top: 6px;
	font-size: .8rem;
}
.btn-order:hover {
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.btn-order:hover .arrow {
	transform: rotate(-45deg);
}

.btn-channel {
	background: #008fef;
    color: #ffffff;
    border-radius: 30px;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-family: 'Satoshi-Black';
    padding: 10px 25px;
}
.btn-channel:hover {
	color: #ffffff;
	background-color: #0079cb;
}
/* Animations ************************************************/
@-webkit-keyframes floating {
	0% {
		-webkit-transform: translateY(0px);
				transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(10px);
				transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(0px);
				transform: translateY(0px);
	}
}
@keyframes floating {
	0% {
		-webkit-transform: translateY(0px);
				transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(10px);
				transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(0px);
				transform: translateY(0px);
	}
}
.floating {
	-webkit-animation: floating 3s ease infinite;
	animation: floating 3s ease infinite;
	will-change: transform;
}
.floating-rev {
	-webkit-animation: floating 3s ease infinite;
	animation: floating 3s ease infinite;
	will-change: transform;
	animation-direction: reverse;
}
.ad-1 {
	animation-delay: 1s;
}
.ad-2 {
	animation-delay: 1.5s;
}
.ad-3 {
	animation-delay: 2s;
}
@keyframes glowing-bl {
	0% {
	  	box-shadow: 0 0 5px #008fef;
	}
	50% {
	  	box-shadow: 0 0 20px #0079cb;
	}
	100% {
	 	box-shadow: 0 0 5px #008fef;
	}
}
.flashbtns-bl {
    -webkit-animation: glowing-bl 1500ms infinite;
    -moz-animation: glowing-bl 1500ms infinite;
    -o-animation: glowing-bl 1500ms infinite;
    animation: glowing-bl 1500ms infinite;
}

@keyframes glowing-gr {
	0% {
	  	box-shadow: 0 0 5px #dbe021;
	}
	50% {
	  	box-shadow: 0 0 20px #c9ce19;
	}
	100% {
	 	box-shadow: 0 0 5px #dbe021;
	}
}
.flashbtns-gr {
    -webkit-animation: glowing-gr 1500ms infinite;
    -moz-animation: glowing-gr 1500ms infinite;
    -o-animation: glowing-gr 1500ms infinite;
    animation: glowing-gr 1500ms infinite;
}
/* Home Panel Section ****************************************/
.sct-home-panel {
	padding: 0px 15px;
}
.sct-home-panel .sct-home-panel-inner {
	background-image: url(../img/gallery/img-001.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	padding: 80px 30px;
	border-radius: 25px;
	background-color: #008fef;
}
.sct-home-panel .tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #ffffff;
	font-size: 4rem;
}
.sct-home-panel .mn-txt {
	font-family: 'satoshi-regular';
	color: #ffffff;
}
.sct-home-panel .mn-txt span {
	font-family: 'satoshi-bold';
}
.sct-home-panel .txt-pay {
	display: flex;
	flex-direction: row;
	color: #ffffff;
	font-size: 1.1rem;
	align-items: center;
	background-color: rgba(0, 0, 0, .1);
	padding: 5px 15px;
	border-radius: 30px;
}
.sct-home-panel .txt-pay .icon {
	height: 30px;
	width: 30px;
	margin-right: 5px;
}
.sct-home-panel .ls-item {
	display: flex;
	flex-direction: row;
	color: #ffffff;
	font-size: 1.3rem;
	align-items: center;
}
.sct-home-panel .ls-item .icon {
	height: 26px;
	width: 26px;
	background-color: #ffffff;
	border-radius: 50%;
	padding: 4px;
	margin-right: 5px;
}
.sct-home-panel .btn-holder {
	margin-top: 15px;
	margin-bottom: 30px;
}
.ill-home-panel {
	height: 100%;
	position: relative;
}
.ill-home-panel .img-holder {
	background-image: url(../img/gallery/img-002.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: calc(100% + 100px);
	border-radius: 20px;
	background-color: #ffffff;
	z-index: 10;
}
.ill-home-panel .br-holder {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
	height: calc(100% + 100px);
	z-index: 9;
	border: 2px solid #dbe021;
	border-radius: 20px;
}
.ill-home-panel .vle-blk-ch {
	position: absolute;
	padding: 10px 20px;
	border-radius: 20px;
	background-color: #ffffff;
	z-index: 11;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
	left: 30px;
	top: -30px;
}
.ill-home-panel .vle-blk-ch .v-tlt {
	color: #008fef;
	margin: 0px;
	font-family: 'satoshi-black';
	line-height: 1;
}
.ill-home-panel .vle-blk-ch .v-txt {
	margin: 0px;
	color: #00254c;
}

.ill-home-panel .vle-blk-fs {
	position: absolute;
	padding: 10px 20px;
	border-radius: 20px;
	background-color: #dbe021;
	z-index: 11;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
	right: -35px;
	top: 100px;
}
.ill-home-panel .vle-blk-fs .v-tlt {
	color: #00254c;
	margin: 0px;
	font-family: 'satoshi-black';
	line-height: 1;
}
.ill-home-panel .vle-blk-fs .v-txt {
	margin: 0px;
	color: #00254c;
}

.ill-home-panel .price-blk {
	width: 340px;
	position: absolute;
	bottom: -40px;
	left: -50%;
	padding: 10px;
	border-radius: 20px;
	background-color: #ffffff;
	z-index: 11;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
}
.ill-home-panel .price-blk .price-ctx {
	background-color: #f5f5f5;
	padding: 10px;
	border-radius: 15px;
}
.ill-home-panel .price-blk .vle {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.ill-home-panel .price-blk .price {
	font-family: 'satoshi-black';
	color: #008fef;
	font-size: 10rem;
	margin: 0px;
	line-height: .85;
}
.ill-home-panel .price-blk .unit {
	font-family: 'satoshi-black';
	font-size: 3rem;
	color: #008fef;
	margin: 0px;
	line-height: 1;
}
.ill-home-panel .price-blk .year {
	margin-bottom: 30px;
	line-height: 1;
}
.ill-home-panel .price-blk .slg-ctx {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 10px;
}
.ill-home-panel .price-blk .slg-ctx .icon {
	height: 40px;
	width: 40px;
	margin-right: 5px;
}
.ill-home-panel .price-blk .slg-ctx .slg-tlt {
	font-family: 'satoshi-bold';
	text-transform: uppercase;
	color: #00254c;
	margin: 0px;
	line-height: 1;
}

/* Channels Section ****************************************/
.sct-channels {
    padding-top: 60px;
    padding-bottom: 50px;
}
.sct-channels .tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 4rem;
	line-height: 1;
}
.sct-channels .channels-list {
	width: 100%;
	margin-top: 20px;
}

/* TV Section ****************************************/
.sct-tv {
	background-color: #f5f5f5;
	padding-top: 50px;
    padding-bottom: 80px;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
}
.sct-tv .tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 4rem;
	line-height: 1;
}

.sct-tv .tv-layers {
	position: relative;
	/* width: 100%; */
	margin: 0px 20px;
}
.sct-tv .tv-layers .tv-owl {
	border-radius: 25px;
	overflow: hidden;
	width: 100%;
	height: auto;
	z-index: 10;
}
.sct-tv .tv-layers .br-holder {
	position: absolute;
	top: 15px;
	left: -15px;
	width: 100%;
	height: 100%;
	z-index: 8;
	border: 2px solid #00254c;
	border-radius: 20px;
}
.sct-tv .tv-layers .live-4k {
	position: absolute;
	width: auto;
	height: 80px;
	top: 30px;
	left: -30px;
	z-index: 11;
}

.sct-tv .leagues-list {
	position: absolute;
	width: 100%;
	height: auto;
	bottom: 120px;
	left: 0px;
	z-index: 9;
}
.sct-tv .leagues-owl .logo-holder .logo-league {
	border-radius: 15px;
	padding: 4px;
	/* border: 10px solid #ffffff; */
	/* -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); */
}
/* Carousels ******************************************/
.devices-owl .logo-holder,
.channels-owl .logo-holder,
.leagues-owl .logo-holder {
	padding: 10px;
}
.devices-owl .logo-holder .logo-channel,
.channels-owl .logo-holder .logo-channel,
.leagues-owl .logo-holder .logo-league {
	width: 100%;
	height: auto;
}

/* Services Section ****************************************/
.sct-services {
	padding-top: 50px;
    padding-bottom: 60px;
	padding-right: 15px;
	padding-left: 15px;
}
.sct-services .lf-ctx {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.sct-services .tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 4rem;
	line-height: 1;
	text-align: right;
	width: 80%;
	margin-bottom: 15px;
}
.sct-services .mn-txt {
	text-align: right;
	width: 80%;
}
.sct-services .ls-item {
	width: 100%;
	display: flex;
	flex-direction: row;
	color: #00254c;
	font-size: 1.3rem;
	align-items: center;
	background-color: #e5f3fc;
    padding: 10px 15px;
	border-radius: 30px;
}
.sct-services .ls-item .icon {
	height: 26px;
	width: 26px;
	background-color: #dbe021;
	border-radius: 50%;
	padding: 4px;
	margin-right: 10px;
}
.ill-services {
	height: 400px;
	position: relative;
	margin: 20px;
}
.ill-services .img-holder {
	background-image: url(../img/gallery/img-004.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background-color: #ffffff;
	z-index: 10;
}
.ill-services .br-holder {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
	height: 100%;
	z-index: 9;
	border: 2px solid #00254c;
	border-radius: 20px;
}
.ill-services .update {
	border-radius: 20px;
	background-color: #008fef;
	color: #ffffff;
	padding: 10px 15px;
	position: absolute;
	top: -30px;
	left: 30px;
	width: 250px;
	display: flex;
	flex-direction: row;
	align-items: center;
	z-index: 20;
}
.ill-services .update .icon {
	height: 50px;
	width: 50px;
	margin-right: 8px;
}
.ill-services .update .txt {
	margin: 0px;
	color: #ffffff;
	line-height: 1.1;
}
.ill-services .support {
	border-radius: 20px;
	background-color: #ffffff;
	color: #00254c;
	padding: 20px 25px;
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 250px;
	display: flex;
	flex-direction: row;
	align-items: center;
	z-index: 20;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
}
.ill-services .support .icon {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-color: #008fef;
	top: -25px;
	left: -25px;
	padding: 10px;
	position: absolute;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
}
.ill-services .support .icon img {
	width: 100%;
	height: 100%;
}
.ill-services .support .txt {
	margin: 0px;
	color: #00254c;
	line-height: 1.1;
}

/* Steps Section ****************************************/
.sct-steps {
	background-color: #f5f5f5;
	padding-top: 50px;
    padding-bottom: 50px;
}
.sct-steps .tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 4rem;
	line-height: 1;
}

.step-blk {
	border-radius: 25px;
	background-color: #ffffff;
	position: relative;
	padding: 20px;
	padding-bottom: 80px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}
.step-blk .blk-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 15px;
}
.step-blk .blk-header .blk-tlt {
	flex: 1;
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	margin: 0px;
}
.step-blk .blk-header .icon {
	width: 50px;
	height: 50px;
	margin-left: 10px;
}
.step-blk .blk-desc {
	flex: 1;
	margin: 0px;
}
.step-blk .step {
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	position: absolute;
	left: 20px;
	bottom: -30px;
	color: #008fef;
	font-size: 6rem;
	line-height: 1;
}
/* Movies Section ****************************************/
.sct-movies {
	padding-top: 50px;
	padding-right: 15px;
	padding-left: 15px;
}
.sct-movies .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 4rem;
	line-height: 1;
}
.movies-panel {
	background-image: url(../img/gallery/img-005.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	padding: 25px 0px;
	border-radius: 25px;
	background-color: #dbe021;
	margin-bottom: 15px;
}
.movies-panel .mov-list {
	margin-left: -15px;
	margin-right: -15px;
}
.movies-panel .mov-owl .mov-holder {
    padding: 0px;
}
.movies-panel .mov-owl .mov-holder .mov-poster {
    width: 100%;
    height: auto;
    border-radius: 25px;
}
/* Matchday Section ****************************************/
.sct-matchday {
	padding-right: 15px;
	padding-left: 15px;
}
.matchday-panel {
	background-image: url(../img/gallery/img-006.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	padding: 50px 0px;
	border-radius: 25px;
	background-color: #00254c;
	margin-bottom: 15px;
}
.sct-matchday .lf-ctx {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.sct-matchday .lf-ctx .img-tlt {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
.sct-matchday .lf-ctx .txt {
	text-align: right;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 300;
}
.sct-matchday .date {
	font-family: 'satoshi-black';
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 30px;
}
.sct-matchday .match {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-left: 40px;
	padding-right: 40px;
}
.sct-matchday .dark-banner {
	background-color: rgba(0, 0, 0, .4);
	position: absolute;
	top: 50px;
	left: 0;
	height: 60px;
	width: 100%;
	z-index: 0;
	border-radius: 50px;
}
.sct-matchday .match .vs-txt {
	font-family: 'Satoshi-Black';
	color: #ffffff;
	font-size: 3rem;
	line-height: 1;
	flex: 1;
	text-align: center;
	z-index: 9;
	margin-bottom: 0px;
}
.sct-matchday .match .team {
	height: 160px;
	width: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
}
.sct-matchday .match .team img {
	height: 100%;
	width: auto;
}

.sct-matchday .clock-holder {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px 15px;
	margin-top: 15px;
}
.sct-matchday .clock {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 15px;
	color: #ffffff;
}
.sct-matchday .clock .column {
	text-align: center;
	margin-right: 10px;
	margin-left: 10px;
}
.sct-matchday .clock .timer {
	font-size: 4rem;
	font-family: 'Satoshi-Medium';
	line-height: 1;
}
.sct-matchday .clock .timer.dots {
	font-size: 3rem;
	font-family: 'Satoshi-regular';
}
.sct-matchday .clock .text {
	font-family: 'Satoshi-Medium';
	font-size: 12px;
}
/* Leagues Section ****************************************/
.sct-leagues {
	padding-right: 15px;
	padding-left: 15px;
}
.leagues-panel {
	background-image: url(../img/gallery/img-006.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	padding: 50px 0px;
	border-radius: 25px;
	background-color: #00254c;
	margin-bottom: 15px;
	text-align: center;
}
.sct-leagues .leagues-ctx {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sct-leagues .leagues-list {
	width: 100%;
}
.sct-leagues .leagues-owl .logo-holder .logo-league {
	border-radius: 25px;
	padding: 10px;
}

.sct-leagues .leagues-ctx .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #ffffff;
	font-size: 4rem;
	line-height: 1;
}
.sct-leagues .leagues-ctx .mn-txt {
	font-family: 'satoshi-bold';
	text-transform: uppercase;
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
}
.sct-leagues .leagues-ctx .txt {
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 300;
}

/* Reviews Section ****************************************/
.sct-reviews {
	background-color: #f5f5f5;
	padding-top: 50px;
    padding-bottom: 50px;
}
.sct-reviews .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 2.5rem;
	line-height: 1;
	text-align: right;
}
.sct-reviews .bd-txt {
	font-weight: bold;
	margin-bottom: 0px;
}
.sct-reviews .content-ctx {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sct-reviews .score {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 20px;
}
.sct-reviews .score .score-txt {
	margin-bottom: 0px;
	font-weight: 400;
}
.sct-reviews .score .score-logo {
	height: 40px;
	width: auto;
	margin-left: 15px;
}
.splide {
	margin-left: -15px;
	margin-right: -15px;
}
.splide__slide {
	padding: 15px;
}
.splide__pagination {
	bottom: -.5em;
}
.splide__pagination__page {
	visibility: hidden;
	display: none;
}
.splide__arrow {
	border: 2px solid #00254c;
	background: transparent;
}
.splide__arrow svg {
	fill: #00254c;
}
.splide__arrow--prev {
    left: -3em;
}
.splide__arrow--next {
    right: -3em;
}
.splide__slide {
	opacity: 1;
}
.splide__slide.is-visible {
	opacity: 1;
}
.trustpilot-card {
	background: #ffffff;
	color: #00254c;
	padding: 25px;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 25px;
}
.trustpilot-card .rating {
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.trustpilot-card .stars {
	width: 150px;
}
.trustpilot-card .stars img {
	width: 25px;
	height: auto;
}
.trustpilot-card .time {
	font-size: 12px;
	margin: 0px;
	text-align: right;
	width: calc(100% - 150px);
}
.trustpilot-card .tlt {
	font-weight: 500;
	flex: 1;
}
.trustpilot-card .txt {
	overflow: hidden;
   	text-overflow: ellipsis;
   	display: -webkit-box;
   	-webkit-line-clamp: 2;
    line-clamp: 2;
   	-webkit-box-orient: vertical;
	font-weight: 400;
	font-size: .9rem;
	margin: 0px;
}
.trustpilot-card .ln-separator {
	background: #d9d9d9;
	width: 60px;
	height: 1px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.trustpilot-card .name {
	margin: 0px;
	font-family: 'Satoshi-Medium';
	color: #008fef;
}

/* faq Section ****************************************/
.sct-faq {
    padding-top: 50px;
    padding-bottom: 50px;
}
.sct-faq .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 4rem;
	line-height: 1;
}

.sct-faq .faq-blk {
	margin-bottom: 15px;
	border-radius: 25px;
	overflow: hidden;
}
.sct-faq .faq-blk .blk-header {
	background-color: #e5f3fd;
    padding: 15px;
    display: flex;
    flex-direction: row;
	align-items: center;
    cursor: pointer;
	padding-left: 25px;
}
.sct-faq .faq-blk .blk-header .ctx {
    width: calc(100% - 50px);
	padding-right: 15px;
}
.sct-faq .faq-blk .blk-header .blk-tlt {
    font-weight: 500;
    margin-bottom: 0px;
}
.sct-faq .faq-blk .blk-header .blk-act {
    background: #dbe021;
    height: 50px;
    width: 50px;
    padding: 10px;
	border-radius: 50%;
}
.sct-faq .faq-blk .blk-header .blk-act img {
	width: 100%;
    height: auto;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.sct-faq .faq-blk .blk-header:not(.collapsed) .blk-act img {
	-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sct-faq .faq-blk .faq-content {
	padding: 25px;
	background: #008fef;
}
.sct-faq .faq-blk .faq-content .txt {
	margin: 0px;
	font-size: 1.1rem;
	font-weight: 400;
	color: #ffffff;
}

/* devices Section ****************************************/
.sct-devices {
    padding-top: 50px;
    padding-bottom: 50px;
}
.sct-devices .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 2.5rem;
	line-height: 1;
	text-align: center;
	margin-bottom: 20px;
}
.sct-devices .devices-owl {
	padding: 10px;
}
.sct-devices .devices-owl .logo-holder .logo-device {
	width: 100%;
	height: auto;
}

/* Pre Footer Section ****************************************/
.sct-pre-footer {
    padding-top: 50px;
    padding-bottom: 50px;
	background-color: #dbe021;
	background-image: url(../img/gallery/img-007.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
}
.sct-pre-footer .mn-tlt {
	color: #00254c;
	font-size: 2.5rem;
	line-height: 1;
	text-align: center;
	margin-bottom: 20px;
}

/* Footer Section ************************/
.sct-footer {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f5f5f5;
	color: #00254c;
}
.sct-footer .logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}
.sct-footer .txt {
    font-size: 1rem;
    margin-bottom: 0px;
	color: #52525d;
}
.sct-footer .support {
    font-weight: bold;
    color: #008fef;
    font-size: 1rem;
}
.sct-footer .links-h {
    font-family: 'Satoshi-bold';
    color: #52525d;
    font-size: .9rem;
    text-transform: uppercase;
}
.sct-footer .links-li {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 30px;
}
.sct-footer .ln-link {
    font-family: 'Satoshi-bold';
    font-size: 1.1rem;
    color: #00254c;
}
.sct-footer .ln-link:hover {
    color: #008fef;
    text-decoration: none;
}


/* exit Intent Dialog *************************************/
.modal-exit .modal-content {
	background: transparent;
	border: none;
}
.modal-exit .modal-header {
	border: none;
}
.modal-exit .modal-header .close {
	color: #2a2a2a;
	font-size: 3rem;
	opacity: 1;
	text-shadow: none;
	position: absolute;
	bottom: -15px;
	left: calc(50% - 30px);
	z-index: 9999;
	background: #f5f5f5;
	color: #00254c;
	border: 2px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 60px;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	padding: 0px;
	padding-bottom: 3px;
	border-radius: 30px;
}
.modal-exit .modal-header .close:not(:disabled):not(.disabled):focus, .modal-exit .modal-header .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    color: #dbe021;
	background-color: #00254c;
    outline: none;
}
.modal-exit .modal-body {
	background: #008fef;
	border-radius: 25px;
	padding: 50px;
	color: #ffffff;
	text-align: center;
	background-image: url(../img/gallery/img-001.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
}
.modal-exit .modal-body .ill-offre {
	width: 100%;
	height: auto;
	max-width: 500px;
}
.modal-exit .modal-body .tlt {
	color: #ffffff;
	font-family: 'Satoshi-Black';
	font-size: 1.7rem;
}
.modal-exit .promo-code {
	border: 2px solid #ffffff;
	color: #ffffff;
	font-family: 'Satoshi-Black';
	text-align: center;
	padding: 10px;
	margin-top: 15px;
	margin-bottom: 30px;
	border-radius: 50px;
}
.modal-exit .btn-act {
	width: 100%;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	background: #dbe021;
	color: #00254c;
	font-size: 1.4rem;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
}
.modal-exit .btn-act:hover {
	background-color: #c9ce19;
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.modal-exit p {
	color: #ffffff;
}
.modal-exit .btn-act .sm-txt-btn {
	color: rgba(0, 0, 0, .7);
	font-size: .8rem;
}
.modal-exit .refund-txt {
	text-align: center;
	font-size: .9rem;
	margin-bottom: 0px;
	margin-top: 5px;
	font-weight: bold;
}

/* Pages *****************************************/
.sct-page-header {
	padding-right: 15px;
	padding-left: 15px;
}
.page-panel {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	padding: 30px 0px;
	border-radius: 25px;
	margin-bottom: 15px;
	text-align: center;
}
.page-panel.blue-panel {
	background-image: url(../img/gallery/img-007.png);
	background-color: #008fef;
}
.page-panel.green-panel {
	background-image: url(../img/gallery/img-007.png);
	background-color: #dbe021;
}
.sct-page-header .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #ffffff;
	font-size: 3rem;
	text-align: center;
}
.sct-page-header .mn-txt {
	color: #ffffff;
	margin: 0px;
}

.page-panel.green-panel .mn-tlt,
.page-panel.green-panel .mn-txt {
	color: #00254c;
}

.sct-page-channels {
	padding-bottom: 50px;
}
.sct-page-channels .row-tlt {
	margin-top: 25px;
	text-align: center;
}
.sct-page-channels .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #00254c;
	font-size: 3rem;
	text-align: center;
}

.sct-page-channels .search-input {
	position: relative;
}
.sct-page-channels .search-input .form-control {
	padding: 0 25px;
    height: 70px;
    color: #00254c;
    border-radius: 35px;
	background-color: #f5f5f5;
	border: 2px solid #e2e2e2;
	font-family: 'Satoshi-Black';
    font-size: 1.4rem;
}
.sct-page-channels .search-input .form-control:focus,
.sct-page-channels .search-input .form-control:focus {
	outline: none;
	border: 2px solid #008fef;
	box-shadow: none;
}
.sct-page-channels .search-input .item-icon {
	position: absolute;
	right: 7px;
	top: 7px;
	color: #ffffff;
	height: 55px;
	width: 55px;
	padding: 10px;
	pointer-events: none;
	border-radius: 10px;
}
.sct-page-channels .search-input .item-icon img {
	width: 100%;
	height: auto;
}

.sct-page-channels .chl-blk {
	position: relative;
	margin-top: 15px;
}
.sct-page-channels .chl-blk .slct-cntry {
    padding: 0 25px;
    height: 70px;
    color: #ffffff;
    border-radius: 35px;
    border: none;
    background-color: #008fef;
    cursor: pointer;
    font-family: 'Satoshi-Black';
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.sct-page-channels .chl-blk .slct-cntry:focus {
	outline: none;
	box-shadow: none;
}
.sct-page-channels .chl-blk .item-act {
	position: absolute;
	right: 7px;
	top: 7px;
	background: #00254c;
	color: #ffffff;
	height: 55px;
	width: 55px;
	padding: 10px;
	pointer-events: none;
	border-radius: 50%;
}
.sct-page-channels .chl-blk .item-act img {
	width: 100%;
	height: auto;
	-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sct-page-channels .chl-blk .outer-ls {
	background: #f5f5f5;
	border-radius: 25px;
	padding: 15px;
	margin-bottom: 15px;
}
.sct-page-channels .chl-blk .inner-ls {
	padding: 15px;
	height: 400px;
	overflow-y: auto;
}
.sct-page-channels .chl-blk .inner-ls .item-ls {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
}
.sct-page-channels .chl-blk .asterisk {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}


/* Text Pages *****************************************/
.sct-text-ctx {
	padding-top: 50px;
	padding-bottom: 50px;
}
.sct-text-ctx .tcpp-tlt {
	color: #008fef;
	font-family: 'Satoshi-Medium';
}
.sct-text-ctx .terms-wraper:not(:last-child) {
    margin-bottom: 30px;
}
.sct-text-ctx .order-list li:not(:last-child) {
    margin-bottom: 10px;
}
.sct-text-ctx .order-list {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
	color: #303356;
}
.sct-text-ctx .order-list li {
    list-style: decimal;
    list-style-position: inside;
}
.sct-text-ctx .order-list {
    padding-left: 0px;
    margin-bottom: 0px;
}

/* invoice *****************************************/
.sct-invoice {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #f5f5f5;
}
.sct-invoice .mn-tlt {
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
}
.sct-invoice .spp-tlt {
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
}
.info-panel {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 15px;
	margin-bottom: 15px;
	background: #008fef;
	border-radius: 25px;
}
.info-panel .info-icon {
	width: 70px;
	height: 70px;
}
.info-panel .info-text {
	width: calc(100% - 70px);
	padding-left: 10px;
}
.info-panel .info-text .tlt {
	color: #ffffff;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	margin-bottom: 0px;
}
.info-panel .info-text .txt {
	margin: 0px;
	color: #ffffff;
}

.codes-blk {
	background-color: #ffffff;
	border-radius: 25px;
	padding: 20px;
	margin-bottom: 15px;
}
.codes-blk .code-details {
	margin-bottom: 15px;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 15px;
}
.codes-blk .code-details .detail-tlt {
	margin-bottom: 5px;
}
.codes-blk .code-details .detail-txt {
	margin: 0px;
}

.codes-blk .icon-panel {
    padding: 10px;
    display: flex;
    flex-direction: row;
	align-items: center;
    margin-bottom: 5px;
}
.codes-blk .icon-panel .icon {
	width: 60px;
}
.codes-blk .icon-panel .icon img {
	width: 100%;
	height: auto;
}
.codes-blk .icon-panel .ctx {
	padding-left: 15px;
	flex: 1;
}
.codes-blk .icon-panel .ctx .txt {
	margin: 0px;
	color: #00254c;
}

.codes-blk .btn-tuto {
	background-color: #00254c;
	color: #ffffff;
	border-radius: 30px;
	width: 100%;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	padding: 0.75rem 0.75rem;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 1.2rem;
}
.codes-blk .btn-tuto:hover {
	background-color: #008fef;
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.delivery-blk {
	background-color: #ffffff;
	border-radius: 25px;
	margin-bottom: 15px;
	padding: 20px;
}
.delivery-blk .blk-tlt {
	font-family: 'Satoshi-bold';
    color: #008fef;
}
.delivery-blk .res-panel {
	background: #eeefca;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
	margin-left: -20px;
	margin-right: -20px;
    margin-bottom: 5px;
	align-items: center;
	flex-wrap: wrap;
	align-items: start;
}
.delivery-blk .res-panel.bg-soft-gr {
	background: #eeefca;
}
.delivery-blk .res-panel.bg-soft-bl {
	background: #e5f3fc;
}
.delivery-blk .res-panel .ctx {
	width: calc(100% - 50px);
}
.delivery-blk .res-panel .ctx .lbl {
	font-weight: 700;
	margin: 0px;
	color: #00254c;
}
.delivery-blk .res-panel .ctx .vle {
	margin: 0px;
	word-break: break-all;
	padding-right: 15px;
}
.delivery-blk .res-panel .copy-btn {
	background-color: #00254c;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 25px;
}
.delivery-blk .res-panel .copy-btn img {
	width: 100%;
	height: 100%;
	padding: 8px;
}
.delivery-blk .icon-panel {
    padding: 10px;
    display: flex;
    flex-direction: row;
	align-items: center;
    margin-bottom: 5px;
}
.delivery-blk .icon-panel .icon {
	width: 60px;
}
.delivery-blk .icon-panel .icon img {
	width: 100%;
	height: auto;
}
.delivery-blk .icon-panel .ctx {
	padding-left: 15px;
	flex: 1;
}
.delivery-blk .icon-panel .ctx .txt {
	margin: 0px;
	color: #00254c;
}
.delivery-blk .tlt-ref {
	font-family: 'Satoshi-bold';
	text-transform: uppercase;
	margin-top: 25px;
	color: #008fef;
	text-align: center;
}
.delivery-blk .txt-ref {
	text-align: center;
}
.delivery-blk .ref-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.delivery-blk .ref-actions .img-socials {
	margin-top: 15px;
	height: 30px;
	width: auto;
}
.delivery-blk .btn-tuto {
	background-color: #00254c;
	color: #ffffff;
	border-radius: 30px;
	width: 100%;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	padding: 0.75rem 0.75rem;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 1.2rem;
}
.delivery-blk .btn-tuto:hover {
	background-color: #008fef;
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.ipt-ref {
	width: 100%;
	background-color: #ffffff;
	border: 2px solid #ffffff;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 70px;
	border-radius: 35px;
	padding-left: 15px;
}
.ipt-ref.ipt-bl {
	border-color: #008fef;
}
.ipt-ref .form-group {
	margin: 0px;
	width: calc(100% - 105px);
}
.ipt-ref .form-group .form-control {
	font-family: 'Roboto', sans-serif;
	border-radius: 35px;
	border: none;
	background: #ffffff;
	padding: 0.75rem 0.75rem;
	height: auto;
	font-size: 1.3rem;
	pointer-events:none;
}
.ipt-ref .form-group .form-control::placeholder {
	color: #999999;
}
.ipt-ref .form-group .form-control:focus,
.ipt-ref .form-group .custom-select:focus {
	outline: none;
	border: none;
	box-shadow: none;
}
.ipt-ref .btn-copy {
	width: 100px;
	height: 60px;
	color: #ffffff;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	font-family: 'Satoshi-Black';
	padding: 0px;
	border: 0px;
	background-color: #008fef;
	cursor: pointer;
}
/* Checkout *****************************************/
.sct-checkout {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #f5f5f5;
}
.add-on-blk {
	background-color: #ffffff;
	border-radius: 25px;
	padding: 4px;
	margin-bottom: 15px;
}
.add-on-blk .blk-header {
	background-color: #008fef;
	padding: 15px;
	border-radius: 20px;
}
.add-on-blk .blk-header .tlt {
	font-family: 'Satoshi-bold';
	margin-bottom: 5px;
	line-height: 1;
	color: #ffffff;
}
.add-on-blk .blk-header .txt {
	margin-bottom: 0px;
	line-height: 1;
	color: #ffffff;
}
.add-on-blk .blk-ctx {
	display: flex;
	flex-direction: row;
	padding: 10px 15px;
}
.add-on-blk .blk-ctx .price {
	flex: 1;
	font-family: 'Satoshi-black';
	margin-bottom: 0px;
	line-height: 1;
	font-size: 2rem;
	align-self: center;
}
.add-on-blk .blk-ctx .price span {
	font-family: 'Satoshi-regular';
}

.add-on-blk .setup {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.add-on-blk .setup .quantity-field {
	width: calc(100% - 100px);
	height: 40px;
	pointer-events:none;
	border: 0px;
	background-color: transparent;
	font-family: 'Satoshi-Black';
	font-size: 2.5rem;
	text-align: right;
	color: #00254c;
	margin-right: 5px;
}
.add-on-blk .setup .btn {
	padding: 4px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background: #00254c;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 5px;
}
.add-on-blk .setup .btn img {
	width: 100%;
	height: 100%;
}

.add-on-blk .setup .lbl {
	font-family: 'Satoshi-Black';
	margin-right: 10px;
	margin-bottom: 0px;
}
.add-on-blk .switch {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 40px;
	margin-bottom: 0px;
}
.add-on-blk .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.add-on-blk .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #eeeeee;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 20px;
}
.add-on-blk .slider:before {
	position: absolute;
	content: "";
	height: 32px;
	width: 32px;
	left: 4px;
	bottom: 4px;
	border-radius: 50%;
	background-color: #848484;
	-webkit-transition: .4s;
	transition: .4s;
}
.add-on-blk input:checked + .slider {
	background-color: #00254c;
}
.add-on-blk input:checked + .slider:before {
	-webkit-transform: translateX(40px);
	-ms-transform: translateX(40px);
	transform: translateX(40px);
	background-color: #ffffff;
}

.payment-blk {
	background-color: #ffffff;
	border-radius: 25px;
	padding: 20px;
	margin-bottom: 15px;
}
.payment-blk .blk-tlt {
	font-family: 'Satoshi-bold';
	color: #008fef;
}
.payment-blk .form-group .form-control {
	font-family: 'Roboto', sans-serif;
	height: auto;
	border-radius: 30px;
	border: 2px solid #e8e8e8;
	background: #f6f7f9;
	height: 46px;
	padding-left: 20px;
}
.payment-blk .form-group .form-control::placeholder {
	color: #999999;
}
.payment-blk .form-group .form-control:focus,
.payment-blk .form-group .custom-select:focus {
	outline: none;
	border: 2px solid #008fef;
	box-shadow: none;
}
.payment-blk p.lbl,
.payment-blk .form-group label {
	font-size: 1rem;
	margin-bottom: 2px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
}
.payment-blk .form-group label span {
    color: #e64a58;
}
.payment-blk .form-group .invalid-text {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
	font-family: 'Roboto', sans-serif;
    color: #e64a58;
}
.payment-blk .alert-danger {
	border: none;
	border-radius: 30px;
}

.payment-blk .btn-pay {
	background-color: #00254c;
	color: #ffffff;
	border-radius: 30px;
	width: 100%;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	padding: 0.75rem 0.75rem;
	margin-bottom: 15px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.payment-blk .btn-pay:hover {
	background-color: #008fef;
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.payment-blk .btn-pay img {
	height: 30px;
    width: auto;
	margin-left: 8px;
}

.payment-blk .btn-pypl {
	border-radius: 30px;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	padding: 0.75rem 0.75rem;
	margin-bottom: 15px;
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #1a3257;
    background: #ffc439;
}
.payment-blk .btn-pypl img {
    height: 30px;
    width: auto;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding-left: 10px;
}
.payment-blk .btn-pypl:hover {
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.payment-blk .img-secure {
	margin-top: 15px;
	width: 80%;
	height: auto;
}

.order-blk {
	background-color: #ffffff;
	border-radius: 25px;
	margin-bottom: 15px;
}
.order-blk .blk-tlt {
	font-family: 'Satoshi-bold';
	color: #008fef;
	padding: 20px;
	margin: 0px;
}
.order-blk .order-line {
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #e5f3fc;
	padding: 10px 20px;
	margin-bottom: 10px;
}
.order-blk .order-line.discount-line {
	background-color: #dbe021;
}
.order-blk .order-line .txt {
	margin: 0px;
	line-height: 1;
	color: #00254c;
	margin-right: 10px;
}
.order-blk .order-line .price {
	flex: 1;
	font-family: 'Satoshi-black';
	margin-bottom: 0px;
	line-height: 1;
	font-size: 1.8rem;
	align-self: center;
	text-align: right;
}
.order-blk .order-line .price span {
	font-family: 'Satoshi-regular';
}

.order-blk .total-line {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px 20px;
	padding-bottom: 20px;
}
.order-blk .total-line .txt {
	margin: 0px;
	line-height: 1;
	color: #00254c;
	margin-right: 10px;
	font-size: 1.5rem;
}
.order-blk .total-line .price {
	flex: 1;
	font-family: 'Satoshi-black';
	margin-bottom: 0px;
	line-height: 1;
	font-size: 2rem;
	align-self: center;
	text-align: right;
	color: #008fef;
}
.order-blk .total-line .price span {
	font-family: 'Satoshi-regular';
}

.promo-blk {
	background-color: #ffffff;
	border-radius: 25px;
	padding: 20px;
	margin-bottom: 15px;
}
.promo-blk .blk-tlt {
	font-family: 'Satoshi-bold';
	color: #008fef;
}
.promo-blk .form-group .form-control {
	font-family: 'Roboto', sans-serif;
	height: auto;
	border-radius: 30px;
	border: 2px solid #e8e8e8;
	background: #f6f7f9;
	height: 46px;
	padding-left: 20px;
}
.promo-blk .form-group .form-control::placeholder {
	color: #999999;
}
.promo-blk .form-group .form-control:focus,
.promo-blk .form-group .custom-select:focus {
	outline: none;
	border: 2px solid #008fef;
	box-shadow: none;
}
.promo-blk .alert {
	border: none;
	border-radius: 30px;
}

.promo-blk .btn-apply {
	background: #00254c;
    color: #ffffff;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'Satoshi-Black';
    padding: 10px 25px;
}
.promo-blk .btn-apply:hover {
	color: #ffffff;
	background-color: #008fef;
}

.sct-checkout-footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #00254c;
	text-align: center;
}
.sct-checkout-footer .logo {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}
.sct-checkout-footer .support {
    font-weight: bold;
    color: #dbe021;
    font-size: 1rem;
	margin-bottom: 0px;
}


/* loader *********************************************/
.loader-overlay {
	position: absolute;
	z-index: 9999;
	top: 0px;
	bottom: 0px;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .4);
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader-overlay .loader {
	width: 88px;
	height: 88px;
	border: 4px dotted #dbe021;
	border-style: solid solid dotted dotted;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 2s linear infinite;
}
.loader-overlay .loader::after {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 4px dotted #008fef;
	border-style: solid solid dotted;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	animation: rotationBack 1s linear infinite;
	transform-origin: center center;
}
	
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 
@keyframes rotationBack {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

/* Free Trial *****************************************/
.trial-navbar {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trial-navbar .logo {
	height: 36px;
    width: auto;
}
.sct-trial-panel {
	padding: 0px 15px;
}
.sct-trial-panel .sct-trial-panel-inner {
	background-image: url(../img/gallery/img-001.png);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	padding: 80px 30px;
	border-radius: 25px;
	background-color: #008fef;
}
.sct-trial-panel .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #ffffff;
	font-size: 3rem;
	text-align: center;
}
.sct-trial-panel .mn-txt {
	color: #ffffff;
	text-align: center;
}
.sct-trial-panel .ctd-txt {
	color: #ffffff;
	text-align: center;
}
.sct-trial-panel .check-ls {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0px;
	margin: 0px;
}
.sct-trial-panel .check-item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0px 10px;
	font-size: 1.3rem;
	color: #ffffff;
	margin-bottom: 15px;
}
.sct-trial-panel .check-item img {
	height: 26px;
    width: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 4px;
    margin-right: 5px;
}

.sct-trial-panel .trial-input {
	margin: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
    align-items: center;
	margin-bottom: 5px;
}
.sct-trial-panel .trial-input .form-group {
	flex: 1;
	margin: 0px;
}
.sct-trial-panel .trial-input .form-control {
	font-family: 'Roboto', sans-serif;
    border-radius: 0px;
    border: none;
    background: #ffffff;
    padding: 0rem 1rem;
    height: 70px;
    font-size: 1.3rem;
	padding-left: 25px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}
.sct-trial-panel .trial-input .btn-get {
	height: 70px;
	background-color: #00254c;
	color: #dbe021;
	border-radius: 0px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	font-size: 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-family: 'Satoshi-Black';
	padding: 0px 25px;
	border: 3px solid #ffffff;
}
.sct-trial-panel .trial-input .btn-get img {
	height: 24px;
	width: auto;
	margin-left: 6px;
}
.sct-trial-panel .trial-input .btn-get:hover {
	background-color: #00254c;
}

.sct-trial-panel .alert-danger {
	font-family: 'Satoshi-Medium';
	text-align: left;
	background-color: #f99c00;
	color: #00254c;
	font-size: 1rem;
	border-radius: 25px;
	border: none;
	width: 80%;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
.sct-trial-panel .alert-danger .close {
	text-shadow: none;
	opacity: 1;
}
.sct-trial-panel .alert-danger .close:hover {
	color: #00254c;
}

.sct-trial-panel .input-actions {
	margin: auto;
	width: 80%;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}
.sct-trial-panel .input-actions .btn {
	border: 3px solid #ffffff;
	font-family: 'Satoshi-Medium';
	text-transform: uppercase;
	font-size: 1.4rem;
}
.sct-trial-panel .input-actions .btn:hover {
	color: #ffffff;
}
.sct-trial-panel .input-actions .btn.resend {
	width: 40%;
	border-right: 0px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
.sct-trial-panel .input-actions .btn.change {
	border-left: 0px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.sct-trial-panel .btn-ipt-act {
	width: auto;
    height: 60px;
    background-color: #ffffff;
	color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    padding: 0px 15px;
    padding-right: 10px;
    border: 0px;

}
.sct-trial-panel .btn-ipt-act .txt {
	color: #ffffff;
	margin: 0px;
	/* text-transform: uppercase; */
}
.sct-trial-panel .btn-ipt-act .icon {
	margin-left: 10px;
	width: 34px;
	height: 34px;
}
.sct-trial-panel .btn-ipt-act.resend {
	color: #00254c;
	background-color: #dbe021;
}
.sct-trial-panel .btn-ipt-act.resend:hover {
	color: #00254c;
	background-color: #c9ce19;
}
.sct-trial-panel .btn-ipt-act.change {
	flex: 1;
	background-color: #00254c;
}
.sct-trial-panel .btn-ipt-act.change:hover {
	background-color: #00254c;
}

.hideBlock {
	display: none !important;;
	visibility: hidden;
}


.message-modal {
	text-align: center;
}
.message-modal .modal-content {
	border-radius: 25px;
	padding-top: 20px;
	padding-bottom: 10px;
}
.message-modal .icon {
	width: 100px;
	height: auto;
	margin-bottom: 15px;
}
.message-modal .btn-close {
	font-family: 'Satoshi-black';
	text-transform: uppercase;
	background: #008fef;
	color: #ffffff;
	border-radius: 25px;
	padding: 10px 25px;
}
.sct-trial-expired {
	padding-top: 50px;
	padding-bottom: 50px;
	flex: 1;
}
.expired-panel {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.expired-panel .icon {
	width: 120px;
	height: 120px;
	margin-bottom: 20px;
}
.expired-panel .tlt {
	font-family: 'Satoshi-black';
	text-transform: uppercase;
	margin-bottom: 5px;
	line-height: 1;
	color: #00254c;
}

/* Trial Verification **********************/
.sct-trial-var {
	height: 100vh;
	overflow: hidden;
	padding: 30px;
	background-color: #008fef;
	background-image: url('../img/gallery/img-001.png');
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.sct-trial-var .container {
	height: 100%;
}
.sct-trial-var .row-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.sct-trial-var .row-content .logo-panel {
	display: flex;
}
.sct-trial-var .logo {
	height: 40px;
	width: auto;
}
.sct-trial-var .row-content .form-ctx {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 65%;
	height: 100%;
}
.sct-trial-var .icon img {
	width: 80px;
	height: auto;
	margin-bottom: 15px;
}
.sct-trial-var .row-content .s-part {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 25px;
}
.sct-trial-var .page-tlt {
	color: #ffffff;
	font-family: 'Satoshi-Black';
}
.sct-trial-var .tlt {
	color: #008fef;
	font-family: 'Satoshi-Black';
}
.sct-trial-var .form-group,
.sct-trial-var .alert {
	width: 100%;
}
.sct-trial-var .ill-trial-var {
	width: 80%;
	height: auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.sct-trial-var .form-group .form-control {
	font-family: 'Roboto', sans-serif;
	border-radius: 25px;
	border: 2px solid #c2c2c2;
	background: #f6f7f9;
	padding: 0.75rem 0.75rem;
	height: auto;
}
.sct-trial-var .form-group .form-control::placeholder {
	color: #999999;
}
.sct-trial-var .form-group .form-control:focus,
.sct-trial-var .form-group .custom-select:focus {
	outline: none;
	border: 2px solid #2a2a2a;
	box-shadow: none;
}
.sct-trial-var .check-txt {
	margin-bottom: 15px;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	color: #721c24;
}
.sct-trial-var .btn-trial-var {
	background-color: #008fef;
	color: #ffffff;
	border-radius: 50px;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	padding: 0.75rem 2.75rem;
	margin-bottom: 15px;
}
.sct-trial-var .btn-trial-var:hover {
	background-color: #0079cb;
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.sct-trial-var .code-panel {
	display: flex;
	flex-direction: row;
	width: 80%;
	margin: auto;
}
.sct-trial-var .code-panel .form-control {
	text-align: center;
	width: 80%;
	margin: auto;
	font-size: 2rem;
	font-weight: bold;
	padding-left: 0px;
	padding-right: 0px;
}
.sct-trial-var .code-panel input::-webkit-outer-spin-button,
.sct-trial-var .code-panel input::-webkit-inner-spin-button {
  	-webkit-appearance: none;
  	margin: 0;
}
.sct-trial-var .code-panel input[type=number] {
	-moz-appearance: textfield;
}

.sct-trial-var .trial-var-link {
	color: #008fef;
	cursor: pointer;
	font-family: 'Satoshi-Black';
	position: relative;
}
.sct-trial-var .trial-var-link:hover {
	color: #0079cb;
	text-decoration: none;
}
.sct-trial-var .trial-var-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #008fef;
}
.sct-trial-var .trial-var-link:hover::before {
    width: 100%;
}
.sct-trial-var .alert-danger {
    border: none;
    border-radius: 30px;
	text-align: left;
}

/* Login **********************/
.sct-login {
	height: 100vh;
	overflow: hidden;
	padding: 30px;
	background-color: #008fef;
	background-image: url('../img/gallery/img-001.png');
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.sct-login .container {
	height: 100%;
}
.sct-login .row-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.sct-login .alert-danger {
    border: none;
    border-radius: 30px;
	text-align: left;
}
.sct-login .row-content .logo-panel {
	display: flex;
}
.sct-login .logo {
	height: 40px;
	width: auto;
}
.sct-login .row-content .form-ctx {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	width: 50%;
	height: 100%;
}
.sct-login .form-ctx-inner {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 25px;
}
.sct-login .row-content .s-part {
	display: none;
	padding-top: 20px;
	padding-bottom: 20px;
}
.sct-login .row-content .f-part {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 20px;
	padding-bottom: 20px;
}
.sct-login .tlt {
	color: #008fef;
	font-family: 'Satoshi-Black';
}
.sct-login .form-group,
.sct-login .alert {
	width: 100%;
}
.sct-login .ill-login {
	width: 80%;
	height: auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.sct-login .form-group .form-control {
	font-family: 'Roboto', sans-serif;
	border-radius: 30px;
	border: 2px solid #c2c2c2;
	background: #f6f7f9;
	padding: 0.75rem 0.75rem;
	padding-left: 20px;
	height: auto;
}
.sct-login .form-group .form-control::placeholder {
	color: #999999;
}
.sct-login .form-group .form-control:focus,
.sct-login .form-group .custom-select:focus {
	outline: none;
	border: 2px solid #2a2a2a;
	box-shadow: none;
}
.sct-login .btn-login {
	background-color: #008fef;
	color: #ffffff;
	border-radius: 30px;
	font-family: 'Satoshi-Black';
	text-transform: uppercase;
	padding: 0.75rem 0.75rem;
}
.sct-login .btn-login:hover {
	background-color: #0079cb;
	-webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.sct-login .code-panel {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: auto;
}
.sct-login .code-panel .form-control {
	text-align: center;
	width: 80%;
	margin: auto;
	font-size: 2rem;
	font-weight: bold;
	padding-left: 0px;
	padding-right: 0px;
}
.sct-login .code-panel input::-webkit-outer-spin-button,
.sct-login .code-panel input::-webkit-inner-spin-button {
  	-webkit-appearance: none;
  	margin: 0;
}
.sct-login .code-panel input[type=number] {
	-moz-appearance: textfield;
}

.sct-login .login-link {
	color: #008fef;
	cursor: pointer;
	font-family: 'Satoshi-Black';
	position: relative;
}
.sct-login .login-link:hover {
	color: #0079cb;
	text-decoration: none;
}
.sct-login .login-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #008fef;
}
.sct-login .login-link:hover::before {
    width: 100%;
}

/* Members Area ******************************************/
.body-flex {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.sct-members-header {
	background-image: url(../img/gallery/img-007.png);
	background-color: #008fef;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	padding: 30px 0px;
	padding-bottom: 10px;
	text-align: center;
}
.sct-members-header .mn-tlt {
	font-family: 'satoshi-black';
	text-transform: uppercase;
	color: #ffffff;
	font-size: 3rem;
	text-align: center;
}
.sct-members-header .nav-pills {
	margin-top: 30px;
}
.sct-members-header .nav-pills .nav-link {
	border-radius: 50px;
	font-family: 'Satoshi-Medium';
	color: #ffffff;
	border: 2px solid transparent;
	font-size: 18px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: rgba(0, 0, 0, .1);
	margin: 2px;
}
.sct-members-header .nav-pills .nav-link.active, 
.sct-members-header .nav-pills .show>.nav-link {
    color: #dbe021;
	background: #00254c;
}

.sct-members-content {
	padding-top: 40px;
	padding-bottom: 40px;
	flex: 1;
	
	background-color: #eeeeee;
}
.item-plan {
	background-color: #ffffff;
	padding: 15px 25px;
	margin-bottom: 15px;
	border-radius: 25px;
}
.item-plan .item-tlt {
	font-weight: 700;
	color: #008fef;
	margin-bottom: 0px;
}
.item-plan .item-date {
	font-size: 16px;
	margin-bottom: 0px;
}
.item-plan .item-price {
	margin: 0px;
    font-family: 'Satoshi-Black';
    line-height: 1;
}
.item-plan .item-status {
	font-family: 'Satoshi-Black';
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
	border-radius: 50px;
}
.item-plan .item-status.red {
	color: #ffffff;
	background-color: #ec2a5f;
}
.item-plan .item-status.orange {
	color: #ffffff;
	background-color: #f39c12;
}
.item-plan .item-status.green {
	color: #ffffff;
	background-color: #30cb83;
}

.invoice-container {
	border-radius: 25px;
	overflow: hidden;
	margin-bottom: 15px;
}
.invoice-container .order-blk {
	border-radius: 0px;
	margin-bottom: 0px;
}
.invoice-item {
	background-color: #ffffff;
	padding: 15px 25px;
	display: flex;
	flex-direction: row;
	cursor: pointer;
}
.invoice-item .ctx {
	width: calc(100% - 50px);
}
.invoice-item .item-tlt {
	font-weight: 700;
	color: #008fef;
	margin-bottom: 0px;
}
.invoice-item .item-date {
	font-size: 16px;
	margin-bottom: 0px;
}
.invoice-item .item-act {
	background: #00254c;
	color: #ffffff;
	height: 50px;
	width: 50px;
	padding: 10px;
	border-radius: 25px;
}
.invoice-item .item-act img {
	width: 100%;
	height: auto;
}
.invoice-item .item-act img {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.invoice-item:not(.collapsed) .item-act img {
	-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}


.support-block {
	background-color: #ffffff;
	padding: 15px 30px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 15px;
	border-radius: 25px;
}
.support-block .block-tlt {
	color: #008fef;
	margin-bottom: 10px;
}
.support-block .block-txt {
	margin-bottom: 10px;
	line-height: 1.2;
}
.support-block .block-mail {
	color: #008fef;
	font-weight: 700;
	margin-bottom: 0px;
}
.support-block .block-icon {
	width: 100px;
	height: auto;
	margin-bottom: 15px;
}
