/*------------------------------------------------------------------
Project:
Author: The_Krishna
Last change: 
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.header CSS
3.Dashboard Body CSS
4.Quotation-row CSS
5.PayChart CSS
6.Latest Quotation CSS
7.All Quotation CSS
8.Calendar PopUp CSS
9.Customer Details CSS
10.Social Media Icons CSS
11.Event Calender CSS
12.Email Page CSS
13.ALL STAFF PAGE CSS
14.New Profile Page CSS
15.Profile Page CSS
16.Term Conditon Page CSS
17.MY Profile Page CSS
18.Login Page CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "IBM Plex Sans", system-ui;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #FFF;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.50) 100%);
}
body {
    background: #F1F4F8;
}
/*-----------------------[ 2.header CSS ]------------------------*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background: #ffff;
    z-index: 100;
    transition: all 0.5s ease;
    border-right: 1px solid #E3E3E3;
}
.sidebar.close {
    width: 78px;
}
.sidebar .logo-details {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #E3E3E3;
}
.sidebar .logo-details .logo_name {
    transition: 0.3s ease;
    transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name {
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
}
.sidebar .nav-links {
    height: 100%;
    padding: 16px 0 150px 0;
    overflow: auto;
    margin: 0 16px;
}
.sidebar.close .nav-links {
    overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar {
    display: none;
}
.inspection-main {
    position: relative;
}
.sidebar .nav-links li {
    list-style: none;
    transition: all 0.4s ease;
    margin-bottom: 16px;
}
.sidebar .nav-links a:hover {
    border-radius: 8px;
    background: #FE8500;
    color: #FFF;
}
.active-menu span {
    color: #FFF !important;
}
.active-menu img,
.all-staff-active-menu img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4207%) hue-rotate(233deg) brightness(102%) contrast(101%);
}
.active-menu {
    border-radius: 8px;
    background: #FE8500;
}
.all-staff-active-menu {
    background: #2466FF !important;
    color: #FFF !important;
}
.sidebar .nav-links a:hover .link_name {
    color: #fff;
}
.sidebar .nav-links a:hover .side-menu-svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4207%) hue-rotate(233deg) brightness(102%) contrast(101%);
}
.sidebar .nav-links li .icon-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar .nav-links li .icon-link:hover {
    background: #FE8500;
    border-radius: 8px;
    color: #FFF;
}
.sidebar .nav-links li .icon-link:hover .link_name {
    color: #FFF;
}
.sidebar .nav-links li .icon-link:hover .side-menu-svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4207%) hue-rotate(233deg) brightness(102%) contrast(101%);
}
.sidebar .nav-links li .icon-link:hover .arrow {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4207%) hue-rotate(233deg) brightness(102%) contrast(101%);
}
.sidebar.close .nav-links li .icon-link {
    display: block;
}
.sidebar .nav-links li {
    text-align: center;
    cursor: pointer;
}
.arrow {
    padding-right: 14px;
}
.sidebar.close .nav-links .arrow {
    display: none;
}
.sidebar .nav-links li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    padding: 12px;
}
.sidebar .nav-links li a .link_name {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name {
    display: none;
    pointer-events: none;
}
.sidebar .nav-links li .sub-menu {
    padding: 15px 0 0 14px;
    display: none;
    max-width: 240px;
    width: 100%;
    margin: 0 auto 0 20px;
}
.sidebar .nav-links li.showMenu .sub-menu {
    display: block;
}
.sidebar .nav-links li .sub-menu a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 8px;
    background: #F1F4F8;
}
.all-staff a:hover {
    background: #2466FF !important;
    color: #FFF !important;
}
.all-staff:hover .submenu-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4207%) hue-rotate(233deg) brightness(102%) contrast(101%);
}
.sub-menu li {
    margin-bottom: 8px !important;
}
.sidebar.close .nav-links li .sub-menu {
    position: absolute;
    left: 26px;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    width: 250px;
}
.sidebar .nav-links li .sub-menu .link_name {
    display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name {
    font-size: 18px;
    opacity: 1;
    display: block;
}
.sidebar .nav-links li .sub-menu.blank {
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank {
    top: 50%;
    transform: translateY(-50%);
}
.home-section {
    position: relative;
    background: #F1F4F8;
    left: 300px;
    width: calc(100% - 300px);
    transition: all 0.5s ease;
}
.sidebar.close~.home-section {
    left: 78px;
    width: calc(100% - 78px);
}
.home-section .home-content {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 1px solid #E3E3E3;
    background: #FFF;
    position: sticky;
    top: 0;
    z-index: 500;
}
.home-section .home-content .bx-menu {
    margin-right: 24px;
    cursor: pointer;
}
.search-main {
    position: relative;
    width: 100%;
}
.search-main input {
    width: 100%;
    max-width: 460px;
    border: none;
    padding: 12px 12px 12px 50px;
    border-radius: 8px;
    background: #F1F4F8;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.search-normal {
    position: absolute;
    top: 12px;
    left: 12px;
}
.dashbord-body {
    padding: 25px;
}
.notification-section {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.notification-circle {
    width: 48px;
    height: 48px;
    background: #F1F4F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-img-main img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
/*-----------------------[ 3.Dashboard Body CSS ]------------------------*/
.visitors-box {
    padding: 34px 16px 16px 16px;
    border-radius: 8px;
    border: 1px solid var(--D1, #E3E3E3);
    height: 100%;
    position: relative;
}
#visitors-box1 {
    background: linear-gradient(270deg, #FFF 0%, #DDE6F9 100%);
}
#visitors-box2 {
    background: linear-gradient(270deg, #FFF 0%, #E4E1F8 100%);
}
#visitors-box3 {
    background: linear-gradient(270deg, #FFF 0%, #F0DDE1 100%);
}
#visitors-box4 {
    background: linear-gradient(270deg, #FFF 0%, #DEF1EA 100%);
}
.visitor-row {
    padding-top: 18px;
}
.visitors-box-sub {
    display: flex;
    align-items: center;
    gap: 16px;
}
.total-vis-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid var(--D1, #E3E3E3);
    background: var(--1, #FFF);
    padding: 8px;
    width: 100%;
    max-width: fit-content;
    position: absolute;
    top: -18px;
}
#total-vis-text1 {
    color: #2466FF;
}
#total-vis-text2 {
    color: #6F34EC;
}
#total-vis-text3 {
    color: #E30A0A;
}
#total-vis-text4 {
    color: #35D168;
}
.profile-user-main {
    border-radius: 4px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#profile-user-main1 {
    background: #2466FF;
}
#profile-user-main2 {
    background: #6F34EC;
}
#profile-user-main3 {
    background: #E30A0A;
}
#profile-user-main4 {
    background: #35D168;
}
.visitor-total {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
}
.increase {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.increase span {
    color: #35D168;
    font-weight: 500;
}
/*-----------------------[ 4. Quotation-row CSS ]------------------------*/
.Quotation-row {
    margin-top: 24px;
}
.Quotation-chart-box {
    background: #FFF;
    padding: 24px;
    border-radius: 8px;
    height: 100%;
}
.quot-text {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.yer-quot-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select {
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    padding: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}
.apexcharts-toolbar {
    display: none !important;
}
.apexcharts-legend-text {
    color: var(--2, #000);
    font-family: "IBM Plex Sans" !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 20px;
}
.apexcharts-legend-text {
    padding-left: 15px;
    margin-left: -10px !important;
}
.apexcharts-legend {
    display: flex;
    overflow: auto;
    padding: 0 10px;
    margin-top: 10px;
    margin-bottom: 32px;
}
.eyebtn-hide {
    border-radius: 8px;
    border: 1px solid var(--D1, #E3E3E3);
    background: var(--1, #FFF);
    padding: 10px;
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.eye-btn-show:hover .eyebtn-hide {
    display: block;
}
/*-----------------------[ 5.PayChart CSS ]------------------------*/
.custom-legend {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
    margin-bottom: 25px;
}
.custom-legend span {
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.custom-legend span::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 5px;
}
.custom-legend .male::before {
    background-color: #6F34EC;
}
.custom-legend .female::before {
    background-color: #FF9F29;
}
#chart {
    margin: 0 auto;
    position: relative;
}
.hover-box {
    position: absolute;
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hover-box span {
    display: block;
    color: var(--2, #000);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.hover-box.male {
    bottom: 15%;
    right: 5%;
}
.hover-box.female {
    top: 30%;
    left: 5%;
}
/*-----------------------[ 6.Latest Quotation CSS ]------------------------*/
.viewAll-btn {
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    padding: 8px;
}
.viewAll-btn a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}
.viewArrow {
   width: 20px;
}
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 24px;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    border: 1px solid #E3E3E3;
}
th,
td {
    padding: 16px;
    border-bottom: 1px solid #E3E3E3;
}
th {
    background: #F1F4F8;
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.status {
    text-align: center;
}
.quoteId {
    background: #F1F4F8;
}
.status-btn {
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    width: 100%;
    text-align: center;
}
.status-new {
    border-radius: 8px;
    background: rgba(255, 159, 41, 0.12);
    color: var(--D7, #FF9F29);
}
.status-pending {
    border-radius: 8px;
    background: rgba(36, 102, 255, 0.12);
    color: #2466FF;
}
.status-done {
    border-radius: 8px;
    background: rgba(53, 209, 104, 0.12);
    color: #35D168;
}
.status-FinalQuote {
    border-radius: 8px;
    background: rgba(227, 10, 10, 0.12);
    color: #E30A0A;
}
.customer-id {
    color: #2466FF;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.table-data {
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.table2 {
    min-width: 450px;
}
.table2 td {
    padding: 16px 12px;
}
footer {
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    border: 1px solid #E3E3E3;
}
footer p,
footer p a {
    color: #000;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
#messages-box,
#notification-bing,
#translate {
    cursor: pointer;
}
#notification-bing-show {
    display: none;
    position: absolute;
    left: -200px;
}
.sms-box {
    width: 330px;
    padding: 16px;
    background: #FFF;
    border-radius: 8px;
    height: 440px;
    overflow: auto;
    display: none;
    position: absolute;
    top: 55px;
    left: -270px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.sms-box.show {
    display: block;
    opacity: 1;
}
.sms-box.hide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}
.hidden {
    display: none;
}
.message-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    padding-bottom: 14px;
    border-bottom: 1px solid #E3E3E3;
}
.message-profile-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.message-profile-sub img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.Cameron-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.Cameron a {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #000;
}
.Cameron a:hover {
    color: #2466FF;
}
.Cameron-mian-head {
    width: 100%;
}
.Cameron-Time {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}
.incoming-message {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
}
.message-profile-sub1 {
    width: 65px;
    height: 50px;
    background: #35D168;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.keyframes {
    width: 20px !important;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(267deg) brightness(106%) contrast(101%);
}
#translate-show {
    display: none;
    width: 190px;
    height: 350px;
    left: 10px;
}
.lang-text {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}
.lang-text:hover {
    color: #2466FF;
}
/*-----------------------[ 7.All Quotation CSS ]------------------------*/
table.allQuotation {
    min-width: 1200px;
}
.controls-main {
    border-radius: 8px;
    background: var(--1, #FFF);
    padding: 12px 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.controls-cut {
    gap: 24px;
}
.showing {
    color: var(--2, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.dropdown {
    position: relative;
}
.dropdown-btn {
    background-color: transparent;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 8px;
}
.dropdown-btn::after {
    content: url('../images/svg/arrow-down.svg');
    margin-left: 10px;
    color: #fff;
    height: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 5px;
    overflow: hidden;
}
.dropdown-btn.rotate::after {
    transform: rotate(180deg);
}
.dropdown-content .dropdown-item {
    color: #000;
    padding: 12px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}
.dropdown-content .dropdown-item:hover {
    background-color: #f1f1f1;
}
.show {
    display: block;
}
.assign {
    width: 200px;
}
.searchQuotation {
    position: relative;
    width: 100%;
    max-width: 422px;
}
.searchQuotation input {
    width: 100%;
    max-width: 422px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 12px 12px 50px;
    border-radius: 8px;
    background: var(--D2, #F1F4F8);
    border: none;
}
.searchQuotation2,
.searchQuotation2 input {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
}
.Filter-btn {
    width: 100%;
    max-width: 150px;
    margin: 5px auto 20px auto;
    border-radius: 8px;
    background: var(--D5, #E30A0A);
    color: var(--1, #FFF);
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 8px;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.search-icons-main {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-icons {
    border-radius: 8px;
    border: 1px solid var(--D1, #E3E3E3);
    background: var(--1, #FFF);
    padding: 10px;
    cursor: pointer;
}
.entries {
    color: var(--2, #000);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.pagination-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(111, 52, 236, 0.12);
    color: #6F34EC;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}
.pagination-btn:hover {
    background: #6F34EC;
    color: #FFF;
}
.pagination-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(267deg) brightness(106%) contrast(101%);
}
.pagination-btn-active {
    background: #6F34EC;
    color: #FFF;
}
.arrows-bg {
    background: var(--D2, #F1F4F8);
}
.pagination-btn-main-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
}
.pagination-btn3 {
    margin-right: 25px;
}
.pagination-btn-main {
    display: flex;
    align-items: center;
    gap: 8px;
}
.layout-grid,
.layout-grid2 {
    display: none;
}
/*-----------------------[ 8.Calendar PopUp CSS ]------------------------*/
.calendar {
    height: max-content;
    width: max-content;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 60px;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}
.show-calendar {
    display: block;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
    font-weight: 600;
    padding: 10px;
}
.calendar-body {
    padding: 10px;
}
.calendar-week-day {
    height: 50px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: 600;
}
.calendar-week-day div {
    display: grid;
    place-items: center;
    color: #FE8500;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.calendar-days div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    cursor: pointer;
    animation: to-top 1s forwards;
}
.calendar-days div:hover {
    background-color: #FE8500;
    color: #FFF;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.calendar-days div span {
    position: absolute;
}
.calendar-days div.curr-date span {
    display: none;
}
.month-picker {
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    color: #FE8500;
}
#year {
    color: #FE8500;
}
.year-picker {
    display: flex;
    align-items: center;
}
.year-change {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 10px;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(12%) sepia(81%) saturate(3335%) hue-rotate(228deg) brightness(88%) contrast(119%);
}
.month-list {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
    display: grid;
    transform: scale(1.5);
    visibility: hidden;
    pointer-events: none;
}
.month-list.show {
    transform: scale(1);
    visibility: visible;
    pointer-events: visible;
    transition: all 0.2s ease-in-out;
    background: #FFF;
}
.month-list>div {
    display: grid;
    place-items: center;
}
.month-list>div>div {
    width: 100%;
    padding: 5px 20px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
.month-list>div>div:hover {
    background: #FE8500;
    color: #FFF;
}
@keyframes to-top {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.calendar-days div.curr-date {
    background-color: #E30A0A;
    color: #FFF;
    border-radius: 8px;
}
.calendar-days div.selected-date {
    background-color: #FE8500;
    color: #FFF;
    border-radius: 8px;
}
/*-----------------------[ 9.Customer Details CSS ]------------------------*/
.custom-back-btn {
    border-radius: 8px;
    background: #F1F4F8;
    padding: 8px 12px;
    color: #000;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.box1 {
    margin: 30px 0;
}
.customer-datails {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 14px 15px;
    border-radius: 8px 8px 0px 0px;
    background: #2466FF;
}
#customer-datails {
    background: #F1F4F8;
    color: #000;
    border: 1px solid #E3E3E3;
}
.table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 15px;
    border: 1px solid #E3E3E3;
    border-bottom: 0;
    gap: 10px;
}
.table-row input {
    width: 100%;
    padding: 8px;
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    border: none;
}
#finalPrice::placeholder {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--D4, #6F34EC);
}
#finalPrice {
    color: var(--D4, #6F34EC);
    border-radius: 5px;
    background: rgba(111, 52, 236, 0.12);
    max-width: 140px;
    text-align: center;
    margin: 0 auto 0 0;
}
#Writehere::placeholder {
    color: var(--2, #000);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.table-radius {
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid #E3E3E3;
}
.quote-text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    max-width: 420px;
    width: 100%;
}
.quote-text2 {
    max-width: 250px;
}
.quote-text-thin {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    max-width: 320px;
    width: 100%;
}
#customer-datails-main {
    position: sticky;
    top: 90px;
}
.send-qoute-btn {
    border-radius: 8px;
    background: var(--D5, #E30A0A);
    padding: 8px;
    color: var(--1, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
/*-----------------------[ 10.Social Media Icons CSS ]------------------------*/
.social.open ul li {
    opacity: 1;
}
.js-btn-open {
    width: 46px;
    height: 46px;
}
.social ul li {
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    margin: 8px 0;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social ul li:hover {
    border: 1px solid #2466FF;
}
.social {
    position: absolute;
    top: 50px;
    z-index: 2;
}
/*-----------------------[ 11.Event Calender CSS ]------------------------*/
.scroll {
    overflow-x: scroll;
}
.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    display: none;
}
.fc .fc-daygrid-day-frame {
    min-height: 140px;
    position: relative;
    height: 100%;
}
.fc-scrollgrid-sync-inner {
    padding: 16px !important;
}
.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
    padding: 8px;
    border-radius: 4px;
}
.fc-h-event {
    border: none;
}
.fc-h-event .fc-event-main {
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}
.fc-day-today .fc-daygrid-day-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2466FF;
    color: #FFF !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc .fc-daygrid-day-number {
    color: var(--2, #000);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}
.fc .fc-col-header-cell-cushion {
    color: var(--2, #000);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}
.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent;
}
.fc .fc-toolbar-title {
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}
.fc-dayGridMonth-button,
.fc-timeGridWeek-button,
.fc-timeGridDay-button {
    border-radius: 8px !important;
    border: 1px solid var(--D3, #2466FF) !important;
    background: var(--1, #FFF) !important;
    color: var(--D3, #2466FF) !important;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 20px !important;
    text-transform: uppercase !important;
    width: 130px !important;
    padding: 8px !important;
}
.fc .fc-button:focus {
    box-shadow: none !important;
    outline: none !important;
}
.fc-prev-button {
    margin-right: 10px !important;
}
.fc-prev-button,
.fc-next-button {
    border-radius: 8px !important;
    border: 1px solid var(--D1, #E3E3E3) !important;
    background: var(--1, #FFF) !important;
    padding: 8px !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.fc-icon {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7498%) hue-rotate(184deg) brightness(102%) contrast(100%);
}
.fc-today-button {
    border-radius: 8px !important;
    border: 1px solid var(--D1, #E3E3E3) !important;
    background: var(--1, #FFF) !important;
    color: var(--2, #000) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    padding: 8px !important;
}
.fc .fc-button:disabled {
    opacity: 1;
}
.fc-button-active {
    background: #2466FF !important;
    color: #FFF !important;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
    margin-right: 2px;
    padding: 3px 10px;
    background: rgba(111, 52, 236, 0.12);
    color: #6F34EC;
}
.fc-daygrid-event-dot {
    display: none;
}
/*-----------------------[ 12.Email Page CSS ]------------------------*/
.Quotation-chart-box-email {
    padding: 16px;
    height: auto;
}
.ComposeMail {
    color: var(--1, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    background: #FE8500;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    cursor: pointer;
}
.ComposeMail-Inbox {
    color: var(--2, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #E3E3E3;
}
.ComposeMail-Inbox-main:hover img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(97%) saturate(1370%) hue-rotate(210deg) brightness(83%) contrast(127%);
}
.ComposeMail-Inbox-main:hover .ComposeMail-Inbox {
    color: #FE8500;
}
.tags-text {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding: 16px 0;
    border-top: 1px solid #E3E3E3;
}
.box-colors-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.box-colors-main p a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.box-colors {
    border-radius: 8px;
    width: 24px;
    height: 24px;
}
#box-colors1 {
    background: #2466FF;
}
#box-colors2 {
    background: #35D168;
}
#box-colors3 {
    background: #E30A0A;
}
#box-colors4 {
    background: #6F34EC;
}
.remember {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.remember input[type=checkbox] {
    position: relative;
    cursor: pointer;
}
.remember input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: -2px;
    left: -1px;
    border: 2px solid #000;
    border-radius: 6px;
    background-color: #FFF;
}
.remember input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    left: 6px;
}
.more-mess {
    cursor: pointer;
}
.more-show {
    display: none;
    background-color: #FFF;
    margin: 0;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 200px;
    position: absolute;
    top: 40px;
    left: -40px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
/* Style for the dropdown container */
.email-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
}
.email-header-box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.email-header-box3 {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    width: 60%;
}
.dropdown-btn-email {
    cursor: pointer;
}
.dropdown-list-email {
    display: none;
    position: absolute;
    top: 30px;
    background-color: #FFF;
    list-style-type: none;
    margin: 0;
    width: 150px;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.dropdown-list-email li {
    padding: 7px 40px;
    cursor: pointer;
    color: #707070;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.dropdown-list-email li:hover {
    background-color: #F1F4F8;
}
.show {
    display: block;
}
.email-pagination {
    color: #707070;
    text-align: right;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.pagination-btn-email {
    background: transparent;
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FFF;
}
.pagination-btn-email:hover {
    background: #FE8500;
}
.email-mail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 24px;
    cursor: pointer;
    border-top: 1px solid #F1F4F8;
    position: relative;
}
.email-mail:hover {
    background: #F1F4F8;
}
.email-mail:hover .email-hover-box {
    opacity: 1;
}
.email-hover-box {
    opacity: 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.12);
    position: absolute;
    right: 24px;
    top: 10px;
    transition: all 0.3s ease-in-out;
}
.remember2 input[type=checkbox]:before {
    border: 2px solid #707070;
}
.nichols {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    width: 150px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.nichols2 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 760px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.nichols2 span {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.month-day {
    color: #707070;
    text-align: right;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    width: 100px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.checkbox-star {
    display: flex;
    align-items: center;
    gap: 16px;
}
.star-icon {
    cursor: pointer;
    transition: fill 0.3s ease, stroke 0.3s ease;
    width: 20px;
}
.star-icon.active path {
    fill: #f8b004;
    stroke: #f8b004;
}
.file-message {
    border-radius: 18px;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    width: fit-content;
    margin-top: 8px;
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.menu-toggle-button {
    display: none;
}
/*-----------------------[ 13.ALL STAFF PAGE CSS ]------------------------*/
button.dropdown-btn.assign2 {
    width: 250px;
}
.add-New-staff {
    padding: 12px 20px;
    border-radius: 8px;
}
.add-New-staff img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7493%) hue-rotate(253deg) brightness(102%) contrast(103%);
}
.card-main {
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FFF;
}
.card-main-sub {
    padding: 0 24px 24px 24px;
}
.staff-row {
    gap: 24px 0;
}
.staff-bg {
    border-radius: 8px 8px 0 0;
    width: 100%;
}
.view-eye-btn img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7493%) hue-rotate(253deg) brightness(102%) contrast(103%);
}
.more-white {
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(2px);
    width: 40px;
    height: 40px;
    padding: 8px;
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}
.profile-staff {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #FFF;
    margin-top: -50px;
    z-index: 1;
}
.profile-staff-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.staff-name {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 12px;
}
.staff-eamil {
    text-align: center;
}
.staff-eamil a {
    color: #707070;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.staff-eamil a:hover {
    color: #FE8500;
}
.department-box {
    border-radius: 8px;
    border: 1px solid var(--D1, #E3E3E3);
    padding: 16px;
    width: 100%;
}
.department-main {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 24px 0 16px;
}
.department-box1 {
    background: linear-gradient(296deg, #FFF 0%, #E4E1F8 100%);
}
.department-box2 {
    background: linear-gradient(296deg, #FFF 0%, #DEF1EA 100%);
}
.roof-replace {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.department {
    color: #707070;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.short-popUp {
    background-color: #FFF;
    margin: 0;
    z-index: 7;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px;
    width: 130px;
    position: absolute;
    top: 55px;
    right: 10px;
    display: none;
}
.short-popUp p {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 5px 0;
    cursor: pointer;
}
/*-----------------------[ 14.New Profile Page CSS ]------------------------*/
.AddNewStaff-body {
    padding-bottom: 70px;
}
.new-profile {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.profile-edit-img-sub {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #F1F4F8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-edit-img-sub2 {
    width: 335px;
    height: 100px;
    border-radius: 8px;
}
.profile-edit-img-sub2 img {
    border-radius: 4px !important;
}
.profile-edit-img-sub img {
    border-radius: 50%;
    width: 100%;
    max-height: 200px;
    height: auto;
}
.file-upload {
    display: none;
}
.profile-div-main {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 0;
}
.upload-button {
    color: #35D168;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    background: rgba(53, 209, 104, 0.12);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.upload-button img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(94%) saturate(349%) hue-rotate(87deg) brightness(100%) contrast(90%);
}
.profilePhotoText {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.form-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    gap: 24px;
}
.form-flex-sub {
    width: 100%;
    max-width: 100%;
}
.form-flex-sub p {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
    line-height: 24px;
}
.form-flex-sub input,
.form-flex-sub textarea {
    width: 100%;
    height: 48px;
    padding: 8px 24px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    border-radius: 8px;
    border: 1px solid var(--D1, #E3E3E3);
}
.add-staff-page-btn {
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 32px;
    border: 2px solid transparent;
}
.save-btn {
    background: #FE8500;
    color: #FFF;
}
.save-btn:hover {
    background: transparent;
    border: 2px solid #FE8500;
    color: #FE8500;
}
.cancel-btn {
    color: #E30A0A;
    background: transparent;
    border: 2px solid #E30A0A;
}
.cancel-btn:hover {
    background: #E30A0A;
    color: #FFF;
}
.add-staff-page-btn-main {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}
.addNewStaff-footer {
    width: calc(100% - 300px);
    position: fixed;
    bottom: 0;
    left: 300px;
    transition: all 0.3s ease-in-out;
}
.sidebar.close~.home-section .addNewStaff-footer {
    position: fixed;
    left: 78px;
    width: calc(100% - 78px);
}
/*-----------------------[ 15.Profile Page CSS ]------------------------*/
.form-flex-profile {
    margin-top: 15px;
}
.form-flex-profile .form-flex-sub input,
.form-flex-profile .form-flex-sub textarea {
    border-bottom: 1px solid #E3E3E3;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0 0 12px 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    height: auto;
}
.form-flex-profile .form-flex-sub textarea {
    height: 72px;
}
#Description-text {
    padding-right: 15px;
}
.form-flex-profile .form-flex-sub p {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.form-flex-profile .form-flex-sub {
    margin-bottom: 14px;
}
#new-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*-----------------------[ 16.Term Conditon Page CSS ]------------------------*/
.ql-toolbar.ql-snow {
    border: 1px solid #E3E3E3;
    margin-bottom: 24px;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
    padding: 3px 18px;
}
#editor {
    display: none;
}
.scope-box {
    margin-bottom: 24px;
}
.customer-datails-scope {
    padding: 14px 24px;
}
.scope-list {
    padding: 16px 24px;
    border: 1px solid var(--D1, #E3E3E3);
    border-radius: 0 0 8px 8px;
}
.scope-list li {
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.scope-list li span {
    padding-right: 10px;
}
.controls-main-scope {
    flex-wrap: wrap;
}
/*-----------------------[ 17.MY Profile Page CSS ]------------------------*/
#my-profile {
    margin-bottom: 24px;
}
.my-profile-dropdown {
    width: 100%;
}
/*-----------------------[ 18.Login Page CSS ]------------------------*/
.bg-login {
    background-image: url('../images/home-img/login-img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 40px;
    background-color: var(--D2, #F1F4F8);
    padding: 40px;
    height: calc(100vh - 70px);
}
.login-main {
    padding: 40px;
    background: #FFF;
    width: 100%;
    display: block;
    overflow: hidden;
    position: fixed;
    left: 0px;
    right: 0px;
}
.best-services {
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-top: 40px;
}
.local {
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    text-transform: uppercase;
}
.offer-free {
    color: var(--2, #000);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    border-left: 10px solid #FE8500;
    padding-left: 20px;
    margin-top: 20px;
}
.form-login-col {
    display: flex;
    align-items: center;
}
.form-login {
    padding: 0 80px;
}
.welcome-text {
    color: var(--2, #000);
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
}
.allows {
    color: var(--2, #000);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}
.button-link-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}
.buttons-link {
    color: var(--3, #FE8500);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid var(--3, #FE8500);
    width: 100%;
}
.buttons-link:hover {
    background: #FE8500;
    color: #FFF;
}
.buttons-link img{
    filter: brightness(0) saturate(100%) invert(48%) sepia(91%) saturate(1632%) hue-rotate(3deg) brightness(105%) contrast(103%);
}
.buttons-link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4207%) hue-rotate(233deg) brightness(102%) contrast(101%);
}
.or-section {
    margin-bottom: 40px;
}
.or-section p {
    color: var(--D8, #707070);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    overflow: hidden;
}
.or-section p:before,
.or-section p:after {
    background: #F1F4F8;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.or-section p:before {
    right: 8px;
    margin-left: -50%;
}
.or-section p:after {
    left: 8px;
    margin-right: -50%;
}
.form-flex-sub-login {
    padding-bottom: 20px;
}
.account-create-btn {
    background: #FE8500;
    color: #FFF;
    margin-top: 10px;
}
.account-create-btn:hover {
    background: transparent;
    color: #FE8500;
}
.Already {
    color: var(--D8, #707070);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 40px;
}
.Already a {
    color: #000;
    font-weight: 500;
}
#eye {
    position: absolute;
    right: 20px;
    top: 40px;
}
.remember-pass {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.checkbox-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.Forget a {
    color: var(--D5, #FE8500);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}