﻿.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    border-left: 16px solid pink;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}
.p-10 {
    padding: 10px !important;
}
.gren {
    color: #027402;
}
.itm7 {
    border-style: solid;
    border-color: #fff;
    cursor: pointer;
    font-size: large;
    /*   box-shadow: 0 2px 1px rgba(0,0,0,0.3);*/
    /*   
    border-radius: 15px !important;*/
    padding: 8px;
    margin: 10px;
}
.itm7:hover {
    box-shadow: 0 4px 4px rgba(0,0,0,0.3);
    color: #17a2b8;
}
.itm7:active {
    box-shadow: 0 4px 2px rgba(0,0,0,0.3);
    border-color: #17a2b8;
    color: #17a2b8;
}
.itm4 {
    border-style: solid;
    border-color: #fff;
    cursor: pointer;
    border: thin solid #d397be;
 /*   box-shadow: 0 2px 1px rgba(0,0,0,0.3);*/
/*   
    border-radius: 15px !important;*/
    padding: 18px;
    margin: 10px;
}
    .itm4:hover {
        box-shadow: 0 4px 4px rgba(0,0,0,0.3);
        border-color:  #ff00a6;
        color: #17a2b8;
    }
    .itm4:active {
        box-shadow: 0 4px 2px rgba(0,0,0,0.3);
        border-color: #17a2b8;
        color: #17a2b8;
    }
.centr {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.anim_btn {
    width: 100px;
    background-color: red;
    position: relative;
    animation-name: example;
    animation-duration: 2s;
    /* animation-delay: 1s;*/
    animation-iteration-count: infinite;
    /*   animation-iteration-count: 6;*/
}
@keyframes example {
    0% {
        /*   background-color: red;*/
        left: 0px;
        top: 0px;
    }
    25% {
        background-color: yellow;
        left: 5px;
        top: 0px;
    }
    50% {
        /*    background-color: red;*/
        left: -3px;
        top: 0px;
    }
    75% {
        /*  background-color: red;*/
        left: 0px;
        top: 0px;
    }
    100% {
        /*  background-color: red;*/
        left: 0px;
        top: 0px;
    }
}
.centr {
    display: table !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.body_back{
    background-color:#f5deea;
    padding:3px;
}
.arow {
    background: url(../img/got.png);
}
    .mr_20 {
    margin-right: 20px !important;
}
.prl{  
    padding-left:15px;
    padding-right:15px;
}
.rdu {
    border-radius: 15px !important;
}
.text_grean {
    color: limegreen;
}
.text_red {
    color: red;
}
.text_pin {
    color: #d397be;
}
.anim_alr {
    color: green;
    animation-name: alarm;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    position: relative;
}
@keyframes alarm {
    0% {
        top: 0px;
        left: 0px;
    }
    50% {
        top: 3px;
        left: 0px;
    }
    50% {   
        color: red;
        top: 5px;
        left: 0px;
    }
    75% {
        top: 3px;
        left: 0px;
    }
    100% {
        top: 0px;
        left: 0px;
    }
}
/*-----*/
.anim_aro {
    color: #f3f3f3;
    animation-name: aro;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    position: relative;
}
@keyframes aro {
    0% {
        top: 0px;
        left: 0px;
    }
    25% {
        top: 0px;
        left: 1px;
    }
    50% {
        color: #d397be;
        top: 0px;
        left: 2px;
    }
}
.anim_aro20 {
    animation-name: aro20;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    position: relative;
}
@keyframes aro20 {
    0% {
        top: 0px;
        left: 0px;
    }
    50% {
        top: 0px;
        left: 20px;
    }
}
/*-----*/
.zang {
    color: black;
    left: 0;
    animation-name: zang1;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

@keyframes zang1 {
    10% {
        color: yellow;
        left: -2px;
    }

    60% {
        color: red;
        left: 2px;
    }

    90% {
        color: black;
        left: 0px;
    }
}
/*-----*/
.txt_lmp {
    color: black;
    animation-name: txtlmp;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
@keyframes txtlmp {
    10% {
        color: yellow;
    }
    60% {
     color: red;
    }
    90% {
        color: black;
    }
}
/*-----*/
.txt_lmp1 {
    color: red;
    animation-name: txtlmp;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes txtlmp {
    0% {
        color: red;
    }
    10% {
        color: black;
    }

    100% {
        color: black;
    }
}
/*-----*/
.txt_lmp2 {
    color: #17a2b8;
    animation-name: txtlmp2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes txtlmp2 {
    70% {
        color: yellow;
    }

    90% {
        color: green;
    }
}
/*-----*/
.anim_lmp {
    color: #fff;
    background-color: #d397be;
    animation-name: lmp;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes lmp {
    0% {
        color: #3275ed;
        background-color: #fff;
    }
    50% {
        color: pink;
        background-color: #3275ed;
    }
}
/*---*/
.anim_lmp2 {
    animation-name: lmp2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes lmp2 {
    0% {
        color: red;
        background-color: #fff;
    }
    50% {
        color: black;
        background-color: #ff00a6;
    }
}
/*---*/
.anim_lmp3 {
    animation-name: lmp3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes lmp3 {
    0% {
        color: #027402;
        background-color: #fff;
    }
    50% {
        color:white;
        background-color: #027402;
    }
}
/*---*/
.my_circle {
    border-radius: 50% !important;
}
.shast {
    width: 40px;
    height: 40px;
    padding: 1px;
    margin-left: 10px;
}
.my-modalx {
    z-index: 3;
    display: none;
    padding: 2px;
    position: fixed;
    width: auto;
    height: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.001)
}
.shad_ {
    box-shadow: 0px 1px 2px rgba(0,0,0,0.3) !important;
}
.shad {
    box-shadow: 0px 5px 3px rgba(0,0,0,0.3) !important;
}
.mlb {
    left: 0px;
    bottom: 2px;
}
.my_centerg {
    padding: 6px;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    margin: 1px;
}
.mlb-cuntn {
    background-color: #fff;
    width: 52px;
    height: auto;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px
}
.hover_bg {
    cursor: pointer;
}

    .hover_bg:hover {
        box-shadow: 0 1px 1px rgba(0,0,0,0.3);
        background-color: limegreen;
    }
.hover_bg2 {
    cursor: pointer;
    background-color: #99d3ff;
}

    .hover_bg2:hover {
        box-shadow: 0 0.5px 0.5px rgba(0,0,0,0.3);
        background-color: #88cafc;
    }
.inup {
    border-top: 1px solid #161515 !important;
    border-left: 1px solid #161515 !important;
   border-top-left-radius: 8px !important;
}
.inpu {
    border-bottom: 1px solid #161515 !important;
    border-right: 1px solid #161515 !important;
    border-bottom-right-radius: 8px !important;
}
input[type=text]:focus {
    border-bottom: 2px solid #00fff7 !important;
    border-right: 2px solid #00fff7 !important;
}
input:focus {
    border-bottom: 2px solid #00fff7 !important;
    border-right: 2px solid #00fff7 !important;
}
select:focus {
    border-bottom: 2px solid #00fff7 !important;
    border-right: 2px solid #00fff7 !important;
}
.onderline {
    border-bottom: 2px solid #ff1616;
}
.onderline2 {
    border-bottom: 1px solid #00fff7;
}
.borderlight {
    border: 1px solid #00fff7;
}
.bordernon {
    border: 2px solid #red;
}


/*لودر آلارم بالای صفحه */
/*/ کانتینر اصلی که در بالا سمت راست قرار می‌گیرد /*/
.loading-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    /*    / برای اینکه روی همه المان‌ها باشد / */
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    direction: rtl;
    /* / برای متن فارسی / */
    font-family: Tahoma, Arial, sans-serif;
    min-width: 180px;
    animation: slideIn 0.3s ease-out;
}

/*/ محتوای داخل کانتینر /*/
.loader-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .loader-content p {
        margin: 0;
        color: #333;
        font-size: 14px;
        font-weight: bold;
    }

/*/ طراحی دایره چرخان (Spinner) /*/
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    /*    / رنگ اصلی چرخش /*/
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/*/ انیمیشن چرخش دایره /*/
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*/ انیمیشن ورود (از بالا به پایین) /*/
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*/ انیمیشن خروج (به سمت بالا) */
.fade-out {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-50px);
        opacity: 0;
    }
}
