@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&display=swap");
:root {
    --lines-count: 2;
    --line-height: 1.25rem;
    --element-height: calc(var(--lines-count) * var(--line-height));

    --primary-color: #212a63;
    --secondary-color: #a5a5a5;
}

* {
    font-family: "Outfit", Figtree, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol,
        "Noto Color Emoji";
}

.form-control:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0px 0px 0px 1px var(--primary-color);
    box-shadow: 0px 0px 0px 1px var(--primary-color);
}

.form-control {
    background: rgb(255, 255, 255);
}

.list-style-none {
    list-style-type: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* .bg-msi-gradient {
    background: rgb(10,127,214);
    background: linear-gradient(90deg, rgba(10,127,214,1) 41%, rgba(73,164,228,1) 100%);
    color: white;
} */

.bg-msi-gradient {
    background: var(--primary-color) !important;
    color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0px 0px 0px 1px var(--primary-color);
    box-shadow: 0px 0px 0px 1px var(--primary-color);
}

/* The container */
.check-box {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.check-box .checkmark {
    position: absolute;
    top: 2;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border: 2px var(--primary-color) solid;
    border-radius: 2px;
    transform: translateY(2px);
}

/* When the checkbox is checked, add a blue background */
.check-box input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-box input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-box .checkmark:after {
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-file-input {
    display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 0.375rem;
}

.cursor-pointer {
    cursor: pointer;
}

.text-align-justify {
    text-align: justify;
}

ul {
    list-style-type: disc;
}

.text-overflow-none {
    text-overflow: ellipsis; /* <------ required */
    line-height: var(--line-height); /* <------ optional */
    overflow: hidden; /* <------ required */
    display: -webkit-box; /* <------ required */
    -webkit-line-clamp: var(--lines-count); /* <------ required */
    -webkit-box-orient: vertical;
}

.select2-selection__rendered {
    padding-right: 0.75rem !important;
}

.ds-block-mobile {
    display: none !important;
}

.ds-none {
    display: none;
}

@media (max-width: 992px) {
    .ds-none-mobile {
        display: none !important;
    }

    .ds-block-mobile {
        display: block !important;
    }

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

.custom-dropdown .dropdown-item:hover {
    background: var(--primary-color) !important;
    color: white;
}

.custom-dropdown .dropdown-item:focus {
    background: var(--primary-color) !important;
    color: white;
}

.custom-dropdown .dropdown-item.active {
    background: var(--primary-color) !important;
    color: white;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected {
    background-color: var(--primary-color) !important;
}

.fs-7 {
    font-size: 14px !important;
}

.modal .btn.btn-secondary {
    background: var(--secondary-color) !important;
    color: white !important;
    border-color: var(--secondary-color);
}

/* .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: auto !important;
  user-select: none;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -webkit-user-select: none;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
} */

button {
    border: none;
    outline: none;
    background: none;
}

.text-overflow-none {
    text-overflow: ellipsis; /* <------ required */
    line-height: var(--line-height); /* <------ optional */
    overflow: hidden; /* <------ required */
    display: -webkit-box; /* <------ required */
    -webkit-line-clamp: var(--lines-count); /* <------ required */
    -webkit-box-orient: vertical;
}

.center-container {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.centered-container {
    display: table-cell;
    vertical-align: middle;
}

@media (max-width: 992px) {
    .center-container {
        padding-top: 2rem;
        padding-bottom: 2rem;
        min-height: auto;
    }
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.flex-item-grow-0 {
    flex: 0 0 auto;
}

.modal.nested-modal {
    z-index: 1061 !important;
    background: #4c4c4c71;
}

.modal.nested-modal-2 {
    z-index: 1062 !important;
    background: #4c4c4c71;
}

.modal.nested-modal-3 {
    z-index: 1063 !important;
    background: #4c4c4c71;
}

.modal.nested-modal-4 {
    z-index: 1065 !important;
    background: #4c4c4c71;
}

.modal.nested-modal-5 {
    z-index: 1065 !important;
    background: #4c4c4c71;
}

/* .select2-container *:focus {
  outline: none;
  border-color: var(--krah-primary) !important;
  -webkit-box-shadow: 0px 0px 0px 1px  var(--krah-primary) !important;
  box-shadow:  0px 0px 0px 1px   var(--krah-primary) !important;
} */

.select2-selection__rendered {
    padding-right: 0.75rem !important;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected {
    background-color: var(--primary-color) !important;
}

.dropdown-selection .search-dropdown-container {
    max-height: 130px;
    overflow-y: auto;
}

.dropdown-selection .search-dropdown-container .search-item {
    display: block;
    padding: 0.25rem 1rem;
    cursor: pointer;
}

.dropdown-selection .search-dropdown-container .search-item:hover {
    background: var(--primary-color);
    color: white;
}

.dropdown-selection .search-dropdown-container .search-item.active {
    background: var(--primary-color);
    color: white;
}

.arrow-steps .step {
    font-size: 14px;
    text-align: center;
    color: #666;
    cursor: default;
    margin: 0 3px;
    padding: 7px 10px 8px 30px;
    float: left;
    position: relative;
    background-color: #d9e3f7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
    content: " ";
    position: absolute;
    top: 0;
    right: -17px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #d9e3f7;
    z-index: 2;
    transition: border-color 0.2s ease;
}

.arrow-steps .step:before {
    right: auto;
    left: 0;
    border-left: 17px solid #fff;
    z-index: 0;
}

.arrow-steps .step:first-child:before {
    border: none;
}

.arrow-steps .step:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.arrow-steps .step span {
    position: relative;
    font-weight: bold;
}

.arrow-steps .step span:before {
    opacity: 0;
    position: absolute;
    top: -2px;
    left: -20px;
}

.arrow-steps .step.done span:before {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.5s;
    -moz-transition: opacity 0.3s ease 0.5s;
    -ms-transition: opacity 0.3s ease 0.5s;
    transition: opacity 0.3s ease 0.5s;
}

.arrow-steps .step.current {
    background: rgb(10, 127, 214);
    /* background: linear-gradient(90deg, rgba(10,127,214,1) 41%, rgba(73,164,228,1) 100%); */
    color: white;
}

.arrow-steps .step.current:after {
    border-left: 17px solid rgb(10, 127, 214);
}

.pulse {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c851;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(34, 192, 60, 0.9);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
.pulse:hover {
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(34, 192, 60, 0.9);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(34, 192, 60, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(34, 192, 60, 0);
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 192, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 192, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 192, 60, 0);
    }
}

.global-search-container {
}

.global-search-container .search-dropdown-container {
    min-height: 75px;
    max-height: 350px;
    overflow-y: auto;
}

.global-search-container
    .search-dropdown-container
    .search-container
    .search-item {
    display: block;
    padding: 0 1rem;
}

.global-search-container
    .search-dropdown-container
    .search-container
    .search-item:hover {
    background: #e8e8e8;
}

.global-search-container
    .search-dropdown-container
    .search-container
    .search-item
    a {
    display: block;
}

.input-error {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}


.file-upload-input {
    display: none;
}

.file-upload-button {

}

.table-primary-custom .table-custom-striped {

}

.table-fixed {
    table-layout: fixed;
}

.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 31px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 31px;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 5px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: var(--primary-color);
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

