﻿/*! 
 * * Theme Name: LARAPRESS
 * * Theme URI: none
 * * Description: Larapress is a custom wordpress theme.
 * * Author: Fast Eddy
 * * Author URI:
 * * Version: 1.0
 * * License: GNU General Public License v2
 * * License URI: http://www.gnu.org/licenses/gpl-2.0.html 
 * */
hr {
    height: 2px !important;
    background: #f4f4f4;
    opacity: 1
}
.prev.page-numbers,
.next.page-numbers{
	width: fit-content !important;
	padding-left: 8px;
	padding-right: 8px;
}
.text-primary {
    color: var(--primary) !important
}

.text-secondary {
    color: var(--secondary) !important
}

.text-black {
    color: #252525 !important
}

.text-gray {
    color: #9a9a9a !important
}

.text-l-gray {
    color: #a8a8a8 !important
}

.bg-primary {
    background: var(--primary) !important
}

.bg-secondary {
    background: var(--secondary) !important
}

.bg-gray {
    background: #f4f4f4 !important
}

.bg-dark-gray {
    background: var(--gray) !important
}

.uppercase {
    text-transform: uppercase
}

.ff-josefina {
    font-family: "Josefin Sans", sans-serif
}

.fs-1 {
    font-size: 46px !important;
    line-height: 1.4 !important
}

@media(max-width: 575px) {
    .fs-1 {
        font-size: 34px !important
    }
}

.fs-2 {
    font-size: 36px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-2 {
        font-size: 28px !important
    }
}

.fs-3 {
    font-size: 30px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-3 {
        font-size: 18px !important
    }
}

.fs-4 {
    font-size: 24px !important;
    line-height: 1.3 !important
}

@media(max-width: 575px) {
    .fs-4 {
        font-size: 18px !important
    }
}

.fs-5 {
    font-size: 20px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-5 {
        font-size: 16px !important
    }
}

.fs-6 {
    font-size: 18px !important;
    line-height: 1.5 !important
}

@media(max-width: 575px) {
    .fs-6 {
        font-size: 14px !important
    }
}

.fw-medium {
    font-weight: 500 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.text-justify {
    text-align: justify
}

.gap-y-4 {
    gap: 30px 0
}

.ff-default .ff-el-form-control {
    border-radius: 6px !important;
    border: solid 1px #fff;
    color: #a7a7a7 !important;
    resize: none
}

.ff-default .ff-el-form-control::placeholder {
    color: #a7a7a7 !important
}

.ff-default .ff-el-form-control:hover,
.ff-default .ff-el-form-control:focus {
    border-color: var(--primary) !important
}

.border-white {
    border: solid 1px #fff
}

.decoration-none {
    text-decoration: none
}

.rounded-10 {
    border-radius: 10px
}

.rounded-20 {
    border-radius: 20px
}

.rounded-60 {
    border-radius: 60px
}

.btn,
.ff-default .ff-btn-secondary:not(.ff_btn_no_style) {
    border: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    border-radius: 5px;
    padding: 11px 28px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    outline: 0 !important;
    box-shadow: none !important;
    transition: .2s linear !important
}

.btn small,
.ff-default .ff-btn-secondary:not(.ff_btn_no_style) small {
    font-size: 12px
}

.btn::before,
.ff-default .ff-btn-secondary:not(.ff_btn_no_style)::before {
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    width: 120%;
    height: 120%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
    margin: auto;
    transform: scale(0.1);
    transition: .3s ease-in-out;
    z-index: -1
}

.btn:hover,
.ff-default .ff-btn-secondary:hover:not(.ff_btn_no_style) {
    background: rgba(0, 0, 0, 0)
}

.btn:hover::before,
.ff-default .ff-btn-secondary:hover:not(.ff_btn_no_style)::before {
    opacity: 1;
    transform: none
}

.btn.btn-outline-primary,
.ff-default .btn-outline-primary.ff-btn-secondary:not(.ff_btn_no_style) {
    border: solid 1px var(--primary);
    color: #252525;
    background: rgba(0, 0, 0, 0)
}

.btn.btn-outline-primary::before,
.ff-default .btn-outline-primary.ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: var(--primary)
}

.btn.btn-outline-primary:hover,
.ff-default .btn-outline-primary.ff-btn-secondary:hover:not(.ff_btn_no_style) {
    color: #fff
}

.btn.btn-transparent,
.ff-default .btn-transparent.ff-btn-secondary:not(.ff_btn_no_style) {
    color: #fff;
    background: rgba(227, 227, 227, .2);
    border: solid 2px #f8f8f8
}

.btn.btn-white-blur,
.ff-default .btn-white-blur.ff-btn-secondary:not(.ff_btn_no_style) {
    background: rgba(227, 227, 227, .2);
    backdrop-filter: blur(10px);
    letter-spacing: 2px;
    color: #fff;
    border: solid 2px #f8f8f8
}

.btn.btn-white-blur::before,
.ff-default .btn-white-blur.ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: #fff
}

.btn.btn-white-blur:hover,
.ff-default .btn-white-blur.ff-btn-secondary:hover:not(.ff_btn_no_style) {
    color: var(--primary) !important
}

.btn.btn-primary,
.ff-default .ff-btn-secondary:not(.ff_btn_no_style) {
    background: var(--primary);
    color: #fff;
    outline: 2px solid rgba(0, 0, 0, 0) !important
}

.btn.btn-primary::before,
.ff-default .ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: var(--primary)
}

.btn.btn-primary:hover,
.ff-default .ff-btn-secondary:hover:not(.ff_btn_no_style) {
    outline: 6px solid rgba(51, 102, 204, .25) !important
}

.btn.btn-secondary,
.ff-default .btn-secondary.ff-btn-secondary:not(.ff_btn_no_style) {
    background: var(--secondary);
    color: #fff
}

.btn.btn-secondary::before,
.ff-default .btn-secondary.ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: var(--secondaryAlt)
}

.btn.btn-third,
.ff-default .btn-third.ff-btn-secondary:not(.ff_btn_no_style) {
    background: var(--third);
    color: #252525;
    outline: 2px solid rgba(0, 0, 0, 0) !important
}

.btn.btn-third::before,
.ff-default .btn-third.ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: var(--third)
}

.btn.btn-third:hover,
.ff-default .btn-third.ff-btn-secondary:hover:not(.ff_btn_no_style) {
    outline: 6px solid rgba(254, 203, 78, .25) !important
}

.btn.btn-gray,
.ff-default .btn-gray.ff-btn-secondary:not(.ff_btn_no_style) {
    background: var(--gray);
    color: #fff
}

.btn.btn-gray::before,
.ff-default .btn-gray.ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: var(--secondaryAlt)
}

.btn.btn-white-secondary,
.ff-default .btn-white-secondary.ff-btn-secondary:not(.ff_btn_no_style) {
    background: #fff;
    color: var(--primary)
}

.btn.btn-white-secondary--black,
.ff-default .btn-white-secondary--black.ff-btn-secondary:not(.ff_btn_no_style) {
    color: #000
}

.btn.btn-white-secondary--black:hover,
.ff-default .btn-white-secondary--black.ff-btn-secondary:hover:not(.ff_btn_no_style) {
    color: #fff
}

.btn.btn-white-secondary::before,
.ff-default .btn-white-secondary.ff-btn-secondary:not(.ff_btn_no_style)::before {
    background: var(--secondary)
}

.btn.btn-white-secondary:hover,
.ff-default .btn-white-secondary.ff-btn-secondary:hover:not(.ff_btn_no_style) {
    color: #fff
}

.ff-default .ff-btn-secondary:not(.ff_btn_no_style) {
    background: var(--primary) !important
}

.fluentform .ff_step_nav_last {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.fluentform .ff-el-progress-bar {
    background: var(--primary) !important
}

.underline-anchor {
    text-decoration: underline
}

.splide__arrow {
    background: rgba(0, 0, 0, 0) !important
}

.splide__arrow::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: #fff;
    font-size: 40px
}

.splide__arrow svg {
    display: none
}

.splide__arrow--prev {
    left: 80px
}

.splide__arrow--prev::before {
    content: ""
}

.splide__arrow--next {
    right: 80px
}

.splide__arrow--next::before {
    content: ""
}

.main-header {
    position: static;
    width: 100%;
    z-index: 10;
    background: #fff;
    top: 0;
    left: 0;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    transition: .7s cubic-bezier(0.62, 0, 0.4, 1)
}

@media(max-width: 991px) {
    .main-header .container-fluid {
        position: static
    }
}

.main-header .custom-logo-link {
    color: #252525
}

.main-header .custom-logo-link img {
    max-width: 100px;
    height: auto
}

.main-header .navbar-nav {
    gap: 10px
}

@media(max-width: 991px) {
    .main-header .navbar-nav {
        gap: 0
    }
}

.main-header .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #252525;
    position: relative;
    transition: .3s ease-out
}

.main-header .navbar-nav .nav-link:hover {
    color: var(--primary)
}

.main-header .navbar-toggler {
    width: 35.5px;
    height: 30px;
    position: relative;
    background: rgba(0, 0, 0, 0);
    outline: none !important;
    box-shadow: none !important;
    z-index: 4
}

.main-header .navbar-toggler:hover span:nth-child(2) {
    transform: translateX(10%)
}

.main-header .navbar-toggler:hover span:nth-child(3) {
    transform: translateY(8px) translateX(20%)
}

.main-header .navbar-toggler span {
    position: absolute;
    background: #fff;
    width: 30px;
    height: 3px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform-origin: center center;
    transition: .5s ease-out
}

.main-header .navbar-toggler span:nth-child(1) {
    transform: translateY(-8px)
}

.main-header .navbar-toggler span:nth-child(3) {
    transform: translateY(8px)
}

.main-header .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(-45deg)
}

.main-header .navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0
}

.main-header .navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(45deg)
}

.main-footer__widget-area {
    padding: 44px 0 60px;
    font-size: 18px
}

.main-footer__widget-area .social-links a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: .2s ease-out
}

.main-footer__widget-area .social-links a:hover {
    opacity: .8
}

.main-footer__widget-area .navbar-nav .nav-link {
    color: #252525;
    transition: .2s ease-out
}

.main-footer__widget-area .navbar-nav .nav-link:hover {
    color: #9a9a9a
}

@media(min-width: 992px) {
    .main-footer__widget-area .navbar-nav .nav-link {
        padding-top: 0;
        padding-bottom: 0
    }
}

.floating-whats {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff !important;
    background: var(--primary);
    bottom: 90px;
    right: 30px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1)
}

.floating-fb {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff !important;
    background: var(--primary);
    bottom: 30px;
    right: 30px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1)
}

:root {
    --primary: #E1BA12;
    --primaryAlt: #2e5cb8;
    --secondary: #18bebc;
    --secondaryAlt: #15a7a6;
    --third: #fecb4e;
    --thirdAlt: #fec435;
    --gray: #C8D3D2
}

::selection {
    color: #fff;
    background: var(--primary)
}

.sticky-0 th{
    position: sticky;
    top: 0;
    z-index: 800;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
}
.overflow-y-clip{
    overflow-y: clip !important;
}
body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    color: #252525;
    font-size: 16px;
    line-height: 1.38;
    /* padding-top: 61px */
}

.mainWrapper {
    max-width: 100vw;
    /*overflow: hidden*/
}

img {
    max-width: 100%
}

img.abs-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.container .container-fluid,
.container .container {
    padding: 0;
    max-width: 100%
}

.content-editor ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.section {
    padding: 48px 0;
    position: relative;
    z-index: 2
}

@media(max-width: 575px) {
    .section {
        padding: 40px 0
    }
}

.section__title {
    font-weight: 600
}

.section--full-screen {
    min-height: 100vh
}

.section.section--primary {
    color: #fff
}

.modal .modal-content {
    border-radius: 20px
}

.modal .modal-content .modal-header {
    border: no
}

/*# sourceMappingURL=style.css.map */
.main-footer img {
    width: 100px;
    height: auto;
}

.lang-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0 20px;
    text-transform: uppercase;
}

.lang-menu a {
    color: #252525;
    text-decoration: none;
    font-weight: 600;
}

.lang-menu .current-lang a {
    color: var(--primary)
}

.acf-field {
    padding-left: 0 !important;
    padding-right: 0;
}

.my-account-link {
    background: var(--primary);
    color: #FFFFFF !important;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mainWrapper>*:not(.section):first-child {
    padding-top: 100px;
}

.mainWrapper>*:not(.section):last-child {
    padding-bottom: 100px;
}

.button.button-primary {
    border: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    border-radius: 5px;
    padding: 11px 28px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    outline: 0 !important;
    box-shadow: none !important;
    transition: .2s linear !important;
    background: var(--primary);
    color: #fff;
    outline: 2px solid rgba(0, 0, 0, 0) !important;
}

.main-header .navbar-toggler span {
    background: var(--primary)
}

.td-none {
    text-decoration: none;
}

@media(max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: #FFFFFF;
        padding: 15px;
        border-top: solid 1px #ebebeb;
        border-bottom: solid 1px #ebebeb;
    }
}

.signature-wrapper {
    flex-wrap: wrap;
}

.video-wrapper iframe {
    width: 100%;
}

.searchandfilter ul {
    padding-left: 0;
}

.admin-menu {
    border-bottom: solid 1px #ebebeb;
}

.admin-menu a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.board th {
    white-space: nowrap;
}

.board td {
    vertical-align: middle;
}

.home .mainWrapper {
    background: #f4f4f4;
}

.home .main-footer {
    background: #FFFFFF !important;
}

.b-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.b-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border-radius: 4px;
    background: #ebebeb;
    color: #000;
    font-weight: 700;
    transition: .3s ease-out;
}

.b-pagination .page-numbers:hover {
    background: var(--primary);
}

.searchandfilter>ul>li+li {
    border-top: solid 1px #ebebeb;
}

.searchandfilter .sf-input-text {
    display: block;
    width: 100%;
    border: solid 1px #ebebeb;
    padding: 5px 10px;
}

.searchandfilter [data-sf-field-input-type="select"] label {
    display: block;
}

.searchandfilter [data-sf-field-input-type="select"] select {
    display: block;
    width: 100%;
    border: solid 1px #ebebeb;
    padding: 5px 10px;
}

.searchandfilter .sf-field-search label {
    display: block;
}

.form-label {
    display: block;
}

.current-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px;
}

.current-values span {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: var(--primary);
    color: #000;
}

.remove-personal {
    background: #000;
    color: #FFF;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin-left: 8px;
}

.ajax-results {
    position: relative;
}

.ajax-results ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 0;
    list-style: none;
    margin: 0;
    max-height: 200px;
    overflow: auto;
    z-index: 100;
    background-color: #FFF;
    border: solid 1px #ebebeb;
}

.ajax-results ul li {
    padding: 5px 15px;
    cursor: pointer;
    transition: .3s ease-out;
}

.ajax-results ul li:hover {
    background: var(--primary);
}

.ajax-results ul li+li {
    border-top: solid 1px #ebebeb;
}

.board-item-toggle {
    background: transparent;
    border: none;
    outline: none;
}

.show-on-print {
    display: none !important;
}

.opacity-20 {
    opacity: .2 !important;
}

@media print {
    @page {
        size: landscape
    }

    body {
        padding: 0 !important;
    }

    .hide-on-print {
        display: none !important;
    }

    .show-on-print {
        display: block !important;
    }

    .page-id-340 .main-header,
    .page-id-340 .main-footer,
    .page-id-340 .admin-menu {
        display: none !important;
    }

    #mainOverview>div:first-child {
        display: none !important;
    }

    #mainOverview {
        font-size: 12px !important;
    }

    .page-id-340 .py-5 {
        padding: 0 !important;
    }
}

#actionsModal [data-name="day_1_"] {
    display: none !important;
}

.fluentform_wrapper_5 .ff-el-form-control {
    border: solid 1px #ebebeb;
    border-radius: 5px;
    height: 40px;
}

.fluentform_wrapper_5 select.ff-el-form-control {
    background: #FFFFFF;
    -webkit-appearance: none;
    appearance: none;
}
#actionsModal .acf-form-submit{
	display: none;
}

.inline-post-type-picker-wrapper{
    position: relative;
}

.post-type-trigger{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none
}

.inline-post-type-picker{
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    width: 700px;
    height: fit-content;
    background: #FFFFFF;
    border: solid 1px #ebebeb;
    padding: 15px;
    z-index: 10;
}
@media(min-width: 1200px){
    .inline-post-type-picker{
        width: 900px;
    }
}

td:last-child .inline-post-type-picker,
td:nth-last-child(2) .inline-post-type-picker,
td:nth-last-child(3) .inline-post-type-picker{
    left: auto;
    right: 0;
}
@media(min-width: 1200px){
    #actionsModal .modal-dialog{
        max-width: 80%;
    }
}

.nav-tabs .nav-link{
    color: #aaa;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: #000;
}

#mainOverview .dropdown-menu{
	max-height: 200px;
	overflow: auto;
}

#replace-personal [data-name="class"],
#replace-personal [data-name="rate"],
#replace-personal [data-name="premier_rate"],
#replace-personal [data-name="class"],
#replace-personal [data-name="fee"],
#replace-personal [data-name="day_1"],
#replace-personal [data-name="day_2"],
#replace-personal [data-name="day_3"],
#replace-personal [data-name="day_4"],
#replace-personal [data-name="day_5"],
#replace-personal [data-name="day_6"],
#replace-personal [data-name="day_7"],
#replace-personal [data-name="p_diem"],
#replace-personal [data-name="advances"],
#replace-personal [data-name="deductions"],
#replace-personal .acf-actions{
    display: none;
}

/* NEW UX */
.table-employees td:not(:first-child){
    width: 138px;
}
.table-employees td:last-child .inline-post-type-picker{
    right: auto;
    left: 0;
    transform: translateX(calc(-138*6px));
}
.table-employees td:nth-last-child(2) .inline-post-type-picker{
    right: auto;
    left: 0;
    transform: translateX(calc(-138*5px));
}
.table-employees td:nth-last-child(3) .inline-post-type-picker{
    right: auto;
    left: 0;
    transform: translateX(calc(-138*4px));
}
.table-employees td:nth-last-child(4) .inline-post-type-picker{
    right: auto;
    left: 0;
    transform: translateX(calc(-138*3px));
}
.table-employees td:nth-last-child(5) .inline-post-type-picker{
    right: auto;
    left: 0;
    transform: translateX(calc(-138*2px));
}
.table-employees td:nth-last-child(6) .inline-post-type-picker{
    right: auto;
    left: 0;
    transform: translateX(calc(-138*1px));
}

.table-employees .inline-post-type-picker-wrapper .post-type-trigger i{
    transition: .3s ease-out;
}
.table-employees .inline-post-type-picker-wrapper.is-open .post-type-trigger,
.table-employees .inline-post-type-picker-wrapper.is-open>.form-control{
    color: var(--primary);
    font-weight: 600;
}
.table-employees .inline-post-type-picker-wrapper.is-open>.form-control{
    outline: solid 3px var(--primary) !important;
}
.table-employees .inline-post-type-picker-wrapper.is-open .post-type-trigger i{
    transform: rotate(180deg);
}
.table-employees .inline-post-type-picker-wrapper .current-values{
    gap: 0;
    border: solid 1px #ddd;
    order: 3;
    width: auto;
    margin-left: 20px;
    flex: 1;
}
.table-employees .inline-post-type-picker-wrapper .inline-post-type-picker{
    display: flex;
    flex-wrap: wrap;
}
.table-employees .inline-post-type-picker-wrapper .input-wrapper{
    width: 100%;
    order: 1;
    margin-bottom: 20px;
}
.table-employees .inline-post-type-picker-wrapper .register-new-employee{
    order:2;
    width: 300px;
}

.table-employees .inline-post-type-picker-wrapper .personal-item{
    background: #FFFFFF;
    border-radius: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
}
.table-employees .inline-post-type-picker-wrapper .personal-item:nth-child(odd){
    background: #ebebeb;
}
.table-employees .inline-post-type-picker-wrapper .personal-item+.personal-item{
    border-top: solid 1px #ddd;
}
.table-employees .inline-post-type-picker-wrapper .personal-item .remove-personal{
    margin-left: auto;
    font-size: 13px;
}
.table-employees .inline-post-type-picker-wrapper .current-values{
    counter-reset: results;
}
.table-employees .inline-post-type-picker-wrapper .current-values>span{
    counter-increment: results;
}
.table-employees .inline-post-type-picker-wrapper .current-values>span::before{
    content: counter(results);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.ajax-results ul li.already-added
{
    background: #ccffcc;
    cursor: not-allowed;
}
#reportTable tr td,
#additionTable tr td{
    background: #f8f8f8;
}
#reportTable tr:nth-child(odd) td,
#additionTable tr:nth-child(odd) td{
    background: #ebebeb;
}
#reportTable th,
#additionTable th{
    background: var(--primary);
    padding: 5px 3px;
}
#reportTable tr+tr td,
#additionTable tr+tr td{
    border-top: solid 1px #ddd;
}
.spread-td{
    width: 85px;
    padding: 0;
}
.spread-td-large{
    width: 105px;
}

.spread-td+.spread-td{
    border-left: solid 1px #ddd;
}
.clean-input{
    border-radius: 0;
    border: solid 1px #fff;
    padding: 5px 10px;
}
.clean-input:focus{
    outline: none !important;
    box-shadow: none !important;
    border: solid 1px var(--primary);
}

.report-totals td{
    padding: 5px 10px;
}
.report-table .ajax-data{
    counter-reset: employes;
}

.report-table .employee-number{
    counter-increment: employes;
    padding: 0 10px;
}
.employee-number::before{
    content: counter(employes);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


.employee-number {
  cursor: move;
}

.sortable-placeholder {
  background-color: #ffc;
  height: 40px;
  border: 2px dashed #ccc;
}

.draggable-box {
      width: 300px;
      position: fixed;
      top: calc(100% - 304px);
      left: calc(100% - 300px);
      border: 1px solid #ccc;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      z-index: 9999;
    }

    .draggable-header {
      background: var(--primary);
      color: #000;
      padding: 10px;
      cursor: move;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      font-weight: 700;
    }

    .draggable-content {
      padding: 15px;
    }
.project-input-wrapper{
    position: relative;
}

.project-input-wrapper i{
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    animation: rotate 1s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.table-striped>tbody>tr.v-capt{
    background: #FFF7D6;
}
.table-striped>tbody>tr.v-capt:nth-of-type(odd){
    background: #F8E6A0;
}

.table-striped>tbody>tr.v-admin{
    background: #EFFFD6;
}
.table-striped>tbody>tr.v-admin:nth-of-type(odd){
    background: #D3F1A7;
}

.draggable-board-project-item{
    cursor: grab;
    box-shadow: 0 0 30px rgba(0,0,0,.15) inset !important;
}
.draggable-board-project-item input{
    cursor: pointer;
}

.more-actions-toggler{
    width: 31px;
}
.more-actions-toggler:after{
    display: none !important;
}