/*** Core CSS  ***/
/*** A. Aksaylı standards ***/


/*** STANDARD OVERWRITES ***/

* {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

.auto-margin {
    margin: 0 auto !important;
}

/*
body::-webkit-scrollbar,
#rightFrame::-webkit-scrollbar {
    display: none;
}
*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* COMMON CLASSES */
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
    max-width: calc(100% - calc(10 * var(--cf))) !important;
    padding-right: calc(10 * var(--cf));
}
.two-row-ellipsis {
    background-color: transparent;
    height: fit-content !important;
    justify-content: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    border: none;
}
.three-row-ellipsis {
    background-color: transparent;
    height: fit-content !important;
    justify-content: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    border: none;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;    
}

.addPointer {
    cursor: pointer;
}

* {
    --filter-white: invert(93%) sepia(100%) saturate(0%) hue-rotate(265deg) brightness(105%) contrast(108%);
}

/* KEYFRAMES */
.border-transition-variant-outline {
    animation: border-variant-outline 0.75s forwards ease-in;
    -webkit-animation: border-variant-outline 0.75s forwards ease-in;
    -moz-animation: border-variant-outline 0.75s forwards ease-in;
    -o-animation: border-variant-outline 0.75s forwards ease-in;
}
.border-transition-outline-variant {
    animation: border-outline-variant 0.75s forwards ease-in;    
    -webkit-animation: border-outline-variant 0.75s forwards ease-in;
    -moz-animation: border-outline-variant 0.75s forwards ease-in;
    -o-animation: border-outline-variant 0.75s forwards ease-in;
}
@keyframes border-variant-outline {
    0% { border-color: var(--outline-variant); }    
    100% { border-color: var(--outline); }
}
@keyframes border-outline-variant {
    0% { border-color: var(--outline); }
    80% { border-color: var(--outline-variant); }
}

.blink {
    animation: blink 0.5s step-start 0s infinite;
    -webkit-animation: blink 0.5s step-start 0s infinite;
}
@keyframes blink { 50% { opacity: 0.0; } }
@-webkit-keyframes blink { 50% { opacity: 0.0; } }


.scale-up-center {
	-webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.scale-down-center {
	-webkit-animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
  }

  @-webkit-keyframes scale-down-center {
    0% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-down-center {
    0% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }


/* BOOTSTRAP OVERWRITES */
.container-fluid { padding: 0; }
.row, .col { margin: 0; padding: 0; }
.row { width: 100% !important; }
.col, .col-1, .col-10, .col-11, .col-12, 
.col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, 
.col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, 
.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
.col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, 
.col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, 
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, 
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, 
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, 
.col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, 
.col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, 
.col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding: 0;
}

.fdColumn { flex-direction: column; }
.fdRow { flex-direction: row; }

.col-5P {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

/* BOOTSTRAP CLASSES */

.centerFlex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.startFlex {
    display: flex;
    justify-content: left;
    align-items: center;
}

.endFlex {
    display: flex;
    justify-content: end;
    align-items: center;
}

.topLeftFlex {
    display: flex;
    justify-content: start;
}

.topRightFlex {
    display: flex;
    justify-content: end;
}

.bottomLeftFlex {
    display: flex;
    align-items: flex-end;
}

.centerLeftFlex {
    display: flex;
    justify-content: left;
    align-items: center;
}

.justify-content-left {
    justify-content: left;
}

/* Bootstrap Responsive */
.flexCol {
    width: calc(var(--fixed) * var(--cf));
    max-width: calc(var(--fixed) * var(--cf));
    min-width: calc(var(--fixed) * var(--cf));
}
@media screen and (max-width: 576px) {
    .flexCol {
        width: unset;
        max-width: unset;
        min-width: unset;
    }
}

.border { border: 1px solid !important; }
.bt { border-top: 1px solid !important; }
.bb { border-bottom: 1px solid !important; }
.bl { border-left: 1px solid !important; }
.br { border-right: 1px solid !important; }
.bh { border-left: 1px solid; border-right: 1px solid !important; }
.bv { border-top: 1px solid; border-bottom: 1px solid !important; }
.ba { border: 1px solid !important }

