/* --------------General/Start------------- */
:root {
    --primary-color: #000000;
    --secondary-color: #5547f5;
    --thirdly-color: #ff9776;
    --thirdly-color-light: #f8f0ea;
    --text-color: #7A7A7A;
    --text-color-accent: #347f23;
    --text-color-dark: #aaaaaa;
    --accent-color: #69FF47;
    --accent-color-light: #edf3ec;
    --background-color: #e6e6e6;
    --background-color-light: #f1f1f1;
    --border-color: #c2c2c2;
    --border-color-dark: #696969;
    --text-font-family: IRANSans, OpenSans;
    --digits-font-family: shabnam;
}

html {
    scroll-behaviour: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

::selection {
    background: black;
    color: var(--accent-color);
}

body {
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}


img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

img {
    width: unset;
    height: unset;
}

a:hover {
    color: black;
    transition: .4s;
}

a {
    color: inherit;
    transition: .4s;
    text-decoration: none;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
}

.hidden {
    display: none !important;
}

.button {
    position: relative;
    min-width: 120px;
    color: black;
    font-size: 15px;
    line-height: 38px;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    padding: 0 20px;
    border: 1px solid black;
    border-radius: 33px;
    background: #fff;
    transition: all .3s ease-in-out;
}

.button:hover,
.button:focus,
button:hover,
button:focus {
    color: var(--accent-color);
    background: #000;
    box-shadow: none !important;
}

.desc,
.desc * {
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 28px;
    color: var(--text-color);
}

.desc a {
    color: var(--accent-color);
}

.desc ul,
.desc ol {
    padding-top: 15px;
}

.desc ul li,
.desc ol li {
    padding: 3px 0;
    /*border-bottom: 1px solid #5b5b5b;*/
}

.desc ul li:before {
    content: '';
    width: 7px;
    min-width: 7px;
    height: 14px;
    transform: rotate(45deg);
    display: inline-block;
    margin-right: 5px;
    margin-left: 10px;
    margin-top: -3px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

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

.img-wrapper *,
.img-wrapper {
    height: 100%;
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 38px;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all .3s ease-in-out;
    margin-bottom: 20px;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--text-color);
}

.form-control::-moz-placeholder {
    color: var(--text-color);
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1
}

.form-control::placeholder {
    color: var(--text-color);
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f6f6f6;
    opacity: 1
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none
    }
}

select.form-control:focus::-ms-value {
    color: var(--text-color);
    background-color: #fff
}

label {
    font-weight: 400;
    padding: 0 3px 5px 0;
    color: #000;
}

label.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

label.checkbox input {
    visibility: hidden;
    z-index: -1;
    margin: 0;
    position: absolute;
}

label.checkbox .checked {
    order: -1;
    position: relative;
    margin-left: 5px;
}

label.checkbox .checked:before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: var(--background-color);
    border-radius: 2px;
    display: block;
}

label.checkbox .checked:after {
    content: '';
    width: 16px;
    height: 8px;
    border-bottom: 3px solid var(--accent-color);
    border-left: 4px solid var(--accent-color);
    display: block;
    position: absolute;
    top: 0px;
    right: -2px;
    z-index: 1;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all .3s ease-in-out;
}

label.checkbox input:checked~.checked:after {
    opacity: 1;
}

textarea.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 26px;
    height: 124px;
}

.nav-link:active,
.nav-link:focus,
.nav-link:hover {
    outline: none
}

.media img {
    border-radius: 4px
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border-radius: 10px;
    background: #f3f3f3;
}

.select2-container--default .select2-selection--single {
    border-color: var(--border-color);
}

@media (max-width: 575.98px) {
    .d-xs-none {
        display: none !important;
    }

    .desc,
    .desc * {
        font-size: 13px;
        line-height: 22px;
    }

    .button {
        line-height: 42px;
    }
}

@media (min-width: 1440px) {
    .table {
        width: 100% !important;
    }
}

/* -------------- General / End------------- */
/* ----------- Intro Section / Start --------------- */
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fade {
    to {
        opacity: 1;
    }
}

.icon-animate {
    width: 100px;
    height: 40px;
    max-width: 100%;
    margin-top: -40px;
}

.icon-animate path,
.icon-animate circle,
.icon-animate line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 20s linear forwards;
    animation-delay: 0s;
}

.st1 {
    fill: var(--accent-color) !important;
}

.st0 {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-miterlimit: 10;
}

#canvas {
    height: 100vh;
    width: 100%;
    background: #000;
    animation-delay: 4s;
}

.hero-txt {
    color: var(--accent-color);
    font-size: 14px;
    opacity: 0;
    animation: fade .4s linear forwards;
    animation-delay: 2s;
    width: 100px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .icon-animate {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .icon-animate {
        width: 80px;
        height: 30px;
    }

    .hero-txt {
        font-size: 12px;
    }
}

/* ----------- Intro Section / End --------------- */
/* ----------- Login / Start --------------- */
.login-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 500px;
    max-width: 100%;
    background: #393939e8;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    padding: 40px;
    border-radius: 20px;
    margin-top: 15px;
}

.login-form .title {
    color: #fff;
    margin: 0 0 30px;
    text-align: center;
    font-size: 26px;
}

.login-form .desc {
    color: var(--text-color-dark);
    text-align: center;
    margin-bottom: 30px;
}

.login-form .form-wrapper {
    text-align: center;
}

.login-form .form-wrapper .form-control {
    background-color: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    border-color: var(--border-color-dark);
    padding-right: 5px;
}

.login-form .form-wrapper .form-control:focus,
.login-form .form-wrapper .form-control:-internal-autofill-selected {
    background-color: transparent !important;
    color: #fff !important;
}

.login-form .form-wrapper .code-form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.login-form .form-wrapper .code-form-group input {
    border-color: var(--border-color-dark) !important;
    flex: 0 0 16%;
}

.login-form .form-wrapper #codeInput .letter {
    text-align: center;
    max-width: 16%;
    min-width: 6.25%;
    padding: 5px 0;
    flex-grow: 1;
    font-size: 16px;
    font-weight: bold;
}

.login-form .form-wrapper .error_msg {
    color: red;
    font-size: 10px;
    font-weight: 900;
}

.login-form .form-wrapper label.checkbox {
    color: var(--text-color-dark);
}

.login-form .form-wrapper label.checkbox .checked:before {
    background-color: var(--border-color-dark);
}

.login-form .form-wrapper label.checkbox .checked:after {
    border-width: 2px;
}

.login-form .form-wrapper .button {
    background: transparent;
    color: #fff;
    border-color: #fff;
    line-height: 44px;
}

.login-form .form-wrapper .button:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.login-wrapper .poweredby {
    text-align: center;
    font-size: 12px;
    color: var(--text-color-dark);
}

.login-wrapper .poweredby a {
    text-decoration: underline;
}

.login-wrapper .poweredby a:hover {
    color: var(--accent-color)
}

@media (max-width: 767.98px) {
    .login-wrapper {
        padding: 20px 10px;
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .login-form {
        padding: 25px;
    }

    .login-form .title {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .login-form .desc {
        margin-bottom: 20px;
    }
}

/* ----------- Login / End --------------- */
@keyframes translatex1 {
    to {
        transform: translateX(100px);
    }
}

@keyframes translatex2 {
    to {
        transform: translateX(40px);
    }
}

@keyframes translatex3 {
    to {
        transform: translateX(70px);
    }
}

.auth-page {
    background: #000 !important;
    justify-content: stretch;
    padding: 0 12px;
}

.auth-page .card {
    max-width: 500px;
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

.phone-form-group input,
.code-form-group input {
    border-color: #7987a1 !important;
}

.code-form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.code-form-group label {
    flex: 0 0 100%;
}

.code-form-group input {
    flex: 0 0 16%;
}

#codeInput .letter {
    text-align: center;
    max-width: 16%;
    min-width: 6.25%;
    padding: 5px 0;
    flex-grow: 1;
    font-size: 16px;
    font-weight: bold;
}

.error_msg {
    color: red;
    font-size: 10px;
    font-weight: 900;
}

.mr-10 {
    margin-right: 10px;
}


.primary_btn {
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    padding: 0 25px;
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #69FF47;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #69FF47;
    --bs-btn-focus-shadow-rgb: 124, 134, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: #69FF47;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffffff
}

.auth-page > .row {
    height: 100%;
}

.auth-page .auth-form-wrapper {
    padding: 30px 60px;
    background: #1E2024;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-page .auth-form-wrapper .animate-logo {
    margin-left: 300px;
}

.auth-page .auth-form-wrapper .auth-form {
    max-width: 500px;
    width: 100%;
    margin-top: 30px;
}

.auth-page .auth-side-wrapper {
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.auth-page .auth-side-wrapper svg {
    max-width: 500px;
    position: absolute;
    top: 50%;
    right: calc(50% - 250px);
    transform: translateY(-50%);
}

.auth-page .auth-side-wrapper svg .draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear forwards;
    animation-delay: 0s;
}

.auth-page .auth-side-wrapper svg .grow {
    opacity: 0;
    animation: fade 1s linear forwards;
    animation-delay: 0.2s;
}

.auth-page .auth-side-wrapper svg .grow + .grow {
    animation-delay: 0.5s;
}

.auth-page .auth-side-wrapper svg .grow + .grow + .grow {
    animation-delay: 0.8s;
}

.auth-page .auth-side-wrapper svg .transx{
    animation: translatex1 1s linear forwards;
    animation-delay: 0.1s;
}
.auth-page .auth-side-wrapper svg .transx + .transx{
    animation: translatex2 1s linear forwards;
    animation-delay: 0.3s;
    cy:204px;
}
.auth-page .auth-side-wrapper svg .transx + .transx + .transx{
    animation: translatex3 1s linear forwards;
    animation-delay: 0.6s;
    cy:235px;
}

.auth-page .auth-side-wrapper img {
    max-width: 500px;
}

.auth-page .auth-form-wrapper .auth-form .form-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
}

.auth-page .auth-form-wrapper .auth-form .form-subtitle {
    color: #999999;
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 30px;
}

.auth-page .auth-form-wrapper .auth-form .form-group {
    margin-bottom: 30px;
}

.auth-page .auth-form-wrapper .auth-form .form-group .form-label {
    color: #e6e6e6;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 5px;
}

.auth-page .auth-form-wrapper .auth-form .form-group .form-control {
    line-height: 30px;
    background: #55575c;
    border-width: 0;
    color:#fff;
}

.auth-page .auth-form-wrapper .auth-form #timer {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 30px;
}

.auth-page .auth-form-wrapper .auth-form #wronge_code_msg:not(.hidden) {
    margin-top: -20px;
    margin-bottom: 30px;
}