@font-face {
    font-family: "my_cap";
    src: url('/css/web_fonts/BPG DejaVu Sans Web Caps.ttf') format("truetype")
}
@font-face {
    font-family: "norm";
    src: url('/css/web_fonts/BPG DejaVu Sans Web.ttf') format("truetype")
   /* src: url('/css/fonts/DejaVu/DejaVuSans.ttf') format("truetype")*/
}
@font-face {
    font-family: "norm1";
    src: url('/css/web_fonts/BPG DejaVuSerif Web.ttf') format("truetype")
    /* src: url('/css/fonts/DejaVu/DejaVuSans.ttf') format("truetype")*/
}
@font-face {
    font-family: "my_capcond";
    src: url('/css/web_fonts/BPG DejaVu SansCond Caps Web.ttf') format("truetype")
}
@font-face {
    font-family: "smile";
    src: url('/css/web_fonts/joypixels-android.ttf') format("truetype")
}
html {
    height: 100%;
    font-size: 13px;
    line-height: 18px;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    position: fixed;
    background-attachment: fixed;
    background-image: url(/img/bg.jpg);
}
body * {
    font-family: Arial, Helvetica, sans-serif, 'smile';
}
a{
    text-decoration: none;
}
.a-r{
    text-align: right;
}

[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak {
    display: none !important;
}
.up {
    text-transform: uppercase;
    font-family: "my_cap"
}
.input-field input:focus+label {
    color: #2196f3 !important;
}

aside {
    position: fixed;
    background: #fff;
    width: 100px;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
    display: flex;
    border-right: solid 1px #f5f0f0;
}
.am {
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    display: block;
    color: #b9babb;
}

.am span {
    transition: all 0.15s linear;
    font-size: 9px;
    color: #fff;
    display: block;
}
.am .child{
    display: none;
    background: #fff;
    position: absolute;
    left: 100px;
    width: 200px;
    top: 5px;
    width: 290px;
    border-right: solid 1px #77c1d4;
    border-top: solid 1px #77c1d4;
    border-bottom: solid 1px #77c1d4;
    padding: 12px;
}
.am .child a i{
    color: #b9babb;
}
.am .child a{
   font-size: 10px;
   display: block;
   padding: 6px;
   border-bottom: solid 1px #ccc;
}
.am .child a:hover{
    transition: all 0.15s linear;
}
.am .child a:hover span{
    font-size: 12px;
    color: #2f2f2f;
    font-weight: 600;
}
.am .child a:hover i{
    color: #0ab534;
}

aside:hover .am span {
    transition: all 0.15s linear;
    color: #989898;
}

.am.active,
.am:hover i {
    color: #0ab534;
}

.am.active span,
.am:hover span {
    color: #000;
    font-size: 11px;
    font-weight: 600;
}
.am:hover .child{
    display: block;
}

.am i {
    margin: 2px 12px 1px;
    font-size: 21px;
}
.btn {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.btn::-moz-focus-inner {
    border: none;
}

/* Overlay */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px; /* Safari */
    height: 32px; /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.btn:hover,
.btn:focus {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.btn:hover::before {
    opacity: 0.08;
}

.btn:focus::before {
    opacity: 0.24;
}

.btn:hover:focus::before {
    opacity: 0.3;
}

/* Active */
.btn:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.btn:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.btn:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.btn:disabled::before {
    opacity: 0;
}

.btn:disabled::after {
    opacity: 0;
}


.add_panel{
    margin: 10px 0px 10px 10px;
    max-height: 40px;
}
.add_panel .title{
    position: relative;
    display: inline-block;
    font-family: 'my_cap';
    color: #2f2f2f;
    top: -3px;
}
{
    background: #bdbdbd6e;
    padding: 2px 3px;
    border-radius: 6px;
}
.chosen-container-single a.chosen-single {
    padding: 6px 10px;
}
form > div{
    margin: 10px;
}
form div label{
    display: block;
    margin-bottom: 5px;
}
.chosen-container-multi ul.chosen-choices{
    width: calc(100% - 20px);
    padding: 3px;
    min-height: 36px !important;
    border: solid 1px #d5d7d8;
    margin-bottom: 4px;
    outline: none;
}

input, select, textarea{
    width: calc(100% - 20px);
    padding: 10px;
    border: solid 1px #d5d7d8;
    margin-bottom: 4px;
    outline: none;
}
input:hover,select:hover,textarea:hover{
    border: solid 1px #0ab534;
}
input[type="date"]{
    padding: 7px;
}
input:disabled{
    background: #ececec;
    border-color: #cecece;
    cursor: not-allowed;
    color: #656565;
}
.lists.new{
    color:#000;

}
.lists{
    line-height: 30px;
    color: #777;
    display: flex;
    padding: 3px 10px 0px;
    cursor: pointer;
    border-bottom: solid 1px #b9babb;
    border-top: solid 1px #b9babb;
    /* margin: 3px; */
}
.lists_in{
    line-height: 40px;
    color: #777;
    display: flex;
}
.lists:hover{
    background: #eeeeee55;
    box-shadow: inset 0 0 1px 0px #0ab534;
}
.sm_btn{
    color: #ccc;
    padding: 8px;
}

.sm_btn:hover{
    color: #0ab534;
}
.h-red:hover{
    color: red;
}
.blade{
    position: absolute;
    top: 10px;
    background: #f00;
    right: 5px;
    border: solid 1px #f00;
    border-radius: 5px;
    padding: 2px 4px;
    color: whitesmoke;
}
.swal-title {
    font-size: 12px;
    font-family: my_cap;
}
header{
    position: fixed; height: 50px;   background: #fff; width: 100%;
}
.down{
    position: absolute;
    left: -250px;
    width: 350px;
    background: #fff;
    box-shadow: 0px 1px 1px 0px #000;
}
.list_item{
    padding: 0 10px 0 10px;
    display: inline-grid;
    flex: 10;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}.list_head{
     box-sizing: initial;
     display: inline-grid;
     text-align: center !important;
     flex: 1;
     white-space: nowrap;
     text-overflow: ellipsis;
     color: #000000;
     padding: 0 10px 0 10px;
 }
 .list_head .text{
     white-space: nowrap;
     text-overflow: ellipsis;
     font-family: my_cap;
     overflow: hidden;
     width: 100%;
 }
footer{
    display: block;
    position: fixed;
    bottom: 0;
    color: #fff;
    text-align: center;
    width: 100%;
    background: #007dbee8;
}
.user_icon{
    border-radius: 50%;
    border: solid #ffda1a;
    font-size: 50px;
    height: 70px;
    width: 70px;
    line-height: 64px !important;
    display: inline-block !important;
    color: #1e92ab;
    background: #e4f2f5;
}
.user_icon_mini{
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: solid #ffda1a;
    height: 28px;
    width: 28px;
    color: #1e92ab;
    background: #e4f2f5;
    font-size: 15px;
    margin: 0px 0 -11px;
    font-family: my_cap;
    line-height: 30px !important;
}
.add_panel a{
    text-align: center;
    display: inline-block;
}
.add_panel a i{
    font-size: 26px;
    color: #888;
    cursor: pointer;
}/*
.add_panel a span{
    cursor: pointer;
    width: 120px;
    text-align: center;
    font-size: 20px;
    color: #888;
    margin: 10px 0;
    position: absolute;
}*/
.add_panel a:hover i{
    color :#0ab534
}
.add_panel a:hover span{
    color :#000;
    font-weight: 600;
}
.tooltip
{
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    padding: 5px;
    color: white;
    background: black;
    z-index: 5000;
}
.price{
    float:right;
    text-align: right;
}
input.switch {
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 51px;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}
input.switch:checked::before {
    background: #0ab534;
}
input.switch::before {
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    box-shadow: 0 0 1px 1px #ffffff;
    content: "\f058  \f057";
    display: block;
    position: absolute;
    background: #b9babb;
    width: 47px;
    border-radius: 1px;
    height: 25px;
    top: 0px;
    left: 0px;
    text-align: center;
}
input.switch::after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    border-radius: 2px;
    height: 21px;
    width: 22px;
    top: 2px;
    left: 1px;
    box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.3);
    transition: all 300ms;
}
input.switch:active:after {
    width: 30px;
}
input.switch:checked::after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}
input.round.switch::after,
input.round.switch::before {
    border-radius: 20px;
}
input.round.switch::after,
input.round.switch::before {
    border-radius: 20px;
}


/*** END CSS NEEDED FOR SWITCH **/
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    /* border-radius: 10px; */
}

::-webkit-scrollbar
{
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
    left bottom,
    left top,
    color-stop(0.44, #7bb6f1),
    color-stop(0.72, #59a4ef),
    color-stop(0.86, #71b8ff)
    );
}
.in_btn{
    text-align: center;
    padding: 0px;
    margin: 4px;
    height: 21px;
    line-height: 23px;
    color: #000000ed;
    border: solid 1px #c9c9c9;
    background: #e5e5e5e0;
}
.in_btn:hover {
    background: #d4d4d4; /* ოდნავ მუქი ფონი */
    border-color: #a9a9a9; /* საზღვრის ფერის შეცვლა */
    color: #333; /* ტექსტის მუქი ფერი */
    cursor: pointer; /* მაჩვენებელი იცვლება ხელსაწყოზე */
    transition: all 0.3s ease-in-out; /* გლუვი გადასვლა */
}
.red{
    background: #f00;
    color: #fff;
}
.green{
    background: #0ab534;
    color: #fff;
}
.file_input{
    display: flex;
    justify-content: space-between;
    border: solid 1px #ccc;
    margin: 0 11px;
    background: #f9f9f9;
    height: 34px;
}
.preview-img{
    height: 80px;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 2px;
}
.dropzone{
    background: #efefef;
    border: solid 1px #ccc;
    margin: 0;
    padding: 6px 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    height: 20px;
    flex: 1;
}
.image-preview-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.dropzone.dragover {
    border: 2px dashed #4A90E2;
    background-color: #F0F8FF;
}
.dropzone:hover {
    border: 2px dashed #4A90E2;
    background-color: #F0F8FF;
}
.image-preview{
    position: relative;
}
.progress-bar{
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    /* margin: 0 0px; */
}
.progress-bar .progress{
    position: absolute;
    left: 0;
    height: 100%;
    background: #00f31e;
    transition: 0.3s;
    border: 1px solid;
}
.progress-bar .progress_text{
    text-align: center;
    font-size: 10px;
    background: #14ffc587;
    font-family: 'my_capcond';
    width: 100%;
    color: #000;
}
.progress-bar .progress_complete{
    text-align: center;
    font-size: 10px;
    background: #00f31e;
    font-family: 'my_capcond';
    width: 100%;
    color: #000;
}
.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ffffff;
    font-size: 11px;
    color: #ff0000;
    cursor: pointer;
    border-radius: 50%;
    border: solid 1px #000;
    opacity: 0.6;
    height: 20px;
    width: 20px;
}
.delete-button:hover {
    opacity: 1;
    tranform: scale(1.1);
}
.delete-button .fa {
    pointer-events: none; /* Ensure the icon doesn't intercept click events */
}

.ui-sortable-placeholder {
    background-color: #eee;
    border: 2px dashed #aaa;
    visibility: visible !important;
    min-height: 80px;
}
.card_container{
    display:flex; flex-wrap:wrap; gap:16px; padding:16px; background:#fdfdfd;
    justify-content:center;
}
.card{
    width:260px; background:#fff; border-radius:12px; overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.12); display:flex; flex-direction:column;
}
.card_title{
    padding:10px 12px; font-weight:700; font-size:15px; text-align:center;
    background:#fafafa; border-bottom:1px solid #eee;
}

.carousel { position: relative; width: 100%; overflow: hidden; }

/* უფრო გლუვი ანიმაცია + GPU hint */
.carousel_track{
    display: flex;
    transition: transform .35s ease;
    touch-action: pan-y;
    will-change: transform;              /* + */
}

/* სიმაღლე ჯობს მივიდეს directive-დან (heightPx) → აქ 100% */
.carousel_track img{
    flex: 0 0 100%;
    width: 100%;
    height: 100%;                        /* ! 170px-ის ნაცვლად */
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;             /* + iOS Safari */
    pointer-events: none;                /* + რომ drag-ზე არ “იჭერდეს” სურათი */
}

/* ისრები ხანდახან დაფარდება სურათით → დაადე z-index */
.carousel .nav{
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px; border: none; border-radius: 50%;
    background: rgba(255,255,255,.95); box-shadow: 0 1px 4px rgba(0,0,0,.2);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; line-height: 1;
    z-index: 1;                           /* + */
}
.carousel .nav-left{ left: 8px; } .carousel .nav-right{ right: 8px; }
.carousel .nav:active{ transform: translateY(-50%) scale(.96); }

/* კიბოარდ-ნავიგაციისთვის სასურველია :focus-visible */
.carousel .nav:focus-visible{
    outline: 2px solid #4c9ffe;           /* + */
    outline-offset: 2px;
}

/* დოტები OK — ცოტათი თვალში საცემობა */
.carousel_dots{
    position: absolute; left: 0; right: 0; bottom: 8px;
    display: flex; gap: 6px; justify-content: center;
}
.carousel_dots button{
    width: 8px; height: 8px; border-radius: 50%; border: none; opacity: .5;
    cursor: pointer; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.carousel_dots button.active{
    opacity: 1;
    transform: scale(1.15);               /* + ოდნავ გამოკვეთა */
}

.nav.nav--hidden{
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}


