/* General Style */
* {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Poppins-Medium";
}
@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: "Poppins-Light";
    src: url(../fonts/poppins/Poppins-Light.ttf);
}
@font-face {
    font-family: "Poppins-Medium";
    src: url(../fonts/poppins/Poppins-Medium.ttf);
}

:root {
    --main_color: #9400ff;
    --purple: #3d0c61;
    --second_color: #ada2ff;
    --black_color: #030708;
}

a {
    text-decoration: none !important;
    color: inherit;
}
html {
    overflow-x: hidden;
    background-color: #f5f5f5;
}
body {
    background-color: #f5f5f5 !important;
}
.slick-slider {
    overflow: hidden;
}

.noSelect {
    user-select: none;
}

.loginBox {
    padding: 50px 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

li{
    font-family: "Poppins-Regular";
}

.loginRow {
    min-height: 80vh;
}

.loginBox .title {
    font-size: 22px;
    font-weight: 600;
}

.loginInputs input {
    border: 1px solid #e1e1e1;
    width: 100%;
    height: 40px;
    padding: 10px;
    background-color: #fbfbfb;
    border-radius: 7px;
    outline: none;
    margin-bottom: 15px;
}

.loginBox .loginBtn {
    padding: 8px 16px;
    border-radius: 7px;
    color: white;
    background-color: var(--main_color);
}

.copyrightText {
    color: gray;
}

.logoArea .logo {
    width: 200px;
    height: 75px;
}
.logoArea .logo img {
    height: 100%;
}

.leftSideMenu {
    background-color: var(--purple);
    min-height: 100vh;
    height: 100%;
    padding: 25px;
}

.panelHeader {
    padding: 20px;
    background-color: #ededed;
    border-bottom: 1px solid #3d0c611f;
}

.searchBarWrapper {
    flex: 5;
}

.panelHeaderItems {
    flex: 1;
    gap: 25px;
}

.searchBarWrapper .searchBtn {
    position: absolute;
    left: 0;
    width: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.searchBarWrapper input {
    width: 98%;
    border: none;
    height: 45px;
    border: none;
    border-radius: 7px;
    background-color: #fbfbfb;
    padding-left: 40px;
    outline: none;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
        rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.leftSideMenu .sideMenuItem {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 7px;
    color: white;
    margin-bottom: 15px;
}

.sideMenuItemActive {
    background-color: white;
}

.sideMenuItemActive .menuItemText {
    color: var(--purple);
}

.sideMenuItem .icon {
    width: 24px;
    height: 24;
}

.sideMenuItem .icon img {
    width: 100%;
    height: 100%;
}

.panelHeaderItems .notifications {
    background-color: #fbfbfb;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
}

.panelHeaderItems .notifications .icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.sideMenuItem .menuItemText {
    font-size: 15px;
}

.panelHeaderItems .notifications .icon img {
    width: 100%;
    height: 100%;
}

.notifications .notificationDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: crimson;
    position: absolute;
    right: 1px;
    top: -2px;
}

.panelDealBtn{
    padding: 8px 16px;
    background-color: var(--purple);
    color: white;
    border-radius: 7px;
    user-select: none;
}

.newContractBtn {
    padding: 12px 18px;
    background-color: #fff;
    color: var(--purple);
    gap: 10px;
    border-radius: 30px;
    font-weight: 500;
    margin: 15px 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.newContractBtn i {
    font-size: 20px;
}
.panelContentWrapper {
    padding: 25px 45px;
}
.dashboardDetailBox {
    padding: 15px;
    border-radius: 7px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin-bottom: 20px;
    min-height: 175px;
}
.detailBoxTitle {
    font-size: 16px;
    font-family: "Poppins-Light";
    text-align: center;
    font-weight: 500;
}
.detailBoxBoldText {
    font-size: 20px;
    font-weight: 600;
}
.detailBoxIcon {
    width: 36px;
    height: 36px;
}
.detailBoxIcon img {
    height: 100%;
    object-fit: cover;
}
.detailBoxIconOuter {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.panelTitle {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Table Styling */

.dataTables_wrapper .dataTables_filter input {
    background-color: #fff !important;
    outline: none;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 16px 10px !important;
}

.dataTables_filter input {
    margin-left: 10px !important;
}

.viewContractBtn {
    padding: 8px 16px;
    border-radius: 7px;
    color: white;
    background-color: purple;
    white-space: nowrap;
}

.viewPayments {
    padding: 8px 16px;
    border-radius: 7px;
    color: white;
    background-color: #465db1;
}

.deleteBtnBig{
    padding: 8px 16px;
    border-radius: 7px;
    color: white;
    background-color: crimson;
}

.panelSubTitle {
    font-size: 16px;
    margin-bottom: 15px;
}

.inputWrapper {
    display: flex;
    flex-direction: column;
}
.paymentInputs input,
.inputWrapper select,
.inputWrapper textarea,
.inputWrapper input {
    border: 1px solid #e1e1e1;
    padding: 10px;
    border-radius: 7px;
    outline-color: var(--purple);
    margin-bottom: 10px;
    font-family: "Poppins-Regular";
}

.inputWrapper textarea {
    height: 150px;
    resize: none;
}

.inputWrapper label {
    font-size: 13px;
    padding-left: 5px;
    margin-bottom: 3px;
}

.panelContentArea {
    padding: 15px;
    background-color: white;
    border-radius: 12px;
}

.panelContentArea .checkboxWrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.panelContentArea .checkboxWrapper .content {
    font-family: "Poppins-Light";
}

.panelContentArea .checkboxWrapper div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.panelContentArea .checkboxWrapper input {
    width: 18px;
    height: 18px;
    accent-color: var(--purple);
}

.contentFooter .nextBtn {
    padding: 8px 16px;
    background-color: var(--purple);
    color: white;
    cursor: pointer;
    user-select: none;
    border-radius: 7px;
    min-width: 100px;
    text-align: center;
}

.contentFooter .prevBtn {
    padding: 8px 16px;
    background-color: #939393;
    color: white;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    min-width: 100px;
    text-align: center;
}

.menuDetailsBox {
    padding: 10px;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.menuDetailsBox .menuDetailTitle {
    font-size: 16px;
}

.menuDetailsBox .menuDetailContent {
    font-family: "Poppins-Light";
}

.inputWrapper .readonlyInput {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.serviceDetailListBox {
    padding: 15px;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.totalPriceArea {
    padding-top: 10px;
    border-top: 1px solid #e1e1e1;
}

.priceItem {
    font-family: "Poppins-Regular";
}

.priceAreaNote {
    font-style: italic;
    margin-bottom: 5px;
}

.priceBoxItem .price {
    font-size: 15px;
}

.totalPriceArea .priceItem {
    font-size: 16px;
}

.totalPriceArea .totalPrice {
    font-size: 17px;
}

.createPaymentPlan,
.priceBoxWrapper {
    padding: 15px;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.paymentInputs {
    gap: 10px;
}

.paymentInputs input[type="text"] {
    padding-right: 32px;
}

.turkishLiraIcon {
    position: absolute;
    width: 32px;
    height: 43px;
    top: 0;
    right: -1px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    background-color: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e1e1;
}

.addInstallment {
    padding: 6px 12px;
    background-color: var(--purple);
    color: white;
    border-radius: 7px;
    width: max-content;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
}

.modalCloseBtn {
    padding: 6px 12px;
    background-color: #939393;
    color: white;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
}

.paymentPageBox {
    padding: 15px;
    background-color: white;
    border-radius: 12px;
}

.paymentPageBox .boxTitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.paymentPageBox .paymentBoxItem {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    margin-bottom: 10px;
}

.paymentPageBox .paymentBoxItem .icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background-color: var(--purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paymentBoxItem .detail {
    flex: 1;
    font-family: "Poppins-Regular";
    font-size: 13px;
}

.primaryBtn {
    padding: 8px 16px;
    background-color: var(--purple);
    color: white;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    width: max-content;
}

.contractIDArea {
    padding: 6px 12px;
    background-color: var(--bs-purple);
    border-radius: 5px;
    color: white;
}

.contractIDArea .contractID {
    font-style: italic;
}

.contractIDArea .label {
    font-family: "Poppins-Regular";
}

.tableHeader {
    row-gap: 10px;
}

.tableHeader .tableSearchbar input {
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    width: 375px;
    outline: none;
    padding-left: 32px;
}

.tableHeader .tableSearchbar .searchBtn {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.tableHeaderRight .selectWrapper select {
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    outline: none;
    width: 150px;
}

.tableHeaderRight .tableFilterBtn {
    height: 43px;
    padding: 12px 16px;
    background-color: #465db1;
    color: white;
    cursor: pointer;
    user-select: none;
    border-radius: 7px;
}

.table th {
    vertical-align: middle;
    white-space: nowrap;
}

.tableWrapper {
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
}

.dataTables_paginate {
    margin-top: 15px;
}

.hallsPageWrapper {
    padding: 15px;
    background-color: white;
}

.fc-toolbar-title {
    font-size: 20px !important;
}

.hallsHeader .hallsTitle {
    font-size: 24px;
}

.hallsSwitchArea {
    background-color: #e1e1e1;
    width: max-content;
    border-bottom-right-radius: 17px;
    border-top-left-radius: 17px;
}

.hallsSwitchArea .hallsSwitchItem {
    padding: 8px 16px;
    cursor: pointer;
    user-select: none;
}

.hallsSwitchArea .hallsSwitchItem:nth-child(1) {
    border-bottom-right-radius: 17px;
    border-top-left-radius: 17px;
}

.hallsSwitchArea .hallsSwitchItem:nth-child(2) {
    border-top-left-radius: 17px;
    border-bottom-right-radius: 17px;
}

.hallsSwitchArea .hallsSwitchActive {
    background-color: var(--purple);
    color: white;
}

.fc-h-event {
    background-color: #191da1 !important;
    border-color: #191da1;
    padding: 4px 8px;
    cursor: pointer;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgb(108 159 255 / 15%) !important;
}

.modalBox .modalBoxItem {
    padding: 8px 5px;
    border-bottom: 1px solid #e1e1e1;
}

.modalBox .modalBoxItem:nth-last-child(1) {
    border-bottom: none;
}
.organizationModal .modal-body {
    padding-bottom: 0;
}
.modalBox .modalItemLabel {
    font-family: "Poppins-Regular";
}

.printBtn {
    cursor: pointer;
    user-select: none;
}

.printBtn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.panelSettingsMenu .settingsMenuItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 7px;
    color: var(--purple);
    cursor: pointer;
    user-select: none;
    border: 1px solid #e1e1e1;
}


.panelSettingsMenu .settingsMenuItem .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.panelSettingsMenu .settingsMenuItem .icon i {
    color: var(--purple);
    font-size: 18px;
}


.panelSettingsMenu .settingsMenuItemActive{
    background-color: var(--purple);
    color: white;
}
.panelSettingsMenu .settingsMenuItemActive .icon i{
    color: white;
}

.settingsContentWrapper {
    padding: 15px;
    border-radius: 7px;
    background-color: white;
    border: 1px solid #e1e1e1;
}

.settingsTableHeader {
    padding-bottom: 15px;
}

.settingsTableHeader .title{
    font-size: 18px;
}

.settingsTableHeader .addBtn{
    padding: 8px 16px;
    border-radius: 7px;
    color: white;
    background-color: #465db1;
    cursor: pointer;
    user-select: none;
}

.editBtn{
    padding: 6px 12px;
    border-radius: 7px;
    color: white;
    background-color: #ffc107;
    cursor: pointer;
    user-select: none;
}

.deleteBtn{
    padding: 6px 12px;
    border-radius: 7px;
    color: white;
    background-color: crimson;
    cursor: pointer;
    user-select: none;
}

.filterBtn{
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    background-color: #465db1;
    border-radius: 7px;
}
.filterBtn img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.inputWrapperOffcanvas{
    flex: 1;
}

.inputWrapperOffcanvas select,
.inputWrapperOffcanvas input{
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    width: 100%;
    outline-color: var(--purple);
}

.financePageHeader .mainTabItem{
    flex: 1;
    padding: 10px;
    background-color: white;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.financePageHeader .mainTabItemActive{
    background-color: var(--purple)!important;
    color: white;
}

.financeSubTabs .subTabItem{
    flex: 1;
    background-color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.financePageHeader .mainTabItem:nth-child(1),
.financeSubTabs .subTabItem:nth-child(1){
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.financePageHeader .mainTabItem:nth-child(2),
.financeSubTabs .subTabItem:nth-last-child(1){
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.financeTableArea {
    padding: 15px;
    background-color: white;
    border-radius: 7px;
    border: 1px solid #e1e1e1;
}

.financeTableTitle span,
.financeTableTitle{
    font-size: 18px;
    margin-bottom: 15px;
}

.tableTotalPrice{
    font-size: 18px;
    font-weight: 600;
}

.tableTfootTitle{
    font-size: 16px;
}

.financeSubHeader .addStonks{
    cursor: pointer;
    font-size: 15px;
    color: white;
    background-color: #198754;
    padding: 6px 12px;
    border-radius: 7px;
}

.financeSubHeader .addExpense{
    cursor: pointer;
    font-size: 15px;
    color: white;
    background-color: #dc3545;
    padding: 6px 12px;
    border-radius: 7px;
}

.financeSubHeader .viewDetailsBtn{
    padding: 5px 12px;
    color: #465db1;
    border: 1px solid #465db1;
    border-radius: 7px;
    cursor: pointer;
}

.financeSubHeader .viewDetailsBtn:hover{
    color: white;
    background-color: #465db1;
    transition: 0.3s ease;
}

.organizationDetailItem{
    margin-bottom: 10px;
}

.organizationDetailItem .detailTitle{
    font-family: "Poppins-Regular";
}
.paymentPageBox .customBoxTitle{
    font-weight: 600;
    font-size: 16px;
    font-family: "Poppins-Regular";
    margin-bottom: 15px;
}

.labelInput{
    background:none!important;
    padding: 0!important;
    padding-left: 5px!important;
    margin-bottom: 3px!important;
    font-family: "Poppins-Medium"!important;
    font-size: 13px!important;
    border: none!important;
    border-radius: 0!important;
    outline: none!important;
    height: max-content!important;
}
.addExpenseItem{
    padding: 6px 12px;
    background-color: #465db1;
    border-radius: 7px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.tillForOrganization .tillTitle{
    font-family: "Poppins-Regular";
}

.tillForOrganization .tillPrice{
    font-size: 18px;
    margin-top: 5px;
}

.greenBtn{
    background-color: #198754;
    color: white;
    padding: 6px 12px;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
}

.redBtn{
    background-color: #dc3545;
    color: white;
    border-radius: 7px;
    padding: 6px 12px;
    cursor: pointer;
    user-select: none;
}

.modalCustomerBox{
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 7px;
    border: 1px solid #e1e1e1;
}

.modalCustomerBox .customerDetails{
    font-family: "Poppins-Regular";
    margin-bottom: 5px;
}

.offcanvasFilterBtn{
    background-color: #465db1;
    color: white;
    border-radius: 7px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.dealBtn{
    padding: 10px 16px;
    background-color: var(--purple);
    color: white;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    margin-top: 22px;
    width: max-content;
    border: none;
}

.tableButtons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 991px) {
    .tableHeader .tableHeaderRight,
    .tableHeader .tableSearchbar,
    .tableHeaderRight .selectWrapper {
        flex: 1;
    }
    .tableHeaderRight .selectWrapper select,
    .tableHeader .tableSearchbar input {
        width: 100%;
    }
    .tableHeader {
        flex-direction: column;
        padding: 0;
    }
    .contractBtnText,
    .leftSideMenu .logo,
    .sideMenuItem .menuItemText{
        display: none;
    }
    .leftSideMenu .sideMenuItem{
        padding: 6px;
        justify-content: center;
    }
    .leftSideMenu{
        padding-left: 15px;
        padding-right: 5px;
    }
    .newContractBtn{
        padding: 6px 9px;
    }
    .sideMenuItems {
        padding: 0 5px;
    }
    .panelContentWrapper{
        padding: 20px;
    }
}

@media (max-width: 1399px) {
    .paymentItem {
        flex-direction: column;
        row-gap: 10px;
    }
}

@media(max-width:500px){
    .panelHeader {
        flex-direction: column;
        row-gap: 10px;
    }
    .searchBarWrapper,
    .searchBarWrapper input {
        width: 100%;
    }
}
