@charset "UTF-8";

:root {
    --primary-blue: #023e62;
    --secondry-blue: #2a9bdb;
    --light-blue: #39a9e8;
    --blue-tint1: #2a9bdb;
    --primary-green: #66ac49;
    --primary-hover-green: #4d9331;
    --green-tint1: #3c891c;
    --grey-tint1: #9a9a9a;
    --grey-tint2: #9b9b9b;
    --grey-tint3: #ccd8e0;
    --grey-tint4: #ccd8e0;
    --grey-tint5: #d6d6d6;
    --grey-tint6: #f7fbf6;
    --grey-tint7: #7c7c7c;
    --grey-tint8: #5c5c5c;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

html,
body {
    height: 100%;
}

body {
    color: var(--primary-blue);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fff;
    margin: 0;
    padding: 0;
    letter-spacing: 0.3px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #b1b1b1 #f5f5f5;
}

*::-webkit-scrollbar {
    width: 9px;
}

*::-webkit-scrollbar-track {
    background: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    background-color: #b1b1b1;
    border-radius: 20px;
    border: 1px solid #f5f5f5;
}

input:focus,
select:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

select::-ms-expand {
    display: none;
}

a:hover,
a:focus,
button,
button:hover,
button:focus,
input:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

input:-webkit-autofill {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-transition-property: #fff !important;
    background-clip: content-box;
}

input:-webkit-autofill,
input:-webkit-autofill:focus input:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #535353;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-weight: 700;
}

select::-ms-expand {
    display: none;
}

p {
    margin: 0;
    padding: 0;
}

p strong {
    font-weight: 600;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol {
    padding-left: 15px;
}

.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: -1;
}

a,
button,
textarea {
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    text-decoration: none;
    outline: none !important;
    color: inherit;
    font-size: inherit;
}

button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
    width: 100%;
}

input[type="submit"] {
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    text-decoration: none !important;
    outline: none !important;
}

input[type="number"] {
    -moz-appearance: textfield;
}

img {
    max-width: 100%;
}

.headerHeight {
    height: 80px;
}

.mainSection {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

header.mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
}

header.mainHeader.coompack-nav {}

.navbar {
    background: #fff;
    padding: 10px 0;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-box-shadow: 0 5px 15px 0 rgb(0, 0, 0, 10%);
    box-shadow: 0 5px 15px 0 rgb(0, 0, 0, 10%);
}

.coompack-nav .navbar {
    padding: 10px 0;
}

.navbar-brand {
    width: 139px;
}

.coompack-nav .navbar-brand {
    width: 129px;
}

.navbar__register {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-tint2);
}

.navbar__register>a {
    font-size: 20px;
    font-weight: inherit;
    color: var(--primary-blue);
}

.commonPadding {
    padding: 40px 0;
}

.cardMain {
    background: #fff;
    padding: 35px 45px;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.1);
}

/* login page */

.loginLeftBox__img {
    width: 100%;
    max-width: 562px;
    position: relative;
    margin-left: 59px;
}

.loginLeftBox__img>img {
    position: relative;
    z-index: 1;
}

.loginLeftBox__img:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background: rgb(255, 255, 255);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 44%);
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            from(rgba(255, 255, 255, 1)),
            color-stop(44%, rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 44%);
}

.loginLeftBox__cntnt h2 {
    font-size: 64px;
    color: var(--primary-blue);
    line-height: 73px;
    font-weight: 600;
}

.loginLeftBox__cntnt p {
    font-size: 24px;
    color: var(--grey-tint1);
    font-weight: 400;
    width: 100%;
    max-width: 720px;
}

.loginLeftBox__cntnt {
    position: relative;
    margin-top: -110px;
    z-index: 2;
}

.cardMain.cardMain--login {
    width: 100%;
    max-width: 535px;
    margin-left: auto;
}

.cardMain--loginHeading {
    margin-bottom: 30px;
}

.cardMain--loginHeading h2 {
    font-size: 30px;
    color: var(--primary-blue);
    font-weight: 600;
}

.loginOrganization {
    margin-bottom: 30px;
}

.loginOrganization__title {
    color: var(--grey-tint1);
}

.loginOrganization__name {
    color: var(--secondry-blue);
    font-size: 18px;
    font-weight: 500;
}

/* footer */
footer.footer {
    padding: 15px 0;
}

.footer__cntnt {
    font-size: 14px;
}

.footer__cntnt strong {
    font-size: inherit;
    font-weight: 700;
}

.footer--Blue {
    background: var(--primary-blue);
    color: #fff;
}

.footer--Blue .footer__cntnt {
    color: inherit;
}

.footer--white {
    background: #fff;
    color: var(--primary-bluezxfxcz);
}

/* footer */

.commonBtn {
    display: inline-block;
    padding: 12px 32px;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
}

.commonBtn.commonBtn--green {
    background: var(--primary-green);
    color: #fff;
}

.commonBtn.commonBtn--green:hover {
    background: var(--primary-hover-green);
}

.commonBtn.commonBtn--blue {
    background: var(--primary-blue);
    color: #fff;
}

.commonBtn.commonBtn--blue:hover {
    background: var(--secondry-blue);
}

.commonBtn.commonBtn--LightBlue {
    background: var(--secondry-blue);
    color: #fff;
}

.commonBtn.commonBtn--LightBlue:hover {
    background: var(--primary-blue);
}

.commonBtn--large {
    width: 100%;
}

.commonBtn.commonBtn--large {
    padding: 15px 32px;
}

.loginFormButton {
    padding-top: 14px;
}

/* forms */
.form-control:not(textarea) {
    height: 50px;
}

.form-control {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
    border-radius: 7px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    -webkit-box-shadow: inset 2px 2px 8px 0 rgb(102 172 73 / 12%);
    box-shadow: inset 2px 2px 8px 0 rgb(102 172 73 / 12%);
}

.form-group label {
    font-size: 14px;
    color: #000;
    margin-bottom: 6px;
    display: block;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
}

.form-group .form-text {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    color: var(--grey-tint8);
    font-size: 14px;
}

.cardMain--login .form-group label {
    color: var(--grey-tint1);
}

/* forms */

.forgotPassword {
    font-size: 16px;
    color: var(--secondry-blue);
    font-weight: 400;
}

.loginFormButton {
    margin-top: 10px;
    padding-bottom: 20px;
}

.loginFormSeprator hr {
    margin: 29px 0;
    border: 0;
    border-bottom: 1px solid var(--grey-tint5);
}

.loginOtp {
    background: var(--grey-tint4);
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.otpSent__cntnt {
    font-size: 18px;
    line-height: 25px;
    color: var(--grey-tint1);
}

.otpSent__no {
    font-size: 24px;
    line-height: 38px;
    color: var(--primary-blue);
}

.otpSent {
    margin-bottom: 27px;
}

/* registerSection */

.registerSection {
    background: var(--primary-blue);
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.registerSlider__img {
    margin-bottom: 15px;
}

.registerSlider__img img {
    max-height: 100px;
}

.registerSlider__cntnt h3 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.registerSlider__cntnt p {
    font-size: 20px;
    color: var(--light-blue);
}

.registerSlider {
    margin-bottom: 40px;
    width: 100%;
    max-width: 520px;
}

.registerSection__bttmCntnt h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
}

.registerSection__bttmCntnt h3 em {
    font-weight: 600;
    font-style: italic;
}

.registerSection__bttmCntnt hr {
    border: 0;
    border-bottom: 11px solid #fff;
}

.registerSection__bttmCntnt hr {
    border: 0;
    border-bottom: 11px solid #fff;
    width: 100%;
    max-width: 170px;
    margin: 18px 0 0;
}

.emailatright {
    position: relative;
}

.emailatright input.form-control {
    padding-right: 111px;
}

.emailatright__tag {
    position: absolute;
    top: 13px;
    right: 10px;
    color: var(--primary-green);
    font-size: 16px;
}

.cardMain--loginHeading p {
    font-size: 16px;
    color: var(--grey-tint7);
    font-weight: 400;
}

.messageBox {
    padding: 12px;
    text-align: center;
    background: rgb(102, 172, 73, 0.05);
    border: 1px solid rgb(102, 172, 73, 0.2);
    margin-bottom: 15px;
}

.messageBox p {
    font-size: 18px;
    color: var(--green-tint1);
}

.messageBox span {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-blue);
}

.cardMain {
    position: relative;
}

.activatekeyForm__btn {
    position: absolute;
    left: -27px;
    top: 60px;
}

.activatekeyForm__btn.commonBtn {
    padding: 18px 19px;
}

.activatekeyForm__btn.commonBtn img {
    width: 20px;
    height: 20px;
}

.form-text a {
    color: var(--blue-tint1);
}

.activatekeyForm__sbmt .form-text {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: var(--grey-tint1);
    font-weight: 400;
    font-family: "M PLUS 1p", sans-serif;
}

/*  */

.signup3Section__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.signup3Section__leftCol {
    -ms-flex-preferred-size: 446px;
    flex-basis: 446px;
    width: 446px;
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
}

.mainHeader.coompack-nav~.mainSection .signup3Section__leftCol {
    position: fixed;
    left: auto;
    top: 96px;
}

.signup3Section__rightCol {
    -ms-flex-preferred-size: calc(100% - 385px);
    flex-basis: calc(100% - 385px);
    margin-left: auto;
}

.signup3Section__rightCol .cardMain {
    padding-left: 128px;
}

.navbar__loggedin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.navbar__loggedin .user__wrap .btn {
    font-weight: 500;
    font-size: 24px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    text-transform: uppercase;
}

.navbar__loggedin .user__wrap .blue__btn {
    background: var(--primary-blue);
    color: var(--white);
}

.navbar__loggedin .logout__wrap {
    padding: 0 0 0 30px;
}

.navbar__loggedin .logout__wrap .btn {
    padding: 5px;
    width: 40px;
    height: 40px;
}

.navbar__loggedin .logout__wrap .pinkbg {
    background: rgba(238, 49, 151, 0.2);
    border-radius: 5px;
}

.signup3Section__rightCol .row__holder {
    border-bottom: 1px solid #dddddd;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.signup3Section__rightCol .row__holder.noborder {
    border: none;
    padding: 0;
    margin: 0;
}

.signup3Section__rightCol .row__holder .labelHeading h2 {
    font-weight: normal;
    font-size: 24px;
    line-height: 44px;
    padding: 0 0 20px;
    margin: 0;
}

.signup3Section__rightCol .form-control {
    border-color: transparent;
    -webkit-box-shadow: inset 2px 2px 8px 0 rgba(102, 172, 73, 0.15);
    box-shadow: inset 2px 2px 8px 0 rgba(102, 172, 73, 0.15);
    font-family: "Poppins", sans-serif;
    font-weight: normal;
}

.signup3Section__rightCol .dropdown-toggle {
    display: block;
    -webkit-box-shadow: inset 2px 2px 8px 0 rgba(102, 172, 73, 0.15);
    box-shadow: inset 2px 2px 8px 0 rgba(102, 172, 73, 0.15);
    width: 100%;
    text-align: left;
    height: 50px;
    font-weight: 300;
    font-size: 14px;
    color: #000;
    position: relative;
    border-radius: 7px;
}

.signup3Section__rightCol .dropdown-toggle:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: #66ac49;
    opacity: 0.2;
    border-radius: 5px;
    border: none;
    content: "";
}

.signup3Section__rightCol .dropdown-toggle:after {
    position: absolute;
    right: 18px;
    top: 20px;
    border-top: 9px solid #66ac49;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}

.signup3Section__rightCol .form-group label {
    color: #7c7c7c;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0 15px 12px;
    font-family: "Poppins", sans-serif;
}

.signup3Section__rightCol .dropdown-menu {
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 10px rgba(102, 172, 73, 0.1);
    box-shadow: 0px 3px 10px rgba(102, 172, 73, 0.1);
    border-radius: 10px;
    border-color: transparent;
    min-width: 325px;
}

.input__wrap .dropdown-menu {
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 10px rgba(102, 172, 73, 0.1);
    box-shadow: 0px 3px 10px rgba(102, 172, 73, 0.1);
    border-radius: 10px;
    border-color: transparent;
}

.input__wrap .dropdown-menu .dropdown-item {
    font-weight: 500;
    color: var(--primary-blue);
    padding: 12px 30px;
}

.input__wrap .dropdown-menu .dropdown-item:hover {
    background: #f4f7f3;
}

.signup3Section__rightCol .dropdown-menu .dropdown-item {
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-blue);
    font-family: "M PLUS 1p", sans-serif;
    padding: 12px 30px;
}

.signup3Section__rightCol .dropdown-menu .dropdown-item:hover {
    background: #f4f7f3;
}

.signup3Section__leftCol .cardMain--loginHeading h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.signup3Section__leftCol .cardMain--loginHeading p {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0 0;
}

.signup3Section__rightCol textarea.form-control {
    min-height: 245px;
}

.signup3Section__leftCol .cardMain--loginHeading {
    margin: 0 0 60px;
}

.signup3Section__leftCol ul li div, .signup3Section__leftCol ul li div a {
    font-size: 16px;
    line-height: 30px;
    font-weight: normal;
    color: #000;
    display: block;
}

.signup3Section__leftCol ul li span,
.signup3Section__leftCol ul li span a {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    color: #7c7c7c;
    display: block;
}

.signup3Section__leftCol ul li {
    padding: 0 0 10px;
}

/* Updated profile starts*/

.profileUpdated .cardMain--Profile {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 40px 64px 65px;
}

.cardMain--Profile .next__title {
    color: #9a9a9a;
    font-size: 24px;
    line-height: 36px;
}

.cardMain--Profile .steps__container .ticks {
    background: #c4c4c4;
    border-radius: 50%;
    height: 28px;
    width: 28px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cardMain--Profile .steps__container .iconbx {
    margin: 0 17px 0 34px;
    width: 35px;
    text-align: right;
    display: inline-block;
}

.cardMain--Profile .steps__container .tx_wrap {
    font-size: 18px;
    line-height: 27px;
}

.cardMain--Profile .steps__container .updated .ticks {
    background: var(--primary-blue);
}

.cardMain--Profile .steps__container .current .tx_wrap {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
}

.cardMain--Profile .steps__container .pending .tx_wrap {
    color: #7a7a7a;
}

.cardMain--Profile .steps__container ul li {
    padding: 0 0 46px;
    position: relative;
    z-index: 1;
}

.cardMain--Profile .steps__container ul li:last-child {
    padding: 0 0 10px;
}

.cardMain--Profile .steps__container ul li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: transparent;
    left: 14px;
    top: 0;
    z-index: 0;
    border: 1px dashed #9a9a9a;
}

.cardMain--Profile .continuetx p {
    font-size: 14px;
    line-height: 21px;
    color: #6a6a6a;
    margin: 0 0 15px;
}

.cardMain--Profile .setupbtn__holder .btn {
    color: var(--white);
    font-size: 18px;
    line-height: 27px;
    padding: 18px 28px;
    font-weight: normal;
    border-radius: 10px;
    max-width: 370px;
}

.bluebtn {
    background: var(--primary-blue);
}

.bluebtn:hover,
.bluebtn:focus {
    background: var(--secondry-blue);
}

.cardMain--Profile .steps__container {
    padding: 37px 0 82px;
}

.profileUpdated .LeftBox__cntnt h2 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0;
}

.profileUpdated .LeftBox__cntnt p {
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #9a9a9a;
    padding: 27px 0 76px;
    max-width: 675px;
}

.profileUpdated .LeftBox__img img {
    max-width: 557px;
}

.mainHeader .LightBlueBtn {
    background: var(--blue-tint1);
    -webkit-box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.mainHeader .upgrade__btn .btn:hover {
    background: var(--primary-blue);
}

.mainHeader .upgrade__btn .btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    padding: 14px 26px;
    border-radius: 5px;
}

.mainHeader .upgrade__btn .btn img {
    margin: 0 0 0 12px;
}

.mainHeader .planinfo {
    padding: 0 36px;
}

.mainHeader .clrgreen {
    color: #66ac49;
}

.mainHeader .planName {
    font-weight: 500;
    font-size: 24px;
}

.mainHeader .planLabel {
    font-size: 10px;
    color: var(--grey-tint1);
}

/* Review Section Starts */

.reviewSection {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.reviewSection__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 -15px;
}

.reviewSection__leftCol {
    -ms-flex-preferred-size: 340px;
    flex-basis: 340px;
    max-width: 340px;
    padding: 0 15px;
}

.reviewSection__rightCol {
    -ms-flex-preferred-size: calc(100% - 340px);
    flex-basis: calc(100% - 340px);
    max-width: calc(100% - 340px);
    margin: 0 auto;
    padding: 0 15px;
}

.review__Heading {
    margin-bottom: 40px;
}

.review__Heading h2 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 500;
    margin: 0 0 10px;
}

.review__Heading p {
    font-size: 14px;
    line-height: 26px;
    color: var(--grey-tint7);
    font-weight: 400;
}

.review__form .form-check,
.rightsidebar .form-check {
    padding: 0;
}

.reviewCardMain .form-group {
    position: relative;
}

.reviewCardMain .form-group label {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.reviewCardMain .form-control {
    background: #f9f9f9;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    font-size: 14px;
    color: #000;
    font-weight: normal;
    /* padding-right: 85px; */
    font-family: "Poppins", sans-serif;
}

.reviewCardMain .form-group .reviewBtn {
    position: absolute;
    right: 10px;
    bottom: 8px;
}

.reviewCardMain .form-group .btn {
    font-weight: 500;
    font-size: 14px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.transBtn {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.reviewCardMain .clrblue {
    color: var(--secondry-blue);
}

.reviewCardMain .form-control.danger {
    color: #e12248;
    font-weight: 500;
}

.reviewCardMain .clrred {
    color: #e12248;
}

.reviewCardMain .findmore_holder {
    padding: 40px 0 0;
}

.reviewCardMain .findmore_holder label {
    font-weight: 500;
}

.reviewCardMain .findmore_holder .input_wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 185px);
    flex: 0 0 calc(100% - 185px);
    max-width: calc(100% - 185px);
}

.reviewCardMain .findmore_holder .form-control.darkbg {
    background: #efefef;
}

.reviewCardMain .findmore_holder .addbtn_wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 185px;
    flex: 0 0 185px;
    max-width: 185px;
}

.reviewCardMain .findmore_holder .addbtn_wrap .btn {
    font-weight: 600;
    padding-left: 22px;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reviewCardMain .findmore_holder .addbtn_wrap .btn img {
    margin: 0 10px 0 0;
}

.reviewCardMain .findmore_holder .saveButton .commonBtn.bluebtn {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    /* min-height: 50px; */
}

.reviewSection .reviewLftbx__wrap .txbx_holder h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reviewSection .reviewLftbx__wrap .txbx_holder h4 img {
    margin-right: 10px;
}

.reviewSection .reviewLftbx__wrap .txbx_holder p {
    font-size: 12px;
    line-height: 22px;
    font-weight: normal;
    color: #7c7c7c;
}

.borderCard {
    border: 1px solid #d3d3d3;
}

.reviewSection .reviewLftbx__wrap .txbx_holder {
    padding: 64px 0 60px;
}

.reviewSection .reviewLftbx__wrap .tipbx_wrapper {
    border-radius: 10px;
    padding: 10px 12px;
}

.reviewSection .reviewLftbx__wrap .tipbx_wrapper .contInfo {
    padding: 0 20px;
}

.reviewSection .reviewLftbx__wrap .tipbx_wrapper .contInfo h4 {
    font-size: 14px;
    line-height: 25px;
    font-weight: normal;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.reviewSection .reviewLftbx__wrap .tipbx_wrapper .contInfo p {
    font-size: 10px;
    color: #8c8c8c;
}

.reviewSection .review__steps__holder {
    color: #fff;
}

.reviewSection .review__steps__holder ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.reviewSection .review__steps__holder ul span {
    display: block;
    text-align: center;
}

.reviewSection .review__steps__holder ul li {
    padding: 0 35px;
    text-align: center;
    color: #9a9a9a;
    position: relative;
    letter-spacing: 0;
    z-index: 1;
}

.reviewSection .review__steps__holder ul .active,
.reviewSection .review__steps__holder ul .updated {
    color: var(--white);
}

.reviewSection .review__steps__holder ul .active .num,
.reviewSection .review__steps__holder ul .updated .num {
    border-color: var(--white);
}

.reviewSection .review__steps__holder ul .updated .num {
    background: var(--white);
    color: var(--primary-blue);
}

.reviewSection .review__steps__holder ul .updated .num:after {
    content: "";
    position: absolute;
    height: 19px;
    width: 19px;
    background: url(../img/updated-check.svg);
    top: -4px;
    right: -4px;
    background-size: 100%;
}

.reviewSection .review__steps__holder ul .num {
    min-width: 60px;
    min-height: 60px;
    border: 4px solid #9a9a9a;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    background: var(--primary-blue);
}

.reviewSection .review__steps__holder ul .numtx {
    font-size: 14px;
    font-weight: 600;
    margin: 12px 0 0;
}

.reviewSection .review__steps__holder ul li:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 90px;
    right: -42px;
    top: 27px;
    background: transparent;
    border: 1px dashed #2a9bdb;
    z-index: 0;
}

.reviewSection .review__steps__holder ul li:last-child:before {
    display: none;
}

.reviewSection.bluebg {
    background: var(--primary-blue);
}

.reviewSection.steps__banner {
    position: absolute;
    left: 0;
    top: 80px;
    right: 0;
    width: auto;
    height: auto;
    padding: 35px 35px 130px;
}

.reviewSection.floatingSection {
    padding-top: 160px;
}

.reviewSection.floatingSection .reviewLftbx__wrap {
    margin-top: -50px;
}

/* Right sidebar starts */

.rightsidebar {
    position: fixed;
    right: -475px;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    /* height: 100vh; */
    overflow-y: auto;
    width: 475px;
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.sidebarModal {
    overflow: hidden;
}

.rightSidebarBackShadow {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.sidebarModal .rightSidebarBackShadow {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.sidebarModal .rightsidebar,
.sidebarOpen {
    right: 0;
}

.rightsidebar .sidebar_wrapper {
    padding: 40px;
    letter-spacing: 0;
}

.rightsidebar .sidebar_wrapper h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 44px;
}

.rightsidebar .sidebar_wrapper .contbx_holder .selectAllRow {
    border-bottom: 1px solid #dadada;
    padding: 30px 0 15px;
}

.rightsidebar .sidebar_wrapper .contbx_holder .selectAllRow .form-group {
    position: relative;
    margin: 0;
}

.rightsidebar .sidebar_wrapper .contbx_holder .selectAllRow .form-group label {
    margin: 0;
    color: var(--secondry-blue);
}

.rightsidebar .sidebar_wrapper .contbx_holder .selectAllRow .form-group .addnewBtn {
    right: 0;
    position: absolute;
    top: -7px;
}

.rightsidebar .sidebar_wrapper .contbx_holder .selectAllRow .form-group .addnewBtn .transBtn {
    background: transparent;
    color: var(--secondry-blue);
    font-size: 14px;
    font-weight: 700;
    padding-right: 0;
}

.rightsidebar .sidebar_wrapper ul {
    padding: 20px 0 118px;
}

.rightsidebar .sidebar_wrapper ul li {
    padding: 0 0 6px;
}

.rightsidebar .sidebar_wrapper .tipbx_holder {
    padding: 20px;
    background: #efefef;
    border-radius: 5px;
}

.rightsidebar .sidebar_wrapper .tipbx_holder .tipHeading {
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 44px;
}

.rightsidebar .sidebar_wrapper .tipbx_holder .tipHeading img {
    margin-right: 8px;
}

.rightsidebar .sidebar_wrapper .tipbx_holder .tipHeading .transBtn {
    padding-right: 0;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 8px;
    color: var(--secondry-blue);
}

.rightsidebar .sidebar_wrapper .tipbx_holder h3 {
    color: #6d6d6d;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    padding: 0 0 5px;
}

.rightsidebar .sidebar_wrapper .tipbx_holder h3 img {
    margin-right: 10px;
}

.rightsidebar .sidebar_wrapper .tipbx_holder p {
    color: #6d6d6d;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.rightsidebar .sidebar_wrapper .donebtn__holder {
    border-top: 1px solid #dadada;
    padding: 24px 0 0 0;
    margin: 30px 0 0;
}

.rightsidebar .sidebar_wrapper .donebtn__holder .btn {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    padding: 15px 25px;
}

/* Modal Starts */

.addModal-dialog {
    max-width: 770px;
}

.addModal-dialog .modal-content {
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.addModal-dialog .modal-body {
    padding: 52px;
    letter-spacing: 0;
    min-height: 386px;
}

.addModal-dialog .modal-body h2 {
    font-size: 24px;
    font-weight: 500;
}

.addModal-dialog .modal-body .form-holder {
    padding: 42px 0 0;
}

.addModal-dialog .modal-body .form-holder .form-control {
    border-radius: 5px;
    color: #023e62;
    font-weight: normal;
    font-size: 14px;
}

.addModal-dialog .modal-body .form-holder .darkbg {
    background: #efefef;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
}

.addModal-dialog .modal-body .form-holder .darkbg:focus {
    background: #fff;
    border-color: #e2e2e2;
}

.addModal-dialog .modal-body .form-holder .dropdown .dropdown-toggle {
    display: block;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    text-align: left;
    height: 50px;
    font-weight: 400;
    font-size: 14px;
    color: #949494;
    position: relative;
    border-radius: 7px;
    background: #efefef;
}

.addModal-dialog .modal-body .form-holder .dropdown-toggle:before {
    position: absolute;
    right: 0;
    top: -1px;
    height: 50px;
    width: 50px;
    background: var(--white);
    opacity: 1;
    border-radius: 5px;
    border: 1px solid #2a9bdb;
    content: "";
}

.addModal-dialog .modal-body .form-holder .dropdown-toggle:after {
    position: absolute;
    right: 18px;
    top: 20px;
    border-top: 9px solid var(--secondry-blue);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}

.addModal-dialog .modal-body .form-holder .dropdown .dropdown-menu {
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    border-color: transparent;
    min-width: 185px;
    max-height: 400px;
    overflow-y: auto;
}

.addModal-dialog .modal-body .form-holder .frequencyCol .dropdown .dropdown-menu {
    top: -52px !important;
}

.addModal-dialog .modal-body .form-holder .dropdown .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-blue);
    font-family: "M PLUS 1p", sans-serif;
    padding: 12px 30px;
}

.addModal-dialog .modal-body .form-holder .dropdown .dropdown-menu .dropdown-item:hover {
    background: #f4f7f3;
}

.workCatCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.frequencyCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .workCatCol {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 268px);
        flex: 0 0 calc(100% - 268px);
        max-width: calc(100% - 268px);
    }

    .frequencyCol {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 268px;
        flex: 0 0 268px;
        max-width: 268px;
    }
}

.addModal-dialog .modal-body .form-holder label {
    font-size: 12px;
}

.addModal-dialog .modal-body .savebtn__holder .btn {
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 20px;
    min-height: 40px;
}

.addModal-dialog .modal-body .savebtn__holder .LightBlue {
    background: var(--secondry-blue);
    color: var(--white);
}

.addModal-dialog .modal-body .savebtn__holder .LightBlue:hover {
    background: var(--primary-blue);
}

.addModal-dialog .modal-body .form-holder .dateCol .dropdown .dropdown-menu {
    min-width: 83px;
    text-align: center;
}

.addModal-dialog .modal-body .form-holder .dateCol .dropdown .dropdown-menu .dropdown-item {
    font-size: 18px;
    text-align: left;
}

.addModal-dialog .modal-content .close {
    position: absolute;
    right: 70px;
    top: 60px;
    z-index: 1;
}

/*  */

.inviteTeamSection .review__Heading h2 {
    position: relative;
    padding-right: 250px;
}

.inviteTeamSection .review__Heading h2 .org__structure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
}

.inviteTeamSection .review__Heading h2 .org__structure img {
    margin: 0 10px 0 0;
}

.inviteTeamSection .review__Heading h2 .clr_lgtblue {
    color: var(--secondry-blue);
}

.inviteTeamSection {
    letter-spacing: 0;
}

.inviteTeamSection .review__Heading {
    margin-bottom: 10px;
}

.inviteTeamSection .row__holder.seperator {
    border-bottom: 1px solid #cdcdcd;
    padding: 30px 0;
}

@media (min-width: 1400px) {
    .inviteTeamSection .row__holder.seperator {
        padding-right: 25%;
    }
}

.inviteTeamSection .row__holder .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    margin: 0 0 15px;
    white-space: nowrap;
}

.inviteTeamSection .row__holder .form-group label .org__structure {
    font-weight: 500;
    font-size: 12px;
    color: #2a9bdb;
}

.inviteTeamSection .row__holder .form-group label .org__structure img {
    margin: 0 5px;
}

.inviteTeamSection .row__holder .form-group .form-control {
    border: 1px solid #e3e3e3;
    background: transparent;
}

.inviteTeamSection .row__holder .inviteBtn_holder {
    padding: 0 15px;
}

.inviteTeamSection .row__holder .inviteBtn_holder .btn {
    background: #2a9bdb;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 15px;
    min-height: 40px;
}

.inviteTeamSection .row__holder .inviteBtn_holder .btn:hover {
    background: var(--primary-blue);
}

.inviteTeamSection .row__holder.seperator .addmore-inputs {
    margin: 0;
}

.inviteTeamSection .row__holder.seperator .addmore-inputs .transbtn {
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--secondry-blue);
    font-weight: 600;
    font-size: 14px;
}

.inviteTeamSection .row__holder .form-group .dropdown .btn {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    min-height: 50px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.inviteTeamSection .row__holder .form-group .dropdown .btn:after {
    position: absolute;
    right: 15px;
    top: 20px;
    border-top-color: #2a9bdb;
    border-bottom-color: #2a9bdb;
}

.inviteTeamSection .add_optns_holder {
    padding: 30px 0 0;
}

.inviteTeamSection .add_optns_holder .transbtn {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    padding: 15px 0;
}

.reviewCardMain .findmore_holder .ltrbtn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 35px;
}

.reviewCardMain .findmore_holder .ltrbtn:hover {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 35px;
}

/* Import Clients Starts */

.import_contbx_holder {
    padding: 0 0 70px;
}

.import_contbx_holder .choseBranchRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.import_contbx_holder .choseBranchRow .lftCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.import_contbx_holder .dropdown {
    max-width: 300px;
}

.import_contbx_holder .dropdown .btn {
    border: 1px solid #e3e3e3;
    font-size: 14px;
    font-weight: 500;
    color: #9a9a9a;
    border-radius: 5px;
    min-height: 50px;
    padding: 14px;
    min-width: 300px;
    text-align: left;
}

.import_contbx_holder .dropdown .importCustBtn {
    position: absolute;
    right: 10px;
    top: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 30px;
    min-height: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.import_contbx_holder .dropdown .importCustBtn:after {
    border-top-color: #2a9bdb;
    border-bottom-color: #2a9bdb;
}

.import_contbx_holder .choseBranchRow .rgtCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.import_contbx_holder .choseBranchRow .transbtn {
    font-weight: 500;
    font-size: 12px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    padding: 4px 0;
    display: inline-block;
}

.import_contbx_holder .upload_area_container .form-group {
    margin: 0;
    padding: 17px 0;
}

.import_contbx_holder .upload_area_container .form-group .custom-file {
    height: auto;
    display: block;
}

.import_contbx_holder .upload_area_container .form-group .custom-file .form-control {
    height: auto;
    min-height: 123px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    z-index: 1;
}

.import_contbx_holder .upload_area_container .form-group .custom-file .custom-file-label {
    min-height: 123px;
    height: auto;
    margin: 0;
    padding: 45px 0 35px;
    font-size: 18px;
    font-weight: 500;
    color: #9a9a9a;
    text-align: center;
    z-index: 0;
}

.import_contbx_holder .upload_area_container .form-group .custom-file .custom-file-label img {
    margin: 0 10px 0 0;
}

.import_contbx_holder .upload_area_container .form-group .custom-file .custom-file-label:after {
    opacity: 0;
    visibility: hidden;
}

.import_contbx_holder .inviteBtn_holder .trans {
    padding: 10px 30px;
    font-weight: 600;
    font-size: 14px;
}

.guidlines__holder ul li {
    font-size: 12px;
    line-height: 27px;
    color: #7c7c7c;
}

.importModal-dialog .modal-body .upload_area_container .inviteBtn_holder .lgtbluebg {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background: var(--secondry-blue);
    border-radius: 5px;
    padding: 12px 20px;
    min-height: 50px;
    min-width: 140px;
}

.modal-body .upload_area_container .inviteBtn_holder .lgtbluebg:hover {
    background: var(--primary-blue);
}

.importModal-dialog .modal-body h2 {
    font-size: 18px;
}

.importModal-dialog .modal-body h2 img {
    padding: 0 10px 0 0;
}

.importModal-dialog .modal-body p {
    color: #9a9a9a;
    font-size: 12px;
    padding: 5px 0 20px 37px;
}

.importModal-dialog .upload_area_container .form-group .custom-file {
    height: auto;
    display: block;
}

.importModal-dialog .upload_area_container .form-group .custom-file .form-control {
    height: auto;
    min-height: 326px;
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    z-index: 1;
}

.importModal-dialog .upload_area_container .form-group .custom-file .custom-file-label {
    min-height: 326px;
    height: auto;
    margin: 0;
    padding: 45px 0;
    font-size: 18px;
    font-weight: 500;
    color: #9a9a9a;
    text-align: center;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.importModal-dialog .upload_area_container .form-group .custom-file .custom-file-label:after {
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 1200px) {
    .modal-dialog.importModal-dialog {
        max-width: 1152px;
    }
}

/* Import clients Table Starts */

.reviewSection__rightCol.fullCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.import_contbx_holder .import__label h2 {
    font-weight: 500;
    font-size: 18px;
}

.import_table_holder ul li {
    font-weight: 500;
    font-size: 14px;
}

.import_table_holder .choseBranchRow .transbtn {
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.import_table_holder .table_container {
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    margin: 30px 0;
}

.import_table_holder .table {
    border-radius: 10px !important;
    border: none;
    min-height: 437px;
    border-top: none;
}

.import_table_holder .table th {
    background: #ebebeb;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #023e62;
    vertical-align: middle;
    border-bottom: 1px solid #d6d6d6;
    border-right: 1px solid #d6d6d6;
    border-top: none;
    border-left: none;
}

.import_table_holder .table th:first-child {
    border-radius: 10px 0 0 0;
}

.import_table_holder .table th:last-child {
    border-right: none;
    border-radius: 0 10px 0 0;
}

.import_table_holder .table td {
    vertical-align: middle;
    border-top: none;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}

.import_table_holder .inviteBtn_holder .lgtbluebg {
    background: var(--secondry-blue);
}

.import_table_holder .inviteBtn_holder .lgtbluebg:hover {
    background: var(--primary-blue);
}

.import_table_holder .inviteBtn_holder .btn {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    min-height: 48px;
}

.importCardMain {
    padding: 45px 48px;
}

.import_table_holder {
    padding: 0;
}

/* Config Tab Starts */

.review__config_holder {
    text-align: left;
}

.review__config_holder h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    padding: 0 0 0;
    position: relative;
    top: 25px;
    min-height: 92px;
}

.tabPills_holder {
    border-right: 1px solid #c4c4c4;
    min-height: 573px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 314px;
    flex: 0 0 314px;
    max-width: 314px;
}

.tabcontbx_holder {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 314px);
    flex: 0 0 calc(100% - 314px);
    max-width: calc(100% - 314px);
}

.tabPills_holder .nav-pills {
    padding-right: 31px;
    letter-spacing: 0;
}

.tabcontbx_holder .review__form {
    /* min-height: 573px; */
    position: relative;
    padding-bottom: 94px;
    letter-spacing: 0;
}

.tabsCardMain {
    padding: 40px 63px 60px 38px;
}

.tabPills_holder .nav-pills .nav-link {
    color: var(--primary-blue);
    border-radius: 5px;
    font-size: 14px;
    line-height: 21px;
    font-weight: normal;
    padding: 10px 13px;
    margin: 0 0 3px;
}

.tabPills_holder .nav-pills .nav-link.filled {
    background-image: url(../img/checkBox.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    padding-right: 26px;
}

.tabPills_holder .nav-pills .nav-link.active,
.tabPills_holder .nav-pills .show>.nav-link {
    color: var(--primary-blue);
    background-color: rgba(2, 62, 98, 0.05);
    font-weight: 500;
}

.tabcontbx_holder .cstmrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tabcontbx_holder .centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabcontbx_holder .contbx .input_holder {
    position: relative;
}

.tabcontbx_holder .contbx .input_holder .arrow_wrap .arrow {
    position: absolute;
    right: 15px;
    top: 10px;
    line-height: 1;
}

.tabcontbx_holder .contbx .input_holder .arrow_wrap .down {
    top: 24px;
}

.tabcontbx_holder .contbx .input_holder .arrow_wrap .transbtn {
    padding: 0 3px;
    line-height: 1;
}

.tabcontbx_holder .contbx .form-control {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background: #fff;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.tabcontbx_holder .contbx .form-control-sm {
    max-width: 130px;
}

.tabcontbx_holder .labelbx {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    white-space: nowrap;
    min-width: 175px;
}

.tabcontbx_holder .row_holder {
    margin: 0 0 20px;
}

.tabcontbx_holder .check__row .form-check {
    display: inline-block;
    margin: 0 20px 0 0;
}

.tabcontbx_holder .check__row .form-check .cstmCheck {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-blue);
}

.tabcontbx_holder .check__row .form-check .cstmCheck .form-check-input~.checkmark {
    background: var(--white);
    border: 1px solid var(--secondry-blue);
}

.tabcontbx_holder .check__row .form-check .cstmCheck .form-check-input:checked~.checkmark {
    background-color: #2a9bdb;
}

.transbtn {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.tabcontbx_holder .footBtn_holder {
    margin: 50px 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.tabcontbx_holder .footBtn_holder .transbtn {
    font-weight: 600;
    padding-right: 30px;
    font-size: 14px;
}

.tabcontbx_holder .footBtn_holder .clrblue {
    color: var(--secondry-blue);
}

.tabcontbx_holder .footBtn_holder .commonBtn {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.tabcontbx_holder .tab-content {
    padding-left: 31px;
}

.tabcontbx_holder .radio_contbx .radio-container {
    display: inline-block;
    margin: 0 24px 0 0;
    font-weight: 500;
    font-size: 14px;
}

.tabcontbx_holder .radio_contbx .radio-container+.radio-container {
    margin-top: 10px;
}

.tabcontbx_holder .radio_contbx {
    padding: 30px 0 20px;
}

.tabcontbx_holder .inputCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 10px;
}

.tabcontbx_holder .inputCol .form-control {
    border-radius: 5px;
    border-color: #eaeaea;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 500;
    font-size: 14px;
}

.tabcontbx_holder .lftCol50 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    border-right: 1px solid #e6e6e6;
    padding: 0 30px 0 0;
}

.tabcontbx_holder .rgtCol50 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px 0 30px;
}

.tabcontbx_holder .lftCol50 .labelbx,
.tabcontbx_holder .rgtCol50 .labelbx {
    padding: 0 0 30px;
}

.tabcontbx_holder .lftCol50 .row_holder,
.tabcontbx_holder .rgtCol50 .row_holder {
    margin: 0 0 30px;
}

.tabcontbx_holder .toogle_row_holder .labelbx {
    min-width: 330px;
}

.tabcontbx_holder .toogle_row_holder {
    margin: 0 0 50px;
}

.tabcontbx_holder .toogle_row_holder .contbx {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 330px);
    flex: 0 0 calc(100% - 330px);
    max-width: calc(100% - 330px);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabcontbx_holder .toogle_row_holder .contbx .input_holder {
    max-width: 255px;
}

.dayoptionparent {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabcontbx_holder .toogle_row_holder .toogle-switch {
    margin: 0 12px;
}

.tabcontbx_holder .toogle_row_holder .toogle-label {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.tabcontbx_holder .nonworking_row {
    padding-top: 15px;
}

.tabcontbx_holder .contbx .day-option {
    display: inline-block;
    max-width: 86px !important;
    margin: 0 12px 0 65px;
}

.tabcontbx_holder .emailDigest__form .inputCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 330px);
    flex: 0 0 calc(100% - 330px);
    max-width: calc(100% - 330px);
}

.tabcontbx_holder .emailDigest__form .inputCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 330px);
    flex: 0 0 calc(100% - 330px);
    max-width: calc(100% - 330px);
}

.tabcontbx_holder .emailDigest__form .inputCol .form-control {
    max-width: 500px;
}

.tabcontbx_holder .table-container {
    border: 1px solid #d5ddea;
    border-radius: 10px;
    overflow: hidden;
    max-width: calc(33.33% + 170px);
    margin: 50px 0 0;
}

.tabcontbx_holder .table {
    width: 100%;
    margin-bottom: 0;
    color: #023e62;
}

.tabcontbx_holder .table thead th {
    background: #d5ddea;
    font-weight: 500;
    font-size: 14px;
}

.tabcontbx_holder .table td,
.tabcontbx_holder .table th {
    padding: 0.9rem;
    vertical-align: top;
    border-top: none;
    text-align: center;
}

.tabcontbx_holder .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

.tabcontbx_holder .table-striped tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.tabcontbx_holder .table .border-right {
    border-right: 1px solid #d5ddea;
}

/* Well Done Starts */

.wellDone {
    letter-spacing: 0;
}

.wellDone .cardMain--Profile .next__title {
    font-weight: 600;
    font-size: 72px;
    line-height: 108px;
}

.wellDone .clrblue {
    color: var(--secondry-blue);
}

.wellDone .head2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    max-width: 517px;
    margin-left: auto;
}

.wellDone .parasmtx {
    font-weight: 500;
    font-size: 16px;
    color: #828282;
    max-width: 394px;
    margin-left: auto;
    padding: 60px 0 ;
}

.wellDone .actionbtn__holder ul {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wellDone .actionbtn__holder li {
    display: inline-block;
    padding: 0 10px 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.wellDone .actionbtn__holder a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ababab;
    border-radius: 10px;
    padding: 20px 20px 20px 40px;
    min-height: 88px;
    color: #565656;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
}

.wellDone .actionbtn__holder a:hover {
    background: #f5f5f5;
}

.wellDone .actionbtn__holder a span {
    display: inline-block;
    padding-left: 40px;
    width: 165px;
    text-align: left;
}

.wellDone .cardMain--Profile {
    text-align: right;
    padding: 40px 100px 65px 0;
}

.wellDone .img-wrapper {
    display: inline-block;
    position: relative;
}

.wellDone .img-wrapper img {
    z-index: 1;
}

.wellDone .img-wrapper .elements {
    position: absolute;
    bottom: -55px;
    left: -200px;
    z-index: -1;
}

.wellDone .LeftBox__img {
    text-align: center;
    padding: 30px 0 0;
}

/* Custom Checkbox Starts */

.cstmCheck {
    display: block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cstmCheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border-radius: 2px;
    border: 1px solid transparent;
}

.cstmCheck input:checked~.checkmark {
    background-color: #2a9bdb;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cstmCheck input:checked~.checkmark:after {
    display: block;
}

.cstmCheck .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Custom Radio Starts */

.radio-container {
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #c4c4c4;
}

.radio-container:hover input~.radio-checkmark {
    background-color: #f5f5f5;
}

.radio-container input:checked~.radio-checkmark {
    background-color: transparent;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.radio-checkmark:after {
    display: block;
}

.radio-container .radio-checkmark:after {
    top: 4px;
    left: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--secondry-blue);
}

/* Toogle Starts */

.toogle-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    border-radius: 50px;
    margin: 0;
}

.toogle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toogle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: 2px solid #2a9bdb;
}

.toogle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 2px;
    background-color: #2a9bdb;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.toogle-slider {
    background-color: #fff;
}

/* input:focus + .toogle-slider {
  box-shadow: 0 0 1px #2196F3;
} */

input:checked+.toogle-slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

/* Rounded sliders */
.toogle-slider.round {
    border-radius: 34px;
}

.toogle-slider.round:before {
    border-radius: 50%;
}

.activatekeyForm .cardMain--loginHeading h2 {
    font-size: 22px;
}

/* container */
.container-fluid {
    max-width: 95%;
}

.activatekeyForm .commonBtn img {
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.formBadge {
    background: #cbd7de;
    padding: 8px 10px;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.formBadge img {
    margin-left: 4px;
}


.formBoxWithBadge__btn {
    display: inline-block;
    padding: 5px 10px;
}

.registerSlider__holder {
    padding: 0 1px;
}