@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

root {
    --baseColor: #9a6633;
    --hoverColor: #fcd989;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
    scrollbar-width: none;
    font-family: "Montserrat", sans-serif;
}
p {
    margin-bottom: 0;
}
/* LOGIN PAGE CSS */
.eMailInputLogin:focus {
    border-color: #9a6633;
}
.passInputLogin:focus {
    border-color: #9a6633;
}
.mainDivLogin {
    background-image: url('img/loginBg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* color: white; */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logoImg {
    width: 600px;
}
.loginHdng {
    color: #9a6633;
    padding: 120px 0 70px 0;
    font-weight: 900;
    font-size: 50px;
}
.customInput {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #d3d6dd;
    /* color: white; */
    width: 580px;
    font-size: 25px;
}
/* .customInput::placeholder {
    color: white;
} */
.customInput:focus {
    /* color: white; */
    background: transparent;
    box-shadow: none;
}
.passInputLogin {
    margin: 30px 0 40px 0;
}
.loginBtnColor {
    background-color: #9a6633;
    color: white;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 10px;
}
.activelabel{
    /* color: #fff; */
    font-size: 30px;
    display: block;
    position: relative;
    padding-left: 45px;
    padding-top: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.activelabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
span.checkmark{
    margin-top: 20px;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #eee;
    border: 4px solid #9a6633;
    padding: 0px;
}
.tableCheckmark {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.activelabel:hover input ~ .checkmark {
    background-color: #fff;
}
/* When the radio button is checked, add a blue background */
.activelabel input:checked ~ .checkmark {
    background-color: white;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.activelabel input:checked ~ .checkmark:after {
    display: block;
    border-radius: 50%;
}
/* Style the indicator (dot/circle) */
.activelabel .checkmark:after {
    /* top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 20%;
    background: #9a6633;
}
/* .addBt{
    float: right;
} */
.loginLabel {
    font-size: 20px;
    padding-left: 12px;
}
.loginCheck {
    height: 24px;
    width: 24px;
}
.form-check-input:checked {
    background-color: #9a6633;
    border-color: #9a6633;
}
.loginCheck:focus {
    box-shadow: none;
    border-color: #e0e0e0;
}
/* .loginRememCheckBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
} */
/* LOGIN PAGE CSS */
.btnClass {
    background-color: #9a6633;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 4px;
    /* margin-bottom: 20px; */
}
.btnClass:hover {
    background-color: #fcd989;
    color: #9a6633;
}
.btnClass:active {
    background-color: #9a6633 !important; 
    border-color: #9a6633 !important; 
    color: white !important;
}
.btnClass:focus-visible {
    background-color: #9a6633 !important; 
    color: white !important;
}
/* TABLE PAGE CSS */
.mainTableBox {
    height: 100vh;
    width: 100vw;
    /* padding: 60px; */
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    /* background-color: #d3d6dd; */
}
.mainTableBoxInner {
    display: grid;
    grid-template-columns: 15% 85%;
    height: 100%;
    width: 100%;
}
.tabBoxLogoDiv {
    position: absolute;
    top: 25px;
}
.tabBoxLogo {
    width: 270px;
}
.sidebar {
    height: 100%;
    width: 270px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 1000;
}
.content-overlay {
    /* display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999; */
    backdrop-filter: blur(5px);
}
.overlay-active {
    display: block;
}
.sidebarCloseBtn {
    display: none;
    font-size: 30px;
    text-decoration: none;
    color: black;
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: -10px;
}
.sidebarOpenBtn {
    display: none;
}
.sideTabBox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fcd989;
    color: #9a6633;
}
.tableBox {
    width: 100%;
    padding: 40px;
}
/* .tabBtnsBox {
    width: 100%;
} */
.tabBtns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    border-bottom: 5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.tabBtns:hover {
    border-color: #9a6633;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tabBtns.active {
    border-color: #9a6633;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tabImg {
    width: 60px;
}
.tabImgTitle {
    /* color: white; */
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 15px;
    margin: 0;
}
/* MAIN TABLE CSS */
#example_length {
    display: none;
}
#example_info {
    display: none;
}
.box {
    padding: 10px;
    overflow-x: auto !important;
}
.table-reponsive {
    overflow-x: auto !important;
}
/* #example_filter {
    color: white;
} */
#example_wrapper input[type="search"] {
    border-bottom: 2px solid white !important;
    background: transparent;
    width: 300px;
    border: none;
    outline: 0;
    /* color: white; */
    font-size: 22px;
    margin-bottom: 10px;
}
/* #example_wrapper input[type="search"]::placeholder {
    color: white !important;
} */
#example_paginate {
    margin-top: 15px !important;
}
.paginate_button {
    background-color: white !important;
    color: black !important;
    /* height: 20px !important;
    width: 20px !important; */
    margin: 0 4px;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 5px;
}
.paginate_button.active {
    background-color: #9a6633 !important;
}
/* .myTHead {
    position: relative !important;
}
.myTr {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    padding: 1px !important;
    border-bottom: 0 !important;
    border: 2px solid #9a6633 !important; 
    border-radius: 12px !important;
} */
.texImg {
    width: 90px;
}
/* MAIN TABLE CSS */
tr {
    cursor: move;
}
tr, td {
    background: transparent !important;
    text-align: center;
    border-color: transparent !important;
    border-bottom: 1px solid #9a6633 !important;
    padding: 20px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    font-size: 17px;
}
thead {
    border: 1px solid #9a6633 !important;
    border-radius: 20px !important;
}
th {
    background-color: #9a6633 !important;
    color: white !important;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
}
.actionIconBtn {
    background-color: white;
    padding: 7px;
    border-radius: 50px;
    margin: 0 6px;
}
.actionIconBtn:active {
    border: 0;
}
.actionIcon {
    width: 22px;
}
table.dataTable thead .sorting:before {
    display: none;
}
table.dataTable thead .sorting:after {
    display: none;
}
table.dataTable thead .sorting_asc:before {
    display: none;
}
table.dataTable thead .sorting_asc:after {
    display: none;
}
/* TABLE PAGE CSS */

/* ADD WATCH PAGE CSS */
.addWatchHdng {
    color: #9a6633;
    font-size: 50px;
    /* text-transform: uppercase; */
    padding-bottom: 30px;
}

.textAreaInput {
    border-radius: 0;
}
.formLabelClass {
    /* color: white;  */
    display: none;
}
.addFormInput {
    background: transparent;
    border: 0;
    border: 2px solid #fcd989;
    border-radius: 10px;
    font-size: 20px;
}
.addFormInput:focus {
    box-shadow: none;
    background: transparent;
    border-color: #9a6633;
}
.addFormSelect {
    background: transparent;
    border: 0;
    border: 2px solid #fcd989;
    border-radius: 10px;
    font-size: 20px;
}
.addFormSelect:focus {
    box-shadow: none;
    background: transparent;
    border-color: #9a6633;
}
.form-switch .formToggle {
    width: 4em;
    border: 2px solid #9a6633;
    cursor: pointer;
}
.formToggle {
    height: 2em;
    border-color: #9a6633;
}
.form-check-input:focus {
    border-color: #9a6633;
    box-shadow: none;
}
.socialUpdateBtn {
    margin-left: 40px;
}


/* ADD WATCH PAGE CSS */


.upContainer {
    background-color: #ffffff;
    padding: 30px;
    padding-bottom: 10px;
    box-shadow: #0000001a 0px 4px 12px;
    /* box-shadow: 0 1.25em 3.43em rgba(0, 0, 0, 0.08); */
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
input[type="file"] {
  display: none;
}
.upLabel {
  display: block;
  position: relative;
  background-color: #9a6633;
  color: #ffffff;
  font-size: 1.1em;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 0.3em;
  /* margin: 0 auto 1em auto; */
  cursor: pointer;
}
#image-display {
  position: relative;
  width: 330px;
  overflow-y: scroll;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-evenly;
  gap: 1.25em;
  flex-wrap: wrap;
}
/* #image-display figure {
  width: 45%;
} */
#image-display img {
  /* width: 100%; */
  width: 300px;
}
#image-display figcaption {
  font-size: 0.8em;
  text-align: center;
  color: #5a5861;
}
.upActive {
  border: 2px dashed #9a6633;
  border-radius: 10px;
}
#error {
  text-align: center;
  color: #ff3030;
}
.remove-button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff3030;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0 10px;
    font-size: 25px;
}




/* DASHBOARD CSS  */
.first2Row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
}
.c1 {
    width: 50%;
}
.dashWrapper {
    display: grid;
    column-gap: 60px;
    row-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    /* grid-template-columns: repeat(5, 1fr); */
}
.dashbordFirstCards {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 15px;
    height: max-content;
}
.dashDetailBox {
    display: flex;
    gap: 20px;
}
.dashCardsHdngs {
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
}
.dashCardsHdngs {
    font-weight: 500;
    font-size: 20px;
}
/*  */
.switchDiv{
    display: flex;
    justify-content: end;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  border: 2px solid #9a6633;
  border-radius: 34px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 2px;
  background-color: #9a6633;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #fcd989;
}
input:focus + .slider {
  box-shadow: 0 0 1px #a4a4be;
}
input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
/*  */
.colPadding {
    padding: 20px;
}
/* DASHBOARD CSS  */
.langSwitchDiv {
    justify-content: unset;
    margin: 20px 20px 20px 0;
}
.formLabel2 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 20px;
}
.socialUpdtBtn {
    margin-left: 3rem;
}
.socialLinksRow {
    display: flex;
    align-items: flex-end;
}
.sideBarAnkers {
    color: #9a6633;
    text-decoration: none;
}

/* MOBILE */
/* @media only screen and (min-device-width: 300px) and (max-device-width: 868px) {} */
@media screen and (max-device-width: 596px) {
    th {
        font-size: 18px;
        white-space: nowrap;
    }
    .logoImg {
        width: 90%;
    }
    .loginHdng {
        padding: 70px 0 70px 0;
        font-size: 28px;
    }
    .customInput {
        width: 280px;
        font-size: 22px;
    }
    .loginBtnColor {
        padding: 10px 20px;
    }
    .loginCheck {
        height: 20px;
        width: 20px;
    }
    .loginLabel {
        font-size: 20px;
    }

    .colPadding {
        padding: 20px 10px;
    }
    #image-display {
        margin-top: 30px;
        width: 300px;
    }
    #image-display img {
        width: 150px;
    }
    .remove-button {
        padding: 2px 10px;
        font-size: 20px;
    }
    .upLabel {
        padding: 10px;
        width: max-content;
    }
    

    .table-reponsive {
        overflow-x: scroll !important;
        width: 350px;
    }
    .texImg {
        width: 60px;
    }
    span.checkmark {
        margin-top: 0;
    }


    .upContainer {
        padding: 20px 0;
    }
    .tabBtnsBox {
        height: 700px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .sidebar {
        width: 0;
    }
    .sidebarCloseBtn {
        display: block;
    }
    .sidebarOpenBtn {
        display: block;
    }
    .tableBox {
        padding: 10px;
    }
    .tabBoxLogo {
        width: 200px;
    }
    .tabImg {
        width: 40px;
    }
    .addWatchHdng {
        font-size: 30px;
        padding-top: 30px;
    }
    .socialUpdtBtn {
        margin: 25px 0;
    }
    .socialLinksRow {
        flex-wrap: wrap;
    }
    .content-overlay {
        display: none;
    }
    .tabBtns {
        margin: 0 auto;
    }
    .mainTableBox {
        padding: 0 !important;
    }
}

@media screen and (max-device-width: 992px) {
    .sidebar {
        width: 0;
    }
    .sidebarCloseBtn {
        display: block;
    }
    .sidebarOpenBtn {
        display: block;
    }
    .tableBox {
        padding: 10px;
    }
    .tabBoxLogo {
        width: 200px;
    }
    .tabImg {
        width: 40px;
    }
    .addWatchHdng {
        font-size: 30px;
        padding-top: 30px;
    }
    th {
        font-size: 14px !important;
        white-space: nowrap;
    }
    .mainTableBoxInner {
        grid-template-columns: unset !important;
    }
}


@media screen and (max-device-width: 1500px) {
    .sidebar {
        width: 0;
    }
    .sidebarCloseBtn {
        display: block;
    }
    .sidebarOpenBtn {
        display: block;
    }
    .tableBox {
        padding: 10px;
    }
    .tabBoxLogo {
        width: 200px;
    }
    .tabImg {
        width: 40px;
    }
    .addWatchHdng {
        font-size: 30px;
        padding-top: 30px;
    }
    th {
        font-size: 14px !important;
        white-space: nowrap;
    }
    .mainTableBoxInner {
        grid-template-columns: unset !important;
    }
    .mainTableBox {
        padding: 20px;
    }
    .tabBtnsBox {
        display: flex;
        justify-content: space-around;
        flex-direction: column;
    }
    /* .sideTabBox {
        height: unset;
        width: 90%;
        padding: 10px;
        border-radius: 10px;
    } */
    .tabBtns {
        padding-bottom: 20px;
    }
    .tabBtns.active {
        width: unset;
        border-bottom: 6px solid;
    }
    .tabBoxLogoDiv {
        position: unset;
    }
    .imgDragArea {
        font-size: 16px;
    }
    .activelabel {
        padding-top: 6px;
        font-size: 24px;
    }
    .imageUploadMainDiv {
        margin: 5px;
    }
    #example_paginate {
        margin-top: 15px;
    }
    th {
        font-size: 20px;
    }
    tr, td {
        padding: 10px !important;
        font-size: 15px;        
    }
}