/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


body {
    font-family: 'Poppins', sans-serif;
    background: var(--color5);
}
.nav-active {
    background-color: var(--color4) !important;
    color:white !important;
}
#collapseExample2 .nav-active , #collapseExample3 .nav-active, #collapseExample4 .nav-active, #collapseExample5 .nav-active {
    background-color: #f6f8fc !important;
    color: var(--color3) !important;
}
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: var(--color1);
    color: #fff;
    transition: all 0.3s;
}
#sidebar li a {
    color: var(--color3);
}
#sidebar .sidebar-header {
    padding: 20px;
}
#sidebar ul li a:hover {
    color: var(--color2);
    background: #fff;
}
.list-group, .input-group {
    background-color: white !important;
}

#sidebar ul li.active>a  {
    color: white !important;
    background: var(--color4);
}
a[aria-expanded="true"] {
    background: var(--color4) !important;
    color:white !important;
}


.btn-primary {
    background-color: var(--color2);
    border:1px solid var(--color2);
}

.btn-primary:hover {
    background-color: var(--color2);
    border:1px solid var(--color2);
}

.btn-primary:focus {   
  border-color: var(--color2) !important;
  box-shadow: 0 1px 1px var(--color2) inset, 0 0 8px var(--color2) !important;
  outline: 0 none;
  background-color: var(--color2) !important;
}



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: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}


.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}


#sidebar.active {
    margin-left: -250px;
}


#sidebar ul.components {
    padding: 20px 0;
    /*border-bottom: 1px solid #47748b; */
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}


.btn-info {
    background-color: var(--color2) !important;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: white;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: white !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}



.select2-selection {
    min-height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.dt-info {
    font-size:12px !important;
}



.dropzone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 500px;
}

.dropzone__input {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.dropzone__file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone__icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.dropzone__text {
    font-size: 16px;
}


.btn-default {
    border:1px solid gray;
}


.select-input.form-control[readonly]:not([disabled]) {
    background-color:white !important;
}


input[readonly], .bg-gray {
    background-color: #f6f6f6;
}
.bg-gray2 {
    background-color: #cfcfcf;
}


.progress-container {
    display: flex;
    justify-content: space-between;
    width:130px !important;
  }

  .step {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    background-color: lightgray;
    display: inline-block;
  }

  .step.pending {
    background-color: lightgray;
  }




    
    @media (max-width: 700px) {
      .avatar .rounded-circle {
        width: 35px;
        height: 35px;
        font-size: 18px; 
      }
    }
    
    @media (min-width: 700px) {
        .avatar .rounded-circle {
          width: 80px;
          height: 80px;
          font-size: 32px; 
        }
      }
    


      .installer-card {
        cursor: pointer;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom:10px !important;
        transition: background-color 0.3s ease;
    }

    .installer-card.selected {
        background-color: var(--color4) !important;
        color: #fff;
    }

    @media (max-width: 700px) {
        .table>:not(caption)>*>* {
            padding: 0.4rem 0.4rem !important;
        }
        td input {
            min-width:150px;
        }
        .input-group input {
            min-width:100px !important;
        }
        .btn {
            margin-bottom:10px;
        }
    }

    .btn {
        margin-bottom:10px;
    }







@media (max-width: 768px) {
    #datatable th, #datatable td, .dtable th, .dtable td {
        padding: 12px 10px; 
        font-size: 14px; 
        white-space: nowrap; 
    }
    
    #datatable tbody tr, .dtable tbody tr {
        margin-bottom: 10px; 
    }
    

    .table {
        display: block; 
        width: 100%; 
    }
    .paginationtable, .rowspage {
        text-align:center !important;
        margin-top:20px;
    }

}



.datatable table td
{
    padding:6px 20px !important;
    font-weight:400 !important;
}

.datatable-pagination {
    padding:0px !important;
}



.iti {
    width: 100%;
  }
  
  .iti__flag-container {
    margin-right: 5px;
  }


textarea:read-only , input[type="text"]:read-only, select[read-only]
{
    background-color: #f6f6f6 !important;
}

.btn-default {
    padding:10px 10px !important;
    height:35.28px !important;
    font-size:15px !important;
}

.datatable-pagination-nav {
    display:none !important;
}