/* Login */
nav p {
    font-family: "Arial";
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #6a6a9f;
}

a {
    text-decoration: none !important;
}

.list-none {
    list-style: none !important;
}

textarea {
    resize: none !important;
}

input:focus {
    box-shadow: none !important;
    background: transparent !important;
    outline: none !important;
}

.filter-img {
    filter: brightness(0) invert(1) !important;
}

@keyframes change-content {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.switch {
    position: absolute;
    /* make the checkbox unvisible using clip-path */
    clip-path: circle(0%);
    opacity: 0;
}

.switch+label {
    position: relative;
    cursor: pointer;
}

.switch+label span {
    right: 40px;
}

.switch+label span::after {
    display: inline-block;
    width: 40px;
    height: 20px;
    content: "";
    position: relative;
    border: 2px solid #2b85ff;
    background: #000000;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    /* for slider thumb */
    /* for text content */
}

.switch:checked+label span::after {
    border: 2px solid #2b85ff;
    background: #2b85ff;
}

.switch+label span:before,
.switch+label span:after {
    display: inline-block;
    position: absolute;
}

.switch+label span:before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 25px;
    left: 5px;
    top: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}

.switch+label span:after {
    display: inline-block;
    top: 0;
    left: 0;
    color: #000000;
}

.switch:checked+label span:before {
    left: 22px;
}

.switch:checked+label span:after {
    display: inline-block;
    top: 0;
    left: 0;
    color: #607d8b;
}

.switch:checked+label:after {
    animation: change-content 0.3s forwards linear;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
}



html body {
    font-family: 'Inter', sans-serif;
    background-color: #272735;
    font-size: .925rem;
    margin: 0;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #6f7387 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #6f7387 !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #6f7387 !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #6f7387 !important;
}


/* Left Side Bar Css */
.left-sidebar {
    background: #39394a;
    height: 100vh;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.main-menu li:not(:last-child) {
    margin-bottom: 16px;
}

.main-menu li span {
    display: block;
    padding: 8px;
}

.main-menu li.active span {
    background: #272735;
}

.main-menu li span img,
.bottom-menu li img {
    height: 18px;
}

.user-icon {
    border: 2px solid #316bb4;
    border-radius: 50%;
    margin: 0 auto;
    height: 30px;
    width: 30px;
}

.first-option {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 20px 0;
    margin-bottom: 10px;
}


/* RIght Block */
.main-block {
    width: calc(100% - 50px);
    height: calc(100vh - 74px) !important;
    overflow: auto;
}

/* Top Bar Css */
.top-bar {
    background-color: #39394a;
    border-radius: 4px;
}

.inner-block {
    background-color: #272735;
    border-radius: 4px;
}

.search-block {
    background: #39394a;
    border-radius: 50px;
    margin-right: 16px;
}

.search-block input {
    background: transparent;
    height: 20px;
    border: 0;
    border-left: 2px solid #6f7387;
    padding: 0 20px;
    font-size: 14px;
    color: #6f7387;
}

.create-btn {
    border-left: 1px solid #000 !important;
    padding: 4px 0 2px 24px;
}

.create-btn span {
    vertical-align: middle;
    font-size: 28px;
    color: #fff;
}

.search-block img {
    height: 20px;
}

.opacity-5 {
    opacity: .5 !important;
}

.f-14 {
    font-size: 14px;
}

.task-box {
    background-color: #39394a;
    overflow-x: hidden;
    border-radius: 8px;
    overflow-y: auto;
    height: 400px;
}

.divider-line {
    background-color: #fff;
    border-radius: 30px;
    height: 6px;
    width: 100%;
}

.line-one {
    background-color: #ff8080;
}

.line-two {
    background-color: #38d98a;
}

.line-three {
    background-color: #5b8def;
}

.line-four {
    background-color: #ff8800;
}

.line-five {
    background-color: #fddd48;
}

.line-six {
    background-color: #72e0e7;
}

.line-seven {
    background-color: #ab5dd9;
}

.tn {
    border-radius: 40px;
    background: #fff;
    padding: 3px 10px;
}

.mission-box {
    border-left: 6px solid #ac6af0;
    background: #272735;
    border-radius: 6px;
    padding: 10px 0;
}

.agent-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.object-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.task-details {
    border-top: 1px solid rgb(255 255 255 / 45%);
}

.task-details li {
    text-align: center;
    color: rgb(255 255 255 / 85%);
    width: 25%;
    font-size: 12px;
    padding: 0 5px;
    line-height: 14px;
}


.task-details li:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / 45%);
}

.filter-btn:after {
    content: none !important;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 20px;
}

.form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}

.filter .dropdown-menu {
    background: #373748;
    border: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    width: 240px;
    border-radius: 12px;
}

.f-18 {
    color: rgb(255 255 255 / 85%);
    margin-bottom: 10px;
    font-size: 18px;
}

textarea.form-control {
    height: auto !important;
}

.filter .dropdown-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.filter .form-group label {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

.top-list {
    border-bottom: 1px solid #fff;
}

/* Offcanvas Css */
.offcanvas.task-list {
    background: #363647;
    width: 1000px !important;
}

.task-list .offcanvas-header {
    border-bottom: 1px solid rgb(255 255 255 / 45%);
}

.task-list .nav-tabs .nav-link {
    margin-bottom: 0 !important;
    border: 0;
    color: #fff;
    font-size: large;
    position: relative;
}

.task-list .nav-tabs .nav-link::before {
    content: "";
    width: 1px;
    height: 10px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: rgb(255 255 255 / 45%);
}

.task-list .nav-tabs .nav-item:last-child .nav-link::before {
    content: none;
}


.task-list .nav-tabs .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: transparent;
}

.task-list .nav-tabs .nav-link.active {
    background: transparent;
    color: #fff;
}

.task-list .nav-tabs .nav-link.active::after {
    background: #3873e3;
}

.task-list .form-select {
    /* border-radius: 40px; */
    background-color: #5a5a76;
    color: #fff;
    border: 0;
    padding: 11px 40px 11px 18px;
    background-image: url(../src/assets/images/select.png);
    background-repeat: no-repeat;
    background-size: 12px;
}

.task-list .search-block,
.task-list .filter-btn {
    background: #5a5a76;
}

.task-list .filter-btn {
    border-radius: 50%;
    padding: 14px 18px;
    display: block;
    color: #fff;
}

.task-list .search-block input {
    color: #fff;
}

ul.f-16 li {
    font-size: 16px;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

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

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

/* .common-table th {
    width: 40%;
}

.common-table td {
    width: 50%;
} */

.common-table th,
.common-table td {
    background-color: #39394a;
    padding: 20px 10px;
}

.common-table tbody>tr {
    border-left: 4px solid transparent;
    border-bottom: 10px solid #363647;
}

.common-table tr:first-child,
.task-list .accordion-blocks:first-child .mission-block {
    border-left-color: #8d6eff;
}

.common-table tr:nth-child(2),
.task-list .accordion-blocks:nth-child(2) .mission-block {
    border-left-color: #63bcf8;
}

.common-table tr:nth-child(3),
.task-list .accordion-blocks:nth-child(3) .mission-block {
    border-left-color: #f7ed8a;
}

.common-table tr:nth-child(4),
.task-list .accordion-blocks:nth-child(4) .mission-block {
    border-left-color: #e392aa;
}

.common-table tr:nth-child(5),
.task-list .accordion-blocks:nth-child(5) .mission-block {
    border-left-color: #8298f4;
}

.common-table tr:nth-child(6),
.task-list .accordion-blocks:nth-child(6) .mission-block {
    border-left-color: #00b430;
}

.common-table tr:nth-child(7),
.task-list .accordion-blocks:nth-child(7) .mission-block {
    border-left-color: #2af0f5;
}

.common-table tr:nth-child(8),
.task-list .accordion-blocks:nth-child(8) .mission-block {
    border-left-color: #79738e;
}

.common-table tr:nth-child(9),
.task-list .accordion-blocks:nth-child(9) .mission-block {
    border-left-color: #5cb783;
}

.common-table tr:last-child,
.task-list .accordion-blocks:last-child .mission-block {
    border-left-color: #037ed1;
}


.asset-block {
    background: #39394a;
    margin: 50px 0 70px;
    padding: 0 0 10px 10px;
    border-left: 8px solid #AC6AF1;
    box-shadow: 0 5px 10px #000;
}

.trailer-tags li {
    background: #5a5a76;
    font-size: 14px;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
}

img.asset-img {
    top: -43px;
}

.f-11 {
    font-size: 11px;
    line-height: 12px;
    color: #8C8E9B !important;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-checkbox label span {
    background: #5A5A76;
    border-radius: 20px;
    padding: 2px 10px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.c-checkbox input:checked+label span {
    background: #306FDB;
}

/* create Task */
body .create-task {
    max-width: 100%;
    width: 1280px !important;
    background: #363647 !important;
}

.form-label {
    color: #fff;
    font-size: 12px;
    font-weight: 200;
}

.form-select,
.form-control {
    background-color: transparent !important;
    border: 1px solid rgb(255 255 255 / 30%) !important;
    color: rgb(255 255 255 / 65%) !important;
    font-size: 11px !important;
    height: 38px;
}

td.form-control {
    background-color: #1B1C26 !important;
}

/* .form-select {
    background-color: transparent;
    filter: brightness(0) invert(1);
} */

.form-select option {
    color: #000;
}

.form-select.pickup-op {
    background-color: #0000d46b !important;
    width: 200px;
    border-radius: 50px;
}

.block-groups {
    background: #39394a;
}

.project-block {
    background-color: #363647;
    border-left: 6px solid #5a5a76;
    padding: 5px;
}

.ON_TRACK {
    border-left-color: #00B430;
    color: #00B430;
}

.READY_TO_START {
    border-left-color: #00B430;
    color: #00B430;
}

.RESOURCE_MISSING {
    border-left-color: #FFBA69;
    color: #FFBA69;
}

.DATES_UNKNOWN {
    border-left-color: #FFBA69;
    color: #FFBA69;
}

.AT_RISK {
    border-left-color: #FE2C2E;
    color: #FE2C2E;
}

.OVERDUE {
    border-left-color: #FE2C2E;
    color: #FE2C2E;
}

.COMPLETED {
    border-left-color: #00B430;
    color: #00B430;
}

.CANCELLED {
    border-left-color: #272735;
    color: #272735;
}

.deal-description {
    color: #888;
}

strong.f-20.fw-700 {
    letter-spacing: 0.9px;
}

.task-margin {
    margin-top: 35px !important;
}

.customer-data th,
.customer-data td {
    text-align: center;
    font-size: 10px;
    padding: 6px 24px;
    color: #fff;
}

.customer-data tbody tr:nth-child(odd) {
    background: #39394a;
}

.block-groups .accordion-header button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0;
}

.block-groups .accordion-header button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.block-groups .accordion-button::after,
.leg-modal .accordion-button::after,
.accordion-blocks .accordion-button::after {
    content: none;
}

.block-groups .accordion-button::before,
.leg-modal .accordion-button::before,
.accordion-blocks .accordion-button::before {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::before {
    transform: rotate(180deg);
}

.accordion-blocks .accordion-button::before {
    transform: rotate(272deg);
    position: absolute;
    left: 10px;
}


.accordion-blocks .accordion-button:not(.collapsed)::before {
    transform: rotate(360deg);
}

.input-icons span {
    left: 8px;
    top: 50%;
    transform: translateY(-55%);
    color: #fff;
    font-size: 22px;
}

.input-icons input {
    padding-left: 40px;
}

.task-slider .slick-list {
    margin: 0 -5px;
}

.task-slider .slick-slide {
    padding: 0 5px;
}

.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.f-28 {
    font-size: 28px !important;
}

.add-line {
    color: #fff;
    font-size: 16px;
}

.add-line span {
    opacity: .6;
}

.task-list .assets-block {
    position: absolute;
    top: 4px;
    border-bottom: 0;
    width: 95%;
}

.task-btn {
    background: #306fdb;
    border-radius: 50px !important;
}

.invoice-data th:nth-child(2) {
    width: 250px;
}

.overview-block {
    background: #363647;
    padding: 20px;
}

.overview-block p.f-14 {
    color: #8C8E9B;
}

.overview-block h6 svg.position-absolute {
    left: -30px;
}

.activity-data th,
.activity-data td {
    font-size: 13px;
}

.attach-link svg {
    right: 24px;
    top: 8px;
}

/* Mission Tab Css */
.accordion-blocks .accordion-header button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0;
}

.mission-block {
    background-color: #39394a;
    padding: 20px 10px;
    border-left: 4px solid transparent;
}


.u-icon {
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
}

.cover {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.f-14 {
    font-size: 14px;
    color: #B1B1B1;
}

.trailer-tags li:not(:last-child) {
    margin-right: 12px;
}

x,
.text-gray {
    color: #B1B1B1;
}

.f-20 {
    font-size: 20px;
    letter-spacing: -1.0px;
    font-weight: 300;
}

.driver-img {
    width: 100px;
    height: 100px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 50%;
}

.link-btn {
    background: transparent;
    border: 1px solid #306FDB;
    color: #306FDB;
    font-size: 12px;
    border-radius: 20px;
    padding: 9.3px 19px;
    transition: all .5s;
}

.link-btn:hover {
    background: #306FDB;
    color: #fff;
}

.drop-btn .dropdown.btn-group {
    border-radius: 20px;
    color: #fff;
}

.drop-btn .dropdown.btn-group button {
    background: #306FDB;
    color: #fff;
    border: 0;
    padding: 7px 15px 7px 10px;
}

.drop-btn button.btn-info {
    width: 110px;
    border-right: 2px solid #000 !important;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.drop-btn button.btn-info+button {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.drop-btn .super-colors {
    padding: 0;
    background: #3A3A4B;
}

.drop-btn .super-colors a {
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
}

.drop-btn .super-colors a:not(:last-child) {
    border-bottom: 1px solid #fff;
}

.drop-btn .dropdown-item:focus,
.drop-btn .dropdown-item:hover {
    background-color: transparent !important;
}

.filter.text-end.dropdown button img {
    width: 30px;
}

.add-btn button:first-child {
    display: none;
}

.add-btn>button {
    background: transparent url(../src/assets/images/icon4.png) no-repeat center !important;
    border: 0;
}

.add-btn .dropdown-menu a button {
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
}

.add-btn .dropdown-menu a button span,
.btn-menu .dropdown-menu a button span {
    font-size: 10px;
}

.add-btn .dropdown-menu {
    inset: auto auto 0px 50px !important;
    padding: 8px;
}

.add-btn .dropdown-menu,
.btn-menu .dropdown-menu {
    background: #272735;
    border-radius: 8px;
    overflow: hidden;
}

.btn-menu .dropdown-menu {
    min-width: 130px !important;
    padding: 0 !important;
}

.add-btn .dropdown-menu a,
.user-menu .dropdown-item,
.btn-menu .dropdown-item {
    color: #fff;
    font-size: 10px;
}

.add-btn .dropdown-menu a img {
    height: auto;
}

.add-btn .dropdown-menu a Icon {
    width: 20px;
    display: inline-block;
    text-align: left;
}

.add-btn .dropdown-menu a:hover,
.btn-menu .dropdown-menu a:hover,
.user-menu .dropdown-menu a:hover {
    background: #5A5A76;
}


.menu-btns {
    bottom: 0;
    left: 70px;
    background: #111315;
    padding: 5.4px 10px;
    border-radius: 50px;
    z-index: 1000;
}

.menu-btns li {
    list-style: none;
}

.menu-btns li.active span,
.menu-btns li:hover span,
.menu-btns li:focus span {
    background: #5A5A76;
}

.add-btn.user-btn>button {
    background-image: url(../src/assets/images/round-img.png) !important;
    background-size: cover !important;
    width: 30px;
    height: 30px;
}

.gap_3 {
    border-right: 10px solid #1F1F2A;
}

.add-btn.user-btn>button::after,
.user-menu button::after,
.btn-menu button::after {
    content: none !important;
}

.add-btn.user-btn .dropdown-menu {
    padding: 0;
}

.add-btn.user-btn .dropdown-menu a {
    border-radius: 0;
}

.add-btn.user-btn h6 {
    opacity: .7;
    font-weight: 400;
    font-size: 14px;
}

.opacity-5 {
    opacity: .5 !important;
}

.user-menu .dropdown-menu {
    inset: auto auto -20px 60px !important;
}

.user-menu .dropdown-menu {
    inset: auto auto -20px 60px !important;
    background: #272735;
    border-radius: 8px;
}

.user-menu .dropdown-item:focus,
.user-menu .dropdown-item:hover,
.btn-menu .dropdown-item:focus,
.btn-menu .dropdown-item:hover {
    background: transparent;
    color: #fff !important;
}

.user-menu .dropdown-item img,
.btn-menu .dropdown-item img {
    width: 16px;
    height: auto;
}

.btn-menu .dropdown-active {
    background: #5A5A76
}

.pb-6 {
    padding-bottom: 30px !important;
}


.task-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.task-checkbox label {
    position: relative;
    cursor: pointer;
    left: -8px;
}

.task-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    border-radius: 2px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.task-checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}



.select-all input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.select-all label {
    position: relative;
    cursor: pointer;
    left: -8px;
    color: #fff;
}

.select-all label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    border-radius: 2px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    left: -8px;
}


.select-all label::after {
    content: '';
    display: block;
    opacity: 0;
    position: absolute;
    top: 4px;
    left: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.select-all input:checked+label:after {
    opacity: 1;
}


button.sort-btn {
    padding: 0;
    background: #363647;
    border-radius: 2px;
    color: #fff;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 0 !important;
}

button.sort-btn.show,
button.sort-btn:hover,
button.sort-btn:focus,
button.sort-btn:focus-visible {
    background-color: #363647 !important;
    box-shadow: none !important;
    border: 0 !important;
}

.sort-btn img {
    width: 25px;
}

.dropdown-toggle.sort-btn::after {
    display: none;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1) !important;
    font-size: 20px;
    cursor: pointer;
}


.sort_menu .dropdown-menu {
    background: #363647;
    padding: 10px;
}

.sort_menu .dropdown-menu ul {
    list-style: none;
}

.sort_menu .dropdown-menu li {
    position: relative;
    color: #fff;
    font-size: 10px;
    margin-bottom: 4px;
}

.sort_menu .dropdown-menu li i {
    left: -13px;
    top: 0;
}

.rmdp-container {
    width: 100%;
}

.rmdp-container .rmdp-input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    background-color: transparent !important;
    border: 1px solid rgb(255 255 255 / 30%) !important;
    color: rgb(255 255 255 / 65%) !important;
    font-size: 11px !important;
    height: 38px;
}

.input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px 0 5px !important;
}

.input-container input {
    width: 100%;
    background-color: transparent;
    padding: 10px 5px !important;
    border: none;
    color: #9ECBFF !important;
}

.add-button {
    margin-left: 8px;
    display: flex;
    background-color: transparent;
    align-items: center;
}

.bg-transparent {
    background-color: transparent !important;
}

.text-input-blue {
    color: #9ECBFF !important;
    cursor: pointer !important;
}

.top-header {
    height: 100px;
}

.background-primary {
    background-color: #272735;
}

.padding-20 {
    padding: 20px !important;
}

.color-888 {
    color: #888;
}

.color-B1B1B1 {
    color: #B1B1B1;
}

.w-55 {
    width: 55%;
}

.w-45 {
    width: 45%;
}

.width-200 {
    width: 200px !important;
}

.background-1B1C26 {
    background-color: #1B1C26 !important;
}

.task-block {
    background-color: #363647;
    border-left: 6px solid #5a5a76;
    padding: 19.4px 8px;
}

.date-picker-container {
    max-height: 50px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #3a3a55;
    padding: 8px;
    border-radius: 8px;
    color: #c4c4c4;
}

.selected-dates {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.date-item {
    display: flex;
    align-items: center;
    background-color: #3a3a55;
    padding: 5px 10px;
    border-radius: 20px;
    color: #ffffff;
}

.date-text {
    margin-right: 8px;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
}

.open-calendar-btn {
    background: none;
    border: none;
    color: #c4c4c4;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
}

.state-city .table-responsive {
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
}
