2181 lines
42 KiB
CSS
2181 lines
42 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;
|
|
}
|
|
|
|
input:focus {
|
|
border-color: inherit !important;
|
|
box-shadow: none !important;
|
|
/* border: 1px solid var(--gray) !important; */
|
|
}
|
|
|
|
.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: 7px 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: .2s;
|
|
-webkit-transition: .2s;
|
|
-moz-transition: .2s;
|
|
-ms-transition: .2s;
|
|
-o-transition: .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;
|
|
}
|
|
.table-responsive .table_action {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 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;
|
|
}
|
|
|
|
.form_sec .container {
|
|
margin-top: 65px;
|
|
}
|
|
|
|
.form_sec .label_input {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.form_sec .form-label {
|
|
color: var(--primary2);
|
|
}
|
|
|
|
.form-control,
|
|
.form-select {
|
|
padding: 7px 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-bottom: 1px solid #DEDEDE;
|
|
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: 50px;
|
|
}
|
|
|
|
.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 {
|
|
margin: 20px 0;
|
|
border-radius: 5px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
}
|
|
|
|
.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 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-radius: 5px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.locality_search {
|
|
margin: 25px 0px;
|
|
}
|
|
|
|
.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 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 {
|
|
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;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.showing_in img {
|
|
width: 15px;
|
|
height: 15px;
|
|
margin-left: 25px;
|
|
}
|
|
|
|
|
|
.main_prof {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 30px;
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.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 img {
|
|
max-width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
#preview, #preview2 {
|
|
padding: 2px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 30px;
|
|
flex-wrap: wrap;
|
|
margin-top: 35px;
|
|
}
|
|
.bhk_flat {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.bhk_flat label,
|
|
.bhk_flat p {
|
|
color: #000;
|
|
font-weight: 500;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.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);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.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%;
|
|
height: 12px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 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);
|
|
grid-gap: 50px;
|
|
}
|
|
.footer p {
|
|
color: #D7D7D7;
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.footer ul {
|
|
padding: 0;
|
|
}
|
|
|
|
.footer ul li {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.footer ul a {
|
|
color: #D7D7D7;
|
|
font-size: 15px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.footer .f_logo {
|
|
margin-bottom: 30px;
|
|
display: block;
|
|
}
|
|
|
|
.footer h3 {
|
|
margin-bottom: 30px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.footer .f_logo img {
|
|
width: 130px;
|
|
height: 49px;
|
|
}
|
|
|
|
.footer .f2,
|
|
.footer .f3 {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.footer .social {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.footer .social img {
|
|
width: 30px;
|
|
height: 30px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.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-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-radius: 5px;
|
|
}
|
|
h2.main-head {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
font-family: inherit;
|
|
margin-bottom: 30px;
|
|
}
|
|
.main_content .step-box {
|
|
padding-top: 20px;
|
|
}
|
|
button.btn-primary {
|
|
border: 1px solid #9E9E9E;
|
|
background-color: transparent;
|
|
color: #000;
|
|
font-size: 15px;
|
|
padding: 7px 38px;
|
|
border-radius: 5px;
|
|
}
|
|
button.active.btn-primary{
|
|
border: 1px solid #001B9C;
|
|
background-color: #E5EAFF;
|
|
}
|
|
button.yellow-btn {
|
|
border: none;
|
|
background-color: #f5be3b;
|
|
color: #000;
|
|
font-size: 15px;
|
|
padding: 7px 22px;
|
|
border-radius: 5px;
|
|
}
|
|
button.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;
|
|
}
|
|
.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;
|
|
}
|
|
#nav-step3 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 #f5be3b;
|
|
}
|
|
.step-box .nav-tabs button {
|
|
color: #000;
|
|
border: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.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: 30px;
|
|
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;
|
|
}
|
|
.main_content .leads-page p {
|
|
margin-bottom: 2px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
.leads-page .review {
|
|
border: 1px solid #DEDEDE;
|
|
padding: 16px;
|
|
border-radius: 4px;
|
|
margin-bottom: 24px;
|
|
}
|
|
.leads-page .contact {
|
|
border: 1px solid #DEDEDE;
|
|
padding: 16px;
|
|
border-radius: 4px;
|
|
}
|
|
.main_content .leads-page .colour-gray {
|
|
font-weight: 400;
|
|
}
|
|
.leads-page .nav-tabs .nav-link.active {
|
|
border: none;
|
|
font-weight: 500;
|
|
color: #000;
|
|
}
|
|
.leads-page .nav-tabs .nav-link {
|
|
color: #7B7B7B;
|
|
border: none;
|
|
}
|
|
.leads-page .nav-tabs {
|
|
border: none;
|
|
margin-bottom: 5px;
|
|
}
|
|
.leads-page i.bi.bi-check2 {
|
|
background-color: #001B9C;
|
|
color: #fff;
|
|
width: 18px;
|
|
height: 18px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
border-radius: 50px;
|
|
}
|
|
.leads-page i.bi.bi-emoji-smile {
|
|
background-color: #F5BE3B;
|
|
width: 20px;
|
|
height: 18px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
border-radius: 40px;
|
|
padding-bottom: 20px;
|
|
color: #fff;
|
|
}
|
|
|
|
@keyframes growProgressBar {
|
|
0%, 33% { --pgPercentage: 0; }
|
|
100% { --pgPercentage: var(--value); }
|
|
}
|
|
|
|
@property --pgPercentage {
|
|
syntax: '<number>';
|
|
inherits: false;
|
|
initial-value: 0;
|
|
}
|
|
|
|
div.pro-progress[role="progressbar"] {
|
|
--size: 110px;
|
|
--fg: #F5BE3B;
|
|
--bg: #FFF9EA;
|
|
--pgPercentage: var(--value);
|
|
animation: growProgressBar 3s 1 forwards;
|
|
width: var(--size);
|
|
height: var(--size);
|
|
border-radius: 50%;
|
|
display: grid;
|
|
place-items: center;
|
|
background:
|
|
radial-gradient(closest-side, #FFF9EA 90%, transparent 0 99.9%, #FFF9EA 0),
|
|
conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0)
|
|
;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: calc(var(--size) / 6);
|
|
background-color: #FFF9EA;
|
|
}
|
|
|
|
div.pro-progress[role="progressbar"]::before {
|
|
counter-reset: percentage var(--value);
|
|
content: counter(percentage) '%';
|
|
}
|
|
.inner_contents .profile-sec {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.profile-page .pro-detals {
|
|
display: flex;
|
|
gap: 30px;
|
|
align-items: center;
|
|
}
|
|
.inner_contents .pro-detals h4 {
|
|
font-family: inherit;
|
|
font-size: 18px;
|
|
}
|
|
.inner_contents .pro-detals p {
|
|
margin-bottom: 5px;
|
|
}
|
|
.profile-page h3 {
|
|
font-family: inherit;
|
|
font-size: 18px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.profile-page .form-label {
|
|
font-size: 14px;
|
|
margin-bottom: 6px;
|
|
}
|
|
.card-shadow {
|
|
box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.profile-page button.yellow-btn {
|
|
padding: 8px 80px;
|
|
font-size: 14px;
|
|
}
|
|
.delete-icn {
|
|
color: #E40000;
|
|
}
|
|
.profile-page .delete-icn i {
|
|
font-size: 20px;
|
|
}
|
|
.for-sell-card {
|
|
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
|
|
padding: 16px;
|
|
grid-gap: 20px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin-bottom: 30px;
|
|
border-radius: 5px;
|
|
}
|
|
.card-grid-three {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 3fr);
|
|
}
|
|
.for-sell-card .detl {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.for-sell-card .detl img {
|
|
width: 20px;
|
|
}
|
|
.for-sell-card .card-body span {
|
|
margin-left: 9px;
|
|
font-size: 14px;
|
|
}
|
|
.for-sell-card .profile img {
|
|
width: 78px;
|
|
}
|
|
.header-hidden {
|
|
height: 80px;
|
|
width: 100%;
|
|
}
|
|
.for-sell-card h5 {
|
|
font-weight: 500;
|
|
font-size: 20px;
|
|
}
|
|
.for-sell-card p {
|
|
font-size: 14px;
|
|
}
|
|
.for-sell-card h6 {
|
|
font-family: inherit;
|
|
font-weight: 400;
|
|
border-bottom: 1px solid #E1E1E1;
|
|
padding-bottom: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.for-sell-card .card-details h4 {
|
|
font-family: inherit;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-top: 16px;
|
|
}
|
|
.for-sell-card .profile-details h4 {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
padding: 5px 33px;
|
|
font-family: inherit;
|
|
background-color: #061B37;
|
|
color: #fff;
|
|
display: inline-block;
|
|
position: absolute;
|
|
right: -30px;
|
|
top: 16px;
|
|
transform: rotate(45deg);
|
|
}
|
|
.for-sell-card .profile {
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid #CDCDCD;
|
|
padding-bottom: 25px;
|
|
}
|
|
.for-sell-card h3 {
|
|
font-size: 20px;
|
|
}
|
|
.for-sell-card .cont {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #CDCDCD;
|
|
}
|
|
.for-sell-card .cont p {
|
|
margin-bottom: 9px;
|
|
margin-top: 11px;
|
|
}
|
|
/* .for-sell-card .card-banner img {
|
|
height: auto;
|
|
} */
|
|
.for-sell-card .profile-details {
|
|
border-left: 1px solid #B8B8B8;
|
|
padding-left: 18px;
|
|
}
|
|
.card-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.property-page {
|
|
padding: 4rem 0;
|
|
}
|
|
.inner-head h2 {
|
|
font-size: 28px;
|
|
}
|
|
.inner-head {
|
|
margin-bottom: 32px;
|
|
}
|
|
.card-grid-two {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 2fr);
|
|
}
|
|
.card-grid-two .card-details {
|
|
grid-column: 2 / 22;
|
|
}
|
|
.for-sell-card .yellow-btn img {
|
|
width: 25px;
|
|
}
|
|
.card-grid-three .detl {
|
|
width: 50%;
|
|
}
|
|
.card-grid-two .detl {
|
|
width: 50%;
|
|
}
|
|
.property-card {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 3fr);
|
|
grid-gap: 24px;
|
|
}
|
|
.featured-card {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
|
|
border-bottom-left-radius: 7px;
|
|
border-bottom-right-radius: 7px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.featured-card .card-banner {
|
|
position: relative;
|
|
}
|
|
.featured-card .card-banner .yellow-box {
|
|
position: absolute;
|
|
right: 6px;
|
|
top: 6px;
|
|
background-color: #f5be3b;
|
|
padding: 4px 10px;
|
|
border-radius: 5px;
|
|
}
|
|
.featured-card .card-banner p {
|
|
font-size: 14px;
|
|
margin-bottom: 0;
|
|
}
|
|
.featured-card .location {
|
|
position: absolute;
|
|
bottom: 7px;
|
|
background-color: #fff;
|
|
padding: 6px 12px;
|
|
left: 7px;
|
|
border-radius: 6px;
|
|
}
|
|
.featured-card .card-banner p {
|
|
font-size: 14px;
|
|
margin-bottom: 0;
|
|
}
|
|
.featured-card .card-body {
|
|
padding: 16px;
|
|
}
|
|
.featured-card .card-body h6 {
|
|
font-family: inherit;
|
|
font-weight: 400;
|
|
margin-top: 16px;
|
|
}
|
|
.featured-card .card-body h5 {
|
|
font-family: inherit;
|
|
font-size: 16px;
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.featured-card p {
|
|
font-size: 14px;
|
|
margin-bottom: 18px;
|
|
}
|
|
.featured-card .detl {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.featured-card .detl p {
|
|
color: #000;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
}
|
|
.featured-card .detl img {
|
|
width: 20px;
|
|
}
|
|
.featured-card .card-body span {
|
|
margin-left: 9px;
|
|
font-size: 14px;
|
|
}
|
|
.featured-card .save i {
|
|
padding: 5px 8px;
|
|
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
|
|
border-radius: 5px;
|
|
font-size: 17px;
|
|
}
|
|
.featured-card .card-ftr {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 1px solid #C6C6C6;
|
|
padding-top: 15px;
|
|
}
|
|
.featured-card .yellow-btn img {
|
|
width: 30px;
|
|
margin-right: 4px;
|
|
}
|
|
.featured-card .yellow-btn {
|
|
padding: 5px 11px;
|
|
}
|
|
.featured-card .rera-status button {
|
|
border: 1px solid #DEDEDE;
|
|
background-color: transparent;
|
|
padding: 6px 8px;
|
|
font-size: 14px;
|
|
border-radius: 5px;
|
|
}
|
|
.featured-card .rera-status {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.property-tab-page .property-card {
|
|
margin-top: 40px;
|
|
}
|
|
.property-tab-page .nav-tabs button {
|
|
font-size: 15px;
|
|
color: #000;
|
|
border: none;
|
|
padding: 8px 70px;
|
|
}
|
|
.property-tab-page .nav-tabs button.active {
|
|
border-bottom: 2px solid #F5BE3B;
|
|
}
|
|
.property-tab-page ul.nav-tabs {
|
|
border-bottom: 2px solid #f5be3b38;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
.property-tab-page .featured-card .card-ftr {
|
|
padding-top: 0px;
|
|
border: none;
|
|
justify-content: center;
|
|
}
|
|
.featured-card .bht-date p {
|
|
font-weight: 600;
|
|
}
|
|
.featured-card .bht-date p span {
|
|
font-weight: 400;
|
|
}
|
|
.property-tab-page .featured-card .yellow-btn {
|
|
padding: 8px 46px;
|
|
}
|
|
.property-tab-page {
|
|
padding: 4rem 0;
|
|
}
|
|
.prop-heading button.sort-btn {
|
|
border: 1px solid #001B9C;
|
|
padding: 3px 14px;
|
|
border-radius: 5px;
|
|
font-size: 15px;
|
|
}
|
|
.sort-btn i.bi.bi-arrow-down-up {
|
|
font-weight: 600;
|
|
margin-left: 8px;
|
|
font-size: 17px;
|
|
}
|
|
.prop-heading {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
}
|
|
.sidebar_sec .inn_sidebar {
|
|
box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
|
|
}
|
|
.image-upload #preview {
|
|
cursor: pointer;
|
|
object-fit: cover;
|
|
/* border: 1px solid #DEDEDE; */
|
|
padding: 6px;
|
|
}
|
|
.image-upload #preview img {
|
|
max-width: 400px;
|
|
height: 100px;
|
|
border-radius: 0;
|
|
object-fit: cover;
|
|
}
|
|
.image-upload p.active.btn-primary {
|
|
border: 1px solid #001B9C;
|
|
background-color: #E5EAFF;
|
|
display: inline;
|
|
font-size: 15px;
|
|
padding: 7px 38px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
.listing-btn i {
|
|
font-size: 19px;
|
|
margin-left: 5px;
|
|
}
|
|
.add-pro .head-pro img {
|
|
width: 34px;
|
|
height: 34px;
|
|
}
|
|
.add-pro .listing-btn a {
|
|
border: 1px solid #f5be3b;
|
|
padding: 6px 18px;
|
|
border-radius: 5px;
|
|
}
|
|
.add-pro .head-pro i {
|
|
font-size: 23px;
|
|
margin-right: 14px;
|
|
}
|
|
.profile-page button.delete-icn {
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
.delete-account h1 {
|
|
font-family: inherit;
|
|
text-align: center;
|
|
font-size: 22px;
|
|
}
|
|
.delete-account .select-btn button {
|
|
padding: 7px 18px;
|
|
border: 1px solid #DEDEDE;
|
|
background-color: transparent;
|
|
border-radius: 5px;
|
|
margin-bottom: 11px;
|
|
margin-right: 4px;
|
|
font-size: 14px;
|
|
}
|
|
.delete-account .modal-body span {
|
|
display: flex;
|
|
justify-content: center;
|
|
font-weight: 500;
|
|
}
|
|
.delete-account .modal-body span {
|
|
display: flex;
|
|
justify-content: center;
|
|
font-weight: 500;
|
|
margin-top: 8px;
|
|
margin-bottom: 3px;
|
|
}
|
|
.delete-account .modal-body h3 {
|
|
font-family: inherit;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.delete-account .modal-body {
|
|
padding: 24px 32px;
|
|
}
|
|
.delete-account .modal-body button.btn {
|
|
border: 1px solid #f5be3b;
|
|
margin-left: 8px;
|
|
}
|
|
.appoint_page .h_para h2 {
|
|
padding-bottom: 0px;
|
|
font-size: 22px;
|
|
font-family: inherit;
|
|
}
|
|
.appoint_page .head_btns {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #DEDEE9;
|
|
margin-bottom: 20px;
|
|
}
|
|
.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;
|
|
}
|
|
.appoint_req .name_time {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
.appoint_req .name_time {
|
|
margin: 20px 0;
|
|
}
|
|
.calendar-container button {
|
|
font-weight: 400 !important;
|
|
}
|
|
.calendar-container .fc-col-header-cell .fc-scrollgrid-sync-inner {
|
|
display: flex;
|
|
justify-content: end;
|
|
font-weight: 400;
|
|
}
|
|
.calendar-container .fc-scrollgrid-sync-inner a {
|
|
color: #000;
|
|
font-size: 14px;
|
|
}
|
|
.calendar-container .fc-toolbar-chunk h2 {
|
|
font-size: 20px;
|
|
font-family: inherit;
|
|
}
|
|
.schedule-event .india-img {
|
|
padding: 55px 40px;
|
|
border-bottom: 1px solid #DEDEDE;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.schedule-event .india-img img {
|
|
width: 150px;
|
|
}
|
|
.schedule-event .time-const img {
|
|
width: 85px;
|
|
}
|
|
.schedule-event .time-const p {
|
|
font-size: 15px;
|
|
color: #656565;
|
|
}
|
|
.schedule-event h5 {
|
|
font-family: inherit;
|
|
font-size: 18px;
|
|
color: #000;
|
|
}
|
|
.schedule-event .time-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.calendar-card {
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
|
|
padding: 0px 20px;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
#calendar div#calendar_header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
#calendar h1 {
|
|
font-size: 18px;
|
|
font-family: inherit;
|
|
font-weight: 400;
|
|
margin-bottom: 0;
|
|
}
|
|
#calendar #calendar_weekdays {
|
|
display: flex;
|
|
}
|
|
#calendar #calendar_content {
|
|
flex-wrap: wrap;
|
|
display: flex;
|
|
}
|
|
.timezone h6 {
|
|
font-family: inherit;
|
|
font-weight: 500;
|
|
}
|
|
.timezone p {
|
|
color: #656565;
|
|
font-size: 14px;
|
|
}
|
|
.timezone i.bi-globe-asia-australia {
|
|
color: #005DE8;
|
|
font-size: 18px;
|
|
margin-right: 3px;
|
|
}
|
|
.schedule-event .time-date h5 {
|
|
font-size: 16px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.schedule-event .time-date button {
|
|
width: 100%;
|
|
border-radius: 3px;
|
|
border: 1px solid #DEDEDE;
|
|
background-color: transparent;
|
|
margin-bottom: 14px;
|
|
padding: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.schedule-event .time-sec {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 2fr);
|
|
grid-gap: 40px;
|
|
}
|
|
.schedule-event .modal-body {
|
|
border: 1px solid #DEDEDE;
|
|
margin: 0px 30px 30px;
|
|
padding: 0 !important;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
.schedule-event .time-const {
|
|
padding: 31px 15px 30px 31px;
|
|
}
|
|
.schedule-event .time-icon p {
|
|
margin-bottom: 0px;
|
|
margin-left: 12px;
|
|
}
|
|
.schedule-event .col-md-7 {
|
|
border-left: 1px solid #DEDEDE;
|
|
padding: 20px;
|
|
}
|
|
.schedule-event button.yellow-btn {
|
|
background-color: #f5be3b;
|
|
border: none;
|
|
}
|
|
|
|
.other_step_box .nav-tabs {
|
|
/* gap: 140px; */
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
border: 0;
|
|
justify-content: space-between;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 10px;
|
|
}
|
|
.other_step_box .nav-link.active .num {
|
|
background-color: #fff9ea;
|
|
border: 1px solid var(--yellow);
|
|
}
|
|
.other_step_box .nav-link.active .num {
|
|
background-color: #fff9ea;
|
|
border: 1px solid var(--yellow);
|
|
}
|
|
.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;
|
|
}
|
|
.step-box span.num_data {
|
|
font-size: 15px;
|
|
}
|
|
.step-box .nav-tabs .nav-link:focus, .step-box .nav-tabs .nav-link:hover {
|
|
border: none;
|
|
}
|
|
.step-box span.num_data {
|
|
font-size: 15px;
|
|
margin-top: 12px;
|
|
}
|
|
#preview .up_imgs, #preview2 .up_imgs {
|
|
width: 345px;
|
|
height: 130px;
|
|
border: 1px solid var(--gray);
|
|
border-radius: 5px;
|
|
object-fit: cover;
|
|
position: relative;
|
|
padding: 5px;
|
|
}
|
|
#preview2 .up_imgs video {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#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;
|
|
}
|
|
.other_step_box .btns_div {
|
|
display: flex;
|
|
align-items: center;
|
|
gap:17px 14px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.header .dropdown-menu a {
|
|
color: #000;
|
|
font-size: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.header .overlay {
|
|
display: none;
|
|
position: fixed;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
z-index: 1035 !important;
|
|
opacity: 0;
|
|
/* transition: all 0.5s ease-in-out; */
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
touch-action: pan-y;
|
|
user-select: none;
|
|
-webkit-user-drag: none;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.ham_burger, .overlay, .ham_cross, .nav_cross {
|
|
display: none;
|
|
}
|
|
.other_step_box .details-chek {
|
|
display: flex;
|
|
}
|
|
.property_table .inn_btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
.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 .dropdown-toggle::after {
|
|
display: none;
|
|
}
|
|
/* .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);
|
|
} */
|
|
|
|
/* foooter end */
|
|
|
|
|
|
|
|
/* 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;
|
|
}
|
|
.property-card {
|
|
grid-template-columns: repeat(2, 2fr);
|
|
}
|
|
.card-grid-two .card-details {
|
|
grid-column: 2 / 8;
|
|
}
|
|
.card-grid-two .detl {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.card-grid-three {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
.for-sell-card .profile-details {
|
|
border-left: 0;
|
|
padding-left: 0;
|
|
}
|
|
.profile-page button.yellow-btn {
|
|
padding: 8px 21px;
|
|
font-size: 14px;
|
|
}
|
|
.profile-page .pro-detals{
|
|
gap: 14px;
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|
|
.inner_contents .profile-sec {
|
|
display: block;
|
|
}
|
|
.inner_contents .locality_search .col-md-3 {
|
|
margin-bottom: 12px;
|
|
}
|
|
.all_products .checks {
|
|
border: none;
|
|
}
|
|
.showing_in span {
|
|
width: 155px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.property-card {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
|
|
.property-tab-page ul.nav-tabs {
|
|
display: block;
|
|
}
|
|
.property-tab-page ul.nav-tabs button {
|
|
width: 100%;
|
|
}
|
|
.inner-head h2 {
|
|
font-size: 24px;
|
|
}
|
|
.inner-head p {
|
|
font-size: 14px;
|
|
}
|
|
.for-sell-card.card-grid-two {
|
|
display: block;
|
|
}
|
|
.card-grid-two .card-banner {
|
|
margin-bottom: 14px;
|
|
}
|
|
.card-grid-three .detl {
|
|
width: 100%;
|
|
}
|
|
.profile-page button.yellow-btn {
|
|
padding: 8px 36px;
|
|
margin-top: 20px;
|
|
}
|
|
.card-shadow button.btn-primary {
|
|
margin-bottom: 10px;
|
|
}
|
|
.other_step_box .details-chek {
|
|
display: block;
|
|
}
|
|
.form_sec .container {
|
|
margin-top: 40px;
|
|
}
|
|
.form_sec form {
|
|
margin-top: 20px;
|
|
}
|
|
.other_step_box .btns_div{
|
|
gap: 3px 13px;
|
|
}
|
|
button.btn-primary{
|
|
padding: 7px 32px;
|
|
}
|
|
.other_step_box select.form-select {
|
|
margin-bottom: 10px;
|
|
}
|
|
.property_table div.dataTables_wrapper div.dataTables_filter input {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@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 1rem;
|
|
}
|
|
.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) {
|
|
.footer ul li {
|
|
margin-bottom: 14px;
|
|
}
|
|
.locality_search {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
.footer .inn_foot {
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 7px;
|
|
}
|
|
.footer {
|
|
padding: 40px 0 0;
|
|
margin-top: 25px;
|
|
}
|
|
.appoint_page .head_btns {
|
|
display: block;
|
|
padding-bottom: 14px;
|
|
}
|
|
.appoint_req .name_time.Accept {
|
|
display: block;
|
|
}
|
|
.name_time.Accept button {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Responsive end */ |