@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');


h1, h2, h3, h4, h5 {
    font-family: 'Circular';
}

.fls-tag {
    font-size: 12px;
    padding: 0.3rem;
    border-radius: 5px;
}

.fls-tag-grey {
    background-color: #CCC;
    font-size: 12px;
    padding: 0.3rem;
    border-radius: 5px;
}

.fls-list-holder .fls-list-item {
    transition: 0.2s;
    cursor: pointer;
}

.fls-list-holder .fls-list-item:hover {
    background-color: #ececec;
}

.fls-item-icon {
    color: #FFF;
    font-size: 12px;
    padding: 0.3rem;
    border-radius: 5px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary-dark) !important;
    transition: 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark) !important;
}

.btn-secondary {
    background-color: #343A40 !important;
    border-color: #41474d !important;
    transition: 0.2s;
}

.btn-secondary:hover {
    background-color: #5b646c !important;
}


.btn:focus:focus {
    box-shadow: 0 0 0 0.25rem var(--color-primary-25) !important;
}

.btn-blue {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-blue:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-blue:active {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}



/* Inputs */

.form-control,  textarea {
    border: 1px solid #e1e1e1 !important;
    padding: 0.5rem !important;
    border-radius: 0.2rem !important;
    transition: 0.2s !important;
    margin: 0 0.3rem 0.3rem 0 !important;
}

.form-control:hover {
    background-color: #EEE !important;
    border-color: rgba(0,0,0,0.2) !important;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--color-primary-70) !important;
    outline: 0;
   /*  box-shadow: 0 0 0 0.10rem var(--color-primary-25); */
    box-shadow: initial !important;
}

.readonly {
    background-color: initial !important;
    border-color: #FFF !important;
    cursor: initial;
    padding: 0 !important;
}

#content-holder {
    background-color: #FBFBFB;
    /* background-color: #F5F5F5; */
}


/* Switch Checkbox */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
    margin:0;
	margin-right: 0.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #F26322;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.div-close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50% !important;

    background-color: initial !important;
    color: #5B646C !important;
    border-style: none;
}

.div-close-btn:hover {
    color: #FFF !important;
}

.hover-cursor-pointer:hover {
    cursor: pointer;
}

.dropzone {
    transition: 0.2s;
}

.dropzone:hover {
    background-color: var(--color-primary-25);
    transform: scale(0.95);
    border-radius: 1rem;
}

.btn-disabled {
    opacity: 0.5;
}

.btn-hidden {
    opacity: 0;
}


/* 
 NESTED SORTABLE
*/
.fls-draggables-holder .list-group-item {
    margin-top: 2px;
    background-color: #EEEEEE;
}

.fls-draggables-holder .fls-draggable-item .list-group-item {
    transition: background-color 0.2s;
    border: 1px solid #CCC;
}

.fls-draggables-holder .list-group-item .list-group-item {
    background-color: #FFF;
}

.fls-draggables-holder .list-group-item .list-group-item:first-child {
    margin-top: 0.6rem;
}

.fls-draggable-item .list-group-item:hover {
    background-color: #e2f6ff;
    cursor: move;
}

.fls-draggable-item .list-group-item.highlighted {
    background-color: #F2632233;
    border: 2px solid #F2632266;
}

.fls-draggables-holder .list-group-item.fls-draggable-item::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f0c9';
    color: #888;
    margin-right: 1rem;
}

.fls-draggables-holder .action_holder {
    position: absolute;
    top: .5rem;
    right: 0;
}

/* Modal */
.modal-content {
    /* border: 4px solid rgba(255,255,255,0.5) !important; */
    border-style: none;
    border-radius: 7px 7px 0px 0px;
    box-shadow: rgb(0 0 0 / 10%) -4px 9px 25px -6px !important;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    border-radius: 5px 5px 0px 0px;
    background-color: #333333;
    color: #FFF;
    font-size: 1rem;

}

.modal-content .modal-close-icon {
    position: absolute;
    right: .9rem;
    top: .9rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0);
    color: rgba(255,255,255,.5);
}

.modal-content .modal-close-icon:hover {
    border-radius: 50%;
    color: rgba(255,255,255,1);
}

.modal-footer {
    margin-bottom: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 1rem;
    background-color: #EEE;
}


/* Table */
/* .font-sm {
    font-size: 14px !important;
    color: #333;
    font-family: 'Circular Book' !important;
}

.font-sm th {
    font-size: 14px !important;
    color: #000;
    font-family: 'Circular';
}

.font-sm tr {
    transition: .2s;
}

.font-sm tr:hover {
    background-color: rgba(0,0,0,.05);
}

.font-sm th {
    color: #000;
    font-weight: 500 !important;
} */

.table {
    font-size: 14px !important;
    color: #333;
    font-family: 'Circular Book' !important;
}

.table th {
    font-size: 14px !important;
    color: #000;
    font-family: 'Circular';
}

.table tr {
    transition: .2s;
}

.table tr:hover {
    background-color: rgba(0,0,0,.05);
}

.table th {
    color: #000;
    font-weight: 500 !important;
}


/* Tab pane */
.nav-tabs .nav-link {
    color: rgb(110, 110, 110) !important;
    border: none;

}

.nav-tabs .nav-link:hover {
    color: var(--color-primary) !important;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--color-primary);
    font-weight: bold;
    color: #333 !important;
}


/* Animated icons */

                    
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #198754;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .fls-icon-checkmark {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #198754;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .checkmark__check.animateElement {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  

  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.3, 1.3, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #198754;
    }
  }

  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  /* Cross */

  
.crossmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #DC3545;
    fill: none;
   animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .fls-icon-crossmark {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #FFFFFF;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #DC3545;
    animation: fillred .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .crossmark__check.animateElement {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  .cross__path.animateElement {
    stroke: #ffffff;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    transform-origin: 50% 50% 0;
  }
  .cross__path--right.animateElement {
    animation: 0.3s ease 0.8s normal forwards 1 running stroke;
  }
  .cross__path--left.animateElement {
    animation: 1s ease 0.8s normal forwards 1 running stroke;
  }
  @keyframes fillred {
    100% {
      box-shadow: inset 0px 0px 0px 30px #DC3545;
    }
    
  }

  
  
/* Card */
  .card {
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 6px !important;
  }
  
  .card-title {
    font-family: 'Circular' !important;
  }

/* Dots */
.fls-color-green {
    color: #069C56;
}

.fls-color-blue {
    color: #0E8BC5;
}

.fls-color-orange {
    color: #FF681E;
}

.fls-color-grey {
    color: #CCCCCC;
}



/* Datatables */
.paginate_button.previous, .paginate_button.current, .paginate_button.next {
    background-color: var(--color-primary) !important;
    color: #FFF !important;
    border-color: var(--color-primary-dark) !important;
    transition: 0.2s;
    border-radius: .25rem !important;
    padding: .1em 1em !important;
    font-size: .9rem;
}

.paginate_button.previous.disabled, .paginate_button.current.disabled, .paginate_button.next.disabled {
    background-color: var(--color-secondary-20) !important;
    color: var(--color-secondary-secondary-30) !important;
    border-color: var(--color-secondary-20) !important;
    transition: 0.2s;
    border-radius: .25rem !important;
    padding: .1em 1em !important;
    font-size: .9rem;
}

.paginate_button.previous:hover, .paginate_button.current:hover, .paginate_button.next:hover,
.paginate_button.previous.disabled:hover, .paginate_button.current.disabled:hover, .paginate_button.next.disabled:hover {
    background-color: var(--color-primary-80);
    color: #333;
}



/* Vertical component list */

@media (max-width: 576px) { 
    .advanced-row .badge-container {
        top: 0.5rem;
        right: 0.5rem;
      }
}

.advanced-row {
    background-color: #FFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    position: relative;
    transition: 0.2s;
    border-left: 0px solid #FFF;
  }
  .advanced-row .title {
    font-weight: bold;
  }
  .advanced-row .subtitle {
    font-size: 12px;
  }
  .advanced-row .content {
    font-size: 13px;
  }
  .advanced-row .badge-container {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
  .advanced-row .badge-container .bg-secondary {
    background-color: var(--color-secondary) !important;
  }
  .advanced-row .badge-container .bg-primary {
    background-color: var(--color-primary) !important;
  }
  .advanced-row.bg-red-10 {
    background-color: rgba(255, 0, 0, 0.1) !important;
  }
  .advanced-row.bg-black-10 {
    background-color: rgba(0, 0, 0, 0.1) !important;
  }
  .advanced-row.status-canceled {
    opacity: 0.5;
    background-color: initial !important;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 16.67%, transparent 0, transparent 50%, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 66.67%, transparent 0, transparent);
    background-size: 4.24px 4.24px;
  }
  .advanced-row:hover {
    background-color: var(--color-primary-10);
    cursor: pointer;
    border-left: 5px solid var(--color-primary-50);
  }
  .advanced-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
  }
  .advanced-row:last-child {
    border-bottom: none;
  }
  