@charset "UTF-8";
/*
    * Aves ajans
    * Telephone - 0 850 307 99 51
    * Author - Serkan MUTU
    * Web - www.aves.com.tr
    * Style CSS - 2024
    * Version 2.0.1
    * Licensed under MIT

*/

/* 1 - IMPORT CSS FILE
***************************************************************************************************************/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* 2 - GENERAL DEFINITIONS
***************************************************************************************************************/
* {
    scrollbar-width: thin;
    scrollbar-color: red;
}
* i{
color: var(--bs-master);
}
*:focus {
outline: none !important;
}
html,
body {
/* scroll-behavior: smooth !important; */
height: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px !important;
    font-weight: 400;
}
ul{
    padding-left: 0 !important;
}
ul,li{
    list-style: none;
}
.cur-p{
    cursor: pointer;
}
main {
    position:relative;
    display: block;
    width: 100%;
    min-height: 100%;
    height: 100%;
}
main .wrapper {
    display: block;
    min-height:100%;
    height:100%;
    height:auto;
}
.hide{
    visibility:hidden
}
.show {
    display: block;
    visibility: visible;
}

.ellipsis {
white-space: nowrap; /* Metni tek satırda tutar */
overflow: hidden; /* Taşan kısmı gizler */
text-overflow: ellipsis; /* Sonuna üç nokta ekler */
width: 100%; /* Genişliği ihtiyaçlarınıza göre ayarlayabilirsiniz */
}

/* 4 - SCROLLBAR
***************************************************************************************************************/
::-webkit-scrollbar { width: 5px;}
::-webkit-scrollbar-track {background: #f1f1f1;border-radius: 5px; }
::-webkit-scrollbar-thumb {background: var(--bs-master); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover {background: #555;}