*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    outline: 0;
}

body {
    /* font-family: 'Martel Sans', sans-serif; */
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    color: #333232;
}

:root {
    --main-color: #4d84ff;
    --second-color: #00ad69;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #333232;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-bottom: 0;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* <========== header start ==========>*/
header {
    width: 100%;
    background-color: #f5f5f5;
}

.header-logo {
    width: 150px;
    height: auto;
    overflow: hidden;
}

.header-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header-main-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    text-transform: capitalize;
    color: #333232;
}

.header-main-title .span1 {
    font-weight: 700;
    color: var(--main-color);
}

.header-main-title .span2 {
    font-weight: 700;
    color: var(--second-color);
}

header .more-info {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #989898;
    border: 2px solid #989898;
    border-radius: 50%;
    padding: 2px 7px;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

header .more-info:hover {
    color: #989898;
    border: 2px solid #989898;
    opacity: 0.75;
}

header .open-search-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    border: 1px solid #000;
    display: grid;
    place-items: center;
    cursor: pointer;
}

header .open-search-icon-box svg {
    width: 20px;
    height: 20px;
}

header .open-search-icon-box svg path {
    stroke: var(--main-color);

}

.open_search {
    margin-left: 5px;
}

.header_search {
    position: absolute;
    top: 120%;
    right: 0;
    display: none;
    z-index: 3;
}

.header_search_sub {
    float: left;
    padding: 15px;
    background-color: #fff;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075), 0 6px 6px rgba(0, 0, 0, 0.1);
}


.header_search_sub input {
    padding: 5px 10px;
    border-radius: 5px;
    float: left;
    width: calc(100% - 50px);
    border: 0;
    height: 100%;
    border: 1px solid #e2e2e2;
    font-family: 'Martel Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;

}

.header_search_sub input:focus {
    outline: 0;
    border-color: var(--second-color);
}

.header_search_sub .go_btn {
    font-family: 'Martel Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    float: right;
    background: var(--main-color);
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 2.7;
    color: #fff;
    cursor: pointer;
}

.header_search_sub .go_btn:hover {
    background-color: rgba(77, 132, 255, 0.8);
}

.notification-icon-box {
    width: 45px;
    height: 45px;
    background-color: #000;
    border-radius: 15px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.notification-icon-box.active {
    background-color: var(--second-color);
}

.notification-icon-box::before {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.notification-icon-box.active::before {
    background-color: #000;
    color: #fff;
}

.notification-icon-box svg {
    width: 25px;
    height: 25px;
}

.notification-box {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    width: 430px;
    height: 420px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    z-index: 3;
}


.notification-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.notification-box::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.notification-box::-webkit-scrollbar-thumb {
    background-color: #5d5d5d;
}

.notification-box ul li:not(:last-child) {
    border-bottom: 1px solid #e2e2e2;
}

.notification-box ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-bell {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
}

.notification-bell path {
    fill: #b9b9b9;
}

.notification-active .notification-bell path,
.notification-prepering .notification-bell path {
    fill: var(--second-color);
}


.notification-desc span {
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #333232;
}

.notification-desc p {
    font-size: 14px;
    line-height: 1;
    color: #333232;
}

.notification-active .notification-desc p,
.notification-prepering .notification-desc p {
    font-weight: 700;
}

.user-dropdown .btn {
    min-width: 140px;
    color: #000;
    border: 0;
    outline: 0;
}

.user-dropdown .btn::after {
    content: unset;
}

.user-dropdown .btn::before {
    content: url('../img/icons/down.svg');
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);

}

.user-dropdown .btn.show,
.account-dropdown .btn.show {
    border: 0;
}

.account-dropdown .btn {
    outline: 0;
    border: 0;
}

.account-dropdown .dropdown-menu {
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 9999;
}

.account-dropdown .dropdown-menu a {
    font-size: 14px;
}

.user-dropdown .btn span {
    font-size: 14px;
    font-weight: 700;
}

.user-dropdown .btn p {
    font-size: 14px;
}

.account-dropdown .dropdown-toggle::after {
    display: none;
}

header .user-img {
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 15px;
}

header .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* <========== header end ==========>*/


/* <========== main-wrapper start ==========>*/
.main-wrapper {
    background-color: #f5f5f5;
    min-height: calc(100vh - 100px);
}

.main-wrapper-left {
    width: 82%;
    border-radius: 10px;
}

.app-list-box {
    width: 400px;
    /* height: 100%; */
    background-color: #F6F9FC;
    border-radius: 30px;
    text-align: start;
    border: 0;
    outline: 0;
    padding: 30px 50px;
    transition: all .3s cubic-bezier(0,0,.5,1)
}

.app-list-box:hover{
    box-shadow: 2px 4px 16px #00000029;
    transform: scale3d(1.01,1.01,1.01);
}

.app-list-box .mob {
    border: 1px solid var(--second-color);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-flex;
    gap: 10px;
    font-weight: 600;
    color: var(--second-color);
    width: fit-content;

}

.app-list-box .mob svg {
    width: 20px;
    height: 20px;
}

.app-list-box .mob svg path {
    fill: var(--second-color);
}

.app-list-box .app-no {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}

.app-list-box .app-digit {
    font-family: "Martel Sans", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #333232;
    line-height: 1;
    word-wrap: break-word;
    max-width: 100%;
}

/* main-wrapper-right start */
.main-wrapper-right {
    width: 18%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 35px;
    overflow: hidden;
    position: sticky;
    top: 10px;
}

.main-wrapper-right .logout {
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    transition: all 300ms ease;
    display: none;
}

.main-wrapper-right .logout:hover {
    text-decoration: none;
}

/*
#regForm {
    background-color: #ffffff;
    margin: 100px auto;
    padding: 40px;
    width: 70%;
    min-width: 300px;
} */

/* Style the input fields */


input.invalid {
    background-color: #ffdddd;
}

.step-tab {
    display: none;
}

.step-block li {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-block li:last-child {
    margin-bottom: 20px;
}

.step-block li:not(:last-child) .step::after,
.step-block .home-step::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 55px;
    background-image: linear-gradient(#fff 40%, #4d84ff 0%);
    background-position: right;
    background-size: 2px 8px;
    background-repeat: repeat-y;
}

.step-block li a {
    gap: 20px;
}

.step-block .step,
.step-block .home-step {
    min-width: 25px;
    min-height: 25px;
    margin: 0 2px;
    background-color: var(--main-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='3' stroke-dasharray='10%25%2c 20%25' stroke-dashoffset='56' stroke-linecap='butt'/%3e%3c/svg%3e");
    display: grid;
    place-items: center;
    position: relative;
}


/* Mark the active step: */
.step.active,
.home-step.active {
    background-color: #ffff;
    border: 3px solid var(--second-color);
}

/* Mark the steps that are finished and valid: */
.step.finish,
.home-step.finish {
    background-color: var(--second-color);
    border: 1px solid transparent;
    background-image: unset;
}

.step svg,
.step-block .home-step svg {
    width: 75%;
    height: 75%;
    opacity: 0;
    fill: #fff;
}

.step.finish svg,
.step-block .home-step svg {
    opacity: 1;
}

.step-block li .step-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.step-block li span.active+.step-text,
.step-block li span.finish+.step-text,
.step-block .home-step+.step-text {
    font-weight: 700;
}

.btn-add {
    width: 50px;
    height: 50px;
    background-color: var(--second-color);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.20), 0 15px 9px rgba(0, 0, 0, 0.12);
}

.btn-add.btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add:focus {
    outline: none;
    border: none;
}

.btn-add svg path {
    fill: #fff;
}

.main-wrapper-left .nextBtn {
    border: 0;
    background-color: var(--second-color);
    padding: 10px 30px;
    border-radius: 50px;
    outline: none;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    transition: all 300ms ease;
}

.main-wrapper-left .nextBtn:hover,
.main-wrapper-left .prevBtn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.main-wrapper-left .prevBtn {
    background-color: transparent;
    color: #333232;
    border: 1px solid #333232;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    transition: all 300ms ease;
}



.main-wrapper-right .nextBtn {
    width: 68%;
    text-align: center;
    border: 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 50px;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--second-color);
    transition: all 300ms ease;
}

.main-wrapper-right .nextBtn svg {
    margin-left: 15px;
}

.main-wrapper-right .nextBtn:hover,
.main-wrapper-right .prevBtn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.main-wrapper-right .prevBtn {
    width: 27%;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 300ms ease;
}

.main-wrapper-right .add-app,
.main-wrapper-left .add-app {
    width: 100%;
    height: auto;
    background-color: var(--second-color);
    display: grid;
    place-items: center;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
    box-shadow: 0 -19px 38px rgba(0, 0, 0, 0.15), 0 -15px 12px rgba(0, 0, 0, 0.05);
}

.main-wrapper-left .add-app {
    border-radius: 35px;
}

.main-wrapper-right .add-app .btn,
.main-wrapper-left .add-app .btn {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 50px;
    color: var(--second-color);
    font-weight: 500;
    line-height: 1.5;
}

.main-wrapper-right .add-app .btn svg,
.main-wrapper-left .add-app .btn svg {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.stepBtn {
    padding-top: 35px;
}

.search-box {
    width: 300px;
    height: 45px;
    background-color: white;
    border: 1px solid #989898;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.search-box svg {
    width: 25px;
    height: 25px;
}

.search-box svg path {
    fill: #989898;
}

.search-box>input {
    flex: 1;
    width: 90%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333232;
    padding-left: 10px;
}

.search-box>input::placeholder {
    color: #95979D;
    font-size: 15px;
    letter-spacing: 1.3;
}

.title-box {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.title-box .title {
    font-size: 25px;
    color: #00ad69;
    font-weight: 700;
}

.form-control:focus {
    box-shadow: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.app-form-top .app-no {
    font-size: 16px;
    color: #212529;
}

.app-form-top .app-no span {
    font-weight: 700;
    color: #333232;
    display: inline-block;
}

.app-form-top .app-mob-num {
    font-weight: 600;
    padding: 8px 15px;
    color: var(--second-color);
    border: 1px solid var(--second-color);
    border-radius: 50px;
}

.app-form-top .app-mob-num svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.form-box {
    width: 100%;
    height: 100%;
    background-color: #F6F9FC;
    border-radius: 35px;
    padding: 25px;
}

.form-body {
    margin-top: 30px;
}

.form-body .form-label {
    color: #6F7070;
    margin-bottom: 0;
    text-transform: capitalize;
}

.form-body .form-control,
.form-body .form-body .input-group-text {
    width: 100%;
    max-width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid #989898;
    color: #333232;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    /* padding-right: 30px; */
}

.form-body .input-group-text,
.form-body .input-group {
    background-color: transparent;
}

.form-body .input-group-text {
    border-color: #989898;
    padding-right: 0;
    border-right: 0;
    font-size: 16px;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.input-group .form-control:focus{
    box-shadow: unset;
}
.input-group:focus, .input-group:hover {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    border-radius: 10px;
}

.form-box2 .input-group .form-control {
    border-left: 0;
    padding-left: 0;
}

.form-box3 .input-group .form-control {
    border-left: 0;
}

.form-body .form-select {
    min-width: 55%;
    width: auto;
    max-width: fit-content;
    height: 50px;
    font-weight: 700;
    background-color: transparent;
    color: var(--main-color);
    cursor: pointer;
    border-color: #989898;
}

.form-select:disabled {
    background-color: #e9ecef;
    color: #4d84ff73;
}

.form-body .form-control:focus,
.form-body .form-control:focus~.input-group-text {
    border-color: #989898;
}

.form-body .form-select:focus {
    box-shadow: none;
    border-color: var(--second-color);
}

.form-box3 .input-group-text {
    padding-left: 18px;
}

.form-box3 .input-group-text,
.form-box3 .form-control {
    font-size: 20px;
}

.form-box4 .input-group-text,
.form-box4 .form-control {
    font-size: 20px;
    font-weight: 400;
    color: var(--second-color);
}

.form-box4 .form-control {
    border-left: 0;
}

.form-box4 .form-select {
    font-size: 16px;
    font-weight: 400;
    background-color: transparent;
    color: #333232;
    border-color: #989898;
}

.repeater div[data-repeater-item]:not(:first-child) .btn-addowner {
    display: none;
}

.form-box4 .form-select:focus {
    border-color: var(--second-color);
}

.form-box5 .input-group-text {
    padding-right: 15px;
    border-right: 1px solid #989898;
    border-left: 0;
    color: #6F7070;
    font-weight: 600;
}

.form-box5 .form-control {
    min-width: 80%;
}

.form-box .input-group {
    width: 52%;
    flex-wrap: nowrap;
}

.bank-input-width {
    width: 50%
}

.form-box5 .input-group {
    width: 100%;
}

.form-box5 .input-group input {
    border-right: 0;
}

.form-box5 .input-group .input-group-text {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.datepicker table thead tr:nth-child(3) th {
    font-size: 14px;
    font-weight: 400;
}

.datepicker table thead tr:nth-child(2) th {
    font-size: 14px;
    font-weight: 500;
}

.datepicker-days table thead tr:nth-child(3) th {
    height: 40px;
}

.datepicker table thead tr th {
    width: 30px;
    height: 30px;
}

.datepicker table tbody tr td {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.datepicker table {
    border-spacing: 5px 0;
    border-collapse: inherit;
}

.datepicker table tr td.today {
    background: var(--second-color) !important;
    color: #fff !important;
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
    background-color: var(--main-color) !important;
}

/* .business_started_date {
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
} */




.uploaded-file-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.uploaded-file-name .icon {
    width: 25px;
    height: 25px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background-color: var(--second-color);
}

.uploaded-file-name .icon svg path {
    stroke: #fff;
}

.uploaded-file-name h4 {
    color: #333232;
}

.upload-img-block {
    height: auto;
}

.upload-img-block h4 {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    color: #333232;
}

.upload-img-block-right {
    flex-direction: row-reverse;
}

/* .uploadBtn
{
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
} */


.fileinput__input {
    /* display: none; */
    visibility: hidden;
    position: absolute;

}


.fileinput__button {
    font-weight: 600;
    display: inline-flex;
    gap: 10px;
    border: 1px solid var(--main-color);
    padding: 12px 15px;
    border: 2px solid;
    color: #fff;
    background-color: var(--main-color);
    text-align: center;
    float: left;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s ease-out;
}

.fileinput__button svg {
    width: 18px;
    height: 18px;
    padding-top: 2px;
}

.fileinput__status-text {
    /* color: #6F7070; */
    padding: 15px;
    border: none;
    width: auto;
    white-space: nowrap;
    float: left;
    overflow: hidden;
    font-weight: 400;
}
.fileinput__status-text.fileinput-text{
    padding: 0px !important;
    white-space: unset !important;
    max-width: 260px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-right: 10px;
    margin-top: 15px;
}

.upload-img-block-left,
.upload-img-block-right {
    width: 50%;
}

.upload-img-main-title {
    font-size: 22px;
    text-transform: capitalize;
}

.btn-addother {
    min-width: 150px;
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background-color: #00ad69;
    color: #fff;
    border: 1px solid #00ad69;
    margin-top: 35px;
    margin-bottom: 10px;
}

.btn-addother:hover {
    color: #fff;
    background-color: #0cc17a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.btn-addowner,
.btn-deleteowner {
    min-width: 150px;
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    margin-top: 70px;
    margin-bottom: 10px;
}

.btn-addowner:hover {
    color: #fff;
    background-color: var(--main-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.btn-deleteowner {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-deleteowner:hover {
    color: #fff;
    background-color: #dc3545;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.btn-addowner svg,
.btn-deleteowner svg {
    width: 20px;
    height: 20px;
}

.form-box5 .dollar_input_group .input-group-text {
    border-left: 1px solid;
    border-right: 0 !important;
    padding-right: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.form-box5 .dollar_input_group input {
    border-left: 0 !important;
    border-right: 1px solid #989898;
}


/* fancy search box */
.new_form,
.new_input,
.caret {
    margin: auto;
}

.new_form {
    position: relative;
    width: 100%;
    max-width: 17em;
    margin-top: 12px;
}

.new_input,
.caret {
    display: block;
    transition: all calc(1s * 0.5) linear;
}

.new_input {
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 0.05em inset;
    caret-color: #255ff4;
    width: 1.5em;
    height: 1.5em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.new_input:focus,
.new_input:valid {
    background: #ffffff;
    border-radius: 0.25em;
    box-shadow: none;
    padding: 0.75em 1em;
    transition-duration: calc(1s * 0.25);
    transition-delay: calc(1s * 0.25);
    width: 100%;
    height: 3em;
}

.new_input:focus {
    animation: showCaret 1s steps(1);
    outline: transparent;
    cursor: auto;
    border: 1px solid #000;
    border-radius: 8px;

}

.new_input:focus+.caret,
.new_input:valid+.caret {
    animation: handleToCaret 1s linear;
    background: transparent;
    width: 1px;
    height: 1.5em;
    transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
}

.new_input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.new_label {
    color: #e3e4e8;
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

.caret {
    background: currentColor;
    border-radius: 0 0 0.125em 0.125em;
    margin-bottom: -0.6em;
    width: 0.175em;
    height: 1em;
    transform: translate(0, -0.75em) rotate(-45deg) translate(0, 0.65em);
    transform-origin: 50% 0;
    cursor: pointer;
}

/*--------------- Equipment start ---------------*/
/* radio wrapper */
.radio-wrapper {
    margin-top: 30px;
    background-color: #F6F9FC;
    padding: 25px;
    border-radius: 35px;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

/* .radio-wrapper .radio-wrapper-inner {
    height: 288px;
} */

.radio-wrapper::-webkit-scrollbar {
    display: none;
}
.radio-wrapper .item-box:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.13);
}

.radio-wrapper-inner .radio-wrapper-nested-inner {
    /* column-gap: 25px;
    display: grid !important;
    grid-auto-flow: column;
    grid-template-rows: 85px 110px;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    width: 100%;
    height: 210px; */
    /* align-items: center;
    gap: 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 0fr));
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* .radio-wrapper .radio-wrapper-inner.radio-wrapper-inner-nmi-only,.radio-wrapper .radio-wrapper-inner.radio-wrapper-inner-pax-two-equipment {
    height: 160px;
} */

/* .radio-wrapper-nested-inner.nmi_only {
    grid-template-rows: none;
    height: 125px;
} */
/* .radio-wrapper-nested-inner.pax_two_equipment{
    grid-template-rows: none;
    height: 125px;
} */


.radio-wrapper-nested-inner .main-item-box.main-item-box-disabled .item-box{
    cursor: not-allowed;
    box-shadow: unset;
}

.radio-wrapper-nested-inner .main-item-box.main-item-box-disabled .item-box:hover{
    box-shadow: unset;
}

.radio-wrapper-nested-inner .main-item-box {
    /* width: 320px;
    height: 120px;
    text-align: center; */
    max-width: 320px;
    height: 120px;
    text-align: center;
    min-width: 320px;
}

.radio-wrapper .item-box {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08), 0 2px 3px rgba(0, 0, 0, 0.09)
}

.radio-img-bar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.radio-img-bar img {
    width: 70%;
    object-fit: contain;
    height: 80px;
    /* aspect-ratio: 3/2; */
}

.radio-wrapper2 .radio-img-bar img {
    height: 50px;
}

.radio-img-bar span {
    font-weight: 700;
    color: #333232;
}

.main-item-box .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.main-item-box .form-check-input[type=radio] {
    border-radius: 50%;
}

/* Style the item-box when the radio button is checked */
.form-check-input:checked+.radio-img-bar+.item-box {
    border: 2px solid red;
}

@media (max-width: 1800px) {
    .radio-wrapper-nested-inner .main-item-box.fiserv-north-main-item-box{
        width: 280px !important;
    }
    .radio-wrapper-nested-inner .main-item-box {
        width: 250px;
    }
}
@media (max-width: 1600px) {
    .radio-wrapper-nested-inner .main-item-box.fiserv-north-main-item-box{
        width: 200px !important;
    }
    .radio-wrapper-nested-inner .main-item-box {
        width: 240px;
    }
    .radio-wrapper-inner-nmi-only .main-item-box {
        width: 270px !important;
    }
    .radio-wrapper-inner-pax-two-equipment .main-item-box{
        width: 270px !important;
    }
}

@media (max-width: 1470px) {
    .main-wrapper-right .nextBtn svg {
        margin-left: 0;
    }

    .radio-wrapper-nested-inner .main-item-box {
        width: 220px;
    }
}

@media (max-width: 1300px) {
    .radio-wrapper-nested-inner .main-item-box {
        width: 180px;
    }

}

@media (max-width: 1200px) {
    .radio-wrapper-nested-inner .main-item-box {
        width: 180px;
    }

}
@media (max-width: 910px) {
    .radio-wrapper-inner.radio-wrapper-inner-cbcal-bank-only{
        height: auto;
    }
    .radio-wrapper-nested-inner.cbcal_bank_only{
        grid-auto-flow: dense;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: unset;
        max-width: 590px;
        margin: 0 auto;
        height: auto;
    }

    .radio-wrapper .radio-wrapper-inner {
        height: auto;
    }

    .radio-wrapper-inner .radio-wrapper-nested-inner {
        grid-auto-flow: dense;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: unset;
        max-width: 590px;
        margin: 0 auto;
        height: auto
    }
}

@media (max-width: 909px) {
    .radio-wrapper-nested-inner.cbcal_bank_only{
        grid-auto-flow: dense;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: unset;
        max-width: 590px;
        margin: 0 auto;
        height: auto;
    }


    .radio-wrapper-inner .radio-wrapper-nested-inner {
        grid-auto-flow: dense;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
        max-width: 590px;
        margin: 0 auto;
        height: auto
    }
}

@media (max-width: 767px) {
    .radio-wrapper .radio-wrapper-inner {
        height: auto;
    }

    .radio-wrapper-inner .radio-wrapper-nested-inner {
        grid-auto-flow: dense;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
        max-width: 590px;
        margin: 0 auto;
        height: auto
    }

    .radio-wrapper-nested-inner .main-item-box {
        width: unset;
    }

    .radio-img-bar img {
        width: 50%;
        height: 50px
    }
}

@media (max-width: 725px) {
    .radio-wrapper .radio-wrapper-inner {
        height: auto;
    }

    .radio-wrapper-inner .radio-wrapper-nested-inner {
        grid-auto-flow: dense;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: unset;
        max-width: 317px;
        margin: 0 auto;
        height: auto;
    }

    .radio-wrapper-nested-inner .main-item-box {
        width: unset;
    }

    .radio-img-bar img {
        width: 50%;
        height: 50px
    }
}

@media (max-width: 576px) {
    .radio-wrapper .item-box {
        height: 85px;
    }

    /* .radio-wrapper .main-item-box {
        min-width: 50%;
    } */

    .radio-wrapper .item-box img {
        height: 40px;
    }

    /* .radio-wrapper .radio-wrapper-inner {
        height: 315px;
    } */

    .radio-wrapper-inner .radio-wrapper-nested-inner {
        grid-auto-flow: dense;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 15px;
        column-gap: 15px;
        height: auto;
    }

    .radio-wrapper-nested-inner .main-item-box {
        height: 85px !important;
    }

    .radio-wrapper-inner.radio-wrapper-inner-cbcal-bank-only{
        height: auto !important;
    }
    .radio-wrapper-nested-inner.cbcal_bank_only{
        height: auto !important;
    }
}

@media (max-width:446px) {
    .radio-wrapper .radio-wrapper-inner {
        height: auto;
    }

    .radio-wrapper-inner .radio-wrapper-nested-inner {
        grid-auto-flow: dense;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: unset;
        max-width: 205px;
        margin: 0 auto;
        height: auto
    }

    .radio-wrapper .radio-wrapper-inner.radio-wrapper-inner-pax-two-equipment{
        height: 230px;
    }

    .radio-wrapper-nested-inner.pax_two_equipment {
        max-width: 180px !important;
        height: 200px !important;
    }
}
/*--------------- Equipment end ---------------*/

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #17181c;
        --fg: #e3e4e8;
        --input: #2e3138;
        --primary: #5583f6;
    }
}

/* Animations */
@keyframes showCaret {
    from {
        caret-color: transparent;
    }

    to {
        caret-color: #5583f6;
    }
}

@keyframes handleToCaret {
    from {
        background: currentColor;
        width: 0.25em;
        height: 1em;
        transform: translate(0, -1em) rotate(-45deg) translate(0, 0.875em);
    }

    25% {
        background: currentColor;
        width: 0.25em;
        height: 1em;
        transform: translate(0, -1em) rotate(-180deg) translate(0, 0.875em);
    }

    50%,
    62.5% {
        background: #5583f6;
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(5.5em, 2.5em);
    }

    75%,
    99% {
        background: #5583f6;
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(5.5em, -0.25em);
    }

    87.5% {
        background: #5583f6;
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(5.5em, 0.125em);
    }

    to {
        background: transparent;
        width: 1px;
        height: 1.5em;
        transform: translate(0, -1em) rotate(-180deg) translate(5.5em, -0.25em);
    }
}

@media (max-width:1550px) and (min-width:1200px) {
    .stepBtn-section {
        flex-direction: column;
        gap: 10px;
    }

    .stepBtn-section .prevBtn {
        width: 100%;
    }

    .stepBtn-section .nextBtn {
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .main-wrapper-right {
        width: 100%;
        max-width: 100%;
    }

    .step-block li:not(:last-child) .step,
    .step-block li:not(:last-child) .home-step {
        margin-right: 10px;
    }

    .step-block li:not(:last-child) .step::after,
    .step-block .home-step::after {
        content: unset;
    }

    .step-block {
        display: flex;
        align-items: center;
        overflow-x: auto;
    }

    .step-block {
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        scrollbar-width: none;
        /* Firefox */
    }

    .step-block::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .logout {
        display: none;
    }

    .step-block li,
    .step-block li a {
        gap: 4px;
        margin-right: 10px;
        margin-bottom: 0;
    }

    .step-block li:last-child {
        margin-bottom: 0;
    }

    .main-wrapper-left {
        width: calc(100% - 24px);
    }

    header {
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 999;
    }

    .main-wrapper-right {
        position: sticky;
        top: 85px;
        border-radius: 0;
        z-index: 998;
    }

    .main-wrapper .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .main-wrapper-left {
        margin-left: 12px;
        margin-right: 12px;
    }

    .add-app-block {
        width: 300px;
    }

    /* .radio-wrapper .main-item-box {
        min-width: 180px;
    }

    .radio-wrapper .main-item-box:last-child {
        width: 130px;
        min-width: 110px;
    } */
}

@media (max-width: 991px) {
    body {
        font-size: 13px;
    }

    .header-logo {
        width: 120px;
    }

    header .open-search-icon-box svg {
        width: 17px;
        height: 17px;
    }

    header .open-search-icon-box {
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    header .open-search-icon-box {
        font-size: 16px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .notification-box {
        width: 370px;
        height: 370px;
    }

    .notification-bell {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
    }

    .notification-desc p {
        font-size: 13px;
    }


    .user-dropdown .btn span {
        font-size: 12px;
    }

    .user-dropdown .btn p {
        font-size: 12px;
        line-height: 1.3;
    }

    .user-dropdown .btn {
        min-width: 110px;
    }

    .notification-icon-box {
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }

    .notification-icon-box::before {
        width: 20px;
        height: 20px;
    }

    .user-dropdown .dropdown-item {
        font-size: 14px;
    }

    header .user-img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    /* <========== main-wrapper start ==========>*/
    .main-wrapper-left,
    .search-box,
    .search-box input,
    .search-box input:focus {
        background-color: transparent !important;
    }

    .app-list-box {
        width: 48.5%;
    }

    .app-list-box .app-no {
        font-size: 18px;
    }

    .app-list-box .app-digit {
        font-size: 24px;
    }

    .search-box {
        height: 40px;
    }

    .btn-add {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .form-box {
        background-color: #fff;
    }

    .form-box {
        border-radius: 25px;
    }

    .main-wrapper-right .add-app {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 19px !important;
    }

    .form-body .form-control,
    .form-body .form-select,
    .form-body .input-group-text,
    .form-body .select2 {
        font-size: 14px;
        height: 40px;
    }

    .form-body .form-select {
        min-width: 20%;
    }

    .form-box3 .input-group-text,
    .form-box3 .form-control,
    .form-box4 .input-group-text,
    .form-box4 .form-control {
        font-size: 16px;
    }


    .uploaded-file-name .icon {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .uploaded-file-name .icon svg {
        width: 13px;
        height: 13px;
    }

    .upload-img-block h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .form-box .input-group,
    .bank-input-width {
        width: 100%;
    }

    .radio-wrapper-nested-inner .main-item-box {
        width: 180px;
        height: 125px;
    }

    .radio-wrapper-nested-inner .main-item-box.fiserv-north-main-item-box{
        width: 160px !important;
    }

    .radio-img-bar img {
        height: 65px;
    }
    .fileinput__status-text.fileinput-text{
        max-width: 150px;
        -webkit-line-clamp: 1;
    }
}



@media (max-width: 767px) {
    .main-wrapper-right {
        width: 100%;
    }

    .app-list-box {
        width: 48%;
    }

    .fileinput__status-text {
        display: none;
    }

    .fileinput__status-text.fileinput-text{
        max-width: 140px;
    }

    .fileinput__button {
        width: 46px;
        height: 46px;
        padding: 0;
        display: grid;
        place-items: center;
    }

    .fileinput__button span {
        display: none;
    }

    .upload-img-block {
        padding: 15px;
    }

    .form-body .form-control,
    .form-body .form-body .input-group-text {
        width: 100%;
    }

    .form-box3 .form-control,
    .form-box4 .form-control,
    .form-box3 .input-group-text,
    .form-box4 .input-group-text {
        font-size: 20px;
    }

    .form-body .form-select {
        width: 100%;
        max-width: 100%;
    }
}


@media(max-width: 679px) {
    .app-list-box {
        width: 75%;
        height: 450px;
    }
}

@media (max-width: 576px) {
    .header-logo {
        width: 120px;
    }

    .notification-box {
        width: 300px;
    }

    .notification-bell {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
    }

    .notification-desc p {
        font-size: 12px;
    }


    .user-dropdown .btn {
        min-width: 95px;
    }

    .user-dropdown .btn::before {
        right: -8%;
    }

    .notification-icon-box svg {
        width: 17px;
        height: 17px;
    }

    .notification-icon-box::before {
        font-size: 12px;
    }

    .user-dropdown .btn {
        padding-left: 8px;
        padding-right: 8px;
    }

    header .open-search-icon-box svg {
        width: 15px;
        height: 15px;
    }

    header .open-search-icon-box {
        width: 32px;
        height: 32px;
    }

    .header_search {
        top: 180%;
        right: unset;
        left: 50%;
        transform: translateX(-63%);
    }

    .notification-box {
        top: 150%;
        right: -50%;
        transform: translateX(10%);
    }

    .header_search_sub input {
        width: calc(100% - 40px);
        font-size: 14px;
    }

    .header_search_sub .go_btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .header_search_sub {
        width: 250px;
    }

    /* <========== main-wrapper start ==========>*/
    .search-box {
        width: 84%;
    }

    .search-box>input {
        padding-top: 3px;
    }

    .app-list-box {
        width: 100%;
    }

    .app-list-box .app-no {
        font-size: 16px;
    }

    .step-block li .step-text {
        font-size: 14px;
    }

    .step-block .step,
    .step-block .home-step {
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .main-wrapper-right {
        top: 85px;
        width: 100%;
    }

    .step-block li:not(:last-child) .step::after,
    .step-block .home-step::after {
        height: 35px;
    }

    .step-block li:not(:last-child) .step,
    .step-block li:not(:last-child) .home-step {
        margin-right: 5px;
    }

    .step-block li .step-text {
        line-height: 1.2;
    }

    .app-form-top .app-no,
    .app-form-top .app-mob-num {
        font-size: 14px;
    }

    .form-box {
        border-radius: 20px;
    }


    .main-wrapper-right .add-app {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .app-form-top-left,
    .app-form-top-right {
        width: 100%;
    }

    .main-wrapper-left .nextBtn {
        /* width: 65%; */
        font-size: 14px;
    }

    .main-wrapper-left .prevBtn {
        width: 30%;
        font-size: 14px;
    }

    .add-app-block {
        width: 100%;
        max-width: 400px;
    }

    .add-app-block .add-app {
        box-shadow: 0 -10px 38px rgba(0, 0, 0, 0.15), 0 -10px 12px rgba(0, 0, 0, 0.09);
    }

    .upload-img-block h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .upload-img-block {
        padding-left: 10px;
        padding-right: 10px;
    }

    

    .select2 {
        max-width: 300px;
    }
    .fileinput__status-text.fileinput-text{
        max-width: 130px;
    }
}

@media (max-width:446px) {
    .fileinput__status-text.fileinput-text{
        max-width: 70px !important;
        margin-right: 5px;
    }

}

@media (max-width: 365px) {
    #header_main_title_welcome {
        font-size: 16px;
    }

    header {
        /* overflow-x: hidden; */
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 330px) {
    #header_main_title_welcome {
        font-size: 14px;
    }

    .account-dropdown .btn {
        padding-left: 0;
        padding-right: 0;
    }

    .header_search {
        left: 25%;
        transform: translateX(-75%);
    }
}

/* <========== signup page start ==========> */
.signup-wrapper {
    width: 100%;
    min-height: 100vh;
    /* background-image: url(../img/mobiletrans.jpg); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    /* padding: 10px 0; */
}

/* .signup-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50px;
    width: 180px;
    height: 90px;
    object-fit: contain;
    background-image: url(../img/logo-white.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
} */

.signup_logo{
    max-width: 200px;
    height: auto !important;
}

.crc-laptop-image{
    max-width: 70%;
}

.crc-head-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #C2DCEB;
    padding-top: 11px;
    padding-bottom: 41px;
}
.crc-head-wrapper img{
    height: 25px;
}

.login-box {
    height: auto;
    min-height: calc(100vh - 20px);
    padding: 30px 0px;
    background-color: #F8F8F8;
    border-radius: 30px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.login-box-inner {
    padding: 0px 45px;
}

.login-box .signup-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #333232;
}

.login-box-inner label {
    font-size: 16px;
    line-height: 1.5;
    color: #323232;
    margin-bottom: 5px;
}

.login-box-inner .form-control {
    border-radius: 50px;
    background-color: #F0F0F0;
    height: 40px;
    border-color: #e2e2e2;
}

.login-box-inner .main-btn-box {
    justify-content: center;
    display: grid;
}

.login-box-inner .main-btn-box .btn-login {
    padding-left: 60px;
    padding-right: 60px;
}

.signup-box {
    margin-top: auto;
    height: 100%;
}
.signup-box .signup-link-wrapper{
    color: #333232;
    font-size: 14px;
    margin: 15px;
    text-align: center;
}

.signup-box .signup-link-wrapper a .signup-link-text{
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #4d84ff;
}

.btn-primary {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: #4d84ff;
    border-color: #4d84ff;
}

.btn-primary:hover {
    background-color: #4d84ff;
    border-color: #4d84ff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.btn-submit {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: #323232;
    color: #fff;
}

.btn-submit:hover {
    background-color: #000;
    color: #fff;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
}

.login-box .btn-submit,.login-box .btn-primary {
    margin-top: 35px;
}

.signin-link {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin-top: 40px;
}

.signin-link:hover {
    color: #323232;
}

.other-signup {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.other-signup h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #323232;
    margin-bottom: 30px;
}

.other-signup-box {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #00000029;
}

.other-signup-box:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.13);
}

.other-signup-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.other-signup-box span {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}

.other-signup .row>* {
    padding-left: 4px;
    padding-right: 4px;
}

/* <========== forgote page start ==========> */
.signup-logo {
    max-width: 100%;
    height: 65px;
}

.forgote-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #323232;
}

.forgote-desc {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #323232;
    max-width: 68%;
    margin-bottom: 50px;
}

.forgote-subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    color: #323232;
    margin-bottom: 50px;
}

.forgote-box-inner {
    width: 65%;
}

.forgote-box-inner label {
    font-size: 16px;
    line-height: 1.5;
    color: #323232;
    margin-bottom: 10px;
}

.forgote-box-inner .form-control {
    background-color: #F0F0F0;
    height: 40px;
    border-color: #e2e2e2;
    border-radius: 15px;

}

.btn-code {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: #4C84FF;
    color: #fff;
}

.forgote-box-inner .btn-code {
    margin-top: 30px;
}

.btn-code:hover {
    background-color: #000;
    color: #fff;
}

/* <========== 404 page start ==========> */
.header1 {
    background-color: #F8F8F8;
}

.header1 .navbar-brand {
    width: auto;
    height: 90px;
    overflow: hidden;
    padding: 0;
}

.header1 .navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header1 .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
}

.header1 .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link,
.header1 .navbar-expand-lg .navbar-nav .nav-item .nav-link.active {
    font-weight: 600;
    color: #4C84FF;
}

.header1 .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.wrong-file {
    padding: 40px 0;
    background-color: #F8F8F8;
    min-height: 100vh;
}

.wrong-file-img img {
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.wrong-file-text {
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;
    color: #333232;
    margin-top: 10px;
    text-transform: capitalize;
}

.wrong-file-btns .btn-fill {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 22px;
    border-radius: 50px;
    background-color: #4C84FF;
    border: 1px solid #4C84FF;
    color: #fff;
}

.wrong-file-btns .btn-fill:hover {
    background-color: transparent;
    color: #4C84FF;
}

.wrong-file-btns .btn-border {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 22px;
    border-radius: 10px;
    border: 1px solid #4C84FF;
    color: #4C84FF;
}

.wrong-file-btns .btn-border:hover {
    background-color: #4C84FF;
    color: #fff;
}

@media (max-width: 1199px) {
    .header1 {
        background-color: #F8F8F8;
    }

    .header1 .navbar-brand {
        height: 70px;
    }

    .header1 .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .login-box {
        /* width: 380px; */
    }

    .login-box .signup-title {
        font-size: 28px;
    }

    .login-box-inner label {
        font-size: 14px;
    }

    .other-signup h4 {
        font-size: 22px;
    }

    /* forgote page start */
    .forgote-title {
        font-size: 28px;
    }

    /* 404 page start */
    .header1 .navbar-brand {
        height: 70px;
        margin-left: auto;
        margin-right: auto;
    }

    .wrong-file-text {
        font-size: 22px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .select2 {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .signup-wrapper {
        padding: 0.7rem;
        /* background-image: unset !important; */
        min-height: unset;
    }

    .signup-wrapper .container-fluid {
        /* padding-left: 0;
        padding-right: 0; */
    }

    .login-box {
        /* width: 100%; */
        /* min-height: 100vh; */
        border-radius: 30;
    }

    .other-signup {
        margin-top: 5px;
    }

    .signup-logo {
        width: auto;
        height: 75px;
    }

    .btn-submit {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        padding-left: 40px;
        padding-right: 40px;
        display: flex;
        font-weight: 500;
    }

    .forgote-box-inner .form-control {
        border-radius: 15px;
    }

    .wrong-file-text {
        margin-top: 0;
    }
}

@media (max-width: 576px) {


    .forgote-desc {
        margin-bottom: 120px;
        line-height: 1.2;
    }

    .login-box-inner {
        padding: 0 30px;
    }

    .forgote-subtitle {
        margin-bottom: 100px;
    }

    /* .forgote-box-inner .btn-code {
        margin-top: 20px;
    } */

    .forgote-box-inner {
        width: 80%;
    }

    .wrong-file {
        padding-bottom: 0;
        min-height: 100vh;
    }

    .wrong-file-text {
        font-size: 20px;
        max-width: 270px;
        line-height: 1.3;
    }

    .wrong-file-btns .btn-border {
        width: 50%;
    }

    .wrong-file-btns .btn-fill {
        width: 90%;
    }

    .wrong-file-img {
        margin-top: 80px;
    }

    .wrong-file-img img {
        width: 100%;
    }
    .crc-head-wrapper img{
        height: 15px;
    }
}
