body {
    font-family: "Time new Romans";
}
.tag {
    display: inline-block;
}

.border-none {
    border: none !important;
}

.plus-button {
    display: inline-block;
    position: relative;
}

.button {
    display: inline-block;
    transform: rotate(0);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #0d2c54;
    position: relative;
    cursor: pointer;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: linear;
}

.arrow {
    fill: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: -0.6rem;
    margin-left: -0.6rem;
    transition-property: transform, fill;
    transition-duration: 0.15s;
    transition-timing-function: linear;
}

.error {
    color: #5a5c69;
    font-size: 1rem !important;
    position: relative;
    line-height: 1;
    width: 100%;
    color: red;
}

.button-detail {
    border: none;
    background: #ffffff;
}

.close-icon {
    width: 12px;
    height: 12px;
}

.realtime-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: -2px !important;
}

.pen-icon {
    width: 20px;
    height: 20px;
    margin-top: -2px !important;
}

/*Thiết lập style cho ranger slider*/
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

/*Thiết kế phần để kéo trượt trong rangerslider -- dùng -webkit- để chạy trên Chrome, Opera, Safari, Edge*/
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: DodgerBlue;
    cursor: pointer;
}

/*-moz- dùng để thiết kế rangerslider trên firefox nhé*/
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.chart-header {
    cursor: all-scroll;
}



/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

:root {
    --background-gradient: linear-gradient(30deg, #f39c12 30%, #f1c40f);
    --gray: #34495e;
    --darkgray: #2c3e50;
}

.card-header select {
    cursor: pointer;
}

/* Remove IE arrow */
/*.card-header select::-ms-expand {*/
/*    display: none;*/
/*}*/

/* Custom Select wrapper */
.select {
    position: relative;
    display: flex;
    width: 20em;
    height: 2.5em;
    border-radius: .25em;
    overflow: hidden;
}

/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em;
    background-color: #3B62D1;
    transition: .25s all ease;
    pointer-events: none;
}

/* Transition */
.select:hover::after {
    color: #f39c12;
}

.chart-area button {
    border-radius: 0;
}

.chart-area .btn-plus {
    position: relative;
    margin-left: -13px;
    top: -4px;
    cursor: pointer;
}

.btn-plus-circle {
    color: #14C810 !important;
}

.comment-chart {
    width: 100%;
    margin-top: 22px;
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ece;
    display: none;
    position: relative;
    z-index: 9;
}

.modal-body-kpi {
    height: 550px;
    overflow: auto;
}

.display-none {
    display: none;
}

.comment:hover {
    background-color: #d0d2d5;
}

/* CSS */
.button-2 {
    background-color: transparent;
    border-radius: 8px;
    border-width: 0;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    text-align: center;
    transition: all 200ms;
    vertical-align: baseline;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.input-comment,
.comment-details {
    display: flex;
}

.avater-user {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.avater-user img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    width: 30px;
    height: 30px;
}

.input-comment .input,
.comment-details .input {
    width: 100%;
    padding: 0px 15px 0px 15px;
}

.input-comment .input input,
.comment-details .input label,
.comment-details .input input {
    width: 100%;
    border: rgb(174, 172, 172) 1px solid;
    border-radius: 15px;
    height: 35px;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    word-wrap: break-word;
    max-width: 100%;
}

.comment-details .input label {
    display: inline-block;
    padding: 10px 15px;
    height: auto !important;
    width: auto;
    max-width: 93%;
}

.col-1 {
    flex: 0 0 3.33333%;
    max-width: 3.33333%;
    padding: 0 !important;
}

.col-11 {
    flex: 0 0 97.66667%;
    max-width: 97.66667%;
}

.show-comment {
    max-height: 300px;
    overflow-x: hidden;
    transition: height 10s;
}

.show-comment::-webkit-scrollbar {
    width: 5px !important;
}

.show-comment::-webkit-scrollbar-track {
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
}

.show-comment::-webkit-scrollbar-thumb {
    background-color: #acacac;
    border-radius: 5px;
}

.time {
    right: 10px;
    bottom: -3px;
    font-size: 10px;
    color: #acacac;
}
.icon-edit {
    margin: auto 0;
    text-align: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    transition: background-color 0.5s;
    background-color: transparent;
    border: none;
    outline: none;
}

.center-icon {
    margin: auto;
}
.icon-edit:hover{
    background-color: rgb(232, 231, 231);
    cursor: pointer;
}

.display-flex-custom {
    display: flex;
}

.dropdown-menu {
    padding: 0!important;
    z-index: 99;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.top-73 {
    top: 73% !important;
}

.w-95-percent {
    width: 95%;
}

.bg-light-blue {
    background: #A5D0F5;
}

.btn-send {
    position: absolute;
    right: 25px;
    top: 7px;
}
.input-comment .input input {
    padding-right: 30px;
}
.btn-send:hover {
    cursor: pointer;
    opacity: 0.5;
}

.w-100-px {
    width: 100px;
}

.w-185-px {
    width: 185px;
}


.w-75-px {
    width: 75px;
}

.modal-body-indicator {
    max-height: 500px;
    overflow-y: auto;
}

.radio-position {
    position: relative;
    top: 2px;
}

.center-img {
    text-align: center;
}

.row-table:hover, .even:hover, .odd:hover {
    background: #F5F5F5;
}

.three-dots {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.w-110 {
    width: 110px;
}

.h-30 {
    height: 30px;
}

.w-80-percent {
    width: 80% !important;
}

/*data management detail*/
.input-row:disabled {
    background: #ffffff;
    border: none;
}
.row-table .error {
    border: 1px solid red !important;
}
#select-field, #formula-form, #calculator {
    border: 1px solid #eee;
    width: 100%;
    min-height: 40px;
    list-style-type: none;
    padding: 5px 0 0 0;
    float: left;
    margin: 0 10px 0 0;
}
#select-field .field-name, #formula-form .field-name {
    margin: 0 5px 5px 5px;
    padding: 2px 5px 0;
    font-size: 15px;
    border-radius: 10px;
}

#select-field .field-name:hover,  #calculator .calculator:hover {
    cursor: pointer;
}

#calculator .calculator, #formula-form .calculator {
    margin: 0 5px 5px 5px;
    font-size: 16px;
    width: 27px;
    height: 27px;
    padding-left: 10px;
    border-radius: 8px;
}

.placeholder-chart {
    display:block;
    min-height: 1px;
    line-height: 1.2em;
    background: #E6E6E6;
    width:50%;
}

.form-body {
    height: 56vh;
    overflow: auto;
}

.mr-0-4 {
    margin-right: 0.4rem !important;
}

.padding-lr-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.w-30 {
    width: 30px;
}

.card-form {
    position: sticky;
    top: 0px;
}

#accordionSidebar {
    overflow-anchor: none;
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: 1000;
}
#wrapper {
    background-color: #003877 !important;
}


#wrapper #content-wrapper {
    min-height: 100vh;
    margin-top: 47px;
    background-color: #003877 !important;
}

.hidden-element {
    display: none;
}

.hidden-overflow {
    overflow: hidden;
}

.stick-footer {
    flex-shrink: 0;
    margin-top: 10px;
    background-color: #012D60;
    height: 45px;
}

#content-wrapper {
    min-height: 100%;
    margin-bottom: -62px;
}

/*css table*/
#datatable {
    width: 100%;
}

table, #datatable th, #datatable td {
    border: 1px solid #426DC6 !important;
}

#datatable_paginate .page-link {
    height: 31px;
    padding: 5px 8px !important;
}
#datatable td, #datatable th {
    padding: 6px;
}
#tbl-data-management #datatable td {
    padding: 0px;
}

#tbl-data-management .form-control {
    border-radius: 0 !important;
    width: 100%;
    border: 0;
}

#tbl-data-management th, #tbl-data-management td {
    border: 1px solid #e3e6f0 !important;
}

#datatable tr:hover {
    background-color: #DEF2FF;
    color: #0a0a0a;
}

#datatable tr:hover .link {
    color: #0a0a0a !important;
}

#management-list #datatable tr {
    /*background-color: #f6f6f6*/
}

#management-list #datatable tr:hover {
    background-color: #DEF2FF;
}

a {
    color: #ffffff;
}

.h-110 {
    height: 110px;
}

.h-350 {
    height: 350px;
}

.bg-white-record {
    background-color: #fff !important;
}

.bg-no-chart {
    background-color: #fff !important;
}

.bg-white-record:hover {
    background-color: #ddd !important;
}

.bg-orange {
    background-color: #FF9800 !important;
}

.bg-light-orange {
    background-color: #FED08A !important;
}

.bg-light-green {
    background-color: #14C810 !important;
}

.bg-green {
    background-color: #239B24 !important;
}

.bg-pink {
    background-color: #FFA1C1 !important;
}

.fs-11 {
    font-size: 11px;
}
#datatable th {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    min-width: 100px;
}

.input-first-row {
    margin: 0 auto;
    min-width: 115px;

}

.break-line {
    word-break: break-all;
}

.select2 {
    width: 100% !important;
}

.select2-selection {
    border: 1px solid #d1d3e2 !important;
}

.select2-container {
    width: 100% !important;
}

#indicator-form .select2-container {
    min-width: 400px !important;
}

#level-area .select2-container {
    min-width: 100px !important;
}

.select2-container .select2-selection--single {
    padding-top: 0px;
}

.select2-container .select2-selection__arrow {
    margin-top: 1px;
}

.select2-container .select2-selection--single {
    min-height: 30px !important;
}

#indicator-form .select2-selection--multiple, #indicator-form .select2-selection--single, #form-add-data .select2-selection--single {
    min-height: 38px !important;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
#form-add-data .select2-container--default .select2-selection--single .select2-selection__arrow,
#indicator-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px !important;
}

#indicator-form .select2-container--default .select2-selection--single .select2-selection__rendered,
#form-add-data .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.min-width-140 {
    min-width: 140px;
}

.min-width-150 {
    min-width: 150px;
}

.min-width-157 {
    min-width: 157px;
}

.min-width-240 {
    min-width: 240px;
}

.min-width-100 {
    min-width: 100px;
}

.min-width-115 {
    min-width: 115px;
}

.min-width-200 {
    min-width: 200px;
}

.max-width-34 {
    max-width: 34px;
}

.pd-4 {
    padding: 4px !important;
}

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

.text-blue {
    color: #2046FD;
}

.icon-minus {
    width: 25px;
    border: 2px solid #E3242B;
    height: 25px;
    color: #E3242B;
    border-radius: 50%;
    padding-top: 3px;
}

#select-field-area .icon-minus {
     padding-top: 4px !important;
     padding-left: 5px !important;
}

.icon-eye {
    width: 30px;
    height: 30px;
    padding-top: 5px;
}

.max-w-150 {
    max-width: 150px
}

.w-40 {
    width: 40px !important;
}

.no-wrap {
    flex-wrap: nowrap !important;
}

.relative-div {
    position: relative;
}

.corner-top-left {
    position: absolute;
    top: 8px;
    left: 2px;
}

.corner-top-right {
    position: absolute;
    top: -5px;
    right: 1px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-76 {
    margin-left: 76px;
}

.ml-92 {
    margin-left: 92px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.h-74 {
    height: 74px;
}

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

.width-100 {
    width: 100px;
}

#day-week-list ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-left: -20px;
}

#day-week-list li {
    display: inline-block;
    margin-right: -12px;
}

#day-week-list input {
    visibility:hidden;
}

#day-week-list label {
    cursor: pointer;
    display: inline-block;
    line-height: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #B4B4B4;
    color: white;
}

#day-week-list input:checked + label {
    color: white;
    background: #808080;
}

#day-week-list .day-of-week {
    padding-left: 11px;
    padding-top: 2px;
}

.h-32 {
    height: 32px;
}

.h-32 {
    height: 30px;
}
.pd-card-body {
    padding: 0.3rem 0.8rem !important;
}

.pd-btn {
    padding: 1px 8px
}

.btn-dash {
    padding: 2px 9px;
    height: 30px;
}

.card-header {
    padding-top: 5px;
    padding-bottom: 5px;
}

.square-40 {
    height: 40px;
    width: 40px;
}

.sticky-header-form-chart {
    position: fixed;
    top: 80px;
    width: 40%;
    right: 6px;
}

textarea {
    resize: none;
}

#shareDashboardForm .list-group-item {
    position: relative;
    padding: 0.4rem 1.15rem;
    background-color: #fff;
    border: none !important;
}

.min-height-100vh {
    min-height: 100vh;
}

.min-height-65vh {
    min-height: 65vh;
}

.feather-activity {
    color: #8198E4;
}

.feather-activity:hover {
    color: #ffffff;
}

#select-column .custom-select {
    padding: 0 3px;
}

#select-column .axis_y {
    min-width: 32px;
}

#select-column .tooltip_display {
    min-width: 73px;
}

#page-top .topbar-divider {
    width: 0;
    border-right: 1px solid #e3e6f0;
    height: calc(4.375rem - 2rem);
    margin: auto 1rem;
}

.navbar-top {
    background-color: #083797;
    position: fixed;
    width: 100%;
    z-index: 3;
    top: 0;
    height: 45px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255,255,255,.8) !important;
}

.scrollable {
    overflow-y: auto;
    height: 650px;
}

.multi-button {
    height: 30px;
    margin-top: 6px;
    padding: 3px 7px;
}

.pd-10 {
    padding: 10px !important;
}

.btn-reorder {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: relative;
    bottom: 4px;
    padding-top: 8px;
}

/*reorder modal*/

.order-modal.right .modal-dialog {
    position:fixed;
    right: 0;
    margin: auto;
    width: 320px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}


.order-modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.order-modal.right .modal-body {
    padding: 15px 15px 80px;
}

.order-modal.right.fade .modal-dialog {
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.order-modal.right.fade.show .modal-dialog {
    right: 0;
}

/* ----- MODAL STYLE ----- */
#reorderModal .modal-content {
    border-radius: 0;
    border: none;
}

#reorderModal .modal-header {
    border-bottom-color: #eeeeee;
    background-color: #fafafa;
}

.amsify-suggestags-list {
    width: 95% !important;
    position: relative;
}

.heart-checkbox {
    height: 12px;
    width: 12px;
    background-color: #bbbbbb;
    position: relative;
    outline: none;
    transform: rotate(45deg);
    -webkit-appearance: none;
}

.heart-checkbox:before {
    position: absolute;
    content: "";
    background-color: #bbbbbb;
    height: 63%;
    width: 97%;
    top: -57%;
    border-radius: 75px 75px 0 0;
}

.heart-checkbox:after {
    position: absolute;
    content: "";
    background-color: #bbbbbb;
    height: 60%;
    width: 100%;
    transform: rotate(-90deg);
    border-radius: 75px 75px 0 0;
    top: 20%;
    right: 79%;
}

.heart-checkbox:checked, .heart-checkbox:checked:before, .heart-checkbox:checked:after {
    background-color: #fe0f42;
}

.time-col {
    z-index: 9;
    width: 105px;
    left: 21.6094px;
    position: sticky;
}
.first-col {
    z-index: 9;
    width: 9.60938px;
    left: 0px;
    position: sticky;
}
.action-col {
    width: 55px;
    position: sticky;
    right: 0px;
    z-index: 9;
}
.mb-31 {
    margin-bottom: 31px
}

.mt-40 {
    margin-top: 40px
}


.screen-index #datatable {
    margin-top: 80px !important;
}

.screen-index #datatable_wrapper .dataTables_length {
    position: fixed;
    top: 86px;
    left: 23px
}

.screen-index #datatable_wrapper .dataTables_paginate {
    position: fixed;
    top: 82px;
    right: 23px
}

.header-behind-navigate {
    background-color: #003877;
    position: fixed;
    width: 100%;
    z-index: 2;
    top: 45px;
    height: 40px;
}

.pagination-length {
    background-color: #003877;
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 85px;
    height: 40px;
}

/* HIDE RADIO */
.layout-chart [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* IMAGE STYLES */
.layout-chart [type=radio] + img {
    cursor: pointer;
}

/* CHECKED STYLES */
.layout-chart [type=radio]:checked + img {
    outline: 2px solid #013060;
}

input[type="color"] {
    -webkit-appearance: none;
    border: none;
}
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
input[type="color"]::-webkit-color-swatch {
    border: none;
}

.top-right-icon-close {
    position: absolute;
    top: -2px;
    right: 1px;
}

.border-blinking {
    display:inline-block;
    border: 5px solid #9ae2ff;
    animation-name: border-blinking;
    animation-duration: 1s;
    animation-iteration-count: 200;
}

@keyframes border-blinking {
    50% {
        border-color: #ffcd5f;
    }
}

.fs-15rem {
    font-size: 1.5rem;
}

.fs-13rem {
    font-size: 1.3rem;
}

.row-edit {
    background-color: #f5f5f5;
}

.w-10 {
    width: 10%;
}

#select_owner_id ~ span .selection .select2-selection--multiple {
    min-height: 38px !important;
}

#select_owner_id ~ .select2-container .select2-search--inline .select2-search__field {
    padding-top: 4px;
    font-size: 14px !important;
    height: 24px !important;
}

.order-chart-modal {
    width: 500px !important;
}
