* {
    font-family: "Manrope",sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.header-animation {
    /* animation: 0.5s header-animation forwards cubic-bezier(0.33, -0.14, 0.55, 1.3); */
}

@keyframes header-animation {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-animation {
    animation: 0.5s content-animation forwards cubic-bezier(0.33, -0.14, 0.55, 1.3);
}

@keyframes content-animation {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

::selection {
    background-color: var(--theme-color);
    color: white;
}

.quote {
    font-family: "slogon"
}

.title {
    font-family: "oswald"
}

a {
    text-decoration: none;
}

.link {
    color: var(--theme-color);
}

.link:hover {
    text-decoration: underline;
}

.offcanvas-backdrop {
    background-color: #0000003b;
}

.btn-white {
    background-color: white;
}

.btn-white:hover {
    background-color: rgba(189, 197, 209, .2) !important;
}

.btn-theme {
    color: #fff !important;
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color);
    box-shadow: 0 0.125rem 0.25rem 0 var(--theme-color);
    transition: all 0.3s;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;

}

.btn:focus,
.btn:active {
    box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted),
.dropdown-item.active,
.dropdown-item:active {
    background-color: #eee !important;
    color: black !important;
}

.dropdown-item:hover {
    color: var(--theme-color);
    background-color: white;
}

.select2-container .select2-selection--single {
    border: 1px solid #e7eaed;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
}

.form-group-lg .select2-container .select2-selection--single {
    height: 48px !important;

}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px !important;
}

.form-group-lg .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px !important;
}

.btn {
    transition: all 0.3s;
    border-radius: var(--rounded-theme);
}

.btn:hover,
.btn-theme:hover {
    transform: translateY(-1px)
}

.btn,
.btn-theme:active {
    transform: translateY(0)
}


.logo {
    display: flex;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.container {
    max-width: 1500px !important;
}

.row {
    margin: 0;
}

.form-label {
    font-weight: bold;
    color: var(--theme-color)
}

.form-group {
    margin: 0.5rem 0;
    position: relative;
}

.form-control {
    border-radius: var(--rounded-theme);
}

.vscomp-wrapper.has-error .vscomp-toggle-button {
    border-color: #CED4DA !important;
}

.form-check-input:focus,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection,
.form-control:focus {
    box-shadow: none !important;
    border-color: var(--theme-color) !important;
    background-color: white;

}



.form-check-input:checked {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-color: var(--theme-color) !important;
}

.w-95 {
    width: 95%;
}

.w-limit {
    max-width: 1500px;
}

.w-fit {
    width: fit-content !important;
}

.h-0 {
    height: 0;
}

.min-h-100 {
    min-height: 100%;
}

.text-grey {
    color: #6C757D !important;
}

.text-lightgrey {
    color: #B4BDC6 !important;
}

.bg-grey {
    background-color: var(--grey) !important;
}

.bg-theme {
    background-color: var(--theme-color) !important;
}

.bg-theme-dark {
    background-color: var(--theme-color-dark) !important;
}

.bg-theme-light {
    background-color: var(--theme-color-light) !important;
}

.bg-theme2 {
    background-color: var(--theme-color2) !important;
}

.text-theme {
    color: var(--theme-color) !important;
}

.text-theme2 {
    color: var(--theme-color2) !important;
}

.text-theme3 {
    color: var(--theme-color3) !important;
}


.text-theme-dark {
    color: var(--theme-color-dark) !important;
}

.text-theme-light {
    color: var(--theme-color-light) !important;
}

/*.selected {
    background-color: var(--theme-color) !important;
}*/

.of-contain {
    object-fit: contain;
}

.of-cover {
    object-fit: cover;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
}

.space-y {
    margin: 10px 0;
}

.overlay-theme,
.overlay-dark {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.3
}

.overlay-theme {
    background-color: var(--theme-color);
}

.overlay-dark {
    background-color: black
}

.border-theme {
    border-color: var(--theme-color) !important;
}

.border-theme2 {
    border-color: var(--theme-color2) !important;
}

.border-theme3 {
    border-color: var(--theme-color3) !important;
}

.border-theme-width {
    border-width: 8px !important;
}


.no-wrap {
    white-space: nowrap;
}

.hide {
    display: none;
}

.transition {
    transition: all 0.3s;
}

.no-select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.hide-spin::-webkit-outer-spin-button,
.hide-spin::-webkit-inner-spin-button {
    display: none;
}

.clamp1,
.clamp2,
.clamp3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.clamp1 {
    -webkit-line-clamp: 1;
}

.clamp2 {
    -webkit-line-clamp: 2;
}


.pointer {
    cursor: pointer;
}

.zoom {
    cursor: zoom-in;
}

.grab {
    cursor: grab;
}

.bg-dark-transparent {
    background-color: rgba(0, 0, 0, 0.733);
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.z-10 {
    z-index: 10;
}

.z-99 {
    z-index: 99;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.gradiant-bottom {
    background-image: linear-gradient(0deg, #000, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.gradiant-top {
    background-image: linear-gradient(0deg, #0d0d0d00, rgba(0, 0, 0, 0.7), rgb(0, 0, 0));
}


@keyframes shimmer {
    100% {
        -webkit-mask-position: left
    }
}


.shake {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

.paragraph p,
.paragraph {
    font-family: sans-serif !important;
    line-height: 1.7
}

.center,
.center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bg-blure {
    backdrop-filter: blur(5px);
}

.layer-dark {
    background-color: #0000003b;
}

.layer-light {
    background-color: #ffffff9e;
}

.rounded-theme {
    border-radius: var(--rounded-theme);
}

.text-justify {
    text-align: justify;
}

.fs-7 {
    font-size: 14px;
}

*::placeholder {
    color: #a4acad !important;
}

.shadow-0 {
    box-shadow: none !important
}

.radio-selected {
    background-color: var(--theme-color) !important;
    color: white !important;
}

.hover-grey:hover {
    background-color: var(--grey)
}

.hover-splash:hover {
    background-color: rgb(165 165 165 / 20%) !important;
}

.hover-shadow {
    transition: box-shadow 0.5s;
}

.hover-shadow:hover {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
}

.hover-scale {
    transition: transform 0.5s;
}

.hover-scale:hover {
    transform: scale(1.1);
}

.hover-slide-up {
    transition: transform 0.5s;
}

.hover-slide-up:hover {
    transform: translateY(-20px);
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px !important;
    bottom: 0;
    background-color: var(--theme-color);
    transition: all 0.25s ease-out;
}

.hover-underline-animation:hover::before {
    width: 100%;
}

.hover-bg-theme:hover {
    background-color: var(--theme-color) !important;
    color: white !important;

}

.hover-bg-theme:hover span {
    color: white !important;
}

.hover-bg-theme2:hover {
    background-color: var(--theme-color2) !important;
    color: white !important;

}

.hover-bg-theme2:hover span {
    color: white !important;
}

.hover-text-theme:hover {
    color: var(--theme-color) !important;
}

.hover-text-theme2:hover {
    color: var(--theme-color2) !important;
}

.hover-border {
    border: 1px solid transparent !important;
    transition: all 0.3s;
}

.hover-border:hover {
    border-bottom-color: var(--theme-color) !important;
}

.hover-border-bottom {
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s;
}

.hover-border-bottom:hover {
    border-bottom-color: var(--theme-color) !important;
}

.hover-shimmer:hover,
.shimmer {
    -webkit-mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/300% 100%;
    background-repeat: no-repeat;
    animation: shimmer 2.5s infinite;
}

.hover-shimmer:hover {
    animation: shimmer 0.7s forwards;
}

.pulse {
    position: relative;
}

.pulse::before {
    position: absolute;
    content: "";
    border-radius: 100%;
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgb(228, 30, 30);
    animation: pulse-animation 2s infinite;
    opacity: 0;
    transform: scale(0);
}

@keyframes pulse-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    90% {
        transform: scale(200%);
        opacity: 0;
    }
}

.ring-animation {
    animation: ring-animation 0.1s infinite alternate linear;
}

@keyframes ring-animation {
    0% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

.loader {
    height: 5px;
    background-color: black;
    width: 40%;
    animation: 0.8s loader linear infinite;
}

[data-invalid-input] .vscomp-wrapper.has-error .vscomp-toggle-button,
[data-invalid-input] {
    border-color: red !important;
}

[data-invalid-message] {
    font-weight: bold;
    font-size: 0.8rem;
    color: red !important;
}

.required::after {
    content: " * ";
    color: red
}

.floating {
    animation: floating 0.5s infinite alternate;
}

@keyframes floating {
    0% {
        transform: translateY(5px)
    }

    100% {
        transform: translateY(0px)
    }
}

.htmx-indicator {
    display: none
}

.htmx-request.htmx-indicator {
    display: flex
}

.change_lang {
    color: white !important;
}

.change_lang svg {
    color: white !important;
}

.text-large {
    font-size: 6rem
}

.disabled {
    opacity: 0.5;
    pointer-events: none
}


input.disabled {
    opacity: 1;
    pointer-events: none;
    background-color: #f5f5f5;
}

.splide__pagination__page.is-active {
    background: var(--theme-color);
}


.rpl {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rpl .span-rpl {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100px;
    height: 100px;
    transform: scale(0);
    animation: rple 1s;
    opacity: 0;
    pointer-events: none;
}

@keyframes rple {
    from {
        opacity: 0.5;
        transform: scale(0);
    }

    to {
        opacity: 0;
        transform: scale(4);
    }
}


.sub-menu-active {
    color: var(--theme-color)
}

.menu-active {
    background-color: var(--theme-color-light) !important;
    color: var(--theme-color) !important;
}


.h-90 {
    height: 90% !important
}

.h-95 {
    height: 95% !important
}

.w-95 {
    width: 95% !important
}

.custom-dropbox-container,
.custom-toggle-button {
    border-color: #eee;
    color: black;
    border-radius: var(--rounded-theme);
}


.custom-dropbox {
    border: 1px solid #eee;
    border-radius: var(--rounded-theme);
    color: black;
    overflow-y: auto;
}

.vscomp-ele {
    max-width: 100% !important;
}

.vscomp-ele-wrapper {
    height: 42px !important;
    width: 100% !important;
}

.vscomp-value {
    display: flex !important;
    align-items: center !important;
}

.vscomp-wrapper.show-value-as-tags .vscomp-clear-button {
    top: 9px !important
}

.vscomp-arrow {
    top: 5px !important
}

.vscomp-option.selected {
    color: black !important;
}

/* Custom scrollbar styles for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color) #f1f1f1;
}


/* Custom scrollbar styles for Chrome */
*::-webkit-scrollbar {
    width: 2px;
    height: 10px;
}

.modal-backdrop.show {
    z-index: 20
}


.dropdown-menu {
    background-color: transparent;
    border: none
}

.dropdown-menu.show .dropdown-menu-animated {
    animation: dropdown-animation 0.3s;
}

.dropdown-menu.show div {
    background-color: white;
}

.outline-0 {
    outline: none !important
}

@keyframes dropdown-animation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.date_calendar {
    flex-direction: column;
}

.date_calendar select,
.date_calendar input {
    height: auto !important
}

.calendar {
    top: 0 !important;
}

.time_container select,
.time_container input,
.date_calendar select:nth-child(1),
.date_calendar input {
    border-radius: 0 !important;
    margin: 0 !important;
    width: 75px !important
}

.time_container select:nth-child(1),
.time_container input:nth-child(1),
.date_calendar select:nth-child(1),
.date_calendar input:nth-child(1) {
    border-start-start-radius: var(--rounded-theme) !important;
    border-end-start-radius: var(--rounded-theme) !important;
}

.input-group-addon,
.calendar_button .calendar {
    padding: 0 15px;
    border-radius: 0 !important;
    border-start-end-radius: var(--rounded-theme) !important;
    border-end-end-radius: var(--rounded-theme) !important;
    background-color: white;
    color: var(--theme-color);
    margin: 0;
}


.input-group-addon {
    border: 1px solid #ced4da;
    height: 38px !important;
    top: -4px !important;
    margin: 0;
    display: flex;
    align-items: center;
}

.niceCountryInputMenu {
    border-top-left-radius: var(--rounded-theme) !important;
    border-bottom-left-radius: var(--rounded-theme) !important;
}

.clockpicker-popover {
    position: absolute !important;
}

.col-2-5 {
    width: 20%;
}


.vscomp-value-tag-content {
    width: fit-content !important
}

.trumbowyg-editor {
    height: 100% !important;
}

.cal_field_default input {
    width: 38px !important;

}

.datepickerSelected a {
    color: red !important
}

.datepickerWeek a {
    color: #999 !important
}

.cal_field_default {
    width: 75px !important
}

.trumbowyg-button-pane {
    z-index: 1 !important;
}


.b-lazy {
    opacity: 0.2;
    transition: all 0.5s;
}

.b-lazy.b-loaded {
    opacity: 1;
}

.status-chip {
    background-color: var(--bg-color);
    color: var(--color);
    padding: 5px 10px;
    border: 1px solid var(--color);
    width: 84px;
    text-align: center;
    border-radius: 7px;
    font-size: 0.8em;
    display: inline-block;
}

.status-pending {

    background-color: #eef6ff;
    color: black;
    padding: 5px 10px;
    border: 1px solid #5fa9ee;
    border-radius: 7px;
    font-size: 0.8em;
    display: inline-block;
}



.status-done,.status-created,.status-accepted {
    background-color: #cdebdc;
    color: black;
    padding: 5px 10px;
    border: 1px solid green;
    border-radius: 7px;
    font-size: 0.8em;
    display: inline-block;
}




.status-canceled {
    background-color: #fdc9c9;
    color: black;
    padding: 5px 10px;
    border: 1px solid #d60b0b;
    border-radius: 7px;
    font-size: 0.8em;
    display: inline-block;
}


.country_code{
    z-index: 1 !important;
}



@media (max-width: 1000px) {
    .text-large {
        font-size: 3rem
    }
}

@media (max-width: 700px) {
    .text-large {
        font-size: 2rem
    }
}




@media (min-width: 768px) {
    .col-md-2-5 {
        width: 20%;

    }
}

@media (min-width: 992px) {
    .col-lg-2-5 {
        width: 20%;

    }
}