﻿/*loader*/
.myloader {
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 1;
    background: #fff;
}
    .myloader .cssload-speeding-wheel {
        position: absolute;
        top: calc(50% - 3.5px);
        left: calc(50% - 3.5px);
    }

/*.myloader{
  position: relative;
  margin: 0 auto;
  width: 100px;
}*/
/*.myloader:before{
    content: '';
    display: block;
    padding-top: 100%;
}*/
.mycircular {
  animation: rotate 2s linear infinite;
  height: 50px;
  transform-origin: center center;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.mypath {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #34708a;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }

#main {
    margin-top: 60px;
    /*padding-bottom: 60px;*/
}

#myBtn {
/*    height: 50px;
    width: 50px;
*/    
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 5px; /* Place the button at the bottom of the page */
    right: 5px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px; /*Some padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

    #myBtn:hover {
        background-color: #ff6a00; /* Add a dark-grey background on hover */
    }

.custom-font, .dx-field-item-label-text, .dx-field-label {
    font-family: Raleway,Questrial;
    /*font-weight:900;*/
    font-size: 13px;
    /*color: #000000;*/
    /*color:#ededed*/
}

.center-v {
    margin-top: 15px;
}

/*.botton-divider{
    border-bottom: 2px solid rgba(85, 149, 222, 0.20)!important;
    margin-bottom:2px;
}*/

/*DEV*/
.dx-popup-title {
    /*background: #2cabe3;
    color: #fff;*/
    color: #2cabe3;
    border-bottom: inset #2cabe3 2px;
    font-weight: bold;
    font-family: Raleway,Questrial;
    font-size: 13px;
}

/*.dx-scrollable-scroll {
    width: 30px;
    border-radius: 10px;
}

.dx-scrollable-scroll-content {
    background-color: #2cabe3 !important;
}*/

        /*.bg-column {
            background: rgba(85, 149, 222, 0.20);
        }*/

/*.dx-datagrid, .dx-treeview-node,.dx-widget input,.dx-menu-item-text{
    font-family: Raleway,Questrial;
    font-size: 13px;
}

.dx-datagrid-header-panel {
    padding: 2px;
        background-color: transparent;
    color: #ffffff;
}

.dx-datagrid-header-panel .dx-toolbar {
    margin: 0;
    padding-right: 20px;
    background-color: transparent;
    color: #ffffff;
}

.dx-datagrid-header-panel .dx-toolbar-items-container  {
    height: 40px;
}*/
.dx-datagrid, .dx-treeview-node, .dx-widget input, .dx-menu-item-text {
    font-family: Raleway,Questrial;
    /*font-weight: 400;*/
    /*font-weight: 300;*/
    font-size: 13px;
}

/*.dx-datagrid-header-panel {
    padding: 0;
    background-color: #2cabe3;
}

.dx-datagrid-header-panel .dx-toolbar {
    margin: 0;
    padding-right: 20px;
    background-color: transparent;
    color: #ffffff;
}

.dx-datagrid-header-panel .dx-toolbar-items-container  {
    height: 40px;
}*/

.custom-dx-toolbar  {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #2cabe3;
    color: #ffffff;
}

.custom-left-divider{
    border-left-style:solid;
    border-left-color:#e5e5e5;
    border-left-width:5px;
    padding-left:3px
}
.custom-top-divider{
    border-top-style:solid;
    border-top-color:#e5e5e5;
    border-top-width:5px;
    padding-top:3px
}
/*.dx-menu-base .dx-menu-item .dx-menu-item-content {
    white-space: nowrap;
    height: 100%;
    width: 100%;
    color: #9e1717;
}*/

/*.dx-menu-item {
    color: #ffffff;
}
.dx-context-menu .dx-menu-item {
    color: #000000;
}
.dx-menu-item-expanded .dx-menu-item  {
    color: #000000;
}*/

.Khselect span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.Khselect span:after {
  /*content: '\00bb';*/
  position: absolute;
  opacity: 0;
  top: 0;
  right: -10px;
  transition: 0.5s;
}

.Khselect:hover span {
  /*padding-right: 25px;*/
  padding-right: 15px;
}

.Khselect:hover span:after {
  opacity: 1;
  right: 0;
}

.div-divider {
    margin: 2px 0;
    height: 1px;
    background: rgba(120,130,140,.13);
}

.note {
    font-size: 10pt;
    color: #484848;
    margin-left: 9px;
}

.note > span {
    font-weight: 700
}

