/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
body, html {
  height: 127%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center; 
  font-family: 'Golos Text', sans-serif;
  background-color: #ebf3ff;
  padding: 0;
  overflow-x:hidden;
}
body {
  font-size: 1.6rem;
  font-family: 'Golos Text', sans-serif;
  color: #404042;
}

a {
  color: #9dc997;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 2.2rem;
  text-align: center;
  padding: 4em 5%;
}
@media only screen and (min-width: 1170px) {
  h1 {
    font-size: 4rem;
    font-weight: 300;
    padding: 3em 5%;
  }
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-products-comparison-table {
  margin-bottom: 6em;
}
.cd-products-comparison-table::after {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}
.cd-products-comparison-table header {
  padding: 0 5% 25px;
}
.cd-products-comparison-table header::after {
  clear: both;
  content: "";
  display: table;
}
.cd-products-comparison-table h2 {
  float: left;
  font-weight: bold;
}
.cd-products-comparison-table .actions {
  float: right;
}
.cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
  font-size: 1.4rem;
}
.cd-products-comparison-table .reset {
  color: #404042;
  text-decoration: underline;
}
.cd-products-comparison-table .filter {
  padding: .6em 1.5em;
  color: #ffffff;
  background-color: #cccccc;
  border-radius: 3px;
  margin-left: 1em;
  cursor: not-allowed;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-products-comparison-table .filter.active {
  cursor: pointer;
  background-color: #9dc997;
}
.no-touch .cd-products-comparison-table .filter.active:hover {
  background-color: #a7cea1;
}
@media only screen and (min-width: 1170px) {
  .cd-products-comparison-table {
    margin-bottom: 0;
  }
  .cd-products-comparison-table::after {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-products-comparison-table header {
    padding: 0 5% 40px;
  }
  .cd-products-comparison-table h2 {
    font-size: 2.4rem;
  }
  .cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
    font-size: 1.6rem;
  }
  .cd-products-comparison-table .filter {
    padding: .6em 2em;
    margin-left: 1.6em;
  }
}

.cd-products-table {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.cd-products-table .cmp-left {
  /* fixed left column - product properties list */
  width: 379px;
  border-color: #e6e6e6;
  border-right: 1px solid #e6e6e6;
  background-color: #fafafa;
  opacity: .95;
}
.cd-products-table .cmp-left .top-info{
  background: white;
}
.cd-products-wrapper {
  overflow-x: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  border-style: solid;
  border-color: #e6e6e6;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.cd-products-columns {
  /* products list wrapper */
  width: 2480px;
  margin-left: 120px;
}
.cd-products-columns::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (min-width: 1170px) {
  .cd-products-columns {
    width: 2480px;
    margin-left: 210px;
  }
}

.cd-products-columns .product {
  position: relative;
  float: left;
  width: 250px;
  text-align: center;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.filtering .cd-products-columns .product:not(.selected) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.no-product-transition .cd-products-columns .product.selected {
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.filtered .cd-products-columns .product:not(.selected) {
  position: absolute;
}
@media only screen and (min-width: 1170px) {
  .cd-products-columns .product {
    width: 310px;
  }
}

.cd-features-list li {
  font-size: 1.4rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #e6e6e6;
  border-style: dotted;
  border-width: 1px;
  height:52px;
  border-bottom:none;
  border-left: none;
  font-family: "Noto Sans Warang Citi", sans-serif;
}
.cd-features-list li.rate {
  /* rating stars */
  padding: 21px 0;
}
.cd-features-list li.rate span {
  display: inline-block;
  height: 22px;
  width: 110px;
  background: url(../img/cd-star.svg);
  color: transparent;
}
@media only screen and (min-width: 1170px) {
  .cd-features-list li.rate {
    padding: 22px 0;
  }
}

.compare-page .cmp-left .cd-features-list li,
.cd-products-table .features .top-info {
  /* fixed left column - items */
  font-size: 1.4rem;
  font-weight: bold;
  /* set line-height value equal to font-size of text inside product cells */
  line-height: 14px;
  padding: 25px 10px;
  text-align: left;
}
@media only screen and (min-width: 1170px) {
  .compare-page .cmp-left .cd-features-list li,
  .cd-products-table .features .top-info {
    /*text-transform: uppercase;*/
    line-height: 16px;
    padding: 15px 20px;
    letter-spacing: 1px;
  }
}

.compare-page .cmp-left .cd-features-list li {
  /* truncate text with dots */
  background-color: #004ecb;
    font-weight: 200;
    color: #ffffff;
}

.cd-products-table .top-info {
  position: relative;
  /* height: 177px; */
  width: 250px;
  text-align: center;
  padding: 1.25em 2.5em;
  border-color: #e6e6e6;
  border-style: solid;
  border-right-width: 1px;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
  cursor: pointer;
  color:#ffffff;
  	height: 50px;
    width: 310px;
    background-color: #ffffff;
        color: #ff0000;
        font-size: 14px;
        font-weight: 800;
}
.cd-products-table .top-info::after {
  /* color gradient below .top-info -  visible when .top-info is fixed */
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 4px;
  width: 100%;
  background-color: transparent;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.06), transparent);
  background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.06), transparent);
  opacity: 0;
}
.cd-products-table .top-info h3 {
  padding: 1.25em 0 0.625em;
  font-weight: bold;
  font-size: 1.4rem;
}
.cd-products-table .top-info img {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-products-table .top-info h3, .cd-products-table .top-info img {
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-products-table .top-info .check {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 auto 1em;
}
.cd-products-table .top-info .check::after, .cd-products-table .top-info .check::before {
  /* used to create the check icon and green circle dot - visible when product is selected */
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
}
.cd-products-table .top-info .check::before {
  /* green circle dot */
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, -moz-transform 0.3s, border-color 0.3s;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}
.cd-products-table .top-info .check::after {
  /* check icon */
  background: url(../img/cd-check.svg) no-repeat center center;
  background-size: 24px 24px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1170px) {
  .cd-products-table .top-info h3 {
    padding-top: 3.4em;
    font-size: 1.6rem;
  }
  .cd-products-table .top-info .check {
    margin-bottom: 1.5em;
  }
}

.cd-products-table .features .top-info {
  /* models */
  width: 120px;
  cursor: auto;
  background: #fafafa;
}
@media only screen and (min-width: 1170px) {
  .cd-products-table .features .top-info {
    width: 210px;
   
  }
}

.cd-products-table .selected .top-info .check::before {
  /* green circle dot */
  background: #9dc997;
  border-color: #9dc997;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.6);
  }
  100% {
    -moz-transform: scale(1.5);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.cd-products-table .selected .top-info .check::after {
  /* check icon */
  opacity: 1;
}

@media only screen and (min-width: 1170px) {
  .cd-products-table.top-fixed .cd-products-columns > li,
  .cd-products-table.top-scrolling .cd-products-columns > li,
  .cd-products-table.top-fixed .features,
  .cd-products-table.top-scrolling .features {
    padding-top: 160px;
  }

  .cd-products-table.top-fixed .top-info,
  .cd-products-table.top-scrolling .top-info {
    height: 100px;
    position: fixed;
    top: 0;
  }
  .no-cssgradients .cd-products-table.top-fixed .top-info, .no-cssgradients
  .cd-products-table.top-scrolling .top-info {
    border-bottom: 1px solid #e6e6e6;
  }
  .cd-products-table.top-fixed .top-info::after,
  .cd-products-table.top-scrolling .top-info::after {
    opacity: 1;
  }
  .cd-products-table.top-fixed .top-info h3,
  .cd-products-table.top-scrolling .top-info h3 {
    -webkit-transform: translateY(-116px);
    -moz-transform: translateY(-116px);
    -ms-transform: translateY(-116px);
    -o-transform: translateY(-116px);
    transform: translateY(-116px);
  }
  .cd-products-table.top-fixed .top-info img,
  .cd-products-table.top-scrolling .top-info img {
    -webkit-transform: translateY(-62px) scale(0.4);
    -moz-transform: translateY(-62px) scale(0.4);
    -ms-transform: translateY(-62px) scale(0.4);
    -o-transform: translateY(-62px) scale(0.4);
    transform: translateY(-62px) scale(0.4);
  }

  .cd-products-table.top-scrolling .top-info {
    position: absolute;
  }
}
.cd-table-navigation a {
  z-index: 2;
  top: 0;
  padding: 25px 15px;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  height: 60px;
  width: 40px;
  background: rgba(64, 64, 66, 0.8) url("../img/cd-arrow.svg") no-repeat center center;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -moz-transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.cd-table-navigation a.inactive {
  opacity: 0;
  visibility: hidden;
}
.cd-table-navigation a.prev {
  -webkit-transform:  rotate(270deg);
  -moz-transform:  rotate(270deg);
  -ms-transform:  rotate(270deg);
  -o-transform:  rotate(270deg);
  transform:  rotate(270deg);
  background-image: url(../img/cd-arrow-left.svg);
  background-size: 25px;
}
.no-touch .cd-table-navigation a:hover {
  background-color: #404042;
}
@media only screen and (min-width: 1170px) {
  .top-fixed .cd-table-navigation a {
    position: fixed;
  }
}

/* -------------------------------- 

No JS

-------------------------------- */
.no-js .actions {
  display: none;
}

.no-js .cd-products-table .top-info {
  height: 145px;
}
@media only screen and (min-width: 1170px) {
  .no-js .cd-products-table .top-info {
    height: 248px;
  }
}

.no-js .cd-products-columns .check {
  display: none;
}


.card {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 980px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  height: 550px;

}
.left-side {
  background-color: #0057e3;
  color: white;
  padding: 40px;
  width: 420px;
  border-radius: 10px 0 0 10px;
  height: 100%;
}
.right-side {
    padding: 0px 70px;
    /* margin: 0 0 0 3%; */
    width: 600px;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.right-side1 {
    padding:0 0 0 35px;
}
.right-side1 .input-group {
    margin: 0 0 5% -19px;
}
.left-side h1 {
  font-size: 25px; 

  font-family: Golos Text, sans-serif;
  padding: 0px 0px 20px 0px !important;
  font-weight: 200;
  text-align: left ;
}
.left-side p {
  font-weight: 500;
  font-family: Golos Text, sans-serif;
  font-size: 15px;
  padding-right: px;
}
.right-side h4 {
  margin-bottom:20px;
  font-family: Golos Text, sans-serif;

  font-size: 22px;
}

.btn .btn-primary .font{
    font-size:16px !important;
    font-weight:600;
}

label {
  color: #a3a3a3;
  font-size: 14px;
  margin-bottom: 3%;
}
.input-group {
  margin:0 -20px 5%;
 
 

}
.otp-container {
  margin:0 0 5%;
}
.input-group div select {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  height: 46px;
  border: 1px solid rgba(0,0,0,0.1);
  width: 100%;
  padding-left:10px;
  background: #f7f9fa;
}
.input-group input {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  padding: 8px;
  border:1px solid rgba(0,0,0,0.1);
  width:75%;
  background: #f7f9fa;
}
.btn {
  background-color: #0057e3;
  color: white;
  border-radius: 10px;
  width: 100%;
  padding: 2% 0px;
}


.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.form-container {
  background-color: #f8f9fb;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  height: 100vh;
}
.main-content {
  padding: 40px 120px;
  flex-grow: 1;
  width: 60%;
}

.main-content h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #333;
}

.form-group {
  margin: 20px;
  width:40.8%;
}

label {
  display: block;
  margin-bottom: 8px;
  /*font-weight: bold;*/
  color: #a8a8a8;
}

select,
input[type="text"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  /*border-radius: 8px;*/
  font-size: 16px;
  color: #555;
}

select:focus,
input:focus {
  border-color: #007bff;
  outline: none;
}

.radio-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.radio-group input[type="radio"] {
  margin-right: 10px;
  margin-top: -5px;
}

.radio-group label {
  margin-right: 20px;
  font-weight: normal;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin: 0 20px 0;
}
.buttons1 {
  margin: 0;
}
.buttons .btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.buttons .btn:hover {
  background-color: #f8f8f8;
}

.buttons .btn:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.guidance-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
}

.guidance-button:hover {
  background-color: #218838;
}

.otp-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.otp-input {
  width: 79px !important;
  height: 60px;
  text-align: center;
  font-size: 30px;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  font-weight: bold;
  transition: border-color 0.3s;
}
@media (max-width: 800px) {
  .card {
      flex-direction: column;
      max-width: 100%;
      margin: 0 30px;
      height: auto;
  }
  .left-side, .right-side {
      border-radius: 10px;
      padding: 20px;
      flex: 0;
      width: 100%;
  }
  .left-side p {
      display: none;
  }
    .left-side h1 {
        font-size: 20px;
        text-align: center;
        padding: 0;
        margin: 0;
        color: #ffffff;}
  .left-side {
      border-radius: 0;
      padding: 30px 20px 0 !important;
  background: #0057e3;
  }
}
@media(max-width:767px){
  .card {
      margin: 25px;
              margin-top: 74px;
  }
  .left-side, .right-side {
      padding: 20px;
      margin: 0;
  }

  body, html {
      height: auto;
  }
 
  .radio-group{
      margin-bottom: 0;
      width:60%;
  }
  .buttons{
      margin: 0 auto;
  }
  .form-group{
      margin: 10px 20px;
  }
  .label {
    white-space:nowrap;
}

.wrappable {
    white-space:normal;
}
}
@media(max-width:599px){
  .form-group {
      width: 100%;
      margin: 10px 0;
  }
}

/*EMMANUEL */
.compare-page {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: #ebf3ff;
}
.compare-page .card{
    overflow-x: hidden;
    max-width: 100%;
    height: auto;
}
.compare-page .right-side{
    width:100%;
    padding:0;
    margin:0;
    justify-content: flex-start;
}
.compare-page .cd-features-list{
  padding: 0;
  margin: 0;
}
.compare-page .cmp-right{
  width: 640px;

}
.compare-page .cd-products-columns{
  padding: 0;
  margin-left: 0;
}
.compare-page .cd-products-columns li{
  list-style-type: none;
  width: 382px;
  border-left: none;
  border-bottom: none;
  font-weight: 200;
  font-size: 14px;
}
.compare-page .cd-products-columns li .top-info{ 
  border: 1px solid #e6e6e6;
  border-right: none;

}
.compare-page .cd-products-columns li:last-child{  
  border-right: 1px solid #e6e6e6;
}
.compare-page .cd-products-table .top-info {
  margin: 0;
  width: 100%;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  border: none;
  justify-content: center;
  font-family: "Geologica", sans-serif;
}
.compare-page .cd-products-table .features {
  border: none;
}
.compare-page select{
  width: 100%;
}
.compare-page .compare-page .cmp-left .cd-features-list li{
  border: 1px solid #e6e6e6;
  border-left: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
  text-align: center;
  font-weight: 200;
}
.mCSB_inside > .mCSB_container{
  margin: 0;
}
.compare-page .cd-table-navigation {
  margin: 0;
  height: 0;
  position: absolute;
  right: 10px;
  top: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 790px;
  list-style: none;
}
@media(max-width:1099px){
  .cd-products-comparison-table {
    margin: 0;
  }
}
@media(min-width:992px) and (max-width:1099px){
}
@media(max-width:991px){
  .compare-page {
    height: auto;
  }
  .cd-products-table .cmp-left {
      width:30%;
  }
  .compare-page .cmp-right{
    width: 70%;
  }
  .compare-page .cd-table-navigation {
    left: 290px;
    width: 617px;
  }
  .compare-page .cd-products-columns li {
    width: 284px;
  }
     .right-side1 .input-group {
        margin: 0;
    }
    .right-side1 h4 {
        padding-left:20px;
    }
   .right-side1  .form-group {
        width: 43.8%;
    }
}
@media(max-width:767px){
  .compare-page {
    height: auto;
  }
  .cd-products-table .cmp-left {
      width:30%;
  }
  .compare-page .cmp-right{
    width: 70%;
  }
  .right-side1  .form-group {
        width: 42.8%;
    }
}
@media(max-width:599px){
  .compare-page {
    height: auto;
  }
  .cd-products-table .cmp-left {
      width:40%;
  }
  .compare-page .cmp-right{
    width: 60%;
  }
  .compare-page .cmp-left .cd-features-list li{
      text-align:center;
      border-right:none;
  }
       .right-side1 h4 {
        padding-left: 0;
    }
   .right-side1  .form-group {
        width: 100%;
    }
}