*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --themeColor:#DCE9F3;
    --lightColor:#F3F7FA;
    --darkColor:#31303D;
    --white:#fff;
    --gray:#9A9A9A;
}
select#cameraSelect {
    word-wrap: normal;
    border: 1px solid #ccc;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border-radius: 5px;
}
.select{
    border: 1px solid #ccc;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border-radius: 5px;  
}
.input{
    border: 1px solid #ccc;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border-radius: 5px !important;     
}
#saveBtn {
    background: linear-gradient(180deg, #4CAD35 0%, #35642A 100%);
    padding: 10px 20px;
    color: #fff;
    width: 130px;
    height: 45px;
    border-radius: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cameraSelectBox {
    flex-direction: column;
    display: flex;
    margin-bottom: 10px;
}
.textGray{
    color: var(--gray);
}
.darkText{
    color: var(--darkColor);
}
.f500{
    font-weight: 500;
}
.f600{
    font-weight: 600;
}
.f22{
    font-size:22px;
}
.f16{
    font-size:16px;
}
.f30{
    font-size: 30px;
}
.pagetitle h1{
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-family: "Montserrat", sans-serif;
}
body{
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    color: var(--darkColor);
}
/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 5px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--darkColor); 
    border-radius:5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--darkColor); 
  }
/* login page css start  */

.login {
    background: var(--lightColor);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginForm{
    width: 360px;
    margin: 0 auto;
}
.loginForm h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom:30px;
}
.loginInput .input {
    width: 100%;
    background: var(--themeColor);
    border: 0;
    padding: 20px;
    border-radius: 8px;
}

.loginInput {
    margin-bottom: 20px;
    position: relative;
}
.posChange {
    position: absolute;
    right: 15px;
    top: 23px;
}
.forgotPassword {
    color: var(--darkColor);
    font-weight: 500;
}
.loginBtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darkColor);
    padding: 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
}
.loginBtn:hover{
    color: var(--white);
}
/* login page css end  */

/* after login css start  */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#left-menu.small-left-menu ul li a span{
    display: none;
}
.cardBox {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    padding: 20px;
    background: var(--white);
}
.header-right.float-right i {
    font-size: 20px !important;
}
button.dropdown-toggle {
    /* background: var(--darkColor); */
    background: linear-gradient(180deg, #4CAD35 0%, #35642A 100%);
    border: 0;
    border-radius: 5px;
    color: var(--white);
    padding: 0 5px;
}
.dropdown-menu.show {
    box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
    
}
.selectPark .dropdown button.dropdown-toggle {
    background: linear-gradient(180deg, #4CAD35 0%, #35642A 100%);
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
}
.selectPark .dropdown button.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    right: 14px;
    position: absolute;
    top: 18px;
}
.selectPark .dropdown-menu.show {
    background: linear-gradient(180deg, #4CAD35 0%, #35642A 100%);
}
img.logoIcon {
    width: 25px;
}
.selectPark  .dropdown-menu {
    min-width: 200px;    padding: 0px;
}
.selectPark  .dropdown-menu a{
    color: var(--white);    padding: 5px;
}
.selectPark .dropdown-item:hover {
    color: var(--white);
    background-color: var(--darkColor);
}
textarea.queryBox {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.answerBox{ 
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #4CAD35; 
    margin-top: 20px;
}
#left-menu li ul.open li.active a {
    margin-bottom: 0;
}
#left-menu li ul.open li a {
    margin-bottom: 0;
}
/* after login css end  */

@media only screen and (max-width: 767px) {
.mobWi{
width: 250px;margin-top: 20px;
}
.loginForm {
    width: 100%;
    margin: 0 auto;
}
.login {
    height: auto;
}
.loginForm h1 {
    margin-top: 30px;
}
#header .header-right {
    padding-right: 10px !important;
}
}