/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background: #E9ECEF;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 10px 15px;
    background: #fff;
    background-color: linear-gradient(to right, #00d3e4 , #488dde);
    border: none;
    border-radius: 5px;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.nav{
    margin-left: auto;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.brand-text {
    text-align: center;
    font-weight: bold;
    background: -webkit-linear-gradient( #00caff, #488dde);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    margin-top: 10%;
    margin-left: -3%;
}

.profile-text {
    font-size: 0.9em;
    color: #fff;
    margin-right: 10px;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #fff;
    color: #212529;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding-top: 45px;
    background: white;
}

#sidebar ul.components {
    padding-top: 10%;
}

#sidebar ul p {
    color: #212529;
    padding: 10px;
}

#sidebar ul li a {
    padding: 15px 34px;
    display: block;
}

#sidebar ul li a:hover {
    color: #fff;
    border-left: 7px solid #6534AA;
    background-image: linear-gradient(to right, #6534AA , #488DDE);
    
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #212529;
    /* background: #6d7fcc; */
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 54%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 13px !important;
    padding-left: 55px !important;
    background: #bebfc5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

.menu-title {
    margin: 10px;
    font-size: 13px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

.toggle.ios, .toggle-on.ios, .toggle-off.ios 
{ 
    /* border-radius: 50px;  */
    border:none;
    
}
.toggle.ios .toggle-handle 
{ 
    /* border-radius: 50px; */
    width: 60px;
    
    background-color: #FFEAEA;
}

.btn-info {
    background-color: #6534AA;
    border: none;
}

.btn-info:hover {
    background-color: #6534AA80;
    border: none;
}

.btn-dark {
    background-color: #6534AA80;
    border: none;
}

.btn-dark:hover {
    background-color: #6534aac0;
    border: none;
}

.btn-dark:focus {
    background-color: #6534aac0;
    border: none;
}

/*Avatar*/
.hk-sec-wrapper {
    background: #fff;
    padding: 1.5rem;
    border-radius: .25rem;
    margin-bottom: 14px;
}
.hk-sec-wrapper .hk-sec-title {
    display: block;
    margin-bottom: 10px;
}
.mb-40 {
    margin-bottom: 15px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.avatar {
    font-size: 1rem;
    position: relative;
    display: inline-block;
    width: 3.875rem;
    height: 3.875rem;
}

.avatar.avatar-xl {
    font-size: 1.70833rem;
    width: 5.125rem;
    height: 5.125rem;
}

.avatar.avatar-lg {
    font-size: 1.4rem;
    width: 4.5rem;
    height: 4.5rem;
}

.avatar.avatar-md {
    font-size: .95rem;
    width: 3.25rem;
    height: 3.25rem;
}

.avatar.avatar-sm {
    font-size: .9rem;
    width: 2.625rem;
    height: 2.625rem;
}

.avatar.avatar-xs {
    font-size: .6rem;
    width: 2rem;
    height: 2rem;
}

.avatar .avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.avatar .avatar-text {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /* text-transform: uppercase; */
    overflow: hidden;
    background: rgb(150, 12, 127);
    font-weight: 460;
    color: white;
}

.avatar .avatar-text .initial-wrap {
    display: table;
    width: 100%;
    height: 100%;
}

.avatar .avatar-text .initial-wrap > span {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.avatar .avatar-text:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(178, 230, 250, 0.5);
}


.avatar-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.avatar-group .avatar {
    font-size: .9rem;
    width: 2.625rem;
    height: 2.625rem;
}

.avatar-group .avatar .avatar-img,
.avatar-group .avatar .avatar-text {
    border: 2px solid #fff;
}

.avatar-group.avatar-group-overlapped .avatar {
    margin-right: -13px;
}

.avatar-group.avatar-group-overlapped .avatar:hover {
    z-index: 1;
}

.avatar-group.avatar-group-lg .avatar {
    font-size: .95rem;
    width: 3.25rem;
    height: 3.25rem;
}

.avatar-group.avatar-group-lg.avatar-group-overlapped .avatar {
    margin-right: -15px;
}

.avatar-group.avatar-group-sm .avatar {
    font-size: .4rem;
    width: 1.7rem;
    height: 1.7rem;
}

.avatar-group.avatar-group-sm.avatar-group-overlapped .avatar {
    margin-right: -10px;
}

.btn-info:focus {
    background-color: #6534AA80;
    border: none;
}

.btn-success {
    background-color: #56F253;
    border: none;
}

.btn-success:hover {
    background-color: #56f253d3;
    border: none;
}

.btn-success:focus {
    background-color: #56f253d3;
    border: none;
}

.btn-outline-info:disabled {
    color: #6534AA;
    background-color: transparent;
}

.btn-outline-info {
    color: #6534AA;
    border-color: #6534AA;
}

.bg-success {
    background-color: #198754!important;
}

.bg-primary {
    background-color: #00A6F5!important;
}

.bg-danger {
    background-color: #FF3C00!important;
}

.bg-info {
    background-color: #6534AA!important;
}
.card {
    border-radius: 10px;
    padding: 10px;
    border: none;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    border: none;
    background-color: #fff;
    font-size: 18px;
}

.card-side {
    background: linear-gradient(to right, #6534AA , #488DDE);
}

.btn-custom {
    background: linear-gradient(to right, #6534AA , #488DDE);
    border: none;
    color: #fff;
    width: 100%;
}

.ket-status{
    font-size: 14px;
}

.progress {
    height: 20px;
}

.progress-bar {
    width: 0;
    animation: progress 5.5s ease-in-out forwards;
    
    
  } 

  .title {
    opacity: 0;
    animation: show 3.35s forwards ease-in-out 0.5s;
  }
  
  @keyframes progress {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  } 
  @keyframes show  {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
}