@font-face {
  font-family: "Work Sans";
  src: url("/platform_assets/font/WorkSans-VariableFont_wght.ttf");
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	/* font-family: "Open Sans", Helvetica, Arial, sans-serif; */
  font-family: Work Sans;
}

html, body {
  font-size: 62.5%;
  height: 100%;
  /*overflow: hidden;*/
}
@media (max-width: 768px) {
  html, body {
    font-size: 50%;
  }
}

svg {
  /* display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: visible; */
}

.svg-icon {
  cursor: pointer;
}
.svg-icon path {
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1;
}

input, input:focus, button, button:focus {
  outline: none;
  border: none;
}


.demo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -22rem;
  margin-top: -26.5rem;
  width: 45rem;
  height: 53rem;
  overflow: hidden;
}

.login {
  position: relative;
  height: 100%;
  background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25), -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.login.inactive {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.login__check {
	text-align:center;
	padding-top:30px;
}
.login__check:before {
	
}
.login__form {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 55%;
  padding: 1.5rem 2.5rem;
  text-align: center;
}
.login__row {
  height: 5rem;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.login__icon {
  margin-bottom: -0.4rem;
  margin-right: 0.5rem;
}
.login__icon.name path {
  stroke-dasharray: 73.50196075439453;
  stroke-dashoffset: 73.50196075439453;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__icon.pass path {
  stroke-dasharray: 92.10662841796875;
  stroke-dashoffset: 92.10662841796875;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__input {
  display: inline-block;
  width: 35rem;
  height: 100%;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  background: transparent;
  color: #FDFCFD;
}
.login__submit {
  position: relative;
  width: 100%;
  height: 4rem;
  margin: 6rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.8);
  background: #FF3366;
  font-size: 1.5rem;
  border-radius: 3rem;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}
.login__submit:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  width: 3rem;
  height: 3rem;
  border: 2px dotted #fff;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  transition: opacity 0.1s 0.4s;
  opacity: 0;
}

.login__submit.processing {
  width: 4rem;
  font-size: 0;
}
.login__submit.processing:after {
  opacity: 1;
  -webkit-animation: rotate 0.5s 0.4s infinite linear;
          animation: rotate 0.5s 0.4s infinite linear;
}
.login__submit.success {
  transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  -webkit-transform: scale(30);
          transform: scale(30);
  opacity: 0.9;
}
.login__submit.success:after {
  transition: opacity 0.1s 0s;
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}
.login__signup, .forgot_password {
  font-size: 1.2rem;
  color: #ABA8AE;

}
.login__signup a, .forgot_password a {
  color: #fff;
  cursor: pointer;
	text-decoration:none;
}

.forgot_password {
	position:absolute;
	right:2.1em;	
	margin-top:5px;
}

.login__signup {
	position:absolute;
	bottom:1em;
	right:2.1em;	
}

.app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.app.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.app.active .app__user-photo {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.app.active .app__meeting {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.app.active .app__logout {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.app__top {
  position: relative;
  height: 28rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 13rem 1.5rem 2rem;
  text-align: center;
}
.app__bot {
  position: relative;
  height: 28rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 9rem 1.5rem 2rem;
  text-align: center;
}
.app__menu-btn {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  width: 1.8rem;
  height: 1.7rem;
  cursor: pointer;
}
.app__menu-btn span, .app__menu-btn:before, .app__menu-btn:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.app__menu-btn span {
  top: 0.8rem;
}
.app__menu-btn:before {
  content: "";
  top: 0;
}
.app__menu-btn:after {
  content: "";
  bottom: 0;
}
.app__icon {
  position: absolute;
  top: 2rem;
}
.app__icon.search {
  right: 1.5rem;
  stroke-dasharray: 61.847137451171875;
  stroke-dashoffset: 61.847137451171875;
  -webkit-animation: animatePath 0.5s 0.5s forwards;
          animation: animatePath 0.5s 0.5s forwards;
}
.app__hello {
  font-size: 2.2rem;
  color: #fff;
  font-weight: normal;
  
}

.app__meeting {
  position: relative;
  height: 6rem;
  
  padding: 1rem;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.app__meeting:nth-child(1) {
  transition-delay: 0.2s;
}
.app__meeting:nth-child(2) {
  transition-delay: 0.3s;
}
.app__meeting:nth-child(3) {
  transition-delay: 0.4s;
}
.app__meeting:nth-child(4) {
  transition-delay: 0.5s;
}
.app__meeting:nth-child(5) {
  transition-delay: 0.6s;
}
.app__meeting-photo {
  position: absolute;
  left: 2rem;
  top: 1rem;
  width: 4rem;
  height: 4rem;
}
.app__meeting-name {
  color: #fff;
  font-size: 1.5rem;
}
.app__meeting-info {
  color: #949498;
  font-size: 1.1rem;
}
.app__logout {
  position: absolute;
  bottom: 3.3rem;
  right: 3.3rem;
  width: 4.6rem;
  height: 4.6rem;
  margin-right: -2.3rem;
  margin-bottom: -2.3rem;
  background: #FC3768;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s, transform 0.4s 0.4s, opacity 0.1s 0.7s, background-color 0.1s 0.7s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s, transform 0.4s 0.4s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.app__logout.clicked {
  bottom: 50%;
  right: 50%;
  -webkit-transform: scale(30) !important;
          transform: scale(30) !important;
  opacity: 0.9;
}
.app__logout.clicked svg {
  opacity: 0;
}
.app__logout-icon {
  position: absolute;
  width: 3rem;
  height: 3rem;
  top: 50%;
  left: 50%;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  transition: opacity 0.1s;
}
.app__logout-icon path {
  stroke-width: 4px;
  stroke-dasharray: 64.36235046386719;
  stroke-dashoffset: 64.36235046386719;
  -webkit-animation: animatePath 0.5s 0.5s forwards;
          animation: animatePath 0.5s 0.5s forwards;
}

.ripple {
  position: absolute;
  width: 15rem;
  height: 15rem;
  margin-left: -5.5rem;
  margin-top: -7.5rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: animRipple 0.4s;
          animation: animRipple 0.4s;
  border-radius: 50%;
}

@-webkit-keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}

.pull-right {
	padding-top:10px;
}




/* check */

.circle-loader {
  margin-bottom: 3.5em;
	margin-top:11em;
  border: 1px solid #FF5599;
  border-left-color: #fff;
  animation: loader-spin 1.2s infinite linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  width: 15em;
  height: 15em;
	z-index:1000;
}

.load-complete {
  -webkit-animation: none;
  animation: none;
  border-color: #fff;
  transition: border 500ms ease-out;
}

.checkmark {
  display: none;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  height: 10.5em;
  width: 5.25em;
  transform-origin: left top;
  border-right: 6px solid #fff;
  border-top: 6px solid #fff;
  content: '';
  left: 1.75em;
  top: 7.8em;
  position: absolute;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 5.25em;
    opacity: 1;
  }
  40% {
    height: 10.5em;
    width: 5.25em;
    opacity: 1;
  }
  100% {
    height: 10.5em;
    width: 5.25em;
    opacity: 1;
  }
}

#error_message {
	text-align:center;
	margin-top:30px;
	display:none;
}

.form_available {
	text-align:center;
	margin-top:30px;
	color:white;
  	font-size: 2rem;
}

#image_source {
	background-color:rgba(0, 0, 0, 0.5);
	position:absolute;
	bottom:10px;
	right:20px;
	color:white;
	font-size:12px;
	padding:1px 10px;
	border-radius: 10px;
}

#image_source a {
	color:white;
	text-decoration: none;
}










/* ---------- redesign ----------------*/
body {
  background-image: none !important;
  background-color: #fff !important;
}

.cont {
  /*width: 1440px;
  height: 960px;*/
  background: #FFFFFF 0% 0% no-repeat padding-box;
  opacity: 1;
  margin: auto !important;
}

.demo {
  height: 100% !important;
  width: 100% !important;
  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.login-form-holder {
  position: absolute;
  top: calc(50% - 300px);
  left: calc(50% - 160px);
}

.login-form {
  width: 340px;
  /*height: 460px;*/
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px #00000029;
  border-radius: 20px;
  opacity: 1;
  padding: 27px;
  text-align: center;
  margin: auto;
}

.login-input-label {
  text-align: center;
  font: normal normal normal 12px/14px Work Sans;
  letter-spacing: 0.6px;
  color: #79CFE0;
  opacity: 1;
  margin-bottom: 5px;
}

.login-input {
  width: 280px;
  height: 60px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #79CFE0;
  border-radius: 10px;
  opacity: 1;
  text-align: center;
  font: normal normal 300 16px/19px Work Sans;
  letter-spacing: 0.8px;
  color: #DFDFDF;
}

.login-input:focus {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px #0F314733;
  border: 1px solid #0F3147;
  font: normal normal normal 16px/19px Work Sans;
  color: #0F3147;
}

.login-row {
  text-align: center;
  margin-bottom: 30px;
}

.login-submit, .login-verify {
  width: 160px;
  height: 50px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 2px solid #79CFE0;
  border-radius: 25px;
  letter-spacing: var(--unnamed-character-spacing-0);
  text-align: center;
  font: normal normal 600 16px/19px Work Sans;
  letter-spacing: 0px;
  color: #79CFE0;
  opacity: 1;
  margin: auto;
}

.login-submit:hover, .login-verify:hover, .login-verify:focus {
  border: 2px solid var(--primary-color);
  background: #0F3147 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #0F314780;
  font: normal normal 600 16px/19px Work Sans;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}

.login-verify:not(:focus) {
  border: 2px solid #79CFE0;
}

.forgot-password {
  text-align: center;
  font: normal normal normal 12px/14px Work Sans;
  letter-spacing: 0.6px;
  color: #0F3147;
  opacity: 1;
  margin-top: 10px;
}

.no-account {
  text-align: center;
  font: normal normal normal 12px/14px Work Sans;
  letter-spacing: 0.6px;
  color: #79CFE0;
  opacity: 1;
}

.login-signup {
  width: 100px;
  height: 50px;
  text-align: center;
  border-radius: 25px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  opacity: 1;
  text-align: center;
  font: normal normal 600 16px/19px Work Sans;
  letter-spacing: 0px;
  color: #0F3147;
  /* margin-top: 10px; */
}

.login-signup:hover {
  background: #79CFE0 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #0F314733;
  border: 2px solid #79CFE0;
  border-radius: 25px;
  opacity: 1;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.login-error-msg {
  letter-spacing: var(--unnamed-character-spacing-0);
  text-align: center;
  font: normal normal normal 12px/14px Work Sans;
  letter-spacing: 0px;
  color: #FF4400;
  padding: 0 0 0.8em 0;
  opacity: 1;
  visibility: hidden;
}

.brand-name {
  font: normal normal normal 14px/16px Work Sans;
  letter-spacing: 0.7px;
  color: #79D0E1;
  opacity: 1;
  /* margin-bottom: 25px; */
}

.logo {
  font-family: Work Sans;
  font-size: 36px;
  font-weight: bold;
}

#blurry {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  /* z-index: 99;
  filter: blur(10px); */
  display: none;
}

.dot-1 {
  position: fixed;
  top: 46px;
  right: 106px;
  width: 66px;
  height: 66px;
  background: #79CFE0 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 33px;
  /* display: none; */
}

.dot-2 {
  position: fixed;
  top: 91px;
  right: 61px;
  width: 22px;
  height: 22px;
  background: #0F3147 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 11px;
  /* display: none; */
}

.dot-3 {
  position: fixed;
  left: 46px;
  bottom: 75px;
  width: 36px;
  height: 36px;
  background: #79CFE0 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 18px;
  /* display: none; */
}

.dot-4 {
  position: fixed;
  left: 111px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  background: #0F3147 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 25px;
  /* display: none; */
}

.dot-5 {
  display: none;
  position: fixed;
  top: calc(50% - 12px);
  left: calc(50% - 62px);
  width: 24px;
  height: 24px;
  background: #79CFE0 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 12px;
  z-index: 105;
  animation: move5 2s ease-in-out;
}

.dot-6 {
  display: none;
  position: fixed;
  top: calc(50% - 19px);
  left: calc(50% + 31px);
  width: 38px;
  height: 38px;
  background: var(--primary-color) 0% 0% no-repeat padding-box;
  background: #0F3147 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 19px;
  z-index: 101;
  animation: move6 2s ease-in-out;
}

@keyframes move5 {
  0% {left: calc(50% - 62px)}
  50% {left: calc(50% + 48px)}
  100% { left: calc(50% - 62px); z-index:101;}
}

@keyframes move6 {
  0% {left: calc(50% + 31px)}
  50% {left: calc(50% - 69px)}
  100% { left: calc(50% + 31px); z-index: 105;}
}

.fs12 {
  color: var(--primary-color);
  text-align: center;
  font: normal normal normal 12px/16px Work Sans;
  letter-spacing: 0.6px;
  color: #0F3147;
}

.fs14 {
  color: var(--primary-color);
  text-align: center;
  font: normal normal normal 14px/16px Work Sans;
  letter-spacing: 0.7px;
  opacity: 1;
}

.fs16 {
  text-align: center;
  font: normal normal normal 16px/19px Work Sans;
  letter-spacing: 0.8px;
  color: #0F3147;
  opacity: 1;
}

.vnum-box {
  width: 40px;
  height: 60px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #79CFE0;
  border-radius: 10px;
  opacity: 1;
  text-align: center;
  display:flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  text-align: center;
  font: normal normal normal 36px/42px Work Sans;
  letter-spacing: 1.8px;
  opacity: 1;
}

.vnum-box:focus {
  text-align: center;
  font: normal normal normal 36px/42px Work Sans;
  letter-spacing: 1.8px;
  color: #0F3147;
  opacity: 1;
  border: 1px solid #0f3147 !important;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px #0F314733;
  border-radius: 10px;
  opacity: 1;
}

.vnum-box::selection {
  background-color: transparent;
}

#remember-me {
  /* visibility: hidden; */
}

#remember-me:focus + label {
  border-width: 2px;
}

label {
  width: 24px;
  height: 24px;
  display: block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #79CFE0;
  border-radius: 4px;
  opacity: 1;
  cursor: pointer;
  color: red;
  text-align: center;
}

#remember-me:not(:checked) + label div {
  visibility: hidden;
}

#remember-me:checked + label div {
  visibility: visible;
}

.svg-icon polyline {
  fill:none;
  stroke: #0f3147;
  stroke-width: 2;
}

#ctbLogin-step2 p {
  padding: 4px;
}

.verification {
  box-shadow: none; 
  padding: 5px;
}

.home-header {
  width: 1440px;
  height: 100px;
  padding: 0 40px;
}

.home-body {
  width: 1440px;
  height: 860px;
  text-align: center;
}

.home-nav-link {
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--primary-color);
  text-align: center;
  font: normal normal normal 16px/19px Work Sans;
  opacity: 1;
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  text-align: center;
}

.nav-link-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #79CFE0 0% 0% no-repeat padding-box;
  opacity: 0;
  position: absolute;
  bottom: 0;
  transition: .5s ease;
}

.home-nav-link:hover .nav-link-dot {
  bottom: 25px;
  opacity: 1;
}

.list-title {
  text-align: center;
  font: normal normal 800 40px/47px Work Sans;
  letter-spacing: 0px;
  color: #FAFAFA;
  opacity: 1;
}

.list-items-lite {
  text-align: left;
  margin-left: 9px;
  font: normal normal 600 18px/21px Work Sans;
  letter-spacing: 0px;
  color: #79CFE0;
  opacity: 1;
  max-width: 350px;

}

.list-items-dark {
  text-align: left;
  font: normal normal 600 18px/21px Work Sans;
  letter-spacing: 0px;
  color: #0F3147;
  opacity: 1;
  max-width: 350px;
}

.btn-more-spo {
  width: 340px;
  height: 80px;
  background: #79CFE0 0% 0% no-repeat padding-box;
  border-radius: 40px;
  opacity: 1;
  text-align: center;
  font: normal normal 600 21px/25px Work Sans;
  line-height: 150%;
  letter-spacing: 0px;
  color: #FAFAFA;
}

.btn-more-spo:hover{
  background: #4ED9C2 0% 0% no-repeat padding-box;
  transition: 0.3s ease-out;
}

.btn-more-cro {
  width: 340px;
  height: 80px;
  background: #0F3147 0% 0% no-repeat padding-box;
  border-radius: 40px;
  opacity: 1;
  text-align: center;
  font: normal normal 600 21px/25px Work Sans;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FAFAFA;
}

.btn-more-cro:hover {
  background: #4ED9C2 0% 0% no-repeat padding-box;
  transition: 0.3s ease-out;
}

.tick {
  width: 16px;
  height: 8px;
  border-style: solid;
  border-right: 0.3px !important;
  border-top: 0.3px !important;
  border-color: #4ED9C2;
  transform: rotate(-45deg);
  display: inline-block;
  position: relative;
  top:-5px;
  left: -10px;
}

.tick-dark {
  border-color: #0F3147;
}

.ctb-hover-pointer:hover {
  cursor: pointer;
  font-weight: 400;
  color:#79CFE0;
}