:root {
    --thm-font: "Manrope", sans-serif;
    --thm-font-2: "DM Sans", sans-serif;
    --thm-base: #b300b3;
    --thm-base-rgb: 179, 0, 179;
    --thm-gray: #7f7873;
    --thm-gray-rgb: 127, 120, 115;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #1a1c23;
    --thm-black-rgb: 26, 28, 35;
    --thm-primary: #ffb400;
    --thm-primary-rgb: 255, 180, 0;
}

button,
input,
optgroup,
select,
textarea,
.nice-select {
    border-radius: 0px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.gradient {
    background-image: -moz-linear-gradient(0deg, rgb(77, 0, 77) 0%, rgb(179, 0, 179) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(77, 0, 77) 0%, rgb(179, 0, 179) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(77, 0, 77) 0%, rgb(179, 0, 179) 100%);
}

/*== Preloader Css ======*/

.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-base);
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.preloader-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 30px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 99999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: 15px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
    font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    position: absolute;
    top: 0;
    left: 0;
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.5s;
}

/**
animation: spinner 1s infinite linear;
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
**/

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    /**border-top-color: rgba(255, 255, 255, 0.5); **/
}

/* Animation preloader */

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px;
    }
}

.form-check-input:checked {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

.minimize .register-form form .nice-select .current {
    display: inline-block;
    max-width: 85px;
    overflow: hidden;
}

.register-form form .nice-select .list {
    min-width: 150px;
}

.register-form form .nice-select .list {
    max-height: 200px;
    overflow-y: auto;
}

.tw-stroke-stone-600 {
    stroke: #57534e !important;
}

.tw-stroke-yellow-600 {
    stroke: #ca8a04 !important;
}

.tw-stroke-pink-600 {
    stroke: #db2777 !important;
}

.tw-stroke-violet-600 {
    stroke: #7c3aed !important;
}

.tw-stroke-green-600 {
    stroke: #16a34a !important;
}

.tw-stroke-slate-600 {
    stroke: #475569 !important;
}

.tw-stroke-orange-600 {
    stroke: #ea580c !important;
}

.tw-stroke-red-600 {
    stroke: #dc2626 !important;
}

.tw-stroke-blue-600 {
    stroke: #2563eb !important;
}

.tw-text-stone-600 {
    color: #57534e !important;
}

.tw-text-yellow-600 {
    color: #ca8a04 !important;
}

.tw-text-pink-600 {
    color: #db2777 !important;
}

.tw-text-violet-600 {
    color: #7c3aed !important;
}

.tw-text-green-600 {
    color: #16a34a !important;
}

.tw-text-slate-600 {
    color: #475569 !important;
}

.tw-text-orange-600 {
    color: #ea580c !important;
}

.tw-text-red-600 {
    color: #dc2626 !important;
}

.tw-text-blue-600 {
    color: #2563eb !important;
}

.text-elipsis {
    width: calc(100vw / 4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}