/* Base Css Start  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

@font-face {
	font-family: montserrat;
	src: url(../font/Montserrat-Medium.ttf);
	font-display: swap;
}
@font-face {
	font-family: montserrat_bold;
	src: url(../font/Montserrat-Bold.ttf);
	font-display: swap;
}
@font-face {
	font-family: montserrat_black;
	src: url(../font/Montserrat-Black.ttf);
	font-display: swap;
}
@font-face {
	font-family: montserrat;
	src: url(../font/Montserrat-Regular.ttf);
	font-display: swap;
}
@font-face {
	font-family: HelveticaNeue;
	src: url(../font/HelveticaNeueMed.ttf);
	font-display: swap;
}
/*html {*/
/*	font-size: 62.5%;*/
/*}*/
body {
	font-family: montserrat;
	font-weight: normal;
	font-style: normal;
	background-color: #121931;
	/*background-image: linear-gradient(to bottom, #162042, #121931);*/
}
.fix {
    overflow: hidden;
}
.fx-padding {
	padding-left: 70px !important;
	padding-right: 70px !important;
}
p {
	font-size: 12px;
	/*font-weight: 400;*/
	line-height: 24px;
	color: #ffffff;
	margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: montserrat;
	font-weight: 700;
	color: #ffffff;
	margin-top: 0px;
}
h2 {
	font-size: 3.6rem;
}
h3 {
	font-size: 2.8rem;
}
h4 {
	font-size: 2.2rem;
}
h5 {
	font-size: 1.8rem;
}
h6 {
	font-size: 1.4rem;
}

a {
	font-size: 1rem;
}
.img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover{
	text-decoration: none;
}

span, a {
    display: inline-block;
}
ul,ol {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}
div[data-relative="yes"] {
	position: relative;
}
/* Base Css End */

/* offCanvasMenu css start */
.off-canvas-menu-wrap {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	height: 100%;
	background: #fff;
	z-index: 99999999;
	transform: translateX(300px);
	transition: .5s;
}
.off-canvas-menu-wrap.active {
	transform: translateX(0);
}
.off-canvas-menu {
	padding-left: 20px;
	padding-top: 55px;
	padding-right: 20px;
}
.off-canvas-menu li {
	border-bottom: 1px solid #cabfbf66;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.off-canvas-menu li a {
	color: #333;
	font-size: 15px;
	transition: .3s;
	position: relative;
}
.off-canvas-menu li a:hover {
	color: #23b1b1;
}
.off-canvas-overlay {
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 0;
	cursor: pointer;
	visibility: hidden;
	transition: .5s;
}
.off-canvas-overlay.active {
	opacity: .5;
	visibility: visible;
}
.cls-off-canvas-menu {
	color: #403b3b;
	font-size: 38px;
	cursor: pointer;
	background: transparent;
	border: 0;
	line-height: 1;
	padding: 0;
}
.toggle-bar {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
}
.toggle-bar i,
.toggle-bar span {
	color: #fff;
	font-size: 30px;
	line-height: 1;
}
.toggle-bar {
	display: none;
	margin-left: 10px;
	position: relative;
}
.nav-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #dddd;
	padding-bottom: 10px;
}
  .nav-title p {
	color: #333;
	text-transform: uppercase;
	font-family: montserrat;
	font-weight: 700;
  }
/* offCanvasMenu menu css end */

/* Scroll to top btn css start */
.back-to-top {
	position: fixed !important;
	right: 20px;
	bottom: 0;
	color: #fff;
	display: block;
	font-size: 22px;
	line-height: 30px;
	text-align: center;
	width: 35px;
	height: 35px;
	opacity: 0;
	visibility: hidden;
	z-index: 9999;
	cursor: pointer;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	background: #000;
	transition: .3s;
}
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	bottom: 25px;
}
.back-to-top i,
.back-to-top span {
	vertical-align: middle;
}
/* Scroll to top btn css start */


/* header css start  */
.header-area {
	background-color: #162042;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 98;
	transition: .3s;
	height: 100px;
	display: flex;
	align-items: center;
	/*padding-top: 30px;*/
}
.header-area.fixed-header {
	height: 70px;
	padding-top: 0!important;
}
  .logo {
	display: inline-block;
  }
  .logo img {
	max-width: 55px;
	transition: .3s;
  }

  .main-menu {
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .main-menu li:not(:last-child) {
	margin-right: 20px;
  }
  .main-menu li a {
	padding: 5px 25px;
	color: #fff;
	font-size: 12px;
	display: inline-block;
	position: relative;
	transition: .3s;
  }
  /*.main-menu li a::after {*/
	/*width: 10%;*/
	/*height: 2px;*/
	/*background-color: #23b1b1;*/
	/*content: "";*/
	/*position: absolute;*/
	/*bottom: 0;*/
	/*left: 50%;*/
	/*transform: translateX(-50%);*/
	/*transition: .3s;*/
	/*opacity: 0;*/
	/*visibility: hidden;*/
  /*}*/
  .main-menu li.active a::after {
	  opacity: 1;
	  visibility: visible;
	  width: 100%;
  }
  .main-menu li a:hover:after {
	width: 100%;
	opacity: 1;
	visibility: visible;
  }
  .main-menu li a:hover,
  .main-menu li.active{
	/*color: #23b1b1;*/
	  background-color: #121931;
	  /*background-image: linear-gradient(to right, #ffa92e , #ff8030);*/
	  border-radius: 5px;

  }
  
.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
  }
  .nice-select.sl-select {
	color: #fff;
	background: transparent;
	border: 0;
	height: 35px;
	line-height: 35px;
	font-family: montserrat;
  }
  .nice-select.sl-select::after {
	width: 7px;
	height: 7px;
	border-color: #ffffffbf;
  }
  .user-pf-wrap > li a > img {
	max-width: 25px;
	/*width: 100%;*/
	border-radius: 50%;
	max-height: 25px;
	height: 25px;
	margin-right: 10px;
  }
  .user-pf-wrap {
	/*margin-left: 30px;*/
  }
  .user-pf-wrap li a {
	color: #fff;
	font-size: 16px;
	font-family: montserrat;
	display: flex;
  }
  .nice-select.sl-select .list li {
	color: #000;
	font-family: roboto;
}

.user-pf-wrap li {
	position: relative;
	padding: 6px 0;
  }
  .user-pf-wrap li ul.user-pf-dropdown {
	width: 200px;
	right: -30px;
	position: absolute;
	top: 115%;
	background-color: #0f152a;
	z-index: 10;
	border: 1px solid #0f152a;
	border-radius: 5px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
  }
  .user-pf-wrap li ul.user-pf-dropdown li a {
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
	padding-left: 18px;
	padding-right: 18px;
  }
  .user-pf-wrap li ul.user-pf-dropdown li a span img {
	max-width: 16px;
  }
  .user-pf-wrap li ul.user-pf-dropdown li a span {
	margin-right: 10px;
  }
  .user-pf-wrap li ul.user-pf-dropdown li a::after {
	content: none;
  }
  .user-pf-wrap li ul.user-pf-dropdown li {
	padding: 0;
  }
  .user-pf-wrap li:hover ul.user-pf-dropdown {
	opacity: 1;
	visibility: visible;
	top: 100%;
  }
/* header css end */

/* hero-area css start  */

.hero-area {
	height: 930px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
  }
  .hero-content-wrapper {
	text-align: center;
  }
  .hero-content-wrapper h1 {
	color: #fff;
	font-size: 30px;
	margin-bottom: 45px;
  }
  
.hero-content-wrapper p {
	color: #fff;
	font-family: montserrat;
	margin-bottom: 55px;
  }
  .input-inside input,  .input-inside textarea {
	width: 100%;
	height: 50px;
	border-radius: 3px;
	border: 0;
	padding: 0 15px;
	font-size: 15px;
	  color: #FFFFFF!important;
  }
  .search-form {
	display: grid;
	grid-template-columns: auto 50px;
  }
  .search-form .input-inside input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
  }
  .search-form button[type="submit"] {
	background-color: #297d7d;
	border: 0;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.search-form button[type="submit"] i {
	font-size: 20px;
	color: #fff;
}
.hero-content-wrapper .search-form {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
/* hero-area css end */

/* about-us-area css start  */
.about-us-area {
	padding: 80px 0;
	padding-bottom: 35px;
}
  .about-us-img img {
	max-width: 95%;
	width: 100%;
  }
  .about-us-img {
	text-align: right;
  }
  .about-us-content-wrap {
	padding-right: 130px;
  }
  .primary-title {
	  /*font-size: 26px;*/
	/*text-transform: uppercase;*/
	  font-family: montserrat_black;
	  position: relative;
	  color: white;
	  margin-top: 10px;
	  font-weight: 900;
	/*margin-bottom: 100px;*/
  }
  /*.primary-title::after {*/
	/*content: "";*/
	/*position: absolute;*/
	/*left: 0;*/
	/*bottom: -12px;*/
	/*background-color: #297d7d;*/
	/*width: 40px;*/
	/*height: 4px;*/
  /*}*/
/* about-us-area css end */

/* service-area css start  */

.service-area {
	padding: 110px 0;
	padding-bottom: 80px;
  }
  .icon-box {
	width: 80px;
	height: 80px;
	background: #e2ebed;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	padding: 10px;
  }
  .service-icon {
	margin-bottom: 18px;
  }
  .service-icon img {
	max-width: 100%;
  }
  .service-content h4 {
	font-size: 16px;
	margin-bottom: 10px;
  }
/* service-area css end */

/* app-work-area css start  */
.app-work-area {
	width: 100%;
	padding: 50px 0;
	/*padding-top: 110px;*/
}
.step-blk-rw {
	max-width: 50%;
	padding-right: 45px;
}
  .step-blk-rw.reverse {
	margin-left: auto;
	padding-left: 45px;
	padding-right: 0;
}
.step-blk-rw .step-title {
	color: #297d7d;
	font-size: 30px;
	margin-bottom: 15px;
	position: relative;
}
.step-blk-rw .step-title::after {
	content: "";
	width: 26px;
	height: 26px;
	background: #fff;
	position: absolute;
	border-radius: 50%;
	border: 5px solid #cae1e1;
	right: -5.75rem;
	background: #fff;
	z-index: 1;
	top: 6px;
}
  .step-blk-rw.reverse .step-title::after {
	  left: -5.75rem;
	  right: auto;
  }
  .step-name {
	color: #333333;
	font-size: 18px;
	margin-bottom: 10px;
  }
  .step-content {
	border-top: 1px solid #cae1e1;
	display: grid;
	grid-template-columns: auto 80px;
	grid-gap: 20px;
	padding-top: 10px;
	align-items: center;
}
  .step-content p {
	color: #999999;
	font-size: 16px;
  }
  .step-blk-rw.reverse .step-content {
	grid-template-columns: 80px auto;
  }
  
  .app-work-wrapper {
	position: relative;
	padding-top: 85px;
}
  .app-work-wrapper::after {
	content: "";
	width: 10px;
	height: 100%;
	background: #cae1e1;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
  }
  .app-work-wrapper::before {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: #297d7d;
	border-radius: 50%;
	border: 5px solid #cae1e1;
	left: 50%;
	transform: translateX(-50%);
	top: -1px;
	z-index: 1;
}
.app-work-wrapper span.btm-dot {
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: #297d7d;
	border-radius: 50%;
	border: 5px solid #cae1e1;
	left: 50%;
	transform: translateX(-50%);
	bottom: -1px;
	z-index: 1;
	display: inline-block;
}
/* app-work-area css end */

/* video-area css start  */
.video-area {
	background-color: #eeeeee;
	padding: 120px 0;
	padding-bottom: 100px;
	width: 500px;
}
  .video-bg {
	max-width: 100%;
	width: 100%;
  }
  .video-box {
	position: relative;
	margin-bottom: 20px;
  }
  .play-v {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	z-index: 1;
  }
  .play-v img {
	max-width: 155px;
  }
  .video-wrapper .service-content h4 {
	color: #555555;
  }
  
.dot-design .slick-dots {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -60px;
  }
  .dot-design .slick-dots li {
	display: inline-block;
  }
  .dot-design .slick-dots li button {
	border: 0;
	padding: 0;
	width: 6px;
	height: 6px;
	background: #aaaaaa;
	font-size: 0px;
	border-radius: 50%;
	margin: 0 7px;
	cursor: pointer;
	transition: .3s;
  }
  .dot-design .slick-dots li.slick-active button {
	background: #297d7d;
	width: 25px;
	border-radius: 15px;
  }
/* video-area css end */

/* pricing-area css start  */

.pricing-area {
	padding: 110px 0;
	background: #f7f8fa;
  }
  .price-card-item {
	border: 1px solid #dfdcdc;
	border-radius: 5px;
	padding: 50px;
	transition: .3s;
	text-align: center;
	padding-top: 65px;
	cursor: pointer;
}
.pricing-g-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	grid-column-gap: 80px;
}
  .c-top p {
	color: #aaaaaa;
	font-size: 17px;
	text-transform: uppercase;
	font-family: montserratProBd;
	margin-bottom: 28px;
}
  
.c-top h5 {
	color: #297d7d;
	font-size: 24px;
	font-family: montserratProMd;
  }

  .c-list li {
	display: block;
	color: #aaaaaa;
	font-size: 18px;
	font-family: montserratProLt;
	line-height: 40px;
  }
  .box-btn {
	background-color: #297d7d;
	color: #fff;
	font-size: 15px;
	font-family: helveticaBlack;
	text-transform: uppercase;
	padding: 14px 42px;
	border-radius: 5px;
  }
  .box-btn:hover {
	color: #fff;
}
.c-top h5.c-price {
	font-size: 72px;
	line-height: 1.1;
	font-family: 'Roboto', sans-serif;
}
  .c-top h5.c-price span {
	font-size: 16px;
	display: block;
	font-family: montserratProLt;
  }
  .c-top {
	min-height: 170px;
	margin-bottom: 5px;
  }
  .c-middle {
	margin-bottom: 15px;
  }
  .price-card-item.middle-card {
	/* transform: scale(1.2); */
	background: #297d7d;
	border-color: #297d7d;
}
.price-card-item:hover {
	background-color: #297d7d;
	border-color: #297d7d;
	transform: scale(1.1); 
}

.price-card-item:hover .c-top p {
	color: #fff;
  }
  .price-card-item:hover .c-top h5 {
	color: #fff;
  }
  .price-card-item:hover .c-list li {
	color: #ffffffad;
  }
  .price-card-item:hover .box-btn {
	background: #fff;
	color: #297d7d;
  }
  .pricing-mobile-version .dot-design .slick-dots {
	bottom: -35px;
}
.pricing-mobile-version .price-card-item:hover {
	transform: scale(1);
}
.price-card-item {
	min-height: 468px;
}
/* pricing-area css end */

/* download-area css start  */
.download-area {
	background-color: #297d7d;
	padding: 65px 0;
	position: relative;
}

.download-wrapper {
	margin-left: 40%;
  }
  .secondary-title {
	color: #fff;
	text-transform: uppercase;
	font-size: 30px;
	margin-bottom: 22px;
  }
  .download-title-content p {
	color: #fff;
	font-size: 16px;
	font-family: montserrat;
	margin-bottom: 15px;
  }
  .download-title-content {
	margin-bottom: 80px;
}
.app-download-btn {
	background: #fff;
	height: 60px;
	min-width: 270px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	max-width: 270px;
	padding: 5px 15px;
	color: #297d7d;
	font-size: 16px;
	transition: .3s;
}
  .app-download-btn img {
	max-width: 25px;
	margin-right: 15px;
  }
  .downloadable-app a {
	margin-bottom: 12px;
  }
  .app-download-btn:hover {
	color: #fff;
	background: #7fffd4b0;
}
  .downloadable-app p {
	color: #fff;
	font-size: 16px;
	font-family: montserrat;
  }
  .downloadable-app {
	max-width: 280px;
  }
  .download-trans {
	position: absolute;
	bottom: 0;
	left: 95px;
	max-height: 575px;
}

.single-counter-wrap p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	font-family: montserrat;
}
  .counter-area {
	padding: 200px 0;
	padding-bottom: 170px;
  }
  .single-counter-wrap h1 {
	color: #fff;
	font-size: 60px;
	font-family: montserrat_bold;
	line-height: 1.2;
	letter-spacing: 2px;
}
  .single-counter-wrap {
	text-align: center;
	padding: 15px;
  }
  .counter-icon {
	text-align: center;
	margin-bottom: 20px;
  }
  .counter-icon img {
	max-width: 50px;
  }
/* download-area css end */



/* footer css start  */

.footer-area {
	background-color: #0f152a;
	background-image: linear-gradient(to bottom, #0f152a, rgba(15, 21, 42, 0.14));
	padding: 30px 0;
  }
  .footer-widget h3 {
	color: #fff;
	font-size: 18px;
	font-family: montserrat_bold;
	letter-spacing: 1px;
	margin-bottom: 32px;
  }
  .footer-widget p {
	color: #ffffff;
	font-size: 14px;
	font-family: montserrat;
	margin-bottom: 18px;
  }
  .ft-links li {
	display: block;
  }
  .ft-links li a {
	color: #ffffff;
	font-size: 14px;
	display: inline-block;
	transition: .3s;
  }
  .ft-links li:not(:last-child) {
	margin-bottom: 3px;
  }
  .ft-contact a {
	display: block;
	color: #999999;
	font-size: 16px;
	font-size: 16px;
  }
  .ft-contact a:hover {
	color: #999999;
  }
  .ft-links li a:hover {
	color: #297d7d;
  }
  .social-lnks {
	display: flex;
	align-items: center;
  }
  .social-lnks li:not(:last-child) {
	margin-right: 28px;
  }
  .social-lnks li a {
	color: #e5e5e5;
	font-size: 22px;
	transition: .3s;
  }
  .social-lnks li a:hover {
	color: #297d7d;
  }
  
.search-form.style-2 .input-inside input {
	background: #333333;
	color: #fff;
	padding-left: 43px;
  }
  .input-inside {
	position: relative;
  }
  .sc-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
  }
  .sc-icon img {
	max-width: 17px;
  }
  .search-form.style-2 button[type="submit"] {
	color: #fff;
	font-size: 16px;
  }
  .search-form.style-2 {
	grid-template-columns: auto 70px;
  }
  
.ft-logo {
	display: block;
	color: #fff;
	font-family: montserrat_bold;
	font-size: 30px;
	letter-spacing: 1px;
	line-height: 1;
	margin-bottom: 27px;
	transform: translateY(-4px);
  }
  .ft-logo:hover {
	color: #fff;
  }
/* footer css end */

/* signup-signin page css start  */
.link-style a::after {
	width: 10%;
	height: 1px;
	border-radius: 0.5px;
	background-color: #00d2f0;
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s;
	opacity: 0;
	visibility: hidden;
  }
  .link-style a.active::after {
	  opacity: 1;
	  visibility: visible;
	  width: 100%;
  }
.link-style a:hover:after {
	width: 100%;
	opacity: 1;
	visibility: visible;
  }
.link-style a:hover,
.link-style a.active {
	color: #00d2f0;
  }
  .nav-link-wrap a {
	  font-family: Montserrat;
	  font-size: 16px;
	  font-weight: 500;
	  font-stretch: normal;
	  font-style: normal;
	  line-height: normal;
	  letter-spacing: 0.6px;
	  text-align: center;
	  color: rgba(255, 255, 255, 0.5);
	padding: 5px 0;
	position: relative;
	transition: .3s;
}
  .nav-link-wrap a:not(:last-child) {
	margin-right: 60px;
  }
  .nav-link-wrap {
	  margin: auto;
	justify-content: center;
}
.signup-signin-wrapper {
	/*min-height: 100vh;*/
	display: block;
	align-items: center;
	justify-content: center;
	padding: 30px 30px;
	/*background-color: #f7f8fa;*/
}
  .signup-inner-box {
	  flex: 0 0 1170px;
	  max-width: 1105px;
	  margin: auto;
  }
  .checkBox {
	display: block;
	position: relative;
	padding-left: 24px;
	margin-bottom: 0;
	cursor: pointer;
	font-size: 15px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #aaaaaa;
	font-weight: 300;
	font-family: montserrat;
}
.checkBox a {
	color: #aaaaaa;
	display: inline-block;
	font-size: 16px;
}
  
  /* Hide the browser's default checkbox */
  .checkBox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 5px;
	left: 0;
	height: 14px;
	width: 14px;
	background: transparent;
	border: 1px solid #aaaaaa;
	border-radius: 0;
}
  
  /* When the checkbox is checked, add a blue background */
  .checkBox input:checked ~ .checkmark {
	background-color: #297d7d;
	border-color: #297d7d;
}
.checkBox.radioBtn input:checked ~ .checkmark {
	background-color: transparent;
}
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .checkBox input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkBox .checkmark::after {
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.forget-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
}
.signup-twin-flexbox.task-page {
	display: block;
	/*background-color: #fff;*/
	background-image: url(../image/task_back.png);
	background-size: auto auto;
	/*border-radius: 5px;*/
	/*border: 1px solid #eeeeee;*/
	/*align-items: center;*/
	min-height: 586px;
	padding: 30px;
}
  .signup-left-part {
	flex: 0 0 50%;
	max-width: 50%;
  }
  .signup-left-part img {
	max-width: 100%;
	width: 100%;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
  }
  .signup-right-part {
	padding: 40px 60px;
	flex: 0 0 50%;
	max-width: 50%;
}
  .welcome-wrap {
	text-align: center;
	margin-bottom: 36px;
  }
  .welcome-wrap > a img {
	max-width: 95px;
	margin-bottom: 21px;
}
  .welcome-wrap p {
	color: #555555;
	font-size: 24px;
  }
  
.input-inside.style-2 input {
	/*border: 1px solid #e1e1e1;*/
	/*border-radius: 5px;*/
  }
  .submit-btn button.box-btn {
	width: 100%;
	border: 2px solid #297d7d;
	height: 50px;
	font-size: 16px;
	font-family: montserrat;
	transition: .3s;
	line-height: 50px;
	padding: 0 15px;
}
  .submit-btn button.box-btn:hover {
	background-color: transparent;
	color: #297d7d;
  }
  .input-inside.style-2 {
	margin-bottom: 30px;
  }
  .signup-form .checkBox {
	margin-top: 34px;
}
.submit-btn {
	margin-top: 45px;
}

.twin-grid-in-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-gap: 30px;
  }
  .twin-grid-in-form .input-inside {
	margin-bottom: 0 !important;
  }
  .send-v-code {
	color: #23b1b1;
	font-size: 16px;
	display: block;
	text-align: center;
	font-family: montserrat;
	transition: .3s;
  }
  .send-v-code:hover {
	color: #0960c0;
  }
  
.signup-form.two .input-inside.style-2 {
	margin-bottom: 22px;
  }
  .signup-form.two .submit-btn {
	margin-top: 28px;
  }
  .signup-form.two .checkBox {
	margin-top: 25px;
}
.signup-form.two.three .twin-grid-in-form {
	margin-bottom: 22px;
}
/* signup-signin page css end */

/* manage-center page css start  */

.banner-area {
	background-color: #297d7d;
	padding: 88px 0;
	position: relative;
  }
  .hero-content-wrapper.banner-content {
	text-align: left;
	max-width: 1450px;
	margin-left: auto;
	margin-right: auto;
  }
  .trans-2 {
	position: absolute;
	right: 260px;
	bottom: 0px;
	max-height: 305px;
}
.banner-inner-content {
	max-width: 835px;
}

.manage-area {
	background-color: #f7f8fa;
	padding: 90px 0;
	position: relative;
	z-index: 1;
  }
  .manage-g-wrapper {
	display: grid;
	grid-template-columns: 400px auto;
	grid-gap: 30px;
  }
  .cmn-box {
	background: #fff;
	border: 1px solid #eeeeee;
	border-radius: 5px;
  }
  .manage-pf-wrapper {
	padding: 30px 15px;
	text-align: center;
  }
  .pf-thumbnail img {
	max-width: 125px;
	margin-bottom: 20px;
  }
  .manage-pf-wrapper h5 {
	color: #555555;
	font-size: 16px;
	font-family: montserrat;
	margin-bottom: 24px;
  }
  .expire-date {
	color: #999999;
	font-size: 15px;
	margin-bottom: 24px;
  }
  .refresh-btn {
	background: none;
	border: 0;
	cursor: pointer;
  }
  .refresh-btn img {
	max-width: 20px;
  }
  .verticle-menu li {
	display: block;
  }
  .verticle-menu li a {
	color: #9c9c9c !important;
	font-size: 16px;
	padding: 20px;
	transition: .3s;
	padding-left: 24px;
	position: relative;
	display: flex;
	align-items: center;
  }
  .verticle-menu li a::after {
	height: 10%;
	width: 4px;
	background: transparent;
	top: 0;
	left: 0;
	bottom: 0;
	position: absolute;
	content: "";
	transition: .3s;
  }
  .verticle-menu li a span {
	display: inline-block;
	max-width: 22px;
	margin-right: 16px;
  }
  .verticle-menu li a:hover,
  .verticle-menu li.active a {
	background-color: #121a32;
	color: #ffffff!important;
	  cursor: pointer;
  }
  .verticle-menu li a:hover:after,
  .verticle-menu li.active a::after {
	background: #23b1b1;
	height: 100%;
  }
  .manage-main-content-wrap {
	padding: 30px;
	min-height: 800px;
}
  .main-menu.secondary-menu li a {
	padding: 8px 0;
	color: #777777;
	font-size: 16px;
  }
  .main-menu.secondary-menu li.active a,
  .main-menu.secondary-menu li a:hover {
	color: #23b1b1;
  }
  .main-menu.secondary-menu li:not(:last-child) {
	margin-right: 100px;
  }
  .main-menu.secondary-menu {
	margin-bottom: 50px;
  }
  .primary-title.style-2 {
	font-size: 28px;
  }
  
.main-title-wrapper {
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 45px;
	margin-bottom: 35px;
  }
  .main-title-wrapper .primary-title {
	margin-bottom: 0;
  }
  .table.pf-table td {
	vertical-align: middle;
	padding: 36px 0;
	color: #333333;
	font-size: 16px;
	font-family: montserrat;
	border-top: 0;
}
  .table.pf-table td:last-child {
	text-align: right;
  }
  .table.pf-table td:first-child {
	width: 210px;
	overflow: hidden;
  }
  
  .table.pf-table td:nth-child(2) {
	width: 180px;
	padding: 0 15px;
	text-align: center;
}
  .pf-img img {
	max-width: 70px;
	width: 100%;
	border-radius: 50%;
	height: 70px;
  }
  .edit-btn {
	padding: 2px;
	border: 0;
	background: none;
	cursor: pointer;
  }
  .edit-btn img {
	max-width: 20px;
  }
  .hero-content-wrapper.banner-content p {
	margin-bottom: 0;
}

/* manage-center page css end */

/* account page css start  */

.ac-rw-content {
	position: relative;
	display: grid;
	grid-template-columns: 185px auto;
	grid-gap: 30px;
	align-items: center;
	padding-right: 80px;
	border-bottom: 1px solid #eeeeee;
	padding-top: 15px;
	padding-bottom: 15px;
  }
  .change-info {
	position: absolute;
	right: 0;
	top: 50%;
	color: #555555;
	font-size: 16px;
	display: inline-block;
	z-index: 1;
	transform: translateY(-50%);
	padding-right: 20px;
	transition: .3s;
}

.change-info::after {
	content: "\f0dd";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	position: absolute;
	top: 43%;
	transform: translateY(-50%);
	right: 0;
	font-size: 18px;
	transition: .3s;
  }
  .change-info[aria-expanded="true"]::after {
	top: 43%;
	transform: translateY(-25%) rotateZ(180deg);
}
  .change-info:hover {
	color: #297d7d;
  }
  .ac-rw-content p {
	color: #333333;
	font-size: 16px;
  }
  .changeable-info {
	color: #777777;
	font-size: 16px;
	display: inline-block;
  }
  .ac-rw-expand-content-wrap form {
	max-width: 430px;
	padding: 30px 0;
  }
  .ac-rw-expand-content-wrap {
	border-bottom: 1px solid #eeeeee;
}
/* account page css end */

/* asset-center page css start  */

.storage-blk {
	background: #23b1b1;
	border-radius: 5px;
	padding: 15px;
	flex: 0 0 260px;
	text-align: center;
	max-width: 260px;
  }
  .storage-blk p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 10px;
	text-align: left;
  }
  .storage-blk h4 {
	color: #fff;
	font-size: 36px;
	margin-bottom: 18px;
  }
  .storage-blk h4 span {
	font-size: 24px;
  }
  .storage-wrapper {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 25px;
  }
  .storage-wrapper .storage-blk:not(:last-child) {
	margin-right: 150px;
  }
  .ac-info-rw.style-2 .ac-rw-content {
	border-bottom: 0;
}
.table.payment tr td, .table.payment tr th {
	border-top: 1px solid #e1e1e1;
	font-size: 16px;
	color: #555555;
	padding: 5px 30px;
}
.e-div {
	padding: 3px 0;
	border: 1px solid transparent;
}
  .table.payment tr td:first-child {
	border-left: 1px solid #e1e1e1;
  }
  .table.payment tr td:last-child {
	border-right: 1px solid #e1e1e1;
  }
  .table.payment tr th:first-child {
	border-left: 1px solid #e1e1e1;
  }
  .table.payment tr th:last-child {
	border-right: 1px solid #e1e1e1;
  }
  .table.payment tr:last-child td {
	border-bottom: 1px solid #e1e1e1;
  }
  .table.payment tr:first-child th {
	border-top: 1px solid #e1e1e1;
  }
  .table.payment {
	margin-bottom: 0;
  }
  .table.payment tr th {
	border-top: 0;
	border-bottom: 0;
	color: #333333;
  }
  
.ac-rw-content.type-2 {
	grid-template-columns: 270px auto;
  }
  .ac-rw-content.type-2 p span {
	display: inline-block;
	color: #555c;
	margin-left: 12px;
  }
  .ac-rw-content.type-2 p {
	color: #333333;
  }
  .payment-table-wrapper {
	padding: 30px 0;
}

.with-left-label {
	display: grid;
	grid-template-columns: 100px auto;
	align-items: center;
	margin-bottom: 30px;
  }
  .with-left-label label {
	color: #333333;
	font-size: 16px;
	margin: 0;
  }
  .with-left-label .input-inside.style-2 {
	margin-bottom: 0 !important;
  }
  .ac-rw-expand-content-wrap form.max-550 {
	max-width: 555px;
}

.ac-rw-expand-content-wrap form.max-550 {
	max-width: 555px;
  }
  .with-left-label .twin-grid-in-form {
	margin-bottom: 0 !important;
	grid-template-columns: 130px auto !important;
  }
/* asset-center page css end */

/* course-recording page css start  */

.main-menu.secondary-menu.place-3 {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 40px;
  }
  .course-selection-wrap {
	display: grid;
	grid-template-columns: 200px 200px 200px;
	grid-gap: 20px;
	border-bottom: 1px solid #cccccc;
	padding-bottom: 38px;
	margin-bottom: 60px;
}
  .tertiary-title {
	color: #333333;
	font-size: 24px;
	margin-bottom: 35px;
  }
  .payment-table-wrapper.for-room {
	  padding-top: 10px!important;
	/*padding: 0;*/
	/*background: #fff;*/
}

  .manage-area.type-2 {
	padding-top: 40px;
  }
  
.manage-area.type-2 {
	padding-top: 40px;
  }
  .checkBox.radioBtn .checkmark {
	border-radius: 50%;
	border-color: #555555;
  }
  .checkBox.radioBtn {
	color: #555555;
	font-size: 16px;
  }
  .checkBox.radioBtn .checkmark::after {
	border: 0;
	width: 8px;
	height: 8px;
	background: #23b1b1;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  }
.nice-select.sl-select.style-2 {
	width: 67px;
	border: 1px solid #e1e1e1;
	background: #162042;
	color: #FFFFFF;
	border-radius: 5px;
	height: 37px;
	line-height: 37px;
	font-size: 14px;
	overflow: unset;
	margin-left: 10px;
  }

  /*.nice-select.sl-select.style-2 {*/
	/*margin-left: 10px;*/
	/*!*transform: translateY(-2px);*!*/
  /*}*/
  .with-select-label {
	display: flex;
}
.nice-select.sl-select.style-2::after {
	border-color: #555;
}

.rm-status {
	background-color: #23b1b1;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 3px;
	width: 59px;
	text-align: center;
  }
  .rm-status.closee {
	background: #ff5f5f;
  }
  .rm-status.wait {
	background: #ffc641;
  }
  .payment-table-wrapper.for-room .table td, .payment-table-wrapper.for-room .table th {
	text-align: left;
  }

  .romm-table-outer-box {
	/*border-bottom: 1px solid #ccc;*/
	/*padding-bottom: 45px;*/
	/*margin-bottom: 80px;*/
  }
  .submit-btn.max-460 {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
  }
.recording-room-submit{
	width: 80%;
}
  
.tips-popup {
	max-width: 960px;
	border: 0;
  }
  .tips-popup .modal-content {
	background: #fff;
	border: 0;
	border-radius: 5px;
	padding: 30px 40px;
  }
  .popup-title-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ebebeb;
	padding: 10px 0;
	padding-bottom: 22px;
  }
  .popup-title-wrap h3 {
	color: #333333;
	font-size: 24px;
	margin: 0;
  }
  .modal-content button.close {
	margin-top: -70px;
	margin-right: -27px;
	font-size: 18px;
  }
  
.url-rw {
	display: grid;
	grid-template-columns: 200px auto;
	grid-gap: 15px;
	align-items: center;
	margin-bottom: 15px;
  }
  .url-rw p {
	color: #555555;
	font-size: 16px;
	font-weight: 600;
  }
  .url-rw span {
	color: #777777;
	font-size: 16px;
  }
  .box-btn.copy-url {
	background: transparent;
	border: 1px solid #999999;
	color: #999999;
	font-size: 14px;
	font-family: montserrat;
	padding: 9px 22px;
  }
  .box-btn.copy-url:hover {
	color: #23b1b1;
	border-color: #23b1b1;
  }
  .url-condition {
	color: #aaaaaa;
	font-size: 16px;
	font-family: montserrat;
	margin: 20px 0;
  }
  .url-section-wrap a.copy-url {
	margin-top: 20px;
  }
  .url-section-wrap {
	padding: 15px 0;
  }
  .course-recording-demo-wrap h5 {
	color: #777777;
	font-size: 16px;
	margin-bottom: 20px;
  }
  .demo-record-g-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 50px;
	grid-row-gap: 30px;
  }
  .demo-v {
	position: relative;
  }
  .online-service-wrap {
	text-align: right;
	padding: 25px 0;
}
  .online-service-wrap a {
	color: #23b1b1;
	font-size: 16px;
	transition: .3s;
  }
  .online-service-wrap a:hover {
	color: #23b1b1;
  }
  .mfp-wrap {
	z-index: 2000;
}
.mfp-bg {
	z-index: 1919;
}

.bdr-btm {
	border-bottom: 1px solid #ebebeb;
  }
  .url-section-wrap.bdr-btm {
	margin-bottom: 28px;
  }
  .popup-tips-twin-btn a.box-btn {
	color: #ebebeb;
	font-family: montserrat;
	font-size: 14px;
	background: #23b1b1;
	border: 1px solid #23b1b1;
	padding: 12px 38px;
	transition: .3s;
  }
  .popup-tips-twin-btn .box-btn.tp-1 {
	border-color: #23b1b1;
	background: transparent;
	color: #23b1b1;
	margin-right: 16px;
  }
  .popup-tips-twin-btn {
	text-align: center;
	padding-top: 35px;
  }
  .popup-tips-twin-btn a.box-btn:hover {
	background: #fff;
	color: #23b1b1;
  }
  .popup-tips-twin-btn .box-btn.tp-1:hover {
	background: #23b1b1;
	color: #fff;
  }
/* course-recording page css end */

/* my-course page css start  */

.ac-rw-content.type-2.type-3 {
	padding: 0;
	text-align: right;
	display: block;
	padding-bottom: 5px;
  }
  .row-one .tertiary-title {
	margin-bottom: 20px;
  }
  .course-upload-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
  }
  .upload-btn {
	position: relative;
	margin: 0;
	border: 1px solid #23b1b1;
	color: #23b1b1;
	font-size: 16px;
	padding: 0 24px;
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	transition: .3s;
  }
  .upload-btn input {
	position: absolute;
	max-width: 0;
	opacity: 0;
	visibility: hidden;
  }
  .upload-btn:hover {
	background: #23b1b1;
	color: #fff;
  }
  .input-inside.search-box input {
	border-radius: 30px;
	height: 40px;
	border: 1px solid #e1e1e1;
	width: 100%;
	padding-left: 45px;
  }
  .input-inside.search-box {
	flex: 0 0 370px;
  }
  .condition-p {
	margin-top: 15px;
}

.row-one.unique .tertiary-title {
	margin-bottom: 5px;
  }
  .tbl-twin-link a {
	display: inline-block;
	color: #23b1b1;
	font-size: 16px;
	margin: 0 15px;
  }
  .tbl-twin-link a:hover {
	color: #23b1b1;
  }
  .row-one.unique .romm-table-outer-box {
	margin-bottom: 40px;
}

.row-one .table.payment tbody tr.active td:first-child {
	position: relative;
  }
  .row-one .table.payment tbody tr.active td:first-child::after {
	width: 5px;
	height: 100%;
	background: #23b1b1;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
  }
  .input-inside.search-box .sc-icon i {
	font-size: 16px;
}
/* my-course page css end */

/* share-page css start  */

.share-g-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
  }
  .general-link {
	color: #23b1b1;
	font-size: 16px;
	display: inline-block;
  }
  .general-link:hover {
	color: #23b1b1;
  }
  .link-generate {
	display: grid;
	grid-template-columns: 150px auto;
	grid-gap: 15px;
	align-items: center;
  }

  .copy-input-g .input-inside input {
	height: 40px;
  }
  .copy-input-g .input-inside {
	margin-bottom: 0;
  }
  .copy-input-g {
	display: grid;
	grid-template-columns: auto 85px;
	grid-gap: 15px;
  }
  .box-btn.copy-btn {
	background: top;
	border: 1px solid #23b1b1;
	color: #23b1b1;
	padding: 0;
	text-align: center;
	line-height: 40px;
	height: 40px;
	box-sizing: border-box;
	transition: .3s;
	font-family: montserrat;
	font-size: 16px;
	text-transform: capitalize;
  }
  .box-btn.copy-btn:hover {
	background: #23b1b1;
	color: #fff;
  }
.validity-confirm {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.terms-of-validity {
  display: flex;
  align-items: center;
}
.terms-of-validity p {
  color: #333333;
  font-size: 16px;
  margin-right: 5px;
}
.terms-of-validity a.confirm {
  margin-left: 20px;
}
.validity-confirm a.confirm {
  margin-left: 25px;
}
.box-btn.confirm {
	padding: 8px 40px;
	font-family: montserrat;
	text-transform: capitalize;
	border: 1px solid #297d7d;
	transition: .3s;
}
.box-btn.confirm:hover {
	background: transparent;
	color: #297d7d;
}
.terms-of-validity .nice-select.sl-select.style-2 {
  height: 40px;
  line-height: 40px;
  transform: translateY(0);
}
.share-with-wrap {
	padding-bottom: 36px;
	margin-bottom: 45px;
}
.row-one.share-pge .romm-table-outer-box {
	margin-bottom: 45px;
}

.row-one.share-pge .romm-table-outer-box {
	margin-bottom: 45px;
  }
  .share-person-info-g-wrap form.max-550 {
	max-width: 570px;
  }
  .share-person-info-g-wrap .with-left-label {
	grid-template-columns: 150px auto;
	margin-bottom: 20px;
  }
  .share-person-info-g-wrap .with-left-label .input-inside input {
	height: 40px;
  }
  .share-person-info-g-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
  }
  .share-person-info-g-wrap .input-inside.style-2 .sl-select {
	border: 1px solid #e1e1e1;
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
	color: #212529a1;
	font-family: montserrat;
	background: #fff;
	width: 100%;
}
.input-inside.style-2 textarea {
	border: 1px solid #e1e1e1;
	border-radius: 5px;
	padding: 15px;
	padding-top: 10px;
	height: 204px;
}

.to-person {
	text-align: right;
  }
  .to-person img {
	max-width: 505px;
  }

  .public-twin-wrapper {
	display: grid;
	grid-template-columns: auto 365px;
	grid-gap: 30px;
	margin-bottom: 15px;
  }
  .public-twin-wrapper a.public {
	max-width: 180px;
	text-align: center;
	text-transform: uppercase;
  }
  .share-person-wrapper {
	margin-bottom: 40px;
}
.share-person-wrapper {
	margin-bottom: 40px;
	padding-bottom: 35px;
}

.sc-icon.pound {
	right: 15px;
	left: auto;
  }
  .input-inside.style-2.with-sign-right {
	max-width: 200px;
  }
  .with-left-label.mb-0 {
	margin-bottom: 0 !important;
}
/* share-page css end */


/* mobile menu css start  */

.nav-trigger {
	height: 44px;
	width: 44px;
	overflow: hidden;
	color: transparent;
	white-space: nowrap;
	text-indent: 100%;
}
  
  .nav-trigger span,
  .nav-trigger span::before,
  .nav-trigger span::after {
	position: absolute;
	height: 4px;
	width: 36px;
	background: #999999;
  }
  
  .nav-trigger span {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: background .3s;
  }
  
  .nav-trigger span::before,
  .nav-trigger span::after {
	content: '';
	top: 0;
	left: 0;
	transition: background .3s, transform .3s;
  }
  
  .nav-trigger span::before {
	transform: translateY(-12px);
  }
  
  .nav-trigger span::after {
	transform: translateY(12px);
  }
  
  .nav-trigger:hover span, 
  .nav-trigger:hover span::before,
  .nav-trigger:hover span::after {
	background: white;
  }
  
  .nav-open .nav-trigger span {
	background: transparent;
  }
  
  .nav-open .nav-trigger span::before,
  .nav-open .nav-trigger span::after {
	background: #1F2B3D;
  }
  
  .nav-open .nav-trigger span::before {
	transform: rotate(-45deg);
  }
  
  .nav-open .nav-trigger span::after {
	transform: rotate(45deg);
  }
  
  .overlay {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1C1D21;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
  }
  
  .nav-open .overlay {
	opacity: .6;
	visibility: visible;
  }
  .nav-container {
	position: fixed;
	z-index: 100000;
	top: 0;
	right: 0;
	height: 100%;
	width: 90%;
	max-width: 460px;
	padding: 2em 3.5em;
	background: #F3F3F3;
	overflow: auto;
	/* transform: translateZ(0); */
	transform: translateX(100%);
	transition: transform .5s cubic-bezier(.07,.23,.34,1);
}
  
  .nav-open .nav-container {
	transform: translateX(0);
  }
  
  .nav-container h2 {
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	color: #AAAAAA;
	margin: 1.5em 0;
  }
  
  .nav-open .nav a {
	animation: slide-in .4s .2s backwards;
  }
  
  .nav-open .nav li:nth-of-type(2) a {
	animation-delay: .3s;
  }
  
  .nav-open .nav li:nth-of-type(3) a {
	animation-delay: .4s;
  }
  
  .nav-open .nav li:nth-of-type(4) a {
	animation-delay: .5s;
  }
  
  .nav-open .nav li:nth-of-type(5) a {
	animation-delay: .6s;
  }
  
  @keyframes slide-in {
	0% {
	  opacity: 0;
	  transform: translateX(80px);
	}
  
	100% {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  #navigation .nav {
	display: block;
	padding-top: 10px;
}
#navigation ul li a {
	font-family: montserrat;
	font-size: 28px;
	transition: .3s;
	color: #333;
	padding: 8px 0;
}
  #navigation ul li a:hover {
	  color: #297D7D;
  }

/* mobile menu css end */


/* Confirm-popup Css start  */

.confirm-popup-wrap {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	background: #fff;
	z-index: 100;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	width: 250px;
	padding: 15px;
	border-radius: 5px;
}
body.confirm .confirm-popup-wrap {
	opacity: 1;
	visibility: visible;
}

body.confirm {
	position: relative;
  }
  body.confirm::after {
	content: "";
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	z-index: 99;
	opacity: .5;
	transition: .3s;
  }
  .confirm-popup-wrap p {
	color: #333333;
	font-size: 16px;
	margin-bottom: 15px;
  }
  .confirm-crud-btn {
	text-align: right;
  }
  .confirm-crud-btn a {
	display: inline-block;
	color: #297d7d;
	font-weight: 600;
	font-size: 16px;
	margin-left: 18px;
  }
/* Confirm-popup Css end */




 /*My custom CSS Start*/
.padding-0{
	padding: 0;
}
.display-block{
	display: block;
}
.margin-0{
	margin: 0;
}
.margin-auto{
	margin: auto!important;
}
.max-bg-width{
	max-width: 1280px;
}
.main-area{
	height: calc(100vh - 100px);
	padding-top: calc((100vh - 550px)/2);
	padding-left: 100px;
	padding-right: 100px;
	position: relative;
}

.main{
	position: relative;
}
.main-background{
	position: absolute;
	right: 0;
	height: calc(100vh - 70px);
}
.main-text{
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 40px;
}
.btn-back{
	color: #162042!important;
	font-size: 12px;
	padding: 10px 30px;
	cursor: pointer;
	margin-right: 10px;
	font-weight: 600;
	border-radius: 10px;
}
.btn-back:hover, .btn-active{
	background-color: #00d2f0;
}
.group-title {
	font-size: 30px;
	position: relative;
	color: white;
	margin-top: 10px;
	font-family: montserrat_bold;
	/*font-weight: 800;*/
	/*margin-bottom: 100px;*/
}
.offer-div{
	margin-top: 60px;
}
.offer-img{
	width: 30px;
	height: 30px;
	margin-right: 15px;
}
.bring-item1, .bring-item2{
	width: 430px;
	/*margin-right: 50px;*/
	padding: 20px 30px;
	object-fit: contain;
	border-radius: 10px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
	background-color: rgba(18, 25, 49, 0.5);
}
.bring-item1{
	float: right;
}
.bring-item1>p{
	text-align: right;
	/*margin: 0!important;*/
}
.bring-item2>p{
	text-align: left;
	/*margin: 0!important;*/
}
.client-say-item{
	padding: 25px;
	background-color: #1e1e1e;
	text-align: center;
	border-radius: 5px;
}
.client-say-item>img{
	margin: auto;
}
.line{
	height: 3px;
	width: 70px;
	margin: auto;
	background-color: #ffa32e;
}
.client-say-div{
	position: relative;
}
.client-say-back-img-l{
	position: absolute;
	top: 0;
	left: -160px;
}
.client-say-back-img-r{
	position: absolute;
	top: 0;
	right: -160px;
}
.more-title{
	font-size: 26px;
	position: relative;
	color: white;
	margin-top: 10px;
	font-family: montserrat_bold;
}
.more-icon-div{
	width: 100%;
	cursor: pointer;
}
.more-icon{
	width: 20px;
	height: 20px;
}
.more-input{
	background: unset;
	border-radius: unset!important;
	border-bottom: 2px solid #888888!important;
}
.width-100{
	width: 100%;
}
.more-textarea{
	background: unset;
	border: none;
	border-bottom: 2px solid #888888;
}
.footer-line{
	height: 2px;
	width: 100%;
	background-color: #FFFFFF;
}
.product-item{
	border-radius: 5px;
	background-color: #FFFFFF;
}
.product-item img{
	/*width: 100%;*/
	height: 180px;
	max-height: 180px;
	padding: 15px;
	border-radius: 5px 5px 0 0;
	margin: auto;
	max-width: 100% !important;
}
.product-item-bottom h5{
	font-size: 14px;
	width: 100%;
}
.product-item-bottom p{
	line-height: 15px;
	width: 100%;
}
.product-item-bottom{
	padding: 15px;
	background-color: #ff7e30;
	background-image: linear-gradient(to bottom, #ffa62d, #ff822f);
	border-radius: 0 0 5px 5px;
	text-align: center;
	height: 115px;
}
/*My custom CSS End*/

.header-area>div>div{
	justify-content: space-between;
}
.dashboard-div{
	background-color: #162042;
	background-image: linear-gradient(to bottom, #162042, #121931);
}
.other-div{
	background-color: #121931;
}
.blue-text{
	color: #00d2f0;
}
.main-two-btn{
	display: block;
}
.renewal-text{
	margin-top: 10px;
	color: #00d2f0;
}
.main-scroll-icon{
	position: absolute;
	left: 0;
	bottom: 100px;
}
.feature-logo-div{
	position: relative;
}
.features-logo{
	margin: auto;
	width: 319px;
}
.features-right-logo{
	position: absolute;
	right: 100px;
	bottom: 0;
	width: 107px;
}
.feature-item{
	padding: 15px;
}
.feature-item>div{
	background: url(../image/feature_item_back.webp);
	background-size: 100% 100%;
	height: 230px;
	width: 230px;
	max-width: 230px;
	display: block;
	text-align: center;
	padding: 50px 40px;
}
.feature-item p{
	margin-top: 30px;
	font-size: 17px;
	font-weight: bold;
}
.new-app{
	text-align: center;
}
.btn-phone{
	color: #00d2f0!important;
	font-size: 12px;
	padding: 10px 30px;
	cursor: pointer;
	margin-right: 10px;
	font-weight: 600;
	border-radius: 10px;
	background-color: #0f152a;
	margin-top: 50px;
}
.phone-back{
	padding-left: 30px;
	padding-right: 30px;
	/*position: relative;*/
	background-image: url(../image/fond-bleu.webp);
	background-size: 100%;
	background-repeat: no-repeat, no-repeat;
	background-position: center center;
}
.support-logo{
	padding-left: 80px;
	width: 345px;
	height: 124px;
	object-fit: contain;
}
.isobar-img{
	margin-left: 50px;
	width: 964px;
	height: 624px;
	object-fit: contain;
}
.iso-bar{
	position: relative;
}
.iso-bar p{
	margin-bottom: 0!important;
}
.text-block-1{
	display: block;
	position: absolute;
	left: 530px;
	top: -70px;
}
.text-block-2{
	display: block;
	position: absolute;
	left: 670px;
	top: -20px;
}
.text-block-3{
	display: block;
	position: absolute;
	left: 800px;
	top: 27px;
}
.text-block-4{
	display: block;
	position: absolute;
	left: 920px;
	top: 75px;
}
.support-text-img{
	position: absolute;
	left: 920px;
	top: 220px;
	width: 239px;
	height: 26px;
	object-fit: contain;
}
#support_website{
	padding-top: 0;
}
.terminal-img{
	width: 100%;
}
#successful{
	padding: 0 100px;
}
.success-text-div{
	padding: 50px 50px 0 50px;
}
.success-text-div>img{
	margin-bottom: 30px;
}
.success-text-div>p{
	margin-bottom: 20px;
}
.btn-twitter{
	color: #00d2f0!important;
	font-size: 12px;
	padding: 10px 30px;
	cursor: pointer;
	margin-right: 10px;
	font-weight: 600;
	/*height: 45px;*/
	border-radius: 8px;
	border: solid 1px #00d2f0;
}
.btn-twitter>img{
	margin-right: 20px;
	width: 16px;
	height: 13px;
	object-fit: contain;
}
#faq{
	background-image: url(../image/fag_back.webp);
	background-size: 50%;
	background-repeat: no-repeat, no-repeat;
	background-position: center center;
	padding: 150px 115px;
}
.b-social-icon{
	margin-right: 30px;
	width: 20px;
	height: 17px;
	object-fit: contain;
}
.terms-tex{
	text-decoration: underline!important;
	color: #777777!important;
	font-style: italic;
}
.social-icons{
	/*display: block!important;*/
	/*text-align: right;*/
	display: flex !important;
	justify-content: flex-end;
}
.faq-title{
	/*height: 16px;*/
	font-family: Montserrat;
	font-size: 13px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.46px;
	color: #ffffff;
	margin-bottom: 5px!important;
}
.faq-text1{
	font-family: Montserrat;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.43px;
	color: #ffffff;
	margin-bottom: 0;
}
.feature-item img{
	width: 68px;
	height: 68px;
	object-fit: contain;
}
.phone-back img{
	width: 254px;
	height: 491px;
	object-fit: contain;
}
.bottom-logo{
	width: 55px;
	height: 54px;
	object-fit: contain;
}

#about{
	padding-top: 0!important;
}

/*//index page CSS End*/



/*Task Page CSS start*/
.tabContainer nav a{
	/*width: 36px;*/
	/*height: 15px;*/
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.6px;
	text-align: center;
	color: #00d2f0;
}
.nav-tabContent{
	width: 1038px;
	height: 546px;
	object-fit: contain;
	background-image: url(../image/task_back.png);
}
.nav-item-img{
	width: 16px;
	height: 16px;
	margin-right: 5px;
	/*background-color: #00d2f0;*/
}
.user-item-div{
	display: block!important;
	margin: auto;
	padding-right: 50px;
}
.user-avatar{
	margin: auto;
	width: 25px!important;
	height: 25px!important;
	object-fit: contain;
	/*border: solid 1px #00d2f0;*/
}
.btn-user{
	float: right;
	width: 130px;
	height: 38px;
	object-fit: contain;
	border-radius: 19px;
	background-image: linear-gradient(76deg, rgba(255, 255, 255, 0) 12%, rgba(0, 210, 240, 0.1) 86%);
}
.btn-user:hover {
    float: right;
    width: 130px;
    height: 38px;
    object-fit: contain;
    border-radius: 19px;
    background-image: linear-gradient(76deg, rgba(255, 255, 255, 0) 50%, rgba(0, 210, 240, 0.1) 100%);
}
.user-name{
	margin: auto;
	width: 80px;
	height: 15px;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 1px;
	color: #ffffff;
	cursor: pointer;
}

.task-main{
	height: 100vh;
	min-height: 100vh;
	background-color: #121931;
	background-image: linear-gradient(to bottom, #162042, #121931);
}
.task-div {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: max-content;
	padding: 30px 30px 0 30px;
}
.task-count{
	margin-top: auto;
	opacity: 0.8;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 1.33px;
	color: #ffffff;
}
.task-start{
	/*width: 67px;*/
	/*height: 29px;*/
	cursor: pointer;
	padding: 10px;
	margin-right: 10px;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.78px;
	color: #00d2f0!important;
	border-radius: 3px;
	background-image: linear-gradient(114deg, #0f152a 6%, rgba(15, 21, 42, 0.14) 95%);
}
.task-stop{
	/*width: 67px;*/
	/*height: 29px;*/
	cursor: pointer;
	padding: 10px;
	margin-right: 10px;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.78px;
	color: #00d2f0!important;
	border-radius: 3px;
	background-image: linear-gradient(114deg, #0f152a 6%, rgba(15, 21, 42, 0.14) 95%);
}
.task-start:hover{
	/*width: 67px;*/
	/*height: 29px;*/
	cursor: pointer;
	padding: 10px;
	margin-right: 10px;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.78px;
	color: #00d2f0!important;
	border-radius: 3px;
	background-image: linear-gradient(114deg, #0f152a 50%, rgba(15, 21, 42, 0.14) 100%);
}
.task-stop:hover{
	/*width: 67px;*/
	/*height: 29px;*/
	cursor: pointer;
	padding: 10px;
	margin-right: 10px;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.78px;
	color: #00d2f0!important;
	border-radius: 3px;
	background-image: linear-gradient(114deg, #0f152a 50%, rgba(15, 21, 42, 0.14) 100%);
}
.task-start img{
	width: 10px;
	height: 11px;
	margin-right: 5px;
	/*background-color: #00d2f0;*/
}
.task-stop img{
	width: 10px;
	height: 11px;
	margin-right: 5px;
	/*background-color: #00d2f0;*/
}
.tasks-table thead{
	border-radius: 8px;
	box-shadow: 0 5px 11px 1px rgba(0, 0, 0, 0.21);
	background-color: #121a32;
	width: 100%;
	/*display: block;*/
}
.tasks-table thead tr{
	background-color: #121a32;
}
.tasks-table thead tr th:first-child{
	border-radius: 8px 0 0 0;
	padding: 25px 15px 25px 30px!important;
}
.tasks-table thead tr th:last-child{
    border-radius: 0 8px 0 0;
}
.tasks-table thead tr th{
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.32px;
	color: #ffffff;

	padding: 25px 15px;
	width: 150px;
	min-width: 100px;
}
.table td, .table th{
	border: none!important;
}
.tasks-table tbody tr{
	object-fit: contain;
	background-color: #0f152a;
}
.tasks-table tbody tr:nth-child(even) {
	background-color: #12192f;
}

.tasks-table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 8px;
}
.tasks-table tbody tr:last-child td:last-child {
	border-radius: 0 0 8px 0;
}
.tasks-table tbody tr td{
	font-family: HelveticaNeue;
	font-size: 14px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.36px;
	color: #ffffff;
	padding: 15px;
	width: 150px;
	min-width: 100px;
}
.tasks-table tbody tr td:first-child{
	padding-left: 30px;
}
.task-action-div img{
	width: 11px;
	height: 11px;
	object-fit: contain;
	border-radius: 1px;
	margin-right: 10px;
}
.btn-creat-task{
	cursor: pointer;
	float: right;
	border-radius: 3px;
	border: solid 1px #00d2f0;
	/*opacity: 0.9;*/
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.89px;
	color: #00d2f0!important;
	padding: 10px 19px;
}
.btn-creat-task:hover{
	background-color: #00d2f0;
	color: #FFFFFF!important;
}
.submitting-pay{
	color: #8bd900!important;
	width: 300px!important;
}
.idle{
	color: #d97300!important;
	width: 300px!important;
}
.left-icon-bar{
	position: absolute;
	left: 140px;
	width: 8px;
	height: 44px;
	object-fit: contain;
}
.license-div{
	text-align: center;
	margin: auto;
	margin-top: 70px;
	display: block;
	/*background-image: url(../image/license_back.png);*/
	background-size: 100% 100%;
	width: 700px;
	/*height: 340px;*/
	object-fit: contain;
	border-radius: 8px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	box-shadow: 0 0 12px 5px rgba(0, 0, 0, 0.2);
	background-color: rgba(18, 25, 49, 0.5);
	padding-top: 45px;
	padding-bottom: 30px;
}
.license-div h4{
	/*width: 101px;*/
	/*height: 23px;*/
	font-family: montserrat;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: -1.4px;
	text-align: center;
	color: #ffffff;
	margin: auto;
	/*margin-top: 45px;*/
}
.license-div p{
	width: 300px;
	/*height: 34px;*/
	font-family: montserrat;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.42;
	letter-spacing: -0.88px;
	text-align: center;
	color: #00d2f0;
	margin: auto;
	margin-top: 22px;
}
.license-div input{
	width: 468px;
	height: 51px;
	border-radius: 3px;
	background-color: #171f3b;
	margin: auto;
	margin-top: 50px;
	object-fit: contain;
	font-family: montserrat;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: -0.96px;
	color: #ffffff;
	border: none;
	padding: 18px 21px;
}

.btn-logout{
	padding-top: 5px;
	margin-top: 10px;
	width: 468px;
	height: 33px;
	border-radius: 3px;
	background-color: #990720;
	font-family: montserrat;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: -0.88px;
	text-align: center;
	color: #ffffff!important;
	cursor: pointer;
}
.btn-logout:hover{
	background-color: #171f3b;
	border: 1px solid #990720;
	color: #ffffff!important;
}
#createTaskModal{
	width: 100%;
	height: 100vh;
	background-color: #121931;
}
#createTaskModal .modal-dialog, #createTaskModal .modal-content{
	width: 100%;
	height: 100vh;
	background-color: #121931;
	margin: 0!important;
	max-width: 100%;
	border: none!important;
}
.btn-modal-close{
	width: 100px;
	height: 50px;
	cursor: pointer;
}
/*.btn-modal-close{*/
/*	width: 81px;*/
/*	height: 40px;*/
/*	object-fit: contain;*/
/*	opacity: 0.9;*/
/*	font-family: Montserrat;*/
/*	font-size: 10px;*/
/*	font-weight: 500;*/
/*	font-stretch: normal;*/
/*	font-style: normal;*/
/*	line-height: normal;*/
/*	letter-spacing: 2px;*/
/*	color: #00d2f0!important;*/
/*	padding: 17px 20px 13px 20px;*/
/*	border-radius: 5px;*/
/*	background-color: #121931;*/
/*}*/
.modal-header{
	padding-left: 50px;
	padding-top: 40px;
	padding-bottom: 0;
	border-bottom: none!important;
}
.modal-footer{
	border: none;
}
.create-task-logo{
	margin: auto;
	margin-bottom: 40px;
	width: 110px;
	height: 110px;
	object-fit: contain;
	background-image: url(../image/Infinite@2x.png);
	background-size: 100% 100%;
}
.create-task-logo p{
	font-family: Montserrat;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.43px;
	text-align: center;
	color: #00d2f0!important;
	padding-top: 47px;
}
.task-modal-body{
	margin: auto;
	max-width: 1500px;
	padding-left: 30px;
	padding-right: 30px;

	overflow-x: auto;
	height: 100%;
	overflow-y: hidden;
}
.modal-task-table thead tr th{
	background: none!important;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.32px;
	color: #ffffff;

	padding: 20px 0 20px 10px;
}
.modal-task-table thead tr th:first-child{
	padding: 20px 0 20px 20px;
}
.modal-task-table tbody{

	box-shadow: 0 5px 11px 1px rgba(0, 0, 0, 0.21);
	background-color: #121a32;
	border-radius: 8px;
}
.modal-task-table tbody tr{
	padding: 16px 16px 0 16px;
}
.modal-task-table tbody tr td{
	padding: 16px 5px 0 5px;
	min-width: 100px;
}
.modal-task-table tbody tr td.second-td{
	margin-left: 5px!important;
}
.modal-task-table tbody tr td:first-child{
	padding: 16px 5px 0 16px;
}
.modal-task-table tbody tr td:last-child{
	padding: 16px 16px 0 5px;
}
.modal-task-table tbody tr:last-child td:first-child{
	padding: 16px 5px 16px 16px!important;
}
.task-modal-input{
	height: 37px;
	width: 100% !important;
	padding-left: 10px;
	border-radius: 3px!important;
	border: solid 1px #00d2f0!important;
	font-family: HelveticaNeue!important;
	font-size: 14px!important;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.43px;
	color: #00d2f0!important;
	background: none!important;

	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.task-modal-select{
	height: 30px;
	width: 100% !important;
	border-radius: 3px!important;
	border: solid 1px #00d2f0!important;
	font-family: Montserrat!important;
	font-size: 14px!important;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.43px;
	color: #00d2f0!important;
	background: none!important;
	margin-top: 1px!important;
	margin-left: 0!important;
}
.nice-select.sl-select.style-2.task-modal-select::after{
	border-color: #00d2f0!important;
}
.btn-add-line{
	cursor: pointer;
	padding: 9px 15px;
	/*height: 30px;*/
	border-radius: 3px;
	border: solid 1px #ffffff;
	/*opacity: 0.9;*/
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.32px;
	color: #ffffff!important;
	margin-left: 16px;
}
#profiles .current {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 76px;
}
#proxies .current {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 53px;
}
#payment .current {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 53px;
}
.btn-creat-task.modal-btn{
	margin-right: 16px;
}
.date-th{
	min-width: 130px!important;
}
.product-th{
	min-width: 200px!important;
	width: 400px!important;
}
.product-td{
	max-width: 350px;

	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.website-th{
	min-width: 185px!important;
	width: 185px;
}
.url-th{
	width: 225px;
	min-width: 175px!important;
}
.nice-select .list{
	background-color: #162042;
}
.nice-select.sl-select.style-2.task-modal-select.open ul{
	max-height: 300px;
	overflow-y: auto;
}
.nice-select.sl-select.style-2.task-modal-select.open ul.list{
	background-color: #162042;

}
.nice-select.sl-select.style-2.task-modal-select.open ul.list li{
	color: #00d2f0!important;
	font-family: HelveticaNeue!important;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus{
	background-color: #0f152a;
}
.nice-select.sl-select.style-2.task-modal-select.open ul.list li.selected{
	font-weight: normal!important;
}
.table.tasks-table{
	/*display: block;*/
	overflow: auto;
}
.tb-task-tbody{
	/*display: block;*/
	width: 100%;
	max-height: 300px;
}
.product-td{
	width: 400px!important;
	min-width: 200px!important;
}

/*//license part*/
.border-back{
	object-fit: contain;
	border-radius: 8px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	box-shadow: 0 0 12px 5px rgba(0, 0, 0, 0.2);
	background-color: rgba(18, 25, 49, 0.5);
}
.subscription-div {
	padding: 30px 16px;

}
.btn-gray{
	width: 100%;
    padding: 10px;
    background-color: #00d2f0;
    border-radius: 3px;
    opacity: 0.75;
    color: #121931!important;
    font-size: 12px;
    border: 1px solid #00d2f0;
    font-style: normal;
    font-weight: bold;
    opacity: 0.85;
    letter-spacing: -0.88px;
    font-family: 'montserrat_bold';
}
.btn-gray:hover{
	background-color: #171f3b;
    border: 1px solid #00d2f0;
    color: #FFFFFF!important;
}

@charset "UTF-8";
.blue-border-back {
	-webkit-box-align: center;
	position: relative;
	background: #131c37;
	background-clip: padding-box;
	border: solid 1px transparent;
	border-radius: 5px 5px 0 0;

	padding: 15px 15px 5px 15px;
}
.blue-border-back:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: -1px;
	/* !importanté */
	border-radius: inherit;
	/* !importanté */
	background: -webkit-gradient(linear, left top, right bottom, from(rgba(0,210,240,0.6)), to(rgba(151,151,151,0)));
	background: linear-gradient(to bottom, rgba(0,210,240,0.6), rgba(151,151,151,0));
}
.btn-red-board{
	margin-top: 10px;
	width: 100%;
	/*height: 33px;*/
	line-height: 35px;
	border-radius: 3px;
	background-color: transparent;
	border: 1px solid #990720;
	color: #990720!important;
	font-family: montserrat_bold;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: -0.88px;
	text-align: center;
	cursor: pointer;
}
.btn-red-board:hover {
    margin-top: 10px;
    width: 100%;
    /* height: 33px; */
    line-height: 35px;
    border-radius: 3px;
    background-color: #e80e0e17;
    border: 1px solid #990720;
    color: #990720!important;
    font-family: montserrat_bold;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -0.88px;
    text-align: center;
    cursor: pointer;
}
.btn-red-back{
	margin-top: 10px;
	width: 100%;
	/*height: 33px;*/
	line-height: 35px;
	border-radius: 3px;
	background-color: #990720;
	border: 1px solid #990720;
	color: #FFFFFF!important;
	font-family: montserrat_bold;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: -0.88px;
	text-align: center;
	cursor: pointer;
}
.btn-activate{
	margin-top: 23px;
	width: 100%;
	border-radius: 3px;
	background-color: #00d2f0;
	font-family: montserrat_bold;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	font-weight: bold;
	line-height: 35px;
	letter-spacing: -0.88px;
	text-align: center!important;
	color: #121931!important;
	cursor: pointer;
}
.btn-activate:hover{
	background-color: #171f3b;
	border: 1px solid #00d2f0;
	color: #FFFFFF!important;
}
.btn-input{
	margin-top: 23px;
	width: 100%;
	border-radius: 3px;
	background-color: rgb(23, 31, 59);
	font-family: montserrat;
	font-size: 10px;
	line-height: 35px;
	/*letter-spacing: -0.88px;*/
	text-align: center!important;
	color: #FFFFFF!important;
	cursor: pointer;
	border: none;
}
.important-link-item{
	border-radius: 8px;
	border: 1px solid #1d316f;
	padding: 15px 0;
	cursor: pointer;
}
.important-link-item:hover{
	background-color: #25366a;
}
.important-link-item img{
	background-color: rgb(22, 32, 66);
	width: 35px;
	height: 35px;
	padding: 10px;
	border-radius: 5px;
}
.important-link-item p{
	font-size: 10px;
	font-family: montserrat;
}
.card-div{
	position: relative;
}
.credit-card-img{
	width: 100%;
	height: 160px;
}
.card-top-text{
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 12px;
	color: white;
	font-family: montserrat;
}
.card-number{
	position: absolute;
	bottom: 90px;
	left: 30px;
	color: white;
}
.card-name{
	position: absolute;
	bottom: 10px;
	left: 30px;
	color: white;
	font-size: 12px;
	font-family: montserrat;
}
.small-size{
	font-size: 10px;
}
/*.card{*/
/*	height: 200px;*/
/*}*/
/*.card-front, .card-back{*/
/*	top: 0;*/
/*	position: absolute;*/
/*	z-index: 1000;*/
/*	left: 0;*/
/*	display: inline-block;*/
/*	!*width: 320px;*!*/
/*	!*height: 190px;*!*/
/*	!*background-image: url(https://image.ibb.co/bVnMrc/g3095.png), linear-gradient(to right bottom, #162042 ,#13CFEA);*!*/
/*	!*background-repeat: no-repeat;*!*/
/*	!*background-position: center;*!*/
/*	!*background-size: cover;*!*/
/*	!*border-radius: 8px;*!*/
/*	-webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*	-moz-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*	-ms-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*	-o-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*	transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
/*	-webkit-transform-style: preserve-3d;*/
/*	-moz-transform-style: preserve-3d;*/
/*	-webkit-backface-visibility: hidden;*/
/*	-moz-backface-visibility: hidden;*/
/*}*/
/*.card:hover .card-front {*/
/*	-webkit-transform: rotateY(180deg);*/
/*	-moz-transform: rotateY(180deg);*/

/*}*/

/*.card:hover .card-back {*/
/*	-webkit-transform: rotateY(0deg);*/
/*	-moz-transform: rotateY(0deg);*/
/*}*/

.card-holder{
	text-align: left!important;
	padding-left: 15px;
	font-size: 10px;
	color: rgb(255, 255, 255)!important;
}
.btn-input.btn-card-number{
	padding: 0 15px;
	font-size: 10px;
	color: rgb(255, 255, 255)!important;
	display: flex!important;
}
/*Task Page CSS End*/




















/*Scrollbar CSS Start*/
/* width */
::-webkit-scrollbar {
	width: 5px;
	/*box-shadow: inset 0 0 5px grey;*/
	/*border-radius: 10px;*/
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #0f152a;
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #0f152a;
}
/*Scrollbar CSS End*/
