@charset "UTF-8";
/* CSS Document */
/*html { text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important;}*/
body {
  height: 100%;
  width: 100%;
}
/* CORE LAYOUT STANDART STYLES ********************************************************************************************************** */
a,
div,
span,
input,
textarea,
li,
strong,
button {
  outline: none;
  text-decoration: none;
  /* this removes gray outline from ios safari a tags */
  /* this removes action panels from ios safari a tags */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
img {
  border: none;
  border: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px !important;
}
.ClearBoth {
  clear: both;
}
.CursPointer {
  cursor: pointer;
}
/*visibilities according to the platform*/
.ShowOnMobile {
  display: none;
}
.ShowOnDesktop {
  display: inherit;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
/* make auto of element width and/or height attribute on mobile devices with media queries */
/* for responsive mode - if you want any ContainerX element has a responsive fluid abilities with media queries you must add this class to your element*/
/* Text Decoration */
.Underline {
  text-decoration: underline;
}
/* Making Unselectable Contents */
.Unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* for on iphone safari inputs shadow problem */
input[type="text"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* Display */
.DispBlock {
  display: block;
}
.DispTable {
  display: table;
  vertical-align: middle;
}
.DispTableCell {
  display: table-cell;
  vertical-align: middle;
}
.DispNone {
  display: none;
}
.DispInlBlock {
  display: inline-block;
}
/* Position */
.PosFixed {
  position: fixed;
}
.PosAbsolute {
  position: absolute;
}
.PosRelative {
  position: relative;
}
.PosStatic {
  position: static;
}
.PosSticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}
/* Floating */
.Fleft {
  float: left;
}
.Fright {
  float: right;
}
.Fnone {
  float: none !important;
}
/* Flex */
.Flex {
  display: flex;
}
.Fdr {
  flex-direction: row;
}
.Fdc {
  flex-direction: column;
}
.Fdrr {
  flex-direction: row-reverse;
}
.Fdcr {
  flex-direction: column-reverse;
}
.Ff11a {
  flex: 1 1 auto;
}
.Ff01a {
  flex: 0 1 auto;
}
.Ff10a {
  flex: 1 0 auto;
}
.Ff00a {
  flex: 0 0 auto;
}
.Fjsc {
  justify-content: center;
}
.Fjsl {
  justify-content: left;
}
.Fjsr {
  justify-content: right;
}
.Faic {
  align-items: center;
}
.Fail {
  align-items: left;
}
.Fair {
  align-items: right;
}
/* Overflows */
.OvHidden {
  overflow: hidden;
}
.OvScroll {
  overflow: scroll;
}
.OvAuto {
  overflow: auto;
}
.OvVisible {
  overflow: visible;
}
.OvXScroll {
  overflow-x: scroll;
}
.OvYScroll {
  overflow-y: scroll;
}
.OvXHidden {
  overflow-x: hidden;
}
.OvYHidden {
  overflow-y: hidden;
}
/* Empty Boxes */
.EmptyBox5 {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
}
.EmptyBox10 {
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
}
.EmptyBox20 {
  display: block;
  width: 100%;
  height: 20px;
  overflow: hidden;
}
.EmptyBox30 {
  display: block;
  width: 100%;
  height: 30px;
  overflow: hidden;
}
.EmptyBox40 {
  display: block;
  width: 100%;
  height: 40px;
  overflow: hidden;
}
.EmptyBox50 {
  display: block;
  width: 100%;
  height: 50px;
  overflow: hidden;
}
.EmptyBox60 {
  display: block;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
.EmptyBox70 {
  display: block;
  width: 100%;
  height: 70px;
  overflow: hidden;
}
.EmptyBox80 {
  display: block;
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.EmptyBox90 {
  display: block;
  width: 100%;
  height: 90px;
  overflow: hidden;
}
.EmptyBox100 {
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.EmptyBox110 {
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.EmptyBox120 {
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.EmptyBox130 {
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.EmptyBox140 {
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.EmptyBox150 {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
/* Opacity */
.Opac100 {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
}
.Opac95 {
  opacity: 0.95;
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
}
.Opac90 {
  opacity: 0.9;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
}
.Opac80 {
  opacity: 0.8;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
}
.Opac70 {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}
.Opac60 {
  opacity: 0.6;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
}
.Opac50 {
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
}
.Opac40 {
  opacity: 0.4;
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
}
.Opac30 {
  opacity: 0.3;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
}
.Opac20 {
  opacity: 0.2;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
}
.Opac10 {
  opacity: 0.1;
  -webkit-opacity: 0.1;
  -moz-opacity: 0.1;
}
.OpacZero {
  opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
}
/* Border Radius */
.BordRad3 {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.BordRad4 {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}
.BordRad5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.BordRad10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.BordRad15 {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}
.BordRadHalf {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.BordRight {
  border-right: solid 1px transparent;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.BordLeft {
  border-left: solid 1px transparent;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.BordTop {
  border-top: solid 1px transparent;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.BordBottom {
  border-top: solid 1px transparent;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.BordAll {
  border: solid 1px transparent;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* Width Fix*/
.Widfx900 {
  width: 900px !important;
}
.Widfx800 {
  width: 800px !important;
}
.Widfx700 {
  width: 700px !important;
}
.Widfx600 {
  width: 600px !important;
}
.Widfx500 {
  width: 500px !important;
}
.Widfx400 {
  width: 400px !important;
}
.Widfx350 {
  width: 350px !important;
}
.Widfx300 {
  width: 300px !important;
}
.Widfx240 {
  width: 240px !important;
}
.Widfx200 {
  width: 200px !important;
}
.Widfx190 {
  width: 190px !important;
}
.Widfx180 {
  width: 180px !important;
}
.Widfx170 {
  width: 170px !important;
}
.Widfx160 {
  width: 160px !important;
}
.Widfx150 {
  width: 150px !important;
}
.Widfx140 {
  width: 140px !important;
}
.Widfx130 {
  width: 130px !important;
}
.Widfx120 {
  width: 120px !important;
}
.Widfx110 {
  width: 110px !important;
}
.Widfx100 {
  width: 100px !important;
}
.Widfx90 {
  width: 90px !important;
}
.Widfx80 {
  width: 80px !important;
}
.Widfx70 {
  width: 70px !important;
}
.Widfx60 {
  width: 60px !important;
}
.Widfx50 {
  width: 50px !important;
}
.Widfx45 {
  width: 45px !important;
}
.Widfx40 {
  width: 40px !important;
}
.Widfx30 {
  width: 30px !important;
}
.Widfx20 {
  width: 20px !important;
}
.Widfx10 {
  width: 10px !important;
}
/* Width */
.Wid100 {
  width: 100%;
}
.Wid90 {
  width: 90%;
}
.Wid80 {
  width: 80%;
}
.Wid70 {
  width: 70%;
}
.Wid60 {
  width: 60%;
}
.Wid50 {
  width: 50%;
}
.Wid45 {
  width: 45%;
}
.Wid40 {
  width: 40%;
}
.Wid30 {
  width: 30%;
}
/* Width Special Values */
.Wid33 {
  width: 33.3%;
}
.Wid25 {
  width: 25%;
}
.Wid20 {
  width: 20%;
}
.Wid15 {
  width: 15%;
}
.Wid10 {
  width: 10%;
}
.MaxWid500 {
  max-width: 500px;
}
/* Height */
.Hei100 {
  height: 100%;
}
.Hei90 {
  height: 90%;
}
.Hei80 {
  height: 80%;
}
.Hei70 {
  height: 70%;
}
.Hei60 {
  height: 60%;
}
.Hei40 {
  height: 40%;
}
.Hei50 {
  height: 50%;
}
.Hei30 {
  height: 30%;
}
.Hei20 {
  height: 20%;
}
.Hei10 {
  height: 10%;
}
.HeiP8 {
  height: 8px;
}
.HeiP30 {
  height: 30px;
}
/* Margins */
.Mar5 {
  margin: 5px;
}
.Mar10 {
  margin: 10px;
}
.MarTopPerc5 {
  margin-top: 5%;
}
.MarTopPerc10 {
  margin-top: 10%;
}
.MarTopPerc20 {
  margin-top: 20%;
}
.MarTopPerc30 {
  margin-top: 30%;
}
.MarTopPerc40 {
  margin-top: 40%;
}
.MarTopPerc50 {
  margin-top: 50%;
}
.MarAuto {
  margin: auto !important;
}
.MarTop5 {
  margin-top: 5px;
}
.MarTop10 {
  margin-top: 10px;
}
.MarTop20 {
  margin-top: 20px;
}
.MarTop30 {
  margin-top: 30px;
}
.MarTop40 {
  margin-top: 40px;
}
.MarTop50 {
  margin-top: 50px;
}
.MarTopQuarter {
  margin-top: 25%;
}
.MarTopHalf {
  margin-top: 50%;
}
.MarBot2 {
  margin-bottom: 2px;
}
.MarBot5 {
  margin-bottom: 5px;
}
.MarBot10 {
  margin-bottom: 10px;
}
.MarRight5 {
  margin-right: 5px;
}
.MarRight10 {
  margin-right: 10px;
}
.MarRight20 {
  margin-right: 20px;
}
.MarRight10Imp {
  margin-right: 10px !important;
}
.MarRight20Imp {
  margin-right: 20px !important;
}
/* Paddings */
.PaddingTopPercent10 {
  padding-top: 10%;
}
.PaddingRight10 {
  padding-right: 10px;
}
.PaddingRight15 {
  padding-right: 15px;
}
.PaddingRight20 {
  padding-right: 20px;
}
/* Containers */
.Container100 {
  width: 100%;
  float: left;
}
.Container96 {
  width: 96%;
  float: left;
}
.Container90 {
  width: 90%;
  float: left;
}
.Container85 {
  width: 85%;
  float: left;
}
.Container80 {
  width: 80%;
  float: left;
}
.Container75 {
  width: 75%;
  float: left;
}
.Container70 {
  width: 70%;
  float: left;
}
.Container66 {
  width: 66.66%;
  float: left;
}
.Container60 {
  width: 60%;
  float: left;
}
.Container50 {
  width: 50%;
  float: left;
}
.Container45 {
  width: 45%;
  float: left;
}
.Container40 {
  width: 40%;
  float: left;
}
.Container35 {
  width: 35%;
  float: left;
}
.Container33 {
  width: 33.33%;
  float: left;
}
.Container30 {
  width: 30%;
  float: left;
}
.Container25 {
  width: 25%;
  float: left;
}
.Container20 {
  width: 20%;
  float: left;
}
.Container10 {
  width: 10%;
  float: left;
}
.Container15 {
  width: 15%;
  float: left;
}
.Container5 {
  width: 5%;
  float: left;
}
.ContainerIndent {
  display: block;
  margin: 0px auto;
  padding: 10px;
}
.ContainerIndent0 {
  display: block;
  margin: 0px auto;
  padding: 5px 10px;
}
/* Text Aligns */
.TexAlCenter {
  text-align: center;
}
.TexAlLeft {
  text-align: left;
}
.TexAlRight {
  text-align: right !important;
}
/* Padding With Transparent Border*/
.PadWithBorder1 {
  border: solid 1px transparent;
}
.PadWithBorder2 {
  border: solid 2px black;
}
.PadWithBorder3 {
  border: solid 3px transparent;
}
.PadWithBorder4 {
  border: solid 4px transparent;
}
.PadWithBorder5 {
  border: solid 5px transparent;
}
.PadWithBorder10 {
  border: solid 10px transparent;
}
/* Box Sizing */
.BoxSizeContent {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}
.BoxSizeBorder {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* Font Sizes */
.Fs8 {
  font-size: 8px !important;
}
.Fs9 {
  font-size: 9px !important;
}
.Fs10 {
  font-size: 10px !important;
}
.Fs11 {
  font-size: 11px !important;
}
.Fs12 {
  font-size: 12px !important;
}
.Fs13 {
  font-size: 13px !important;
}
.Fs14 {
  font-size: 14px !important;
}
.Fs15 {
  font-size: 15px !important;
}
.Fs16 {
  font-size: 16px !important;
}
.Fs17 {
  font-size: 17px !important;
}
.Fs18 {
  font-size: 18px !important;
}
.Fs19 {
  font-size: 19px !important;
}
.Fs20 {
  font-size: 20px !important;
}
.Fs21 {
  font-size: 21px !important;
}
.Fs22 {
  font-size: 22px !important;
}
.Fs23 {
  font-size: 23px !important;
}
.Fs24 {
  font-size: 24px !important;
}
.Fs25 {
  font-size: 25px !important;
}
.Fs26 {
  font-size: 26px !important;
}
.Fs27 {
  font-size: 27px !important;
}
.Fs28 {
  font-size: 28px !important;
}
.Fs29 {
  font-size: 29px !important;
}
.Fs30 {
  font-size: 30px !important;
}
.Fs40 {
  font-size: 40px !important;
}
.Fs50 {
  font-size: 50px !important;
}
.Fs60 {
  font-size: 60px !important;
}
.Fs80 {
  font-size: 80px !important;
}
.Fs100 {
  font-size: 100px !important;
}
.Fs130 {
  font-size: 130px !important;
}
/* Font Type */
.FontBold {
  font-weight: bold;
}
.FontLight {
  font-weight: lighter;
}
.FontNormal {
  font-weight: normal;
}
/* Animated */
.Animated03 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.Animated05 {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Animated1 {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.Drtl {
  direction: rtl;
}
.Dltr {
  direction: ltr;
}
/******************************************************************************************************************************** */
/* MEDIA QUERIES FOR CORE LAYOUT **************************************************************************************************************** */
/* Large desktop */
@media (min-width: 960px) {
  /*visibilities according to the platform*/
  .ShowOnMobile {
    display: none;
    opacity: 0;
  }
  .ShowOnDesktop {
    display: inherit;
    opacity: 1;
  }
}
@media (min-width: 960px) and (max-width: 1200px) {
  /* responsive support */
  .Responsive {
    width: 33.3%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive50 {
    width: 50%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive100 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  /* make auto of element width attribute on mobile devices with media queries */
  .WidAutoOnMobile {
    width: auto !important;
  }
  .HeiAutoOnMobile {
    height: auto !important;
    min-height: 50px !important;
  }
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 640px) and (max-width: 960px) {
  /*visibilities according to the platform*/
  .ShowOnMobile {
    display: inherit;
    opacity: 1;
  }
  .ShowOnDesktop {
    display: none;
    opacity: 0;
  }
  .FloatNoneOnMobile {
    float: none !important;
  }
  /* responsive support */
  .Responsive {
    width: 50%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive50 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive100 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .ContainerIndent {
    padding: 5px;
  }
  /* make auto of element width attribute on mobile devices with media queries */
  .WidAutoOnMobile {
    width: auto !important;
  }
  .HeiAutoOnMobile {
    height: auto !important;
    min-height: 50px !important;
  }
  /* font size resetting for responsive modes */
  .Fs8 {
    font-size: 8px !important;
  }
  .Fs9 {
    font-size: 8px !important;
  }
  .Fs10 {
    font-size: 10px !important;
  }
  .Fs11 {
    font-size: 10px !important;
  }
  .Fs12 {
    font-size: 12px !important;
  }
  .Fs13 {
    font-size: 12px !important;
  }
  .Fs14 {
    font-size: 13px !important;
  }
  .Fs15 {
    font-size: 14px !important;
  }
  .Fs16 {
    font-size: 15px !important;
  }
  .Fs17 {
    font-size: 16px !important;
  }
  .Fs18 {
    font-size: 16px !important;
  }
  .Fs19 {
    font-size: 16px !important;
  }
  .Fs20 {
    font-size: 18px !important;
  }
  .Fs21 {
    font-size: 18px !important;
  }
  .Fs22 {
    font-size: 20px !important;
  }
  .Fs23 {
    font-size: 20px !important;
  }
  .Fs24 {
    font-size: 22px !important;
  }
  .Fs25 {
    font-size: 22px !important;
  }
  .Fs26 {
    font-size: 24px !important;
  }
  .Fs27 {
    font-size: 24px !important;
  }
  .Fs28 {
    font-size: 26px !important;
  }
  .Fs29 {
    font-size: 26px !important;
  }
  .Fs30 {
    font-size: 28px !important;
  }
  .Fs40 {
    font-size: 30px !important;
  }
  .Fs50 {
    font-size: 35px !important;
  }
  .Fs60 {
    font-size: 40px !important;
  }
  .Fs80 {
    font-size: 54px !important;
  }
  .Fs100 {
    font-size: 60px !important;
  }
  .Fs130 {
    font-size: 70px !important;
  }
}
/* Landscape phone to portrait tablet */
@media (min-width: 480px) and (max-width: 640px) {
  /*visibilities according to the platform*/
  .ShowOnMobile {
    display: inherit;
    opacity: 1;
  }
  .ShowOnDesktop {
    display: none;
    opacity: 0;
  }
  .FloatNoneOnMobile {
    float: none !important;
  }
  /* responsive support */
  .Responsive {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive50 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive100 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .ContainerIndent {
    padding: 5px;
  }
  /* make auto of element width attribute on mobile devices with media queries */
  .WidAutoOnMobile {
    width: auto !important;
  }
  .HeiAutoOnMobile {
    height: auto !important;
    min-height: 50px !important;
  }
  /* font size resetting for responsive modes */
  .Fs8 {
    font-size: 8px !important;
  }
  .Fs9 {
    font-size: 8px !important;
  }
  .Fs10 {
    font-size: 10px !important;
  }
  .Fs11 {
    font-size: 10px !important;
  }
  .Fs12 {
    font-size: 12px !important;
  }
  .Fs13 {
    font-size: 12px !important;
  }
  .Fs14 {
    font-size: 13px !important;
  }
  .Fs15 {
    font-size: 13px !important;
  }
  .Fs16 {
    font-size: 13px !important;
  }
  .Fs17 {
    font-size: 14px !important;
  }
  .Fs18 {
    font-size: 15px !important;
  }
  .Fs19 {
    font-size: 17px !important;
  }
  .Fs20 {
    font-size: 17px !important;
  }
  .Fs21 {
    font-size: 18px !important;
  }
  .Fs22 {
    font-size: 18px !important;
  }
  .Fs23 {
    font-size: 20px !important;
  }
  .Fs24 {
    font-size: 21px !important;
  }
  .Fs25 {
    font-size: 22px !important;
  }
  .Fs26 {
    font-size: 23px !important;
  }
  .Fs27 {
    font-size: 23px !important;
  }
  .Fs28 {
    font-size: 25px !important;
  }
  .Fs29 {
    font-size: 25px !important;
  }
  .Fs30 {
    font-size: 26px !important;
  }
  .Fs40 {
    font-size: 30px !important;
  }
  .Fs50 {
    font-size: 32px !important;
  }
  .Fs60 {
    font-size: 35px !important;
  }
  .Fs80 {
    font-size: 38px !important;
  }
  .Fs100 {
    font-size: 40px !important;
  }
  .Fs130 {
    font-size: 50px !important;
  }
}
/* Portrait phones and down */
@media (min-width: 320px) and (max-width: 480px) {
  /*visibilities according to the platform*/
  .ShowOnMobile {
    display: inherit;
    opacity: 1;
  }
  .ShowOnDesktop {
    display: none;
    opacity: 0;
  }
  .FloatNoneOnMobile {
    float: none !important;
  }
  /* responsive support */
  .Responsive {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive50 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .Responsive100 {
    width: 100%;
    float: left;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .ContainerIndent {
    padding: 5px;
  }
  /* make auto of element width attribute on mobile devices with media queries */
  .WidAutoOnMobile {
    width: auto !important;
  }
  .HeiAutoOnMobile {
    height: auto !important;
  }
  /* font size resetting for responsive modes */
  .Fs8 {
    font-size: 8px !important;
  }
  .Fs9 {
    font-size: 8px !important;
  }
  .Fs10 {
    font-size: 10px !important;
  }
  .Fs11 {
    font-size: 10px !important;
  }
  .Fs12 {
    font-size: 12px !important;
  }
  .Fs13 {
    font-size: 12px !important;
  }
  .Fs14 {
    font-size: 13px !important;
  }
  .Fs15 {
    font-size: 13px !important;
  }
  .Fs16 {
    font-size: 13px !important;
  }
  .Fs17 {
    font-size: 14px !important;
  }
  .Fs18 {
    font-size: 15px !important;
  }
  .Fs19 {
    font-size: 17px !important;
  }
  .Fs20 {
    font-size: 17px !important;
  }
  .Fs21 {
    font-size: 18px !important;
  }
  .Fs22 {
    font-size: 18px !important;
  }
  .Fs23 {
    font-size: 20px !important;
  }
  .Fs24 {
    font-size: 21px !important;
  }
  .Fs25 {
    font-size: 22px !important;
  }
  .Fs26 {
    font-size: 23px !important;
  }
  .Fs27 {
    font-size: 23px !important;
  }
  .Fs28 {
    font-size: 25px !important;
  }
  .Fs29 {
    font-size: 25px !important;
  }
  .Fs30 {
    font-size: 25px !important;
  }
  .Fs40 {
    font-size: 28px !important;
  }
  .Fs50 {
    font-size: 30px !important;
  }
  .Fs60 {
    font-size: 32px !important;
  }
  .Fs80 {
    font-size: 34px !important;
  }
  .Fs100 {
    font-size: 35px !important;
  }
  .Fs130 {
    font-size: 40px !important;
  }
}
/* clearfix for Container */
.Container:before,
.Container:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.Container:after {
  clear: both;
}
/*
@background_color: #929292; //Фоновый цвет
@color_1: #5d5f5d; // Темно-серый
@color_2: #ebebeb; // Светло-серый
@color_3: #f36f1d; // Ораньжевый
@color_4: #afadad; // Темно-серый 2
@radius: 4px;
@border1: 1px solid black;
@border2 : 1px solid @color_4;
@ffAll: 'Arimo', serif;
*/
/**
 * Переключаемая боковая панель навигации
 * выдвигающаяся по клику слева
 */
/*
 * Скрытый чекбокс (флажок)
 * невидим и недоступен :)
 * имя селектора атрибут флажка
 */
[id='nav-toggle'] {
  position: absolute;
  display: none;
  /**
 * изменение положения переключателя 
 * при просмотре на мобильных устройствах
 * когда навигация раскрыта, распологаем внутри панели
*/
  /*
 * Когда флажок установлен, открывается панель
 * используем псевдокласс:checked
 */
  /*
  &:checked ~ .nav {
      left: 0;
      box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
      -moz-box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
      -webkit-box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
      overflow-y: auto;
  }
*/
  /* 
 * смещение контента страницы
 * на размер ширины панели,
 * фишка необязательная, на любителя
*/
  /*
 * изменение символа переключателя,
 * привычный крестик (MULTIPLICATION X), 
 * вы можете испльзовать любой другой значок
*/
  /*
  &:checked ~ .nav > .nav-toggle:after {
      content: '\2715';
  }
*/
}
[id='nav-toggle']:checked ~ .nav {
  left: 0;
  box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
[id='nav-toggle']:checked ~ .nav > .nav-toggle {
  left: auto;
  right: 2px;
  top: 0.2em;
}
[id='nav-toggle']:checked ~ main > article {
  -webkit-transform: translateX(200px);
  -moz-transform: translateX(200px);
  transform: translateX(200px);
  width: calc(100% - 200px);
}
[id='nav-toggle']:checked ~ .nav > ul > li {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.nav {
  /*  ширна произвольная, не стесняйтесь экспериментировать */
  width: 200px;
  min-width: 200px;
  /* фиксируем и выставляем высоту панели на максимум */
  position: fixed;
  top: 70px;
  bottom: 0;
  margin: 0;
  /* сдвигаем (прячем) панель относительно левого края страницы */
  left: -200px;
  /* внутренние отступы */
  padding: 15px 20px;
  /* плавный переход смещения панели */
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  transition: left 0.3s;
  /* определяем цвет фона панели */
  background: #afaba7;
  /* поверх других элементов */
  z-index: 2000;
  /**
 * Кнопка переключения панели
 * тег <label>
 */
}
.nav .nav-toggle {
  /* абсолютно позиционируем */
  position: absolute;
  /* относительно левого края панели */
  left: 200px;
  /* отступ от верхнего края панели */
  top: 0.2em;
  /* внутренние отступы */
  padding: 0.5em;
  /* определяем цвет фона переключателя
     * чаще вчего в соответствии с цветом фона панели
    */
  background: inherit;
  /* цвет текста */
  color: #dadada;
  /* вид курсора */
  cursor: pointer;
  /* размер шрифта */
  font-size: 1.2em;
  line-height: 1;
  /* всегда поверх других элементов страницы */
  z-index: 2001;
  /* анимируем цвет текста при наведении */
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
  /* определяем текст кнопки 
 * символ Unicode (TRIGRAM FOR HEAVEN)
*/
  /* цвет текста при наведении */
}
.nav .nav-toggle:after {
  content: '\2630';
  text-decoration: none;
}
.nav .nav-toggle:hover {
  color: #f4f4f4;
}
.nav .sidebar-menu-header > span {
  overflow: hidden;
  text-overflow: clip;
  text-transform: uppercase;
  padding: 2px 5px 2px 0px;
  font-size: 12px;
  display: block;
  cursor: pointer;
}
.nav .sidebar-menu-header > ul > li span {
  position: absolute;
  right: 5px;
  top: 4px;
}
.nav .sidebar-menu-header > ul > li > a {
  display: inline-block;
  position: relative;
  padding: 0;
  font-weight: 300;
  font-size: 1.2em;
  background: #f5f5f5;
  color: #5d5f5d;
  width: 100%;
  text-decoration: none;
  /* плавный переход */
  -webkit-transition: color 0.5s ease, padding 0.5s ease;
  -moz-transition: color 0.5s ease, padding 0.5s ease;
  transition: color 0.5s ease, padding 0.5s ease;
  /**
         * состояние ссылок меню при наведении
         */
  /**
           * линия подчеркивания ссылок меню
           */
  /**
           * анимируем линию подчеркивания 
           * ссылок при наведении
           */
}
.nav .sidebar-menu-header > ul > li > a:hover,
.nav .sidebar-menu-header > ul > li > a:focus {
  color: #f36f1d;
  padding-left: 15px;
}
.nav .sidebar-menu-header > ul > li > a:before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  -webkit-transition: width 0s ease;
  transition: width 0s ease;
}
.nav .sidebar-menu-header > ul > li > a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #f36f1d;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.nav .sidebar-menu-header > ul > li > a:hover:before {
  width: 0%;
  background: #f36f1d;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.nav .sidebar-menu-header > ul > li > a:hover:after {
  width: 0%;
  background: transparent;
  -webkit-transition: width 0s ease;
  transition: width 0s ease;
}
.nav .sidebar-menu-header .sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav .sidebar-menu-header .sidebar-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.nav .sidebar-menu-header .sidebar-menu > li a {
  padding: 0px 0px 0px 15px;
  display: block;
  font-size: 14px;
}
.nav .sidebar-menu-header .sidebar-menu > li .hover {
  color: #f5f5f5;
  padding-left: 15px;
  background: #f36f1d;
  font-weight: 600;
}
.nav .sidebar-menu-header .sidebar-menu2 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav .sidebar-menu-header .sidebar-menu2 > li {
  position: relative;
  margin: 0 -10px 0 15px;
  padding: 0;
}
.nav .sidebar-menu-header .sidebar-menu2 > li a {
  position: relative;
  padding: 0px 0px 0px 15px;
  display: block;
  font-size: 12px;
  border-bottom: 1px solid #000000;
  background: #f5f5f5;
  color: #5d5f5d;
  text-decoration: none;
  cursor: pointer;
}
.nav .sidebar-menu-header .sidebar-menu2 > li a span {
  position: absolute;
  display: block;
  top: 1px;
  right: 10px;
  z-index: 1;
  font-weight: 600;
}
.nav .sidebar-menu-header .sidebar-menu2 > li a:hover {
  color: #f36f1d;
  border-color: #f36f1d;
}
.nav .sidebar-menu-header .sidebar-menu2 > li .hover {
  color: #f36f1d;
  padding-left: 15px;
  background: #f5f5f5;
  font-weight: 600;
}
.nav .sidebar-menu-header .sidebar-menu2 > li .hover:hover {
  color: #f36f1d;
  background: #f5f5f5;
}
.nav > ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav > ul > li {
  line-height: 25px;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.5s 0.1s, -webkit-transform 0.5s 0.1s;
  -moz-transition: opacity 0.5s 0.1s, -moz-transform 0.5s 0.1s;
  -ms-transition: opacity 0.5s 0.1s, -ms-transform 0.5s 0.1s;
  transition: opacity 0.5s 0.1s, transform 0.5s 0.1s;
}
.nav > ul > li:nth-child(2) {
  -webkit-transition: opacity 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}
.nav > ul > li:nth-child(3) {
  -webkit-transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
}
.nav > ul > li:nth-child(4) {
  -webkit-transition: opacity 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  transition: opacity 0.5s 0.4s, transform 0.5s 0.4s;
}
.nav > ul > li:nth-child(5) {
  -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.5s 0.5s, transform 0.5s 0.5s;
}
.nav > ul > li:nth-child(6) {
  -webkit-transition: opacity 0.5s 0.6s, -webkit-transform 0.5s 0.6s;
  transition: opacity 0.5s 0.6s, transform 0.5s 0.6s;
}
.nav > ul > li:nth-child(7) {
  -webkit-transition: opacity 0.5s 0.7s, -webkit-transform 0.5s 0.7s;
  transition: opacity 0.5s 0.7s, transform 0.5s 0.7s;
}
/*
 * профиксим баг в Android <= 4.1.2
 * см: http://timpietrusky.com/advanced-checkbox-hack
 */
body {
  -webkit-animation: bugfix infinite 1s;
}
@-webkit-keyframes bugfix {
  to {
    padding: 0;
  }
}
/*
 * позаботьтимся о средних и маленьких экранах
 * мобильных устройств
 */
@media screen and (min-width: 320px) {
  html,
  body {
    margin: 0;
  }
}
@media screen and (max-width: 320px) {
  html,
  body {
    margin: 0;
  }
  .nav {
    width: 100%;
    box-shadow: none;
  }
}
@font-face {
  font-family: "Arimo";
  src: url("../Arimo/Arimo-Italic.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
.rightform {
  float: right;
}
* {
  font-family: 'roboto_condensedregular';
}
/*--------------------------------------------------------------------*/
/*--                        Общие стили кнопок                      --*/
/*--------------------------------------------------------------------*/
input::-webkit-input-placeholder {
  color: #5d5f5d;
}
input:-moz-placeholder {
  color: #5d5f5d;
}
input:-ms-input-placeholder {
  color: #5d5f5d;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}
.hover:hover {
  color: #f36f1d;
}
.edit-toggle {
  position: absolute;
  top: 27px;
  right: -30px;
  display: inline-block !important;
  padding: 0em 0.5em;
  background: inherit;
  color: #5d5f5d;
  cursor: pointer;
  font-size: 1.2em !important;
  line-height: 1em;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.edit-toggle:after {
  content: '\270E';
  text-decoration: none;
}
.edit-toggle:hover {
  color: #f36f1d;
}
.textarea_for_input {
  border: none;
  padding-right: 10px;
  height: 20px;
  max-width: 100px;
  box-sizing: border-box;
  color: inherit;
  font-size: inherit;
  text-align: right;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
input[type="checkbox"] + label:hover {
  color: #f36f1d;
}
input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}
input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #5d5f5d;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}
input[type="checkbox"]:checked + label:before {
  width: 5px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
input[type="radio"] + label:hover {
  color: #f36f1d;
}
input[type="radio"] + label:last-child {
  margin-bottom: 0;
}
input[type="radio"] + label:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #5d5f5d;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  /*
      -webkit-transition: all .12s, border-color .08s;
      transition: all .12s, border-color .08s;
*/
  border-radius: 8px;
}
input[type="radio"]:checked + label:before {
  left: -1px;
  content: "\2022";
  color: #f36f1d;
  font-size: 50px;
  line-height: 15px;
  border: 0;
}
/*--------------------------------------------------------------------*/
/*--                           file-list                            --*/
/*--------------------------------------------------------------------*/
.file-list h3 {
  padding-top: 3px;
  padding-left: 3px;
  color: #5d5f5d;
}
.file-list div {
  display: inline-block;
  position: relative;
  width: 125px;
  height: 125px;
  margin: 3px;
  border: 1px solid #aaa;
  text-align: center;
  vertical-align: top;
  word-wrap: break-word;
  font-size: 0.8em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}
.file-list div:hover {
  border-color: #f36f1d;
  background-color: #afaba7;
  color: #f5f5f5;
}
.file-list div:hover > span:last-child {
  background-color: #5d5f5d;
}
.file-list div > span {
  display: block;
}
.file-list div > span:first-child {
  margin: 15px 3px;
}
.file-list div > span:last-child {
  width: 100%;
  font-size: 0.7em;
  position: absolute;
  background: #afaba7;
  bottom: 3px;
}
.file-list .file-del {
  position: absolute;
  top: 0;
  right: 2px;
  font-size: 1.2em;
}
.file-list .file-del:after {
  content: '\2718';
  text-decoration: none;
}
.file-list .file-del:hover {
  color: red;
}
.file-upload {
  margin: 2px auto;
  overflow: hidden;
  /* Все что выходит за пределы - скрываем */
  width: 20%;
  /* Задаем ширину кнопки выбора файла */
  height: 20px;
  /* Задаем высоту кнопки выбора файла */
  background: #f5f5f5;
  border-bottom: solid 1px #5d5f5d;
  padding: 7px 15px;
  /*
  span {
    line-height: 36px;
  }
*/
}
.file-upload:hover {
  color: #f36f1d;
}
.file-upload input[type="file"] {
  display: none;
  /* Обязательно скрываем настоящий Input File */
}
.file-upload label {
  /* Растягиваем label на всю возможную площадь блока .file-upload */
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}
.file-upload2 {
  overflow: hidden;
  /* Все что выходит за пределы - скрываем */
  width: 20%;
  /* Задаем ширину кнопки выбора файла */
  background: #f5f5f5;
  border-bottom: solid 1px #5d5f5d;
  padding: 7px 10px;
}
.file-upload2:hover {
  color: #f36f1d;
}
.file-upload2 input[type="file"] {
  display: none;
  /* Обязательно скрываем настоящий Input File */
}
.file-upload2 label {
  /* Растягиваем label на всю возможную площадь блока .file-upload */
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 14px;
}
/*--------------------------------------------------------------------*/
/*--                             ORDER                              --*/
/*--------------------------------------------------------------------*/
#orders,
#orders_titul {
  padding: 0;
  font-size: 0.8em;
}
#orders section,
#orders_titul section {
  min-height: 150px;
  position: relative;
}
#orders section > div,
#orders_titul section > div {
  float: left;
  border: 1px solid #afaba7;
  padding: 7px 10px;
  min-height: 150px;
  vertical-align: top;
}
#orders section > div:first-child,
#orders_titul section > div:first-child {
  text-align: left;
  width: calc(100% - 294px);
}
#orders section > div:first-child .num,
#orders_titul section > div:first-child .num {
  text-align: right;
}
#orders section > div:first-child p,
#orders_titul section > div:first-child p {
  margin: 30px 0 0 0;
  padding: 0;
}
#orders section > div:nth-child(2),
#orders_titul section > div:nth-child(2) {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 250px;
  text-align: center;
}
#orders section > div:nth-child(2) span:last-child,
#orders_titul section > div:nth-child(2) span:last-child {
  position: absolute;
  bottom: 5px;
  width: 250px;
}
#orders section > div:nth-child(2) span:nth-last-child(2),
#orders_titul section > div:nth-child(2) span:nth-last-child(2) {
  position: absolute;
  bottom: 30px;
  width: 250px;
}
#orders section > div:nth-child(2) span input,
#orders_titul section > div:nth-child(2) span input {
  width: 80%;
}
#orders section > div span,
#orders_titul section > div span {
  display: block;
  width: 100%;
}
.border2 {
  border: 1px solid #afaba7;
  box-sizing: border-box;
}
.users {
  padding: 0;
  font-size: 0.8em;
}
.users section {
  position: relative;
}
.users section > div {
  float: left;
  border: 1px solid #afaba7;
  padding: 7px 10px;
  height: 120px;
  vertical-align: top;
}
.users section > div:first-child {
  text-align: left;
  width: calc(100%  - 517px);
}
.users section > div:first-child .num {
  text-align: right;
}
.users section > div:first-child p {
  margin: 30px 0 0 0;
  padding: 0;
}
.users section > div:nth-child(2) {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 223px;
  width: 250px;
  text-align: center;
}
.users section > div:nth-child(2) p {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0;
  position: absolute;
  bottom: 2px;
}
.users section > div:nth-child(3) {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 200px;
  text-align: center;
}
.users section > div span {
  display: block;
  width: 100%;
}
.diff {
  padding: 0;
  text-align: left;
  font-size: 0.8em;
}
.diff .rgh {
  text-align: right;
}
.diff > div {
  position: relative;
}
.diff > div span {
  display: block;
  width: 100%;
}
.diff > div:hover {
  cursor: pointer;
}
/*--------------------------------------------------------------------*/
/*--                           form-wrap                            --*/
/*--              https://html5book.ru/sozdanie-html-form/          --*/
/*--------------------------------------------------------------------*/
/*
#input_text() {
  border-width: 0;
  outline: none;
  margin: 0;
  width: 100%;
  padding: 5px 15px;
  background: @color_4;
  font-size: @fs1;
    &:focus {
      box-shadow: inset 0px 0px 0px 1px @color_3;
    }
}
*/
/*
#input_textarea() {
  position: relative;
  border-width: 0;
  outline: none;
  right: 10px;
  width: ~"calc(100% - 50px)";
  height: 100px;
  padding: 5px 15px;
  background: @color_4;
  font-size: @fs1;
    &:focus {
      box-shadow: inset 0px 0px 0px 1px @color_3;
    }
  
}
*/
.form-wrap {
  /*     position: relative; */
  margin: auto;
  /*
  input[type="text"]{
    #input_text;
  } 
*/
  /*
  input[type="email"] {
    #input_text;
  }
*/
  /*
  input[type="password"] {
    #input_text;
  }
*/
  /*
  textarea {
    #input_textarea;
  }
*/
  /*
  .wrap-input{
    #input_text();
    //text-align: left;
    span{
      font-size: 1.3em;
      //text-align: right;
    }
  }
*/
}
.form-wrap div {
  margin-bottom: 10px;
  position: relative;
}
.form-wrap label {
  display: block;
  font-size: 0.8em;
  margin-bottom: 8px;
  text-align: left;
}
.form-wrap span {
  display: block;
  font-size: 0.8em;
  margin-bottom: 8px;
  text-align: left;
}
.form-wrap select {
  outline: 0;
  border: 0;
  width: calc(100% + 30px);
  cursor: pointer;
  padding: 5px 15px;
  background: #afaba7;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-wrap select:focus {
  box-shadow: inset 0px 0px 0px 1px #f36f1d;
}
.form-wrap li {
  list-style: none;
}
.form-list {
  /*     position: relative; */
  margin: auto;
  /*
  input[type="text"]{
    #input_text;
  } 
*/
  /*
  input[type="email"] {
    #input_text;
  }
*/
  /*
  input[type="password"] {
    #input_text;
  }
*/
  /*
  textarea {
    #input_textarea;
  }
*/
  /*
  .wrap-input{
    #input_text();
    //text-align: left;
    span{
      font-size: 1.3em;
      //text-align: right;
    }
  }
*/
}
.form-list div {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 40px;
  position: relative;
}
.form-list label {
  display: block;
  font-size: 0.8em;
  margin-bottom: 8px;
  text-align: left;
}
.form-list span {
  display: block;
  font-size: 0.8em;
  margin-bottom: 8px;
  text-align: left;
}
.form-list select {
  outline: 0;
  border: 0;
  width: calc(100% + 30px);
  cursor: pointer;
  padding: 5px 15px;
  background: #afaba7;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-list select:focus {
  box-shadow: inset 0px 0px 0px 1px #f36f1d;
}
.form-list li {
  list-style: none;
}
.form-wrap-ul label {
  display: block;
  font-size: 0.8em;
  margin-bottom: 8px;
  text-align: left;
}
.form-wrap-ul select {
  outline: 0;
  border: 0;
  width: calc(100% + 30px);
  cursor: pointer;
  padding: 5px 15px;
  background: #afaba7;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-wrap-ul select:focus {
  box-shadow: inset 0px 0px 0px 1px #f36f1d;
}
.block-left {
  position: static !important;
  top: 40px;
  left: 15px;
  width: 40%;
}
.block-left-fix {
  position: static !important;
  top: 40px;
  height: 200px;
  left: 15px;
  width: 40%;
}
.block-right {
  position: absolute !important;
  top: 40px;
  left: calc(50% + 15px);
  width: 40%;
}
body {
  position: absolute;
  margin: 0px;
  background-image: url('../../views/images/m.body_bg.jpg');
  min-width: 900px;
  background-color: #929292;
}
header {
  width: 100%;
  height: 64px;
  position: fixed;
  z-index: 1000;
  background-color: #afaba7;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
header #logo {
  width: 230px;
  height: 64px;
  display: block;
}
header #logo img {
  height: 60px;
  margin: 0px 15px;
}
header #head {
  font-size: 0.8em;
  float: right;
}
header #head > ul > li {
  display: block;
  padding: 0px 15px;
  padding-top: 5px;
  float: left;
}
header #head > ul > li > a {
  color: #fff;
  background: inherit;
}
header #head > ul > li > a i:hover {
  color: #5d5f5d;
}
main {
  position: relative;
  top: 65px;
}
main article {
  /*
    -webkit-transform: translateX(0 - @nav_width);
    -moz-transform: translateX(0 - @nav_width);
    transform: translateX(0 - @nav_width);
  */
  width: 100%;
  /* плавный переход смещения панели */
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
main article #content {
  margin-top: 3px;
  margin-left: 45px;
}
main article #content .wrap-cover {
  position: relative;
  margin-top: 7px;
  margin-bottom: 7px;
  min-height: 25px;
  width: 100%;
  border: 1px solid #afaba7;
  background: #f5f5f5;
  vertical-align: top;
  padding: 5px 10px;
}
main article #content .s-ul {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #afaba7;
  margin: 2px 0;
  padding: 4px 0px;
  font-size: 0.8em;
  text-align: center;
  width: 250px;
  height: 20px;
}
main article #content .s-ul:hover {
  cursor: pointer;
  border-color: #f36f1d;
  color: #f36f1d;
}
main article #content .s-ul:hover a {
  color: #f36f1d;
}
main article #content .s-ul a {
  display: block;
  line-height: 1.1em;
  margin-top: 3px;
  background: inherit;
  color: #5d5f5d;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
main article #content .s-ln {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #afaba7;
  margin: 2px 0;
  padding: 4px 0px;
  font-size: 0.8em;
  text-align: center;
  font-weight: bold;
  width: 80px;
  height: 10px;
}
main article #content .s-ln:hover {
  cursor: pointer;
  border-color: #f36f1d;
  color: #f36f1d;
}
main article #content .s-ln:hover a {
  color: #f36f1d;
}
main article #content .s-ln a {
  display: block;
  line-height: 1.1em;
  margin-top: 3px;
  background: inherit;
  color: #5d5f5d;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
main article #content .s-lm {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #afaba7;
  margin: 2px 0;
  padding: 4px 0px;
  font-size: 0.8em;
  text-align: center;
  font-weight: bold;
  width: 100px;
  height: 10px;
}
main article #content .s-lm:hover {
  cursor: pointer;
  border-color: #f36f1d;
  color: #f36f1d;
}
main article #content .s-lm:hover a {
  color: #f36f1d;
}
main article #content .s-lm a {
  display: block;
  line-height: 1.1em;
  margin-top: 3px;
  background: inherit;
  color: #5d5f5d;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
main article #content .s-ll {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #afaba7;
  margin: 2px 0;
  padding: 4px 0px;
  font-size: 0.8em;
  text-align: center;
  font-weight: bold;
  width: 20%;
  min-width: 200px
        height: 15px;
}
main article #content .s-ll:hover {
  cursor: pointer;
  border-color: #f36f1d;
  color: #f36f1d;
}
main article #content .s-ll:hover a {
  color: #f36f1d;
}
main article #content .s-ll a {
  display: block;
  line-height: 1.1em;
  margin-top: 3px;
  background: inherit;
  color: #5d5f5d;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
main article #content .s-ll h4 {
  /*
          display: block;
          margin-top: 10px;
*/
  line-height: 1.7em;
}
/*
footer {
  
  #f_shadow;
  z-index: 0 !important;
  padding: @f_shadow_padding_1;
  height: 2em;
  text-align: center;
}
*/
.error {
  position: fixed;
  right: 20px;
  top: 70px;
  z-index: 1500;
  min-width: 200px;
  max-width: 40%;
  min-height: 0.01%;
  background: rgba(167, 158, 158, 0.39);
}
.error span {
  display: block;
  margin: 3px;
  border: 1px solid;
  cursor: pointer;
  padding: 7px 10px;
  font-size: 14px;
  background: #5d5f5d;
  color: #546e7a;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
  -moz-box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
  box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
}
.error i {
  position: relative;
  top: 2px;
  right: 5px;
}
.error i:hover {
  color: #f36f1d;
}
.error2 {
  z-index: 1500;
  min-height: 0.01%;
}
.error2 span {
  display: block;
  float: right;
  margin: 0px 3px;
  border: 1px solid;
  cursor: pointer;
  padding: 6px 10px 6px;
  font-size: 12px;
  background: #5d5f5d;
  color: #546e7a;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
  -moz-box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
  box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
}
.error2 i {
  position: relative;
  top: 2px;
  right: 5px;
}
.error2 i:hover {
  color: #f36f1d;
}
.new-date {
  background-color: #0288d1;
  margin: 5px;
}
.new-date span {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
}
.new-date span:first-child {
  padding-top: 4px;
  color: white;
}
.new-date span:last-child {
  position: relative;
  bottom: -3px;
  color: #5d5f5d;
  background-color: white;
}
/*--------------------------------------------------------------------*/
/*--                           Pages                          --*/
/*--------------------------------------------------------------------*/
.pages-list {
  display: none;
}
.pages-list ul {
  display: inline-flex;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pages-list li,
.pages-list span {
  display: inline-block;
  margin: 0;
  width: 40px;
  height: 30px;
  border: 1px solid black;
  border-radius: 4px;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 1.2em;
  line-height: 29px;
}
.pages-list li:hover,
.pages-list span:hover {
  border-color: #f36f1d;
  color: #f36f1d;
  cursor: pointer;
}
.pages-list li[data-role="active"],
.pages-list span[data-role="active"] {
  background: #f36f1d;
}
/*--------------------------------------------------------------------*/
/*--                           Promotion                            --*/
/*--------------------------------------------------------------------*/
.promotion-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.promotion-list section {
  width: 250px;
  height: 250px;
  margin: 5px;
  border-radius: 8px;
}
.promotion-list section img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.promotion-list section div div {
  padding: 5px;
}
.promotion-list section .Animate {
  border-radius: 4px;
  opacity: 0;
}
.promotion-list section:hover .Animate {
  opacity: 0.8;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
/*--------------------------------------------------------------------*/
/*--                           TABLE                           --*/
/*--------------------------------------------------------------------*/
.table-report {
  font-size: 0.8em;
  border-collapse: collapse;
  border: none;
  overflow: auto;
}
.table-report td span {
  padding-left: 1px;
}
.table-report input {
  border: none;
  width: calc(100% - 15px);
  font-size: inherit;
  color: inherit;
  padding-left: 5px;
  margin: 0;
  box-sizing: border-box;
}
.table-report thead th {
  border: 1px solid black;
}
.table-report tbody td {
  border: 1px solid black;
  padding-right: 5px;
}
.table-report tfoot {
  text-align: right;
}
.table-report tfoot td {
  border: 1px solid black;
  padding: 2px 5px;
}
.table-hover-pur tr:hover {
  cursor: default;
  background-color: #f4dcff;
}
.hover-pur:hover {
  cursor: default;
  background-color: #f4dcff;
}
/*--------------------------------------------------------------------*/
/*--                           PreLoader                            --*/
/*--------------------------------------------------------------------*/
#p_shadow {
  z-index: 2000;
}
#p_shadow .icon {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #afaba7;
  cursor: pointer;
  z-index: 2002;
}
#p_shadow .icon:hover {
  color: red;
}
#p_shadow > div {
  max-width: 1150px;
  width: 80%;
  height: 90%;
  overflow: auto;
  margin: 50px auto 0;
}
#p_prldr {
  z-index: 2100;
}
#p_prldr > div {
  width: 250px;
  position: absolute;
  left: 50%;
  top: 48%;
  margin-left: -125px;
  margin-top: -75px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 20px;
  overflow: hidden;
}
#p_prldr > div small {
  font-size: 20px;
}
#p_prldr > div .svg_anm {
  position: absolute;
  width: 41px;
  height: 50px;
  background: url('../../views/images/three-dots.svg') center center no-repeat;
  background-size: 35px;
  margin: -15px -18px 0;
}
.p_prldr {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(92, 94, 92, 0.96);
}
.ShadowEffect {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
  -moz-box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
  box-shadow: 0px 1px 2px 0px rgba(43, 59, 93, 0.4);
}
.Card {
  padding: 10px;
  display: block;
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  font-family: 'roboto_condensedregular';
  color: #546e7a;
}
.Card:after {
  content: "";
  display: table;
  border-collapse: collapse;
  clear: both;
}
.Card:before {
  content: "";
  display: table;
  border-collapse: collapse;
}
.Separator {
  border-bottom: solid 1px #e0e0e0;
  width: 100%;
  overflow: hidden;
  height: 0px;
  margin: 10px 0px;
  clear: both;
}
.input-block {
  position: relative;
  margin-bottom: 5px;
}
.input-block label {
  margin-bottom: 5px;
  color: #aaa;
  display: inline-block;
  font-size: 14px !important;
  width: 100%;
}
.input-block input,
.input-block textarea,
.input-block .file-upload3 {
  box-sizing: border-box;
  height: 28px;
  border-radius: 4px;
  padding: 1px 8px;
  transition: all 0.15s ease-out 0s;
  border: 1px solid #aaa;
  color: #444;
  cursor: pointer;
  font-size: 15px !important;
  width: 100%;
}
.input-block input[type="file"] {
  display: none;
}
.input-block .file-upload3:hover {
  color: #f36f1d;
}
.input-block .button_input {
  position: relative;
  height: 28px;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  outline: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  font-size: 18px !important;
  width: 100%;
}
.input-block .button_input:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.input-block .disabled {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.input-block .mn-input-icon-right {
  position: absolute;
  top: 50%;
  margin-top: 3px;
  right: 14px;
  cursor: pointer;
}
.input-block .mn-input-icon-right:hover {
  color: red;
}
.input-block-table {
  position: relative;
}
.input-block-table label {
  margin-bottom: 5px;
  color: #aaa;
  display: inline-block;
  font-size: 14px !important;
  width: 100%;
}
.input-block-table input,
.input-block-table textarea,
.input-block-table .file-upload3 {
  box-sizing: border-box;
  height: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 1px 8px;
  transition: all 0.15s ease-out 0s;
  border: 1px solid #aaa;
  color: #444;
  cursor: pointer;
  width: 100%;
}
.input-block-table input[type="file"] {
  display: none;
}
.input-block-table .file-upload3:hover {
  color: #f36f1d;
}
.input-block-table .button_input {
  position: relative;
  height: 100%;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  outline: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  font-size: 18px !important;
  width: 100%;
}
.input-block-table .button_input:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.input-block-table .disabled {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.input-block-table .mn-input-icon-right {
  position: absolute;
  top: 50%;
  margin-top: 3px;
  right: 14px;
  cursor: pointer;
}
.input-block-table .mn-input-icon-right:hover {
  color: red;
}
.topLabel {
  padding: 10px 2px 5px 2px;
  display: block;
  min-height: 25px;
}
.mn-fluid .mn-inputtext {
  position: relative;
  width: 100%;
}
.mn-fluid .mn-inputfield {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.mn-fluid .mn-spinner {
  display: inline-block;
  overflow: visible;
  padding: 0;
  position: relative;
  vertical-align: middle;
  box-sizing: border-box;
}
.mn-fluid .mn-spinner .mn-spinner-up {
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 14px !important;
}
.mn-fluid .mn-spinner .mn-spinner-down {
  position: absolute;
  bottom: 5px;
  right: 15px;
  font-size: 14px !important;
}
.mn-fluid .mn-spinner .mn-spinner-input {
  width: 90%;
}
input[disabled] {
  color: #546e7a;
  font-size: 16px;
  font-family: 'roboto_condensedregular' !important;
}
.mn-inputfield {
  margin: 0px;
  color: #546e7a;
  font-size: 16px;
  font-family: 'roboto_condensedregular' !important;
  padding: 7px 10px;
  border: 0px solid black;
  border-bottom: solid 1px #5d5f5d;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #f5f5f5;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}
.mn-input {
  position: relative;
}
.mn-input .mn-input-icon-right {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 14px;
  cursor: pointer;
}
.mn-input .mn-input-icon-right:hover {
  color: red;
}
.mn-input .mn-inputfield {
  padding: 9px 45px 9px 10px !important;
}
.lbl {
  color: #5d5f5d;
  font-size: 14px !important;
}
#hint:hover:after {
  content: attr(data-title);
  white-space: pre;
  position: absolute;
  display: inline-block;
  z-index: 3500;
  color: #5d5f5d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 2px 5px;
  font-size: 12px !important;
}
.Rhint:hover:after {
  content: attr(data-title);
  white-space: pre;
  position: absolute;
  display: inline-block;
  z-index: 3500;
  color: #5d5f5d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 2px 5px;
  font-size: 12px !important;
}
.Rhint:hover:after {
  bottom: 110%;
  right: 0%;
}
.Lhint:hover:after {
  content: attr(data-title);
  white-space: pre;
  position: absolute;
  display: inline-block;
  z-index: 3500;
  color: #5d5f5d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 2px 5px;
  font-size: 12px !important;
}
.Lhint:hover:after {
  bottom: 110%;
  left: 0%;
}
.RhintBottom:hover:after {
  content: attr(data-title);
  white-space: pre;
  position: absolute;
  display: inline-block;
  z-index: 3500;
  color: #5d5f5d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 2px 5px;
  font-size: 12px !important;
}
.RhintBottom:hover:after {
  bottom: -5%;
  right: 110%;
}
.LhintBottom:hover:after {
  content: attr(data-title);
  white-space: pre;
  position: absolute;
  display: inline-block;
  z-index: 3500;
  color: #5d5f5d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #aaa;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 2px 5px;
  font-size: 12px !important;
}
.LhintBottom:hover:after {
  bottom: -5%;
  left: 110%;
}
.mn-but-ico {
  position: relative;
  width: 35px;
  height: 27px;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  outline: none;
  border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  font-size: 14px;
  font-family: 'roboto_condensedregular';
  color: #fff;
  text-shadow: none;
  background-color: #0288d1;
  font-weight: normal;
  border: 0px none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mn-but-ico:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.mn-but-ico .inner-text {
  position: relative;
  top: -23px;
}
.mn-button-flex {
  display: flex;
  align-items: center;
  position: relative;
  height: 28px;
  text-decoration: none!important;
  cursor: pointer;
  overflow: visible;
  outline: none;
  border-radius: 2px !important;
  color: #fff;
  background-color: #0288d1;
  font-weight: normal;
  border: 0px none;
}
.mn-button-flex i {
  padding: 2px 4px;
  font-size: 18px;
}
.mn-button-flex span {
  padding: 2px;
  font-size: 14px;
}
.mn-button-flex:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.border-left-none {
  border-left: none !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.mn-label-flex {
  display: flex;
  align-items: center;
  position: relative;
  height: 28px;
  text-decoration: none!important;
  cursor: pointer;
  overflow: visible;
  outline: none;
  border-radius: 4px 0 0 4px !important;
  color: #444;
  font-weight: normal;
  border: 1px solid #aaa;
}
.mn-label-flex i {
  padding: 2px 4px;
  font-size: 18px;
}
.mn-label-flex span {
  padding: 2px;
  font-size: 14px;
}
.mn-but-ico-table {
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  outline: none;
  border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  font-size: 14px;
  font-family: 'roboto_condensedregular';
  color: #fff;
  text-shadow: none;
  background-color: #0288d1;
  font-weight: normal;
  border: 0px none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mn-but-ico-table:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.mn-but-ico-table .inner-text {
  position: relative;
  top: -23px;
}
.mn-button {
  display: block;
  padding: 0;
  margin-right: 0.1em;
  text-decoration: none!important;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  outline: none;
  border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  color: #fff;
  text-shadow: none;
  position: relative;
  background-color: #0288d1;
  font-weight: normal;
  border: 0px none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 14px !important;
}
.mn-button:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5;
}
.mn-button-text {
  display: block;
  padding: 5px 20px 5px 40px !important;
}
.mn-button-text-left {
  display: block;
  padding: 3px 5px 3px 25px !important;
}
.mn-button-text-right {
  display: block;
  padding: 3px 25px 3px 5px !important;
}
.mn-button-icon-left {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 1em;
  font-size: 16px !important;
}
.mn-button-icon-right {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 1em;
  font-size: 16px !important;
}
.btn,
input[type="submit"],
input[type="button"] {
  color: #fff;
  font-size: normal;
  text-decoration: none !important;
  background-color: #0288d1;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  color: #5d5f5d !important;
  background-color: #f5f5f5 !important;
}
.RaisedButton {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.select {
  position: relative;
  display: block;
  height: 33px;
  background: #f5f5f5;
  overflow: hidden;
  border-bottom: solid 1px #5d5f5d;
  padding-bottom: 3px;
  font-family: 'roboto_condensedregular' !important;
  line-height: 20px;
  font-size: 14px !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.select option {
  color: inherit;
  font-size: 14px !important;
}
.select:after {
  content: '\25BC';
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 0;
  padding: 0 1em;
  background: #f5f5f5;
  pointer-events: none;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  transition: 0.25s all ease;
}
.select:hover:after {
  color: #546e7a;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #f5f5f5;
  background-image: none;
  font-size: 14px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 0 0 1.5em;
  color: #546e7a;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
.mn-spinner-button {
  cursor: default;
  display: block;
  font-size: 0.5em;
  height: 50%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  vertical-align: middle;
  width: 16px;
  z-index: 100;
}
.icon-button:hover {
  color: #f36f1d;
  cursor: pointer;
}
.ui-datatable {
  background-color: #ffffff;
  color: #546e7a;
  font-family: 'roboto_condensedregular';
}
.ui-datatable table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.ui-datatable table thead th {
  text-align: center;
  padding: 4px 10px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  color: #546e7a;
  background-color: #dae8ef;
  border: solid 1px #c1d5df;
  outline: none;
  font-family: 'roboto_condensedlight';
}
.ui-datatable table thead td {
  text-align: center;
  padding: 4px 10px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  color: #546e7a;
  background-color: #dae8ef;
  border: solid 1px #c1d5df;
  outline: none;
  font-family: 'roboto_condensedlight';
}
.ui-datatable table tbody tr td {
  position: relative;
  color: #546e7a;
  border: solid 1px #d9e3e8;
  padding: 0 4px;
  font-family: 'roboto_condensedregular';
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ui-datatable table tfoot th {
  text-align: center;
  padding: 4px 10px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  color: #546e7a;
  background-color: #dae8ef;
  border: solid 1px #c1d5df;
  outline: none;
  font-family: 'roboto_condensedlight';
}
.ui-datatable table tfoot td {
  text-align: center;
  padding: 4px 10px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  color: #546e7a;
  background-color: #dae8ef;
  border: solid 1px #c1d5df;
  outline: none;
  font-family: 'roboto_condensedlight';
}
@media print {
  @page {
    size: A4 landscape;
    margin: 0.5cm;
  }
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .print-none * {
    display: none;
  }
  .print-none-child > * {
    display: none;
  }
  .print-page {
    display: block !important;
    /*
    img{
		    page-break-after: always;
    }
*/
  }
}
.RedButton {
  background-color: #E53935;
}
.GreenButton {
  background-color: #66BB6A;
}
.BlueButton {
  background-color: #0288d1;
}
.WhiteGrayButton {
  background-color: #f5f5f5;
}
.WhiteRedButton {
  background-color: #ffecec;
}
.WhitePurButton {
  background-color: #f4dcff;
}
.YellowButton {
  background-color: #f3f36e;
}
.DarkYellowButton {
  background-color: #79792f;
}
.PurButton {
  background-color: #cb6ef3;
}
.WhiteButton {
  background-color: #dad4d4;
}
.BlackButton {
  background-color: #383434;
}
.BGWhite {
  background-color: #fff;
}
.BGWhiteBlue {
  background-color: #a3daff;
  /* oc-blue-2 (open color) */
}
.BGWhiteGreen {
  background-color: #b2f2bb;
  /* oc-green-2 (open color) */
}
.BGWhiteRed {
  background-color: #ffc9c9;
  /* oc-red-2 (open color) */
}
.BGWhiteGray {
  background-color: #e9ecef;
  /* oc-gray-2 (open color) */
}
.BGWhiteYellow {
  background-color: #ffec99;
  /* oc-yellow-2 (open color) */
}
.BGWhitePur {
  background-color: #d0bfff;
  /* oc-violet-2 (open color) */
}
.BGIndigo {
  background-color: #bac8ff;
  /* oc-indigo-2 (open color) */
}
.Blue {
  color: #0288d1 !important;
}
.Green {
  color: #66BB6A !important;
}
.Red {
  color: #E53935 !important;
}
.White {
  color: #fff !important;
}
.Yellow {
  color: yellow !important;
}
.DarkYellow {
  color: #79792f !important;
}
.WhiteBlue {
  color: #0288d1 !important;
}
.WhiteGray {
  color: #f5f5f5 !important;
}
.BlackGray {
  color: #5d5f5d !important;
}
.Pur {
  color: #cb6ef3 !important;
}
.bg-orig {
  background-color: #f5f5f5;
}
.bg-new {
  border-color: red;
  background-color: #FFE7E8 !important;
}
.bg-mark {
  border-color: green;
  background-color: #cfffe0 !important;
}
.bg-between {
  border-color: yellow;
  background-color: #ffffcf !important;
}
.bg-mark2 {
  border-color: #800075;
  background-color: #fbcfff !important;
}
.bg-mark3 {
  border-color: #000080;
  background-color: #cfdcff !important;
}
.bg-mark4 {
  border-color: #495057;
  /* oc-gray-7 (open color) */
  background-color: #dee2e6 !important;
  /* oc-gray-3 (open color) */
}
.border-red {
  border-color: red !important;
  background-color: #FFE7E8 !important;
}
.border-green {
  border-color: green !important;
  background-color: #cfffe0 !important;
}
.border-yellow {
  border-color: green !important;
  background-color: #ffffcf !important;
}
.border-mix {
  border-color: #3e47e6 !important;
  background-color: #8bddf1 !important;
}
@media print {
  @page {
    size: A4 landscape;
    margin: 0.5cm;
  }
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .print-none * {
    display: none;
  }
  .print-none-child > * {
    display: none;
  }
  .print-page {
    display: block !important;
    /*
    img{
		    page-break-after: always;
    }
*/
  }
}
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}
.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}
/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  box-sizing: border-box;
  height: 28px;
  border-radius: 4px;
  padding: 4px 8px;
  transition: all 0.15s ease-out 0s;
  border: 1px solid #aaa;
  color: black;
  cursor: pointer;
  font-size: 15px !important;
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: 'roboto_condensedregular' !important;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("chosen-sprite.png") no-repeat 0px 2px;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}
/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}
/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  /*   direction: rtl; */
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  /*   direction: rtl; */
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url("chosen-sprite.png") no-repeat -30px -20px;
  /*   direction: rtl; */
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  font-size: 15px !important;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 2051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px !important;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option--selectable {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px !important;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0!important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  width: 1px!important;
  white-space: nowrap!important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  height: 26px;
  margin-right: 20px;
  padding-right: 0;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
  font-size: 14px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px;
}
.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 2px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: 700;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
  font-size: 12px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #000 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: #fff;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
  border-bottom: 1px solid black;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  height: 26px;
  margin-right: 20px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0 4px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
  padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  display: none;
}
