/* Font Setup */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: Averta;
    src: url(/fonts/AvertaStd-ExtraBold.ttf);
    font-weight: 400, 500, 600, 800;
}

/* Root setup */

:root {
    --yellow: #fdc300;
    --red: #e73345;
    --green: #2eac66;
    --blue: #009ee3;
    --gray: #9d9c9c;
    --light-gray: #ececec;
}

/* Animations */

@keyframes slideUp {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}

@-moz-keyframes slideUp {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}

@-webkit-keyframes slideUp {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* End of animations */

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Inter', sans-serif;
    background-color: #f6f6f6 !important;
}


a {
    /*color:var(--yellow);*/
    color: black;
    text-decoration: none !important;
}

a.text-yellow {
    color: var(--yellow);
}

a:hover {
    color: black !important;
}

h1 {
    font-size: 42px;
    font-family: Averta;
    font-weight: 700 !important;
}

h2 {
    font-size: 36px;
    font-family: Averta;
    font-weight: 700 !important;
}

.filterbutton {
    width: 45px;
    height: 45px;
    line-height: 32px;
    text-align: center;
    /*color: white;*/
    font-size: 20px;
    font-weight: 400;
    border-radius: 100px;
    /*margin-right: 2px;*/
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    color: black;
    /*margin-right: 7px !important;*/
    transition: 0.2s;
    margin-left: auto;
    margin-right: auto;

}

.filterbox a {
    width: 70px;
}

.filterbuttons h2, .filterbuttons .totalleads {
    vertical-align: top;
}

.filterbuttons {
    margin-top: 25px !important;
}

.filterbutton:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.projectheader {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px !important;
}

.projectoptions {
    float: right;
    font-size: 0.8em;
}

.searchform {
    border: none !important;
    border-bottom: solid 1px gray !important;
    border-radius: 0px;
    padding: 10px;
    margin-left: 10px !important;
    margin-right: 20px;
}


.logoheader {
    height: 80px;
    margin-top: 12px;
}

.badge-gray, .bg-color-gray {
    background-color: #C9D0D8 !important;
    color: white;
}

.badge-orange, .bg-color-orange {
    background-color: #fdc300 !important;
    color: white;
}

.max-width-1400 {
    padding: 0px !important;
    max-width: 1380px;
    width: 90%;
    margin: auto !important;
}


.badge-blue, .bg-color-blue {
    background-color: #2788EA !important;
    color: white;

}

.badge-purple, .bg-color-purple {
    background-color: #9564EA !important;
    color: white;
}

.badge-red, .bg-color-red {
    background-color: #DE3F3F !important;
    color: white;
}


.badge-yellow, .bg-color-yellow {
    background-color: #FFCC34 !important;
    color: white;
}

.badge-green, .bg-color-green {
    background-color: #73C97D !important;
    color: white;
}

.leadstable th {
    font-size: 0.7em;
    color: gray;
}

.status-badge {
    height: 40px !important;
    border-radius: 7px 0px 0px 7px;
    margin-top: -5px;
}

.calendericon {
    margin-right: 6px;
}


.modal-lg, .modal-xl {
    max-width: 1050px;
}

.modal-content {
    padding: 30px;
}

.addfollowup {
    transform: translate(10px 0px) !important;
    color: orange !important;
}

.modallogo {
    width: 60%;
    margin-left: 20%;
}


.sendinformation {
    color: green;
}

.logomenu {
    width: 80%;
    margin-left: 10%;
}

.leftmenu {
    font-size: 1.2em;
    font-weight: 700
}

.nav-icon-left {
    margin-right: 10px;
}

.menuitemproject {
    font-weight: 500 !important;
}

.badge-danger {
    width: 33px !important;
    height: 33px !important;
    padding-top: 9px !important;
    border-radius: 100px;
}

.btn-success {
    background-color: #73C97D;
    background: rgb(26, 215, 105);
    background: linear-gradient(129deg, rgba(26, 215, 105, 1) 0%, rgba(78, 180, 23, 1) 100%);
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: white !important;
    transition: 0.3s;
}

.btn-success:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
}


.btn-addnote {
    padding: 0px;
}

.btn-addnote:hover {
    font-weight: 700 !important;
}

.new-project {
    font-size: 0.8em;
}

.less-padding {
    padding: 0px !important;
    margin-top: -10px;
}

.sidemenu a:hover {
    font-weight: 900;
}

.sidemenu a {
    transition: 0.3s;
    animation-timing-function: ease-out;
    font-size: 0.9em;

}

.very-small-test {
    margin-left: -7px;
    margin-bottom: 5px;

}

.nametitle {
    margin-bottom: 10px;
    font-weight: 1000;
}


.leadrow, tr, td {
    border: 0px solid red !important;
    transition: 0.2s;
    font-size: 15px;
    font-weight: 400 !important;

}

tr.leadrow {
    box-shadow: 2px 2px 7px 0px #00000069;

}

.leadrow td {
    background-color: white !important;
    /*border-radius: 10px !important;*/
    padding-top: 10px !important;

}

.leadstable th {
    padding: 7px 0px !important;
}

.leadstable .checkbox-th {
    padding-left: 10px !important;
}

.leadrow:hover {
    transform: scale(1.02);
    cursor: pointer;
    transition: 0.2s;
}

.leadrow .status-badge {
    margin-right: 7px;
    height: 100px;

}

.margin-top-9 {
    padding-top: 8px !important;
}

.btn-secondary {
    background-color: #e8e8e8;
    border: none;
}

.sidemenu {
    width: 300px !important;
    margin-top: 48px;
}

.main-section {
    width: calc(100% - 300px) !important;
}

.leadrow {
    height: 45px !important;
}

.badgepadding {
    padding-top: 5px !important;
    width: 35px !important;
}

.leadrow .status-badge {
    height: 45px !important;
    width: 45px !important;
    border-radius: 100%;
}

.lead-note {
    padding-right: 20px !important;
}

.sidemenu .p-5 {
    padding: 3rem 01rem !important;
}

.modal-content, .modal-body {
    padding: 0px !important;
    border-radius: 15px;
}

.topbar {
    background: #eff0f3;
    padding: 8px 10px;
    border: 1px solid #E2E2E2;
    border-radius: 10px 10px 0px 0px;
}

.breadcrum {
    background: white;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 13px;
    display: inline-block;
    font-weight: 600;
}

.closemodal {
    height: 32px !important;
    right: 8px;
    position: absolute;
    top: 8px;
    background: white;
    padding: 6px;
    border-radius: 5px;
}

.closemodal {
    transition: 0.5s;
}

.closemodal:hover, .packagebutton:hover {
    background-color: #f5f5f5;
}

.deletelead {
    margin-left: 10px;
    font-size: 12px !important;
    color: #7a7a7a !important;
}

.border-gray {
    border: 1px solid #d1d1d1;
}

.packagebutton {
    background-color: white;
    height: 32px;
    position: absolute;
    padding: 2px 15px;
    border-radius: 7px;
    transition: 0.5s;
    position: absolute;
    right: 47px;
    top: 8px;
    font-weight: 600;
    color: #939393 !important;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 26px;
}

.modal-left {
    padding-right: 0px !important;
}

.modal-right {
    border-left: 1px solid #E2E2E2;
}

.logobox {
    background-color: white;
    text-align: center;
    padding: 20px 0px;
    border-bottom: 1px solid #E2E2E2;
}

h4 {
    font-size: 14px;
    font-weight: 700;
}

.lead-status {
    font-weight: 800 !important;
    border-radius: 8px !important;
    border: none !important;
    color: white !important;
    width: 165px;
}

.detailbox {
    padding: 0px 40px 20px 20px;
}

.detailbox h4 {
    margin-top: 20px;
}

.invisible-field {
    background: rgba(255, 255, 255, 0);
    border: none;
}

select {
    border: 1px solid #D5D5D5 !important;
}

.followupbox {
    padding: 25px 40px 25px 25px;
    background: white;
    margin-top: 30px;
    -webkit-box-shadow: 0px -3px 10px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -3px 10px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -3px 10px -1px rgba(0, 0, 0, 0.2);
    border-top: 1px solid #D5D5D5;
    border-radius: 0px 0px 10px 0px;
}

.text-button {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #181A21;
}

.text-button:hover {
    color: #3C4255;
}


.deletecomment {
    color: #DE3F3F !important;
    float: right;

}

.single-note {
    margin-bottom: 20px !important;
}


.introbox {
    padding: 25px;
    border-bottom: 1px solid #D5D5D5;

}

.notebox {
    padding: 0px 0px 25px 25px;
}

.notes-container {
    padding-right: 20px;
    padding-top: 25px;
}

.actionbutton {
    margin-top: 50px !important;
    top: 10px;
    position: relative;
}

.alertimg {
    float: left;
    vertical-align: middle;
    margin-right: 6px;
    top: 1px;
    position: relative;
}

.followupbox h3 {
    margin-bottom: 20px;
}

.boximg {
    float: left;
    margin-right: 7px;
    top: 2px;
    position: relative;
}

.notes-container {
    max-height: 460px !important;
}

.fadebox {
    width: 100%;
    height: 40px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 19%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: -17px;
}

.dropdown-icon {
    position: absolute;
    right: 25px;
    /*top: 17px;*/
    bottom: 13px;
}


/* NEW CSS */

.loginbutton {
    width: 100%;
    background-color: var(--red);
    text-align: center !important;
    padding-left: 165px !important;
    text-transform: capitalize !important;
    font-size: 17px;
    letter-spacing: 0px !important;
    border-radius: 4px !important;
    font-family: Averta !important;
    font-weight: 700;
}

.loginbutton:hover {
    background-color: black;
}

.mail-input {
    background-image: url("/images/icon-plane.svg") !important;
    background-repeat: no-repeat;
    background-position: 10px 9px;
    background-size: 25px;
    padding-left: 45px;
}

.pass-input {
    background-image: url("/images/icon-lock.svg") !important;
    background-repeat: no-repeat;
    background-position: 13px 9px;
    background-size: 16px;
    padding-left: 45px;
}

.inner-container {
    /*border: 40px solid #f6f6f6;*/
    min-height: 100vh;
    position: relative;
    height: 100%;
    /*max-width: 1900px;*/
    margin: auto;
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

@media screen and (max-width: 1350px) {
    .inner-container {
        border-width: 15px;
    }

    .side-menu {
        height: calc(100vh - 30px) !important;
    }
}

.login-box {
    border-radius: 10px;
    margin: auto;
    padding: 25px;
    position: relative;
    animation: slideUp linear 0.8s;
    -webkit-animation: slideUp linear 0.8s;
    -moz-animation: slideUp linear 0.8s;
    transition-timing-function: ease-out;
}

.input-field {
    border-radius: 3px;
    border: 1px solid #c9c9c9;
    width: 100%;
    height: 40px;
    font-size: 14px;
}

.small-link {
    font-size: 12px;
    color: #878787;
}

.small-link:hover {
    color: #fdc300
}

.login-container {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.login-logo {
    width: 230px;
    margin: auto;
    margin-top: 150px;
}

.line-bg {
    background-image: url("/images/bg-line.svg");
    background-size: fit;
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: left center;
    background-position: 30px 30px;

}

.header-logo {
    width: 130px;
    display: inline-block;
    margin-top: -10px;
}

.btn {
    cursor: pointer;
    font-weight: 600;
    font-family: Averta;
    transition: 0s;
    border: none !important;
    transition: .3s ease-in-out;

}

.btn-large {
    background-color: var(--red);
    border-radius: 4px;
    color: white !important;
    font-family: Averta;
    font-weight: 800;
    padding: 10px 17px 7px 17px;
}

.btn-large:hover {
    color: white !important;
    background-color: var(--green);
}

.plus-button {
    font-size: 30px;
    display: inline-block;
    position: relative;
    font-weight: 500;
    top: 3px;
    margin-right: 5px;
    margin-left: 0px;
    line-height: 0px;
}

.header-button {
    display: inline-block;
    top: -26px;
    position: relative;
    margin-left: 15px;
}


.header-actions, .header-users {
    width: 55px;
    text-align: center;
    font-size: 11px;
    display: inline-block;
    cursor: pointer;
    margin-right: 20px;
    position: relative;
}

.header-actions:hover :not(.alert-count), .header-users:hover {
    /*filter: invert(100%) brightness(10);*/
}


.header-image {
    display: block;
    height: 35px;
    margin: auto;
    margin-bottom: 6px;
}

.alert-count {
    background-color: var(--red);
    width: 20px;
    height: 20px;
    border-radius: 100px;
    color: white;
    padding-top: 2px;
    position: absolute;
    top: -3px;
    right: 1px;
}

.header-account {
    padding: 40px 40px 20px 40px;
    background-color: var(--yellow);
}

.footer-account {
    background-color: black;
    width: 100%;
    color: white;
    padding: 12px 20px;
    font-size: 12px;
    bottom: 0px;
    position: absolute;
}

.profile-image {
    font-size: 20px;
    font-family: Averta;
    font-weight: 600;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    text-align: center;
    border-radius: 100px;
    float: left;
    margin-right: 12px;
    position: relative;
    padding-top: 1px;
}

.company-title {
    font-size: 11px;
    margin-top: -1px;
}

.login-status {
    width: 12px;
    height: 12px;
    background-color: var(--green);
    border-radius: 100px;
    position: absolute;
    top: -3px;
    right: -3px;
}

.footer-account .user-name {
    top: -2px;
    position: relative;
}

.footer-logout {
    position: absolute;
    right: 25px;
    top: 22px;
}

.side-menu {
    background-color: var(--light-gray);
    height: calc(100vh - 80px);
    width: 260px !important;
}

.side-header {
    background-color: var(--yellow);
    padding: 10%;
}

.sidebar-logo {
    width: 120px;
}

.project-logo-box {
    background-color: transparent;
    border-radius: 5px;
    width: 150px;
    margin: auto;
    margin-top: 25px;
    position: relative;
    text-align: center;
    height: 100px;
    padding: 0px;
}

.project-logo {
    width: 100%;
    height: 100%;
    margin: auto;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}


.side-menu-items {
    margin-top: 40px;
    color: black;
    font-size: 17px;
    font-weight: 400;
}

.side-menu-items li {
    padding: 0;
    text-decoration: none !important;
    cursor: pointer;
}

.side-menu-items li a {
    display: block;
    padding: 15px 20px;
}

.side-menu-items li:hover, .side-menu-items li.active {
    font-weight: 700;

}

.menu-image {
    width: 30px;
    display: inline-block;
    margin-right: 20px;
}

.menu-image-small {
    width: 34px;
    margin-left: 2px;
    margin-right: 22px;
}

.side-account {
    background-color: black;
    color: white;
    padding: 15px;
    padding-left: 20px;
    position: absolute;
    width: 260px;
    bottom: 0px;
    height: 68px;
    overflow: hidden;
    transition: 0.4s;
}

.side-account:hover {
    height: 160px;
    transition: 0.4s;
}

.account-menu {
    margin-top: 20px;
    font-size: 14px;
    margin-left: 45px;
}

.account-menu a {
    display: block;
    color: white;
}

.account-menu a:hover {
    color: var(--yellow) !important;
}


.select-project {
    background-color: white;
    width: 350px;
    padding: 13px 20px;
    border-radius: 6px;
    color: black;
    height: 50px;
    overflow: hidden;
    position: absolute;
    transition: 0.3s;
    background-image: url("/images/dropdown.svg");
    background-size: fit;
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 300px 18px;
    border: none;
}

.select-project:hover {
    height: auto;
    transition: 0.3s;

}


.main-content {
    max-width: 1400px;
    margin: auto;
    margin-top: 20px;
}

.projectlist {
    font-size: 15px;
    margin-top: 10px;

}

.projectlist a {
    color: black;
    display: block;
    margin-left: -10px;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 5px;

}

.projectlist a:hover {
    background-color: #f5f5f5;
    font-weight: 600;
}

.top-menu-alert {
    margin-left: 380px;
    margin-top: 6px;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.top-menu-alert:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.top-menu-image {
    width: 35px;
}

.alert-count-small {
    background-color: var(--red);
    color: white;
    border-radius: 100px;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    position: absolute;
    top: -5px;
    right: -5px;
    text-align: center;
}

.leadcount {
    width: 30px;
    height: 30px;
    background-color: var(--blue);
    text-align: center;
    border-radius: 100px;
    float: right;
    padding-top: 4px;
    color: white;
    font-weight: 600;
    margin-right: 5px;
    margin-top: 3px;
}

.right-content {
    padding: 30px 40px 30px 40px !important;
    width: calc(100vw - 280px);
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--light-gray);
    margin: 20px 0px;
}


.main-content-2 {
    margin: auto;
    max-width: 1370px;
    width: 90%;
    padding-top: 30px;
}

.table-white th {
    font-weight: 400;
    font-size: 12px;
    color: var(--gray);
}

.table-white tr {
    background-color: white;
    border-bottom: 5px solid var(--light-gray) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    padding: 20px !important;
}

.table-white td {
    border-radius: 10px !important;
    overflow: hidden;
}

.table-white a {
    color: black;
}

.swal2-confirm {
    background-color: var(--green) !important;
}

.swal2-cancel {
    background-color: var(--red) !important;
    border-radius: 5px !important;
}

.swal2-title, .swal2-content {
    color: black;
}


.project-header {
    display: inline-block;
    border: none;
    margin-left: 48px;

}

.welcome-notice {
    margin-top: 15px !important;
    width: 90%;
    max-width: 1370px;
}

.header-account {
    padding: 0px !important;
}

.inner-header {
    padding: 40px 30px 20px 30px;
}

.welcome-notice {
    padding-bottom: 20px !important;
}

.top-menu-bar {
    padding-bottom: 30px;
}


/* Discutabele styling */

.row {
    margin: 0px;
}

.col {
    padding: 0px;
}

.danger-icon {
    background: var(--red) !important;
    margin: 0px 20px 0px 5px;
    border-radius: 100%;
    color: white;
    width: 22px;
    text-align: center;
}

.drop-shadow {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08) !important;
    background: white;
}

.drop-shadow:hover {
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25) !important;
}

.drop-shadow a {
    color: black;
}

.drop-shadow td {
    padding: 15px 0px !important;

}


.no-shadow td {
    /*min-height: 10px;*/
}

.option-days {
    background: #efefef;
    border-radius: 3px;
    padding: 3px 10px;
}

.lead-count {
    border-radius: 4px;
    border-color: #9d9c9c;
    margin-bottom: 20px;
    font-size: 24px;
}

.dashboard-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    padding: 7px;
}


.dashboard-badge {
    width: 47px !important;
    height: 47px !important;
    margin-right: 1% !important;
    border-radius: 100px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding-top: 15px !important;

}

.btn-view-project {
    color: black !important;
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px !important;
    display: block;
}


.header-users a {
    color: black !important;
}


.input-large, .select-large {
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05) !important;
    padding: 14px 20px !important;
    border: none;
    width: 100%;
    border-radius: 7px;
}

.label-large {
    font-family: Averta;
    font-weight: 700 !important;
    font-size: 18px;
    color: black !important;
}

.label-medium {
    font-family: Averta;
    font-weight: 700 !important;
    font-size: 15px;
    margin-top: 20px;
    color: black !important;
}


.btn-green {
    background-color: var(--green);
    color: white !important;
    box-shadow: none !important;

}

.btn-green:hover {
    background-color: var(--red);
}

.btn-red {
    background-color: var(--red) !important;
    color: white !important;
    box-shadow: none !important;
}

.btn-red:hover {
    background-color: var(--green) !important;
}

.btn-small {
    font-size: 14px;
    padding: 8px 20px 5px 18px;
}

.btn-large {
    font-size: 17px;
    padding: 10px 17px;
}

.show-pass {
    color: var(--gray);
    font-size: 12px;
    display: block;
    margin-top: 5px;
    position: absolute;
    right: 20px;
    margin-top: -20px;
}


.main-content-2 {
    padding-bottom: 110px !important;
}

.rounded-small {
    border-radius: 7px;
}

.form-group {
    margin-bottom: 2px;
}

.no-shadow {
    padding: 10px !important;
    margin: 10px !important;
    line-height: 1px !important;
    height: 13px;
}

.no-shadow td {
    display: none;
}

tr {
    border-radius: 10px !important;
    overflow: hidden;
}


.first-rounded {
    border-radius: 7px 0px 0px 7px;
    overflow: hidden !important;
    text-indent: 20px;
}

.last-rounded {
    border-radius: 0px 7px 7px 0px;
    overflow: hidden !important;
}

th {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    padding: 10px 0px !important;
    border: none !important;
}

.th-first {
    padding-left: 20px !important;
}

.filterbox {
    display: inline-block;
    margin-left: 20px;
    position: relative;
    top: -6px;
}

.titlebox {
    display: inline-block;
}

.totalleads, .simple-plot-number {
    width: 80px;
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid var(--gray);
}

.filterbutton {
    box-shadow: none;
    font-size: 17px;
    padding-top: 7px;
}

.export-box {
    color: gray !important;
    font-size: 14px;
    position: relative;
    top: 9px;
}


td {
    vertical-align: middle !important;
}

.lead-row-status {
    width: 25px;
    height: 25px;
    border-radius: 100px;
    margin-left: 9px;
    margin-top: -7px;
    margin-bottom: -7px;
}

.leadstable th {
    padding-bottom: 15px !important;
}

.badge-row {
    width: 45px !important;
}

.top-menu-bar .select-project {
    border: 1px solid #bebebe;
    z-index: 1000;

}

input {
    box-shadow: none !important;
}


.modal-content {
    float: right !important;
    right: 0px;
    position: fixed;
    width: 450px;
    border-radius: 0px;
    bottom: 50px;
    border: none;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3) !important;
}

.modal-header {
    background-color: var(--yellow);
    font-weight: 700;
    font-size: 26px;
    font-family: Averta;
    padding: 20px 30px !important;
    border-radius: 0px;
}

.modal-body {
    padding: 0px 15px 10px 15px !important;
}

.modal-body label {
    font-weight: 700;
    font-family: Averta;
    margin-top: 15px;
}

.modal-body select {
    box-shadow: none !important;
    margin-top: -2px !important;
}

.modal-footer {
    border: none;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-top: 0px;
}

.btn-danger:hover {
    background-color: var(--green);
}


.ui-widget-header {
    background-color: var(--yellow);
}

.ui-state-highlight {
    background-color: var(--yellow) !important;
    color: black !important;
    border-color: black !important;
}

textarea, input {
    box-shadow: none !important;
    border: 1px solid #ced4da !important;
}

.user-name {
    font-size: 14px;
}

.totalleads, .simple-plot-number {
    text-align: center;
    padding: 4px 0px;
    font-size: 24px;
    font-weight: 700;
    font-family: Averta;
    top: 2px;
    position: relative;
    margin-right: 10px;
    transition: 0.4s;
    cursor: pointer;
}

.simple-plot-number {
    font-size: 16px;
    width: auto;
    padding: 4px 14px;
}

.totalleads:hover {
    transform: scale(1.07);
    transition: 0.4s;
}


.alert {
    position: fixed;
    right: 30px;
    bottom: 10px;
    z-index: 1000000;
    background-color: white;
    color: black;
    border-radius: 0px;
    border: none;
    border-top: 5px solid var(--yellow);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    animation: fadeOut 1s;
    text-align: center;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.side-menu-items .active {
    background: var(--yellow) !important;
    color: white !important;
}

.side-menu-items .active a {
    filter: invert(100%) brightness(100);
}

.modal-left {
    padding: 0px 25px 0px 0px !important;
}

.single-note {
    border-radius: 7px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h3 {
    font-size: 21px;
    font-weight: 700;
    font-family: Averta;
}

h4 {
    font-size: 17px;
    font-weight: 700;
    font-family: Averta;
}

.name-box {
    display: inline-block;
    top: 5px;
    position: relative;
    left: 10px;
    font-size: 28px !important;
}

.lead-status {
    border-radius: 100px !important;
    padding: 8px 20px;
    font-weight: 700 !important;
}

.invisible-field {
    padding: 0px !important;
    border: none !important;
}

.remove-lead {
    font-size: 10px;
    color: gray;
    bottom: 0px;
    top: 40px;
    position: relative;
}

.label-thin {
    font-weight: 400 !important;
    color: #ababab;
    font-size: 11px;
    margin-bottom: 5px;
}


body, input, textarea, select, .select2 {
    font-size: 14px !important;
}

.plot-pref-box .select2-selection {
    overflow: hidden;
    display: block;
    border-color: var(--light-gray) !important;
}

.contact-details-container {
    max-width: 400px;
}

.project-title-field {
    font-size: 30px !important;
    font-family: averta !important;
    font-weight: 700 !important;
    padding: 0px;
    border-width: 0px !important;
    box-shadow: none !important;
}

.nav-tabs .nav-link {
    border: none;
    padding: 7px 30px !important;
    font-family: Averta;
    font-weight: 700;
}

.nav-tabs .active {
    background-color: var(--yellow) !important;
    border-radius: 100px !important;
    color: white !important;
}

.nav-tabs {
    border: none;
    margin-bottom: 25px;
}

.remove-project {
    color: gray;
    font-weight: 400;
    font-size: 12px;
    margin-top: 23px;
}

#plotDetailModal {
    /*top: 14px !important;*/
    /*top: calc(50% - 150px) !important;*/
    /*left: calc(50% - 167px) !important;*/
    /*left: 14px !important;*/
    padding: 0px;
    width: 335px;
    background: white;
    position: absolute;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.27);
    border-radius: 5px !important;
    overflow: hidden !important;
}

.plot-number:before {
    content: "Kavel ";
}

#plotDetailModal .plot-number {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-top: -7px;
    margin-bottom: 5px;
}

#plotDetailModal .plot-type {
    font-size: 26px;
    /*color: white;*/
    /*margin-top: -7px;*/
    margin-bottom: 5px;
    padding-inline: 10px;
    font-family: 'Averta';
    font-weight: 700;
    padding: 3px 24px;

}

#plotDetailModal .table td, #plotDetailModal .table th {
    padding: 0px !important;
    font-size: 13px;
    line-height: 1.9em;
}

#plotDetailModal tr:not(:last-child) {
    border-bottom: 1px solid #dedede !important;
    height: 30px !important;
}

#plotDetailModal .btn-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 13px;
    right: 13px;
    transition: 0.3s;
}

#plotDetailModal .btn-close:hover {
    transform: rotate(90deg) !important;
    transition: 0.3s;
}

.plot-map-container {
    max-width: 1000px !important;
}

#plotDetailModal .btn-primary {
    background-color: #004a5d;
    font-size: 14px;
    padding: 8px 20px 5px 20px;
    border-radius: 100px;

}

#plotDetailModal .btn-primary:hover {
    color: white !important;
    transform: scale(1.05);
    transition: 0.3s;
}

#plotDetailModal .btn-secundairy {
    background: white;
    font-size: 14px;
    padding: 5px 15px 3px 15px;
    border: 2px solid #004a5d !important;
    color: #004a5d;
    border-radius: 100px;
    transition: 0.3s;
}

#plotDetailModal .btn-secundairy:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.plot-price {
    font-weight: 700;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 23px;
}


.icon-house {
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.dashboard-badge {
    width: 47px;
    height: 47px;
    margin-right: 1%;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 600;
    padding-top: 15px;
}

.header-actions a {
    color: black !important;
}

.plot-header {
    background-color: #004a5d;
    padding: 16px 15px 3px 20px;
    color: white;
}

.availability-bar {
    background-color: #14c93f;
    color: white;
    text-align: center;
    padding: 6px 20px;
    font-weight: 600;
}

.energy-type {
    background-color: #5eb528;
    width: 90px;
    color: white;
    padding: 3px 10px;
    position: relative;
    margin-top: 10px;
    font-weight: 700;
}

.energy-type:after {
    color: #5eb528;
    border-left: 12px solid;
    border-top: 14px solid transparent;
    border-bottom: 13px solid transparent;
    display: inline-block;
    content: '';
    position: absolute;
    left: 90px;
    top: 0px;
}

.color-picker input {
    height: 30px;
    width: 30px;
    border: none !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    margin-top: -5px !important;
    box-shadow: none !important;
}

.select2-selection {
    border: none !important;
}

.select2 {
    padding: 5px;
    border: 1px solid gray !important;
    border-radius: 5px;
}

.font-selection .select2 {
    max-width: 350px !important;
}

#lead-create-form input {
    color: black !important;
}

.user-role {
    border: none !important;
}


.cursor-default {
    cursor: default !important;
}

.plot-settings label {
    font-family: Averta;
    font-weight: 700;
    color: black;
    margin-top: 20px;
}


.plot-settings select, .plot-settings input {
    color: black !important;
    padding: 13px;
    height: 50px;
}


.plot-number-input {
    font-size: 32px !important;
    color: black;
    font-weight: 700;
    font-family: Averta;
    width: 110px;
    padding: 12px 5px 10px 5px !important;
    height: 60px !important;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 10px;
}

.indeling-fields input {
    max-width: 80px;
    text-align: center;
}

.plot-status-number {
    width: 50px !important;
    text-align: left;
    padding-left: 20px !important;
    color: white !important;
    font-weight: 700 !important;
}

.pl-18 {
    padding-left: 18px !important;
    text-align: left !important;
}

.select2-selection__arrow {
    top: 7px !important;
    right: 5px !important;
    position: relative;
}

.btn-form, .btn-form:hover {
    padding: 7px 15px 5px 15px;
    color: white;
}

.plot-pref-box .select2-search__field {
    border: none !important;
}

.action-table .status-badge {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: -5px;
    margin-left: -4px;
}

.action-table a {
    color: black !important;
}

.pl-15 {
    padding-left: 13px !important;
}

.delete-option {
    font-weight: 700;
    position: relative;
    top: -1px;
    left: 7px;
}

.follow-up-container input, .follow-up-container select {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0px !important;
    margin-top: -10px !important;
    margin-bottom: 5px;
    overflow: hidden !important;
    width: 300px;
}

.select-margin {
    margin-left: -3px;
    width: 1000px !important;

}


.remove-followup {
    font-size: 11px;
    color: white;
    background: var(--red);
    padding: 6px 10px 6px 10px;
    margin-bottom: 20px;
    position: relative;
    top: -15px;
    border-radius: 5px;
    font-weight: 600;

}

.remove-followup:hover {
    color: white !important;
    background-color: var(--green) !important;
}

.plot-pref-box .select2-selection {
    width: 200px !important;
}

.users-table .fa-trash {
    margin-right: 7px;
}

.plot-pref-box .select2 {
    width: 220px !important;
}

.no-padding {
    padding: 0px !important;
}


.option-table th {
    font-size: 10px !important;
    height: 5px !important;
    padding: 0px !important;
    position: relative;
    top: 5px;
}

.option-table tr {
    border: none !important;
}

.option-circle {
    border: 1px solid gray;
    text-align: center;
    border-radius: 100px;
    width: 26px;
    height: 26px;
    margin: 4px 0px;
}

.view-on-maps {
    font-size: 11px !important;
    color: gray;
    display: block;
    margin-top: 10px;
}

.icon-maps {
    height: 14px;
    display: inline;
    margin-right: 7px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.invisible-field:hover, .invisible-field:focus {
    background-color: #fafafa;

}

.zip-code-col {
    width: 70px;
    display: inline-block;
}

.city-col {
    width: 100%;
    max-width: 200px;
    display: inline-block;
}

.error-detail {
    border: 1px solid #dc3545;
    padding: 10px 20px;
    margin-top: 20px;
}

html {
    overflow-x: hidden;
}

@media screen and (max-width: 1350px) {
    .inner-container {
        border-width: 0px;
    }
}

.small-info-container {
    padding: 30px;
}

.small-info-container .small-title {
    font-weight: bold;
    /*padding: 10px 0 ;*/
}

.small-info-container .small-detail {
    padding: 10px 0;
}

.header-actions:hover .alert-count {
    background: white;
    color: black;
}

.svg-container [id|="plot"] {
    fill: transparent;
/ / stroke: none;
    stroke: white;
    stroke-width: 2px;
    fill-opacity: .5;
    stroke-opacity: .8;
    transition: .3s;

}

.svg-container [id|="plot"]:hover {
    fill-opacity: .9;
    stroke-opacity: 1;
}


.svg-container [id^="sold-temp"] {
    fill: red !important;
    fill-opacity: .5;
    stroke: white;
    stroke-width: 2px;
    stroke-opacity: .8;
}
