Files
IPA/ipa-agent/assets/css/style.css
diptimhabadi351 1cf6f290de IPA
2024-06-18 13:31:13 +05:30

1711 lines
29 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
::before,
::after {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
}
html {
scroll-behavior: smooth;
}
body {
width: 100%;
height: 100%;
font-family: "Poppins", sans-serif;
/* overflow-x: hidden; */
}
:root {
--primary: #061b37;
--primary2: #2f2f2f;
--second: #041429;
--white: #fff;
--yellow: #f5be3b;
--black: #000000;
--gray: #dedede;
--dark-gray: #858585;
}
/* common css start */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Playfair Display", serif;
}
p,
span,
strong,
a,
li,
button,
div {
font-family: "Poppins", sans-serif;
}
a {
text-decoration: none;
}
img {
width: 100%;
height: 100%;
}
h2 {
color: var(--primary);
}
.h2_head {
position: relative;
margin-bottom: 30px;
padding-bottom: 10px;
}
.h2_head::after {
position: absolute;
content: "";
width: 124px;
height: 2px;
background-color: var(--yellow);
bottom: 0;
left: 0;
}
.section {
padding: 40px 0;
}
.back_btn {
display: inline-block;
margin: 12px 0;
}
.back_btn img {
width: 95px;
}
.view_more {
margin: 20px 0;
text-align: right;
}
.view_more a {
padding: 6px 20px;
background-color: var(--yellow);
color: var(--black);
display: inline-block;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
font-size: 15px;
transition: 0.2s;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.view_more:hover a {
transform: translateY(-3px);
-webkit-transform: translateY(-3px);
-moz-transform: translateY(-3px);
-ms-transform: translateY(-3px);
-o-transform: translateY(-3px);
}
.common_btn,
.common_btn.active {
color: #000000;
border: 1px solid #001b9c;
background: #f0efff;
padding: 5px 20px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
/* common css end */
.header {
padding: 20px 0;
background-color: var(--primary);
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 999;
}
.header .container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
max-width: 100%;
padding: 0 3rem;
}
.header .ipa_logo img {
width: 109px;
height: 39px;
}
.header .nav_bar,
.header .nav_bar ul {
display: flex;
align-items: center;
gap: 40px;
margin: 0;
padding: 0;
}
.header .nav_bar .log_reg ul {
gap: 20px;
}
.header .nav_bar {
gap: 55px;
}
.header a {
color: var(--white);
}
.header .log_reg a {
border: 1px solid var(--yellow);
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
padding: 8px 40px;
background-color: var(--yellow);
color: var(--black);
}
.header .log_reg .login {
color: var(--white);
background-color: transparent;
}
.header .listings {
display: flex;
align-items: center;
gap: 25px;
}
.header .listings .add_list {
display: flex;
align-items: center;
gap: 10px;
border: 1px solid var(--yellow);
border-radius: 5px;
padding: 7px 15px;
}
.header .listings img {
width: 28px;
height: 28px;
}
.header .listings .add_list img {
width: 17px;
height: 18px;
}
.form_sec .container {
margin-top: 90px;
}
.form_sec .label_input {
margin-bottom: 30px;
}
.form_sec .form-label {
color: var(--primary2);
}
.form-control,
.form-select {
padding: 10px 18px;
border: 1px solid var(--gray);
}
.form_sec input::placeholder {
color: var(--dark-gray);
}
.form_sec .forgot_pass {
display: flex;
justify-content: end;
}
.form_sec .forgot_pass a {
color: var(--primary2);
font-weight: 500;
display: inline-block;
margin-top: -10px;
}
.form_sec .login_btn {
display: block;
background-color: var(--yellow);
padding: 12px 0;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
color: var(--black);
text-align: center;
font-weight: 500;
margin: 30px 0;
}
.form_sec .or {
display: flex;
align-items: center;
gap: 10px;
}
.form_sec .or span {
color: var(--primary2);
}
.form_sec .or img {
width: 46%;
}
.form_sec .google {
margin: 20px 0;
}
.form_sec .google a {
color: var(--primary2);
text-align: center;
border: 1px solid var(--gray);
border-radius: 5px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 7px;
}
.form_sec .google img {
width: 20px;
height: 20px;
}
.form_sec .regis {
text-align: center;
}
.form_sec .regis a {
text-decoration: underline;
color: var(--primary);
font-weight: 500;
}
.form_sec .inn_check {
display: flex;
align-items: center;
gap: 35px;
margin: 12px 0;
}
.form_sec .otp_para a {
font-weight: 500;
color: var(--black);
}
.form_sec .otp_para img {
width: 18px;
height: 18px;
}
.form_sec .otp_main {
margin: 50px 0;
}
.form_sec .otp_input {
display: flex;
align-items: center;
gap: 20px;
padding: 12px 0 30px;
}
.form_sec .otp_input input {
display: inline-block;
width: 60px;
height: 60px;
border: 1px solid var(--primary);
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-bottom: 7px solid var(--primary);
font-size: 28px;
padding: 15px;
text-align: center;
font-weight: 500;
color: var(--primary);
}
.form_sec .otp_input input:focus {
border-color: var(--primary);
}
.form_sec .other_ {
margin: 50px 0;
}
/* sidebar start */
.sidebar_sec {
height: auto;
background: var(--white);
position: sticky;
top: 110px;
}
.sidebar_sec ul {
padding: 0;
margin: 0;
}
.sidebar_sec ul li a {
border: 0.6px solid var(--gray);
color: var(--black);
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
cursor: pointer;
}
.sidebar_sec ul li.active a,
.sidebar_sec ul li a:hover {
background-color: var(--yellow);
}
.sidebar_sec ul li img {
width: 20px;
height: 20px;
}
/* sidebar end */
.main_content {
padding: 0 3rem;
margin-top: 110px;
}
.inner_contents {
min-height: 100vh;
}
.h2_heading {
border-bottom: 1px solid var(--gray);
padding-bottom: 15px;
color: #1d1d1d;
font-size: 22px;
/* font-family: inherit; */
}
.h5_heading {
color: #1d1d1d;
font-family: "Poppins", sans-serif;
}
.profile_main {
padding: 20px;
margin: 20px 0;
border: 1px solid var(--gray);
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.profile_main p {
color: #131313;
}
.profile_main .name_edit {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--gray);
padding-bottom: 15px;
margin-bottom: 20px;
}
.profile_main .name_edit h5 span {
padding: 6px 16px;
border-radius: 17px;
-webkit-border-radius: 17px;
-moz-border-radius: 17px;
-ms-border-radius: 17px;
-o-border-radius: 17px;
font-size: 16px;
font-weight: normal;
background-color: var(--yellow);
color: var(--black);
display: inline-block;
margin-left: 15px;
}
.profile_main .name_edit img {
width: 40px;
height: 40px;
}
.profile_main .prof_img img {
width: 80px;
height: 80px;
}
.profile_main .profile_inn {
display: flex;
align-items: center;
gap: 30px;
}
.profile_main .profile_inn p {
margin-bottom: 0;
}
.profile_main .profile_inn .prof_cont {
display: flex;
flex-direction: column;
gap: 15px;
}
.profile_main .prof_cont strong {
font-weight: 500;
}
.my_earnings {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin: 20px 0;
}
.my_earnings .inn_earn {
border: 0.6px solid #4361ee;
box-shadow: 0px 4px 4px 0px #0000001a;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
padding: 20px;
display: flex;
align-items: center;
gap: 25px;
}
.my_earnings .num {
border: 0.6px solid #4361ee;
background-color: #e6eaff;
box-shadow: 0px 4px 4px 0px #0000001a;
padding: 10px 12px;
display: grid;
place-items: center;
color: var(--black);
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}
.my_earnings .inn_earn2.inn_earn {
border: 0.6px solid #f5be3b;
}
.my_earnings .inn_earn2 .num {
border: 0.6px solid #f5be3b;
background-color: #fff5dd;
}
.my_earnings .num span {
font-size: 23px;
font-weight: 600;
}
.my_earnings .earn_content {
width: 90%;
color: #3f3f3f;
font-weight: 500;
}
.property_table {
border: 1px solid var(--gray);
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
padding: 20px;
}
.property_table .prop_btns {
display: flex;
align-items: center;
justify-content: space-between;
}
.property_table .inn_btn .dropdown button {
border: 1px solid #001b9c;
background-color: #f0efff;
display: flex;
align-items: center;
gap: 15px;
padding: 5px 20px;
}
.property_table .inn_btn {
display: flex;
align-items: center;
gap: 15px;
}
.property_table .dropdown-toggle::after {
display: none;
}
.property_table table {
width: 100%;
text-align: center;
margin-top: 20px;
}
.property_table table thead {
padding: 12px 0;
border-top: 1px solid var(--gray);
border-bottom: 1px solid var(--gray);
}
.property_table table th,
.property_table table td {
padding: 12px 0;
}
.property_table table th {
font-weight: 500;
color: #131313;
}
.locality_search {
margin: 25px 0px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.locality_search .inn_loc {
padding: 0;
}
.locality_search .search {
border-bottom: 1px solid var(--yellow);
padding-bottom: 8px;
display: flex;
}
.locality_search .search svg {
width: 20px;
height: 20px;
}
.locality_search .search input,
.locality_search .search input:focus-visible,
.locality_search .search input:focus {
border: none;
outline: none;
padding-left: 8px;
width: 100%;
}
.locality_search .dropdown button {
border: 1px solid var(--gray);
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.locality_search .dropdown-menu {
border: 1px solid var(--gray);
padding: 12px 16px;
width: 100%;
}
.locality_search .form-check-input[type="checkbox"] {
border: 1px solid var(--primary);
}
.all_products {
border: 1px solid var(--gray);
padding: 12px 15px;
}
.all_products p {
font-weight: 500;
margin: 0;
}
.all_products .del span {
color: red;
font-weight: 500;
}
.all_products .del img {
width: 15px;
height: 15px;
}
.all_products .checks {
border-left: 1px solid var(--gray);
border-right: 1px solid var(--gray);
}
.showing_in {
border: 1px solid var(--gray);
padding: 12px 15px;
margin: 20px 0;
display: flex;
align-items: center;
gap: 10px;
}
.showing_in label {
font-weight: 500;
}
.showing_in span {
border: 1px solid #001b9c;
padding: 4px 7px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.showing_in img {
width: 15px;
height: 15px;
margin-left: 25px;
}
.my_profile .row {
width: 100%;
margin: auto;
}
.main_prof {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
margin: 30px 0;
border: 1px solid var(--gray);
padding: 25px;
border-radius: 8px;
}
.view_public_pro {
display: flex;
align-items: center;
gap: 25px;
}
.view_public_pro .other_view a {
background: transparent;
border: 1px solid var(--yellow);
display: flex;
align-items: center;
gap: 12px;
}
.view_public_pro .other_view img {
width: 20px;
}
.my_profile .bor_row {
border: 1px solid var(--gray);
padding: 20px 15px;
border-radius: 8px;
margin-bottom: 30px;
}
.bor_row .det_head {
color: var(--black);
font-size: 18px;
font-weight: 500;
margin-bottom: 20px;
}
.bor_row .red_del a {
color: red;
}
.bor_row .red_del a img {
width: 25px;
height: 25px;
}
.my_profile .view_more {
text-align: center;
}
.bor_row .view_more a {
padding: 6px 50px;
}
.header .dropdown a {
color: var(--black);
display: block;
}
.header .dropdown-menu a {
font-size: 15px;
}
.header .dropdown-menu svg {
width: 20px;
}
.profile_edit {
width: 120px;
height: 120px;
border: 1px solid gray;
border-radius: 50%;
display: grid;
place-content: center;
padding: 12px;
position: relative;
}
.profile_edit p {
font-size: 14px;
text-align: center;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(90%, -165%);
z-index: 1;
background: #f5be3b;
padding: 5px;
border-radius: 50%;
cursor: pointer;
}
.main_prof .h5_heading,
.main_prof .h5_heading:focus {
color: #1d1d1d;
border: none;
outline: none;
border-bottom: 1px solid;
padding-bottom: 3px;
}
#file-input,
#file-input2 {
display: none;
}
#preview,
#preview2 {
padding: 2px;
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 35px;
}
#preview .up_imgs,
#preview2 .up_imgs {
width: 130px;
height: 130px;
border: 1px solid var(--gray);
border-radius: 5px;
object-fit: cover;
position: relative;
padding: 5px;
}
#preview .up_imgs button,
#preview2 .up_imgs button {
position: absolute;
top: -8px;
right: -8px;
width: 20px;
height: 20px;
border: 1px solid #000;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: red;
}
#preview2 .up_imgs video {
width: 100%;
height: 100%;
}
.bhk_flat {
border: 1px solid var(--gray);
padding: 20px;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
margin: 20px 0;
}
.bhk_flat label,
.bhk_flat p {
color: #000;
font-weight: 500;
}
.three_btn {
display: flex;
align-items: center;
gap: 30px;
}
.edit_del {
display: flex;
align-items: center;
gap: 8px;
}
.edit_del a img {
width: 34px;
height: 34px;
}
.price_lac {
padding: 20px 0 20px 25px;
}
.bhk_flat span {
color: var(--dark-gray);
}
.two_box {
display: flex;
align-items: center;
padding: 10px 0;
}
.two_box .inn_box {
width: 45%;
}
.two_box .inn_box:last-child {
border-left: 1px solid var(--gray);
padding-left: 20px;
}
.two_box .progress_value {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 15px;
}
.two_box .progress {
width: 50%;
}
.two_box .progress-bar {
background-color: #061b37;
}
.price_lac a {
color: #000;
text-decoration: underline;
}
.price_lac .view_resp {
display: flex;
align-items: center;
gap: 25px;
}
.table_action {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
}
.leads-page p {
color: #000;
}
.leads-page p span {
color: #626262;
}
.leads-page .nav-tabs {
border: 0;
margin: 30px 0;
}
.leads-page .verti_line {
padding: 0 5px;
}
.leads-page .nav-tabs .nav-link,
.leads-page .nav-tabs .nav-link.active,
.leads-page .nav-tabs .nav-link:focus,
.leads-page .nav-tabs .nav-link:hover {
border: 0;
color: var(--black);
box-shadow: none;
outline: none;
padding: 0;
}
.leads-page .nav-tabs .nav-link.active {
font-weight: 600;
}
.leads-page .review,
.leads-page .contact {
border: 1px solid var(--gray);
padding: 20px;
margin-bottom: 20px;
}
.leads-page .review i.bi-check2,
.leads-page .contact i.bi-check2 {
background: blue;
color: #fff;
border-radius: 50%;
padding: 2px 4px;
}
.leads-page i.bi-emoji-smile {
color: var(--yellow);
font-size: 16px;
}
.appoint_page {
border-bottom: 1px solid var(--gray);
}
.appoint_page .head_btns h2 {
font-size: 22px;
}
.appoint_page .head_btns {
display: flex;
align-items: center;
justify-content: space-between;
}
.appoint_req {
padding: 30px 30px;
background-color: #fff;
border-radius: 8px;
border: 1px solid #e0e6ed;
box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
margin: 30px 0;
}
.appoint_req .h6 {
color: #1d1d1d;
font-size: 18px;
font-weight: 500;
}
.appoint_req .name_time {
display: flex;
align-items: center;
gap: 20px;
margin: 20px 0;
flex-wrap: wrap;
}
.appoint_req .name_time img {
width: 50px;
height: 50px;
border-radius: 50%;
}
.appoint_req .name_time p {
margin: 0;
color: #000;
font-size: 16px;
display: flex;
align-items: center;
gap: 18px;
}
.ham_burger,
.overlay,
.ham_cross,
.nav_cross {
display: none;
}
/* foooter start */
.footer {
background-color: var(--primary);
padding: 40px 0;
color: var(--white);
margin-top: 40px;
}
.footer .container {
max-width: 100%;
padding: 0 3rem;
}
.footer .inn_foot {
display: grid;
grid-template-columns: repeat(4, 1fr);
}
.footer ul {
padding: 0;
}
.footer ul li {
margin-bottom: 20px;
}
.footer ul a {
color: var(--white);
position: relative;
display: inline-block;
transition: .2s;
}
.footer ul a::before {
content: "";
position: absolute;
width: 5px;
height: 5px;
background: transparent;
top: 50%;
left: 0;
border-radius: 50%;
transform: translateY(-50%);
transition: 0.2s;
}
.footer ul a:hover {
padding-left: 12px;
}
.footer ul a:hover:before {
background-color: var(--white);
}
.footer .f_logo {
margin-bottom: 30px;
display: block;
}
.footer h3 {
margin-bottom: 30px;
font-size: 22px;
}
.footer .f_logo img {
width: 130px;
height: 49px;
}
/* .footer .f2,
.footer .f3 {
margin-top: 65px;
} */
.footer .social {
display: flex;
align-items: center;
gap: 15px;
}
.footer .social img {
width: 30px;
height: 30px;
object-fit: contain;
}
.footer .social_logo p {
font-size: 18px;
}
.footer ul a img {
width: 25px;
height: 25px;
}
.copyright {
text-align: center;
padding: 15px 0;
background-color: var(--second);
position: relative;
z-index: 2;
}
.copyright p {
margin: 0;
color: var(--white);
}
.step-box .step-container {
position: relative;
text-align: center;
transform: translateY(-26%);
}
.step-box .step-circle {
width: 45px;
height: 45px;
border-radius: 50%;
background-color: #f4f4f4;
border: 1px solid #dedede;
line-height: 30px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
cursor: pointer;
font-weight: 400;
}
.step-box .step-line {
position: absolute;
top: 16px;
left: 50px;
width: calc(100% - 100px);
height: 2px;
background-color: #007bff;
z-index: -1;
}
.step-box #multi-step-form {
overflow-x: hidden;
border: 1px solid #dedede;
padding: 20px;
border-radius: 5px;
}
.step-box .progress.px-1 {
background-color: #dedede;
}
.step-box .step-b p {
font-size: 15px;
}
.other_step_box .nav-tabs {
gap: 140px;
flex-direction: row;
flex-wrap: nowrap;
overflow-x: auto;
overflow-y: hidden;
border: 0;
}
.other_step_box .nav-link {
display: flex;
align-items: center;
flex-direction: column;
gap: 12px;
padding: 0;
border: 0;
}
.other_step_box .nav-link .nav-link,
.other_step_box .nav-link .nav-link.active {
flex-shrink: 0;
}
.other_step_box .nav-tabs::-webkit-scrollbar {
height: 4px;
}
.other_step_box .nav-tabs::-webkit-scrollbar-thumb {
background: var(--dark-gray);
}
.other_step_box .nav-link .num {
width: 45px;
height: 45px;
border-radius: 50%;
background-color: #f4f4f4;
border: 1px solid #dedede;
line-height: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-weight: 400;
position: relative;
}
.other_step_box .nav-link.active .num {
background-color: #fff9ea;
border: 1px solid var(--yellow);
}
.other_step_box .nav-link .num::after {
content: "";
position: absolute;
height: 2px;
border-top: 2px solid var(--dark-gray);
left: 143px;
transform: translateX(-50%);
top: 50%;
width: 140px;
}
.other_step_box .nav-link.active .num::after {
border-top: 2px solid var(--yellow);
}
.other_step_box .nav-link.last_child .num::after {
display: none;
}
.other_step_box .tab-content {
overflow-x: hidden;
border: 1px solid #dedede;
padding: 20px;
border-radius: 5px;
margin-top: 30px;
}
.other_step_box .btns_div {
display: flex;
align-items: center;
gap: 25px 18px;
flex-wrap: wrap;
}
h2.main-head {
font-size: 18px;
font-weight: 600;
font-family: inherit;
margin-bottom: 30px;
}
.main_content .step-box {
padding-top: 20px;
width: 100%;
}
.btn-primary {
border: 1px solid #9e9e9e !important;
background-color: transparent !important;
color: #000 !important;
font-size: 15px;
padding: 7px 38px;
border-radius: 5px;
}
.active.btn-primary {
border: 1px solid #001b9c !important;
background-color: #e5eaff !important;
}
.yellow-btn {
border: none;
background-color: #f5be3b;
color: #000;
font-size: 15px;
padding: 7px 22px;
border-radius: 5px;
}
.yellow-btn.next-step {
padding: 7px 60px;
}
.step-box h3 {
font-size: 16px;
font-family: inherit;
font-weight: 500;
margin-bottom: 14px;
}
.step-box h4 {
font-size: 16px;
font-family: inherit;
font-weight: 400;
margin-bottom: 20px;
}
.step-box .next-btn {
display: flex;
justify-content: center;
margin-top: 45px;
margin-bottom: 18px;
}
.step-box .progress-bar {
background-color: #f5be3b;
}
.count-num .button {
width: 32px;
height: 32px;
border: 1px solid #dedede;
display: flex;
justify-content: center;
align-items: center;
margin: 0 15px;
border-radius: 5px;
}
.step.step-3 button.btn-primary {
padding: 7px 20px;
}
.main_content .step-box select {
border: 1px solid #9e9e9e;
}
.main_content .step-box input.form-control {
border: 1px solid #9e9e9e;
}
.main_content .step-box .nav-tabs .nav-link.active {
background-color: transparent;
border-color: inherit;
border: none;
border-bottom: 1px solid;
}
.step-box .nav-tabs button {
color: #000;
}
.step-box .video-upload {
border: 1px solid #dedede;
padding-top: 7px;
border-radius: 7px;
}
.step-box .nav-tabs .nav-link:focus,
.step-box .nav-tabs .nav-link:hover {
border: none;
}
.step-box .uppy-Root .uppy-Dashboard-inner {
width: 100% !important;
}
.video-upload .image-box {
padding: 62px;
text-align: center;
}
.video-upload .image-upload {
border-top: 1px solid #dedede;
padding-top: 16px;
}
.youtube-box label.form-check-label {
color: #4361ee;
font-size: 15px;
margin-left: 16px;
}
.youtube-box input.form-check-input {
width: 20px;
height: 20px;
border-color: #026ab4;
}
.youtube-box .form-check {
border: 1px solid #dedede;
padding: 20px 43px;
margin: 16px 20px;
border-radius: 5px;
}
.video-upload i.bi.bi-trash {
color: #e40000;
font-size: 20px;
border: 1px solid #cccccc;
width: 35px;
height: 35px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
}
.colour-gray {
color: #636363;
font-size: 14px;
}
.step-box .step-6 button.btn-primary {
margin-bottom: 15px;
}
/* foooter end */
.step-box .video-upload .nav-tabs {
padding: 7px;
}
.step-box .video-upload .nav-tabs .nav-link {
padding-bottom: 7px;
}
/* Responsive start */
@media (max-width: 1700px) {
.other_step_box .nav-link .num::after {
left: 129px;
width: 100px;
}
}
@media (max-width: 1480px) {
.other_step_box .nav-link .num::after {
left: 117px;
}
}
@media (max-width: 1025px) {
.locality_search {
grid-template-columns: repeat(2, 1fr);
}
.video-upload .image-box {
padding: 30px 0px;
}
}
@media (max-width: 991px) {
.ham_burger,
.overlay,
.ham_cross {
display: block;
}
.header .overlay {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: -100%;
background-color: #00000066;
z-index: 999;
display: block;
opacity: 1;
}
.header.active .overlay {
left: 0%;
}
.header .inn_nav {
position: fixed;
top: 0;
background: var(--white);
box-shadow: 0px 3px 12px 0px rgba(232, 21, 93, 0.1);
padding: 10px;
left: -130%;
width: 320px;
align-items: normal;
transition: all ease 0.2s;
z-index: 9999;
gap: 25px;
display: inline;
height: 100%;
overflow-y: auto;
-webkit-transition: all ease 0.2s;
-moz-transition: all ease 0.2s;
-ms-transition: all ease 0.2s;
-o-transition: all ease 0.2s;
}
.header.active .inn_nav {
transition: all ease 0.2s;
left: 0;
-webkit-transition: all ease 0.2s;
-moz-transition: all ease 0.2s;
-ms-transition: all ease 0.2s;
-o-transition: all ease 0.2s;
overflow-x: hidden;
padding: 20px;
background: #0f2c52;
}
.header .nav_cross {
color: var(--black);
text-align: right;
display: block;
cursor: pointer;
}
.header .nav_cross i {
font-size: 22px;
font-weight: 500;
padding: 10px;
font-style: normal;
color: #fff;
}
.ham_burger {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--yellow);
border-radius: 50%;
cursor: pointer;
}
.ham_burger i {
color: #000;
font-size: 30px;
}
.header.active .nav_bar,
.header.active .nav_bar ul {
flex-direction: column;
align-items: baseline;
gap: 30px;
}
.header.active .listings {
flex-direction: column;
align-items: baseline;
gap: 30px;
}
.my_earnings {
grid-template-columns: repeat(2, 1fr);
}
.footer .inn_foot {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.bhk_flat .row {
flex-direction: column;
gap: 20px;
}
.price_lac {
padding: 20px 0 20px 0px;
}
}
@media (max-width: 768px) {
}
@media (max-width: 767px) {
.inner_contents {
min-height: 100%;
}
.header .container,
.main_content,
.footer .container {
padding: 0 2rem;
}
.sidebar_sec {
position: static;
margin-bottom: 30px;
}
.profile_main .profile_inn {
margin-bottom: 20px;
}
.all_products .checks {
margin: 12px 0;
}
.h2_head {
margin-top: 30px;
}
}
@media (max-width: 576px) {
.my_earnings {
grid-template-columns: repeat(1, 1fr);
}
.two_box {
flex-direction: column;
gap: 25px;
}
.two_box .inn_box {
width: 100%;
}
.two_box .inn_box:last-child {
border-left: 0;
padding-left: 0;
}
.showing_in {
align-items: baseline;
gap: 10px;
flex-direction: column;
}
.main_prof {
align-items: flex-start;
gap: 20px;
flex-direction: column;
}
}
@media (max-width: 481px) {
.profile_main .profile_inn {
margin-bottom: 20px;
flex-direction: column;
align-items: baseline;
}
.header .container,
.main_content,
.footer .container {
padding: 0 .94rem;
}
.view_public_pro {
gap: 20px;
flex-wrap: wrap;
}
.my_profile .view_more {
margin: 0;
}
.my_profile .bor_row {
padding: 20px 10px;
}
.appoint_req {
padding: 20px;
}
.btn-primary {
padding: 7px 25px;
}
.property_table .prop_btns {
align-items: flex-start;
gap: 20px;
flex-direction: column;
}
.table_div {
width: 100%;
overflow-x: auto;
}
.table_div table {
width: 490px;
}
}
@media (max-width: 421px) {
.locality_search {
grid-template-columns: repeat(1, 1fr);
}
.footer .inn_foot {
grid-template-columns: repeat(1, 1fr);
gap: 25px;
}
.footer {
padding: 40px 0 0;
margin-top: 25px;
}
}
/* Responsive end */