@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("loader.css");

:root {
    --primary: #00614d;
    --secondary: #ff8400;
    --grey: #888888;
    --grey-dark: #666;
    /* --light: #f1fffc; */
    --light: #e1ecee;
    --light1: #f4f7f7;
    --black: #252525;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-moz-selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-selection {
    background: var(--primary);
    color: #fff;
}

html {
    overflow-x: hidden;
    font-family: 'Rubik', sans-serif !important;
}

body {
    font-family: 'Rubik', sans-serif !important;
    overflow-x: hidden;
    color: var(--black);
    font-size: 18px !important;
    background-color: var(--light);
}

p,
button {
    font-family: 'Rubik', sans-serif !important;
    
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: #252525;
    font-weight: 600;
    font-family: 'Rubik', sans-serif !important;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Rubik', sans-serif !important;
}

a {
    text-decoration: none;
    font-family: 'Rubik', sans-serif !important;
}

.full-img {
    width: 100%;
    border-radius: 5px;
}

.f18 {
  font-size: 18px !important;
}

.f16 {
  font-size: 16px !important;
}


/*==== Login ====*/

.reg-logo {
    width: 100%;
    max-width: 220px;
    margin-top: 2vh;
}

#login-cont {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--light);
  }

  .login-cont {
    width: 100%;
    min-height: 200px;
    background-color: #fff;
    border-radius: 10px;

  }

  .login-header {
    width: 100%;
    min-height: 50px;
    padding: 10px;
    margin-top: 20px;
    /* background-color: #f2f5fe;
    border-radius: 10px 10px 0 0; */
  }

  .login-header h1 {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 500;
    text-align: center;
  }

  .login-body {
    width: 100%;
    padding: 20px;
  }

  .login-body label {
    font-weight: 500;
  }

  .btn-submit {
    color: #fff;
    padding: 7px 25px;
    border-radius: 4px;
    border: none;
    font-size: 18px;
    outline: none;
    transition: all 0.3s;
    background: var(--primary);
    box-shadow: 0 6px 20px #00614d5c;
  }

  .btn-submit:hover {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 6px 20px #ff84005c;
  }

  .form-control {
    height: 40px;
    font-size: 18px;
  }

  .form-select {
    height: 40px;
    font-size: 18px;
  }

  .form-control:focus {
    box-shadow: none;
  }

  /*==== End Login ====*/


  .sidebar {
    width: 240px;
    position: fixed;
    left: 0;
    height: 100%;
    /* background: #21336e; */
    background-color:#fff;
    padding: 10px;
    overflow-y: scroll;
    transition: all 0.4s;
}

/* .sidebar::-webkit-scrollbar {
    width: 2px;
  }
  .sidebar::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: 2px solid orange;  
  }
  .sidebar {
    scrollbar-width: thin;          
    scrollbar-color: transparent transparent; 
  } */

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #f0f0f0;
    border-radius: 10px;
}

.sidebar {
    scrollbar-width: thin;
    scrollbar-color: #fff #f0f0f0;
}

.side-logo {
    padding-top: 15px;
}

.side-logo h1 {
    /* font-family: 'Bruno Ace SC', cursive; */
    color: var(--black);
    font-size: 24px;
    text-align: center;
}

.side-logo h1 span {
    padding: 5px;
    background: var(--primary);
    border-radius: 3px;
    color: #fff;
}

.side-nav {
    margin: 50px 10px 0 10px;
    padding: 0 0 20px 0;
    list-style: none;
}

.side-nav h1 {
    color: var(--grey-dark);
    font-size: 20px;
    font-weight: 400;
}

.side-nav li {
    margin-bottom: 3px;
}

.side-nav li a {
    color: #000 !important;
    text-decoration: none;
    padding: 15px 10px 15px 20px;
    font-weight: 500;
    font-size: 16px;
    display: block;
    transition: all 0.4s;
    position: relative;
}

.side-nav li a.active {
    background: var(--secondary);
    color: #fff !important;
    border-radius: 4px;
}

.side-nav li a:hover {
    /* background: #5b6aa1; */
    color:var(--primary);
    border-radius: 4px;
}

.has-dropdown {
    position: relative;
    cursor: pointer;
}
.has-dropdown > span {
    position: absolute;
    right: 7px;
    transition: all 0.4s;
    top: 17px;
    color: var(--black);
}

.side-nav li a > span {
    /* background-color: #2f499e; */
    padding-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 20px;
    text-align: center;
    border-radius: 3px;
}
.rotate {
    transition: all 0.4s;
    padding-top: 3px;
}
.rotate-arrow {
    transform: rotate(180deg);
    top: 15px !important;
}

.dropdown {
    list-style: none;
    padding: 0 0 0 10px;
    margin-left: 10px;
    display: none;
}

.dropdown li {
    border-bottom: solid 1px #323635;
    padding-bottom: 4px;
}

.dropdown li a {
    padding: 10px 10px 10px 25px;
    color: #9faddd;
    font-size: 15px;
    position: relative;
    transition: all 0.4s;
}

.dropdown li a:hover {
    color: var(--primary) !important;
}

.dropdown li a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 17px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.dropdown.active {
    display: block;
}

.right-cont {
    width: calc(100% - 240px);
    margin-left: 240px;
    transition: all 0.4s;
}

.top-bar {
    min-height: 50px;
    background: #fff;
    box-shadow: 0 0 10px #f2f5fe;
    padding: 0 20px;

}

.title p {
    font-size: 24px;
    line-height: 50px;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.right-menu {
    padding-top: 12px;
    position: relative;
}

.right-menu a {
    padding: 10px;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 4px;
}

.right-menu img {
    width: 40px;
    padding-right: 15px;
}

.right-menu-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background-color: #fff;
    padding: 10px;
    border-radius: 0px 0px 4px 4px;
    box-shadow: 0 5px 5px #f0f0f0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    z-index: 100;
}

.right-menu-dropdown li {
    list-style: none;
}

.right-menu-dropdown li a {
    color: #000;
    background: none;
    padding: 10px 5px;
    transition: all 0.3s;
}

.right-menu-dropdown li:last-child {
    margin-top: 5px;
}

.right-menu-dropdown li a:hover {
    color: var(--secondary);
}

.right-menu-show {
    visibility: visible;
    opacity: 1;
    top: 50px;
}

.menu-icon {
    display: inline-block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    
}

.menu-btn {
    width: 30px;
    height: 2px;
    background-color: #21336e;
    display: block;
    position: relative;
    cursor: pointer;
    margin-top: 20px;
    
}

.menu-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: -7px;
    width: 30px;
    height: 2px;
    background-color: #21336e;
    cursor: pointer;
    
}

.menu-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 30px;
    height: 2px;
    background-color: #21336e;
    cursor: pointer;
}

.admin-sec {
    padding: 10px 20px 80px 20px;
    position: relative;
    min-height: calc(100vh - 50px);
}
.ad-box {
    width: 100%;
    background: #fff;
    min-height: 100px;
    padding: 10px 10px 10px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s;
    margin-bottom: 30px;
}
.ad-link {
    transition: all 0.4s;
}
.ad-link:hover .ad-box {
    box-shadow: 0px 0px 21px 0px rgba(189, 189, 189, 0.3);
}
.ad-icon {
    font-size: 30px;
    color: var(--grey-dark);
    border-radius: 50%;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
}

.ad-text {
    font-size: 16px;
    margin-top: 8px;
    font-weight: 500;
    color: var(--grey-dark);
    width: 100%;
    text-align: left;
}

/* .bg-1 {
    background-color: #ff7455;
}

.bg-2 {
    background-color: #37a1eb;   
}

.bg-3 {
    background-color: #13d983;   
}

.bg-4 {
    background-color: #405189;   
}

.bg-5 {
    background-color: #feb451;   
}

.bg-6 {
    background-color: #ed4747;   
}

.bg-7 {
    background-color: #b562e5;   
}

.bg-8 {
    background-color: #8167f9;   
}

.bg-9 {
    background-color: #58d481;   
}

.bg-10 {
    background-color: #e94e96;   
}

.bg-11 {
    background-color: #23bbbb;   
} */

.sidebar-left {
    left: -280px;
   
}
.right-cont-left {
    margin-left: 0;
    width: 100%;
}

.footer {
    width: 100%;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #fff; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer p {
    margin: 0;
    color: #999;
}

.footer p a {
    color: #777;
}

@media(max-width:992px) {
    .sidebar {
        left: -280px;
        top: 50px;
        z-index: 20;
    }
    .sidebar-left {
        left: 0px;
        top: 50px;
    }

    .right-cont {
        margin-left: 0;
        width: 100%;
    }

    .top-bar {
        position: fixed;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        z-index: 10;
    }

    .admin-sec {
        margin-top: 50px;
    }
}

