
/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap'); */
/* Variable */


/* @import "admin-theme.css";
@import "member-theme.css";  */



body {
    font-family: "Plus Jakarta Sans", sans-serif!important;
    color: var(--Neutrals800);
    height: 100%;
    /* line-height: 17px; */
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--bgLightGrey-10) white;
    
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--bgLightGrey-10);
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.montserrat {
    font-family: var(--montserrat);
}


/* text colors */

.textMain {
    color: var(--bgMain) !important;
    font-family: var(--montserrat);
}

.textPrimary {
    color: var(--bgPrimary);
}

.textPrimaryLight {
    color: var(--bgPrimaryLight);
}

.textPrimaryLight-2 {
    color: var(--bgPrimaryLight-2);
}

.textLink {
    color: var(--bgLink);
}

.textBlue {
    color: var(--bgBlue);
}

.textVendor {
    color: var(--bgVendor);
}

.textLightGrey-10 {
    color: var(--bgLightGrey-10);
}

.textLightGrey-20 {
    color: var(--bgLightGrey-20);
}

.textLightGrey-30 {
    color: var(--bgLightGrey-30);
}

.textDarkGrey-1 {
    color: var(--bgDarkGrey-1);
}

.textDarkGrey {
    color: var(--bgDarkGrey);
}

.textHoverBlue {
    color: var(--bgHoverBlue);
}

.textSuccess {
    color: var(--bgSuccess);
}

.textError {
    color: var(--bgError);
}

.textWarning {
    color: var(--bgWarning);
}

.textInfo {
    color: var(--bgInfo) !;
}

.wordBreak {
    word-break: break-all;
}
/* Backgrounds colors */

.bgLightGrey {
    background-color: var(--bgLightGrey);
}

.bgLightGrey-20 {
    background-color: var(--bgLightGrey-20);
}

.bgHoverBlue {
    background-color: var(--bgHoverBlue);
}

.bgPrimaryLight {
    background-color: var(--bgPrimaryLight);
}
.bgPrimary {
    background-color: var(--bgPrimary);
}

.bgBtnGrey {
    background-color: var(--btnGrey);
}


/* borders */

.borderLight {
    border: 1px solid var(--lightBorder);
}

.borderMain {
    border: 1px solid var(--bgMain);
}

.borderBlue {
    border: 1px solid var(--bgHoverBlue);
}

.borderPrimary {
    border: 1px solid var(--bgPrimary);
}

.borderLightGrey {
    border: 1px solid var(--bgLightGrey-10);
}

.borderLightGrey-20 {
    border: 1px solid var(--bgLightGrey-20);
}

.borderLightGreyDashed-20 {
    border: 1px dashed var(--bgLightGrey-20);
}

.borderDashed {
    border: 1px dashed var(--bgPrimary);
    border-radius: 14px;
}

.brTopPrimaryDashed {
    border-top: 1px dashed var(--bgPrimary);
}

.addMore {
    border-bottom: 1px solid var(--bgPrimary);
}

.addMore:hover {
    border-bottom: 1px solid var(--bgMain);
}

.rounded-14 {
    border-radius: 14px;
}

.cursorPointer {
    cursor: pointer;
}
.transform-0{
    transform: rotate(0deg) !important;
}
.roundedTopRight-10,
.roundedBottomRight-10 {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}


/* tramsition */

.transition {
    transition: var(--transition);
}


/* error */

/* .invalid-feedback,
.error {
    color: var(--bgError);
    font-size: var(--xxSmall);
    padding-left: 7px;
} */


.form-control.is-invalid,
.was-validated .form-control:invalid {
    color: var(--bgError);
    border-color: #dc3545 !important;
    background-image: none;
}


/* reset */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: var(--heading1);
}

p,
.p,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--bgLink);
    transition: var(--transition);
    font-size: var(--small);
    font-weight: var(--light);
}

a:hover {
    color: var(--bgLink);
}

hr {
    color: var(--bgLightGrey-30);
}
.liBullet{
    list-style: disc !important;
}


/* buttons */

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent
}

.btn {
    transition: var(--transition);
    /* width: 50%; */
    border-radius: 50rem;
    font-size: var(--xSmall);
    font-weight: var(--semiBold);
    line-height: 36px;
    box-shadow: var(--buttonShadow);
    transition: var(--transition);
}
.btn:disabled{
    pointer-events: visible;
    cursor: not-allowed;
    background-color: var(--Neutrals400);
    border: 0;
    color: var(--Neutrals600);
    opacity: 1;

}

/* .btn:hover{
    background-color:  var(--Neutrals400);
} */
.spinner {max-width: 30px;}

.btnPrimary {
    position: relative;
    display: inline-block;
    background: var(--Primary1);
    color: var(--Neutrals100);
    /* box-shadow: var(--buttonShadow);
    transition: var(--transition); */
    background-size: 200% auto;
    border-radius: 100px;
}



.btnPrimary-sm {
    padding: 5px 24px;
    font-size: var(--xxxSmall);
    font-family: var(--montserrat);
    line-height: normal;
    box-shadow: none;
}

.btnMain {
    background-color: var(--bgMain);
    color: white;
    box-shadow: var(--buttonShadow);
    transition: var(--transition);
}

.btnHoverBlue {
    background-color: var(--bgHoverBlue);
    color: white;
    box-shadow: var(--buttonShadow);
    transition: var(--transition);
    line-height: 26px;
}

.btnHoverBlue:hover {
    background-color: var(--bgPrimary);
    color: white;
}

.btnGrey {
    background-color: var(--btnGrey);
    color: var(--bgPrimary);
    transition: var(--transition);
}
.btnCancel {
    background-color: var(--btnGrey);
    color: var(--bgPrimary);
    transition: var(--transition);
    line-height: 26px;
}

.btnWarning {
    background-color: var(--bgWarning);
    color: black;
    transition: var(--transition);
}

.btnWarning:hover {
    background-color: var(--bgWarning);
    color: white;
}

.btnSecondary{
    /* background-color: var(--Primary2);
    color: var(--Neutrals100);     */
    position: relative;
    display: inline-block;
    background: var(--Primary1);
    color: var(--Neutrals100);
    /* box-shadow: var(--buttonShadow);
    transition: var(--transition); */
    background-size: 200% auto;
    border-radius: 100px;
}

/* .btnPrimary:hover, */
/* .btnSecondary:hover, */
.btnGrey:hover,
.btnCancel:hover {
    background-color:  var(--Secondary2);
    color:var(--Neutrals100);
}



.btnPrimary:hover{
	background-position: right center;
    color: var(--Neutrals100);
}

.btnSecondary:hover{
	background-position: right center;
    color: var(--Neutrals100);
}






.sBtn{
    border: 1px solid #dddddd;
    padding: 10px;
    border-radius: 14px;
    font-weight: var(--semiBold);
    display: flex;
    align-items: center;
    gap: 10px;
}
.sBtn.gBtn{
    color: #4286F5;
}
.sBtn.gBtn:hover{
    border: 1px solid #4286F5;
}
.sBtn.aBtn{
    color: #000000;
}
.sBtn.aBtn:hover{
    border: 1px solid #000000;
}
.btnVendor:hover {
    color: white;
    background-color: var(--bgVendor);
}

.removeButton {
    background-color: var(--bgError);
    color: white;
    border-radius: 50rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}
.removeButtonLg{
    width: 50px;
    height: 50px;
}

.removeButton:hover {
    color: white;
    background-color: var(--bgError);
}

.addBtn {
    background-color: var(--bgMain);
    color: white;
    border-radius: 50rem;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 0;
}

.addBtn:hover {
    background-color: var(--bgHoverBlue);
    color: white;
}

.backBtn {
    color: var(--bgHoverBlue);
    font-size: var(--xSmall);
    font-weight: var(--bold);
    font-family: var(--montserrat);
    transition: var(--transition);
}

.backBtn img {
    width: 20px;
}

.backBtn:hover {
    color: var(--bgMain);
}

.clearBtn {
    color: var(--bgError);
    /* color: white; */
    transition: var(--transition);
    border-radius: 50rem;
    border: 2px solid var(--bgError);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clearBtn:hover {
    background-color: var(--bgError);
    color: white;
}


/* font size */

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: var(--xxSmall);
}

.fs-14 {
    font-size: var(--small);
}

.fs-16 {
    font-size: var(--medium);
}

.fs-18 {
    font-size: var(--large);
}

.fs-20 {
    font-size: var(--semiLarge);
}

.fs-24 {
    font-size: var(--xlarge);
}

.fs-32 {
    font-size: var(--xxlarge);
}


/* font wieghts */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: var(--semiLight);
}

.fw-500 {
    font-weight: var(--light);
}

.fw-600 {
    font-weight: var(--semiBold);
}

.fw-700 {
    font-weight: var(--bold);
}


/* headings */

.heading {
    color: var(--bgMain);
    font-family: var(--montserrat);
    font-weight: var(--bold);
    /* margin-bottom: 16px; */
    /* font-size: var(--medium); */
    font-size: clamp(var(--xxxSmall),1vw,var(--medium));
    text-transform: capitalize;
}


/* .vender .heading{
    color: var(--bgSuccess);
}
.admin .heading{
    color: var(--bgPrimary);
} */


/* wrappers */

.contentBox {
    background-color: white;
    border-radius: 10px;
    /* padding: 20px; */
    margin-bottom: 16px;
}

.listHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-wrap: wrap;
}


/* ===== Scrollbar CSS ===== */


/* Firefox */

.memberBox {
    scrollbar-width: thin;
    scrollbar-color: var(--bgLightGrey-10) white;
}


/* Chrome, Edge, and Safari */

.memberBox::-webkit-scrollbar {
    width: 10px;
}

.memberBox::-webkit-scrollbar-track {
    background: #ffffff;
}

.memberBox::-webkit-scrollbar-thumb {
    background-color: var(--bgLightGrey-10);
    border-radius: 10px;
    border: 3px solid #ffffff;
}


/* Warning active inactive*/

.roundedSmall {
    width: 20px;
    height: 20px;
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bgError);
    color: var(--bgError);
}


/* Breadcrumb */

ul.breadcrumb {
    list-style: none;
}

ul.breadcrumb li {
    display: inline;
    font-size: var(--xxSmall);
    color: #313131;
    font-weight: var(--semiBold);
}

ul.breadcrumb li+li:before {
    padding: 0 5px;
    color: var(--bgLightGrey-10);
    content: "\00bb";
    font-family: 'FontAwesome';
    font-size: 8px;
    position: relative;
    top: 0;
}

ul.breadcrumb li a {
    color: var(--bgLightGrey-10);
    font-weight: var(--semiBold);
    text-decoration: none;
    font-size: var(--xxSmall);
}

ul.breadcrumb li a:hover {
    color: var(--bgMain);
}


/* Loader */

.loading {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loading__dot {
    animation: dot ease-in-out 1s infinite;
    background-color: var(--bgLightGrey-10);
    display: inline-block;
    height: 10px;
    margin: 10px;
    width: 10px;
    border-radius: 50rem;
}

.loading__dot:nth-of-type(2) {
    animation-delay: 0.2s;
}

.loading__dot:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes dot {
    0% {
        background-color: var(--bgLightGrey-10);
        transform: scale(1);
    }
    50% {
        background-color: var(--bgPrimary);
        transform: scale(1.3);
    }
    100% {
        background-color: var(--bgLightGrey-10);
        transform: scale(1);
    }
}

/* ================================== Stepper Form ================================== */

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

.badge-custom {
    background: var(--primary-color)!important;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 13px;
    color: #fff;
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    font-weight: 300;
    align-items: center;
    font-weight: 500;
}
.techheding
{
    font-size: var(--xxxxSmall);
    margin-bottom: 20px;
    font-weight: var(--bold);
}
.techheding span
{
    color:var(--Primary1);
    font-weight: 800;
    margin-right: 5px;
}
.btn-primary
{
    position: relative;
    display: inline-block;
    background: var(--Primary1);
    color: var(--Neutrals100);
    /* box-shadow: var(--buttonShadow);
    transition: var(--transition); */
    background-size: 200% auto;
    border-radius: 100px;
    border: none;
}

.badge-custom2 {
    background-color: var(--SecondaryColor1)!important;
    border-radius: 58%;
    margin-right: 8px;
    font-size: 17px;
    color: #fff;
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
  }
.accordion-button:not(.collapsed)
{
    color: var(--Primary1)!important;
}
.bg-primary.badge-progress {
    color: var(--Info900);
    background-color: var(--Info800) !important;
    margin-left: 12px;
    font-size: 9px;
    margin-top: 0px;
    padding: 7px 11px;
}
.bg-success.badge-progress {
    color: var(--Green600);
    background-color: var(--Green100) !important;
    margin-left: 12px;
    font-size: 10px;
    margin-top: 7px;
    padding: 7px 11px;
}
.accordion-button:not(.collapsed)
{
    box-shadow: none;
}
.accordion-item
{
    border: 0;
}
.accordion-button
{
    font-size: var(--xxSmall);
    color: var(--Primary1);
    /* border: 1px solid #ccc; */
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0px 1px 4px 1px rgba(78,75,102, .1);
    font-weight: var(--semiBold);
    /* border: 1px solid var(--Neutrals400); */
}

.accordion-item:first-of-type .accordion-button
{
    border-top-left-radius: 10px!important;
    border-top-right-radius:10px!important;
}
.accordion-item:last-of-type .accordion-button
{
    border-bottom-right-radius: 10px!important;
    border-bottom-left-radius: 10px!important;
}

.accordion-button .collapsed
{
    border: none!important;
}
/* .accordion-body {
  padding: 20px 56px;
} */

.labl>input {
  visibility: hidden;
  position: absolute;
}

/* .labl>input+div {
    cursor: pointer;
    border: 1px solid var(--Neutrals400);
    border-radius: 17px;
    padding: 10px 10px;
    display: flex;
    height: 69px;
    padding: 12px 33px 10px 26px;
    box-shadow: 0px 2px 4px 1px rgba(78,75,102, .1);
} */

.labl>input+div {
    cursor: pointer;
    border: 1px solid var(--Neutrals400);
    border-radius: 17px;
    padding: 10px 10px;
    display: flex;
    height: 55px;
    /* padding: 10px 33px 10px 26px; */
    padding: 10px 50px 10px 25px;
    box-shadow: 0px 2px 4px 1px rgba(78,75,102, .1);
}

.labl>input:checked+div {
  background-color: #fff;
  border: 2px solid var(--Secondary2);
}

.step_radioblocks {
  width: 100%;
  white-space: nowrap;
  display: block;
  margin: 2px 11px;
}

.readioset
{
  width:94%;
}

.readioset li
{
  width: 33.33%!important;
  margin-right: 0!important;
}

.cto_value2
{
width: 100%;
}

.other_text
{
    width: 315px;
}

.other_text h6
{
  font-size: 13px;
  margin-bottom: 5px;
}

.step_radioblocks li {
  list-style-type: none;
  list-style-position: outside;
  padding: 1px 0 10px;
  float: left;
  /* height: 30px; */
  margin-right: 15px;
}

.labl div img {
 /* width: 100%; */
 /* padding: 10px 10px 10px 10px;
 background-color: var(--Neutrals200);
 border-radius: 50%;
 margin-right: 10px; */

    padding: 8px 8px 8px 8px;
    background-color: var(--Neutrals200);
    border-radius: 50%;
    margin-right: 10px;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.clickable {
  display: flex;
}

.clickable h3 {
  font-size: var(--xxxxxSmall);
  margin-top: 10px;
  color: var(--Neutrals700);
}

.bulletpt i {
    /* color: var(--SecondaryColor1); */
    color: var(--primary-color);
    font-size: 13px;
    margin-right: 4px;
}

.bulletpt {
  padding-left: 44px;
  font-size: var(--xxxxSmall);
  margin-bottom: 20px;
}

.radioset-custom2
{
padding-left: 30px;
}

.custom-btn {
    border-radius: 24px;
    padding: 5px 29px;
    font-size: 13px;
    color: #fff!important;
    margin-right: 10px;
}

.check-input1[type=checkbox] {
  border-radius: 50%;
  position: relative;
  top: 11px;
}

.check-label1 {
  font-size: 12px;
  margin-top: 14px;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  font-weight: var(--semiBold);
}

.card .content {
  margin-top: 20px;
  display: flex;
}

.card ul.step_radioblocks li label.box {
  background: #fff;
  margin-top: 12px;
  padding: 20px 31px;
  display: flex;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-right: 15px;
  border-radius: 5px;
}

#one:checked~ul.step_radioblocks li label.first,
#two:checked~ul.step_radioblocks li label.second,
#three:checked~ul.step_radioblocks li label.third,
#four:checked~ul.step_radioblocks li label.fourth,
#five:checked~ul.step_radioblocks li label.fifth {
  border-color: var(--Info600);
}

.card ul.step_radioblocks li label.box:hover {
  background: #fff;
}

.card ul.step_radioblocks li label.box .circle {
  height: 17px;
  width: 17px;
  background: #ccc;
  border: 5px solid transparent;
  display: inline-block;
  margin-right: 8px;
  border-radius: 7px;
  transition: all 0.25s ease;
}

#one:checked~ul.step_radioblocks li label.first .circle,
#two:checked~ul.step_radioblocks li label.second .circle,
#three:checked~ul.step_radioblocks li label.third .circle,
#four:checked~ul.step_radioblocks li label.fourth .circle,
#five:checked~ul.step_radioblocks li label.fifth .circle {
  border-color: var(--Info600);
  background: var(--Info600);
}

.card ul.step_radioblocks li label.box .plan {
  display: flex;
  width: 100%;
  align-items: center;
}

.card .content input[type="checkbox"] {
  display: none;
}

.card {
  border: 0;
}

.yearly {
  font-size: 13px;
}

label.cto_label {
  display: flex;
  padding: 5px 0;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

input.cto_input[type="checkbox"] {
  opacity: 0;
}

.cto_value {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 20px 5px 40px;
  border-radius: 17px;
  font-size: 11px;
  color: var(--Neutrals800);
  /* padding: 26px 43px; */
  padding: 21px 54px;
  border: 1px solid var(--Neutrals400);
  box-shadow: 0px 2px 4px 1px rgba(78,75,102, .1);
  height: 56px;
  font-weight: var(--bold);
}

.radio_value {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 20px 5px 40px;
    border-radius: 17px;
    font-size: 11px;
    /* padding: 26px 43px; */
    color: var(--Neutrals700);
    padding:6px 54px;
    border: 1px solid var(--Neutrals400);
    box-shadow: 0px 2px 4px 1px rgba(78,75,102, .1);
    height: 54px;
  }

.cto_value::before {
  position: absolute;
  left: 30px;
  border-radius: 50%;
}

input.cto_input[type="checkbox"]:checked~.cto_value {
  color: #000;
  border-width: 5px;
  background: #fff;
  border: 2px solid var(--primary-color);
}

input.cto_input[type="checkbox"]:checked~.cto_value::before {
  outline-width: 5px;
  background: #fff;
}

.checkicon {
  position: absolute;
  left: 32px;
  width: 32px;
  height: 45px;
  top: 15px;
  background-image: url(../img/square_before.png);
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: left 18px;
}

.checkicon::before {
  position: absolute;
  left: 24px;
  width: 32px;
  height: 45px;
  top: 8px;
  background-image: url(../img/square_after.png);
  background-position: left 18px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

input.cto_input[type="checkbox"]:checked~.checkicon {
  background-image: url(../img/square_after.png);
  background-position: left 18px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

input.cto_input[type="checkbox"]:checked~.checkicon::before {
  background-image: url(../img/square_after.png);
  background-position: left 18px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}


.checkicon2 {
    position: absolute;
    left: 32px;
    width: 32px;
    height: 45px;
    top: 15px;
    background-image: url(../img/square_before.png);
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-position: left 18px;
  }
  
  .checkicon2::before {
    position: absolute;
    left: 24px;
    width: 32px;
    height: 45px;
    top: 8px;
    background-image: url(../img/square_after.png);
    background-position: left 18px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
  
  .ctolabel4 input.cto_input[type="checkbox"]:checked~.checkicon2 {
    background-image: url(../img/square_after.png);
    background-position: left 18px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
  
  .ctolabel4 input.cto_input[type="checkbox"]:checked~.checkicon2::before {
    background-image: url(../img/square_after.png);
    background-position: left 18px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }

.stepmain
{
  padding-left: 45px;
}
.collapsed
{
    color: var(--Neutrals500);
}
/* radio buttons*/

input.cto_input[type="radio"] {
    opacity: 0;
  }

  input.cto_input[type="radio"]:checked~.cto_value {
    color: #000;
    border-width: 5px;
    background: #fff;
    border: 2px solid var(--Primary1);
  }
  
  input.cto_input[type="radio"]:checked~.cto_value::before {
    outline-width: 5px;
    background: #fff;
  }

  
.checkicon {
    position: absolute;
    left: 32px;
    width: 32px;
    height: 45px;
    top: 15px;
    background-image: url(../img/square_before.png);
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-position: left 18px;
  }
  
  .checkicon::before {
    position: absolute;
    left: 24px;
    width: 32px;
    height: 45px;
    top: 8px;
    background-image: url(../img/square_after.png);
    background-position: left 18px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  
  }
  
  input.cto_input[type="radio"]:checked~.checkicon {
    background-image: url(../img/square_after.png);
    background-position: left 18px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
  
  input.cto_input[type="radio"]:checked~.checkicon::before {
    background-image: url(../img/square_after.png);
    background-position: left 18px;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }

  .step_radioblocks div {
    list-style-type: none;
    list-style-position: outside;
    padding: 1px 0 10px;
    float: left;
    margin-right: 2px;
  }

  .step_radioblocks {
    width: 100%;
    white-space: nowrap;
    display: block;
    margin: 2px 0;
  }

  #otherId
  {
    display: none;
  }

  .btn-success
  {
    background-color: var(--Success500);
    border: 1px solid var(--Success500);
    color:#fff;
  }

  .btn-secondary
  {
    /* background-color: var(--Neutrals700);
    border: 1px solid var(--Neutrals700);
    color:#fff; */
    position: relative;
    display: inline-block;
    background: var(--Primary1);
    color: var(--Neutrals100);
    /* box-shadow: var(--buttonShadow);
    transition: var(--transition); */
    background-size: 200% auto;
    border-radius: 100px;
    border: none;
  }

  .register_value
  {
    padding: 11px 48px;
    border: 1px solid var(--Neutrals400);
    box-shadow: none;
  }

  .checkicon2
  {
    left: 22px!important;
    width: 32px!important;
    height: 45px!important;
    top: -2px!important;
    
  }

.cto_in
{
    display: none;
}
  .ctolabel4
  {
    width: fit-content;
  }

  .register_value
  {
    height: 42px!important;
    border-radius: 11px;

  }

  .register_value .checkicon2
  {
    top:0!important;
  }


  .collapsed .badge-custom
  {
    background-color: var(--Neutrals500)!important;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 13px;
    color: var(--Neutrals100);
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    font-weight: 500;
  }

  .back-btn1
  {
    background-color: var(--Neutrals500)!important;
    border: 1px solid var(--Neutrals500)!important;
  }

  .progress-bar li span
  {
    display: contents;
    color: var(--Info200)!important;
    font-size: var(--xxxSmall);
  }


  .progress-bar li h6
  {
    display: flex;
    color: var(--natural100)!important;
    font-size: 11px;
    top: 1px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .progress-bar li.active{
    position: relative;
    margin-left: 40px;
    margin-bottom: 60px;
    counter-increment: container 1;
    font-size: 17px;
    font-weight: var(--semiBold);
}
.space1
{
    padding: 1px 8px 50px 70px;
}
.progress-bar li.active p {
    opacity: 1.0 !important;
    font-size: 15px;
    font-weight: var(--regular);
    color: var(--Neutrals100);
}

.stepper-body::after {
    content: '';
    position: absolute;
    height: 96%;
    width: 2.5px;
    background: var(--primary-color);
    z-index: 2;
    left: 27px;
    top: -28px;
}

.accordion-collapse
{
    position: relative;
}
  /* .mainWrapper
  { */
    /* height: 100vh; */
    /* position: absolute;
    left: 0;
    top: 0; */
  /* } */
/* 
  .mainWrapper
  {
    height: 100vh;
  } */

  /* .collapsed .badge-custom2
  {
    
  } */

  .stepper-header
  {
    font-weight: var(--bold)!important;
  }
  
  /*=========================================== assesstment ============================================*/

  /* .listed-tables
  {
    border: 1px solid var(--Secondary4);
  } */

  .listed-tables tbody, td, tfoot, th, thead {
    /* border-color: inherit; */
    /* border-style: none; */
    /* border-width: 0; */
    /* border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid var(--Secondary4);
    border-left: 1px solid var(--Secondary4); */
    font-size: var(--xxxSmall);
    padding: 20px;
    vertical-align: middle;
}

/* .listed-tables tbody tr { */
    /* border-color: inherit; */
    /* border-style: none; */
    /* border-width: 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid var(--Secondary4);
    border-left: 1px solid var(--Secondary4); */
/* } */

/* .listed-tables tbody { */
    /* border-color: inherit; */
    /* border-style: none; */
    /* border-width: 0;
    border-top: 1px solid var(--Secondary4);
    border-bottom: 1px solid var(--Secondary4);
    border-right: 1px solid var(--Secondary4);
    border-left: 1px solid var(--Secondary4);
} */


/* .table.rounded-corners>thead
{
     background-color: var(--Secondary4);
     color:var(--Neutrals900);
     font-weight: var(--semiBold);
     border-radius: 20px;
} */

/* .table.rounded-corners>thead>th{
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid black;
    display: flex;
    align-items: center;
  } */

.table.rounded-corners>tbody
{
    background-color: var(--Neutrals100);
}

.table.rounded-corners>tbody>tr>td
{
    color: var(--Neutrals700);
    font-weight: var(--semiBold);
}

.table.rounded-corners>tbody>tr>td>img.img-fluid
{
    width: 32px;
    cursor: pointer;
}

.table.rounded-corners>tbody>tr.gray-bg
{
    background-color: var(--Neutrals200);
}

.table.rounded-corners>tbody>tr>td.version_txt
{
    color: var(--primary-color);
}

.table.rounded-corners>thead>tr>th.solution
{
    width: 281px;
}

.table.rounded-corners>thead>tr
{
    background: var(--bgGradient1);
    color: var(--Neutrals100);
}

.table.rounded-corners>thead>tr>th:first-child
{
    border-radius: 30px 0px 0px 0px;
}

.table.rounded-corners>thead>tr>th:last-child
{
    border-radius: 0px 30px 0px 0px;
}

.table.rounded-corners>tbody>tr>td.high_txt
{
    color: var(--Error600);
}

.table.rounded-corners>tbody>tr>td.low_txt
{
    color: var(--Success600);
}

/* .table.rounded-corners>tbody>tr:last-child
{
    padding-bottom: 30px;
} */

/* .table.rounded-corners>tbody>tr:last-child
{
    padding-bottom: 30px;
} */

.table>:not(caption)>*>*
{
    padding: 10px 22px;
    border-bottom-width: 0;
}

.content-list
{
   min-height: 100vh;
   display: flex;
    justify-content: center;
    margin-top: 4rem;
    /* align-items: center; */
}

table.rounded-corners {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 30px 30px 0px 0px;
    border: 1px solid  var(--Secondary4);;
  }

  .action-tooltip
  {
    position: relative;
    width: 100%;
  }

  .action-tooltip2
  {
    position: relative;
    width: 100%;
  }

  .action-tooltip img
  {
    width: 32px;
    cursor: pointer;
  }
  .action-tooltip2 img
  {
    width: 25px;
    cursor: pointer;
  }


  

  .action-tooltip:hover .hoverable-text {
    display: flex!important;
  }

  .action-tooltip2:hover .hoverable-text {
    display: flex!important;
  }
.error-message{
    padding-left: 50px;
    font-size: 11px;
}
/* 
  .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip .hoverable-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  } */

  @media (max-width:1439px){
    .hoverable-text {
        display: none;
        width: 98px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 3px 0;
        position: absolute;
        z-index: 1;
        right: -12px;
        top: -72%;
        font-size: 12px;
        justify-content: center;
      }
  }

  @media (min-width:1440px){
    .hoverable-text {
        display: none;
        width: 100%;
        background-color: black;
        color: #fff;
        border-radius: 6px;
        padding: 3px 0;
        position: absolute;
        z-index: 1;
        top:0;
        font-size: 12px;
        left: -101%;
        justify-content: center;
        text-align: center;
    }
  }
  

  /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
.cb-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 150;
	contain: layout style size;
	pointer-events: none;
	will-change: transform;
	-webkit-transition: opacity 0.3s, color 0.4s;
	-o-transition: opacity 0.3s, color 0.4s;
	-moz-transition: opacity 0.3s, color 0.4s;
	transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
	content: "";
	position: absolute;
	top: -24px;
	left: -24px;
	display: block;
	width: 48px;
	height: 48px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	-o-transition: opacity 0.1s, -o-transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out, opacity 0.1s, -moz-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, opacity 0.1s;
	transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.cb-cursor-text {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(0) rotate(10deg);
	-moz-transform: scale(0) rotate(10deg);
	-ms-transform: scale(0) rotate(10deg);
	-o-transform: scale(0) rotate(10deg);
	transform: scale(0) rotate(10deg);
	opacity: 0;
	color: white;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	letter-spacing: -0.01em;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
	transition: opacity 0.4s, -webkit-transform 0.3s;
	-o-transition: opacity 0.4s, -o-transform 0.3s;
	-moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
	transition: opacity 0.4s, transform 0.3s;
	transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion, .cb-cursor.-opaque {
		mix-blend-mode: exclusion;
	}
}

@supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion:before, .cb-cursor.-opaque:before {
		background: white;
	}
}

.cb-cursor.-normal, .cb-cursor.-text {
	mix-blend-mode: normal;
}

.cb-cursor.-normal:before, .cb-cursor.-text:before {
	background: currentColor;
}

.cb-cursor.-inverse {
	color: white;
}

.cb-cursor.-visible:before {
	-webkit-transform: scale(0.2);
	-moz-transform: scale(0.2);
	-ms-transform: scale(0.2);
	-o-transform: scale(0.2);
	transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
	-webkit-transform: scale(0.23);
	-moz-transform: scale(0.23);
	-ms-transform: scale(0.23);
	-o-transform: scale(0.23);
	transform: scale(0.23);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.cb-cursor.-text:before {
	background: #000;
	opacity: 0.80;
	backdrop-filter: blur(10);
	-webkit-transform: scale(1.7);
	-moz-transform: scale(1.7);
	-ms-transform: scale(1.7);
	-o-transform: scale(1.7);
	transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.cb-cursor.-text.-active:before {
	-webkit-transform: scale(1.6);
	-moz-transform: scale(1.6);
	-ms-transform: scale(1.6);
	-o-transform: scale(1.6);
	transform: scale(1.6);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
	-webkit-transform: scale(1.32);
	-moz-transform: scale(1.32);
	-ms-transform: scale(1.32);
	-o-transform: scale(1.32);
	transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.cb-cursor.-lg:before {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}

.cb-cursor.-hidden:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.-color-red {
	color: red;
}

.-color-green {
	color: #51c67d;
}

.cb-demo {
	background: #fff;
}

.cb-demo-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100vh;
}

.cb-demo-container {
	padding: 0 20px;
}

@media (min-width: 1600px) {
	.cb-demo-container {
		padding: 0 120px;
	}
}

.cb-demo-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	margin: 30px 0;
}

@media (min-width: 1600px) {
	.cb-demo-row {
		margin: 60px 0;
	}
}

.cb-demo-item {
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 50px 30px;
	margin: 0 20px;
	color: #000;
}

@media (min-width: 1600px) {
	.cb-demo-item {
		padding: 90px 30px;
		margin: 0 30px;
	}
}

.cb-demo-item-title {
	position: relative;
	margin: 0 0 25px 0;
	font-size: 30px;
	font-weight: bold;
}

.cb-demo-item-text {
	position: relative;
	max-width: 70%;
	margin: 0 auto;
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
	font-weight: 300;
	line-height: 150%;
}

.cb-demo-item:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #f8f8f8;
	-webkit-transition: -webkit-box-shadow 0.2s;
	transition: -webkit-box-shadow 0.2s;
	-o-transition: box-shadow 0.2s;
	-moz-transition: box-shadow 0.2s, -moz-box-shadow 0.2s;
	transition: box-shadow 0.2s;
	transition: box-shadow 0.2s, -webkit-box-shadow 0.2s, -moz-box-shadow 0.2s;
}

  .cb-cursor:before{
	background: linear-gradient(90.15deg, var(--primary-color) 1.15%, var(--secondary-color) 98.84%);
}