/***Import Lato font***/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #292655;
    --anchor-color: #8E55C9;
    --secondray-color: #8C6CAC;
}

html {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100%;
    color: #343434;
}

a {
    text-decoration: none;
}

a {
    color: #0050BF;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo {
    margin: 0 auto;
    display: block;
}

.form-content {
    box-shadow: 5px 5px 25px #00000033;
    background: var(--UIColor);
    border-radius: 30px;
    padding: 30px;
}

.form-label {
    color: #fff;
    font-weight: 500;
}

.form-control {
    border: 1px solid #dfd0d0;
    transition: none;
    border-radius: 10px;
}

.custombtn {
    border-radius: 12px;
    padding: 9.5px;
}

    .custombtn, .custombtn:hover, .custombtn:focus {
        background-color: var(--ButtonColor);
        border: .0px;
        font-size: 19px;
        font-weight: 500;
    }

.custombtn-blue {
    border-radius: 9px;
    font-size: 19px;
    border: 0px;
}

    .custombtn-blue, .custombtn-blue:hover, .custombtn-blue:focus {
        background-color: var(--UIColor);
        font-weight: 500;
    }

.form-content.bglight {
    background: #fff;
}

    .form-content.bglight > div input:not([disabled]) {
        background: #eaeaea;
        border: 0;
    }

    .form-content.bglight .form-label {
        color: var(--UIColor);
    }

h3.text-center.title-heading {
    color: var(--UIColor);
    padding-bottom: 15px;
}

.custom-address > div > label {
    color: var(--UIColor);
}

.custom-address > div > input {
    background: #eaeaea;
    border: 0;
}

.form-control:focus {
    background: #eaeaea;
}

.dashboardbody {
    background: #EAEAEA;
    border: 1px solid #EAEAEA;
}

.header-inner {
    display: flex;
    padding: 0px 20px;
    align-items: center;
    background-color: var(--UIColor);
    justify-content: space-between;
    border-radius: 0px;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.small-logo img {
    height: 70px;
}

.header1 {
    display: flex;
    align-items: center;
}

.header-inner .dropdown-toggle::after {
    border: none;
}

.nav-1 {
    padding: 0;
    justify-content: space-between;
    width: 100%;
}

    .nav-1 .navbar-nav {
        align-items: center;
        z-index: 2;
    }

        .nav-1 .navbar-nav .nav-item {
            padding: 16px 20px;
        }

            .nav-1 .navbar-nav .nav-item:last-child {
                padding-right: 0;
            }

        .nav-1 .navbar-nav .dropdown-menu {
            right: 0;
            left: inherit;
            width: 200px;
            top: 96%;
            position: absolute;
        }

        .nav-1 .navbar-nav .nav-item:not(:last-child) {
            border-right: 1px solid #E7E8F2;
        }

        .nav-1 .navbar-nav .nav-item .nav-link {
            color: #fff;
        }


/*main content*/
.updatenotification {
    background-color: var(--ButtonColor);
    padding: 10px;
}

    .updatenotification .notify {
        display: flex;
        justify-content: center;
        font-size: 18px;
        color: #fff;
    }

        .updatenotification .notify i {
            margin-right: 15px;
            margin-top: 3px;
        }

.welcomemessage {
    background: #fff;
}

.welcometext {
    display: flex;
    align-items: center;
}

.welcomecontent {
    margin-left: 15px;
}

    .welcomecontent h2 {
        margin: 0;
        color: var(--UIColor);
        font-weight: bold;
    }

    .welcomecontent p {
        margin: 0;
        font-size: 15px;
        font-weight: bold
    }

.cardwidgets {
    margin-top: 40px;
}

.card-item {
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .card-item h3 {
        color: #AAAAAA;
        font-size: 15px;
        margin: 15px 0 0;
    }

.topsection {
    background: #fff;
    padding: 20px 0;
}

.breadcrumb a {
    color: var(--UIColor);
    font-size: 36px;
}

.avatar-upload {
    position: relative;
    max-width: 120px;
    height: 120px;
    margin: 0 auto;
}

    .avatar-upload .avatar-edit {
        position: absolute;
        left: 0;
        z-index: 1;
        top: 0px;
    }

        .avatar-upload .avatar-edit input {
            display: none;
        }

            .avatar-upload .avatar-edit input + label {
                position: absolute;
                width: 120px;
                height: 120px;
                left: 0;
                top: 0;
                margin-bottom: 0;
                border-radius: 100%;
                background: transparent;
                cursor: pointer;
                font-weight: normal;
                transition: all 0.2s ease-in-out;
            }

    .avatar-upload .avatar-preview {
        width: 120px;
        height: 120px;
        position: relative;
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0px 3px 6px #00000029;
        overflow: hidden;
    }

        .avatar-upload .avatar-preview > div {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

.formheading h3 {
    font-size: 32px;
    color: var(--UIColor);
    margin: 0;
    text-align: center;
    font-weight: bold;
}

.formheading p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.formheading .progress {
    height: 17px;
    border-radius: 20px;
}

    .formheading .progress .progress-bar {
        background-color: var(--UIColor);
    }

.formsection {
    margin-top: 50px;
}

    .formsection .form-content {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

        .formsection .form-content.bglight .form-control:not([disabled]) {
            background: #fff;
            border: 0;
            height: 40px;
        }

.customradio1 {
    position: relative;
    margin-bottom: 16px;
}

    .customradio1 input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

        .customradio1 input + label {
            display: inline-block;
            width: 100%;
            padding: 14px;
            border-radius: 16px 16px;
            height: 70px;
            display: flex;
            align-items: center;
            background: #fff;
            transition: all 0.3s ease;
        }

    .customradio1:not([data-ischecked]) input:checked + label {
        background: var(--ButtonColor);
        color: #fff;
    }

.icondependents {
    text-align: center;
    margin-top: 30px;
}

/*Custom css for user Dashboard*/

.dashboardbody {
    min-height: 122vh;
}


.bottom-navigation-column {
    height: 35px;
}

/*@media (min-width: 320px) {
    .bottom-navigation {
        left: 20%;
    }
}*/
@media (max-width: 375px) {
    .form-content.bglight .form-label {
        color: var(--UIColor);
        font-size: 15px;
    }
}

/*@media (min-width: 576px) {
    .bottom-navigation {
        left: 35%;
    }
}

@media (min-width: 768px) {
    .bottom-navigation {
        left: 36.6%;
    }
}

@media (min-width: 992px) {
    .bottom-navigation {
        left: 45%;
    }
}

@media (min-width: 1024px) {
    .bottom-navigation {
        left: 42%;
    }
}

@media (min-width: 1440px) {
    .bottom-navigation {
        left: 45%;
    }
}
*/

.theme-color {
    color: var(--UIColor);
}

.theme-bgcolor {
    background-color: var(--UIColor);
}
/*Custom css for user Dashboard*/


/*02/09/2022 css start here */

.customradio1 img {
    position: absolute;
    top: 6px;
    right: 9px;
    width: 64px;
}

.set-icon .customradio1 label {
    width: 80%;
    background: none;
}

.set-icon .customradio1 {
    background: #fff;
    border-radius: 14px;
}

    .set-icon .customradio1[data-ischecked="True"] {
        border: 1.5px solid var(--UIColor);
    }

.form-flex {
    display: flex;
    align-items: center;
}

    .form-flex .form-lab, .form-flex code, .form-flex .form-amt {
        margin: 0 10px;
    }

.form-lab h3 {
    margin: 0;
    font-size: 15px;
    color: var(--UIColor);
}

.form-code {
    width: 30%;
}

    .form-code input, .form-amt input {
        height: 40px;
    }

.form-amt {
    width: 70%;
    margin-right: 0 !important;
}

.formsection .form-content.bglight input::placeholder {
    color: #aaa;
}

.btn-group.yes-btn {
    width: 100%;
}

    .btn-group.yes-btn button {
        width: 50%;
        display: block;
        background: #fff;
    }

        .btn-group.yes-btn button.btn.yes {
            border-radius: 10px 0 0 10px;
        }

        .btn-group.yes-btn button.btn.no {
            border-radius: 0px 10px 10px 0px;
        }

.done-btn button {
    position: relative;
}

.done-btn i {
    background: var(--UIColor);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 0 10px 10px 0;
}
/*02/09/2022 css end here */
/*09-09-2022*/
.Buttonyesaction {
    display: flex;
    width: 100%;
}

    .Buttonyesaction .custom-design label {
        width: 100%;
        text-align: center;
        background: #fff;
        padding: 10px;
        cursor: pointer;
    }

    .Buttonyesaction .custom-design input {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 999;
        left: 0;
        top: 0;
        cursor: pointer;
    }

.custom-design {
    width: 100%;
}

    .custom-design input[type="radio"]:checked + label {
        border: 2px solid var(--UIColor);
    }

.Buttonyesaction .custom-design label[for="yesbutton"] {
    border-radius: 10px 0px 0px 10px;
    border-right: 1px solid #dedede;
}

.Buttonyesaction .custom-design label[for="nobutton"] {
    border-radius: 0px 10px 10px 0px;
}

.custombtn2 {
    min-width: 44px;
    background: transparent !important;
    border: none;
    outline: none !important;
    box-shadow: none !important;
}

.custombtn1 {
    border-radius: 10px 0px 0px 10px !Important;
}

.custombtn-blue {
    max-width: 70%;
    margin: 0 auto 20px;
    display: block;
    border-radius: 100px;
    background: var(--UIColor);
    border: 1px solid var(--UIColor);
    padding: 5px;
}

.custombtn2-blue {
    margin: 0 auto 20px;
    display: block;
    background: var(--UIColor);
    border: 1px solid var(--UIColor);
    padding: 10px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 19px;
}

custombtn2-blue, .custombtn-blue2:hover, .custombtn-blue2:focus {
    background-color: var(--UIColor);
    border: .0px;
    font-size: 19px;
    font-weight: 500;
}

.btngis {
    background: var(--ButtonColor);
    border: 0;
    /*
    background: #F69523;
    border: #F69523;*/
}

/*23-09-2022*/
.documentcontent {
    padding-top: 20px;
    height: calc(100vh - 184px);
    overflow: hidden;
    position: relative;
}

.docuementdetails {
    width: calc(100% - 30px);
    margin: 0 15px;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    height: calc(100vh - 254px);
    position: relative;
}

.add-doc {
    position: absolute;
    bottom: 0;
    right: 0;
}

    .add-doc a {
        cursor: pointer;
        display: inline-block;
    }

.uploadpopup {
    position: absolute;
    z-index: 1050;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px -3px 6px #00000029;
    background: #fff;
    padding-top: 10px;
    transform: translateY(110%);
    transition: all .3s ease;
    display: none;
}

    .uploadpopup.openuploadpopup {
        transform: translateY(0);
        display: block;
    }

.uploaddoc-item {
    height: 150px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
}

    .uploaddoc-item img {
        width: 80px;
    }

.border-rightcstm {
    border-right: 1px solid #ccc;
}

.listing-table {
    padding: 10px;
}

.searchlist {
    position: relative;
}

    .searchlist input {
        width: 100%;
        text-align: center;
        border-radius: 30px;
        border: 1px solid #ccc;
        outline: none !important;
        background-color: #EAEAEA;
        padding: 10px 15px;
    }

    .searchlist .icnsearch {
        position: absolute;
        left: 15px;
        top: 15px;
    }

.tabledetails {
    margin: 30px 15px 20px;
    max-height: calc(100vh - 440px);
    overflow: auto;
}

    .tabledetails table thead th {
        padding-bottom: 10px;
    }

    .tabledetails table tr td {
        padding: 5px;
    }

    .tabledetails table {
        width: 100%;
    }

        .tabledetails table tr th:last-child, .tabledetails table tr td:last-child {
            text-align: center;
        }

.nametitle {
    width: calc(100% - 25px);
    line-height: 16px;
}

.font20 {
    font-size: 20px;
}

.formheadingcstm {
    width: calc(100% - 40.5px);
}

.form-content.bglight > div select:not(.do-not-remove-border) {
    background: #eaeaea;
    border: 0;
}

.form-content.bglight > div .select2-container--default .select2-selection--single {
    border-radius: 10px;
    height: 36px;
    border: none;
    background: #eaeaea;
}

    .form-content.bglight > div .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 36px;
    }

    .form-content.bglight > div .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 36px;
    }

.iconposition {
    position: relative
}

    .iconposition .inputicon {
        position: absolute;
        right: 10px;
        top: 10px;
    }



/*===========================Added at 12-Oct-2022===============================*/


.toast-container {
    z-index: 1050;
}


.dollarr input {
    position: relative;
}

.dollarr input {
    padding-left: 15px;
}

.dollarr:before {
    position: absolute;
    content: "$";
    margin: 41px 0px 0px 5px;
    z-index: 1;
}

.bs-popover-start {
    border-radius: 2rem;
    /*background: #aaa !important;*/
    color: #ffffff;
    border: 1px solid #aaa;
}

    .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
        right: calc(-0.5rem - 1px);
        width: 0.5rem;
        height: 1rem;
        display: none;
    }

.popover-body {
    padding: 1rem 1rem;
    color: #ffffff;
}

.popover {
    background: #aaa !important;
}

.form-flex {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mb-3.custm-r8 .form-amt.dollarr {
    position: relative;
}

    .mb-3.custm-r8 .form-amt.dollarr:before {
        position: absolute;
        content: "$";
        margin: 9px 0px 0px 5px;
        z-index: 1;
    }


@media(min-width:320px) and (max-width:820px) {
    .form-flex {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .mb-3.custm-r8 .form-amt.dollarr {
        position: relative;
    }

        .mb-3.custm-r8 .form-amt.dollarr:before {
            position: absolute;
            content: "$";
            margin: 9px 0px 0px 5px;
            z-index: 1;
        }
}

@media (max-width:320px) {
    .form-flex {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .mb-3.custm-r8 .form-amt.dollarr {
        position: relative;
    }

        .mb-3.custm-r8 .form-amt.dollarr:before {
            position: absolute;
            content: "$";
            margin: 9px 0px 0px 5px;
            z-index: 1;
        }

    .form-content.bglight .form-label {
        color: var(--UIColor);
        font-size: 13px;
    }
}


.form-heading-color {
    color: var(--UIColor);
}


.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

.br-left {
    border-radius: 10px 0 0 10px;
}

.br-right {
    border-radius: 0 10px 10px 0;
}

.almostdonewcard {
    padding: 20px 16px;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 14px;
}

    .almostdonewcard p {
        margin-bottom: 0;
    }

.formheading h3.submitclr {
    color: #AAAAAA;
}

.nav-1 .navbar-nav .dropdown-menucstm {
    right: 22px;
    left: inherit;
    width: 22rem;
    top: 100%;
    position: absolute;
    text-align: center;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    border: none;
}

    .nav-1 .navbar-nav .dropdown-menucstm a {
        display: block;
        margin-bottom: 13px;
        color: var(--UIColor);
        font-size: 20px;
        font-weight: 500;
    }

    .nav-1 .navbar-nav .dropdown-menucstm > a.logoutitem {
        width: 80%;
        margin: 20px auto 20px;
        padding: 9px 10px;
        background: var(--ButtonColor);
        border-radius: 15px;
        color: #fff;
        font-size: 25px;
    }

.dollarrcstm {
    position: relative;
}

    .dollarrcstm:before {
        position: absolute;
        content: "$";
        margin: 8px 0px 0px 3px;
        z-index: 1;
    }

.bottom-navigation {
    bottom: 6px;
    position: fixed;
    width: 100%;
    z-index: 99999;
}

    .bottom-navigation button {
        height: 35px;
        width: 82px;
        background: var(--UIColor);
    }

#bottomNavigation .fa, #bottomNavigation .fas {
    font-weight: 900;
    color: white;
    font-size: 20px;
}


.border-transparent {
    border-color: transparent;
}

.company-logo {
    max-height: 147px;
   /* max-width: 171px;*/
}

@media (min-width: 360px) and (max-width: 375px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        width: 20.2rem;
        right: 0px;
    }
}

@media (min-width: 412px) and (max-width: 440px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        width: 23rem;
        right: 0px;
    }
}

@media (min-width: 390px) and (max-width: 393px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        width: 21.5rem;
        right: 0px;
    }
}

@media only screen and (max-width: 280px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        width: 15rem;
        right: 0px;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        width: 17.5rem;
        right: 0px;
    }
}

ul#ui-id-1 {
    max-height: 50vh;
    overflow: auto;
}

.multi-collapse a {
    list-style-type: none;
    width: 100%;
    color: black !important;
    text-align: center;
    font-size: 20px;
}



img.owned-busines {
    top: 20px;
    width: 56px;
    right: 10px;
}

img.icon-lets-talk-income {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 49px;
}

.frgtPasswd {
    text-decoration: underline;
    color: white;
    text-align: center;
}

    .frgtPasswd:hover {
        text-decoration: underline;
        color: black;
        text-align: center;
    }

#resetspinnerAccount {
    margin-bottom: -3px;
    margin-left: 14px;
    height: 20px;
    width: 20px;
}

.btnofVwcontnt {
    border-radius: 25px;
    padding: 9.5px;
    height: 68px;
    font-size: 24px;
    font-weight: bold;
}

.quotecontext {
    margin-left: 13px;
    font-size: 19px;
}

.veiwQuoteAmt {
    font-size: 67px;
    font-weight: 700;
    color: #22A218;
}

.submitQuotebtn {
    height: 68px;
    border-radius: 25px;
}

.quote-success {
    color: #22A218;
}

h1.veiwQuoteOwseAmt {
    font-size: 67px;
    font-weight: 700;
    color: #f50707;
}

.bottom-navigation button:first-child, .bottom-navigation button:last-child {
    width: calc(50% - 45px);
}

.bottom-navigation button:first-child {
    border-radius: 12px 0 0 12px !important;
}

.bottom-navigation button:last-child {
    border-radius: 0 12px 12px 0 !important;
}

.form-content.bglight .form-label {
    font-size: 1.25rem;
}

.bgcstm {
    background-color: #eaeaea;
}

.contentfooter {
    display: flex;
    justify-content: space-between;
}

.bottom-navigation .contentfooter button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.editUploadW2Form h3 {
    font-size: 32px;
    color: var(--UIColor);
    margin: 0;
    text-align: right;
    font-weight: bold;
    margin-right: 98px;
}

/*===========================signup page css==============================*/

.signupForm {
    background-color: #00b1f5;
    height: 100vh;
    padding-bottom: 20px;
}

.top-left-logo img {
    max-width: 100%;
    height: auto;
}

/*
    .leftContent{
    padding: 0 60px;
}
*/
.leftContent p {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 60px;
    margin-bottom: 40px;
}

.leftContent h2 {
    font-size: 78px;
    color: #fff;
    line-height: 80px;
    font-weight: 700;
}

.rightForm .whiteBox {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
}

    .rightForm .whiteBox h2 {
        font-size: 60px;
        text-align: center;
        color: #00b1f5;
    }

.whiteBox label {
    color: #505050;
    font-size: 18px;
    font-weight: 600;
}

.whiteBox input {
    background-color: #eaeaea;
    height: 50px;
}

.whiteBox .subBtn {
    height: 50px;
    color: #fff;
    background-color: #aaaaaa;
    border-color: #aaaaaa;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
}

    .whiteBox .subBtn:hover {
        background: #000;
        border-color: #000;
    }

.Vh100 {
    height: 100vh;
}
/*verify-email-css*/
* {
    box-sizing: border-box;
    /* word-spacing: 8px; */
    font-family: 'Poppins', sans-serif;
}

.notaValid {
    border: 2px solid red;
}

.bg-main {
    background-color: #00B1F5;
}

.verification-text-box {
    margin: 0 auto;
    width: 600px;
    padding-top: 10rem;
    text-align: center;
}

    .verification-text-box h1 {
        color: #00B1F5;
        font-size: 5rem;
        font-weight: 600;
    }

    .verification-text-box p {
        font-size: 1rem;
        margin-top: 1rem;
        font-weight: 600;
    }

input.my-form-control {
    width: 103px;
    height: 77px;
    padding: 40px;
    background-color: #cecece;
    text-align: center;
    color: black;
    font-size: 27px;
    display:inline-block;
}

.btn-toverify_busines {
    width: 187px;
    height: 51px;
    font-size: 28px;
    padding: 4px;
    background-color: #00b1f5;
    margin-top: 50px;
    border-radius: 10px;
}

.form-group {
    /*display: flex !important;*/
    justify-content: space-between !important;
    align-items: center !important;
}

.form-text-box {
    margin: 0 auto;
    padding-top: 10rem;
    text-align: center;
    color: #fff;
}

.gap {
    margin-bottom: 5rem
}

.table-box {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0 auto;
    width: 50%
}

.bottom {
    border-bottom: 1px solid #fff;
}

.cstm-form {
    /*margin: 0 auto;*/
    padding: 8rem 0;
    flex-direction: column;
    text-align: left;
    margin-top: -56px;
}
    .cstm-form.padding_mng_cls {
        padding: 4rem 0;
        margin-top: 100px !important;
    }
.cstm-control {
    border-radius: 12px;
}

#ZipCode{
    padding-left : 30px;
}

img[alt="form-icon"] {
    position: relative;
    bottom: 32px;
    left: 10px;
    width: 18px;
}

/*Payment Details*/
.cstm-form label {
    color: #505050;
    font-size: 15px;
}

.payment-btn {
    background-color: #00B1F5;
    font-weight: 600;
    border-radius: 20px;
}

.paymentRow {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    height: 100vh;
}


/*Company Information*/
.companyInfo {
    height: 100vh;
}

.company-section h1 {
    text-align: center;
    color: #00aeef;
    font-weight: 700;
    font-size: 56px;
}

.companyInfo .form-label {
    color: #505050;
    font-weight: 600;
    font-size: 24px;
    line-height: 2;
}

.companyInfo input.form-control {
    height: 58px;
    background-color: #eaeaea;
}

select#Refernce {
    height: 58px;
    background-color: #eaeaea;
}

.btn-company-info {
    width: 206px;
    height: 65px;
    font-size: 31px;
    padding: 8px 0px;
    background-color: #00b1f5;
    border-radius: 10px;
    margin-top: 19px;
}
/*=======================================Customize_screen=====================================*/
.avatar-upload .avatar-preview.customize-dsb > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.upload-box .avatar-upload .avatar-preview {
    width: 101px;
    height: 87px;
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 3px 6px #00000029;
    overflow: hidden;
    border: 2px dashed #00b1f5;
}

.form-label-text {
    color: #5e5858;
    font-weight: 600;
}

.custom-text-box {
    margin: 0 auto;
    width: 440px;
    padding-top: 10rem;
}

    .custom-text-box h1 {
        color: #00B1F5;
        font-size: 3rem;
        font-weight: 600;
        text-align: center;
    }

.upload-box {
    width: 105px;
    height: 95px;
    position: relative;
    display: flex;
    border-radius: 10px;
}

img[alt="plus"] {
    width: 30px;
    height: 30px;
    object-fit: contain;
    position: relative;
    top: 33%;
    left: 33%;
}

input[type="file"] {
    width: 100%;
    z-index: 99999;
    opacity: 1%;
    height: 100%;
}

.color {
    padding-left: 57%;
}

.color-box {
    background-color: #00B1F5;
    color: #fff;
    position: absolute;
    bottom: 6px;
    height: 26px;
    width: 52%;
    font-size: 12px;
    padding: 5px;
    margin-left: 4px;
    border-radius: 6px;
}

.relative {
    position: relative;
}

.start-btn {
    font-size: 1rem;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.domain-w {
    width: 75%;
}

@media screen and (max-width:991px) {
    /*signup-mobile-tab*/
    .signupForm {
        height: 100%;
    }

    .leftContent p {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 30px;
    }

    .leftContent h2 {
        font-size: 58px;
        line-height: 68px;
    }
}

@media screen and (max-width:480px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        max-width: 300px;
        right: 0;
    }

    .Vh100 {
        height: 100%;
    }

    /*signup-mobile-tab*/
    .leftContent p {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .leftContent h2 {
        font-size: 38px;
        line-height: 46px;
    }

    .rightForm .whiteBox {
        padding: 15px;
    }

        .rightForm .whiteBox h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
}

@media screen and (max-width:340px) {
    .nav-1 .navbar-nav .dropdown-menucstm {
        max-width: 280px;
        right: 0;
    }
}

#domainName {
    font-size: 30px;
    font-weight: 600;
}

#admin-logo-img {
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: lavender;
}
/*15 May*/
.payment_details_forms_text h1 {
    font-weight: 700;
    font-size: 42px;
}
.payment_details_forms_text p.gap {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 22px;
}
.payment_details_forms_text .payment_options_month_year {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.payment_details_forms_text .payment_options_month_year label{
    font-size:18px;
}
.payment_details_forms_text .payment_options_month_year label input {
    width: 18px;
    height: 16px;
}

.payment_details_forms_text .payment_options_month_year label span{
    font-weight:500;
}

.payment_details_forms_text .payment_options_month_year label:first-child{
    margin-right:10px;
}
.payment_details_forms_text .payment_options_month_year label:last-child {
    margin-left: 10px;
}
.promo_code_wrp {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 30px;
    padding-top: 20px;
}
.promo_code_wrp input {
    margin-right: 15px;
    line-height: 35px;
    width: 70%;
    padding: 5px 10px;
    text-align: center;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 500;
}
.promo_code_wrp button {
    width: 40%;
    background: transparent;
    color: white;
    border: 2px solid white;
    display: inline-block;
    padding: 9px 10px;
    border-radius: 6px;
}
.promo_code_wrp button:hover{
    background-color:white;
    color:black;
}
.payment_details_forms_text .table-box p {
    font-size: 20px;
    font-weight: 500;
}
.btn_apple_payment button {
    background: transparent;
    border: 2px solid black;
    padding: 8px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 6px;
}
.btn_apple_payment button:hover{
    background-color:black;
    color:white;
}
.btn_apple_payment button i{
    font-size:32px;
}
.btn_apple_payment button span{
    font-size: 34px;
}
p.other_payment_detail_below {
    width: 65%;
    margin: 40px auto 40px;
    text-align: center;
    position: relative;
    color: #00000070;
}

p.other_payment_detail_below:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40%;
    width: 24%;
    height: 1px;
    background: #00000070;
}

p.other_payment_detail_below:before {
    content: '';
    position: absolute;
    right: 0;
    top: 40%;
    width: 24%;
    height: 1px;
    background: #00000070;
}
i.form_icon {
    position: relative;
    bottom: 30px;
    left: 10px;
    width: 18px;
    color: #0000005e;
    font-size: 18px;
}

input[type="file"][name="row.Answer"] {
    width: 100%;
    z-index: 99999;
    height: 100%;
    opacity: 117%;  
}

@media only screen and (max-width:375px) {
        .swal-overlay--show-modal .swal-modal {
        height: 50vh;
        width: 250px;
    }

    .swal-title:not(:last-child) {
        font-size: 18px;
    }

    .swal-text {
        font-size: 14px !important;
    }
}

.payAll {
    margin-left:160px;
}
