/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/* line 2, ../sass/base-js.scss */
.icon-big-loading {
  background: url('../images/base/loading-circle.gif?1385607293');
  width: 25px;
  height: 25px;
  display: block;
  margin: 5px auto;
}

/* line 9, ../sass/base-js.scss */
.tile-layer {
  position: absolute;
  top: 0;
  left: 0;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  background: #fff;
}

/* line 18, ../sass/base-js.scss */
.dmd-combobox {
  position: relative;
  display: inline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 22, ../sass/base-js.scss */
.dmd-combobox > img {
  vertical-align: bottom;
  display: inline;
}
/* line 25, ../sass/base-js.scss */
.dmd-combobox > img.no-image {
  background: url('../images/base/plugin-select-dropdown-icon.png?1385607293');
  width: 40px;
  height: 41px;
  display: inline-block;
}
/* line 32, ../sass/base-js.scss */
.dmd-combobox input {
  display: inline;
}
/* line 35, ../sass/base-js.scss */
.dmd-combobox ul {
  z-Index: 8000;
  max-height: 320px;
  overflow: auto;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/* line 46, ../sass/base-js.scss */
.dmd-combobox ul li {
  position: relative;
  cursor: pointer;
  padding: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: solid 1px #dadada;
}
/* line 52, ../sass/base-js.scss */
.dmd-combobox ul li:last-child {
  border-bottom: none;
}
/* line 55, ../sass/base-js.scss */
.dmd-combobox ul li .icon-ceklist {
  position: absolute;
  right: 10px;
  top: 15px;
  display: none;
}

/* line 65, ../sass/base-js.scss */
#black-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  z-Index: 99991;
}
/* line 74, ../sass/base-js.scss */
#black-overlay .tile-layer {
  background: none;
}

/* line 78, ../sass/base-js.scss */
.modal-container {
  position: absolute;
  top: 0;
  left: 0;
  z-Index: 99991;
  background: #f2f2f2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 87, ../sass/base-js.scss */
.modal-container .icon-btn-close {
  position: absolute;
  top: -16px;
  right: -20px;
  cursor: pointer;
}
/* line 93, ../sass/base-js.scss */
.modal-container .contain-wrap {
  min-height: 50px;
  border: solid 10px #fff;
  background: #f2f2f2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/* line 100, ../sass/base-js.scss */
.shout-it {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 640px;
  margin: -25px 0 0 -320px;
  z-Index: 99992;
  background: #fff;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  border: solid 2px #00f;
  text-align: center;
  font: 18px/60px "Interstate";
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: solid 5px #f2f2f2;
}
/* line 118, ../sass/base-js.scss */
.shout-it > div {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: solid 10px #fff;
  background: #f6f6f6;
  color: #666666;
}

/* line 125, ../sass/base-js.scss */
.shout-it-layer {
  z-Index: 99991;
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  top: 0;
  left: 0;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
