18760 lines
468 KiB
CSS
18760 lines
468 KiB
CSS
@charset "UTF-8";
|
||
@import url("//fonts.googleapis.com/css?family=Open+Sans:300,400,700");
|
||
@import url("//fonts.googleapis.com/css?family=Ubuntu+Condensed");
|
||
|
||
@-webkit-keyframes fadeIn {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOut {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInUp {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutUp {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-20px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInDown {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutDown {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(20px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInRight {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutLeft {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(-20px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutRight {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(20px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInUpBig {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutUpBig {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInDownBig {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutDownBig {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInRightBig {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutLeftBig {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeInLeftBig {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes fadeOutRightBig {
|
||
0% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceIn {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: scale(0.3);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
-webkit-transform: scale(1.05);
|
||
}
|
||
70% {
|
||
-webkit-transform: scale(0.9);
|
||
}
|
||
100% {
|
||
-webkit-transform: scale(1);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceInDown {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(30px);
|
||
}
|
||
80% {
|
||
-webkit-transform: translateY(-10px);
|
||
}
|
||
100% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceInUp {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(-30px);
|
||
}
|
||
80% {
|
||
-webkit-transform: translateY(10px);
|
||
}
|
||
100% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceInRight {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(-30px);
|
||
}
|
||
80% {
|
||
-webkit-transform: translateX(10px);
|
||
}
|
||
100% {
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(30px);
|
||
}
|
||
80% {
|
||
-webkit-transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceOut {
|
||
0% {
|
||
-webkit-transform: scale(1);
|
||
}
|
||
25% {
|
||
-webkit-transform: scale(0.95);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
-webkit-transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: scale(0.3);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceOutUp {
|
||
0% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceOutDown {
|
||
0% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-webkit-transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceOutLeft {
|
||
0% {
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounceOutRight {
|
||
0% {
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-webkit-transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-webkit-transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes flash {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
25% {
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
}
|
||
75% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes bounce {
|
||
0% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
20% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
40% {
|
||
-webkit-transform: translateY(-30px);
|
||
}
|
||
50% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
60% {
|
||
-webkit-transform: translateY(-15px);
|
||
}
|
||
80% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
100% {
|
||
-webkit-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes shake {
|
||
0% {
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
10% {
|
||
-webkit-transform: translateX(-10px);
|
||
}
|
||
20% {
|
||
-webkit-transform: translateX(10px);
|
||
}
|
||
30% {
|
||
-webkit-transform: translateX(-10px);
|
||
}
|
||
40% {
|
||
-webkit-transform: translateX(10px);
|
||
}
|
||
50% {
|
||
-webkit-transform: translateX(-10px);
|
||
}
|
||
60% {
|
||
-webkit-transform: translateX(10px);
|
||
}
|
||
70% {
|
||
-webkit-transform: translateX(-10px);
|
||
}
|
||
80% {
|
||
-webkit-transform: translateX(10px);
|
||
}
|
||
90% {
|
||
-webkit-transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
-webkit-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateInDownLeft {
|
||
0% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateInUpLeft {
|
||
0% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateInUpRight {
|
||
0% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateInDownRight {
|
||
0% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateOutDownLeft {
|
||
0% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateOutUpLeft {
|
||
0% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: left bottom;
|
||
-webkit-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateOutDownRight {
|
||
0% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateOutUpRight {
|
||
0% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: right bottom;
|
||
-webkit-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateIn {
|
||
0% {
|
||
-webkit-transform-origin: center center;
|
||
-webkit-transform: rotate(-200deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: center center;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes rotateOut {
|
||
0% {
|
||
-webkit-transform-origin: center center;
|
||
-webkit-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-webkit-transform-origin: center center;
|
||
-webkit-transform: rotate(200deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes tada {
|
||
0% {
|
||
-webkit-transform: scale(1);
|
||
}
|
||
10% {
|
||
-webkit-transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
20% {
|
||
-webkit-transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
30% {
|
||
-webkit-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
40% {
|
||
-webkit-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
50% {
|
||
-webkit-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
60% {
|
||
-webkit-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
70% {
|
||
-webkit-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
80% {
|
||
-webkit-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
90% {
|
||
-webkit-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
100% {
|
||
-webkit-transform: scale(1) rotate(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeIn {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOut {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInUp {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutUp {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(-20px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInDown {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutDown {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(20px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInRight {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutLeft {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(-20px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutRight {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(20px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInUpBig {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutUpBig {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInDownBig {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutDownBig {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInRightBig {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutLeftBig {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeInLeftBig {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes fadeOutRightBig {
|
||
0% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceIn {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: scale(0.3);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
-moz-transform: scale(1.05);
|
||
}
|
||
70% {
|
||
-moz-transform: scale(0.9);
|
||
}
|
||
100% {
|
||
-moz-transform: scale(1);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceInDown {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(30px);
|
||
}
|
||
80% {
|
||
-moz-transform: translateY(-10px);
|
||
}
|
||
100% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceInUp {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(-30px);
|
||
}
|
||
80% {
|
||
-moz-transform: translateY(10px);
|
||
}
|
||
100% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceInRight {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(-30px);
|
||
}
|
||
80% {
|
||
-moz-transform: translateX(10px);
|
||
}
|
||
100% {
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(30px);
|
||
}
|
||
80% {
|
||
-moz-transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceOut {
|
||
0% {
|
||
-moz-transform: scale(1);
|
||
}
|
||
25% {
|
||
-moz-transform: scale(0.95);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
-moz-transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: scale(0.3);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceOutUp {
|
||
0% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceOutDown {
|
||
0% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-moz-transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceOutLeft {
|
||
0% {
|
||
-moz-transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounceOutRight {
|
||
0% {
|
||
-moz-transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-moz-transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-moz-transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes flash {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
25% {
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
}
|
||
75% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes bounce {
|
||
0% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
20% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
40% {
|
||
-moz-transform: translateY(-30px);
|
||
}
|
||
50% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
60% {
|
||
-moz-transform: translateY(-15px);
|
||
}
|
||
80% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
100% {
|
||
-moz-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes shake {
|
||
0% {
|
||
-moz-transform: translateX(0);
|
||
}
|
||
10% {
|
||
-moz-transform: translateX(-10px);
|
||
}
|
||
20% {
|
||
-moz-transform: translateX(10px);
|
||
}
|
||
30% {
|
||
-moz-transform: translateX(-10px);
|
||
}
|
||
40% {
|
||
-moz-transform: translateX(10px);
|
||
}
|
||
50% {
|
||
-moz-transform: translateX(-10px);
|
||
}
|
||
60% {
|
||
-moz-transform: translateX(10px);
|
||
}
|
||
70% {
|
||
-moz-transform: translateX(-10px);
|
||
}
|
||
80% {
|
||
-moz-transform: translateX(10px);
|
||
}
|
||
90% {
|
||
-moz-transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
-moz-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateInDownLeft {
|
||
0% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateInUpLeft {
|
||
0% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateInUpRight {
|
||
0% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateInDownRight {
|
||
0% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateOutDownLeft {
|
||
0% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateOutUpLeft {
|
||
0% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: left bottom;
|
||
-moz-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateOutDownRight {
|
||
0% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateOutUpRight {
|
||
0% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: right bottom;
|
||
-moz-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateIn {
|
||
0% {
|
||
-moz-transform-origin: center center;
|
||
-moz-transform: rotate(-200deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: center center;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes rotateOut {
|
||
0% {
|
||
-moz-transform-origin: center center;
|
||
-moz-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-moz-transform-origin: center center;
|
||
-moz-transform: rotate(200deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-moz-keyframes tada {
|
||
0% {
|
||
-moz-transform: scale(1);
|
||
}
|
||
10% {
|
||
-moz-transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
20% {
|
||
-moz-transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
30% {
|
||
-moz-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
40% {
|
||
-moz-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
50% {
|
||
-moz-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
60% {
|
||
-moz-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
70% {
|
||
-moz-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
80% {
|
||
-moz-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
90% {
|
||
-moz-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
100% {
|
||
-moz-transform: scale(1) rotate(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeIn {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOut {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInUp {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutUp {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(-20px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInDown {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutDown {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(20px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInRight {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutLeft {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(-20px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutRight {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(20px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInUpBig {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutUpBig {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInDownBig {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutDownBig {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInRightBig {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutLeftBig {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeInLeftBig {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes fadeOutRightBig {
|
||
0% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceIn {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: scale(0.3);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
-ms-transform: scale(1.05);
|
||
}
|
||
70% {
|
||
-ms-transform: scale(0.9);
|
||
}
|
||
100% {
|
||
-ms-transform: scale(1);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceInDown {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(30px);
|
||
}
|
||
80% {
|
||
-ms-transform: translateY(-10px);
|
||
}
|
||
100% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceInUp {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(-30px);
|
||
}
|
||
80% {
|
||
-ms-transform: translateY(10px);
|
||
}
|
||
100% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceInRight {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(-30px);
|
||
}
|
||
80% {
|
||
-ms-transform: translateX(10px);
|
||
}
|
||
100% {
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(30px);
|
||
}
|
||
80% {
|
||
-ms-transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceOut {
|
||
0% {
|
||
-ms-transform: scale(1);
|
||
}
|
||
25% {
|
||
-ms-transform: scale(0.95);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
-ms-transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: scale(0.3);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceOutUp {
|
||
0% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceOutDown {
|
||
0% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-ms-transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceOutLeft {
|
||
0% {
|
||
-ms-transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounceOutRight {
|
||
0% {
|
||
-ms-transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
-ms-transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
-ms-transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes flash {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
25% {
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
}
|
||
75% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes bounce {
|
||
0% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
20% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
40% {
|
||
-ms-transform: translateY(-30px);
|
||
}
|
||
50% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
60% {
|
||
-ms-transform: translateY(-15px);
|
||
}
|
||
80% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
100% {
|
||
-ms-transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes shake {
|
||
0% {
|
||
-ms-transform: translateX(0);
|
||
}
|
||
10% {
|
||
-ms-transform: translateX(-10px);
|
||
}
|
||
20% {
|
||
-ms-transform: translateX(10px);
|
||
}
|
||
30% {
|
||
-ms-transform: translateX(-10px);
|
||
}
|
||
40% {
|
||
-ms-transform: translateX(10px);
|
||
}
|
||
50% {
|
||
-ms-transform: translateX(-10px);
|
||
}
|
||
60% {
|
||
-ms-transform: translateX(10px);
|
||
}
|
||
70% {
|
||
-ms-transform: translateX(-10px);
|
||
}
|
||
80% {
|
||
-ms-transform: translateX(10px);
|
||
}
|
||
90% {
|
||
-ms-transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
-ms-transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateInDownLeft {
|
||
0% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateInUpLeft {
|
||
0% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateInUpRight {
|
||
0% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateInDownRight {
|
||
0% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateOutDownLeft {
|
||
0% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateOutUpLeft {
|
||
0% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: left bottom;
|
||
-ms-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateOutDownRight {
|
||
0% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateOutUpRight {
|
||
0% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: right bottom;
|
||
-ms-transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateIn {
|
||
0% {
|
||
-ms-transform-origin: center center;
|
||
-ms-transform: rotate(-200deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: center center;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes rotateOut {
|
||
0% {
|
||
-ms-transform-origin: center center;
|
||
-ms-transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
-ms-transform-origin: center center;
|
||
-ms-transform: rotate(200deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@-ms-keyframes tada {
|
||
0% {
|
||
-ms-transform: scale(1);
|
||
}
|
||
10% {
|
||
-ms-transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
20% {
|
||
-ms-transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
30% {
|
||
-ms-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
40% {
|
||
-ms-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
50% {
|
||
-ms-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
60% {
|
||
-ms-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
70% {
|
||
-ms-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
80% {
|
||
-ms-transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
90% {
|
||
-ms-transform: scale(1.1) rotate(3deg);
|
||
}
|
||
100% {
|
||
-ms-transform: scale(1) rotate(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeIn {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOut {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInUp {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutUp {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-20px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInDown {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutDown {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInUpBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutUpBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInDownBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutDownBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInRightBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutLeftBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInLeftBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeOutRightBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceIn {
|
||
0% {
|
||
opacity: 0;
|
||
transform: scale(0.3);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
transform: scale(1.05);
|
||
}
|
||
70% {
|
||
transform: scale(0.9);
|
||
}
|
||
100% {
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceInDown {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateY(30px);
|
||
}
|
||
80% {
|
||
transform: translateY(-10px);
|
||
}
|
||
100% {
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceInUp {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateY(-30px);
|
||
}
|
||
80% {
|
||
transform: translateY(10px);
|
||
}
|
||
100% {
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceInRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateX(-30px);
|
||
}
|
||
80% {
|
||
transform: translateX(10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateX(30px);
|
||
}
|
||
80% {
|
||
transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceOut {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
25% {
|
||
transform: scale(0.95);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: scale(0.3);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceOutUp {
|
||
0% {
|
||
transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceOutDown {
|
||
0% {
|
||
transform: translateY(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceOutLeft {
|
||
0% {
|
||
transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes bounceOutRight {
|
||
0% {
|
||
transform: translateX(0);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
}
|
||
|
||
@keyframes flash {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
25% {
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
}
|
||
75% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes bounce {
|
||
0% {
|
||
transform: translateY(0);
|
||
}
|
||
20% {
|
||
transform: translateY(0);
|
||
}
|
||
40% {
|
||
transform: translateY(-30px);
|
||
}
|
||
50% {
|
||
transform: translateY(0);
|
||
}
|
||
60% {
|
||
transform: translateY(-15px);
|
||
}
|
||
80% {
|
||
transform: translateY(0);
|
||
}
|
||
100% {
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes shake {
|
||
0% {
|
||
transform: translateX(0);
|
||
}
|
||
10% {
|
||
transform: translateX(-10px);
|
||
}
|
||
20% {
|
||
transform: translateX(10px);
|
||
}
|
||
30% {
|
||
transform: translateX(-10px);
|
||
}
|
||
40% {
|
||
transform: translateX(10px);
|
||
}
|
||
50% {
|
||
transform: translateX(-10px);
|
||
}
|
||
60% {
|
||
transform: translateX(10px);
|
||
}
|
||
70% {
|
||
transform: translateX(-10px);
|
||
}
|
||
80% {
|
||
transform: translateX(10px);
|
||
}
|
||
90% {
|
||
transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0);
|
||
}
|
||
}
|
||
|
||
@keyframes rotateInDownLeft {
|
||
0% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateInUpLeft {
|
||
0% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateInUpRight {
|
||
0% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateInDownRight {
|
||
0% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateOutDownLeft {
|
||
0% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateOutUpLeft {
|
||
0% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
transform-origin: left bottom;
|
||
transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateOutDownRight {
|
||
0% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(-90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateOutUpRight {
|
||
0% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
transform-origin: right bottom;
|
||
transform: rotate(90deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateIn {
|
||
0% {
|
||
transform-origin: center center;
|
||
transform: rotate(-200deg);
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
transform-origin: center center;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
@keyframes rotateOut {
|
||
0% {
|
||
transform-origin: center center;
|
||
transform: rotate(0);
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
transform-origin: center center;
|
||
transform: rotate(200deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
@keyframes tada {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
10% {
|
||
transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
20% {
|
||
transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
30% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
40% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
50% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
60% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
70% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
80% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
90% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
100% {
|
||
transform: scale(1) rotate(0);
|
||
}
|
||
}
|
||
|
||
/*!
|
||
* Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||
*/
|
||
/* FONT PATH
|
||
* -------------------------- */
|
||
@font-face {
|
||
font-family: 'FontAwesome';
|
||
src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
|
||
src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"),
|
||
url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"),
|
||
url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"),
|
||
url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
|
||
font-weight: normal;
|
||
font-style: normal;
|
||
}
|
||
|
||
.icon, .custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, .custom_bootstrap [class^="icon-"], .custom_bootstrap [class^="process-icon-"], .custom_bootstrap .alert.alert-warning:before, .custom_bootstrap .alert.alert-danger:before, .custom_bootstrap .alert.alert-success:before, .custom_bootstrap .alert.alert-info:before, .custom_bootstrap .alert.alert-addons:before, .custom_bootstrap .alert.alert-onboarding:before, .custom_bootstrap .alert.alert-message:before, .custom_bootstrap .table td.dragHandle .dragGroup:before, .custom_bootstrap .mce-ico, .custom_bootstrap .chosen-container-single .chosen-single div b, .custom_bootstrap .chosen-container-single .chosen-search:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
transform: translate(0, 0);
|
||
}
|
||
|
||
/* makes the font 33% larger relative to the icon container */
|
||
.icon-lg {
|
||
font-size: 1.33333em;
|
||
line-height: 0.75em;
|
||
vertical-align: -15%;
|
||
}
|
||
|
||
.icon-2x, .custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, .custom_bootstrap [class^="icon-Admin"], .custom_bootstrap [class^="process-icon-"] {
|
||
font-size: 2em;
|
||
}
|
||
|
||
.icon-3x, .custom_bootstrap .alert.alert-warning:before, .custom_bootstrap .alert.alert-danger:before, .custom_bootstrap .alert.alert-success:before, .custom_bootstrap .alert.alert-info:before, .custom_bootstrap .alert.alert-addons:before, .custom_bootstrap .alert.alert-onboarding:before, .custom_bootstrap .alert.alert-message:before {
|
||
font-size: 3em;
|
||
}
|
||
|
||
.icon-4x {
|
||
font-size: 4em;
|
||
}
|
||
|
||
.icon-5x {
|
||
font-size: 5em;
|
||
}
|
||
|
||
.icon-fw, .custom_bootstrap [class^="icon-Admin"], .custom_bootstrap [class^="process-icon-"] {
|
||
width: 1.28571em;
|
||
text-align: center;
|
||
}
|
||
|
||
.icon-ul {
|
||
padding-left: 0;
|
||
margin-left: 2.14286em;
|
||
list-style-type: none;
|
||
}
|
||
|
||
.icon-ul > li {
|
||
position: relative;
|
||
}
|
||
|
||
.icon-li {
|
||
position: absolute;
|
||
left: -2.14286em;
|
||
width: 2.14286em;
|
||
top: 0.14286em;
|
||
text-align: center;
|
||
}
|
||
|
||
.icon-li.icon-lg {
|
||
left: -1.85714em;
|
||
}
|
||
|
||
.icon-border {
|
||
padding: .2em .25em .15em;
|
||
border: solid 0.08em #eee;
|
||
border-radius: .1em;
|
||
}
|
||
|
||
.pull-right {
|
||
float: right;
|
||
}
|
||
|
||
.pull-left {
|
||
float: left;
|
||
}
|
||
|
||
.icon.pull-left, .custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .pull-left.searchtab:before, .custom_bootstrap .pull-left[class^="icon-"], .custom_bootstrap .pull-left[class^="process-icon-"], .custom_bootstrap .pull-left.alert.alert-warning:before, .custom_bootstrap .pull-left.alert.alert-danger:before, .custom_bootstrap .pull-left.alert.alert-success:before, .custom_bootstrap .pull-left.alert.alert-info:before, .custom_bootstrap .pull-left.alert.alert-addons:before, .custom_bootstrap .pull-left.alert.alert-onboarding:before, .custom_bootstrap .pull-left.alert.alert-message:before, .custom_bootstrap .table td.dragHandle .pull-left.dragGroup:before, .custom_bootstrap .pull-left.mce-ico, .custom_bootstrap .chosen-container-single .chosen-single div b.pull-left, .custom_bootstrap .chosen-container-single .pull-left.chosen-search:before {
|
||
margin-right: .3em;
|
||
}
|
||
|
||
.icon.pull-right, .custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .pull-right.searchtab:before, .custom_bootstrap .pull-right[class^="icon-"], .custom_bootstrap .pull-right[class^="process-icon-"], .custom_bootstrap .pull-right.alert.alert-warning:before, .custom_bootstrap .pull-right.alert.alert-danger:before, .custom_bootstrap .pull-right.alert.alert-success:before, .custom_bootstrap .pull-right.alert.alert-info:before, .custom_bootstrap .pull-right.alert.alert-addons:before, .custom_bootstrap .pull-right.alert.alert-onboarding:before, .custom_bootstrap .pull-right.alert.alert-message:before, .custom_bootstrap .table td.dragHandle .pull-right.dragGroup:before, .custom_bootstrap .pull-right.mce-ico, .custom_bootstrap .chosen-container-single .chosen-single div b.pull-right, .custom_bootstrap .chosen-container-single .pull-right.chosen-search:before {
|
||
margin-left: .3em;
|
||
}
|
||
|
||
.icon-spin, .custom_bootstrap #content .process-icon-loading {
|
||
-webkit-animation: fa-spin 2s infinite linear;
|
||
animation: fa-spin 2s infinite linear;
|
||
}
|
||
|
||
.icon-pulse {
|
||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||
animation: fa-spin 1s infinite steps(8);
|
||
}
|
||
|
||
@-webkit-keyframes fa-spin {
|
||
0% {
|
||
-webkit-transform: rotate(0deg);
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
-webkit-transform: rotate(359deg);
|
||
transform: rotate(359deg);
|
||
}
|
||
}
|
||
|
||
@keyframes fa-spin {
|
||
0% {
|
||
-webkit-transform: rotate(0deg);
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
-webkit-transform: rotate(359deg);
|
||
transform: rotate(359deg);
|
||
}
|
||
}
|
||
|
||
.icon-rotate-90 {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||
-webkit-transform: rotate(90deg);
|
||
-ms-transform: rotate(90deg);
|
||
transform: rotate(90deg);
|
||
}
|
||
|
||
.icon-rotate-180 {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||
-webkit-transform: rotate(180deg);
|
||
-ms-transform: rotate(180deg);
|
||
transform: rotate(180deg);
|
||
}
|
||
|
||
.icon-rotate-270 {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||
-webkit-transform: rotate(270deg);
|
||
-ms-transform: rotate(270deg);
|
||
transform: rotate(270deg);
|
||
}
|
||
|
||
.icon-flip-horizontal {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
|
||
-webkit-transform: scale(-1, 1);
|
||
-ms-transform: scale(-1, 1);
|
||
transform: scale(-1, 1);
|
||
}
|
||
|
||
.icon-flip-vertical {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||
-webkit-transform: scale(1, -1);
|
||
-ms-transform: scale(1, -1);
|
||
transform: scale(1, -1);
|
||
}
|
||
|
||
:root .icon-rotate-90,
|
||
:root .icon-rotate-180,
|
||
:root .icon-rotate-270,
|
||
:root .icon-flip-horizontal,
|
||
:root .icon-flip-vertical {
|
||
filter: none;
|
||
}
|
||
|
||
.icon-stack {
|
||
position: relative;
|
||
display: inline-block;
|
||
width: 2em;
|
||
height: 2em;
|
||
line-height: 2em;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.icon-stack-1x, .icon-stack-2x {
|
||
position: absolute;
|
||
left: 0;
|
||
width: 100%;
|
||
text-align: center;
|
||
}
|
||
|
||
.icon-stack-1x {
|
||
line-height: inherit;
|
||
}
|
||
|
||
.icon-stack-2x {
|
||
font-size: 2em;
|
||
}
|
||
|
||
.icon-inverse {
|
||
color: #fff;
|
||
}
|
||
|
||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||
readers do not read off random characters that represent icons */
|
||
.icon-glass:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-music:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-search:before, .custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, .custom_bootstrap .icon-AdminSearch:before, .custom_bootstrap .chosen-container-single .chosen-search:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-envelope-o:before, .custom_bootstrap .icon-envelope-alt:before, .custom_bootstrap #content .process-icon-envelope:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-heart:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-star:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-star-o:before, .custom_bootstrap .icon-star-empty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-user:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-film:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-th-large:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-th:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-th-list:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-check:before, .custom_bootstrap #content .process-icon-ok:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-remove:before, .custom_bootstrap #content .process-icon-cancel:before,
|
||
.icon-close:before,
|
||
.icon-times:before,
|
||
.custom_bootstrap .icon-remove:before,
|
||
.custom_bootstrap #content .process-icon-cancel:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-search-plus:before, .custom_bootstrap .icon-zoom-in:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-search-minus:before, .custom_bootstrap .icon-zoom-out:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-power-off:before, .custom_bootstrap .icon-off:before, .custom_bootstrap #content .process-icon-off:before, .custom_bootstrap #content .process-icon-power:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-signal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-gear:before,
|
||
.icon-cog:before,
|
||
.custom_bootstrap .icon-AdminAdmin:before,
|
||
.custom_bootstrap #content .process-icon-configure:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-trash-o:before, .custom_bootstrap .icon-trash:before, .custom_bootstrap #content .process-icon-delete:before, .custom_bootstrap #content .process-icon-uninstall:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-home:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-o:before, .custom_bootstrap .icon-file-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-clock-o:before, .custom_bootstrap .icon-time:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-road:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-download:before, .custom_bootstrap .icon-download-alt:before, .custom_bootstrap #content .process-icon-download-alt:before, .custom_bootstrap #content .process-icon-save-date:before, .custom_bootstrap #content .process-icon-save-status:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-o-down:before, .custom_bootstrap .icon-download:before, .custom_bootstrap .icon-download-alt:before, .custom_bootstrap #content .process-icon-download-alt:before, .custom_bootstrap #content .process-icon-save-date:before, .custom_bootstrap #content .process-icon-save-status:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-o-up:before, .custom_bootstrap .icon-upload:before, .custom_bootstrap .icon-upload-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-inbox:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-play-circle-o:before, .custom_bootstrap .icon-play-circle:before, .custom_bootstrap .icon-play-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-rotate-right:before,
|
||
.icon-repeat:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-refresh:before, .custom_bootstrap #content .process-icon-update:before, .custom_bootstrap #content .process-icon-refresh:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-list-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-lock:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-flag:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-headphones:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-volume-off:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-volume-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-volume-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-qrcode:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-barcode:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tag:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tags:before, .custom_bootstrap .icon-AdminPriceRule:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-book:before, .custom_bootstrap .icon-AdminCatalog:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bookmark:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-print:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-camera:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-font:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bold:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-italic:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-text-height:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-text-width:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-align-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-align-center:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-align-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-align-justify:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-list:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dedent:before,
|
||
.icon-outdent:before,
|
||
.custom_bootstrap .icon-indent-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-indent:before, .custom_bootstrap .icon-indent-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-video-camera:before, .custom_bootstrap .icon-facetime-video:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-photo:before,
|
||
.icon-image:before,
|
||
.icon-picture-o:before,
|
||
.custom_bootstrap .icon-picture:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pencil:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-map-marker:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-adjust:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tint:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-edit:before, .custom_bootstrap #content .process-icon-edit:before,
|
||
.icon-pencil-square-o:before,
|
||
.custom_bootstrap .icon-edit:before,
|
||
.custom_bootstrap #content .process-icon-edit:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-share-square-o:before, .custom_bootstrap .icon-share:before, .custom_bootstrap .icon-share-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-check-square-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrows:before, .custom_bootstrap .icon-move:before, .custom_bootstrap .table td.dragHandle .dragGroup:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-step-backward:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-fast-backward:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-backward:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-play:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pause:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-stop:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-forward:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-fast-forward:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-step-forward:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-eject:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-plus-circle:before, .custom_bootstrap .icon-plus-sign:before, .custom_bootstrap #content .process-icon-newAttributes:before, .custom_bootstrap #content .process-icon-new:before, .custom_bootstrap #content .process-icon-new-url:before, .custom_bootstrap #content .process-icon-newCombination.toolbar-new:before, .custom_bootstrap #content .process-icon-plus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-minus-circle:before, .custom_bootstrap .icon-minus-sign:before, .custom_bootstrap #content .process-icon-newCombination.toolbar-cancel:before, .custom_bootstrap #content .process-icon-minus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-times-circle:before, .custom_bootstrap .icon-remove-sign:before, .custom_bootstrap #content .process-icon-close:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-check-circle:before, .custom_bootstrap .icon-ok-sign:before, .custom_bootstrap .alert.alert-success:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-question-circle:before, .custom_bootstrap .icon-question-sign:before, .custom_bootstrap #content .process-icon-help-new:before, .custom_bootstrap #content .process-icon-help:before, .custom_bootstrap .alert.alert-info:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-info-circle:before, .custom_bootstrap .icon-info-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-crosshairs:before, .custom_bootstrap .icon-screenshot:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-times-circle-o:before, .custom_bootstrap .icon-remove-circle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-check-circle-o:before, .custom_bootstrap .icon-ok-circle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ban:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mail-forward:before,
|
||
.icon-share:before,
|
||
.custom_bootstrap .icon-share-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-expand:before, .custom_bootstrap .icon-resize-full:before, .custom_bootstrap #content .process-icon-expand:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-compress:before, .custom_bootstrap .icon-resize-small:before, .custom_bootstrap #content .process-icon-compress:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-plus:before, .custom_bootstrap #content .process-icon-new-module:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-minus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-asterisk:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-exclamation-circle:before, .custom_bootstrap .icon-exclamation-sign:before, .custom_bootstrap .alert.alert-warning:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-gift:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-leaf:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-fire:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-eye:before, .custom_bootstrap .icon-eye-open:before, .custom_bootstrap #content .process-icon-preview:before, .custom_bootstrap #content .process-icon-previewURL:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-eye-slash:before, .custom_bootstrap .icon-eye-close:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-warning:before,
|
||
.icon-exclamation-triangle:before,
|
||
.custom_bootstrap .icon-warning-sign:before,
|
||
.custom_bootstrap .alert.alert-danger:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-plane:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-calendar:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-random:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-comment:before, .custom_bootstrap .alert.alert-message:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-magnet:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-retweet:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-shopping-cart:before, .custom_bootstrap #content .process-icon-cart:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-folder:before, .custom_bootstrap .icon-folder-close:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-folder-open:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrows-v:before, .custom_bootstrap .icon-resize-vertical:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrows-h:before, .custom_bootstrap .icon-resize-horizontal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bar-chart-o:before, .custom_bootstrap .icon-bar-chart:before, .custom_bootstrap .icon-AdminParentStats:before, .custom_bootstrap #content .process-icon-stats:before,
|
||
.icon-bar-chart:before,
|
||
.custom_bootstrap .icon-AdminParentStats:before,
|
||
.custom_bootstrap #content .process-icon-stats:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-twitter-square:before, .custom_bootstrap .icon-twitter-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-facebook-square:before, .custom_bootstrap .icon-facebook-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-camera-retro:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-key:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-gears:before,
|
||
.icon-cogs:before,
|
||
.custom_bootstrap .icon-AdminTools:before,
|
||
.custom_bootstrap #content .process-icon-cogs:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-comments:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-thumbs-o-up:before, .custom_bootstrap .icon-thumbs-up-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-thumbs-o-down:before, .custom_bootstrap .icon-thumbs-down-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-star-half:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-heart-o:before, .custom_bootstrap .icon-heart-empty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sign-out:before, .custom_bootstrap .icon-signout:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-linkedin-square:before, .custom_bootstrap .icon-linkedin-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-thumb-tack:before, .custom_bootstrap .icon-pushpin:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-external-link:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sign-in:before, .custom_bootstrap .icon-signin:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-trophy:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-github-square:before, .custom_bootstrap .icon-github-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-upload:before, .custom_bootstrap .icon-upload-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-lemon-o:before, .custom_bootstrap .icon-lemon:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-phone:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-square-o:before, .custom_bootstrap .icon-check-empty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bookmark-o:before, .custom_bootstrap .icon-bookmark-empty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-phone-square:before, .custom_bootstrap .icon-phone-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-twitter:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-facebook-f:before,
|
||
.icon-facebook:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-github:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-unlock:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-credit-card:before, .custom_bootstrap .icon-AdminParentOrders:before, .custom_bootstrap #content .process-icon-payment:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-rss:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hdd-o:before, .custom_bootstrap .icon-hdd:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bullhorn:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bell:before, .custom_bootstrap .icon-bell-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-certificate:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hand-o-right:before, .custom_bootstrap .icon-hand-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hand-o-left:before, .custom_bootstrap .icon-hand-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hand-o-up:before, .custom_bootstrap .icon-hand-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hand-o-down:before, .custom_bootstrap .icon-hand-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-left:before, .custom_bootstrap .icon-circle-arrow-left:before, .custom_bootstrap #content .process-icon-back:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-right:before, .custom_bootstrap .icon-circle-arrow-right:before, .custom_bootstrap #content .process-icon-next:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-up:before, .custom_bootstrap .icon-circle-arrow-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-down:before, .custom_bootstrap .icon-circle-arrow-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-globe:before, .custom_bootstrap .icon-AdminParentLocalization:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-wrench:before, .custom_bootstrap .icon-AdminParentPreferences:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tasks:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-filter:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-briefcase:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrows-alt:before, .custom_bootstrap .icon-fullscreen:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-group:before, .custom_bootstrap .icon-AdminParentCustomer:before,
|
||
.icon-users:before,
|
||
.custom_bootstrap .icon-group:before,
|
||
.custom_bootstrap .icon-AdminParentCustomer:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chain:before,
|
||
.icon-link:before,
|
||
.custom_bootstrap .icon-AdminShopUrl:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cloud:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-flask:before, .custom_bootstrap .icon-beaker:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cut:before,
|
||
.icon-scissors:before,
|
||
.custom_bootstrap .icon-cut:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-copy:before, .custom_bootstrap #content .process-icon-duplicate:before,
|
||
.icon-files-o:before,
|
||
.custom_bootstrap .icon-copy:before,
|
||
.custom_bootstrap #content .process-icon-duplicate:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-paperclip:before, .custom_bootstrap .icon-paper-clip:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-save:before, .custom_bootstrap #content .process-icon-save:before, .custom_bootstrap #content .process-icon-save-and-stay:before, .custom_bootstrap #content .process-icon-save-and-preview:before,
|
||
.icon-floppy-o:before,
|
||
.custom_bootstrap .icon-save:before,
|
||
.custom_bootstrap #content .process-icon-save:before,
|
||
.custom_bootstrap #content .process-icon-save-and-stay:before,
|
||
.custom_bootstrap #content .process-icon-save-and-preview:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-square:before, .custom_bootstrap .icon-sign-blank:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-navicon:before,
|
||
.icon-reorder:before,
|
||
.icon-bars:before,
|
||
.custom_bootstrap .icon-reorder:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-list-ul:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-list-ol:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-strikethrough:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-underline:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-table:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-magic:before, .custom_bootstrap .icon-AdminAttributeGenerator:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-truck:before, .custom_bootstrap .icon-AdminParentShipping:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pinterest:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pinterest-square:before, .custom_bootstrap .icon-pinterest-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-google-plus-square:before, .custom_bootstrap .icon-google-plus-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-google-plus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-money:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-caret-down:before, .custom_bootstrap #content .process-icon-dropdown:before, .custom_bootstrap .chosen-container-single .chosen-single div b:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-caret-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-caret-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-caret-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-columns:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-unsorted:before,
|
||
.icon-sort:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-down:before,
|
||
.icon-sort-desc:before,
|
||
.custom_bootstrap .icon-sort-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-up:before,
|
||
.icon-sort-asc:before,
|
||
.custom_bootstrap .icon-sort-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-envelope:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-linkedin:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-rotate-left:before, .custom_bootstrap #content .process-icon-reset:before,
|
||
.icon-undo:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-legal:before,
|
||
.icon-gavel:before,
|
||
.custom_bootstrap .icon-legal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dashboard:before, .custom_bootstrap .icon-AdminDashboard:before,
|
||
.icon-tachometer:before,
|
||
.custom_bootstrap .icon-dashboard:before,
|
||
.custom_bootstrap .icon-AdminDashboard:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-comment-o:before, .custom_bootstrap .icon-comment-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-comments-o:before, .custom_bootstrap .icon-comments-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-flash:before, .custom_bootstrap .icon-AdminFlash:before,
|
||
.icon-bolt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sitemap:before, .custom_bootstrap .icon-AdminShop:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-umbrella:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-paste:before,
|
||
.icon-clipboard:before,
|
||
.custom_bootstrap .icon-paste:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-lightbulb-o:before, .custom_bootstrap .icon-lightbulb:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-exchange:before, .custom_bootstrap #content .process-icon-partial_refund:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cloud-download:before, .custom_bootstrap #content .process-icon-download:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cloud-upload:before, .custom_bootstrap #content .process-icon-import:before, .custom_bootstrap #content .process-icon-upload:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-user-md:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-stethoscope:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-suitcase:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bell-o:before, .custom_bootstrap .icon-bell:before, .custom_bootstrap .icon-bell-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-coffee:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cutlery:before, .custom_bootstrap .icon-food:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-text-o:before, .custom_bootstrap .icon-file-text-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-building-o:before, .custom_bootstrap .icon-building:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hospital-o:before, .custom_bootstrap .icon-hospital:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ambulance:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-medkit:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-fighter-jet:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-beer:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-h-square:before, .custom_bootstrap .icon-h-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-plus-square:before, .custom_bootstrap .icon-plus-sign-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-double-left:before, .custom_bootstrap .icon-double-angle-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-double-right:before, .custom_bootstrap .icon-double-angle-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-double-up:before, .custom_bootstrap .icon-double-angle-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-double-down:before, .custom_bootstrap .icon-double-angle-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angle-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-desktop:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-laptop:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tablet:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mobile-phone:before,
|
||
.icon-mobile:before,
|
||
.custom_bootstrap .icon-mobile-phone:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-circle-o:before, .custom_bootstrap .icon-circle-blank:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-quote-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-quote-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-spinner:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-circle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mail-reply:before, .custom_bootstrap #content .process-icon-mail-reply:before,
|
||
.icon-reply:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-github-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-folder-o:before, .custom_bootstrap .icon-folder-close-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-folder-open-o:before, .custom_bootstrap .icon-folder-open-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-smile-o:before, .custom_bootstrap .icon-smile:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-frown-o:before, .custom_bootstrap .icon-frown:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-meh-o:before, .custom_bootstrap .icon-meh:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-gamepad:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-keyboard-o:before, .custom_bootstrap .icon-keyboard:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-flag-o:before, .custom_bootstrap .icon-flag-alt:before, .custom_bootstrap #content .process-icon-flag:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-flag-checkered:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-terminal:before, .custom_bootstrap #content .process-icon-terminal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-code:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mail-reply-all:before,
|
||
.icon-reply-all:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-star-half-empty:before,
|
||
.icon-star-half-full:before,
|
||
.icon-star-half-o:before,
|
||
.custom_bootstrap .icon-star-half-empty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-location-arrow:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-crop:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-code-fork:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-unlink:before,
|
||
.icon-chain-broken:before,
|
||
.custom_bootstrap .icon-unlink:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-question:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-info:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-exclamation:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-superscript:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-subscript:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-eraser:before, .custom_bootstrap #content .process-icon-eraser:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-puzzle-piece:before, .custom_bootstrap .icon-AdminParentModules:before, .custom_bootstrap #content .process-icon-modules-list:before, .custom_bootstrap .alert.alert-addons:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-microphone:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-microphone-slash:before, .custom_bootstrap .icon-microphone-off:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-shield:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-calendar-o:before, .custom_bootstrap .icon-calendar-empty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-fire-extinguisher:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-rocket:before, .custom_bootstrap .alert.alert-onboarding:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-maxcdn:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-circle-left:before, .custom_bootstrap .icon-chevron-sign-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-circle-right:before, .custom_bootstrap .icon-chevron-sign-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-circle-up:before, .custom_bootstrap .icon-chevron-sign-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-chevron-circle-down:before, .custom_bootstrap .icon-chevron-sign-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-html5:before, .custom_bootstrap #content .process-icon-themes:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-css3:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-anchor:before, .custom_bootstrap #content .process-icon-anchor:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-unlock-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bullseye:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ellipsis-h:before, .custom_bootstrap .icon-ellipsis-horizontal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ellipsis-v:before, .custom_bootstrap .icon-ellipsis-vertical:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-rss-square:before, .custom_bootstrap .icon-rss-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-play-circle:before, .custom_bootstrap .icon-play-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ticket:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-minus-square:before, .custom_bootstrap .icon-minus-sign-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-minus-square-o:before, .custom_bootstrap .icon-check-minus:before, .custom_bootstrap .icon-collapse-alt:before {
|
||
content: "\f117";
|
||
}
|
||
|
||
.icon-level-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-level-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-check-square:before, .custom_bootstrap .icon-check-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pencil-square:before, .custom_bootstrap .icon-edit-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-external-link-square:before, .custom_bootstrap .icon-external-link-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-share-square:before, .custom_bootstrap .icon-share-sign:before, .custom_bootstrap #content .process-icon-export:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-compass:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-toggle-down:before,
|
||
.icon-caret-square-o-down:before,
|
||
.custom_bootstrap .icon-collapse:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-toggle-up:before,
|
||
.icon-caret-square-o-up:before,
|
||
.custom_bootstrap .icon-collapse-top:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-toggle-right:before,
|
||
.icon-caret-square-o-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-euro:before,
|
||
.icon-eur:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-gbp:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dollar:before,
|
||
.icon-usd:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-rupee:before,
|
||
.icon-inr:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cny:before,
|
||
.icon-rmb:before,
|
||
.icon-yen:before,
|
||
.icon-jpy:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ruble:before,
|
||
.icon-rouble:before,
|
||
.icon-rub:before,
|
||
.custom_bootstrap .icon-cny:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-won:before,
|
||
.icon-krw:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bitcoin:before,
|
||
.icon-btc:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-text:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-alpha-asc:before, .custom_bootstrap .icon-sort-by-alphabet:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-alpha-desc:before, .custom_bootstrap .icon-sort-by-alphabet-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-amount-asc:before, .custom_bootstrap .icon-sort-by-attributes:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-amount-desc:before, .custom_bootstrap .icon-sort-by-attributes-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-numeric-asc:before, .custom_bootstrap .icon-sort-by-order:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sort-numeric-desc:before, .custom_bootstrap .icon-sort-by-order-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-thumbs-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-thumbs-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-youtube-square:before, .custom_bootstrap .icon-youtube-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-youtube:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-xing:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-xing-square:before, .custom_bootstrap .icon-xing-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-youtube-play:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dropbox:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-stack-overflow:before, .custom_bootstrap .icon-stackexchange:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-instagram:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-flickr:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-adn:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bitbucket:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bitbucket-square:before, .custom_bootstrap .icon-bitbucket-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tumblr:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tumblr-square:before, .custom_bootstrap .icon-tumblr-sign:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-long-arrow-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-long-arrow-up:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-long-arrow-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-long-arrow-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-apple:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-windows:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-android:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-linux:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dribbble:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-skype:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-foursquare:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-trello:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-female:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-male:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-gittip:before,
|
||
.icon-gratipay:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sun-o:before, .custom_bootstrap .icon-sun:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-moon-o:before, .custom_bootstrap .icon-moon:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-archive:before, .custom_bootstrap .icon-AdminStock:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bug:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-vk:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-weibo:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-renren:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pagelines:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-stack-exchange:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-o-right:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-arrow-circle-o-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-toggle-left:before,
|
||
.icon-caret-square-o-left:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dot-circle-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-wheelchair:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-vimeo-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-turkish-lira:before,
|
||
.icon-try:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-plus-square-o:before, .custom_bootstrap .icon-expand-alt:before {
|
||
content: "\f116";
|
||
}
|
||
|
||
.icon-space-shuttle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-slack:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-envelope-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-wordpress:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-openid:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-institution:before,
|
||
.icon-bank:before,
|
||
.icon-university:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mortar-board:before,
|
||
.icon-graduation-cap:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-yahoo:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-google:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-reddit:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-reddit-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-stumbleupon-circle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-stumbleupon:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-delicious:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-digg:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pied-piper:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pied-piper-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-drupal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-joomla:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-language:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-fax:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-building:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-child:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-paw:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-spoon:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cube:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cubes:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-behance:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-behance-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-steam:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-steam-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-recycle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-automobile:before,
|
||
.icon-car:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cab:before,
|
||
.icon-taxi:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tree:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-spotify:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-deviantart:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-soundcloud:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-database:before, .custom_bootstrap #content .process-icon-database:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-pdf-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-word-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-excel-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-powerpoint-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-photo-o:before,
|
||
.icon-file-picture-o:before,
|
||
.icon-file-image-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-zip-o:before,
|
||
.icon-file-archive-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-sound-o:before,
|
||
.icon-file-audio-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-movie-o:before,
|
||
.icon-file-video-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-file-code-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-vine:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-codepen:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-jsfiddle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-life-bouy:before,
|
||
.icon-life-buoy:before,
|
||
.icon-life-saver:before,
|
||
.icon-support:before,
|
||
.icon-life-ring:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-circle-o-notch:before, .custom_bootstrap #content .process-icon-loading:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ra:before,
|
||
.icon-rebel:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ge:before,
|
||
.icon-empire:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-git-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-git:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hacker-news:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tencent-weibo:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-qq:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-wechat:before,
|
||
.icon-weixin:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-send:before,
|
||
.icon-paper-plane:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-send-o:before,
|
||
.icon-paper-plane-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-history:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-genderless:before,
|
||
.icon-circle-thin:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-header:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-paragraph:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sliders:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-share-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-share-alt-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bomb:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-soccer-ball-o:before,
|
||
.icon-futbol-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-tty:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-binoculars:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-plug:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-slideshare:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-twitch:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-yelp:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-newspaper-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-wifi:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-calculator:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-paypal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-google-wallet:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc-visa:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc-mastercard:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc-discover:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc-amex:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc-paypal:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc-stripe:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bell-slash:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bell-slash-o:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-trash:before, .custom_bootstrap #content .process-icon-delete:before, .custom_bootstrap #content .process-icon-uninstall:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-copyright:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-at:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-eyedropper:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-paint-brush:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-birthday-cake:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-area-chart:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pie-chart:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-line-chart:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-lastfm:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-lastfm-square:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-toggle-off:before, .custom_bootstrap #content .process-icon-toggle-off:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-toggle-on:before, .custom_bootstrap #content .process-icon-toggle-on:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bicycle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-bus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ioxhost:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-angellist:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cc:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-shekel:before,
|
||
.icon-sheqel:before,
|
||
.icon-ils:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-meanpath:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-buysellads:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-connectdevelop:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-dashcube:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-forumbee:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-leanpub:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-sellsy:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-shirtsinbulk:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-simplybuilt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-skyatlas:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cart-plus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-cart-arrow-down:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-diamond:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-ship:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-user-secret:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-motorcycle:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-street-view:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-heartbeat:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-venus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mars:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mercury:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-transgender:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-transgender-alt:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-venus-double:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mars-double:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-venus-mars:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mars-stroke:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mars-stroke-v:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-mars-stroke-h:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-neuter:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-facebook-official:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-pinterest-p:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-whatsapp:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-server:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-user-plus:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-user-times:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-hotel:before,
|
||
.icon-bed:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-viacoin:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-train:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-subway:before {
|
||
content: "";
|
||
}
|
||
|
||
.icon-medium:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap {
|
||
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
|
||
}
|
||
|
||
.custom_bootstrap article,
|
||
.custom_bootstrap aside,
|
||
.custom_bootstrap details,
|
||
.custom_bootstrap figcaption,
|
||
.custom_bootstrap figure,
|
||
.custom_bootstrap footer,
|
||
.custom_bootstrap header,
|
||
.custom_bootstrap hgroup,
|
||
.custom_bootstrap main,
|
||
.custom_bootstrap nav,
|
||
.custom_bootstrap section,
|
||
.custom_bootstrap summary {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap audio,
|
||
.custom_bootstrap canvas,
|
||
.custom_bootstrap progress,
|
||
.custom_bootstrap video {
|
||
display: inline-block;
|
||
vertical-align: baseline;
|
||
}
|
||
|
||
.custom_bootstrap audio:not([controls]) {
|
||
display: none;
|
||
height: 0;
|
||
}
|
||
|
||
.custom_bootstrap [hidden],
|
||
.custom_bootstrap template {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap a {
|
||
background: transparent;
|
||
}
|
||
|
||
.custom_bootstrap a:active,
|
||
.custom_bootstrap a:hover {
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap abbr[title] {
|
||
border-bottom: 1px dotted;
|
||
}
|
||
|
||
.custom_bootstrap b,
|
||
.custom_bootstrap strong {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap dfn {
|
||
font-style: italic;
|
||
}
|
||
|
||
.custom_bootstrap h1 {
|
||
font-size: 2em;
|
||
margin: 0.67em 0;
|
||
}
|
||
|
||
.custom_bootstrap mark {
|
||
background: #ff0;
|
||
color: #000;
|
||
}
|
||
|
||
.custom_bootstrap small {
|
||
font-size: 80%;
|
||
}
|
||
|
||
.custom_bootstrap sub,
|
||
.custom_bootstrap sup {
|
||
font-size: 75%;
|
||
line-height: 0;
|
||
position: relative;
|
||
vertical-align: baseline;
|
||
}
|
||
|
||
.custom_bootstrap sup {
|
||
top: -0.5em;
|
||
}
|
||
|
||
.custom_bootstrap sub {
|
||
bottom: -0.25em;
|
||
}
|
||
|
||
.custom_bootstrap img {
|
||
border: 0;
|
||
}
|
||
|
||
.custom_bootstrap svg:not(:root) {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap figure {
|
||
margin: 1em 40px;
|
||
}
|
||
|
||
.custom_bootstrap hr {
|
||
-moz-box-sizing: content-box;
|
||
box-sizing: content-box;
|
||
height: 0;
|
||
}
|
||
|
||
.custom_bootstrap pre {
|
||
overflow: auto;
|
||
}
|
||
|
||
.custom_bootstrap code,
|
||
.custom_bootstrap kbd,
|
||
.custom_bootstrap pre,
|
||
.custom_bootstrap samp {
|
||
font-family: monospace, monospace;
|
||
font-size: 1em;
|
||
}
|
||
|
||
.custom_bootstrap button,
|
||
.custom_bootstrap input,
|
||
.custom_bootstrap optgroup,
|
||
.custom_bootstrap select,
|
||
.custom_bootstrap textarea {
|
||
color: inherit;
|
||
font: inherit;
|
||
vertical-align: inherit;
|
||
}
|
||
|
||
.custom_bootstrap button {
|
||
overflow: visible;
|
||
}
|
||
|
||
.custom_bootstrap button,
|
||
.custom_bootstrap select {
|
||
text-transform: none;
|
||
}
|
||
|
||
.custom_bootstrap button,
|
||
.custom_bootstrap html input[type="button"],
|
||
.custom_bootstrap input[type="reset"],
|
||
.custom_bootstrap input[type="submit"] {
|
||
-webkit-appearance: button;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap button[disabled],
|
||
.custom_bootstrap html input[disabled] {
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap button::-moz-focus-inner,
|
||
.custom_bootstrap input::-moz-focus-inner {
|
||
border: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap input {
|
||
line-height: normal;
|
||
}
|
||
|
||
.custom_bootstrap input[type="checkbox"],
|
||
.custom_bootstrap input[type="radio"] {
|
||
box-sizing: border-box;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap input[type="number"]::-webkit-inner-spin-button,
|
||
.custom_bootstrap input[type="number"]::-webkit-outer-spin-button {
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap input[type="search"] {
|
||
-webkit-appearance: textfield;
|
||
-moz-box-sizing: content-box;
|
||
-webkit-box-sizing: content-box;
|
||
box-sizing: content-box;
|
||
}
|
||
|
||
.custom_bootstrap input[type="search"]::-webkit-search-cancel-button,
|
||
.custom_bootstrap input[type="search"]::-webkit-search-decoration {
|
||
-webkit-appearance: none;
|
||
}
|
||
|
||
.custom_bootstrap fieldset {
|
||
border: 1px solid #c0c0c0;
|
||
margin: 0 2px;
|
||
padding: 0.35em 0.625em 0.75em;
|
||
}
|
||
|
||
.custom_bootstrap legend {
|
||
border: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap textarea {
|
||
overflow: auto;
|
||
}
|
||
|
||
.custom_bootstrap optgroup {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap table {
|
||
border-collapse: collapse;
|
||
border-spacing: 0;
|
||
}
|
||
|
||
@media (max-width: 991px) {
|
||
.custom_bootstrap table {
|
||
border: none;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap td,
|
||
.custom_bootstrap th {
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap {
|
||
/* jQuery Growl
|
||
* Copyright 2013 Kevin Sylvestre
|
||
* 1.1.4
|
||
*/
|
||
/*!
|
||
* Ladda
|
||
* http://lab.hakim.se/ladda
|
||
* MIT licensed
|
||
*
|
||
* Copyright (C) 2013 Hakim El Hattab, http://hakim.se
|
||
*/
|
||
/*
|
||
Version: 3.4.6 Timestamp: Sat Mar 22 22:30:15 EDT 2014
|
||
*/
|
||
/* results */
|
||
/*
|
||
disabled look for disabled choices in the results dropdown
|
||
*/
|
||
/* disabled styles */
|
||
/* multiselect */
|
||
/* disabled styles */
|
||
/* end multiselect */
|
||
/* Retina-ize icons */
|
||
}
|
||
|
||
.custom_bootstrap * {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap *:before,
|
||
.custom_bootstrap *:after {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap html {
|
||
font-size: 62.5%;
|
||
-webkit-tap-highlight-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap body {
|
||
font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
||
font-size: 12px;
|
||
line-height: 1.42857;
|
||
color: #555555;
|
||
background-color: #EFF1F2;
|
||
}
|
||
|
||
.custom_bootstrap input,
|
||
.custom_bootstrap button,
|
||
.custom_bootstrap select,
|
||
.custom_bootstrap textarea {
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
}
|
||
|
||
.custom_bootstrap a {
|
||
color: #00aff0;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap a:hover, .custom_bootstrap a:focus {
|
||
color: #0077a4;
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.custom_bootstrap a:focus {
|
||
outline: thin dotted;
|
||
outline: 5px auto -webkit-focus-ring-color;
|
||
outline-offset: -2px;
|
||
}
|
||
|
||
.custom_bootstrap figure {
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap img {
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .img-responsive {
|
||
display: block;
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap .img-rounded {
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .img-thumbnail {
|
||
padding: 4px;
|
||
line-height: 1.42857;
|
||
background-color: #EFF1F2;
|
||
border: 1px solid #ddd;
|
||
border-radius: 3px;
|
||
-webkit-transition: all 0.2s ease-in-out;
|
||
-o-transition: all 0.2s ease-in-out;
|
||
transition: all 0.2s ease-in-out;
|
||
display: inline-block;
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap .img-circle {
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.custom_bootstrap hr {
|
||
margin-top: 17px;
|
||
margin-bottom: 17px;
|
||
border: 0;
|
||
border-top: 1px solid #eeeeee;
|
||
}
|
||
|
||
.custom_bootstrap .sr-only {
|
||
position: absolute;
|
||
width: 1px;
|
||
height: 1px;
|
||
margin: -1px;
|
||
padding: 0;
|
||
overflow: hidden;
|
||
clip: rect(0, 0, 0, 0);
|
||
border: 0;
|
||
}
|
||
|
||
.custom_bootstrap .sr-only-focusable:active, .custom_bootstrap .sr-only-focusable:focus {
|
||
position: static;
|
||
width: auto;
|
||
height: auto;
|
||
margin: 0;
|
||
overflow: visible;
|
||
clip: auto;
|
||
}
|
||
|
||
.custom_bootstrap h1, .custom_bootstrap h2, .custom_bootstrap h3, .custom_bootstrap h4, .custom_bootstrap h5, .custom_bootstrap h6,
|
||
.custom_bootstrap .h1, .custom_bootstrap .h2, .custom_bootstrap .h3, .custom_bootstrap .h4, .custom_bootstrap .h5, .custom_bootstrap .h6 {
|
||
font-family: "Ubuntu Condensed", Helvetica, Arial, sans-serif;
|
||
font-weight: 400;
|
||
line-height: 1.1;
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap h1 small,
|
||
.custom_bootstrap h1 .small, .custom_bootstrap h2 small,
|
||
.custom_bootstrap h2 .small, .custom_bootstrap h3 small,
|
||
.custom_bootstrap h3 .small, .custom_bootstrap h4 small,
|
||
.custom_bootstrap h4 .small, .custom_bootstrap h5 small,
|
||
.custom_bootstrap h5 .small, .custom_bootstrap h6 small,
|
||
.custom_bootstrap h6 .small,
|
||
.custom_bootstrap .h1 small,
|
||
.custom_bootstrap .h1 .small, .custom_bootstrap .h2 small,
|
||
.custom_bootstrap .h2 .small, .custom_bootstrap .h3 small,
|
||
.custom_bootstrap .h3 .small, .custom_bootstrap .h4 small,
|
||
.custom_bootstrap .h4 .small, .custom_bootstrap .h5 small,
|
||
.custom_bootstrap .h5 .small, .custom_bootstrap .h6 small,
|
||
.custom_bootstrap .h6 .small {
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap h1, .custom_bootstrap .h1,
|
||
.custom_bootstrap h2, .custom_bootstrap .h2,
|
||
.custom_bootstrap h3, .custom_bootstrap .h3 {
|
||
margin-top: 17px;
|
||
margin-bottom: 8.5px;
|
||
}
|
||
|
||
.custom_bootstrap h1 small,
|
||
.custom_bootstrap h1 .small, .custom_bootstrap .h1 small,
|
||
.custom_bootstrap .h1 .small,
|
||
.custom_bootstrap h2 small,
|
||
.custom_bootstrap h2 .small, .custom_bootstrap .h2 small,
|
||
.custom_bootstrap .h2 .small,
|
||
.custom_bootstrap h3 small,
|
||
.custom_bootstrap h3 .small, .custom_bootstrap .h3 small,
|
||
.custom_bootstrap .h3 .small {
|
||
font-size: 65%;
|
||
}
|
||
|
||
.custom_bootstrap h4, .custom_bootstrap .h4,
|
||
.custom_bootstrap h5, .custom_bootstrap .h5,
|
||
.custom_bootstrap h6, .custom_bootstrap .h6 {
|
||
margin-top: 8.5px;
|
||
margin-bottom: 8.5px;
|
||
}
|
||
|
||
.custom_bootstrap h4 small,
|
||
.custom_bootstrap h4 .small, .custom_bootstrap .h4 small,
|
||
.custom_bootstrap .h4 .small,
|
||
.custom_bootstrap h5 small,
|
||
.custom_bootstrap h5 .small, .custom_bootstrap .h5 small,
|
||
.custom_bootstrap .h5 .small,
|
||
.custom_bootstrap h6 small,
|
||
.custom_bootstrap h6 .small, .custom_bootstrap .h6 small,
|
||
.custom_bootstrap .h6 .small {
|
||
font-size: 75%;
|
||
}
|
||
|
||
.custom_bootstrap h1, .custom_bootstrap .h1 {
|
||
font-size: 31px;
|
||
}
|
||
|
||
.custom_bootstrap h2, .custom_bootstrap .h2 {
|
||
font-size: 25px;
|
||
}
|
||
|
||
.custom_bootstrap h3, .custom_bootstrap .h3 {
|
||
font-size: 21px;
|
||
}
|
||
|
||
.custom_bootstrap h4, .custom_bootstrap .h4 {
|
||
font-size: 15px;
|
||
}
|
||
|
||
.custom_bootstrap h5, .custom_bootstrap .h5 {
|
||
font-size: 12px;
|
||
}
|
||
|
||
.custom_bootstrap h6, .custom_bootstrap .h6 {
|
||
font-size: 11px;
|
||
}
|
||
|
||
.custom_bootstrap p {
|
||
margin: 0 0 8.5px;
|
||
}
|
||
|
||
.custom_bootstrap .lead {
|
||
margin-bottom: 17px;
|
||
font-size: 13px;
|
||
font-weight: 200;
|
||
line-height: 1.4;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .lead {
|
||
font-size: 18px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap small,
|
||
.custom_bootstrap .small {
|
||
font-size: 85%;
|
||
margin-top: 15px;
|
||
font-size: 13px;
|
||
padding: 0 5px;
|
||
padding-top: 5px;
|
||
}
|
||
|
||
.custom_bootstrap cite {
|
||
font-style: normal;
|
||
}
|
||
|
||
.custom_bootstrap mark,
|
||
.custom_bootstrap .mark {
|
||
background-color: #fef1d3;
|
||
padding: .2em;
|
||
}
|
||
|
||
.custom_bootstrap .text-left {
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .text-right {
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .text-center {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .text-justify {
|
||
text-align: justify;
|
||
}
|
||
|
||
.custom_bootstrap .text-nowrap {
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .text-muted, .custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .no_notifs {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .text-primary {
|
||
color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap a.text-primary:hover {
|
||
color: #008abd;
|
||
}
|
||
|
||
.custom_bootstrap .text-success {
|
||
color: #3c763d;
|
||
}
|
||
|
||
.custom_bootstrap a.text-success:hover {
|
||
color: #2b542c;
|
||
}
|
||
|
||
.custom_bootstrap .text-info {
|
||
color: #31708f;
|
||
}
|
||
|
||
.custom_bootstrap a.text-info:hover {
|
||
color: #245269;
|
||
}
|
||
|
||
.custom_bootstrap .text-warning {
|
||
color: #8a6d3b;
|
||
}
|
||
|
||
.custom_bootstrap a.text-warning:hover {
|
||
color: #66512c;
|
||
}
|
||
|
||
.custom_bootstrap .text-danger {
|
||
color: #a94442;
|
||
}
|
||
|
||
.custom_bootstrap a.text-danger:hover {
|
||
color: #843534;
|
||
}
|
||
|
||
.custom_bootstrap .bg-primary {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .bg-primary {
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap a.bg-primary:hover {
|
||
background-color: #008abd;
|
||
}
|
||
|
||
.custom_bootstrap .bg-success {
|
||
background-color: #cce9d7;
|
||
}
|
||
|
||
.custom_bootstrap a.bg-success:hover {
|
||
background-color: #a8dabb;
|
||
}
|
||
|
||
.custom_bootstrap .bg-info {
|
||
background-color: #d3f1f7;
|
||
}
|
||
|
||
.custom_bootstrap a.bg-info:hover {
|
||
background-color: #a8e3ef;
|
||
}
|
||
|
||
.custom_bootstrap .bg-warning {
|
||
background-color: #fef1d3;
|
||
}
|
||
|
||
.custom_bootstrap a.bg-warning:hover {
|
||
background-color: #fde1a1;
|
||
}
|
||
|
||
.custom_bootstrap .bg-danger {
|
||
background-color: #f9cce1;
|
||
}
|
||
|
||
.custom_bootstrap a.bg-danger:hover {
|
||
background-color: #f49ec6;
|
||
}
|
||
|
||
.custom_bootstrap .page-header {
|
||
padding-bottom: 7.5px;
|
||
margin: 34px 0 17px;
|
||
border-bottom: 1px solid #eeeeee;
|
||
}
|
||
|
||
.custom_bootstrap ul,
|
||
.custom_bootstrap ol {
|
||
margin-top: 0;
|
||
margin-bottom: 8.5px;
|
||
}
|
||
|
||
.custom_bootstrap ul ul,
|
||
.custom_bootstrap ul ol,
|
||
.custom_bootstrap ol ul,
|
||
.custom_bootstrap ol ol {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .list-unstyled, .custom_bootstrap .list-inline {
|
||
padding-left: 0;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap .list-inline {
|
||
margin-left: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .list-inline > li {
|
||
display: inline-block;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap dl {
|
||
margin-top: 0;
|
||
margin-bottom: 17px;
|
||
}
|
||
|
||
.custom_bootstrap dt,
|
||
.custom_bootstrap dd {
|
||
line-height: 1.42857;
|
||
}
|
||
|
||
.custom_bootstrap dt {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap dd {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .dl-horizontal dd:before, .custom_bootstrap .dl-horizontal dd:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .dl-horizontal dd:after {
|
||
clear: both;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .dl-horizontal dt {
|
||
float: left;
|
||
width: 160px;
|
||
clear: left;
|
||
text-align: right;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .dl-horizontal dd {
|
||
margin-left: 180px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap abbr[title],
|
||
.custom_bootstrap abbr[data-original-title] {
|
||
cursor: help;
|
||
border-bottom: 1px dotted #999999;
|
||
}
|
||
|
||
.custom_bootstrap .initialism {
|
||
font-size: 90%;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.custom_bootstrap blockquote {
|
||
padding: 8.5px 17px;
|
||
margin: 0 0 17px;
|
||
font-size: 15px;
|
||
border-left: 5px solid #eeeeee;
|
||
}
|
||
|
||
.custom_bootstrap blockquote p:last-child,
|
||
.custom_bootstrap blockquote ul:last-child,
|
||
.custom_bootstrap blockquote ol:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap blockquote footer,
|
||
.custom_bootstrap blockquote small,
|
||
.custom_bootstrap blockquote .small {
|
||
display: block;
|
||
font-size: 80%;
|
||
line-height: 1.42857;
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap blockquote footer:before,
|
||
.custom_bootstrap blockquote small:before,
|
||
.custom_bootstrap blockquote .small:before {
|
||
content: '\2014 \00A0';
|
||
}
|
||
|
||
.custom_bootstrap .blockquote-reverse,
|
||
.custom_bootstrap blockquote.pull-right {
|
||
padding-right: 15px;
|
||
padding-left: 0;
|
||
border-right: 5px solid #eeeeee;
|
||
border-left: 0;
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .blockquote-reverse footer:before,
|
||
.custom_bootstrap .blockquote-reverse small:before,
|
||
.custom_bootstrap .blockquote-reverse .small:before,
|
||
.custom_bootstrap blockquote.pull-right footer:before,
|
||
.custom_bootstrap blockquote.pull-right small:before,
|
||
.custom_bootstrap blockquote.pull-right .small:before {
|
||
content: '';
|
||
}
|
||
|
||
.custom_bootstrap .blockquote-reverse footer:after,
|
||
.custom_bootstrap .blockquote-reverse small:after,
|
||
.custom_bootstrap .blockquote-reverse .small:after,
|
||
.custom_bootstrap blockquote.pull-right footer:after,
|
||
.custom_bootstrap blockquote.pull-right small:after,
|
||
.custom_bootstrap blockquote.pull-right .small:after {
|
||
content: '\00A0 \2014';
|
||
}
|
||
|
||
.custom_bootstrap blockquote:before,
|
||
.custom_bootstrap blockquote:after {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap address {
|
||
margin-bottom: 17px;
|
||
font-style: normal;
|
||
line-height: 1.42857;
|
||
}
|
||
|
||
.custom_bootstrap code,
|
||
.custom_bootstrap kbd,
|
||
.custom_bootstrap pre,
|
||
.custom_bootstrap samp {
|
||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||
}
|
||
|
||
.custom_bootstrap code {
|
||
padding: 2px 4px;
|
||
font-size: 90%;
|
||
color: #c7254e;
|
||
background-color: #f9f2f4;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap kbd {
|
||
padding: 2px 4px;
|
||
font-size: 90%;
|
||
color: #fff;
|
||
background-color: #333;
|
||
border-radius: 3px;
|
||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||
}
|
||
|
||
.custom_bootstrap pre {
|
||
display: block;
|
||
padding: 8px;
|
||
margin: 0 0 8.5px;
|
||
font-size: 11px;
|
||
line-height: 1.42857;
|
||
word-break: break-all;
|
||
word-wrap: break-word;
|
||
color: #333333;
|
||
background-color: #f5f5f5;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap pre code {
|
||
padding: 0;
|
||
font-size: inherit;
|
||
color: inherit;
|
||
white-space: pre-wrap;
|
||
background-color: transparent;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .pre-scrollable {
|
||
max-height: 340px;
|
||
overflow-y: scroll;
|
||
}
|
||
|
||
.custom_bootstrap .container {
|
||
margin-right: auto;
|
||
margin-left: auto;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .container:before, .custom_bootstrap .container:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .container:after {
|
||
clear: both;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .container {
|
||
width: 728px;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) {
|
||
.custom_bootstrap .container {
|
||
width: 940px;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .container {
|
||
width: 1170px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .container-fluid {
|
||
margin-right: auto;
|
||
margin-left: auto;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .container-fluid:before, .custom_bootstrap .container-fluid:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .container-fluid:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .row, .custom_bootstrap .multishop-well {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .row:before, .custom_bootstrap .multishop-well:before, .custom_bootstrap .row:after, .custom_bootstrap .multishop-well:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .row:after, .custom_bootstrap .multishop-well:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-1, .custom_bootstrap .col-sm-1, .custom_bootstrap .col-md-1, .custom_bootstrap .col-lg-1, .custom_bootstrap .col-xs-2, .custom_bootstrap .col-sm-2, .custom_bootstrap .col-md-2, .custom_bootstrap .col-lg-2, .custom_bootstrap .col-xs-3, .custom_bootstrap .col-sm-3, .custom_bootstrap .col-md-3, .custom_bootstrap .col-lg-3, .custom_bootstrap .col-xs-4, .custom_bootstrap .col-sm-4, .custom_bootstrap .col-md-4, .custom_bootstrap .col-lg-4, .custom_bootstrap .col-xs-5, .custom_bootstrap .col-sm-5, .custom_bootstrap .col-md-5, .custom_bootstrap .col-lg-5, .custom_bootstrap .col-xs-6, .custom_bootstrap .col-sm-6, .custom_bootstrap .col-md-6, .custom_bootstrap .col-lg-6, .custom_bootstrap .col-xs-7, .custom_bootstrap .col-sm-7, .custom_bootstrap .col-md-7, .custom_bootstrap .col-lg-7, .custom_bootstrap .col-xs-8, .custom_bootstrap .col-sm-8, .custom_bootstrap .col-md-8, .custom_bootstrap .col-lg-8, .custom_bootstrap .col-xs-9, .custom_bootstrap .col-sm-9, .custom_bootstrap .col-md-9, .custom_bootstrap .col-lg-9, .custom_bootstrap .col-xs-10, .custom_bootstrap .col-sm-10, .custom_bootstrap .col-md-10, .custom_bootstrap .col-lg-10, .custom_bootstrap .col-xs-11, .custom_bootstrap .col-sm-11, .custom_bootstrap .col-md-11, .custom_bootstrap .col-lg-11, .custom_bootstrap .col-xs-12, .custom_bootstrap .col-sm-12, .custom_bootstrap .col-md-12, .custom_bootstrap .col-lg-12 {
|
||
position: relative;
|
||
min-height: 1px;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-1, .custom_bootstrap .col-xs-2, .custom_bootstrap .col-xs-3, .custom_bootstrap .col-xs-4, .custom_bootstrap .col-xs-5, .custom_bootstrap .col-xs-6, .custom_bootstrap .col-xs-7, .custom_bootstrap .col-xs-8, .custom_bootstrap .col-xs-9, .custom_bootstrap .col-xs-10, .custom_bootstrap .col-xs-11, .custom_bootstrap .col-xs-12 {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-1 {
|
||
width: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-2 {
|
||
width: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-3 {
|
||
width: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-4 {
|
||
width: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-5 {
|
||
width: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-6 {
|
||
width: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-7 {
|
||
width: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-8 {
|
||
width: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-9 {
|
||
width: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-10 {
|
||
width: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-11 {
|
||
width: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-12 {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-0 {
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-2 {
|
||
right: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-3 {
|
||
right: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-4 {
|
||
right: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-5 {
|
||
right: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-6 {
|
||
right: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-7 {
|
||
right: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-8 {
|
||
right: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-9 {
|
||
right: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-10 {
|
||
right: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-11 {
|
||
right: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-pull-12 {
|
||
right: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-0 {
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-2 {
|
||
left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-3 {
|
||
left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-4 {
|
||
left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-5 {
|
||
left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-6 {
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-7 {
|
||
left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-8 {
|
||
left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-9 {
|
||
left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-10 {
|
||
left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-11 {
|
||
left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-push-12 {
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-2 {
|
||
margin-left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-4 {
|
||
margin-left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-5 {
|
||
margin-left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-7 {
|
||
margin-left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-8 {
|
||
margin-left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-10 {
|
||
margin-left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-11 {
|
||
margin-left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-xs-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .col-sm-1, .custom_bootstrap .col-sm-2, .custom_bootstrap .col-sm-3, .custom_bootstrap .col-sm-4, .custom_bootstrap .col-sm-5, .custom_bootstrap .col-sm-6, .custom_bootstrap .col-sm-7, .custom_bootstrap .col-sm-8, .custom_bootstrap .col-sm-9, .custom_bootstrap .col-sm-10, .custom_bootstrap .col-sm-11, .custom_bootstrap .col-sm-12 {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-1 {
|
||
width: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-2 {
|
||
width: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-3 {
|
||
width: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-4 {
|
||
width: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-5 {
|
||
width: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-6 {
|
||
width: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-7 {
|
||
width: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-8 {
|
||
width: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-9 {
|
||
width: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-10 {
|
||
width: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-11 {
|
||
width: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-12 {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-0 {
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-2 {
|
||
right: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-3 {
|
||
right: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-4 {
|
||
right: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-5 {
|
||
right: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-6 {
|
||
right: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-7 {
|
||
right: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-8 {
|
||
right: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-9 {
|
||
right: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-10 {
|
||
right: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-11 {
|
||
right: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-pull-12 {
|
||
right: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-0 {
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-2 {
|
||
left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-3 {
|
||
left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-4 {
|
||
left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-5 {
|
||
left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-6 {
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-7 {
|
||
left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-8 {
|
||
left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-9 {
|
||
left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-10 {
|
||
left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-11 {
|
||
left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-push-12 {
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-2 {
|
||
margin-left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-4 {
|
||
margin-left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-5 {
|
||
margin-left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-7 {
|
||
margin-left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-8 {
|
||
margin-left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-10 {
|
||
margin-left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-11 {
|
||
margin-left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-sm-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) {
|
||
.custom_bootstrap .col-md-1, .custom_bootstrap .col-md-2, .custom_bootstrap .col-md-3, .custom_bootstrap .col-md-4, .custom_bootstrap .col-md-5, .custom_bootstrap .col-md-6, .custom_bootstrap .col-md-7, .custom_bootstrap .col-md-8, .custom_bootstrap .col-md-9, .custom_bootstrap .col-md-10, .custom_bootstrap .col-md-11, .custom_bootstrap .col-md-12 {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-1 {
|
||
width: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-2 {
|
||
width: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-3 {
|
||
width: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-4 {
|
||
width: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-5 {
|
||
width: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-6 {
|
||
width: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-7 {
|
||
width: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-8 {
|
||
width: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-9 {
|
||
width: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-10 {
|
||
width: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-11 {
|
||
width: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-12 {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-0 {
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-2 {
|
||
right: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-3 {
|
||
right: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-4 {
|
||
right: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-5 {
|
||
right: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-6 {
|
||
right: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-7 {
|
||
right: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-8 {
|
||
right: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-9 {
|
||
right: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-10 {
|
||
right: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-11 {
|
||
right: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-pull-12 {
|
||
right: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-0 {
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-2 {
|
||
left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-3 {
|
||
left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-4 {
|
||
left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-5 {
|
||
left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-6 {
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-7 {
|
||
left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-8 {
|
||
left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-9 {
|
||
left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-10 {
|
||
left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-11 {
|
||
left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-push-12 {
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-2 {
|
||
margin-left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-4 {
|
||
margin-left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-5 {
|
||
margin-left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-7 {
|
||
margin-left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-8 {
|
||
margin-left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-10 {
|
||
margin-left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-11 {
|
||
margin-left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-md-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .col-lg-1, .custom_bootstrap .col-lg-2, .custom_bootstrap .col-lg-3, .custom_bootstrap .col-lg-4, .custom_bootstrap .col-lg-5, .custom_bootstrap .col-lg-6, .custom_bootstrap .col-lg-7, .custom_bootstrap .col-lg-8, .custom_bootstrap .col-lg-9, .custom_bootstrap .col-lg-10, .custom_bootstrap .col-lg-11, .custom_bootstrap .col-lg-12 {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-1 {
|
||
width: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-2 {
|
||
width: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-3 {
|
||
width: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-4 {
|
||
width: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-5 {
|
||
width: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-6 {
|
||
width: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-7 {
|
||
width: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-8 {
|
||
width: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-9 {
|
||
width: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-10 {
|
||
width: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-11 {
|
||
width: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-12 {
|
||
width: 100% !important;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-0 {
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-2 {
|
||
right: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-3 {
|
||
right: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-4 {
|
||
right: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-5 {
|
||
right: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-6 {
|
||
right: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-7 {
|
||
right: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-8 {
|
||
right: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-9 {
|
||
right: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-10 {
|
||
right: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-11 {
|
||
right: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-pull-12 {
|
||
right: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-0 {
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-2 {
|
||
left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-3 {
|
||
left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-4 {
|
||
left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-5 {
|
||
left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-6 {
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-7 {
|
||
left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-8 {
|
||
left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-9 {
|
||
left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-10 {
|
||
left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-11 {
|
||
left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-push-12 {
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-2 {
|
||
margin-left: 16.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-4 {
|
||
margin-left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-5 {
|
||
margin-left: 41.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-7 {
|
||
margin-left: 58.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-8 {
|
||
margin-left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-10 {
|
||
margin-left: 83.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-11 {
|
||
margin-left: 91.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .col-lg-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap table {
|
||
max-width: 100%;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap th {
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .table {
|
||
width: 100%;
|
||
margin-bottom: 17px;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > th,
|
||
.custom_bootstrap .table > thead > tr > td,
|
||
.custom_bootstrap .table > tbody > tr > th,
|
||
.custom_bootstrap .table > tbody > tr > td,
|
||
.custom_bootstrap .table > tfoot > tr > th,
|
||
.custom_bootstrap .table > tfoot > tr > td {
|
||
padding: 8px;
|
||
line-height: 1.42857;
|
||
vertical-align: top;
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > th {
|
||
vertical-align: bottom;
|
||
border-bottom: 2px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .table > caption + thead > tr:first-child > th,
|
||
.custom_bootstrap .table > caption + thead > tr:first-child > td,
|
||
.custom_bootstrap .table > colgroup + thead > tr:first-child > th,
|
||
.custom_bootstrap .table > colgroup + thead > tr:first-child > td,
|
||
.custom_bootstrap .table > thead:first-child > tr:first-child > th,
|
||
.custom_bootstrap .table > thead:first-child > tr:first-child > td {
|
||
border-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table > tbody + tbody {
|
||
border-top: 2px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .table .table {
|
||
background-color: #EFF1F2;
|
||
}
|
||
|
||
.custom_bootstrap .table-condensed > thead > tr > th,
|
||
.custom_bootstrap .table-condensed > thead > tr > td,
|
||
.custom_bootstrap .table-condensed > tbody > tr > th,
|
||
.custom_bootstrap .table-condensed > tbody > tr > td,
|
||
.custom_bootstrap .table-condensed > tfoot > tr > th,
|
||
.custom_bootstrap .table-condensed > tfoot > tr > td {
|
||
padding: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .table-bordered {
|
||
border: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .table-bordered > thead > tr > th,
|
||
.custom_bootstrap .table-bordered > thead > tr > td {
|
||
border-bottom-width: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .table-striped > tbody > tr:nth-child(odd) > td,
|
||
.custom_bootstrap .table-striped > tbody > tr:nth-child(odd) > th {
|
||
background-color: #f9f9f9;
|
||
}
|
||
|
||
.custom_bootstrap .table-hover > tbody > tr:hover > td,
|
||
.custom_bootstrap .table-hover > tbody > tr:hover > th {
|
||
background-color: #EDF7FB;
|
||
}
|
||
|
||
.custom_bootstrap table col[class*="col-"] {
|
||
position: static;
|
||
float: none;
|
||
display: table-column;
|
||
}
|
||
|
||
.custom_bootstrap table td[class*="col-"],
|
||
.custom_bootstrap table th[class*="col-"] {
|
||
position: static;
|
||
float: none;
|
||
display: table-cell;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > td.active,
|
||
.custom_bootstrap .table > thead > tr > th.active, .custom_bootstrap .table > thead > tr.active > td, .custom_bootstrap .table > thead > tr.active > th,
|
||
.custom_bootstrap .table > tbody > tr > td.active,
|
||
.custom_bootstrap .table > tbody > tr > th.active,
|
||
.custom_bootstrap .table > tbody > tr.active > td,
|
||
.custom_bootstrap .table > tbody > tr.active > th,
|
||
.custom_bootstrap .table > tfoot > tr > td.active,
|
||
.custom_bootstrap .table > tfoot > tr > th.active,
|
||
.custom_bootstrap .table > tfoot > tr.active > td,
|
||
.custom_bootstrap .table > tfoot > tr.active > th {
|
||
background-color: #EDF7FB;
|
||
}
|
||
|
||
.custom_bootstrap .table-hover > tbody > tr > td.active:hover,
|
||
.custom_bootstrap .table-hover > tbody > tr > th.active:hover, .custom_bootstrap .table-hover > tbody > tr.active:hover > td, .custom_bootstrap .table-hover > tbody > tr:hover > .active, .custom_bootstrap .table-hover > tbody > tr.active:hover > th {
|
||
background-color: #d8eef6;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > td.success,
|
||
.custom_bootstrap .table > thead > tr > th.success, .custom_bootstrap .table > thead > tr.success > td, .custom_bootstrap .table > thead > tr.success > th,
|
||
.custom_bootstrap .table > tbody > tr > td.success,
|
||
.custom_bootstrap .table > tbody > tr > th.success,
|
||
.custom_bootstrap .table > tbody > tr.success > td,
|
||
.custom_bootstrap .table > tbody > tr.success > th,
|
||
.custom_bootstrap .table > tfoot > tr > td.success,
|
||
.custom_bootstrap .table > tfoot > tr > th.success,
|
||
.custom_bootstrap .table > tfoot > tr.success > td,
|
||
.custom_bootstrap .table > tfoot > tr.success > th {
|
||
background-color: #cce9d7;
|
||
}
|
||
|
||
.custom_bootstrap .table-hover > tbody > tr > td.success:hover,
|
||
.custom_bootstrap .table-hover > tbody > tr > th.success:hover, .custom_bootstrap .table-hover > tbody > tr.success:hover > td, .custom_bootstrap .table-hover > tbody > tr:hover > .success, .custom_bootstrap .table-hover > tbody > tr.success:hover > th {
|
||
background-color: #bae1c9;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > td.info,
|
||
.custom_bootstrap .table > thead > tr > th.info, .custom_bootstrap .table > thead > tr.info > td, .custom_bootstrap .table > thead > tr.info > th,
|
||
.custom_bootstrap .table > tbody > tr > td.info,
|
||
.custom_bootstrap .table > tbody > tr > th.info,
|
||
.custom_bootstrap .table > tbody > tr.info > td,
|
||
.custom_bootstrap .table > tbody > tr.info > th,
|
||
.custom_bootstrap .table > tfoot > tr > td.info,
|
||
.custom_bootstrap .table > tfoot > tr > th.info,
|
||
.custom_bootstrap .table > tfoot > tr.info > td,
|
||
.custom_bootstrap .table > tfoot > tr.info > th {
|
||
background-color: #d3f1f7;
|
||
}
|
||
|
||
.custom_bootstrap .table-hover > tbody > tr > td.info:hover,
|
||
.custom_bootstrap .table-hover > tbody > tr > th.info:hover, .custom_bootstrap .table-hover > tbody > tr.info:hover > td, .custom_bootstrap .table-hover > tbody > tr:hover > .info, .custom_bootstrap .table-hover > tbody > tr.info:hover > th {
|
||
background-color: #bdeaf3;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > td.warning,
|
||
.custom_bootstrap .table > thead > tr > th.warning, .custom_bootstrap .table > thead > tr.warning > td, .custom_bootstrap .table > thead > tr.warning > th,
|
||
.custom_bootstrap .table > tbody > tr > td.warning,
|
||
.custom_bootstrap .table > tbody > tr > th.warning,
|
||
.custom_bootstrap .table > tbody > tr.warning > td,
|
||
.custom_bootstrap .table > tbody > tr.warning > th,
|
||
.custom_bootstrap .table > tfoot > tr > td.warning,
|
||
.custom_bootstrap .table > tfoot > tr > th.warning,
|
||
.custom_bootstrap .table > tfoot > tr.warning > td,
|
||
.custom_bootstrap .table > tfoot > tr.warning > th {
|
||
background-color: #fef1d3;
|
||
}
|
||
|
||
.custom_bootstrap .table-hover > tbody > tr > td.warning:hover,
|
||
.custom_bootstrap .table-hover > tbody > tr > th.warning:hover, .custom_bootstrap .table-hover > tbody > tr.warning:hover > td, .custom_bootstrap .table-hover > tbody > tr:hover > .warning, .custom_bootstrap .table-hover > tbody > tr.warning:hover > th {
|
||
background-color: #fde9ba;
|
||
}
|
||
|
||
.custom_bootstrap .table > thead > tr > td.danger,
|
||
.custom_bootstrap .table > thead > tr > th.danger, .custom_bootstrap .table > thead > tr.danger > td, .custom_bootstrap .table > thead > tr.danger > th,
|
||
.custom_bootstrap .table > tbody > tr > td.danger,
|
||
.custom_bootstrap .table > tbody > tr > th.danger,
|
||
.custom_bootstrap .table > tbody > tr.danger > td,
|
||
.custom_bootstrap .table > tbody > tr.danger > th,
|
||
.custom_bootstrap .table > tfoot > tr > td.danger,
|
||
.custom_bootstrap .table > tfoot > tr > th.danger,
|
||
.custom_bootstrap .table > tfoot > tr.danger > td,
|
||
.custom_bootstrap .table > tfoot > tr.danger > th {
|
||
background-color: #f9cce1;
|
||
}
|
||
|
||
.custom_bootstrap .table-hover > tbody > tr > td.danger:hover,
|
||
.custom_bootstrap .table-hover > tbody > tr > th.danger:hover, .custom_bootstrap .table-hover > tbody > tr.danger:hover > td, .custom_bootstrap .table-hover > tbody > tr:hover > .danger, .custom_bootstrap .table-hover > tbody > tr.danger:hover > th {
|
||
background-color: #f6b5d4;
|
||
}
|
||
|
||
@media screen and (max-width: 767px) {
|
||
.custom_bootstrap .table-responsive {
|
||
width: 100%;
|
||
margin-bottom: 12.75px;
|
||
overflow-y: hidden;
|
||
overflow-x: scroll;
|
||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||
border: 1px solid #ddd;
|
||
-webkit-overflow-scrolling: touch;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table > thead > tr > th,
|
||
.custom_bootstrap .table-responsive > .table > thead > tr > td,
|
||
.custom_bootstrap .table-responsive > .table > tbody > tr > th,
|
||
.custom_bootstrap .table-responsive > .table > tbody > tr > td,
|
||
.custom_bootstrap .table-responsive > .table > tfoot > tr > th,
|
||
.custom_bootstrap .table-responsive > .table > tfoot > tr > td {
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered {
|
||
border: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > th:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > td:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > th:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > td:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||
border-bottom: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap fieldset {
|
||
padding: 0;
|
||
margin: 0;
|
||
border: 0;
|
||
min-width: 0;
|
||
}
|
||
|
||
.custom_bootstrap legend {
|
||
display: block;
|
||
width: 100%;
|
||
padding: 0;
|
||
margin-bottom: 17px;
|
||
font-size: 18px;
|
||
line-height: inherit;
|
||
color: #333333;
|
||
border: 0;
|
||
border-bottom: 1px solid #e5e5e5;
|
||
}
|
||
|
||
.custom_bootstrap label {
|
||
display: inline-block;
|
||
max-width: 100%;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.custom_bootstrap input[type="search"] {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap input[type="radio"],
|
||
.custom_bootstrap input[type="checkbox"] {
|
||
line-height: normal;
|
||
}
|
||
|
||
.custom_bootstrap input[type="file"] {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap input[type="range"] {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap select[multiple],
|
||
.custom_bootstrap select[size] {
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap input[type="file"]:focus,
|
||
.custom_bootstrap input[type="radio"]:focus,
|
||
.custom_bootstrap input[type="checkbox"]:focus {
|
||
outline: thin dotted;
|
||
outline: 5px auto -webkit-focus-ring-color;
|
||
outline-offset: -2px;
|
||
}
|
||
|
||
.custom_bootstrap output {
|
||
display: block;
|
||
padding-top: 7px;
|
||
font-size: 12px;
|
||
line-height: 1.42857;
|
||
color: #555555;
|
||
}
|
||
|
||
.custom_bootstrap .form-control,
|
||
.custom_bootstrap input[type="text"],
|
||
.custom_bootstrap input[type="search"],
|
||
.custom_bootstrap input[type="password"],
|
||
.custom_bootstrap textarea,
|
||
.custom_bootstrap select {
|
||
width: 100%;
|
||
height: 31px;
|
||
padding: 6px 8px;
|
||
font-size: 12px;
|
||
line-height: 1.42857;
|
||
color: #555555;
|
||
background-color: #F5F8F9;
|
||
background-image: none;
|
||
border: 1px solid #C7D6DB;
|
||
border-radius: 3px;
|
||
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||
z-index: 1;
|
||
}
|
||
|
||
.custom_bootstrap option {
|
||
font-size: 12px;
|
||
color: #555555;
|
||
min-height: 1.5em;
|
||
}
|
||
|
||
.custom_bootstrap .form-control:focus, .custom_bootstrap input[type="text"]:focus, .custom_bootstrap input[type="search"]:focus, .custom_bootstrap input[type="password"]:focus, .custom_bootstrap textarea:focus, .custom_bootstrap select:focus {
|
||
border-color: #66afe9;
|
||
outline: 0;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||
}
|
||
|
||
.custom_bootstrap .form-control::-moz-placeholder, .custom_bootstrap input[type="text"]::-moz-placeholder, .custom_bootstrap input[type="search"]::-moz-placeholder, .custom_bootstrap input[type="password"]::-moz-placeholder, .custom_bootstrap textarea::-moz-placeholder, .custom_bootstrap select::-moz-placeholder {
|
||
color: #999999;
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .form-control:-ms-input-placeholder, .custom_bootstrap input[type="text"]:-ms-input-placeholder, .custom_bootstrap input[type="search"]:-ms-input-placeholder, .custom_bootstrap input[type="password"]:-ms-input-placeholder, .custom_bootstrap textarea:-ms-input-placeholder, .custom_bootstrap select:-ms-input-placeholder {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .form-control::-webkit-input-placeholder, .custom_bootstrap input[type="text"]::-webkit-input-placeholder, .custom_bootstrap input[type="search"]::-webkit-input-placeholder, .custom_bootstrap input[type="password"]::-webkit-input-placeholder, .custom_bootstrap textarea::-webkit-input-placeholder, .custom_bootstrap select::-webkit-input-placeholder {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .form-control[disabled], .custom_bootstrap input[disabled][type="text"], .custom_bootstrap input[disabled][type="search"], .custom_bootstrap input[disabled][type="password"], .custom_bootstrap textarea[disabled], .custom_bootstrap select[disabled], .custom_bootstrap .form-control[readonly], .custom_bootstrap input[readonly][type="text"], .custom_bootstrap input[readonly][type="search"], .custom_bootstrap input[readonly][type="password"], .custom_bootstrap textarea[readonly], .custom_bootstrap select[readonly], fieldset[disabled] .custom_bootstrap .form-control, fieldset[disabled] .custom_bootstrap input[type="text"], fieldset[disabled] .custom_bootstrap input[type="search"], fieldset[disabled] .custom_bootstrap input[type="password"], fieldset[disabled] .custom_bootstrap textarea, fieldset[disabled] .custom_bootstrap select {
|
||
cursor: not-allowed;
|
||
background-color: #eeeeee;
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap textarea.form-control, .custom_bootstrap textarea {
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap input[type="search"] {
|
||
-webkit-appearance: none;
|
||
}
|
||
|
||
.custom_bootstrap input[type="date"],
|
||
.custom_bootstrap input[type="time"],
|
||
.custom_bootstrap input[type="datetime-local"],
|
||
.custom_bootstrap input[type="month"] {
|
||
line-height: 31px;
|
||
line-height: 1.42857 \0;
|
||
}
|
||
|
||
.custom_bootstrap input[type="date"].input-sm, .custom_bootstrap .input-group-sm > input[type="date"].form-control, .custom_bootstrap .input-group-sm > input[type="date"][type="text"], .custom_bootstrap .input-group-sm > input[type="date"][type="search"], .custom_bootstrap .input-group-sm > input[type="date"][type="password"],
|
||
.custom_bootstrap .input-group-sm > input[type="date"].input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > input[type="date"].btn,
|
||
.custom_bootstrap input[type="time"].input-sm,
|
||
.custom_bootstrap .input-group-sm > input[type="time"].form-control,
|
||
.custom_bootstrap .input-group-sm > input[type="time"][type="text"],
|
||
.custom_bootstrap .input-group-sm > input[type="time"][type="search"],
|
||
.custom_bootstrap .input-group-sm > input[type="time"][type="password"],
|
||
.custom_bootstrap .input-group-sm > input[type="time"].input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > input[type="time"].btn,
|
||
.custom_bootstrap input[type="datetime-local"].input-sm,
|
||
.custom_bootstrap .input-group-sm > input[type="datetime-local"].form-control,
|
||
.custom_bootstrap .input-group-sm > input[type="datetime-local"][type="text"],
|
||
.custom_bootstrap .input-group-sm > input[type="datetime-local"][type="search"],
|
||
.custom_bootstrap .input-group-sm > input[type="datetime-local"][type="password"],
|
||
.custom_bootstrap .input-group-sm > input[type="datetime-local"].input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
|
||
.custom_bootstrap input[type="month"].input-sm,
|
||
.custom_bootstrap .input-group-sm > input[type="month"].form-control,
|
||
.custom_bootstrap .input-group-sm > input[type="month"][type="text"],
|
||
.custom_bootstrap .input-group-sm > input[type="month"][type="search"],
|
||
.custom_bootstrap .input-group-sm > input[type="month"][type="password"],
|
||
.custom_bootstrap .input-group-sm > input[type="month"].input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > input[type="month"].btn {
|
||
line-height: 28px;
|
||
}
|
||
|
||
.custom_bootstrap input[type="date"].input-lg, .custom_bootstrap .input-group-lg > input[type="date"].form-control, .custom_bootstrap .input-group-lg > input[type="date"][type="text"], .custom_bootstrap .input-group-lg > input[type="date"][type="search"], .custom_bootstrap .input-group-lg > input[type="date"][type="password"],
|
||
.custom_bootstrap .input-group-lg > input[type="date"].input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > input[type="date"].btn,
|
||
.custom_bootstrap input[type="time"].input-lg,
|
||
.custom_bootstrap .input-group-lg > input[type="time"].form-control,
|
||
.custom_bootstrap .input-group-lg > input[type="time"][type="text"],
|
||
.custom_bootstrap .input-group-lg > input[type="time"][type="search"],
|
||
.custom_bootstrap .input-group-lg > input[type="time"][type="password"],
|
||
.custom_bootstrap .input-group-lg > input[type="time"].input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > input[type="time"].btn,
|
||
.custom_bootstrap input[type="datetime-local"].input-lg,
|
||
.custom_bootstrap .input-group-lg > input[type="datetime-local"].form-control,
|
||
.custom_bootstrap .input-group-lg > input[type="datetime-local"][type="text"],
|
||
.custom_bootstrap .input-group-lg > input[type="datetime-local"][type="search"],
|
||
.custom_bootstrap .input-group-lg > input[type="datetime-local"][type="password"],
|
||
.custom_bootstrap .input-group-lg > input[type="datetime-local"].input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
|
||
.custom_bootstrap input[type="month"].input-lg,
|
||
.custom_bootstrap .input-group-lg > input[type="month"].form-control,
|
||
.custom_bootstrap .input-group-lg > input[type="month"][type="text"],
|
||
.custom_bootstrap .input-group-lg > input[type="month"][type="search"],
|
||
.custom_bootstrap .input-group-lg > input[type="month"][type="password"],
|
||
.custom_bootstrap .input-group-lg > input[type="month"].input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > input[type="month"].btn {
|
||
line-height: 42px;
|
||
}
|
||
|
||
.custom_bootstrap .radio,
|
||
.custom_bootstrap .radio label,
|
||
.custom_bootstrap .checkbox label {
|
||
margin-bottom: 0;
|
||
font-weight: normal;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .radio input[type="radio"],
|
||
.custom_bootstrap .radio-inline input[type="radio"],
|
||
.custom_bootstrap .checkbox input[type="checkbox"],
|
||
.custom_bootstrap .checkbox-inline input[type="checkbox"] {
|
||
float: left;
|
||
margin-left: -20px;
|
||
}
|
||
|
||
.custom_bootstrap .radio + .radio,
|
||
.custom_bootstrap .checkbox + .checkbox {
|
||
margin-top: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .radio-inline,
|
||
.custom_bootstrap .checkbox-inline {
|
||
display: inline-block;
|
||
padding-left: 20px;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
font-weight: normal;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .radio-inline + .radio-inline,
|
||
.custom_bootstrap .checkbox-inline + .checkbox-inline {
|
||
margin-top: 0;
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap input[type="radio"][disabled], fieldset[disabled] .custom_bootstrap input[type="radio"],
|
||
.custom_bootstrap input[type="checkbox"][disabled], fieldset[disabled]
|
||
.custom_bootstrap input[type="checkbox"],
|
||
.custom_bootstrap .radio[disabled], fieldset[disabled]
|
||
.custom_bootstrap .radio,
|
||
.custom_bootstrap .radio-inline[disabled], fieldset[disabled]
|
||
.custom_bootstrap .radio-inline,
|
||
.custom_bootstrap .checkbox[disabled], fieldset[disabled]
|
||
.custom_bootstrap .checkbox,
|
||
.custom_bootstrap .checkbox-inline[disabled], fieldset[disabled]
|
||
.custom_bootstrap .checkbox-inline {
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.custom_bootstrap .input-sm, .custom_bootstrap .input-group-sm > .form-control, .custom_bootstrap .input-group-sm > input[type="text"], .custom_bootstrap .input-group-sm > input[type="search"], .custom_bootstrap .input-group-sm > input[type="password"], .custom_bootstrap .input-group-sm > textarea, .custom_bootstrap .input-group-sm > select,
|
||
.custom_bootstrap .input-group-sm > .input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > .btn {
|
||
height: 28px;
|
||
padding: 5px 10px;
|
||
font-size: 11px;
|
||
line-height: 1.5;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap select.input-sm, .custom_bootstrap .input-group-sm > select.form-control, .custom_bootstrap .input-group-sm > select,
|
||
.custom_bootstrap .input-group-sm > select.input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > select.btn {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
}
|
||
|
||
.custom_bootstrap textarea.input-sm, .custom_bootstrap .input-group-sm > textarea.form-control, .custom_bootstrap .input-group-sm > textarea,
|
||
.custom_bootstrap .input-group-sm > textarea.input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > textarea.btn,
|
||
.custom_bootstrap select[multiple].input-sm,
|
||
.custom_bootstrap .input-group-sm > select[multiple],
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > select[multiple].btn {
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap .input-lg, .custom_bootstrap .input-group-lg > .form-control, .custom_bootstrap .input-group-lg > input[type="text"], .custom_bootstrap .input-group-lg > input[type="search"], .custom_bootstrap .input-group-lg > input[type="password"], .custom_bootstrap .input-group-lg > textarea, .custom_bootstrap .input-group-lg > select,
|
||
.custom_bootstrap .input-group-lg > .input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > .btn {
|
||
height: 42px;
|
||
padding: 10px 16px;
|
||
font-size: 15px;
|
||
line-height: 1.33;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap select.input-lg, .custom_bootstrap .input-group-lg > select.form-control, .custom_bootstrap .input-group-lg > select,
|
||
.custom_bootstrap .input-group-lg > select.input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > select.btn {
|
||
height: 42px;
|
||
line-height: 42px;
|
||
}
|
||
|
||
.custom_bootstrap textarea.input-lg, .custom_bootstrap .input-group-lg > textarea.form-control, .custom_bootstrap .input-group-lg > textarea,
|
||
.custom_bootstrap .input-group-lg > textarea.input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > textarea.btn,
|
||
.custom_bootstrap select[multiple].input-lg,
|
||
.custom_bootstrap .input-group-lg > select[multiple],
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > select[multiple].btn {
|
||
height: auto;
|
||
}
|
||
|
||
.custom_bootstrap .has-feedback {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .has-feedback .form-control, .custom_bootstrap .has-feedback input[type="text"], .custom_bootstrap .has-feedback input[type="search"], .custom_bootstrap .has-feedback input[type="password"], .custom_bootstrap .has-feedback textarea, .custom_bootstrap .has-feedback select {
|
||
padding-right: 38.75px;
|
||
}
|
||
|
||
.custom_bootstrap .form-control-feedback {
|
||
position: absolute;
|
||
top: 22px;
|
||
right: 0;
|
||
z-index: 2;
|
||
display: block;
|
||
width: 31px;
|
||
height: 31px;
|
||
line-height: 31px;
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .input-lg + .form-control-feedback, .custom_bootstrap .input-group-lg > .form-control + .form-control-feedback, .custom_bootstrap .input-group-lg > input[type="text"] + .form-control-feedback, .custom_bootstrap .input-group-lg > input[type="search"] + .form-control-feedback, .custom_bootstrap .input-group-lg > input[type="password"] + .form-control-feedback, .custom_bootstrap .input-group-lg > textarea + .form-control-feedback, .custom_bootstrap .input-group-lg > select + .form-control-feedback,
|
||
.custom_bootstrap .input-group-lg > .input-group-addon + .form-control-feedback,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > .btn + .form-control-feedback {
|
||
width: 42px;
|
||
height: 42px;
|
||
line-height: 42px;
|
||
}
|
||
|
||
.custom_bootstrap .input-sm + .form-control-feedback, .custom_bootstrap .input-group-sm > .form-control + .form-control-feedback, .custom_bootstrap .input-group-sm > input[type="text"] + .form-control-feedback, .custom_bootstrap .input-group-sm > input[type="search"] + .form-control-feedback, .custom_bootstrap .input-group-sm > input[type="password"] + .form-control-feedback, .custom_bootstrap .input-group-sm > textarea + .form-control-feedback, .custom_bootstrap .input-group-sm > select + .form-control-feedback,
|
||
.custom_bootstrap .input-group-sm > .input-group-addon + .form-control-feedback,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > .btn + .form-control-feedback {
|
||
width: 28px;
|
||
height: 28px;
|
||
line-height: 28px;
|
||
}
|
||
|
||
.custom_bootstrap .has-success .help-block,
|
||
.custom_bootstrap .has-success .control-label,
|
||
.custom_bootstrap .has-success .radio,
|
||
.custom_bootstrap .has-success .checkbox,
|
||
.custom_bootstrap .has-success .radio-inline,
|
||
.custom_bootstrap .has-success .checkbox-inline {
|
||
color: #3c763d;
|
||
}
|
||
|
||
.custom_bootstrap .has-success .form-control, .custom_bootstrap .has-success input[type="text"], .custom_bootstrap .has-success input[type="search"], .custom_bootstrap .has-success input[type="password"], .custom_bootstrap .has-success textarea, .custom_bootstrap .has-success select {
|
||
background-color: #cce9d7;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
|
||
.custom_bootstrap .has-success .form-control:focus, .custom_bootstrap .has-success input[type="text"]:focus, .custom_bootstrap .has-success input[type="search"]:focus, .custom_bootstrap .has-success input[type="password"]:focus, .custom_bootstrap .has-success textarea:focus, .custom_bootstrap .has-success select:focus {
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
||
}
|
||
|
||
.custom_bootstrap .has-success .input-group-addon {
|
||
color: #3c763d;
|
||
background-color: #cce9d7;
|
||
}
|
||
|
||
.custom_bootstrap .has-success .form-control-feedback {
|
||
color: #3c763d;
|
||
}
|
||
|
||
.custom_bootstrap .has-warning .help-block,
|
||
.custom_bootstrap .has-warning .control-label,
|
||
.custom_bootstrap .has-warning .radio,
|
||
.custom_bootstrap .has-warning .checkbox,
|
||
.custom_bootstrap .has-warning .radio-inline,
|
||
.custom_bootstrap .has-warning .checkbox-inline {
|
||
color: #8a6d3b;
|
||
}
|
||
|
||
.custom_bootstrap .has-warning .form-control, .custom_bootstrap .has-warning input[type="text"], .custom_bootstrap .has-warning input[type="search"], .custom_bootstrap .has-warning input[type="password"], .custom_bootstrap .has-warning textarea, .custom_bootstrap .has-warning select {
|
||
background-color: #fef1d3;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
|
||
.custom_bootstrap .has-warning .form-control:focus, .custom_bootstrap .has-warning input[type="text"]:focus, .custom_bootstrap .has-warning input[type="search"]:focus, .custom_bootstrap .has-warning input[type="password"]:focus, .custom_bootstrap .has-warning textarea:focus, .custom_bootstrap .has-warning select:focus {
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
||
}
|
||
|
||
.custom_bootstrap .has-warning .input-group-addon {
|
||
color: #8a6d3b;
|
||
background-color: #fef1d3;
|
||
}
|
||
|
||
.custom_bootstrap .has-warning .form-control-feedback {
|
||
color: #8a6d3b;
|
||
}
|
||
|
||
.custom_bootstrap .has-error .help-block,
|
||
.custom_bootstrap .has-error .control-label,
|
||
.custom_bootstrap .has-error .radio,
|
||
.custom_bootstrap .has-error .checkbox,
|
||
.custom_bootstrap .has-error .radio-inline,
|
||
.custom_bootstrap .has-error .checkbox-inline {
|
||
color: #a94442;
|
||
}
|
||
|
||
.custom_bootstrap .has-error .form-control, .custom_bootstrap .has-error input[type="text"], .custom_bootstrap .has-error input[type="search"], .custom_bootstrap .has-error input[type="password"], .custom_bootstrap .has-error textarea, .custom_bootstrap .has-error select {
|
||
background-color: #f9cce1;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
|
||
.custom_bootstrap .has-error .form-control:focus, .custom_bootstrap .has-error input[type="text"]:focus, .custom_bootstrap .has-error input[type="search"]:focus, .custom_bootstrap .has-error input[type="password"]:focus, .custom_bootstrap .has-error textarea:focus, .custom_bootstrap .has-error select:focus {
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||
}
|
||
|
||
.custom_bootstrap .has-error .input-group-addon {
|
||
color: #a94442;
|
||
background-color: #f9cce1;
|
||
}
|
||
|
||
.custom_bootstrap .has-error .form-control-feedback {
|
||
color: #a94442;
|
||
}
|
||
|
||
.custom_bootstrap .form-control-static {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .help-block {
|
||
margin-top: 5px;
|
||
margin-bottom: 10px;
|
||
color: #959595;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .form-inline .form-group, .custom_bootstrap .navbar-form .form-group {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .form-control, .custom_bootstrap .navbar-form .form-control, .custom_bootstrap .form-inline input[type="text"], .custom_bootstrap .navbar-form input[type="text"], .custom_bootstrap .form-inline input[type="search"], .custom_bootstrap .navbar-form input[type="search"], .custom_bootstrap .form-inline input[type="password"], .custom_bootstrap .navbar-form input[type="password"], .custom_bootstrap .form-inline textarea, .custom_bootstrap .navbar-form textarea, .custom_bootstrap .form-inline select, .custom_bootstrap .navbar-form select {
|
||
display: inline-block;
|
||
width: auto;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .input-group, .custom_bootstrap .navbar-form .input-group {
|
||
display: inline-table;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .input-group .input-group-addon, .custom_bootstrap .navbar-form .input-group .input-group-addon,
|
||
.custom_bootstrap .form-inline .input-group .input-group-btn,
|
||
.custom_bootstrap .navbar-form .input-group .input-group-btn,
|
||
.custom_bootstrap .form-inline .input-group .form-control,
|
||
.custom_bootstrap .navbar-form .input-group .form-control,
|
||
.custom_bootstrap .form-inline .input-group input[type="text"],
|
||
.custom_bootstrap .navbar-form .input-group input[type="text"],
|
||
.custom_bootstrap .form-inline .input-group input[type="search"],
|
||
.custom_bootstrap .navbar-form .input-group input[type="search"],
|
||
.custom_bootstrap .form-inline .input-group input[type="password"],
|
||
.custom_bootstrap .navbar-form .input-group input[type="password"],
|
||
.custom_bootstrap .form-inline .input-group textarea,
|
||
.custom_bootstrap .navbar-form .input-group textarea,
|
||
.custom_bootstrap .form-inline .input-group select,
|
||
.custom_bootstrap .navbar-form .input-group select {
|
||
width: auto;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .input-group > .form-control, .custom_bootstrap .navbar-form .input-group > .form-control, .custom_bootstrap .form-inline .input-group > input[type="text"], .custom_bootstrap .navbar-form .input-group > input[type="text"], .custom_bootstrap .form-inline .input-group > input[type="search"], .custom_bootstrap .navbar-form .input-group > input[type="search"], .custom_bootstrap .form-inline .input-group > input[type="password"], .custom_bootstrap .navbar-form .input-group > input[type="password"], .custom_bootstrap .form-inline .input-group > textarea, .custom_bootstrap .navbar-form .input-group > textarea, .custom_bootstrap .form-inline .input-group > select, .custom_bootstrap .navbar-form .input-group > select {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .control-label, .custom_bootstrap .navbar-form .control-label {
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .radio, .custom_bootstrap .navbar-form .radio,
|
||
.custom_bootstrap .form-inline .checkbox,
|
||
.custom_bootstrap .navbar-form .checkbox {
|
||
display: inline-block;
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
padding-left: 0;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .radio input[type="radio"], .custom_bootstrap .navbar-form .radio input[type="radio"],
|
||
.custom_bootstrap .form-inline .checkbox input[type="checkbox"],
|
||
.custom_bootstrap .navbar-form .checkbox input[type="checkbox"] {
|
||
float: none;
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-inline .has-feedback .form-control-feedback, .custom_bootstrap .navbar-form .has-feedback .form-control-feedback {
|
||
top: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .radio,
|
||
.custom_bootstrap .form-horizontal .checkbox,
|
||
.custom_bootstrap .form-horizontal .radio-inline,
|
||
.custom_bootstrap .form-horizontal .checkbox-inline {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
padding-top: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .radio,
|
||
.custom_bootstrap .form-horizontal .checkbox {
|
||
min-height: 24px;
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .form-group {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .form-group:before, .custom_bootstrap .form-horizontal .form-group:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .form-group:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .form-control-static {
|
||
padding-top: 7px;
|
||
padding-bottom: 7px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .form-horizontal .control-label {
|
||
text-align: right;
|
||
margin-bottom: 0;
|
||
padding-top: 7px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .form-horizontal .has-feedback .form-control-feedback {
|
||
top: 0;
|
||
right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .btn {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
font-weight: normal;
|
||
text-align: center;
|
||
cursor: pointer;
|
||
background-image: none;
|
||
border: 1px solid transparent;
|
||
white-space: nowrap;
|
||
font-size: 12px;
|
||
line-height: 1.42857;
|
||
border-radius: 3px;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn:focus, .custom_bootstrap .btn:active:focus, .custom_bootstrap .btn.active:focus {
|
||
outline: thin dotted;
|
||
outline: 5px auto -webkit-focus-ring-color;
|
||
outline-offset: -2px;
|
||
}
|
||
|
||
.custom_bootstrap .btn:hover, .custom_bootstrap .btn:focus {
|
||
color: #363A41;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn:active, .custom_bootstrap .btn.active {
|
||
outline: 0;
|
||
background-image: none;
|
||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
}
|
||
|
||
.custom_bootstrap .btn.disabled, .custom_bootstrap .btn[disabled], fieldset[disabled] .custom_bootstrap .btn {
|
||
cursor: not-allowed;
|
||
pointer-events: none;
|
||
opacity: 0.65;
|
||
filter: alpha(opacity=65);
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-default {
|
||
color: #363A41;
|
||
background-color: white;
|
||
border-color: #DEDEDE;
|
||
}
|
||
|
||
.custom_bootstrap .btn-default:hover, .custom_bootstrap .btn-default:focus, .custom_bootstrap .btn-default:active, .custom_bootstrap .btn-default.active, .open > .custom_bootstrap .btn-default.dropdown-toggle {
|
||
color: #363A41;
|
||
background-color: #e6e6e6;
|
||
border-color: #bfbfbf;
|
||
}
|
||
|
||
.custom_bootstrap .btn-default:active, .custom_bootstrap .btn-default.active, .open > .custom_bootstrap .btn-default.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-default.disabled, .custom_bootstrap .btn-default.disabled:hover, .custom_bootstrap .btn-default.disabled:focus, .custom_bootstrap .btn-default.disabled:active, .custom_bootstrap .btn-default.disabled.active, .custom_bootstrap .btn-default[disabled], .custom_bootstrap .btn-default[disabled]:hover, .custom_bootstrap .btn-default[disabled]:focus, .custom_bootstrap .btn-default[disabled]:active, .custom_bootstrap .btn-default[disabled].active, fieldset[disabled] .custom_bootstrap .btn-default, fieldset[disabled] .custom_bootstrap .btn-default:hover, fieldset[disabled] .custom_bootstrap .btn-default:focus, fieldset[disabled] .custom_bootstrap .btn-default:active, fieldset[disabled] .custom_bootstrap .btn-default.active {
|
||
background-color: white;
|
||
border-color: #DEDEDE;
|
||
}
|
||
|
||
.custom_bootstrap .btn-default .badge, .custom_bootstrap .btn-default #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-default .notifs_badge {
|
||
color: white;
|
||
background-color: #363A41;
|
||
}
|
||
|
||
.custom_bootstrap .btn-primary {
|
||
color: #363A41;
|
||
background-color: #2eacce;
|
||
border-color: #2eacce;
|
||
}
|
||
|
||
.custom_bootstrap .btn-primary:hover, .custom_bootstrap .btn-primary:focus, .custom_bootstrap .btn-primary:active, .custom_bootstrap .btn-primary.active, .open > .custom_bootstrap .btn-primary.dropdown-toggle {
|
||
color: #363A41;
|
||
background-color: #2589a4;
|
||
border-color: #23829c;
|
||
}
|
||
|
||
.custom_bootstrap .btn-primary:active, .custom_bootstrap .btn-primary.active, .open > .custom_bootstrap .btn-primary.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-primary.disabled, .custom_bootstrap .btn-primary.disabled:hover, .custom_bootstrap .btn-primary.disabled:focus, .custom_bootstrap .btn-primary.disabled:active, .custom_bootstrap .btn-primary.disabled.active, .custom_bootstrap .btn-primary[disabled], .custom_bootstrap .btn-primary[disabled]:hover, .custom_bootstrap .btn-primary[disabled]:focus, .custom_bootstrap .btn-primary[disabled]:active, .custom_bootstrap .btn-primary[disabled].active, fieldset[disabled] .custom_bootstrap .btn-primary, fieldset[disabled] .custom_bootstrap .btn-primary:hover, fieldset[disabled] .custom_bootstrap .btn-primary:focus, fieldset[disabled] .custom_bootstrap .btn-primary:active, fieldset[disabled] .custom_bootstrap .btn-primary.active {
|
||
background-color: #2eacce;
|
||
border-color: #2eacce;
|
||
}
|
||
|
||
.custom_bootstrap .btn-primary .badge, .custom_bootstrap .btn-primary #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-primary .notifs_badge {
|
||
color: #2eacce;
|
||
background-color: #363A41;
|
||
}
|
||
|
||
.custom_bootstrap .btn-success {
|
||
color: #fff;
|
||
background-color: #72C279;
|
||
border-color: #60ba68;
|
||
}
|
||
|
||
.custom_bootstrap .btn-success:hover, .custom_bootstrap .btn-success:focus, .custom_bootstrap .btn-success:active, .custom_bootstrap .btn-success.active, .open > .custom_bootstrap .btn-success.dropdown-toggle {
|
||
color: #fff;
|
||
background-color: #4eb357;
|
||
border-color: #439a4a;
|
||
}
|
||
|
||
.custom_bootstrap .btn-success:active, .custom_bootstrap .btn-success.active, .open > .custom_bootstrap .btn-success.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-success.disabled, .custom_bootstrap .btn-success.disabled:hover, .custom_bootstrap .btn-success.disabled:focus, .custom_bootstrap .btn-success.disabled:active, .custom_bootstrap .btn-success.disabled.active, .custom_bootstrap .btn-success[disabled], .custom_bootstrap .btn-success[disabled]:hover, .custom_bootstrap .btn-success[disabled]:focus, .custom_bootstrap .btn-success[disabled]:active, .custom_bootstrap .btn-success[disabled].active, fieldset[disabled] .custom_bootstrap .btn-success, fieldset[disabled] .custom_bootstrap .btn-success:hover, fieldset[disabled] .custom_bootstrap .btn-success:focus, fieldset[disabled] .custom_bootstrap .btn-success:active, fieldset[disabled] .custom_bootstrap .btn-success.active {
|
||
background-color: #72C279;
|
||
border-color: #60ba68;
|
||
}
|
||
|
||
.custom_bootstrap .btn-success .badge, .custom_bootstrap .btn-success #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-success .notifs_badge {
|
||
color: #72C279;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .btn-info {
|
||
color: #fff;
|
||
background-color: #25b9d7;
|
||
border-color: #21a6c1;
|
||
}
|
||
|
||
.custom_bootstrap .btn-info:hover, .custom_bootstrap .btn-info:focus, .custom_bootstrap .btn-info:active, .custom_bootstrap .btn-info.active, .open > .custom_bootstrap .btn-info.dropdown-toggle {
|
||
color: #fff;
|
||
background-color: #1e94ab;
|
||
border-color: #18798d;
|
||
}
|
||
|
||
.custom_bootstrap .btn-info:active, .custom_bootstrap .btn-info.active, .open > .custom_bootstrap .btn-info.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-info.disabled, .custom_bootstrap .btn-info.disabled:hover, .custom_bootstrap .btn-info.disabled:focus, .custom_bootstrap .btn-info.disabled:active, .custom_bootstrap .btn-info.disabled.active, .custom_bootstrap .btn-info[disabled], .custom_bootstrap .btn-info[disabled]:hover, .custom_bootstrap .btn-info[disabled]:focus, .custom_bootstrap .btn-info[disabled]:active, .custom_bootstrap .btn-info[disabled].active, fieldset[disabled] .custom_bootstrap .btn-info, fieldset[disabled] .custom_bootstrap .btn-info:hover, fieldset[disabled] .custom_bootstrap .btn-info:focus, fieldset[disabled] .custom_bootstrap .btn-info:active, fieldset[disabled] .custom_bootstrap .btn-info.active {
|
||
background-color: #25b9d7;
|
||
border-color: #21a6c1;
|
||
}
|
||
|
||
.custom_bootstrap .btn-info .badge, .custom_bootstrap .btn-info #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-info .notifs_badge {
|
||
color: #25b9d7;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .btn-warning {
|
||
color: #fff;
|
||
background-color: #fbbb22;
|
||
border-color: #fbb309;
|
||
}
|
||
|
||
.custom_bootstrap .btn-warning:hover, .custom_bootstrap .btn-warning:focus, .custom_bootstrap .btn-warning:active, .custom_bootstrap .btn-warning.active, .open > .custom_bootstrap .btn-warning.dropdown-toggle {
|
||
color: #fff;
|
||
background-color: #e6a304;
|
||
border-color: #c38a04;
|
||
}
|
||
|
||
.custom_bootstrap .btn-warning:active, .custom_bootstrap .btn-warning.active, .open > .custom_bootstrap .btn-warning.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-warning.disabled, .custom_bootstrap .btn-warning.disabled:hover, .custom_bootstrap .btn-warning.disabled:focus, .custom_bootstrap .btn-warning.disabled:active, .custom_bootstrap .btn-warning.disabled.active, .custom_bootstrap .btn-warning[disabled], .custom_bootstrap .btn-warning[disabled]:hover, .custom_bootstrap .btn-warning[disabled]:focus, .custom_bootstrap .btn-warning[disabled]:active, .custom_bootstrap .btn-warning[disabled].active, fieldset[disabled] .custom_bootstrap .btn-warning, fieldset[disabled] .custom_bootstrap .btn-warning:hover, fieldset[disabled] .custom_bootstrap .btn-warning:focus, fieldset[disabled] .custom_bootstrap .btn-warning:active, fieldset[disabled] .custom_bootstrap .btn-warning.active {
|
||
background-color: #fbbb22;
|
||
border-color: #fbb309;
|
||
}
|
||
|
||
.custom_bootstrap .btn-warning .badge, .custom_bootstrap .btn-warning #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-warning .notifs_badge {
|
||
color: #fbbb22;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .btn-danger {
|
||
color: #fff;
|
||
background-color: #E08F95;
|
||
border-color: #da7b82;
|
||
}
|
||
|
||
.custom_bootstrap .btn-danger:hover, .custom_bootstrap .btn-danger:focus, .custom_bootstrap .btn-danger:active, .custom_bootstrap .btn-danger.active, .open > .custom_bootstrap .btn-danger.dropdown-toggle {
|
||
color: #fff;
|
||
background-color: #d5676f;
|
||
border-color: #cd4b55;
|
||
}
|
||
|
||
.custom_bootstrap .btn-danger:active, .custom_bootstrap .btn-danger.active, .open > .custom_bootstrap .btn-danger.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-danger.disabled, .custom_bootstrap .btn-danger.disabled:hover, .custom_bootstrap .btn-danger.disabled:focus, .custom_bootstrap .btn-danger.disabled:active, .custom_bootstrap .btn-danger.disabled.active, .custom_bootstrap .btn-danger[disabled], .custom_bootstrap .btn-danger[disabled]:hover, .custom_bootstrap .btn-danger[disabled]:focus, .custom_bootstrap .btn-danger[disabled]:active, .custom_bootstrap .btn-danger[disabled].active, fieldset[disabled] .custom_bootstrap .btn-danger, fieldset[disabled] .custom_bootstrap .btn-danger:hover, fieldset[disabled] .custom_bootstrap .btn-danger:focus, fieldset[disabled] .custom_bootstrap .btn-danger:active, fieldset[disabled] .custom_bootstrap .btn-danger.active {
|
||
background-color: #E08F95;
|
||
border-color: #da7b82;
|
||
}
|
||
|
||
.custom_bootstrap .btn-danger .badge, .custom_bootstrap .btn-danger #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-danger .notifs_badge {
|
||
color: #E08F95;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .btn-link {
|
||
color: #00aff0;
|
||
font-weight: normal;
|
||
cursor: pointer;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-link, .custom_bootstrap .btn-link:active, .custom_bootstrap .btn-link[disabled], fieldset[disabled] .custom_bootstrap .btn-link {
|
||
background-color: transparent;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-link, .custom_bootstrap .btn-link:hover, .custom_bootstrap .btn-link:focus, .custom_bootstrap .btn-link:active {
|
||
border-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .btn-link:hover, .custom_bootstrap .btn-link:focus {
|
||
color: #0077a4;
|
||
text-decoration: underline;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .btn-link[disabled]:hover, .custom_bootstrap .btn-link[disabled]:focus, fieldset[disabled] .custom_bootstrap .btn-link:hover, fieldset[disabled] .custom_bootstrap .btn-link:focus {
|
||
color: #999999;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-lg, .custom_bootstrap .btn-group-lg > .btn {
|
||
padding: 10px 16px;
|
||
font-size: 15px;
|
||
line-height: 1.33;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-sm, .custom_bootstrap .btn-group-sm > .btn {
|
||
padding: 5px 10px;
|
||
font-size: 11px;
|
||
line-height: 1.5;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-xs, .custom_bootstrap .btn-group-xs > .btn {
|
||
padding: 1px 5px;
|
||
font-size: 11px;
|
||
line-height: 1.5;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-block {
|
||
display: block;
|
||
width: 100%;
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-block + .btn-block {
|
||
margin-top: 5px;
|
||
}
|
||
|
||
.custom_bootstrap input[type="submit"].btn-block,
|
||
.custom_bootstrap input[type="reset"].btn-block,
|
||
.custom_bootstrap input[type="button"].btn-block {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .fade {
|
||
opacity: 0;
|
||
-webkit-transition: opacity 0.15s linear;
|
||
-o-transition: opacity 0.15s linear;
|
||
transition: opacity 0.15s linear;
|
||
}
|
||
|
||
.custom_bootstrap .fade.in {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .collapse {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .collapse.in {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap tr.collapse.in {
|
||
display: table-row;
|
||
}
|
||
|
||
.custom_bootstrap tbody.collapse.in {
|
||
display: table-row-group;
|
||
}
|
||
|
||
.custom_bootstrap .collapsing {
|
||
position: relative;
|
||
height: 0;
|
||
overflow: hidden;
|
||
-webkit-transition: height 0.35s ease;
|
||
-o-transition: height 0.35s ease;
|
||
transition: height 0.35s ease;
|
||
}
|
||
|
||
.custom_bootstrap .caret {
|
||
display: inline-block;
|
||
width: 0;
|
||
height: 0;
|
||
margin-left: 2px;
|
||
vertical-align: middle;
|
||
border-top: 4px solid;
|
||
border-right: 4px solid transparent;
|
||
border-left: 4px solid transparent;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-toggle:focus {
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu {
|
||
position: absolute;
|
||
top: 100%;
|
||
left: 0;
|
||
z-index: 1000;
|
||
display: none;
|
||
float: left;
|
||
min-width: 160px;
|
||
padding: 5px 0;
|
||
margin: 2px 0 0;
|
||
list-style: none;
|
||
font-size: 12px;
|
||
text-align: left;
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||
background-clip: padding-box;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu.pull-right {
|
||
right: 0;
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu .divider {
|
||
height: 1px;
|
||
margin: 7.5px 0;
|
||
overflow: hidden;
|
||
background-color: #e5e5e5;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > li > a {
|
||
display: block;
|
||
padding: 3px 20px;
|
||
clear: both;
|
||
font-weight: normal;
|
||
line-height: 1.42857;
|
||
color: #333333;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > li > a:hover, .custom_bootstrap .dropdown-menu > li > a:focus {
|
||
text-decoration: none;
|
||
color: white;
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > .active > a, .custom_bootstrap .dropdown-menu > .active > a:hover, .custom_bootstrap .dropdown-menu > .active > a:focus {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
outline: 0;
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > .disabled > a, .custom_bootstrap .dropdown-menu > .disabled > a:hover, .custom_bootstrap .dropdown-menu > .disabled > a:focus {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > .disabled > a:hover, .custom_bootstrap .dropdown-menu > .disabled > a:focus {
|
||
text-decoration: none;
|
||
background-color: transparent;
|
||
background-image: none;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.custom_bootstrap .open > .dropdown-menu {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .open > a {
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu-right {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu-left {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-header {
|
||
display: block;
|
||
padding: 3px 20px;
|
||
font-size: 11px;
|
||
line-height: 1.42857;
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-backdrop {
|
||
position: fixed;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
top: 0;
|
||
z-index: 990;
|
||
}
|
||
|
||
.custom_bootstrap .pull-right > .dropdown-menu {
|
||
right: 0;
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .dropup .caret,
|
||
.custom_bootstrap .navbar-fixed-bottom .dropdown .caret {
|
||
border-top: 0;
|
||
border-bottom: 4px solid;
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .dropup .dropdown-menu,
|
||
.custom_bootstrap .navbar-fixed-bottom .dropdown .dropdown-menu {
|
||
top: auto;
|
||
bottom: 100%;
|
||
margin-bottom: 1px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-right .dropdown-menu, .custom_bootstrap #header_employee_box .dropdown-menu {
|
||
right: 0;
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-right .dropdown-menu-left, .custom_bootstrap #header_employee_box .dropdown-menu-left {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .btn-group,
|
||
.custom_bootstrap .btn-group-vertical {
|
||
position: relative;
|
||
display: inline-block;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn,
|
||
.custom_bootstrap .btn-group-vertical > .btn {
|
||
position: relative;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn:hover, .custom_bootstrap .btn-group > .btn:focus, .custom_bootstrap .btn-group > .btn:active, .custom_bootstrap .btn-group > .btn.active,
|
||
.custom_bootstrap .btn-group-vertical > .btn:hover,
|
||
.custom_bootstrap .btn-group-vertical > .btn:focus,
|
||
.custom_bootstrap .btn-group-vertical > .btn:active,
|
||
.custom_bootstrap .btn-group-vertical > .btn.active {
|
||
z-index: 2;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn:focus,
|
||
.custom_bootstrap .btn-group-vertical > .btn:focus {
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group .btn + .btn,
|
||
.custom_bootstrap .btn-group .btn + .btn-group,
|
||
.custom_bootstrap .btn-group .btn-group + .btn,
|
||
.custom_bootstrap .btn-group .btn-group + .btn-group {
|
||
margin-left: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-toolbar {
|
||
margin-left: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-toolbar:before, .custom_bootstrap .btn-toolbar:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .btn-toolbar:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .btn-toolbar .btn-group,
|
||
.custom_bootstrap .btn-toolbar .input-group {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .btn-toolbar > .btn,
|
||
.custom_bootstrap .btn-toolbar > .btn-group,
|
||
.custom_bootstrap .btn-toolbar > .input-group {
|
||
margin-left: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn:first-child {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn:last-child:not(:first-child),
|
||
.custom_bootstrap .btn-group > .dropdown-toggle:not(:first-child) {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .dropdown-toggle:not(:first-child) {
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn-group {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn-group:first-child > .btn:last-child,
|
||
.custom_bootstrap .btn-group > .btn-group:first-child > .dropdown-toggle {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn-group:last-child > .btn:first-child {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group .dropdown-toggle:active,
|
||
.custom_bootstrap .btn-group.open .dropdown-toggle {
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn + .dropdown-toggle {
|
||
padding-left: 8px;
|
||
padding-right: 8px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group > .btn-lg + .dropdown-toggle, .custom_bootstrap .btn-group-lg.btn-group > .btn + .dropdown-toggle {
|
||
padding-left: 12px;
|
||
padding-right: 12px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group.open .dropdown-toggle {
|
||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
}
|
||
|
||
.custom_bootstrap .btn-group.open .dropdown-toggle.btn-link {
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn .caret {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-lg .caret, .custom_bootstrap .btn-group-lg > .btn .caret {
|
||
border-width: 5px 5px 0;
|
||
border-bottom-width: 0;
|
||
}
|
||
|
||
.custom_bootstrap .dropup .btn-lg .caret, .custom_bootstrap .dropup .btn-group-lg > .btn .caret {
|
||
border-width: 0 5px 5px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn,
|
||
.custom_bootstrap .btn-group-vertical > .btn-group,
|
||
.custom_bootstrap .btn-group-vertical > .btn-group > .btn {
|
||
display: block;
|
||
float: none;
|
||
width: 100%;
|
||
max-width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn-group:before, .custom_bootstrap .btn-group-vertical > .btn-group:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn-group:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn-group > .btn {
|
||
float: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn + .btn,
|
||
.custom_bootstrap .btn-group-vertical > .btn + .btn-group,
|
||
.custom_bootstrap .btn-group-vertical > .btn-group + .btn,
|
||
.custom_bootstrap .btn-group-vertical > .btn-group + .btn-group {
|
||
margin-top: -1px;
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn:first-child:not(:last-child) {
|
||
border-top-right-radius: 3px;
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn:last-child:not(:first-child) {
|
||
border-bottom-left-radius: 3px;
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
||
.custom_bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-justified {
|
||
display: table;
|
||
width: 100%;
|
||
table-layout: fixed;
|
||
border-collapse: separate;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-justified > .btn,
|
||
.custom_bootstrap .btn-group-justified > .btn-group {
|
||
float: none;
|
||
display: table-cell;
|
||
width: 1%;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-justified > .btn-group .btn {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap [data-toggle="buttons"] > .btn > input[type="radio"],
|
||
.custom_bootstrap [data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
||
position: absolute;
|
||
z-index: -1;
|
||
opacity: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group {
|
||
position: relative;
|
||
display: table;
|
||
border-collapse: separate;
|
||
}
|
||
|
||
.custom_bootstrap .input-group[class*="col-"] {
|
||
float: none;
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group .form-control, .custom_bootstrap .input-group input[type="text"], .custom_bootstrap .input-group input[type="search"], .custom_bootstrap .input-group input[type="password"], .custom_bootstrap .input-group textarea, .custom_bootstrap .input-group select {
|
||
position: relative;
|
||
z-index: 2;
|
||
float: left;
|
||
width: 100%;
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon,
|
||
.custom_bootstrap .input-group-btn,
|
||
.custom_bootstrap .input-group .form-control,
|
||
.custom_bootstrap .input-group input[type="text"],
|
||
.custom_bootstrap .input-group input[type="search"],
|
||
.custom_bootstrap .input-group input[type="password"],
|
||
.custom_bootstrap .input-group textarea,
|
||
.custom_bootstrap .input-group select {
|
||
display: table-cell;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group-btn:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group .form-control:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group input[type="text"]:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group input[type="search"]:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group input[type="password"]:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group textarea:not(:first-child):not(:last-child),
|
||
.custom_bootstrap .input-group select:not(:first-child):not(:last-child) {
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon,
|
||
.custom_bootstrap .input-group-btn {
|
||
width: 1%;
|
||
white-space: nowrap;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon {
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
color: #555555;
|
||
text-align: center;
|
||
background-color: #F5F8F9;
|
||
border-top: 1px solid #C7D6DB;
|
||
border-left: 1px solid #C7D6DB;
|
||
border-bottom: 1px solid #C7D6DB;
|
||
border-right: 1px solid #C7D6DB;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon.input-sm,
|
||
.custom_bootstrap .input-group-sm > .input-group-addon,
|
||
.custom_bootstrap .input-group-sm > .input-group-btn > .input-group-addon.btn {
|
||
padding: 5px 10px;
|
||
font-size: 11px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon.input-lg,
|
||
.custom_bootstrap .input-group-lg > .input-group-addon,
|
||
.custom_bootstrap .input-group-lg > .input-group-btn > .input-group-addon.btn {
|
||
padding: 10px 16px;
|
||
font-size: 15px;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon input[type="radio"],
|
||
.custom_bootstrap .input-group-addon input[type="checkbox"] {
|
||
margin-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group .form-control:first-child, .custom_bootstrap .input-group input[type="text"]:first-child, .custom_bootstrap .input-group input[type="search"]:first-child, .custom_bootstrap .input-group input[type="password"]:first-child, .custom_bootstrap .input-group textarea:first-child, .custom_bootstrap .input-group select:first-child,
|
||
.custom_bootstrap .input-group-addon:first-child,
|
||
.custom_bootstrap .input-group-btn:first-child > .btn,
|
||
.custom_bootstrap .input-group-btn:first-child > .btn-group > .btn,
|
||
.custom_bootstrap .input-group-btn:first-child > .dropdown-toggle,
|
||
.custom_bootstrap .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
||
.custom_bootstrap .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon:first-child {
|
||
border-right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group .form-control:last-child, .custom_bootstrap .input-group input[type="text"]:last-child, .custom_bootstrap .input-group input[type="search"]:last-child, .custom_bootstrap .input-group input[type="password"]:last-child, .custom_bootstrap .input-group textarea:last-child, .custom_bootstrap .input-group select:last-child,
|
||
.custom_bootstrap .input-group-addon:last-child,
|
||
.custom_bootstrap .input-group-btn:last-child > .btn,
|
||
.custom_bootstrap .input-group-btn:last-child > .btn-group > .btn,
|
||
.custom_bootstrap .input-group-btn:last-child > .dropdown-toggle,
|
||
.custom_bootstrap .input-group-btn:first-child > .btn:not(:first-child),
|
||
.custom_bootstrap .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-addon:last-child {
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-btn {
|
||
position: relative;
|
||
font-size: 0;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-btn > .btn {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-btn > .btn + .btn {
|
||
margin-left: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-btn > .btn:hover, .custom_bootstrap .input-group-btn > .btn:focus, .custom_bootstrap .input-group-btn > .btn:active {
|
||
z-index: 2;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-btn:first-child > .btn,
|
||
.custom_bootstrap .input-group-btn:first-child > .btn-group {
|
||
margin-right: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .input-group-btn:last-child > .btn,
|
||
.custom_bootstrap .input-group-btn:last-child > .btn-group {
|
||
margin-left: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .nav, .custom_bootstrap #header_notifs_icon_wrapper, .custom_bootstrap #header_employee_box, .custom_bootstrap #header_quick, .custom_bootstrap #header_shop {
|
||
margin-bottom: 0;
|
||
padding-left: 0;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap .nav:before, .custom_bootstrap #header_notifs_icon_wrapper:before, .custom_bootstrap #header_employee_box:before, .custom_bootstrap #header_quick:before, .custom_bootstrap #header_shop:before, .custom_bootstrap .nav:after, .custom_bootstrap #header_notifs_icon_wrapper:after, .custom_bootstrap #header_employee_box:after, .custom_bootstrap #header_quick:after, .custom_bootstrap #header_shop:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .nav:after, .custom_bootstrap #header_notifs_icon_wrapper:after, .custom_bootstrap #header_employee_box:after, .custom_bootstrap #header_quick:after, .custom_bootstrap #header_shop:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .nav > li, .custom_bootstrap #header_notifs_icon_wrapper > li, .custom_bootstrap #header_employee_box > li, .custom_bootstrap #header_quick > li, .custom_bootstrap #header_shop > li {
|
||
position: relative;
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .nav > li > a, .custom_bootstrap #header_notifs_icon_wrapper > li > a, .custom_bootstrap #header_employee_box > li > a, .custom_bootstrap #header_quick > li > a, .custom_bootstrap #header_shop > li > a {
|
||
position: relative;
|
||
display: block;
|
||
padding: 10px 15px;
|
||
}
|
||
|
||
.custom_bootstrap .nav > li > a:hover, .custom_bootstrap #header_notifs_icon_wrapper > li > a:hover, .custom_bootstrap #header_employee_box > li > a:hover, .custom_bootstrap #header_quick > li > a:hover, .custom_bootstrap #header_shop > li > a:hover, .custom_bootstrap .nav > li > a:focus, .custom_bootstrap #header_notifs_icon_wrapper > li > a:focus, .custom_bootstrap #header_employee_box > li > a:focus, .custom_bootstrap #header_quick > li > a:focus, .custom_bootstrap #header_shop > li > a:focus {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .nav > li.disabled > a, .custom_bootstrap #header_notifs_icon_wrapper > li.disabled > a, .custom_bootstrap #header_employee_box > li.disabled > a, .custom_bootstrap #header_quick > li.disabled > a, .custom_bootstrap #header_shop > li.disabled > a {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .nav > li.disabled > a:hover, .custom_bootstrap #header_notifs_icon_wrapper > li.disabled > a:hover, .custom_bootstrap #header_employee_box > li.disabled > a:hover, .custom_bootstrap #header_quick > li.disabled > a:hover, .custom_bootstrap #header_shop > li.disabled > a:hover, .custom_bootstrap .nav > li.disabled > a:focus, .custom_bootstrap #header_notifs_icon_wrapper > li.disabled > a:focus, .custom_bootstrap #header_employee_box > li.disabled > a:focus, .custom_bootstrap #header_quick > li.disabled > a:focus, .custom_bootstrap #header_shop > li.disabled > a:focus {
|
||
color: #999999;
|
||
text-decoration: none;
|
||
background-color: transparent;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.custom_bootstrap .nav .open > a, .custom_bootstrap #header_notifs_icon_wrapper .open > a, .custom_bootstrap #header_employee_box .open > a, .custom_bootstrap #header_quick .open > a, .custom_bootstrap #header_shop .open > a, .custom_bootstrap .nav .open > a:hover, .custom_bootstrap #header_notifs_icon_wrapper .open > a:hover, .custom_bootstrap #header_employee_box .open > a:hover, .custom_bootstrap #header_quick .open > a:hover, .custom_bootstrap #header_shop .open > a:hover, .custom_bootstrap .nav .open > a:focus, .custom_bootstrap #header_notifs_icon_wrapper .open > a:focus, .custom_bootstrap #header_employee_box .open > a:focus, .custom_bootstrap #header_quick .open > a:focus, .custom_bootstrap #header_shop .open > a:focus {
|
||
background-color: #eeeeee;
|
||
border-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .nav .nav-divider, .custom_bootstrap #header_notifs_icon_wrapper .nav-divider, .custom_bootstrap #header_employee_box .nav-divider, .custom_bootstrap #header_quick .nav-divider, .custom_bootstrap #header_shop .nav-divider {
|
||
height: 1px;
|
||
margin: 7.5px 0;
|
||
overflow: hidden;
|
||
background-color: #e5e5e5;
|
||
}
|
||
|
||
.custom_bootstrap .nav > li > a > img, .custom_bootstrap #header_notifs_icon_wrapper > li > a > img, .custom_bootstrap #header_employee_box > li > a > img, .custom_bootstrap #header_quick > li > a > img, .custom_bootstrap #header_shop > li > a > img {
|
||
max-width: none;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs > li {
|
||
float: left;
|
||
margin-bottom: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs > li > a {
|
||
margin-right: 2px;
|
||
line-height: 1.42857;
|
||
border: 1px solid transparent;
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs > li > a:hover {
|
||
border-color: #eeeeee #eeeeee #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs > li.active > a, .custom_bootstrap .nav-tabs > li.active > a:hover, .custom_bootstrap .nav-tabs > li.active > a:focus {
|
||
color: #555555;
|
||
background-color: #EFF1F2;
|
||
border: 1px solid #ddd;
|
||
border-bottom-color: transparent;
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .nav-pills > li {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .nav-pills > li > a {
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .nav-pills > li + li {
|
||
margin-left: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .nav-pills > li.active > a, .custom_bootstrap .nav-pills > li.active > a:hover, .custom_bootstrap .nav-pills > li.active > a:focus {
|
||
color: #fff;
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .nav-stacked > li {
|
||
float: none;
|
||
}
|
||
|
||
.custom_bootstrap .nav-stacked > li + li {
|
||
margin-top: 2px;
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .nav-justified, .custom_bootstrap .nav-tabs.nav-justified {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .nav-justified > li, .custom_bootstrap .nav-tabs.nav-justified > li {
|
||
float: none;
|
||
}
|
||
|
||
.custom_bootstrap .nav-justified > li > a, .custom_bootstrap .nav-tabs.nav-justified > li > a {
|
||
text-align: center;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .nav-justified > .dropdown .dropdown-menu {
|
||
top: auto;
|
||
left: auto;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .nav-justified > li, .custom_bootstrap .nav-tabs.nav-justified > li {
|
||
display: table-cell;
|
||
width: 1%;
|
||
}
|
||
|
||
.custom_bootstrap .nav-justified > li > a, .custom_bootstrap .nav-tabs.nav-justified > li > a {
|
||
margin-bottom: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs-justified, .custom_bootstrap .nav-tabs.nav-justified {
|
||
border-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs-justified > li > a, .custom_bootstrap .nav-tabs.nav-justified > li > a {
|
||
margin-right: 0;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs-justified > .active > a, .custom_bootstrap .nav-tabs.nav-justified > .active > a,
|
||
.custom_bootstrap .nav-tabs-justified > .active > a:hover,
|
||
.custom_bootstrap .nav-tabs.nav-justified > .active > a:hover,
|
||
.custom_bootstrap .nav-tabs-justified > .active > a:focus,
|
||
.custom_bootstrap .nav-tabs.nav-justified > .active > a:focus {
|
||
border: 1px solid #ddd;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .nav-tabs-justified > li > a, .custom_bootstrap .nav-tabs.nav-justified > li > a {
|
||
border-bottom: 1px solid #ddd;
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs-justified > .active > a, .custom_bootstrap .nav-tabs.nav-justified > .active > a,
|
||
.custom_bootstrap .nav-tabs-justified > .active > a:hover,
|
||
.custom_bootstrap .nav-tabs.nav-justified > .active > a:hover,
|
||
.custom_bootstrap .nav-tabs-justified > .active > a:focus,
|
||
.custom_bootstrap .nav-tabs.nav-justified > .active > a:focus {
|
||
border-bottom-color: #EFF1F2;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .tab-content > .tab-pane {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .tab-content > .active {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs .dropdown-menu {
|
||
margin-top: -1px;
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .navbar, .custom_bootstrap #header_infos {
|
||
position: relative;
|
||
min-height: 35px;
|
||
margin-bottom: 17px;
|
||
border: 1px solid transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar:before, .custom_bootstrap #header_infos:before, .custom_bootstrap .navbar:after, .custom_bootstrap #header_infos:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .navbar:after, .custom_bootstrap #header_infos:after {
|
||
clear: both;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar, .custom_bootstrap #header_infos {
|
||
border-radius: 3px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-header:before, .custom_bootstrap .navbar-header:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-header:after {
|
||
clear: both;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-header {
|
||
float: left;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-collapse {
|
||
overflow-x: visible;
|
||
padding-right: 5px;
|
||
padding-left: 5px;
|
||
border-top: 1px solid transparent;
|
||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
-webkit-overflow-scrolling: touch;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-collapse:before, .custom_bootstrap .navbar-collapse:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-collapse:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-collapse.in {
|
||
overflow-y: auto;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-collapse {
|
||
width: auto;
|
||
border-top: 0;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-collapse.collapse {
|
||
display: block !important;
|
||
height: auto !important;
|
||
padding-bottom: 0;
|
||
overflow: visible !important;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-collapse.in {
|
||
overflow-y: visible;
|
||
}
|
||
|
||
.navbar-fixed-top .custom_bootstrap .navbar-collapse, .custom_bootstrap #header_infos .custom_bootstrap .navbar-collapse, .navbar-static-top .custom_bootstrap .navbar-collapse, .navbar-fixed-bottom .custom_bootstrap .navbar-collapse {
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-fixed-top .navbar-collapse, .custom_bootstrap #header_infos .navbar-collapse,
|
||
.custom_bootstrap .navbar-fixed-bottom .navbar-collapse {
|
||
max-height: 340px;
|
||
}
|
||
|
||
@media (max-width: 480px) and (orientation: landscape) {
|
||
.custom_bootstrap .navbar-fixed-top .navbar-collapse, .custom_bootstrap #header_infos .navbar-collapse,
|
||
.custom_bootstrap .navbar-fixed-bottom .navbar-collapse {
|
||
max-height: 200px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .container > .navbar-header,
|
||
.custom_bootstrap .container > .navbar-collapse,
|
||
.custom_bootstrap .container-fluid > .navbar-header,
|
||
.custom_bootstrap .container-fluid > .navbar-collapse {
|
||
margin-right: -5px;
|
||
margin-left: -5px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .container > .navbar-header,
|
||
.custom_bootstrap .container > .navbar-collapse,
|
||
.custom_bootstrap .container-fluid > .navbar-header,
|
||
.custom_bootstrap .container-fluid > .navbar-collapse {
|
||
margin-right: 0;
|
||
margin-left: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-static-top {
|
||
z-index: 1000;
|
||
border-width: 0 0 1px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-static-top {
|
||
border-radius: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-fixed-top, .custom_bootstrap #header_infos,
|
||
.custom_bootstrap .navbar-fixed-bottom {
|
||
position: fixed;
|
||
right: 0;
|
||
left: 0;
|
||
z-index: 1030;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-fixed-top, .custom_bootstrap #header_infos,
|
||
.custom_bootstrap .navbar-fixed-bottom {
|
||
border-radius: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-fixed-top, .custom_bootstrap #header_infos {
|
||
top: 0;
|
||
border-width: 0 0 1px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-fixed-bottom {
|
||
bottom: 0;
|
||
margin-bottom: 0;
|
||
border-width: 1px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-brand, .custom_bootstrap #header_shopversion, .custom_bootstrap #header_shopname {
|
||
float: left;
|
||
padding: 9px 5px;
|
||
font-size: 15px;
|
||
line-height: 17px;
|
||
height: 35px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-brand:hover, .custom_bootstrap #header_shopversion:hover, .custom_bootstrap #header_shopname:hover, .custom_bootstrap .navbar-brand:focus, .custom_bootstrap #header_shopversion:focus, .custom_bootstrap #header_shopname:focus {
|
||
text-decoration: none;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.navbar > .container .custom_bootstrap .navbar-brand, .custom_bootstrap #header_infos > .container .custom_bootstrap .navbar-brand, .navbar > .container .custom_bootstrap #header_shopversion, .custom_bootstrap #header_infos > .container .custom_bootstrap #header_shopversion, .navbar > .container .custom_bootstrap #header_shopname, .custom_bootstrap #header_infos > .container .custom_bootstrap #header_shopname, .navbar > .container-fluid .custom_bootstrap .navbar-brand, .custom_bootstrap #header_infos > .container-fluid .custom_bootstrap .navbar-brand, .navbar > .container-fluid .custom_bootstrap #header_shopversion, .custom_bootstrap #header_infos > .container-fluid .custom_bootstrap #header_shopversion, .navbar > .container-fluid .custom_bootstrap #header_shopname, .custom_bootstrap #header_infos > .container-fluid .custom_bootstrap #header_shopname {
|
||
margin-left: -5px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-toggle {
|
||
position: relative;
|
||
float: right;
|
||
margin-right: 5px;
|
||
padding: 9px 10px;
|
||
margin-top: 0.5px;
|
||
margin-bottom: 0.5px;
|
||
background-color: transparent;
|
||
background-image: none;
|
||
border: 1px solid transparent;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-toggle:focus {
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-toggle .icon-bar {
|
||
display: block;
|
||
width: 22px;
|
||
height: 2px;
|
||
border-radius: 1px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-toggle .icon-bar + .icon-bar {
|
||
margin-top: 4px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-toggle {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-nav, .custom_bootstrap #header_notifs_icon_wrapper, .custom_bootstrap #header_employee_box, .custom_bootstrap #header_quick, .custom_bootstrap #header_shop {
|
||
margin: 4.5px -5px;
|
||
float: left;
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-nav > li > a, .custom_bootstrap #header_notifs_icon_wrapper > li > a, .custom_bootstrap #header_employee_box > li > a, .custom_bootstrap #header_quick > li > a, .custom_bootstrap #header_shop > li > a {
|
||
padding-top: 10px;
|
||
padding-bottom: 10px;
|
||
line-height: 17px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-nav > li, .custom_bootstrap #header_notifs_icon_wrapper > li, .custom_bootstrap #header_employee_box > li, .custom_bootstrap #header_quick > li, .custom_bootstrap #header_shop > li {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-nav > li > a, .custom_bootstrap #header_notifs_icon_wrapper > li > a, .custom_bootstrap #header_employee_box > li > a, .custom_bootstrap #header_quick > li > a, .custom_bootstrap #header_shop > li > a {
|
||
padding-top: 9px;
|
||
padding-bottom: 9px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-nav.navbar-right:last-child, .custom_bootstrap .navbar-right#header_notifs_icon_wrapper:last-child, .custom_bootstrap #header_employee_box:last-child, .custom_bootstrap .navbar-right#header_quick:last-child, .custom_bootstrap .navbar-right#header_shop:last-child {
|
||
margin-right: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-left, .custom_bootstrap #header_quick, .custom_bootstrap #header_shop {
|
||
float: left !important;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-right, .custom_bootstrap #header_employee_box {
|
||
float: right !important;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-form {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
padding: 10px 5px;
|
||
border-top: 1px solid transparent;
|
||
border-bottom: 1px solid transparent;
|
||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
margin-top: 2px;
|
||
margin-bottom: 2px;
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .navbar-form .form-group {
|
||
margin-bottom: 5px;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-form {
|
||
width: auto;
|
||
border: 0;
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
padding-top: 0;
|
||
padding-bottom: 0;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-form.navbar-right:last-child, .custom_bootstrap .navbar-form#header_employee_box:last-child {
|
||
margin-right: -5px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-nav > li > .dropdown-menu, .custom_bootstrap #header_notifs_icon_wrapper > li > .dropdown-menu, .custom_bootstrap #header_employee_box > li > .dropdown-menu, .custom_bootstrap #header_quick > li > .dropdown-menu, .custom_bootstrap #header_shop > li > .dropdown-menu {
|
||
margin-top: 0;
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu, .custom_bootstrap .navbar-fixed-bottom #header_notifs_icon_wrapper > li > .dropdown-menu, .custom_bootstrap .navbar-fixed-bottom #header_employee_box > li > .dropdown-menu, .custom_bootstrap .navbar-fixed-bottom #header_quick > li > .dropdown-menu, .custom_bootstrap .navbar-fixed-bottom #header_shop > li > .dropdown-menu {
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-btn {
|
||
margin-top: 2px;
|
||
margin-bottom: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-btn.btn-sm, .custom_bootstrap .btn-group-sm > .navbar-btn.btn {
|
||
margin-top: 3.5px;
|
||
margin-bottom: 3.5px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-btn.btn-xs, .custom_bootstrap .btn-group-xs > .navbar-btn.btn {
|
||
margin-top: 6.5px;
|
||
margin-bottom: 6.5px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-text {
|
||
margin-top: 9px;
|
||
margin-bottom: 9px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .navbar-text {
|
||
float: left;
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-text.navbar-right:last-child, .custom_bootstrap .navbar-text#header_employee_box:last-child {
|
||
margin-right: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default {
|
||
background-color: #f8f8f8;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-brand, .custom_bootstrap .navbar-default #header_shopversion, .custom_bootstrap .navbar-default #header_shopname {
|
||
color: #777;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-brand:hover, .custom_bootstrap .navbar-default #header_shopversion:hover, .custom_bootstrap .navbar-default #header_shopname:hover, .custom_bootstrap .navbar-default .navbar-brand:focus, .custom_bootstrap .navbar-default #header_shopversion:focus, .custom_bootstrap .navbar-default #header_shopname:focus {
|
||
color: #5e5e5e;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-text {
|
||
color: #777;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav > li > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > li > a, .custom_bootstrap .navbar-default #header_employee_box > li > a, .custom_bootstrap .navbar-default #header_quick > li > a, .custom_bootstrap .navbar-default #header_shop > li > a {
|
||
color: #777;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav > li > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > li > a:hover, .custom_bootstrap .navbar-default #header_employee_box > li > a:hover, .custom_bootstrap .navbar-default #header_quick > li > a:hover, .custom_bootstrap .navbar-default #header_shop > li > a:hover, .custom_bootstrap .navbar-default .navbar-nav > li > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > li > a:focus, .custom_bootstrap .navbar-default #header_employee_box > li > a:focus, .custom_bootstrap .navbar-default #header_quick > li > a:focus, .custom_bootstrap .navbar-default #header_shop > li > a:focus {
|
||
color: #333;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav > .active > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a, .custom_bootstrap .navbar-default #header_employee_box > .active > a, .custom_bootstrap .navbar-default #header_quick > .active > a, .custom_bootstrap .navbar-default #header_shop > .active > a, .custom_bootstrap .navbar-default .navbar-nav > .active > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a:hover, .custom_bootstrap .navbar-default #header_employee_box > .active > a:hover, .custom_bootstrap .navbar-default #header_quick > .active > a:hover, .custom_bootstrap .navbar-default #header_shop > .active > a:hover, .custom_bootstrap .navbar-default .navbar-nav > .active > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a:focus, .custom_bootstrap .navbar-default #header_employee_box > .active > a:focus, .custom_bootstrap .navbar-default #header_quick > .active > a:focus, .custom_bootstrap .navbar-default #header_shop > .active > a:focus {
|
||
color: #555;
|
||
background-color: #e7e7e7;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav > .disabled > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a, .custom_bootstrap .navbar-default #header_employee_box > .disabled > a, .custom_bootstrap .navbar-default #header_quick > .disabled > a, .custom_bootstrap .navbar-default #header_shop > .disabled > a, .custom_bootstrap .navbar-default .navbar-nav > .disabled > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a:hover, .custom_bootstrap .navbar-default #header_employee_box > .disabled > a:hover, .custom_bootstrap .navbar-default #header_quick > .disabled > a:hover, .custom_bootstrap .navbar-default #header_shop > .disabled > a:hover, .custom_bootstrap .navbar-default .navbar-nav > .disabled > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a:focus, .custom_bootstrap .navbar-default #header_employee_box > .disabled > a:focus, .custom_bootstrap .navbar-default #header_quick > .disabled > a:focus, .custom_bootstrap .navbar-default #header_shop > .disabled > a:focus {
|
||
color: #ccc;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-toggle {
|
||
border-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-toggle:hover, .custom_bootstrap .navbar-default .navbar-toggle:focus {
|
||
background-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-toggle .icon-bar {
|
||
background-color: #888;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-collapse,
|
||
.custom_bootstrap .navbar-default .navbar-form {
|
||
border-color: #e7e7e7;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav > .open > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a, .custom_bootstrap .navbar-default #header_employee_box > .open > a, .custom_bootstrap .navbar-default #header_quick > .open > a, .custom_bootstrap .navbar-default #header_shop > .open > a, .custom_bootstrap .navbar-default .navbar-nav > .open > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a:hover, .custom_bootstrap .navbar-default #header_employee_box > .open > a:hover, .custom_bootstrap .navbar-default #header_quick > .open > a:hover, .custom_bootstrap .navbar-default #header_shop > .open > a:hover, .custom_bootstrap .navbar-default .navbar-nav > .open > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a:focus, .custom_bootstrap .navbar-default #header_employee_box > .open > a:focus, .custom_bootstrap .navbar-default #header_quick > .open > a:focus, .custom_bootstrap .navbar-default #header_shop > .open > a:focus {
|
||
background-color: #e7e7e7;
|
||
color: #555;
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > li > a {
|
||
color: #777;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a:hover, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a:hover, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > li > a:hover, .custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a:focus, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a:focus, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > li > a:focus {
|
||
color: #333;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > .active > a, .custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a:hover, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a:hover, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > .active > a:hover, .custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a:focus, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a:focus, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > .active > a:focus {
|
||
color: #555;
|
||
background-color: #e7e7e7;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > .disabled > a, .custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a:hover, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a:hover, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > .disabled > a:hover, .custom_bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .custom_bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .custom_bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a:focus, .custom_bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a:focus, .custom_bootstrap .navbar-default #header_shop .open .dropdown-menu > .disabled > a:focus {
|
||
color: #ccc;
|
||
background-color: transparent;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-link {
|
||
color: #777;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .navbar-link:hover {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .btn-link {
|
||
color: #777;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .btn-link:hover, .custom_bootstrap .navbar-default .btn-link:focus {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-default .btn-link[disabled]:hover, .custom_bootstrap .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .custom_bootstrap .navbar-default .btn-link:hover, fieldset[disabled] .custom_bootstrap .navbar-default .btn-link:focus {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse, .custom_bootstrap #header_infos {
|
||
background-color: #282b30;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-brand, .custom_bootstrap #header_infos .navbar-brand, .custom_bootstrap .navbar-inverse #header_shopversion, .custom_bootstrap #header_infos #header_shopversion, .custom_bootstrap .navbar-inverse #header_shopname, .custom_bootstrap #header_infos #header_shopname {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-brand:hover, .custom_bootstrap #header_infos .navbar-brand:hover, .custom_bootstrap .navbar-inverse #header_shopversion:hover, .custom_bootstrap #header_infos #header_shopversion:hover, .custom_bootstrap .navbar-inverse #header_shopname:hover, .custom_bootstrap #header_infos #header_shopname:hover, .custom_bootstrap .navbar-inverse .navbar-brand:focus, .custom_bootstrap #header_infos .navbar-brand:focus, .custom_bootstrap .navbar-inverse #header_shopversion:focus, .custom_bootstrap #header_infos #header_shopversion:focus, .custom_bootstrap .navbar-inverse #header_shopname:focus, .custom_bootstrap #header_infos #header_shopname:focus {
|
||
color: #fff;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-text, .custom_bootstrap #header_infos .navbar-text {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-nav > li > a, .custom_bootstrap #header_infos .navbar-nav > li > a, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > li > a, .custom_bootstrap .navbar-inverse #header_employee_box > li > a, .custom_bootstrap #header_infos #header_employee_box > li > a, .custom_bootstrap .navbar-inverse #header_quick > li > a, .custom_bootstrap #header_infos #header_quick > li > a, .custom_bootstrap .navbar-inverse #header_shop > li > a, .custom_bootstrap #header_infos #header_shop > li > a {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-nav > li > a:hover, .custom_bootstrap #header_infos .navbar-nav > li > a:hover, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a:hover, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > li > a:hover, .custom_bootstrap .navbar-inverse #header_employee_box > li > a:hover, .custom_bootstrap #header_infos #header_employee_box > li > a:hover, .custom_bootstrap .navbar-inverse #header_quick > li > a:hover, .custom_bootstrap #header_infos #header_quick > li > a:hover, .custom_bootstrap .navbar-inverse #header_shop > li > a:hover, .custom_bootstrap #header_infos #header_shop > li > a:hover, .custom_bootstrap .navbar-inverse .navbar-nav > li > a:focus, .custom_bootstrap #header_infos .navbar-nav > li > a:focus, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a:focus, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > li > a:focus, .custom_bootstrap .navbar-inverse #header_employee_box > li > a:focus, .custom_bootstrap #header_infos #header_employee_box > li > a:focus, .custom_bootstrap .navbar-inverse #header_quick > li > a:focus, .custom_bootstrap #header_infos #header_quick > li > a:focus, .custom_bootstrap .navbar-inverse #header_shop > li > a:focus, .custom_bootstrap #header_infos #header_shop > li > a:focus {
|
||
color: #999999;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-nav > .active > a, .custom_bootstrap #header_infos .navbar-nav > .active > a, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .active > a, .custom_bootstrap .navbar-inverse #header_employee_box > .active > a, .custom_bootstrap #header_infos #header_employee_box > .active > a, .custom_bootstrap .navbar-inverse #header_quick > .active > a, .custom_bootstrap #header_infos #header_quick > .active > a, .custom_bootstrap .navbar-inverse #header_shop > .active > a, .custom_bootstrap #header_infos #header_shop > .active > a, .custom_bootstrap .navbar-inverse .navbar-nav > .active > a:hover, .custom_bootstrap #header_infos .navbar-nav > .active > a:hover, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a:hover, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .active > a:hover, .custom_bootstrap .navbar-inverse #header_employee_box > .active > a:hover, .custom_bootstrap #header_infos #header_employee_box > .active > a:hover, .custom_bootstrap .navbar-inverse #header_quick > .active > a:hover, .custom_bootstrap #header_infos #header_quick > .active > a:hover, .custom_bootstrap .navbar-inverse #header_shop > .active > a:hover, .custom_bootstrap #header_infos #header_shop > .active > a:hover, .custom_bootstrap .navbar-inverse .navbar-nav > .active > a:focus, .custom_bootstrap #header_infos .navbar-nav > .active > a:focus, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a:focus, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .active > a:focus, .custom_bootstrap .navbar-inverse #header_employee_box > .active > a:focus, .custom_bootstrap #header_infos #header_employee_box > .active > a:focus, .custom_bootstrap .navbar-inverse #header_quick > .active > a:focus, .custom_bootstrap #header_infos #header_quick > .active > a:focus, .custom_bootstrap .navbar-inverse #header_shop > .active > a:focus, .custom_bootstrap #header_infos #header_shop > .active > a:focus {
|
||
color: #999999;
|
||
background-color: #111214;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-nav > .disabled > a, .custom_bootstrap #header_infos .navbar-nav > .disabled > a, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a, .custom_bootstrap .navbar-inverse #header_employee_box > .disabled > a, .custom_bootstrap #header_infos #header_employee_box > .disabled > a, .custom_bootstrap .navbar-inverse #header_quick > .disabled > a, .custom_bootstrap #header_infos #header_quick > .disabled > a, .custom_bootstrap .navbar-inverse #header_shop > .disabled > a, .custom_bootstrap #header_infos #header_shop > .disabled > a, .custom_bootstrap .navbar-inverse .navbar-nav > .disabled > a:hover, .custom_bootstrap #header_infos .navbar-nav > .disabled > a:hover, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a:hover, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a:hover, .custom_bootstrap .navbar-inverse #header_employee_box > .disabled > a:hover, .custom_bootstrap #header_infos #header_employee_box > .disabled > a:hover, .custom_bootstrap .navbar-inverse #header_quick > .disabled > a:hover, .custom_bootstrap #header_infos #header_quick > .disabled > a:hover, .custom_bootstrap .navbar-inverse #header_shop > .disabled > a:hover, .custom_bootstrap #header_infos #header_shop > .disabled > a:hover, .custom_bootstrap .navbar-inverse .navbar-nav > .disabled > a:focus, .custom_bootstrap #header_infos .navbar-nav > .disabled > a:focus, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a:focus, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a:focus, .custom_bootstrap .navbar-inverse #header_employee_box > .disabled > a:focus, .custom_bootstrap #header_infos #header_employee_box > .disabled > a:focus, .custom_bootstrap .navbar-inverse #header_quick > .disabled > a:focus, .custom_bootstrap #header_infos #header_quick > .disabled > a:focus, .custom_bootstrap .navbar-inverse #header_shop > .disabled > a:focus, .custom_bootstrap #header_infos #header_shop > .disabled > a:focus {
|
||
color: #444;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-toggle, .custom_bootstrap #header_infos .navbar-toggle {
|
||
border-color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-toggle:hover, .custom_bootstrap #header_infos .navbar-toggle:hover, .custom_bootstrap .navbar-inverse .navbar-toggle:focus, .custom_bootstrap #header_infos .navbar-toggle:focus {
|
||
background-color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-toggle .icon-bar, .custom_bootstrap #header_infos .navbar-toggle .icon-bar {
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-collapse, .custom_bootstrap #header_infos .navbar-collapse,
|
||
.custom_bootstrap .navbar-inverse .navbar-form,
|
||
.custom_bootstrap #header_infos .navbar-form {
|
||
border-color: #181a1d;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-nav > .open > a, .custom_bootstrap #header_infos .navbar-nav > .open > a, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .open > a, .custom_bootstrap .navbar-inverse #header_employee_box > .open > a, .custom_bootstrap #header_infos #header_employee_box > .open > a, .custom_bootstrap .navbar-inverse #header_quick > .open > a, .custom_bootstrap #header_infos #header_quick > .open > a, .custom_bootstrap .navbar-inverse #header_shop > .open > a, .custom_bootstrap #header_infos #header_shop > .open > a, .custom_bootstrap .navbar-inverse .navbar-nav > .open > a:hover, .custom_bootstrap #header_infos .navbar-nav > .open > a:hover, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a:hover, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .open > a:hover, .custom_bootstrap .navbar-inverse #header_employee_box > .open > a:hover, .custom_bootstrap #header_infos #header_employee_box > .open > a:hover, .custom_bootstrap .navbar-inverse #header_quick > .open > a:hover, .custom_bootstrap #header_infos #header_quick > .open > a:hover, .custom_bootstrap .navbar-inverse #header_shop > .open > a:hover, .custom_bootstrap #header_infos #header_shop > .open > a:hover, .custom_bootstrap .navbar-inverse .navbar-nav > .open > a:focus, .custom_bootstrap #header_infos .navbar-nav > .open > a:focus, .custom_bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a:focus, .custom_bootstrap #header_infos #header_notifs_icon_wrapper > .open > a:focus, .custom_bootstrap .navbar-inverse #header_employee_box > .open > a:focus, .custom_bootstrap #header_infos #header_employee_box > .open > a:focus, .custom_bootstrap .navbar-inverse #header_quick > .open > a:focus, .custom_bootstrap #header_infos #header_quick > .open > a:focus, .custom_bootstrap .navbar-inverse #header_shop > .open > a:focus, .custom_bootstrap #header_infos #header_shop > .open > a:focus {
|
||
background-color: #111214;
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-link, .custom_bootstrap #header_infos .navbar-link {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .navbar-link:hover, .custom_bootstrap #header_infos .navbar-link:hover {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .btn-link, .custom_bootstrap #header_infos .btn-link {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .btn-link:hover, .custom_bootstrap #header_infos .btn-link:hover, .custom_bootstrap .navbar-inverse .btn-link:focus, .custom_bootstrap #header_infos .btn-link:focus {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .navbar-inverse .btn-link[disabled]:hover, .custom_bootstrap #header_infos .btn-link[disabled]:hover, .custom_bootstrap .navbar-inverse .btn-link[disabled]:focus, .custom_bootstrap #header_infos .btn-link[disabled]:focus, fieldset[disabled] .custom_bootstrap .navbar-inverse .btn-link:hover, fieldset[disabled] .custom_bootstrap #header_infos .btn-link:hover, fieldset[disabled] .custom_bootstrap .navbar-inverse .btn-link:focus, fieldset[disabled] .custom_bootstrap #header_infos .btn-link:focus {
|
||
color: #444;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb {
|
||
padding: 8px 15px;
|
||
margin-bottom: 17px;
|
||
list-style: none;
|
||
background-color: #f5f5f5;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb > li {
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb > li + li:before {
|
||
content: "/ ";
|
||
padding: 0 5px;
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb > .active {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .pagination {
|
||
display: inline-block;
|
||
padding-left: 0;
|
||
margin: 17px 0;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > li {
|
||
display: inline;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > li > a,
|
||
.custom_bootstrap .pagination > li > span {
|
||
position: relative;
|
||
float: left;
|
||
padding: 6px 8px;
|
||
line-height: 1.42857;
|
||
text-decoration: none;
|
||
color: #00aff0;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
margin-left: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > li:first-child > a,
|
||
.custom_bootstrap .pagination > li:first-child > span {
|
||
margin-left: 0;
|
||
border-bottom-left-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > li:last-child > a,
|
||
.custom_bootstrap .pagination > li:last-child > span {
|
||
border-bottom-right-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > li > a:hover, .custom_bootstrap .pagination > li > a:focus,
|
||
.custom_bootstrap .pagination > li > span:hover,
|
||
.custom_bootstrap .pagination > li > span:focus {
|
||
color: #0077a4;
|
||
background-color: #eeeeee;
|
||
border-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > .active > a, .custom_bootstrap .pagination > .active > a:hover, .custom_bootstrap .pagination > .active > a:focus,
|
||
.custom_bootstrap .pagination > .active > span,
|
||
.custom_bootstrap .pagination > .active > span:hover,
|
||
.custom_bootstrap .pagination > .active > span:focus {
|
||
z-index: 2;
|
||
color: #fff;
|
||
background-color: #00aff0;
|
||
border-color: #00aff0;
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .pagination > .disabled > span,
|
||
.custom_bootstrap .pagination > .disabled > span:hover,
|
||
.custom_bootstrap .pagination > .disabled > span:focus,
|
||
.custom_bootstrap .pagination > .disabled > a,
|
||
.custom_bootstrap .pagination > .disabled > a:hover,
|
||
.custom_bootstrap .pagination > .disabled > a:focus {
|
||
color: #999999;
|
||
background-color: #fff;
|
||
border-color: #ddd;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.custom_bootstrap .pagination-lg > li > a,
|
||
.custom_bootstrap .pagination-lg > li > span {
|
||
padding: 10px 16px;
|
||
font-size: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination-lg > li:first-child > a,
|
||
.custom_bootstrap .pagination-lg > li:first-child > span {
|
||
border-bottom-left-radius: 6px;
|
||
border-top-left-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination-lg > li:last-child > a,
|
||
.custom_bootstrap .pagination-lg > li:last-child > span {
|
||
border-bottom-right-radius: 6px;
|
||
border-top-right-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination-sm > li > a,
|
||
.custom_bootstrap .pagination-sm > li > span {
|
||
padding: 5px 10px;
|
||
font-size: 11px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination-sm > li:first-child > a,
|
||
.custom_bootstrap .pagination-sm > li:first-child > span {
|
||
border-bottom-left-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .pagination-sm > li:last-child > a,
|
||
.custom_bootstrap .pagination-sm > li:last-child > span {
|
||
border-bottom-right-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .pager {
|
||
padding-left: 0;
|
||
margin: 17px 0;
|
||
list-style: none;
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .pager:before, .custom_bootstrap .pager:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .pager:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .pager li {
|
||
display: inline;
|
||
}
|
||
|
||
.custom_bootstrap .pager li > a,
|
||
.custom_bootstrap .pager li > span {
|
||
display: inline-block;
|
||
padding: 5px 14px;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .pager li > a:hover,
|
||
.custom_bootstrap .pager li > a:focus {
|
||
text-decoration: none;
|
||
background-color: #eeeeee;
|
||
}
|
||
|
||
.custom_bootstrap .pager .next > a,
|
||
.custom_bootstrap .pager .next > span {
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap .pager .previous > a,
|
||
.custom_bootstrap .pager .previous > span {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .pager .disabled > a,
|
||
.custom_bootstrap .pager .disabled > a:hover,
|
||
.custom_bootstrap .pager .disabled > a:focus,
|
||
.custom_bootstrap .pager .disabled > span {
|
||
color: #999999;
|
||
background-color: #fff;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.custom_bootstrap .label {
|
||
display: inline;
|
||
padding: 0.15em 0.4em;
|
||
font-size: 75%;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
color: #fff;
|
||
text-align: center;
|
||
white-space: nowrap;
|
||
vertical-align: baseline;
|
||
border-radius: .25em;
|
||
}
|
||
|
||
.custom_bootstrap .label:empty {
|
||
display: none;
|
||
}
|
||
|
||
.btn .custom_bootstrap .label {
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
|
||
.custom_bootstrap a.label:hover, .custom_bootstrap a.label:focus {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .label-default {
|
||
background-color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .label-default[href]:hover, .custom_bootstrap .label-default[href]:focus {
|
||
background-color: gray;
|
||
}
|
||
|
||
.custom_bootstrap .label-primary {
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .label-primary[href]:hover, .custom_bootstrap .label-primary[href]:focus {
|
||
background-color: #008abd;
|
||
}
|
||
|
||
.custom_bootstrap .label-success {
|
||
background-color: #72C279;
|
||
}
|
||
|
||
.custom_bootstrap .label-success[href]:hover, .custom_bootstrap .label-success[href]:focus {
|
||
background-color: #4eb357;
|
||
}
|
||
|
||
.custom_bootstrap .label-info {
|
||
background-color: #25b9d7;
|
||
}
|
||
|
||
.custom_bootstrap .label-info[href]:hover, .custom_bootstrap .label-info[href]:focus {
|
||
background-color: #1e94ab;
|
||
}
|
||
|
||
.custom_bootstrap .label-warning {
|
||
background-color: #fbbb22;
|
||
}
|
||
|
||
.custom_bootstrap .label-warning[href]:hover, .custom_bootstrap .label-warning[href]:focus {
|
||
background-color: #e6a304;
|
||
}
|
||
|
||
.custom_bootstrap .label-danger {
|
||
background-color: #E08F95;
|
||
}
|
||
|
||
.custom_bootstrap .label-danger[href]:hover, .custom_bootstrap .label-danger[href]:focus {
|
||
background-color: #d5676f;
|
||
}
|
||
|
||
.custom_bootstrap .badge, .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge {
|
||
display: inline-block;
|
||
min-width: 10px;
|
||
padding: 3px 7px;
|
||
font-size: 11px;
|
||
font-weight: bold;
|
||
color: #fff;
|
||
line-height: 1;
|
||
vertical-align: baseline;
|
||
white-space: nowrap;
|
||
text-align: center;
|
||
background-color: #999999;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .badge:empty, .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge:empty {
|
||
display: none;
|
||
}
|
||
|
||
.btn .custom_bootstrap .badge, .btn .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge {
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
|
||
.btn-xs .custom_bootstrap .badge, .custom_bootstrap .btn-group-xs > .btn .custom_bootstrap .badge, .btn-xs .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap .btn-group-xs > .btn .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .btn-group-xs > .btn .custom_bootstrap .notifs_badge {
|
||
top: 0;
|
||
padding: 1px 5px;
|
||
}
|
||
|
||
a.list-group-item.active > .custom_bootstrap .badge, a.list-group-item.active > .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge, .nav-pills > .active > a > .custom_bootstrap .badge, .nav-pills > .active > a > .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge {
|
||
color: #00aff0;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.nav-pills > li > a > .custom_bootstrap .badge, .nav-pills > li > a > .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge {
|
||
margin-left: 3px;
|
||
}
|
||
|
||
.custom_bootstrap a.badge:hover, .custom_bootstrap #header_notifs_icon_wrapper a.notifs_badge:hover, .custom_bootstrap a.badge:focus, .custom_bootstrap #header_notifs_icon_wrapper a.notifs_badge:focus {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .thumbnail {
|
||
display: block;
|
||
padding: 4px;
|
||
margin-bottom: 17px;
|
||
line-height: 1.42857;
|
||
background-color: #EFF1F2;
|
||
border: 1px solid #ddd;
|
||
border-radius: 3px;
|
||
-webkit-transition: all 0.2s ease-in-out;
|
||
-o-transition: all 0.2s ease-in-out;
|
||
transition: all 0.2s ease-in-out;
|
||
}
|
||
|
||
.custom_bootstrap .thumbnail > img,
|
||
.custom_bootstrap .thumbnail a > img {
|
||
display: block;
|
||
max-width: 100%;
|
||
height: auto;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .thumbnail .caption {
|
||
padding: 9px;
|
||
color: #555555;
|
||
}
|
||
|
||
.custom_bootstrap a.thumbnail:hover,
|
||
.custom_bootstrap a.thumbnail:focus,
|
||
.custom_bootstrap a.thumbnail.active {
|
||
border-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .alert {
|
||
padding: 15px;
|
||
margin-bottom: 17px;
|
||
border: 1px solid transparent;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .alert h4 {
|
||
margin-top: 0;
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .alert .alert-link {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap .alert > p,
|
||
.custom_bootstrap .alert > ul {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .alert > p + p {
|
||
margin-top: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .alert-dismissable {
|
||
padding-right: 35px;
|
||
}
|
||
|
||
.custom_bootstrap .alert-dismissable .close {
|
||
position: relative;
|
||
top: -2px;
|
||
right: -21px;
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .alert-success {
|
||
background-color: #ddf0de;
|
||
border-color: #72C279;
|
||
color: #72C279;
|
||
}
|
||
|
||
.custom_bootstrap .alert-success hr {
|
||
border-top-color: #60ba68;
|
||
}
|
||
|
||
.custom_bootstrap .alert-success .alert-link {
|
||
color: #4eb357;
|
||
}
|
||
|
||
.custom_bootstrap .alert-info {
|
||
background-color: #DCF4F9;
|
||
border-color: #25b9d7;
|
||
color: #1e94ab;
|
||
}
|
||
|
||
.custom_bootstrap .alert-info hr {
|
||
border-top-color: #21a6c1;
|
||
}
|
||
|
||
.custom_bootstrap .alert-info .alert-link {
|
||
color: #166e80;
|
||
}
|
||
|
||
.custom_bootstrap .alert-warning {
|
||
background-color: #FFF3D7;
|
||
border-color: #D2A63C;
|
||
color: #D2A63C;
|
||
}
|
||
|
||
.custom_bootstrap .alert-warning hr {
|
||
border-top-color: #c79a2e;
|
||
}
|
||
|
||
.custom_bootstrap .alert-warning .alert-link {
|
||
color: #b28a29;
|
||
}
|
||
|
||
.custom_bootstrap .alert-danger {
|
||
background-color: #FFE2E4;
|
||
border-color: #E08F95;
|
||
color: #D27C82;
|
||
}
|
||
|
||
.custom_bootstrap .alert-danger hr {
|
||
border-top-color: #da7b82;
|
||
}
|
||
|
||
.custom_bootstrap .alert-danger .alert-link {
|
||
color: #c5565e;
|
||
}
|
||
|
||
@keyframes progress-bar-stripes {
|
||
from {
|
||
background-position: 40px 0;
|
||
}
|
||
to {
|
||
background-position: 0 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .progress {
|
||
overflow: hidden;
|
||
height: 17px;
|
||
margin-bottom: 17px;
|
||
background-color: #f5f5f5;
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar {
|
||
float: left;
|
||
width: 0%;
|
||
height: 100%;
|
||
font-size: 11px;
|
||
line-height: 17px;
|
||
color: #fff;
|
||
text-align: center;
|
||
background-color: #00aff0;
|
||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||
-webkit-transition: width 0.6s ease;
|
||
-o-transition: width 0.6s ease;
|
||
transition: width 0.6s ease;
|
||
}
|
||
|
||
.custom_bootstrap .progress-striped .progress-bar {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-size: 40px 40px;
|
||
}
|
||
|
||
.custom_bootstrap .progress.active .progress-bar {
|
||
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
||
-o-animation: progress-bar-stripes 2s linear infinite;
|
||
animation: progress-bar-stripes 2s linear infinite;
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar[aria-valuenow="1"], .custom_bootstrap .progress-bar[aria-valuenow="2"] {
|
||
min-width: 30px;
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar[aria-valuenow="0"] {
|
||
color: #999999;
|
||
min-width: 30px;
|
||
background-color: transparent;
|
||
background-image: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar-success {
|
||
background-color: #72C279;
|
||
}
|
||
|
||
.progress-striped .custom_bootstrap .progress-bar-success {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar-info {
|
||
background-color: #25b9d7;
|
||
}
|
||
|
||
.progress-striped .custom_bootstrap .progress-bar-info {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar-warning {
|
||
background-color: #fbbb22;
|
||
}
|
||
|
||
.progress-striped .custom_bootstrap .progress-bar-warning {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
|
||
.custom_bootstrap .progress-bar-danger {
|
||
background-color: #E08F95;
|
||
}
|
||
|
||
.progress-striped .custom_bootstrap .progress-bar-danger {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
|
||
.custom_bootstrap .media,
|
||
.custom_bootstrap .media-body {
|
||
overflow: hidden;
|
||
zoom: 1;
|
||
}
|
||
|
||
.custom_bootstrap .media,
|
||
.custom_bootstrap .media .media {
|
||
margin-top: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .media:first-child {
|
||
margin-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .media-object {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .media-heading {
|
||
margin: 0 0 5px;
|
||
}
|
||
|
||
.custom_bootstrap .media > .pull-left {
|
||
margin-right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .media > .pull-right {
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .media-list {
|
||
padding-left: 0;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap .list-group {
|
||
margin-bottom: 20px;
|
||
padding-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item {
|
||
position: relative;
|
||
display: block;
|
||
padding: 10px 15px;
|
||
margin-bottom: -1px;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item:first-child {
|
||
border-top-right-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item:last-child {
|
||
margin-bottom: 0;
|
||
border-bottom-right-radius: 3px;
|
||
border-bottom-left-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item > .badge, .custom_bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge {
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item > .badge + .badge, .custom_bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .badge, .custom_bootstrap #header_notifs_icon_wrapper .list-group-item > .badge + .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .notifs_badge {
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item {
|
||
color: #555;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item .list-group-item-heading {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item:hover, .custom_bootstrap a.list-group-item:focus {
|
||
text-decoration: none;
|
||
color: #555;
|
||
background-color: #f5f5f5;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item.disabled, .custom_bootstrap .list-group-item.disabled:hover, .custom_bootstrap .list-group-item.disabled:focus {
|
||
background-color: #eeeeee;
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item.disabled .list-group-item-heading, .custom_bootstrap .list-group-item.disabled:hover .list-group-item-heading, .custom_bootstrap .list-group-item.disabled:focus .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item.disabled .list-group-item-text, .custom_bootstrap .list-group-item.disabled:hover .list-group-item-text, .custom_bootstrap .list-group-item.disabled:focus .list-group-item-text {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item.active, .custom_bootstrap .list-group-item.active:hover, .custom_bootstrap .list-group-item.active:focus {
|
||
z-index: 2;
|
||
color: #fff;
|
||
background-color: #00aff0;
|
||
border-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item.active .list-group-item-heading, .custom_bootstrap .list-group-item.active:hover .list-group-item-heading, .custom_bootstrap .list-group-item.active:focus .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item.active .list-group-item-text, .custom_bootstrap .list-group-item.active:hover .list-group-item-text, .custom_bootstrap .list-group-item.active:focus .list-group-item-text {
|
||
color: #bdedff;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item-success {
|
||
color: #3c763d;
|
||
background-color: #cce9d7;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-success {
|
||
color: #3c763d;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-success .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-success:hover, .custom_bootstrap a.list-group-item-success:focus {
|
||
color: #3c763d;
|
||
background-color: #bae1c9;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-success.active, .custom_bootstrap a.list-group-item-success.active:hover, .custom_bootstrap a.list-group-item-success.active:focus {
|
||
color: #fff;
|
||
background-color: #3c763d;
|
||
border-color: #3c763d;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item-info {
|
||
color: #31708f;
|
||
background-color: #d3f1f7;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-info {
|
||
color: #31708f;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-info .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-info:hover, .custom_bootstrap a.list-group-item-info:focus {
|
||
color: #31708f;
|
||
background-color: #bdeaf3;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-info.active, .custom_bootstrap a.list-group-item-info.active:hover, .custom_bootstrap a.list-group-item-info.active:focus {
|
||
color: #fff;
|
||
background-color: #31708f;
|
||
border-color: #31708f;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item-warning {
|
||
color: #8a6d3b;
|
||
background-color: #fef1d3;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-warning {
|
||
color: #8a6d3b;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-warning .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-warning:hover, .custom_bootstrap a.list-group-item-warning:focus {
|
||
color: #8a6d3b;
|
||
background-color: #fde9ba;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-warning.active, .custom_bootstrap a.list-group-item-warning.active:hover, .custom_bootstrap a.list-group-item-warning.active:focus {
|
||
color: #fff;
|
||
background-color: #8a6d3b;
|
||
border-color: #8a6d3b;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item-danger {
|
||
color: #a94442;
|
||
background-color: #f9cce1;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-danger {
|
||
color: #a94442;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-danger .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-danger:hover, .custom_bootstrap a.list-group-item-danger:focus {
|
||
color: #a94442;
|
||
background-color: #f6b5d4;
|
||
}
|
||
|
||
.custom_bootstrap a.list-group-item-danger.active, .custom_bootstrap a.list-group-item-danger.active:hover, .custom_bootstrap a.list-group-item-danger.active:focus {
|
||
color: #fff;
|
||
background-color: #a94442;
|
||
border-color: #a94442;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item-heading {
|
||
margin-top: 0;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .list-group-item-text {
|
||
margin-bottom: 0;
|
||
line-height: 1.3;
|
||
}
|
||
|
||
.custom_bootstrap .panel {
|
||
margin-bottom: 17px;
|
||
margin-top: 5px;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.custom_bootstrap .panel-body {
|
||
padding: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .panel-body:before, .custom_bootstrap .panel-body:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .panel-body:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .panel-heading {
|
||
padding: 10px 15px;
|
||
border-bottom: 1px solid #ddd;
|
||
border-top-right-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel-heading > .dropdown .dropdown-toggle {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .panel-title {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
font-size: 14px;
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .panel-title > a {
|
||
color: inherit;
|
||
}
|
||
|
||
.custom_bootstrap .panel-footer {
|
||
padding: 10px 15px;
|
||
background-color: #f5f5f5;
|
||
border-top: 1px solid #ddd;
|
||
border-bottom-right-radius: 2px;
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .list-group {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .list-group .list-group-item {
|
||
border-width: 1px 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .list-group:first-child .list-group-item:first-child {
|
||
border-top: 0;
|
||
border-top-right-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .list-group:last-child .list-group-item:last-child {
|
||
border-bottom: 0;
|
||
border-bottom-right-radius: 2px;
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel-heading + .list-group .list-group-item:first-child {
|
||
border-top-width: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table,
|
||
.custom_bootstrap .panel > .table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child {
|
||
border-top-right-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
||
.custom_bootstrap .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
||
.custom_bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
||
.custom_bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
||
border-top-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
||
.custom_bootstrap .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
||
.custom_bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
||
.custom_bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
||
border-top-right-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child {
|
||
border-bottom-right-radius: 2px;
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
||
.custom_bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
||
.custom_bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
||
.custom_bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
||
.custom_bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
||
.custom_bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
||
.custom_bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
||
border-bottom-right-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .panel-body + .table,
|
||
.custom_bootstrap .panel > .panel-body + .table-responsive {
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table > tbody:first-child > tr:first-child th,
|
||
.custom_bootstrap .panel > .table > tbody:first-child > tr:first-child td {
|
||
border-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table-bordered,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered {
|
||
border: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table-bordered > thead > tr > th:first-child,
|
||
.custom_bootstrap .panel > .table-bordered > thead > tr > td:first-child,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr > th:first-child,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr > td:first-child,
|
||
.custom_bootstrap .panel > .table-bordered > tfoot > tr > th:first-child,
|
||
.custom_bootstrap .panel > .table-bordered > tfoot > tr > td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table-bordered > thead > tr > th:last-child,
|
||
.custom_bootstrap .panel > .table-bordered > thead > tr > td:last-child,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr > th:last-child,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr > td:last-child,
|
||
.custom_bootstrap .panel > .table-bordered > tfoot > tr > th:last-child,
|
||
.custom_bootstrap .panel > .table-bordered > tfoot > tr > td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table-bordered > thead > tr:first-child > td,
|
||
.custom_bootstrap .panel > .table-bordered > thead > tr:first-child > th,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr:first-child > td,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr:first-child > th,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
||
border-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr:last-child > td,
|
||
.custom_bootstrap .panel > .table-bordered > tbody > tr:last-child > th,
|
||
.custom_bootstrap .panel > .table-bordered > tfoot > tr:last-child > td,
|
||
.custom_bootstrap .panel > .table-bordered > tfoot > tr:last-child > th,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
||
.custom_bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
||
border-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel > .table-responsive {
|
||
border: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group {
|
||
margin-bottom: 17px;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group .panel {
|
||
margin-bottom: 0;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group .panel + .panel {
|
||
margin-top: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group .panel-heading {
|
||
border-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group .panel-heading + .panel-collapse .panel-body {
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group .panel-footer {
|
||
border-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-group .panel-footer + .panel-collapse .panel-body {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel-default {
|
||
border-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel-default > .panel-heading {
|
||
color: #333333;
|
||
background-color: #f5f5f5;
|
||
border-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel-default > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel-default > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #ddd;
|
||
}
|
||
|
||
.custom_bootstrap .panel-primary {
|
||
border-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-primary > .panel-heading {
|
||
color: #fff;
|
||
background-color: #00aff0;
|
||
border-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .panel-success {
|
||
border-color: #bae1c3;
|
||
}
|
||
|
||
.custom_bootstrap .panel-success > .panel-heading {
|
||
color: #3c763d;
|
||
background-color: #cce9d7;
|
||
border-color: #bae1c3;
|
||
}
|
||
|
||
.custom_bootstrap .panel-success > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #bae1c3;
|
||
}
|
||
|
||
.custom_bootstrap .panel-success > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #bae1c3;
|
||
}
|
||
|
||
.custom_bootstrap .panel-info {
|
||
border-color: #b5f2f2;
|
||
}
|
||
|
||
.custom_bootstrap .panel-info > .panel-heading {
|
||
color: #31708f;
|
||
background-color: #d3f1f7;
|
||
border-color: #b5f2f2;
|
||
}
|
||
|
||
.custom_bootstrap .panel-info > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #b5f2f2;
|
||
}
|
||
|
||
.custom_bootstrap .panel-info > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #b5f2f2;
|
||
}
|
||
|
||
.custom_bootstrap .panel-warning {
|
||
border-color: #fddeba;
|
||
}
|
||
|
||
.custom_bootstrap .panel-warning > .panel-heading {
|
||
color: #8a6d3b;
|
||
background-color: #fef1d3;
|
||
border-color: #fddeba;
|
||
}
|
||
|
||
.custom_bootstrap .panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #fddeba;
|
||
}
|
||
|
||
.custom_bootstrap .panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #fddeba;
|
||
}
|
||
|
||
.custom_bootstrap .panel-danger {
|
||
border-color: #f6b5de;
|
||
}
|
||
|
||
.custom_bootstrap .panel-danger > .panel-heading {
|
||
color: #a94442;
|
||
background-color: #f9cce1;
|
||
border-color: #f6b5de;
|
||
}
|
||
|
||
.custom_bootstrap .panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #f6b5de;
|
||
}
|
||
|
||
.custom_bootstrap .panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #f6b5de;
|
||
}
|
||
|
||
.custom_bootstrap .well {
|
||
min-height: 20px;
|
||
padding: 19px;
|
||
margin-bottom: 20px;
|
||
background-color: #FCFDFE;
|
||
border: 1px solid #e1ebf5;
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.custom_bootstrap .well blockquote {
|
||
border-color: #ddd;
|
||
border-color: rgba(0, 0, 0, 0.15);
|
||
}
|
||
|
||
.custom_bootstrap .well-lg {
|
||
padding: 24px;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .well-sm {
|
||
padding: 9px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .close {
|
||
float: right;
|
||
font-size: 18px;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
color: #000;
|
||
text-shadow: 0 1px 0 #fff;
|
||
opacity: 0.2;
|
||
filter: alpha(opacity=20);
|
||
}
|
||
|
||
.custom_bootstrap .close:hover, .custom_bootstrap .close:focus {
|
||
color: #000;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
opacity: 0.5;
|
||
filter: alpha(opacity=50);
|
||
}
|
||
|
||
.custom_bootstrap button.close {
|
||
padding: 0;
|
||
cursor: pointer;
|
||
background: transparent;
|
||
border: 0;
|
||
-webkit-appearance: none;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip {
|
||
position: absolute;
|
||
z-index: 1070;
|
||
display: block;
|
||
visibility: visible;
|
||
font-size: 11px;
|
||
line-height: 1.4;
|
||
opacity: 0;
|
||
filter: alpha(opacity=0);
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.in {
|
||
opacity: 1;
|
||
filter: alpha(opacity=100);
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.top {
|
||
margin-top: -3px;
|
||
padding: 5px 0;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.right {
|
||
margin-left: 3px;
|
||
padding: 0 5px;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.bottom {
|
||
margin-top: 3px;
|
||
padding: 5px 0;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.left {
|
||
margin-left: -3px;
|
||
padding: 0 5px;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip-inner {
|
||
max-width: 250px;
|
||
padding: 20px;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-decoration: none;
|
||
background-color: #555;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip-inner :last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip-arrow {
|
||
position: absolute;
|
||
width: 0;
|
||
height: 0;
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.top .tooltip-arrow {
|
||
bottom: 0;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
border-width: 5px 5px 0;
|
||
border-top-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.top-left .tooltip-arrow {
|
||
bottom: 0;
|
||
left: 5px;
|
||
border-width: 5px 5px 0;
|
||
border-top-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.top-right .tooltip-arrow {
|
||
bottom: 0;
|
||
right: 5px;
|
||
border-width: 5px 5px 0;
|
||
border-top-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.right .tooltip-arrow {
|
||
top: 50%;
|
||
left: 0;
|
||
margin-top: -5px;
|
||
border-width: 5px 5px 5px 0;
|
||
border-right-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.left .tooltip-arrow {
|
||
top: 50%;
|
||
right: 0;
|
||
margin-top: -5px;
|
||
border-width: 5px 0 5px 5px;
|
||
border-left-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.bottom .tooltip-arrow {
|
||
top: 0;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
border-width: 0 5px 5px;
|
||
border-bottom-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.bottom-left .tooltip-arrow {
|
||
top: 0;
|
||
left: 5px;
|
||
border-width: 0 5px 5px;
|
||
border-bottom-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip.bottom-right .tooltip-arrow {
|
||
top: 0;
|
||
right: 5px;
|
||
border-width: 0 5px 5px;
|
||
border-bottom-color: #555;
|
||
}
|
||
|
||
.custom_bootstrap .popover {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 1060;
|
||
display: none;
|
||
max-width: 276px;
|
||
padding: 1px;
|
||
text-align: left;
|
||
background-color: #fff;
|
||
background-clip: padding-box;
|
||
border: 1px solid #ccc;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
border-radius: 6px;
|
||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
white-space: normal;
|
||
}
|
||
|
||
.custom_bootstrap .popover.top {
|
||
margin-top: -10px;
|
||
}
|
||
|
||
.custom_bootstrap .popover.right {
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .popover.bottom {
|
||
margin-top: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .popover.left {
|
||
margin-left: -10px;
|
||
}
|
||
|
||
.custom_bootstrap .popover-title {
|
||
margin: 0;
|
||
padding: 8px 14px;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
line-height: 18px;
|
||
background-color: #f7f7f7;
|
||
border-bottom: 1px solid #ebebeb;
|
||
border-radius: 5px 5px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .popover-content {
|
||
padding: 9px 14px;
|
||
}
|
||
|
||
.custom_bootstrap .popover > .arrow, .custom_bootstrap .popover > .arrow:after {
|
||
position: absolute;
|
||
display: block;
|
||
width: 0;
|
||
height: 0;
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
}
|
||
|
||
.custom_bootstrap .popover > .arrow {
|
||
border-width: 11px;
|
||
}
|
||
|
||
.custom_bootstrap .popover > .arrow:after {
|
||
border-width: 10px;
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .popover.top > .arrow {
|
||
left: 50%;
|
||
margin-left: -11px;
|
||
border-bottom-width: 0;
|
||
border-top-color: #999999;
|
||
border-top-color: rgba(0, 0, 0, 0.05);
|
||
bottom: -11px;
|
||
}
|
||
|
||
.custom_bootstrap .popover.top > .arrow:after {
|
||
content: " ";
|
||
bottom: 1px;
|
||
margin-left: -10px;
|
||
border-bottom-width: 0;
|
||
border-top-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .popover.right > .arrow {
|
||
top: 50%;
|
||
left: -11px;
|
||
margin-top: -11px;
|
||
border-left-width: 0;
|
||
border-right-color: #999999;
|
||
border-right-color: rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.custom_bootstrap .popover.right > .arrow:after {
|
||
content: " ";
|
||
left: 1px;
|
||
bottom: -10px;
|
||
border-left-width: 0;
|
||
border-right-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .popover.bottom > .arrow {
|
||
left: 50%;
|
||
margin-left: -11px;
|
||
border-top-width: 0;
|
||
border-bottom-color: #999999;
|
||
border-bottom-color: rgba(0, 0, 0, 0.05);
|
||
top: -11px;
|
||
}
|
||
|
||
.custom_bootstrap .popover.bottom > .arrow:after {
|
||
content: " ";
|
||
top: 1px;
|
||
margin-left: -10px;
|
||
border-top-width: 0;
|
||
border-bottom-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .popover.left > .arrow {
|
||
top: 50%;
|
||
right: -11px;
|
||
margin-top: -11px;
|
||
border-right-width: 0;
|
||
border-left-color: #999999;
|
||
border-left-color: rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.custom_bootstrap .popover.left > .arrow:after {
|
||
content: " ";
|
||
right: 1px;
|
||
border-right-width: 0;
|
||
border-left-color: #fff;
|
||
bottom: -10px;
|
||
}
|
||
|
||
.custom_bootstrap .clearfix:before, .custom_bootstrap .clearfix:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .clearfix:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .center-block {
|
||
display: block;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .pull-right {
|
||
float: right !important;
|
||
}
|
||
|
||
.custom_bootstrap .pull-left {
|
||
float: left !important;
|
||
}
|
||
|
||
.custom_bootstrap .hide {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .show {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap .invisible {
|
||
visibility: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .text-hide {
|
||
font: 0/0 a;
|
||
color: transparent;
|
||
text-shadow: none;
|
||
background-color: transparent;
|
||
border: 0;
|
||
}
|
||
|
||
.custom_bootstrap .hidden {
|
||
display: none !important;
|
||
visibility: hidden !important;
|
||
}
|
||
|
||
.custom_bootstrap .affix {
|
||
position: fixed;
|
||
}
|
||
|
||
.custom_bootstrap .visible-xs, .custom_bootstrap .visible-sm, .custom_bootstrap .visible-md, .custom_bootstrap .visible-lg {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .visible-xs-block,
|
||
.custom_bootstrap .visible-xs-inline,
|
||
.custom_bootstrap .visible-xs-inline-block,
|
||
.custom_bootstrap .visible-sm-block,
|
||
.custom_bootstrap .visible-sm-inline,
|
||
.custom_bootstrap .visible-sm-inline-block,
|
||
.custom_bootstrap .visible-md-block,
|
||
.custom_bootstrap .visible-md-inline,
|
||
.custom_bootstrap .visible-md-inline-block,
|
||
.custom_bootstrap .visible-lg-block,
|
||
.custom_bootstrap .visible-lg-inline,
|
||
.custom_bootstrap .visible-lg-inline-block {
|
||
display: none !important;
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .visible-xs {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap table.visible-xs {
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap tr.visible-xs {
|
||
display: table-row !important;
|
||
}
|
||
|
||
.custom_bootstrap th.visible-xs,
|
||
.custom_bootstrap td.visible-xs {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .visible-xs-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .visible-xs-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .visible-xs-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.custom_bootstrap .visible-sm {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap table.visible-sm {
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap tr.visible-sm {
|
||
display: table-row !important;
|
||
}
|
||
|
||
.custom_bootstrap th.visible-sm,
|
||
.custom_bootstrap td.visible-sm {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.custom_bootstrap .visible-sm-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.custom_bootstrap .visible-sm-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.custom_bootstrap .visible-sm-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.custom_bootstrap .visible-md {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap table.visible-md {
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap tr.visible-md {
|
||
display: table-row !important;
|
||
}
|
||
|
||
.custom_bootstrap th.visible-md,
|
||
.custom_bootstrap td.visible-md {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.custom_bootstrap .visible-md-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.custom_bootstrap .visible-md-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.custom_bootstrap .visible-md-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .visible-lg {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap table.visible-lg {
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap tr.visible-lg {
|
||
display: table-row !important;
|
||
}
|
||
|
||
.custom_bootstrap th.visible-lg,
|
||
.custom_bootstrap td.visible-lg {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .visible-lg-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .visible-lg-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .visible-lg-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
.custom_bootstrap .hidden-xs, .custom_bootstrap #header_notifs_icon_wrapper, .custom_bootstrap #header_quick {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.custom_bootstrap .hidden-sm, .custom_bootstrap #header_quick {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.custom_bootstrap .hidden-md {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 1200px) {
|
||
.custom_bootstrap .hidden-lg {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .visible-print {
|
||
display: none !important;
|
||
}
|
||
|
||
@media print {
|
||
.custom_bootstrap .visible-print {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap table.visible-print {
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap tr.visible-print {
|
||
display: table-row !important;
|
||
}
|
||
|
||
.custom_bootstrap th.visible-print,
|
||
.custom_bootstrap td.visible-print {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .visible-print-block {
|
||
display: none !important;
|
||
}
|
||
|
||
@media print {
|
||
.custom_bootstrap .visible-print-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .visible-print-inline {
|
||
display: none !important;
|
||
}
|
||
|
||
@media print {
|
||
.custom_bootstrap .visible-print-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .visible-print-inline-block {
|
||
display: none !important;
|
||
}
|
||
|
||
@media print {
|
||
.custom_bootstrap .visible-print-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
|
||
@media print {
|
||
.custom_bootstrap .hidden-print {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .modal-open {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .modal {
|
||
display: none;
|
||
overflow: auto;
|
||
overflow-y: scroll;
|
||
position: fixed;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
z-index: 1050;
|
||
-webkit-overflow-scrolling: touch;
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .modal.fade .modal-dialog {
|
||
-webkit-transform: translate(0, -25%);
|
||
-ms-transform: translate(0, -25%);
|
||
-o-transform: translate(0, -25%);
|
||
transform: translate(0, -25%);
|
||
-webkit-transition: -webkit-transform 0.3s ease-out;
|
||
-moz-transition: -moz-transform 0.3s ease-out;
|
||
-o-transition: -o-transform 0.3s ease-out;
|
||
transition: transform 0.3s ease-out;
|
||
}
|
||
|
||
.custom_bootstrap .modal.in .modal-dialog {
|
||
-webkit-transform: translate(0, 0);
|
||
-ms-transform: translate(0, 0);
|
||
-o-transform: translate(0, 0);
|
||
transform: translate(0, 0);
|
||
}
|
||
|
||
.custom_bootstrap .modal-dialog {
|
||
position: relative;
|
||
width: auto;
|
||
margin: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .modal-content {
|
||
position: relative;
|
||
background-color: #fff;
|
||
border: 1px solid #999;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
border-radius: 6px;
|
||
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||
background-clip: padding-box;
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .modal-backdrop {
|
||
position: fixed;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
z-index: 1040;
|
||
background-color: #000;
|
||
}
|
||
|
||
.custom_bootstrap .modal-backdrop.fade {
|
||
opacity: 0;
|
||
filter: alpha(opacity=0);
|
||
}
|
||
|
||
.custom_bootstrap .modal-backdrop.in {
|
||
opacity: 0.5;
|
||
filter: alpha(opacity=50);
|
||
}
|
||
|
||
.custom_bootstrap .modal-header {
|
||
padding: 15px;
|
||
border-bottom: 1px solid #e5e5e5;
|
||
min-height: 16.42857px;
|
||
}
|
||
|
||
.custom_bootstrap .modal-header .close {
|
||
margin-top: -2px;
|
||
}
|
||
|
||
.custom_bootstrap .modal-title {
|
||
margin: 0;
|
||
line-height: 1.42857;
|
||
}
|
||
|
||
.custom_bootstrap .modal-body {
|
||
position: relative;
|
||
padding: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer {
|
||
padding: 15px;
|
||
text-align: right;
|
||
border-top: 1px solid #e5e5e5;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer:before, .custom_bootstrap .modal-footer:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer:after {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer .btn + .btn {
|
||
margin-left: 5px;
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer .btn-group .btn + .btn {
|
||
margin-left: -1px;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer .btn-block + .btn-block {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .modal-scrollbar-measure {
|
||
position: absolute;
|
||
top: -9999px;
|
||
width: 50px;
|
||
height: 50px;
|
||
overflow: scroll;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.custom_bootstrap .modal-dialog {
|
||
width: 600px;
|
||
margin: 30px auto;
|
||
}
|
||
|
||
.custom_bootstrap .modal-content {
|
||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.custom_bootstrap .modal-sm {
|
||
width: 300px;
|
||
}
|
||
}
|
||
|
||
@media (min-width: 992px) {
|
||
.custom_bootstrap .modal-lg {
|
||
width: 900px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .carousel {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner {
|
||
position: relative;
|
||
overflow: hidden;
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .item {
|
||
display: none;
|
||
position: relative;
|
||
-webkit-transition: 0.6s ease-in-out left;
|
||
-o-transition: 0.6s ease-in-out left;
|
||
transition: 0.6s ease-in-out left;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .item > img,
|
||
.custom_bootstrap .carousel-inner > .item > a > img {
|
||
display: block;
|
||
max-width: 100%;
|
||
height: auto;
|
||
line-height: 1;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .active,
|
||
.custom_bootstrap .carousel-inner > .next,
|
||
.custom_bootstrap .carousel-inner > .prev {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .active {
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .next,
|
||
.custom_bootstrap .carousel-inner > .prev {
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .next {
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .prev {
|
||
left: -100%;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .next.left,
|
||
.custom_bootstrap .carousel-inner > .prev.right {
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .active.left {
|
||
left: -100%;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-inner > .active.right {
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
bottom: 0;
|
||
width: 15%;
|
||
opacity: 0.5;
|
||
filter: alpha(opacity=50);
|
||
font-size: 20px;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control.left {
|
||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
||
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||
background-repeat: repeat-x;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control.right {
|
||
left: auto;
|
||
right: 0;
|
||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
|
||
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||
background-repeat: repeat-x;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control:hover, .custom_bootstrap .carousel-control:focus {
|
||
outline: 0;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
opacity: 0.9;
|
||
filter: alpha(opacity=90);
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .icon-prev,
|
||
.custom_bootstrap .carousel-control .icon-next,
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-left,
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-right {
|
||
position: absolute;
|
||
top: 50%;
|
||
z-index: 5;
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .icon-prev,
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-left {
|
||
left: 50%;
|
||
margin-left: -10px;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .icon-next,
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-right {
|
||
right: 50%;
|
||
margin-right: -10px;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .icon-prev,
|
||
.custom_bootstrap .carousel-control .icon-next {
|
||
width: 20px;
|
||
height: 20px;
|
||
margin-top: -10px;
|
||
font-family: serif;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .icon-prev:before {
|
||
content: '\2039';
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .icon-next:before {
|
||
content: '\203a';
|
||
}
|
||
|
||
.custom_bootstrap .carousel-indicators {
|
||
position: absolute;
|
||
bottom: 10px;
|
||
left: 50%;
|
||
z-index: 15;
|
||
width: 60%;
|
||
margin-left: -30%;
|
||
padding-left: 0;
|
||
list-style: none;
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-indicators li {
|
||
display: inline-block;
|
||
width: 10px;
|
||
height: 10px;
|
||
margin: 1px;
|
||
text-indent: -999px;
|
||
border: 1px solid #fff;
|
||
border-radius: 10px;
|
||
cursor: pointer;
|
||
background-color: #000 \9;
|
||
background-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-indicators .active {
|
||
margin: 0;
|
||
width: 12px;
|
||
height: 12px;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-caption {
|
||
position: absolute;
|
||
left: 15%;
|
||
right: 15%;
|
||
bottom: 20px;
|
||
z-index: 10;
|
||
padding-top: 20px;
|
||
padding-bottom: 20px;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||
}
|
||
|
||
.custom_bootstrap .carousel-caption .btn {
|
||
text-shadow: none;
|
||
}
|
||
|
||
@media screen and (min-width: 768px) {
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-left,
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-right,
|
||
.custom_bootstrap .carousel-control .icon-prev,
|
||
.custom_bootstrap .carousel-control .icon-next {
|
||
width: 30px;
|
||
height: 30px;
|
||
margin-top: -15px;
|
||
font-size: 30px;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-left,
|
||
.custom_bootstrap .carousel-control .icon-prev {
|
||
margin-left: -15px;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-control .glyphicon-chevron-right,
|
||
.custom_bootstrap .carousel-control .icon-next {
|
||
margin-right: -15px;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-caption {
|
||
left: 20%;
|
||
right: 20%;
|
||
padding-bottom: 30px;
|
||
}
|
||
|
||
.custom_bootstrap .carousel-indicators {
|
||
bottom: 20px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #main {
|
||
z-index: 10;
|
||
width: 100%;
|
||
padding: 36px 0 60px;
|
||
margin: 0 0 -50px 0;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap #content {
|
||
padding: 0 10px 0;
|
||
-webkit-transition-property: margin;
|
||
transition-property: margin;
|
||
-webkit-transition-duration: 0.4s;
|
||
transition-duration: 0.4s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel {
|
||
position: relative;
|
||
padding: 20px;
|
||
margin-bottom: 20px;
|
||
border: solid 1px #d3d8db;
|
||
background-color: white;
|
||
-webkit-border-radius: 5px;
|
||
border-radius: 5px;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel.panel-highlighted {
|
||
border-color: #00aff0 !important;
|
||
-webkit-box-shadow: rgba(0, 175, 240, 0.15) 0 0 0 6px inset !important;
|
||
box-shadow: rgba(0, 175, 240, 0.15) 0 0 0 6px inset !important;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel .panel-heading {
|
||
font-family: "Ubuntu Condensed", Helvetica, Arial, sans-serif;
|
||
font-weight: 400;
|
||
font-size: 14px;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
color: #555;
|
||
height: 32px;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel .panel-heading .btn {
|
||
padding: 4px 8px !important;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel .panel-heading a.btn {
|
||
font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
||
text-transform: none;
|
||
position: relative;
|
||
top: 2px;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel .panel-heading i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel .panel {
|
||
border: solid 1px #DDDDDD;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel .panel.tab-content {
|
||
-webkit-border-radius: 0 0 3px 3px;
|
||
border-radius: 0 0 3px 3px;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title), .custom_bootstrap #content .panel-heading {
|
||
border: none;
|
||
font-size: 1.2em;
|
||
line-height: 2.2em;
|
||
height: 2.2em;
|
||
text-transform: uppercase;
|
||
border-bottom: solid 1px #EEEEEE;
|
||
padding: 0 0 0 5px;
|
||
margin: -20px -16px 15px -16px;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) i, .custom_bootstrap #content h3:not(.modal-title) a, .custom_bootstrap #content .panel-heading i, .custom_bootstrap #content .panel-heading a {
|
||
color: #e5e8e3;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .badge, .custom_bootstrap #content h3:not(.modal-title) #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper #content h3:not(.modal-title) .notifs_badge, .custom_bootstrap #content .panel-heading .badge, .custom_bootstrap #content .panel-heading #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper #content .panel-heading .notifs_badge {
|
||
color: #555555;
|
||
font-size: 1.1em;
|
||
line-height: 1.2em;
|
||
padding: 0 10px;
|
||
font-weight: 700;
|
||
border: solid 1px #d9d9d9;
|
||
background-color: white;
|
||
margin-left: 0.4em;
|
||
-webkit-border-radius: 20px;
|
||
border-radius: 20px;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .badge a, .custom_bootstrap #content h3:not(.modal-title) #header_notifs_icon_wrapper .notifs_badge a, .custom_bootstrap #header_notifs_icon_wrapper #content h3:not(.modal-title) .notifs_badge a, .custom_bootstrap #content .panel-heading .badge a, .custom_bootstrap #content .panel-heading #header_notifs_icon_wrapper .notifs_badge a, .custom_bootstrap #header_notifs_icon_wrapper #content .panel-heading .notifs_badge a {
|
||
display: block;
|
||
font-size: 0.8em;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action, .custom_bootstrap #content .panel-heading .panel-heading-action {
|
||
line-height: 0;
|
||
position: absolute;
|
||
top: 2px;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action .btn, .custom_bootstrap #content .panel-heading .panel-heading-action .btn {
|
||
padding: 4px 8px !important;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action .btn-group, .custom_bootstrap #content .panel-heading .panel-heading-action .btn-group {
|
||
position: absolute;
|
||
white-space: nowrap;
|
||
top: -2px;
|
||
right: 2px;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action .btn-group a.btn, .custom_bootstrap #content .panel-heading .panel-heading-action .btn-group a.btn {
|
||
float: none;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action > a.btn, .custom_bootstrap #content .panel-heading .panel-heading-action > a.btn {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 2px;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn, .custom_bootstrap #content .panel-heading .panel-heading-action a.list-toolbar-btn {
|
||
height: 30px;
|
||
width: 30px;
|
||
color: #CCC;
|
||
float: left;
|
||
border-left: solid 1px #eee;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn:hover, .custom_bootstrap #content .panel-heading .panel-heading-action a.list-toolbar-btn:hover {
|
||
text-decoration: none;
|
||
color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap #content h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, .custom_bootstrap #content .panel-heading .panel-heading-action a.list-toolbar-btn i {
|
||
text-align: center;
|
||
font-size: 18px;
|
||
line-height: 30px;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel-danger .panel-heading {
|
||
background-color: #8BC954 !important;
|
||
}
|
||
|
||
.custom_bootstrap #content form .alert {
|
||
clear: both;
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
.custom_bootstrap #content {
|
||
padding: 120px 5px 0;
|
||
margin-left: 0 !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #content .help-block {
|
||
font-style: italic;
|
||
}
|
||
|
||
.custom_bootstrap #content .nav.nav-tabs li.active a, .custom_bootstrap #content .nav-tabs#header_notifs_icon_wrapper li.active a, .custom_bootstrap #content .nav-tabs#header_employee_box li.active a, .custom_bootstrap #content .nav-tabs#header_quick li.active a, .custom_bootstrap #content .nav-tabs#header_shop li.active a {
|
||
z-index: 99;
|
||
}
|
||
|
||
.custom_bootstrap #content .breadcrumb {
|
||
background-color: white;
|
||
border: solid 1px #d3d8db;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel.panel-sm {
|
||
padding: 8px !important;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel.panel-sm .panel-heading {
|
||
font-size: 13px;
|
||
margin: -8px -8px 10px;
|
||
padding-left: 8px;
|
||
}
|
||
|
||
.custom_bootstrap #content .panel.panel-sm .form-group {
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.custom_bootstrap .data-focus.data-focus-primary {
|
||
background-color: #00aff0;
|
||
color: white;
|
||
-webkit-border-radius: 10px;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #customer_part .customerCard.selected-customer .panel {
|
||
color: #72C279;
|
||
border: solid 2px #72C279;
|
||
}
|
||
|
||
.custom_bootstrap body.display-modal #content, .custom_bootstrap body.display-modal #main {
|
||
margin: 0;
|
||
padding: 0;
|
||
background: #F8F8F8;
|
||
}
|
||
|
||
.custom_bootstrap .modal .alert h3 {
|
||
margin-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .modal-footer .alert {
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .panel .panel-footer {
|
||
height: 73px;
|
||
border-color: #eee;
|
||
background-color: #FCFDFE;
|
||
margin: 15px -20px -20px;
|
||
}
|
||
|
||
.custom_bootstrap .panel .panel-footer .btn.pull-right:not(:first-child) {
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .panel .panel-footer .btn {
|
||
line-height: 1em;
|
||
}
|
||
|
||
.custom_bootstrap #header .panel-footer {
|
||
margin: 15px 0 0 !important;
|
||
height: 40px !important;
|
||
}
|
||
|
||
.custom_bootstrap #main.helpOpen {
|
||
width: 70%;
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
.custom_bootstrap #main.helpOpen {
|
||
width: 100%;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #help-container {
|
||
position: relative;
|
||
margin: 0;
|
||
padding: 0;
|
||
float: right;
|
||
width: 30%;
|
||
margin-top: 155px;
|
||
margin-bottom: 50px;
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
.custom_bootstrap #help-container {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar #help-container {
|
||
margin-top: 140px;
|
||
}
|
||
|
||
.custom_bootstrap #header {
|
||
z-index: 20;
|
||
}
|
||
|
||
.custom_bootstrap #header_infos {
|
||
height: 36px !important;
|
||
}
|
||
|
||
.custom_bootstrap #header_infos .navbar-header {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap #header_shopversion {
|
||
font-size: 1.3em !important;
|
||
position: relative;
|
||
height: 36px;
|
||
background: url("../img/prestashop-avatar-header_shopname.png") no-repeat top left;
|
||
background-size: auto 36px;
|
||
padding-left: 140px !important;
|
||
margin: 0 5px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap #header_shopversion #shop_version {
|
||
font-size: 10px;
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
.custom_bootstrap #header_shopversion {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #header_shopname {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper {
|
||
min-width: 170px;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper > li > a {
|
||
height: 36px;
|
||
display: block;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper > li > a:hover i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper > li > a > i {
|
||
font-size: 14px;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs {
|
||
width: 40px;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_badge {
|
||
position: absolute;
|
||
font-size: 10px !important;
|
||
top: 2px;
|
||
padding: 0 5px !important;
|
||
display: none;
|
||
z-index: 10;
|
||
right: -3px;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown {
|
||
background-color: white;
|
||
border: none;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.7) 0 0 10px;
|
||
box-shadow: rgba(0, 0, 0, 0.7) 0 0 10px;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel {
|
||
width: 300px;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .notifs_panel_header h3 {
|
||
padding: 10px;
|
||
font-size: 1.3em;
|
||
margin: 0;
|
||
border-bottom: solid 1px #CCCCCC;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .notifs_panel_footer {
|
||
padding: 10px;
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif a {
|
||
display: block;
|
||
text-decoration: none;
|
||
padding: 5px;
|
||
border-bottom: solid 1px #CCCCCC;
|
||
}
|
||
|
||
.custom_bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .no_notifs {
|
||
display: block;
|
||
padding: 15px;
|
||
border-bottom: solid 1px #CCCCCC;
|
||
}
|
||
|
||
.custom_bootstrap #header_nav_toggle {
|
||
background-color: black;
|
||
border: none;
|
||
color: white;
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box {
|
||
margin: 0 !important;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.custom_bootstrap #header_employee_box {
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box > li {
|
||
display: inline-block;
|
||
float: left;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
.custom_bootstrap #header_employee_box span.string-long {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box span.string-short {
|
||
display: none;
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
.custom_bootstrap #header_employee_box span.string-short {
|
||
display: inline-block;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box a img {
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box #header_foaccess {
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box #header_foaccess i {
|
||
font-size: 1.2em;
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box .maintenance-mode {
|
||
color: white;
|
||
cursor: default;
|
||
display: inline-block;
|
||
margin-left: -13px;
|
||
}
|
||
|
||
.custom_bootstrap #header_employee_box .maintenance-mode .label-tooltip {
|
||
padding: 9px 0;
|
||
color: #fbbb22;
|
||
}
|
||
|
||
.custom_bootstrap #employee_infos .employee_name {
|
||
position: relative;
|
||
padding-right: 40px !important;
|
||
}
|
||
|
||
.custom_bootstrap #employee_infos .employee_avatar_small {
|
||
height: 36px;
|
||
width: 36px;
|
||
display: inline-block;
|
||
text-align: center;
|
||
overflow: hidden;
|
||
-webkit-border-radius: 0px;
|
||
border-radius: 0px;
|
||
position: absolute;
|
||
top: 0px;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap #employee_infos .employee_avatar_small .img-thumbnail {
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #employee_infos .employee_avatar_small img {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.custom_bootstrap #employee_infos .employee_avatar_small i {
|
||
font-size: 24px;
|
||
line-height: 36px;
|
||
}
|
||
|
||
.custom_bootstrap #employee_infos img {
|
||
border: none;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap #employee_links i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.custom_bootstrap #employee_links {
|
||
position: fixed !important;
|
||
top: 36px !important;
|
||
width: 100% !important;
|
||
height: 100% !important;
|
||
background-color: #383F50 !important;
|
||
left: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #employee_links li {
|
||
color: white;
|
||
font-size: 1.2em;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.custom_bootstrap #employee_links li i {
|
||
font-size: 1.3em;
|
||
color: #00aff0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #employee_links .version {
|
||
color: #999999;
|
||
text-align: center;
|
||
font-size: 0.9em;
|
||
padding: 0 0 3px 0;
|
||
}
|
||
|
||
.custom_bootstrap #employee_links .version sup {
|
||
font-size: 0.7em;
|
||
}
|
||
|
||
.custom_bootstrap #ajax_running {
|
||
position: absolute;
|
||
height: 35px;
|
||
width: 35px;
|
||
top: 0;
|
||
background-color: rgba(0, 0, 0, 0.4);
|
||
text-align: center;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #ajax_running i {
|
||
font-size: 20px;
|
||
color: rgba(255, 255, 255, 0.6);
|
||
line-height: 35px;
|
||
}
|
||
|
||
.custom_bootstrap #footer {
|
||
display: block;
|
||
width: 100%;
|
||
height: 50px;
|
||
position: fixed;
|
||
bottom: 0;
|
||
z-index: 600;
|
||
background-color: rgba(0, 0, 0, 0.8);
|
||
color: #aaa;
|
||
line-height: 50px;
|
||
-webkit-animation: fadeInUp 0.3s 0.2s ease both;
|
||
-moz-animation: fadeInUp 0.3s 0.2s ease both;
|
||
-ms-animation: fadeInUp 0.3s 0.2s ease both;
|
||
-o-animation: fadeInUp 0.3s 0.2s ease both;
|
||
animation: fadeInUp 0.3s 0.2s ease both;
|
||
}
|
||
|
||
.custom_bootstrap #footer a {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap #footer.hide {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #footer #go-top {
|
||
display: block;
|
||
height: 30px;
|
||
width: 30px;
|
||
position: fixed;
|
||
right: 10px;
|
||
bottom: 10px;
|
||
z-index: 9003;
|
||
padding: 0px 6px;
|
||
margin: -2px 0px 0px;
|
||
text-align: center;
|
||
line-height: 30px;
|
||
text-decoration: none;
|
||
color: #fff;
|
||
cursor: pointer;
|
||
font-size: 16px;
|
||
background-color: #363A41;
|
||
right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #footer #go-top:hover {
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap #footer a.footer_link {
|
||
color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap #footer a.footer_link:hover {
|
||
color: white;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap #footer a.footer_link i {
|
||
font-size: 14px;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #footer .footer-contact {
|
||
padding: 7px 0 0 0;
|
||
line-height: 35px;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
margin: 0 0 6px 6px;
|
||
}
|
||
|
||
.custom_bootstrap #footer .footer-contact strong {
|
||
font-weight: 400;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap a.link-social i {
|
||
font-size: 14px;
|
||
width: 24px;
|
||
height: 24px;
|
||
display: inline-block;
|
||
line-height: 24px !important;
|
||
text-align: center;
|
||
margin: 0 4px 0 0;
|
||
-webkit-border-radius: 30px;
|
||
border-radius: 30px;
|
||
}
|
||
|
||
.custom_bootstrap a.link-social:hover {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .link-twitter i {
|
||
color: white;
|
||
background-color: #7CCEEF;
|
||
}
|
||
|
||
.custom_bootstrap .link-twitter i:hover {
|
||
color: #7CCEEF;
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .link-facebook i {
|
||
color: white;
|
||
background-color: #557DBB;
|
||
}
|
||
|
||
.custom_bootstrap .link-facebook i:hover {
|
||
color: #557DBB;
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .link-github i {
|
||
color: black;
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .link-github i:hover {
|
||
color: white;
|
||
background-color: black;
|
||
}
|
||
|
||
.custom_bootstrap .link-google i {
|
||
color: white;
|
||
background-color: #E6644E;
|
||
}
|
||
|
||
.custom_bootstrap .link-google i:hover {
|
||
color: #E6644E;
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .status-page-dot.operational {
|
||
color: #2ecc71 !important;
|
||
}
|
||
|
||
.custom_bootstrap .status-page-dot.degraded_performance {
|
||
color: #f1c40f !important;
|
||
}
|
||
|
||
.custom_bootstrap .status-page-dot.partial_outage {
|
||
color: #e67e22 !important;
|
||
}
|
||
|
||
.custom_bootstrap .status-page-dot.major_outage {
|
||
color: #e74c3c !important;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar {
|
||
position: fixed;
|
||
width: 210px;
|
||
height: 100%;
|
||
z-index: 500;
|
||
background-color: #363A41;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu {
|
||
margin: 0;
|
||
padding: 0;
|
||
list-style: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab {
|
||
padding: 14px 7px;
|
||
height: 55px;
|
||
position: relative;
|
||
background-color: #363A41;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab #bo_query {
|
||
-webkit-border-top-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
-webkit-border-top-right-radius: 55px;
|
||
border-top-right-radius: 55px;
|
||
-webkit-border-bottom-right-radius: 55px;
|
||
border-bottom-right-radius: 55px;
|
||
-webkit-border-bottom-left-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
color: #363A41;
|
||
background-color: white;
|
||
border: 1px solid transparent !important;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
-webkit-transition: none;
|
||
-o-transition: none;
|
||
transition: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .input-group-btn {
|
||
-webkit-border-top-left-radius: 55px;
|
||
border-top-left-radius: 55px;
|
||
-webkit-border-top-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
-webkit-border-bottom-right-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
-webkit-border-bottom-left-radius: 55px;
|
||
border-bottom-left-radius: 55px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .input-group-btn .btn {
|
||
-webkit-border-top-left-radius: 55px;
|
||
border-top-left-radius: 55px;
|
||
-webkit-border-top-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
-webkit-border-bottom-right-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
-webkit-border-bottom-left-radius: 55px;
|
||
border-bottom-left-radius: 55px;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .input-group-btn .btn-default {
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
border: 1px solid transparent !important;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .form-group.focus-search {
|
||
position: absolute;
|
||
width: 400px;
|
||
height: 55px;
|
||
z-index: 900;
|
||
top: 0;
|
||
background-color: #363A41;
|
||
left: 0;
|
||
padding: 14px 13px 0 7px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .form-group.focus-search #bo_query {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .form-group.focus-search .input-group-btn {
|
||
-webkit-border-top-left-radius: 55px;
|
||
border-top-left-radius: 55px;
|
||
-webkit-border-top-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
-webkit-border-bottom-right-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
-webkit-border-bottom-left-radius: 55px;
|
||
border-bottom-left-radius: 55px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .form-group.focus-search .input-group-btn .btn {
|
||
-webkit-border-top-left-radius: 55px;
|
||
border-top-left-radius: 55px;
|
||
-webkit-border-top-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
-webkit-border-bottom-right-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
-webkit-border-bottom-left-radius: 55px;
|
||
border-bottom-left-radius: 55px;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .form-group.focus-search .input-group-btn .btn-default {
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab .clear_search {
|
||
position: absolute;
|
||
top: 6px;
|
||
z-index: 10;
|
||
right: 8px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.searchtab i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab ul.submenu {
|
||
display: none;
|
||
padding: 0px;
|
||
background-color: #363A41;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab ul.submenu li {
|
||
list-style: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab ul.submenu li a {
|
||
color: #BEBEBE;
|
||
display: block;
|
||
padding: 4px 8px;
|
||
background-color: #363A41;
|
||
}
|
||
|
||
@media (min-height: 850px) {
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab ul.submenu li a {
|
||
padding: 8px 8px;
|
||
min-height: 34px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab ul.submenu li a:hover {
|
||
color: white;
|
||
text-decoration: none;
|
||
background-color: #282b30;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab a {
|
||
white-space: nowrap;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab > a.title {
|
||
display: block;
|
||
position: relative;
|
||
padding: 0 0.35em;
|
||
height: 34px;
|
||
background-color: #363A41;
|
||
color: #BEBEBE;
|
||
line-height: 34px;
|
||
text-decoration: none;
|
||
-webkit-transition-property: background-color;
|
||
transition-property: background-color;
|
||
-webkit-transition-duration: 0.2s;
|
||
transition-duration: 0.2s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab > a.title i {
|
||
vertical-align: middle;
|
||
margin-top: -5px;
|
||
color: #BEBEBE;
|
||
-webkit-transition-property: color;
|
||
transition-property: color;
|
||
-webkit-transition-duration: 0.4s;
|
||
transition-duration: 0.4s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab > a.title span {
|
||
padding-left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.hover > a.title, .custom_bootstrap #nav-sidebar ul.menu li.maintab:hover:not(.hover) > a.title {
|
||
color: white;
|
||
background-color: #282b30;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.hover > a.title i, .custom_bootstrap #nav-sidebar ul.menu li.maintab:hover:not(.hover) > a.title i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.hover:not(.active):before {
|
||
content: "";
|
||
width: 0;
|
||
height: 0;
|
||
border-style: solid;
|
||
border-width: 8px 10px 8px 0;
|
||
border-color: transparent #363A41 transparent transparent;
|
||
background-color: transparent;
|
||
margin-top: 6px;
|
||
position: absolute;
|
||
z-index: 1;
|
||
right: 0;
|
||
}
|
||
|
||
@media (min-height: 850px) {
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.hover:not(.active):before {
|
||
margin-top: 10px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.hover ul.submenu {
|
||
position: absolute;
|
||
display: block;
|
||
width: 200px;
|
||
top: 0;
|
||
z-index: 600;
|
||
left: 210px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab:last-child > a.title {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.active a, .custom_bootstrap #nav-sidebar ul.menu li.maintab.active li.active a {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.active a.title, .custom_bootstrap #nav-sidebar ul.menu li.maintab.active li.active a.title {
|
||
border-right: 3px solid #fff;
|
||
background-color: #282b30;
|
||
}
|
||
|
||
.custom_bootstrap #nav-sidebar ul.menu li.maintab.active a i, .custom_bootstrap #nav-sidebar ul.menu li.maintab.active li.active a i {
|
||
color: white;
|
||
}
|
||
|
||
@media (min-height: 850px) {
|
||
body:not(.page-sidebar-closed) .custom_bootstrap #nav-sidebar ul.menu li.maintab.active ul.submenu {
|
||
display: block;
|
||
margin-left: 35px;
|
||
border-left: 1px solid #282b30;
|
||
}
|
||
|
||
body:not(.page-sidebar-closed) .custom_bootstrap #nav-sidebar ul.menu li.maintab.active ul.submenu a {
|
||
color: #BEBEBE;
|
||
padding: 8px 8px;
|
||
}
|
||
|
||
body:not(.page-sidebar-closed) .custom_bootstrap #nav-sidebar ul.menu li.maintab.active ul.submenu a:hover {
|
||
color: white;
|
||
background-color: #282b30;
|
||
text-decoration: none;
|
||
}
|
||
|
||
body:not(.page-sidebar-closed) .custom_bootstrap #nav-sidebar ul.menu li.maintab.active ul.submenu li.active a {
|
||
color: white;
|
||
position: relative;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
.custom_bootstrap #nav-sidebar {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
@media (max-height: 850px) {
|
||
.custom_bootstrap body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab > a.title {
|
||
font-size: 12px;
|
||
height: 28px;
|
||
line-height: 28px;
|
||
}
|
||
|
||
.custom_bootstrap body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab > a.title i {
|
||
vertical-align: baseline;
|
||
width: 18px;
|
||
font-size: 14px;
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab ul.submenu {
|
||
padding: 1px 1px 0 1px;
|
||
}
|
||
|
||
.custom_bootstrap body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab ul.submenu li a {
|
||
padding: 0 6px;
|
||
height: 27px;
|
||
line-height: 27px;
|
||
}
|
||
|
||
.custom_bootstrap body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active.hover ul.submenu {
|
||
position: absolute;
|
||
display: block;
|
||
width: 200px;
|
||
z-index: 600;
|
||
left: 210px;
|
||
top: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar #content {
|
||
margin-left: 210px;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar {
|
||
overflow: visible;
|
||
width: 50px;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar ul.submenu {
|
||
display: none !important;
|
||
position: relative;
|
||
top: 34px;
|
||
padding-top: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar li.searchtab {
|
||
color: rgba(255, 255, 255, 0.5);
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar li.searchtab:hover {
|
||
cursor: pointer;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar li.searchtab.search-expanded {
|
||
width: 400px;
|
||
background-color: #2a2e33;
|
||
padding: 14px 13px 0 7px;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar li.searchtab.search-expanded:before {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar li.searchtab.search-expanded form .form-group {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar li.maintab.active ul.submenu {
|
||
border: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar a.title {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar a.title > span {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar > ul > li.maintab:hover {
|
||
width: 250px !important;
|
||
position: relative;
|
||
z-index: 500;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar > ul > li.maintab:hover a.title {
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar > ul > li.maintab:hover a.title > span {
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #nav-sidebar > ul > li.maintab:hover ul.submenu {
|
||
position: absolute !important;
|
||
display: block !important;
|
||
top: 34px !important;
|
||
width: 200px !important;
|
||
left: 50px;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed #content {
|
||
margin-left: 55px;
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
.custom_bootstrap .page-sidebar-closed #content {
|
||
margin-left: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed .submenu_expand {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar {
|
||
position: fixed;
|
||
height: 30px;
|
||
top: 36px;
|
||
width: 100%;
|
||
z-index: 600;
|
||
background-color: white;
|
||
border: solid 1px white;
|
||
padding: 0 40px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu {
|
||
margin: 0;
|
||
padding: 0;
|
||
display: block;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab {
|
||
border-right: solid 1px #E6E6E6;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab:last-child {
|
||
border: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.searchtab {
|
||
width: 200px;
|
||
margin-right: 5px;
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab, .custom_bootstrap #nav-topbar ul.menu li.subtab {
|
||
height: 28px;
|
||
padding: 0;
|
||
margin: 0;
|
||
list-style: none;
|
||
position: relative;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab > a, .custom_bootstrap #nav-topbar ul.menu li.subtab > a {
|
||
display: block;
|
||
line-height: 27px;
|
||
color: #646c79;
|
||
padding: 0 6px;
|
||
margin: 0;
|
||
font-size: 12px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab > a i, .custom_bootstrap #nav-topbar ul.menu li.subtab > a i {
|
||
margin: 0;
|
||
width: 15px;
|
||
color: #4d535d;
|
||
background-color: transparent;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab.active, .custom_bootstrap #nav-topbar ul.menu li.maintab:hover, .custom_bootstrap #nav-topbar ul.menu li.subtab.active, .custom_bootstrap #nav-topbar ul.menu li.subtab:hover {
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab.active > a, .custom_bootstrap #nav-topbar ul.menu li.maintab:hover > a, .custom_bootstrap #nav-topbar ul.menu li.subtab.active > a, .custom_bootstrap #nav-topbar ul.menu li.subtab:hover > a {
|
||
text-decoration: none;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.maintab.active > a i, .custom_bootstrap #nav-topbar ul.menu li.maintab:hover > a i, .custom_bootstrap #nav-topbar ul.menu li.subtab.active > a i, .custom_bootstrap #nav-topbar ul.menu li.subtab:hover > a i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu li.expanded > ul.submenu {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu ul.submenu {
|
||
background-color: white;
|
||
display: none;
|
||
position: absolute;
|
||
margin: 0;
|
||
padding: 0;
|
||
left: 0;
|
||
top: 28px;
|
||
width: 200px !important;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px;
|
||
box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu ul.submenu > li {
|
||
width: 200px;
|
||
padding: 0;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu ul.submenu > li:last-child > a {
|
||
border: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu ul.submenu > li > a {
|
||
display: block;
|
||
padding: 4px 5px 4px 10px;
|
||
border-bottom: solid 1px #E6E6E6;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu ul.submenu > li > a:hover {
|
||
color: white;
|
||
background-color: #00aff0;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar ul.menu ul.submenu > li.active a {
|
||
color: white;
|
||
background-color: #00aff0;
|
||
border-bottom: solid 1px #008abd;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar #ellipsistab {
|
||
display: block;
|
||
width: 40px;
|
||
height: 28px;
|
||
padding: 0;
|
||
margin: 0;
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar #ellipsistab > a {
|
||
text-align: center;
|
||
font-size: 14px;
|
||
line-height: 30px;
|
||
color: #363A41;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar #ellipsistab ul#ellipsis_submenu {
|
||
right: 0;
|
||
left: inherit;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar #ellipsistab ul#ellipsis_submenu a.title {
|
||
padding: 0 8px;
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar #ellipsistab ul#ellipsis_submenu li.subtab.expanded > ul {
|
||
top: 0;
|
||
left: -200px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-topbar .menu-collapse {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile {
|
||
position: fixed;
|
||
top: 0;
|
||
width: 35px;
|
||
height: 35px;
|
||
z-index: 1100;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile.expanded {
|
||
width: 100%;
|
||
height: 100%;
|
||
top: 35px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile.expanded .menu-collapse {
|
||
top: -35px;
|
||
position: absolute;
|
||
z-index: 1200;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu {
|
||
position: absolute;
|
||
display: none;
|
||
width: 100%;
|
||
height: 100%;
|
||
background-color: rgba(0, 0, 0, 0.8);
|
||
padding: 0;
|
||
border-top: 1px black solid;
|
||
list-style: none;
|
||
margin: 0 0 100px 0;
|
||
-webkit-transition: all 0.35s ease-out;
|
||
-o-transition: all 0.35s ease-out;
|
||
transition: all 0.35s ease-out;
|
||
-webkit-animation: fadeInLeft 0.3s 0.2s ease both;
|
||
-moz-animation: fadeInLeft 0.3s 0.2s ease both;
|
||
-ms-animation: fadeInLeft 0.3s 0.2s ease both;
|
||
-o-animation: fadeInLeft 0.3s 0.2s ease both;
|
||
animation: fadeInLeft 0.3s 0.2s ease both;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li.searchtab {
|
||
padding: 15px;
|
||
position: relative;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 -3px 0 0 inset;
|
||
box-shadow: rgba(0, 0, 0, 0.1) 0 -3px 0 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li.searchtab #bo_query {
|
||
color: #363A41;
|
||
background-color: #d1d3d8;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li.searchtab .form-group {
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li.searchtab .clear_search {
|
||
position: absolute;
|
||
top: 5px;
|
||
right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li {
|
||
background: #363A41;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li > a {
|
||
display: block;
|
||
height: 34px;
|
||
line-height: 34px;
|
||
position: relative;
|
||
border-bottom: 1px solid #1f2125;
|
||
font-size: 12px;
|
||
color: #c3c4c6;
|
||
background-color: #363A41;
|
||
text-transform: uppercase;
|
||
text-decoration: none;
|
||
padding: 0 0 0 10px;
|
||
-webkit-transition-property: background-color;
|
||
transition-property: background-color;
|
||
-webkit-transition-duration: 0.4s;
|
||
transition-duration: 0.4s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li > a i {
|
||
color: rgba(255, 255, 255, 0.6);
|
||
vertical-align: middle;
|
||
-webkit-transition-property: color;
|
||
transition-property: color;
|
||
-webkit-transition-duration: 0.4s;
|
||
transition-duration: 0.4s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li > a:hover {
|
||
background-color: #4d535d;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li > a:hover i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu > li > a > i {
|
||
display: inline-block;
|
||
height: 34px;
|
||
width: 34px;
|
||
font-size: 20px;
|
||
line-height: 34px;
|
||
color: white;
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.submenu {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile #nav-mobile-submenu a:not(#nav-mobile-submenu-back) {
|
||
font-size: 1.2em;
|
||
text-transform: none;
|
||
padding-left: 50px;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile a#nav-mobile-submenu-back {
|
||
background-color: #2a2e33;
|
||
font-size: 1.5em;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile ul.menu.menu-close {
|
||
-webkit-animation: fadeOutLeft 0.2s 0.2s ease both;
|
||
-moz-animation: fadeOutLeft 0.2s 0.2s ease both;
|
||
-ms-animation: fadeOutLeft 0.2s 0.2s ease both;
|
||
-o-animation: fadeOutLeft 0.2s 0.2s ease both;
|
||
animation: fadeOutLeft 0.2s 0.2s ease both;
|
||
}
|
||
|
||
.custom_bootstrap #nav-mobile .menu-collapse {
|
||
color: white;
|
||
background-color: black;
|
||
width: 35px;
|
||
height: 35px;
|
||
text-align: center;
|
||
line-height: 1.3em;
|
||
}
|
||
|
||
.custom_bootstrap .menu-collapse {
|
||
cursor: pointer;
|
||
height: 54px;
|
||
width: 100%;
|
||
font-size: 2em;
|
||
text-align: center;
|
||
line-height: 55px;
|
||
display: block;
|
||
color: #BEBEBE;
|
||
}
|
||
|
||
.custom_bootstrap .mobile-nav #content h2.page-title {
|
||
padding-left: 10px !important;
|
||
}
|
||
|
||
.custom_bootstrap .mobile-nav #content h4.page-subtitle {
|
||
left: 10px !important;
|
||
}
|
||
|
||
.custom_bootstrap .mobile-nav #content ul.page-breadcrumb {
|
||
left: 10px !important;
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar:not(.mobile-nav) #main {
|
||
padding-top: 64px;
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar:not(.mobile-nav) #content {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar:not(.mobile-nav) #content .page-head {
|
||
top: 66px;
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar:not(.mobile-nav) #content .page-title {
|
||
padding-left: 75px;
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar:not(.mobile-nav) #content .page-subtitle {
|
||
left: 75px;
|
||
}
|
||
|
||
.custom_bootstrap .page-topbar:not(.mobile-nav) #content .page-breadcrumb {
|
||
left: 75px;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before {
|
||
z-index: 1000;
|
||
position: absolute;
|
||
top: 16px;
|
||
display: block;
|
||
width: 28px;
|
||
height: 28px;
|
||
left: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab .form-group {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap [class^="icon-"] {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap [class^="process-icon-"] {
|
||
display: block;
|
||
width: 30px;
|
||
height: 30px;
|
||
margin: 0 auto;
|
||
font-size: 28px;
|
||
background: transparent;
|
||
background-size: 26px;
|
||
background-position: center;
|
||
}
|
||
|
||
.custom_bootstrap #content .process-icon-loading {
|
||
line-height: 30px;
|
||
font-size: 20px;
|
||
}
|
||
|
||
.custom_bootstrap .fixed-width-xs {
|
||
width: 48px !important;
|
||
}
|
||
|
||
.custom_bootstrap .fixed-width-sm {
|
||
width: 80px !important;
|
||
}
|
||
|
||
.custom_bootstrap .fixed-width-md {
|
||
width: 120px !important;
|
||
}
|
||
|
||
.custom_bootstrap .fixed-width-lg {
|
||
width: 160px !important;
|
||
}
|
||
|
||
.custom_bootstrap .fixed-width-xl {
|
||
width: 200px !important;
|
||
}
|
||
|
||
.custom_bootstrap .fixed-width-xxl {
|
||
width: 250px !important;
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
.custom_bootstrap .hidden-inline-xs {
|
||
display: none !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .row-margin-bottom {
|
||
margin-bottom: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .row-margin-top {
|
||
margin-top: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .row-padding-top {
|
||
padding-top: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .thumbnail,
|
||
.custom_bootstrap .img-thumbnail {
|
||
background-color: white;
|
||
border-color: #ccc !important;
|
||
}
|
||
|
||
.custom_bootstrap .highlight {
|
||
background-color: #F7E69F;
|
||
}
|
||
|
||
.custom_bootstrap .text-orange {
|
||
color: #FF9900;
|
||
}
|
||
|
||
.custom_bootstrap .badge, .custom_bootstrap #header_notifs_icon_wrapper .notifs_badge {
|
||
padding: 1px 5px;
|
||
font-weight: normal;
|
||
font-size: 1em;
|
||
line-height: inherit;
|
||
letter-spacing: 0.0625em;
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .badge.badge-info, .custom_bootstrap #header_notifs_icon_wrapper .badge-info.notifs_badge {
|
||
background-color: #25b9d7;
|
||
}
|
||
|
||
.custom_bootstrap .badge.badge-success, .custom_bootstrap #header_notifs_icon_wrapper .badge-success.notifs_badge {
|
||
background-color: #72C279;
|
||
}
|
||
|
||
.custom_bootstrap .badge.badge-warning, .custom_bootstrap #header_notifs_icon_wrapper .badge-warning.notifs_badge {
|
||
background-color: #fbbb22;
|
||
}
|
||
|
||
.custom_bootstrap .badge.badge-danger, .custom_bootstrap #header_notifs_icon_wrapper .badge-danger.notifs_badge {
|
||
background-color: #E08F95;
|
||
}
|
||
|
||
.custom_bootstrap .badge.badge-critical, .custom_bootstrap #header_notifs_icon_wrapper .badge-critical.notifs_badge {
|
||
background-color: #cf535c;
|
||
}
|
||
|
||
.custom_bootstrap .label {
|
||
font-size: 12px;
|
||
font-weight: 400;
|
||
}
|
||
|
||
.custom_bootstrap .label.label-inactive {
|
||
background-color: #999;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs li .badge, .custom_bootstrap .nav-tabs li #header_notifs_icon_wrapper .notifs_badge, .custom_bootstrap #header_notifs_icon_wrapper .nav-tabs li .notifs_badge {
|
||
background-color: white;
|
||
border: solid 2px #eee;
|
||
color: #666;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs li a {
|
||
font-size: 1.1em;
|
||
font-family: "Ubuntu Condensed", Helvetica, Arial, sans-serif;
|
||
text-transform: uppercase;
|
||
font-weight: 300;
|
||
}
|
||
|
||
.custom_bootstrap .nav-tabs li.active a, .custom_bootstrap .nav-tabs li.active a:hover, .custom_bootstrap .nav-tabs li.active a:focus {
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .table tr.parent td {
|
||
background-color: #eee !important;
|
||
border-bottom: solid 1px #ccc !important;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-warning {
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px #fcc94f;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-warning:before {
|
||
position: absolute;
|
||
top: 0px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: #fcc94f;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-danger {
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px #eab3b7;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-danger:before {
|
||
position: absolute;
|
||
top: 6px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: #eab3b7;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-success {
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px #92d097;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-success:before {
|
||
position: absolute;
|
||
top: 6px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: #92d097;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-info {
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px #4ac7e0;
|
||
border-right: solid 1px #4ac7e0;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-info:before {
|
||
position: absolute;
|
||
top: 6px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: #4ac7e0;
|
||
left: 7px;
|
||
}
|
||
|
||
.panel .panel-heading + .change_date_container,
|
||
.panel .panel-heading + .change_date_container + .change_date_container {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-addons {
|
||
background-color: #F3F3F2;
|
||
border-color: #f34794;
|
||
color: #F01778;
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px #f34291;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-addons hr {
|
||
border-top-color: #f22f86;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-addons .alert-link {
|
||
color: #c70d60;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-addons:before {
|
||
position: absolute;
|
||
top: 6px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: #f34291;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding {
|
||
background-color: white;
|
||
border-color: #4ec8e1;
|
||
color: #25b9d7;
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px white;
|
||
border: solid 2px #25b9d7;
|
||
box-shadow: inset 140px 0 0 #25b9d7;
|
||
padding: 20px 20px 20px 160px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding hr {
|
||
border-top-color: #39c1dd;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .alert-link {
|
||
color: #1e94ab;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding:before {
|
||
position: absolute;
|
||
top: 6px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: white;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding:before {
|
||
left: 25px;
|
||
top: 40px;
|
||
font-size: 98px;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-step {
|
||
width: 100%;
|
||
height: 2em;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-step.step-success {
|
||
background-color: #25b9d7;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-step.step-in-progress {
|
||
background-image: -webkit-linear-gradient(45deg, #7ad6e8 25%, transparent 25%, transparent 50%, #7ad6e8 50%, #7ad6e8 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, #7ad6e8 25%, transparent 25%, transparent 50%, #7ad6e8 50%, #7ad6e8 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, #7ad6e8 25%, transparent 25%, transparent 50%, #7ad6e8 50%, #7ad6e8 75%, transparent 75%, transparent);
|
||
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
||
-o-animation: progress-bar-stripes 2s linear infinite;
|
||
animation: progress-bar-stripes 2s linear infinite;
|
||
background-color: #25b9d7;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-step.step-todo {
|
||
background-color: #eee;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-step.step-first {
|
||
-webkit-border-radius: 3em 0 0 3em;
|
||
border-radius: 3em 0 0 3em;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-step.step-final {
|
||
-webkit-border-radius: 0 3em 3em 0;
|
||
border-radius: 0 3em 3em 0;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding h4 {
|
||
font-weight: 100;
|
||
font-size: 2.1em;
|
||
color: #383F50;
|
||
margin-bottom: 0.4em;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding p {
|
||
font-size: 1.1em;
|
||
color: #7d88a4;
|
||
margin-bottom: 1em;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .onboarding-action-container {
|
||
padding-top: 3em;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding hr {
|
||
border-color: #a5e3f0;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .progress {
|
||
-webkit-border-radius: 3em;
|
||
border-radius: 3em;
|
||
height: 2em;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-onboarding .progress-bar {
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-message {
|
||
position: relative;
|
||
border: none;
|
||
padding-left: 50px;
|
||
border-left: solid 3px #fcc94f;
|
||
border: solid 2px #fbbb22;
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .alert.alert-message:before {
|
||
position: absolute;
|
||
top: 6px;
|
||
display: block;
|
||
height: 25px;
|
||
width: 25px;
|
||
color: #fcc94f;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .alert h4 {
|
||
font-size: 1.45em;
|
||
margin-bottom: 1em;
|
||
}
|
||
|
||
.custom_bootstrap .overflow-y {
|
||
max-height: 200px;
|
||
margin-bottom: 15px;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
.custom_bootstrap .input[type='password'] {
|
||
font-size: 2em !important;
|
||
}
|
||
|
||
.custom_bootstrap .pagination {
|
||
margin: 17px 0 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .list-detail dd:not(:last-child) {
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .attributes-color-container {
|
||
width: 40px;
|
||
height: 25px;
|
||
display: block;
|
||
border: solid 1px black;
|
||
}
|
||
|
||
.custom_bootstrap #mColorPickerInput {
|
||
color: #000000;
|
||
}
|
||
|
||
.custom_bootstrap .modal-content-overflow {
|
||
max-height: 400px;
|
||
overflow-y: scroll;
|
||
}
|
||
|
||
.custom_bootstrap .pointer {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .table {
|
||
border-collapse: separate;
|
||
border-spacing: 0 2px 0 0;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr > th {
|
||
border: none;
|
||
font-weight: normal;
|
||
vertical-align: top;
|
||
border-bottom: solid 1px #a0d0eb;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr > th span.title_box {
|
||
color: #656565;
|
||
display: block;
|
||
word-wrap: nowrap;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr > th span.title_box.active {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr > th span.title_box a {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr > th span.title_box a.active {
|
||
color: black;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr > th span.title_box .label-tooltip {
|
||
color: #3586AE;
|
||
background-color: #edf7fb;
|
||
border: none;
|
||
border-bottom: solid 1px #D8EDF7;
|
||
padding: 0 5px;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr.filter > th {
|
||
background-color: #ecf6fb;
|
||
}
|
||
|
||
.custom_bootstrap .table thead > tr.filter > th input[type="text"].filter, .custom_bootstrap .table thead > tr.filter > th input[type="password"].filter, .custom_bootstrap .table thead > tr.filter > th select.filter {
|
||
font-size: 11px;
|
||
padding: 4px;
|
||
border-color: #a0d0eb;
|
||
}
|
||
|
||
.custom_bootstrap .table input, .custom_bootstrap .table select {
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table input.center, .custom_bootstrap .table select.center {
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.custom_bootstrap .table tbody > tr > td {
|
||
border-top: none;
|
||
color: #666666;
|
||
background-color: white;
|
||
padding: 3px 7px;
|
||
vertical-align: middle;
|
||
word-wrap: nowrap;
|
||
font-size: 12px;
|
||
border-bottom: solid 1px #EAEDEF;
|
||
}
|
||
|
||
.custom_bootstrap .table tbody > tr.odd > td {
|
||
background-color: #FCFDFE;
|
||
}
|
||
|
||
.custom_bootstrap .table tbody > tr:hover > td {
|
||
background-color: #f4f8fb;
|
||
}
|
||
|
||
.custom_bootstrap .table td.center, .custom_bootstrap .table th.center {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .table td.pointer {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .table td.dragHandle .dragGroup {
|
||
width: 80px;
|
||
cursor: move;
|
||
text-align: center;
|
||
position: relative;
|
||
font-size: 14px;
|
||
padding: 4px 4px 4px 20px;
|
||
-webkit-border-radius: 5px;
|
||
border-radius: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .table td.dragHandle .dragGroup:hover {
|
||
color: white;
|
||
background-color: #00aff0 !important;
|
||
}
|
||
|
||
.custom_bootstrap .table td.dragHandle .dragGroup:before {
|
||
display: block;
|
||
height: 16px;
|
||
width: 16px;
|
||
position: absolute;
|
||
top: 8px;
|
||
left: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .table td.dragHandle .dragGroup .positions {
|
||
display: inline-block;
|
||
border: solid 1px #ccc;
|
||
background-color: #eee;
|
||
padding: 0 5px;
|
||
color: #aaa;
|
||
width: 43px;
|
||
text-shadow: white 1px 1px;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 3px inset;
|
||
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 3px inset;
|
||
}
|
||
|
||
.custom_bootstrap .table tr.actions {
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .table td.actions {
|
||
text-align: right;
|
||
padding-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .table th.actions .btn {
|
||
margin-bottom: 4px !important;
|
||
}
|
||
|
||
.custom_bootstrap .table tr.myDragClass {
|
||
padding: 10px;
|
||
background-color: #EEEEEE;
|
||
}
|
||
|
||
.custom_bootstrap .table tr.myDragClass td {
|
||
color: white !important;
|
||
background-color: #00aff0 !important;
|
||
-webkit-transform: translate(5px, 10px);
|
||
-moz-transform: translate(5px, 10px);
|
||
-ms-transform: translate(5px, 10px);
|
||
-o-transform: translate(5px, 10px);
|
||
transform: translate(5px, 10px);
|
||
}
|
||
|
||
.custom_bootstrap .table.tableDnD td {
|
||
-webkit-transition-property: all;
|
||
transition-property: all;
|
||
-webkit-transition-duration: 0.2s;
|
||
transition-duration: 0.2s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap tr.highlighted td {
|
||
background-color: #00aff0 !important;
|
||
color: white !important;
|
||
}
|
||
|
||
.custom_bootstrap .bulk-actions {
|
||
margin: 17px 0 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .bulk-actions ul i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .list-action-enable {
|
||
font-size: 1.3em;
|
||
display: inline-block;
|
||
width: 30px;
|
||
text-align: center;
|
||
color: rgba(255, 255, 255, 0.8);
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .list-action-enable.action-enabled {
|
||
color: #72C279;
|
||
}
|
||
|
||
.custom_bootstrap .list-action-enable.action-disabled {
|
||
color: #E08F95;
|
||
}
|
||
|
||
.custom_bootstrap .list-action-enable:hover {
|
||
color: #25B9D7;
|
||
}
|
||
|
||
.custom_bootstrap .list-empty {
|
||
background-color: #FCFDFE !important;
|
||
}
|
||
|
||
.custom_bootstrap .list-empty .list-empty-msg {
|
||
text-align: center;
|
||
display: block;
|
||
width: 50%;
|
||
margin: 20px auto;
|
||
color: #999;
|
||
font-family: "Ubuntu Condensed", Helvetica, Arial, sans-serif;
|
||
font-size: 1.4em;
|
||
}
|
||
|
||
.custom_bootstrap .list-empty .list-empty-icon {
|
||
color: #dedede;
|
||
display: block;
|
||
clear: both;
|
||
font-size: 84px;
|
||
text-shadow: white 1px 1px 0;
|
||
}
|
||
|
||
.custom_bootstrap .date_range .input-group:first-child {
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
@media (max-width: 991px) {
|
||
.custom_bootstrap .table-responsive-row {
|
||
overflow: visible;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row table, .custom_bootstrap .table-responsive-row thead, .custom_bootstrap .table-responsive-row tbody, .custom_bootstrap .table-responsive-row th, .custom_bootstrap .table-responsive-row td, .custom_bootstrap .table-responsive-row tr {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row thead tr {
|
||
display: block;
|
||
float: left;
|
||
width: 70%;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row thead tr:first-child {
|
||
width: 30%;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row thead tr:first-child th {
|
||
width: 100% !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row thead tr:first-child:last-child {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row th {
|
||
height: 48px;
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row th .fixed-width-md {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row th .fixed-width-sm {
|
||
width: 100% !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row tr {
|
||
border: 1px solid #ccc;
|
||
-webkit-box-shadow: #EAEDEF 0 2px 0 0;
|
||
box-shadow: #EAEDEF 0 2px 0 0;
|
||
width: 100%;
|
||
margin-bottom: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row tr:last-child {
|
||
border-bottom: 1px solid #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td {
|
||
position: relative;
|
||
padding-left: 35% !important;
|
||
width: 100% !important;
|
||
text-align: left !important;
|
||
line-height: 2em !important;
|
||
font-size: 1.15em !important;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td:last-child {
|
||
border: none;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td .btn-group-action .dropdown-toggle {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td .btn-group-action ul.dropdown-menu, .custom_bootstrap .table-responsive-row td .btn-group-action .dropdown-menu li {
|
||
position: relative;
|
||
padding: 0;
|
||
margin: 0;
|
||
float: right;
|
||
display: inline-block;
|
||
background: transparent;
|
||
border: none;
|
||
z-index: 13;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td .dropdown-menu li a, .custom_bootstrap .table-responsive-row td a.btn, .custom_bootstrap .table-responsive-row td button.btn {
|
||
background-color: white;
|
||
border: none;
|
||
padding: 12px 10px !important;
|
||
margin-right: 5px;
|
||
display: inline-block;
|
||
margin: 0 !important;
|
||
float: right;
|
||
border-left: 1px solid #EAEDEF;
|
||
z-index: 13;
|
||
color: #00aff0;
|
||
font-weight: bold;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td .dropdown-menu li a i, .custom_bootstrap .table-responsive-row td a.btn i, .custom_bootstrap .table-responsive-row td button.btn i {
|
||
color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td .dropdown-menu li a:hover, .custom_bootstrap .table-responsive-row td a.btn:hover, .custom_bootstrap .table-responsive-row td button.btn:hover {
|
||
background-color: #00aff0;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td .dropdown-menu li a:hover i, .custom_bootstrap .table-responsive-row td a.btn:hover i, .custom_bootstrap .table-responsive-row td button.btn:hover i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row .odd td {
|
||
background-color: #FCFDFE !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td.row-selector {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td:before {
|
||
position: absolute;
|
||
top: 4px;
|
||
left: 12px;
|
||
width: 30%;
|
||
border-right: 1px solid #EAEDEF;
|
||
padding-right: 10px;
|
||
white-space: nowrap;
|
||
color: #aaa;
|
||
text-align: right;
|
||
font-size: 0.9em;
|
||
font-style: italic;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td:last-child {
|
||
text-align: right !important;
|
||
padding: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row td:last-child:before {
|
||
content: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive-row .btn-group {
|
||
float: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive {
|
||
width: 100%;
|
||
margin-bottom: 12.75px;
|
||
overflow-y: hidden;
|
||
overflow-x: auto;
|
||
border: 1px solid #ddd;
|
||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||
-webkit-overflow-scrolling: touch;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table > thead > tr > th,
|
||
.custom_bootstrap .table-responsive > .table > thead > tr > td,
|
||
.custom_bootstrap .table-responsive > .table > tbody > tr > th,
|
||
.custom_bootstrap .table-responsive > .table > tbody > tr > td,
|
||
.custom_bootstrap .table-responsive > .table > tfoot > tr > th,
|
||
.custom_bootstrap .table-responsive > .table > tfoot > tr > td {
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered {
|
||
border: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > th:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > td:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > th:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > thead > tr > td:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
||
.custom_bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||
border-bottom: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .tree-panel-heading-controls {
|
||
line-height: 2.2em;
|
||
font-size: 1.1em;
|
||
color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .tree-panel-heading-controls i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .tree {
|
||
list-style: none;
|
||
padding: 0 0 0 20px;
|
||
}
|
||
|
||
.custom_bootstrap .tree input {
|
||
vertical-align: baseline;
|
||
margin-right: 4px;
|
||
line-height: normal;
|
||
}
|
||
|
||
.custom_bootstrap .tree i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-item-name, .custom_bootstrap .tree .tree-folder-name {
|
||
padding: 2px 5px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-item-name label, .custom_bootstrap .tree .tree-folder-name label {
|
||
font-weight: 400;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-item-name:hover, .custom_bootstrap .tree .tree-folder-name:hover {
|
||
background-color: #eee;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-selected {
|
||
color: white;
|
||
background-color: #00aff0;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-selected:hover {
|
||
background-color: #009cd7;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-selected i.tree-dot {
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap .tree i.tree-dot {
|
||
display: inline-block;
|
||
position: relative;
|
||
width: 6px;
|
||
height: 6px;
|
||
margin: 0 4px;
|
||
background-color: #ccc;
|
||
-webkit-border-radius: 6px;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-item-disable, .custom_bootstrap .tree .tree-folder-name-disable {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .tree .tree-item-disable:hover, .custom_bootstrap .tree .tree-folder-name-disable:hover {
|
||
color: #ccc;
|
||
background-color: none;
|
||
}
|
||
|
||
.custom_bootstrap .tree-actions {
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .tree-panel-heading-controls {
|
||
margin: -20px -20px 20px;
|
||
padding: 5px;
|
||
border-bottom: solid 1px #DFDFDF;
|
||
}
|
||
|
||
.custom_bootstrap .tree-actions .twitter-typeahead {
|
||
padding: 0 0 0 4px;
|
||
position: relative;
|
||
top: 1px;
|
||
}
|
||
|
||
.custom_bootstrap .tree-actions .tt-hint {
|
||
left: 4px !important;
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .tree-panel-label-title {
|
||
font-weight: 400;
|
||
margin: 0;
|
||
padding: 0 0 0 8px;
|
||
}
|
||
|
||
.custom_bootstrap label.control-label {
|
||
font-size: 13px;
|
||
font-weight: normal;
|
||
float: none;
|
||
color: #666;
|
||
}
|
||
|
||
.custom_bootstrap label.control-label span.label-tooltip {
|
||
text-decoration: none;
|
||
font-size: 13px;
|
||
color: #3586AE;
|
||
background-color: #edf7fb;
|
||
border: none;
|
||
border-bottom: solid 1px #D8EDF7;
|
||
padding: 0 5px;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap label.required:before {
|
||
content: "*";
|
||
color: red;
|
||
font-size: 14px;
|
||
position: relative;
|
||
line-height: 12px;
|
||
}
|
||
|
||
.custom_bootstrap .tooltip {
|
||
font-size: 12px;
|
||
font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
||
white-space: normal;
|
||
}
|
||
|
||
.custom_bootstrap select.input-tiny,
|
||
.custom_bootstrap input[type="text"].input-tiny,
|
||
.custom_bootstrap input[type="password"].input-tiny {
|
||
width: 80px;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap textarea {
|
||
resize: none;
|
||
}
|
||
|
||
.custom_bootstrap textarea:focus, .custom_bootstrap input[type="text"]:focus, .custom_bootstrap input[type="password"]:focus, .custom_bootstrap input[type="datetime"]:focus, .custom_bootstrap input[type="datetime-local"]:focus, .custom_bootstrap input[type="date"]:focus, .custom_bootstrap input[type="month"]:focus, .custom_bootstrap input[type="time"]:focus, .custom_bootstrap input[type="week"]:focus, .custom_bootstrap input[type="number"]:focus, .custom_bootstrap input[type="email"]:focus, .custom_bootstrap input[type="url"]:focus, .custom_bootstrap input[type="search"]:focus, .custom_bootstrap input[type="tel"]:focus, .custom_bootstrap input[type="color"]:focus, .custom_bootstrap .uneditable-input:focus {
|
||
background-color: #FEFBE2;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn .caret {
|
||
border-top-color: #333333 !important;
|
||
}
|
||
|
||
.custom_bootstrap .btn:hover .caret {
|
||
border-top-color: white !important;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-default i {
|
||
color: #555555;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-default:hover {
|
||
color: white;
|
||
background-color: #00aff0;
|
||
border-color: #008abd;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-default:hover i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-primary {
|
||
background-color: #00aff0;
|
||
color: white;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-primary i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-primary:hover {
|
||
background-color: #008abd;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn.btn-default[disabled] {
|
||
border-color: #999999;
|
||
color: #999999;
|
||
background-color: #f2f2f2;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu {
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > li a {
|
||
padding: 5px 10px;
|
||
}
|
||
|
||
.custom_bootstrap .dropdown-menu > li a:hover i {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-action {
|
||
line-height: 0;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-action .btn {
|
||
font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-action .btn-group {
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-action .btn-group > a, .custom_bootstrap .btn-group-action .btn-group button {
|
||
text-decoration: none;
|
||
display: inline-block;
|
||
float: none;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-action .btn-group > a:first-child {
|
||
margin-right: -3px;
|
||
}
|
||
|
||
.custom_bootstrap .btn-group-action .btn-group i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .dummyfile {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .dummyfile .hide-file-upload {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
opacity: 0;
|
||
filter: alpha(opacity=0);
|
||
}
|
||
|
||
.custom_bootstrap .tt-query {
|
||
border-bottom-right-radius: 3px !important;
|
||
border-top-right-radius: 3px !important;
|
||
}
|
||
|
||
.custom_bootstrap .tt-dropdown-menu {
|
||
background-color: white;
|
||
border: solid 1px #ccc;
|
||
font-size: 0.9em;
|
||
text-transform: none;
|
||
}
|
||
|
||
.custom_bootstrap .tt-suggestions {
|
||
padding: 0 6px;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 1px 4px;
|
||
box-shadow: rgba(0, 0, 0, 0.25) 0 1px 4px;
|
||
}
|
||
|
||
.custom_bootstrap .tt-suggestion p {
|
||
border-bottom: solid 1px #ccc;
|
||
margin: 0 !important;
|
||
padding: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap .tt-suggestion:last-child p {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.custom_bootstrap .tagify-container {
|
||
background-color: white;
|
||
padding: 0px 3px;
|
||
min-height: 30px;
|
||
overflow: auto;
|
||
border: solid 1px #ccc;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.075) 0 1px 1px inset;
|
||
box-shadow: rgba(0, 0, 0, 0.075) 0 1px 1px inset;
|
||
}
|
||
|
||
.custom_bootstrap .tagify-container span {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .tagify-container > span {
|
||
display: inline-block;
|
||
padding: 2px 5px;
|
||
margin: 3px;
|
||
border-radius: 2px;
|
||
border: 1px solid #00aff0;
|
||
background-color: #3ecbff;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .tagify-container > span > a {
|
||
color: #00aff0;
|
||
text-decoration: none;
|
||
font-weight: bold;
|
||
padding-left: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .tagify-container > input {
|
||
margin-top: 2px;
|
||
border: 0 none;
|
||
width: 140px;
|
||
height: auto;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .tagify-container > input:focus {
|
||
outline: 0;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
.custom_bootstrap .form-group input[type="text"], .custom_bootstrap .form-group input[type="search"], .custom_bootstrap .form-group input[type="password"], .custom_bootstrap .form-group textarea, .custom_bootstrap .form-group select {
|
||
margin-top: 15px;
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-group .input-group {
|
||
margin-top: 15px;
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-group .input-group input[type="text"], .custom_bootstrap .form-group .input-group input[type="search"], .custom_bootstrap .form-group .input-group input[type="password"], .custom_bootstrap .form-group .input-group textarea, .custom_bootstrap .form-group .input-group select {
|
||
margin: 0;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap input[type="text"], .custom_bootstrap input[type="search"], .custom_bootstrap input[type="password"], .custom_bootstrap input[type="email"], .custom_bootstrap input[type="tel"] {
|
||
font-family: "Open Sans", Helvetica, Arial, sans-serif, "FontAwesome" !important;
|
||
}
|
||
|
||
.custom_bootstrap .kpi-container {
|
||
padding-bottom: 10px !important;
|
||
}
|
||
|
||
.custom_bootstrap .kpi-container .kpi-refresh {
|
||
position: absolute;
|
||
z-index: 1;
|
||
right: 20px;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats {
|
||
display: block;
|
||
height: 64px;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats .boxchart-overlay {
|
||
padding: 10px 10px 5px 10px;
|
||
margin-right: 10px;
|
||
float: left;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats .kpi-content {
|
||
width: 100%;
|
||
position: relative;
|
||
padding-left: 40px;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats .kpi-content i {
|
||
position: absolute;
|
||
top: 0;
|
||
font-size: 26px;
|
||
text-align: center;
|
||
color: white;
|
||
line-height: 26px;
|
||
left: 0;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats .kpi-content .title {
|
||
display: block;
|
||
color: #666;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats .kpi-content .subtitle {
|
||
display: block;
|
||
text-transform: uppercase;
|
||
color: #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats .kpi-content .value {
|
||
display: block;
|
||
clear: both;
|
||
font-size: 1.5em;
|
||
white-space: nowrap;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .box-stats:hover {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .color1 i, .custom_bootstrap .color1 .boxchart-overlay {
|
||
color: #2BA8E3 !important;
|
||
}
|
||
|
||
.custom_bootstrap .color1 .value {
|
||
color: #2BA8E3;
|
||
}
|
||
|
||
.custom_bootstrap .color2 i, .custom_bootstrap .color2 .boxchart-overlay {
|
||
color: #FF5450 !important;
|
||
}
|
||
|
||
.custom_bootstrap .color2 .value {
|
||
color: #FF5450;
|
||
}
|
||
|
||
.custom_bootstrap .color3 i, .custom_bootstrap .color3 .boxchart-overlay {
|
||
color: #9E5BA1 !important;
|
||
}
|
||
|
||
.custom_bootstrap .color3 .value {
|
||
color: #9E5BA1;
|
||
}
|
||
|
||
.custom_bootstrap .color4 i, .custom_bootstrap .color4 .boxchart-overlay {
|
||
color: #95CC6B !important;
|
||
}
|
||
|
||
.custom_bootstrap .color4 .value {
|
||
color: #95CC6B;
|
||
}
|
||
|
||
.custom_bootstrap .data_chart rect {
|
||
fill: white;
|
||
}
|
||
|
||
.custom_bootstrap .data_chart path {
|
||
stroke: white;
|
||
stroke-width: 2;
|
||
fill: none;
|
||
}
|
||
|
||
.custom_bootstrap .data_chart line {
|
||
stroke: black;
|
||
}
|
||
|
||
.custom_bootstrap .data_chart .area {
|
||
fill: rgba(255, 255, 255, 0.3);
|
||
stroke-width: 0;
|
||
}
|
||
|
||
.custom_bootstrap .switch a,
|
||
.custom_bootstrap .switch-light span span {
|
||
display: none;
|
||
}
|
||
|
||
@media only screen {
|
||
.custom_bootstrap .switch-light {
|
||
display: block;
|
||
height: 26px;
|
||
position: relative;
|
||
overflow: visible;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light * {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light a {
|
||
display: block;
|
||
-webkit-transition: all 0.3s ease-out;
|
||
-o-transition: all 0.3s ease-out;
|
||
transition: all 0.3s ease-out;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light label,
|
||
.custom_bootstrap .switch-light > span {
|
||
line-height: 26px;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light label {
|
||
position: relative;
|
||
z-index: 3;
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light input {
|
||
position: absolute;
|
||
opacity: 0;
|
||
z-index: 5;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light input:checked ~ a {
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light > span {
|
||
position: absolute;
|
||
width: 100%;
|
||
margin: 0;
|
||
font-weight: normal;
|
||
text-align: left;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light > span span {
|
||
position: absolute;
|
||
top: 0;
|
||
z-index: 5;
|
||
display: block;
|
||
width: 50%;
|
||
text-align: center;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light > span span:last-child {
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .switch-light a {
|
||
position: absolute;
|
||
top: 0;
|
||
z-index: 4;
|
||
display: block;
|
||
width: 50%;
|
||
height: 100%;
|
||
padding: 0;
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .switch {
|
||
height: 26px;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .switch * {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap .switch a {
|
||
display: block;
|
||
-webkit-transition: all 0.3s ease-out;
|
||
-o-transition: all 0.3s ease-out;
|
||
transition: all 0.3s ease-out;
|
||
}
|
||
|
||
.custom_bootstrap .switch label,
|
||
.custom_bootstrap .switch > span {
|
||
line-height: 26px;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .switch input {
|
||
position: absolute;
|
||
opacity: 0;
|
||
}
|
||
|
||
.custom_bootstrap .switch label {
|
||
position: relative;
|
||
z-index: 2;
|
||
width: 50%;
|
||
height: 100%;
|
||
margin: 0;
|
||
text-align: center;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .switch a {
|
||
position: absolute;
|
||
top: 0;
|
||
padding: 0;
|
||
z-index: 1;
|
||
width: 50%;
|
||
height: 100%;
|
||
color: white;
|
||
border: solid 1px #279CBB;
|
||
background-color: #2eacce;
|
||
left: 0;
|
||
-webkit-box-shadow: "#1B7088" 0 -1px 0 inset;
|
||
box-shadow: "#1B7088" 0 -1px 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .switch input:last-of-type:checked ~ a {
|
||
border: solid 1px #CA6F6F;
|
||
background-color: #E08F95;
|
||
left: 50%;
|
||
-webkit-box-shadow: "#5C5C5C" 0 -1px 0 inset;
|
||
box-shadow: "#5C5C5C" 0 -1px 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .switch input:disabled ~ a {
|
||
border: solid 1px #b3b3b3 !important;
|
||
background-color: #cdcdcd !important;
|
||
-webkit-box-shadow: #b3b3b3 0 -1px 0 inset !important;
|
||
box-shadow: #b3b3b3 0 -1px 0 inset !important;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-3 label,
|
||
.custom_bootstrap .switch.switch-3 a {
|
||
width: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-3 input:checked:nth-of-type(2) ~ a {
|
||
left: 33.33333%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-3 input:checked:last-of-type ~ a {
|
||
left: 66.66667%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-4 label,
|
||
.custom_bootstrap .switch.switch-4 a {
|
||
width: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-4 input:checked:nth-of-type(2) ~ a {
|
||
left: 25%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-4 input:checked:nth-of-type(3) ~ a {
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-4 input:checked:last-of-type ~ a {
|
||
left: 75%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-5 label,
|
||
.custom_bootstrap .switch.switch-5 a {
|
||
width: 20%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-5 input:checked:nth-of-type(2) ~ a {
|
||
left: 20%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-5 input:checked:nth-of-type(3) ~ a {
|
||
left: 40%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-5 input:checked:nth-of-type(4) ~ a {
|
||
left: 60%;
|
||
}
|
||
|
||
.custom_bootstrap .switch.switch-5 input:checked:last-of-type ~ a {
|
||
left: 80%;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch {
|
||
margin-top: 3px;
|
||
background-color: #eee;
|
||
border-radius: 3px;
|
||
color: #333;
|
||
text-align: center;
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 4px 1px inset;
|
||
box-shadow: rgba(0, 0, 0, 0.15) 0 1px 4px 1px inset;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch * {
|
||
outline: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch label {
|
||
color: #bbb;
|
||
font-weight: 400;
|
||
cursor: pointer;
|
||
/*padding-top: 0;*/
|
||
-webkit-transition: color 0.2s ease-out;
|
||
-o-transition: color 0.2s ease-out;
|
||
transition: color 0.2s ease-out;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch input:checked + label {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch > span {
|
||
color: #666;
|
||
text-transform: uppercase;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-light input:checked ~ a {
|
||
border: solid 1px #72C279;
|
||
background-color: #96d19b;
|
||
-webkit-box-shadow: #72C279 0 -1px 0 inset;
|
||
box-shadow: #72C279 0 -1px 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-light input:checked ~ span span:first-of-type {
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-light input:checked ~ span span:last-of-type {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-light input ~ a {
|
||
border: solid 1px #E08F95;
|
||
background-color: #ebb7bb;
|
||
-webkit-box-shadow: #E08F95 0 -1px 0 inset;
|
||
box-shadow: #E08F95 0 -1px 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-light input ~ span span:first-of-type {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-light input ~ span span:last-of-type {
|
||
color: white;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-head {
|
||
width: 100%;
|
||
height: 100px;
|
||
padding: 0;
|
||
margin: 0;
|
||
position: fixed;
|
||
top: 36px;
|
||
z-index: 499;
|
||
background-color: white;
|
||
border-bottom: #DFDFDF 1px solid;
|
||
color: #363A41;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .page-head h2.page-title {
|
||
float: left;
|
||
position: relative;
|
||
margin: 0;
|
||
font: 20pt "Open Sans", Helvetica, Arial, sans-serif;
|
||
color: #363A41;
|
||
white-space: nowrap;
|
||
padding: 26px 0 0 230px;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.custom_bootstrap .page-head h2.page-title {
|
||
padding: 26px 0 0 70px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-head h2.page-title a {
|
||
border-bottom: dotted 1px white;
|
||
}
|
||
|
||
.custom_bootstrap .page-head h2.page-title a:hover {
|
||
color: black;
|
||
border-color: black;
|
||
}
|
||
|
||
.custom_bootstrap .page-head a {
|
||
color: white;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .page-head h4.page-subtitle {
|
||
float: left;
|
||
position: absolute;
|
||
margin-top: 60px;
|
||
left: 230px;
|
||
font-family: "Open Sans";
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.custom_bootstrap .page-head h4.page-subtitle {
|
||
left: 70px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox {
|
||
position: absolute;
|
||
background-color: transparent !important;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox #toolbar-nav {
|
||
border: none;
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar {
|
||
margin: 0;
|
||
padding: 3px 0 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn {
|
||
position: relative;
|
||
padding: 20px 5px !important;
|
||
font-size: 12px;
|
||
line-height: 8px;
|
||
color: #363A41;
|
||
text-align: center;
|
||
text-shadow: none;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
margin: 0 3px 2px 0;
|
||
}
|
||
|
||
@media (max-width: 992px) {
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn {
|
||
width: 46px;
|
||
font-size: 11px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn i {
|
||
color: #2eacce;
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn i:hover {
|
||
color: #40c9ed;
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn div {
|
||
padding-top: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .dropdown-toolbar {
|
||
display: none;
|
||
float: right;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.custom_bootstrap .page-head .toolbarBox .btn-toolbar .dropdown-toolbar {
|
||
display: block;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-head ul.page-breadcrumb {
|
||
position: absolute;
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
top: 4px;
|
||
height: 20px;
|
||
line-height: 20px;
|
||
color: black;
|
||
font-size: 12px;
|
||
color: rgba(0, 0, 0, 0.5);
|
||
background: transparent !important;
|
||
border: none !important;
|
||
white-space: nowrap;
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
left: 230px;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.custom_bootstrap .page-head ul.page-breadcrumb {
|
||
left: 70px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .page-head ul.page-breadcrumb li i {
|
||
font-size: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .page-head ul.page-breadcrumb li.breadcrumb-container i, .custom_bootstrap .page-head ul.page-breadcrumb li.breadcrumb-current i {
|
||
position: absolute;
|
||
top: 2px;
|
||
font-size: 42px;
|
||
color: #659e32;
|
||
padding-right: 5px;
|
||
border-right: solid 1px #659e32;
|
||
left: -60px;
|
||
}
|
||
|
||
.custom_bootstrap .page-head ul.page-breadcrumb li:before {
|
||
color: #659e32;
|
||
}
|
||
|
||
.custom_bootstrap .page-head ul.page-breadcrumb li a {
|
||
color: #363A41;
|
||
}
|
||
|
||
.custom_bootstrap .page-head ul.page-breadcrumb li a:hover {
|
||
color: #363A41;
|
||
}
|
||
|
||
.custom_bootstrap .page-header-toolbar-back {
|
||
border: none !important;
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .input-selected {
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker #date-start.input-selected, .custom_bootstrap #datepicker #date-end.input-selected {
|
||
border: solid 3px #00A4E7;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker #date-start-compare.input-selected, .custom_bootstrap #datepicker #date-end-compare.input-selected {
|
||
border: solid 3px #FF8000;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form #date-range {
|
||
border: solid 1px #0092ce;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form #date-range .form-date-heading {
|
||
background-color: #0092ce;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form #date-compare {
|
||
border: solid 1px #e67300;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form #date-compare .form-date-heading {
|
||
background-color: #e67300;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-heading {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
padding: 0 0 0 8px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-heading .title, .custom_bootstrap #datepicker div#datepicker-form .form-date-heading .checkbox-title label {
|
||
font-size: 1.15em;
|
||
color: white;
|
||
font-weight: 200;
|
||
text-transform: uppercase;
|
||
line-height: 2em;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-heading .btn-default {
|
||
background-color: rgba(255, 255, 255, 0.3);
|
||
font-weight: 700;
|
||
color: white;
|
||
border: none;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-heading select {
|
||
margin: 2px 2px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-body, .custom_bootstrap #datepicker div#datepicker-form .form-date-actions {
|
||
width: 100%;
|
||
padding: 10px;
|
||
background-color: white;
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-actions {
|
||
border: solid 1px #ccc;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-group {
|
||
clear: both;
|
||
width: 100%;
|
||
margin: 0 auto 6px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-group label {
|
||
font-size: 0.8em;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
color: #666;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-group input {
|
||
margin: 4px 4px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-group input[type='text'] {
|
||
width: 35%;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker div#datepicker-form .form-date-group button {
|
||
margin: 5px 0 0 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker {
|
||
position: relative;
|
||
width: 100%;
|
||
font-size: 13px;
|
||
border: solid 1px #ccc;
|
||
margin: 0 0 8px 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker table {
|
||
width: 100%;
|
||
margin: 0;
|
||
border-spacing: 1px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker thead tr th {
|
||
background-color: #0092ce;
|
||
color: white;
|
||
font-size: 0.7em;
|
||
height: 1.5em;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker thead tr:first-child th {
|
||
background-color: white;
|
||
border-bottom: 1px solid #0092ce;
|
||
font-weight: 200;
|
||
font-size: 1.4em;
|
||
color: #00A4E7;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td, .custom_bootstrap #datepicker .daterangepicker th {
|
||
text-align: center;
|
||
padding: 0;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker tr {
|
||
border-bottom: solid 1px white;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td {
|
||
color: #00A4E7;
|
||
height: 2.4em;
|
||
padding: 0 8px;
|
||
-webkit-transition-property: all;
|
||
transition-property: all;
|
||
-webkit-transition-duration: 0.2s;
|
||
transition-duration: 0.2s;
|
||
-webkit-transition-timing-function: ease-out;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.day:after {
|
||
content: "";
|
||
position: absolute;
|
||
display: block;
|
||
top: 0;
|
||
width: 100%;
|
||
z-index: 0;
|
||
background-color: transparent;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.day:hover {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.day.disabled {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.old, .custom_bootstrap #datepicker .daterangepicker td.new {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected) {
|
||
color: white;
|
||
font-weight: 700;
|
||
background-color: #00A4E7;
|
||
border-bottom-left-radius: 15px;
|
||
border-top-left-radius: 15px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected).range-compare {
|
||
background-color: #4da1b1;
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected).end-selected-compare, .custom_bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected).start-selected-compare {
|
||
background-color: #4d99a2;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected).end-selected-compare {
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected) {
|
||
color: white;
|
||
font-weight: 700;
|
||
background-color: #00A4E7;
|
||
border-bottom-right-radius: 15px;
|
||
border-top-right-radius: 15px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected).range-compare {
|
||
background-color: #4da1b1;
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected).end-selected-compare, .custom_bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected).start-selected-compare {
|
||
background-color: #4d99a2;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected).start-selected-compare {
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.start-selected-compare:not(.old):not(.new):not(.end-selected-compare) {
|
||
color: white;
|
||
font-weight: 700;
|
||
background-color: #FF8000;
|
||
border-bottom-left-radius: 15px;
|
||
border-top-left-radius: 15px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.start-selected-compare:not(.old):not(.new):not(.end-selected-compare).range {
|
||
background-color: #bb924d;
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected-compare:not(.old):not(.new):not(.start-selected-compare) {
|
||
color: white;
|
||
font-weight: 700;
|
||
background-color: #FF8000;
|
||
border-bottom-right-radius: 15px;
|
||
border-top-right-radius: 15px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected-compare:not(.old):not(.new):not(.start-selected-compare).range {
|
||
background-color: #bb924d;
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected.start-selected {
|
||
color: white;
|
||
-webkit-border-radius: 15px;
|
||
border-radius: 15px;
|
||
font-weight: 700;
|
||
background-color: #00A4E7;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected.start-selected.range-compare {
|
||
background-color: #4da1b1;
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected-compare.start-selected-compare {
|
||
color: white;
|
||
-webkit-border-radius: 15px;
|
||
border-radius: 15px;
|
||
font-weight: 700;
|
||
background-color: #FF8000;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.end-selected-compare.start-selected-compare.range {
|
||
background-color: #bb924d;
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.range {
|
||
color: #cef1ff;
|
||
background-color: #1bbdff;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.range.range-compare {
|
||
background-color: #8dab99;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.range-compare {
|
||
color: #fff2e6;
|
||
background-color: #ff9933;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.range-compare.range {
|
||
background-color: #8dab99;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td.today {
|
||
background-color: white;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td span {
|
||
padding: 0;
|
||
display: block;
|
||
width: 33.333%;
|
||
height: 3em;
|
||
line-height: 3em;
|
||
font-weight: 400;
|
||
float: left;
|
||
text-transform: uppercase;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td span:hover {
|
||
color: white;
|
||
background-color: #00A4E7;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td span.active {
|
||
background-color: #00A4E7;
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker td span.old {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker th.next {
|
||
text-align: right;
|
||
padding: 0 10px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker th.prev {
|
||
text-align: left;
|
||
padding: 0 0 0 10px;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker th.next, .custom_bootstrap #datepicker .daterangepicker th.prev, .custom_bootstrap #datepicker .daterangepicker th.month-switch {
|
||
font-size: 1.3em;
|
||
line-height: 2em;
|
||
height: 2em;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker th.next:hover, .custom_bootstrap #datepicker .daterangepicker th.prev:hover, .custom_bootstrap #datepicker .daterangepicker th.month-switch:hover {
|
||
background-color: #0092ce;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap #datepicker .daterangepicker thead tr:first-child th {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .chevron-left, .custom_bootstrap .chevron-right {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .chevron-left:before, .custom_bootstrap .chevron-right:before {
|
||
display: block;
|
||
content: "";
|
||
width: 0;
|
||
height: 0;
|
||
border-style: solid;
|
||
position: absolute;
|
||
}
|
||
|
||
.custom_bootstrap .chevron-left:before {
|
||
top: 0;
|
||
border-color: transparent transparent transparent #00A4E7;
|
||
background-color: #1bbdff;
|
||
right: 0;
|
||
border-width: 1.2em 0 1.2em 0.5em;
|
||
}
|
||
|
||
.custom_bootstrap .chevron-right:before {
|
||
top: 0;
|
||
border-color: transparent transparent transparent #1bbdff;
|
||
background-color: #00A4E7;
|
||
left: 0;
|
||
border-width: 1.2em 0 1.2em 0.5em;
|
||
}
|
||
|
||
.custom_bootstrap .input-complete {
|
||
-webkit-animation: one 0.2s ease-in-out;
|
||
-moz-animation: one 0.2s ease-in-out;
|
||
-ms-animation: one 0.2s ease-in-out;
|
||
-o-animation: one 0.2s ease-in-out;
|
||
animation: one 0.2s ease-in-out;
|
||
}
|
||
|
||
@-webkit-keyframes one {
|
||
0% {
|
||
background-color: #00A4E7;
|
||
}
|
||
100% {
|
||
background-color: white;
|
||
}
|
||
}
|
||
|
||
@-webkit-keyframes two {
|
||
0% {
|
||
-webkit-box-shadow: #00A4E7 0 0 0 20px inset;
|
||
box-shadow: #00A4E7 0 0 0 20px inset;
|
||
}
|
||
100% {
|
||
-webkit-box-shadow: #00A4E7 0 0 0 inset;
|
||
box-shadow: #00A4E7 0 0 0 inset;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb-multishop {
|
||
width: auto;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb-multishop:after {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
bottom: 0;
|
||
font-size: 14px;
|
||
line-height: 22px;
|
||
padding: 0 7px;
|
||
font-family: FontAwesome;
|
||
background-color: #659e32;
|
||
color: white;
|
||
pointer-events: none;
|
||
right: 0;
|
||
-webkit-border-radius: 0 4px 4px 0;
|
||
border-radius: 0 4px 4px 0;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb-multishop select {
|
||
display: inline-block;
|
||
height: 22px;
|
||
line-height: 20px;
|
||
border: 1px solid #659e32;
|
||
margin: 0;
|
||
outline: none;
|
||
color: #666;
|
||
background: white;
|
||
position: relative;
|
||
-webkit-appearance: none;
|
||
padding: 0 5px 0 8px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .breadcrumb-multishop select:focus {
|
||
box-shadow: 0 0 0 1px #659e32;
|
||
}
|
||
|
||
.custom_bootstrap #header_shop .group {
|
||
font-style: italic;
|
||
}
|
||
|
||
.custom_bootstrap #header_shop .shop a {
|
||
padding-left: 20px;
|
||
}
|
||
|
||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||
.custom_bootstrap .custom-select select {
|
||
padding-right: 30px;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .no-pointer-events .custom-select:after {
|
||
content: none;
|
||
}
|
||
|
||
.custom_bootstrap .multishop-well {
|
||
padding: 20px 20px 10px;
|
||
margin-bottom: 15px;
|
||
background-color: #FAF8F0;
|
||
border: none;
|
||
border-left: 3px solid #FBECCB;
|
||
}
|
||
|
||
.custom_bootstrap .media-product-pack {
|
||
width: 200px;
|
||
border: solid 2px #eee;
|
||
padding: 4px;
|
||
overflow: hidden;
|
||
position: relative;
|
||
margin-bottom: 10px;
|
||
margin-right: 10px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .media-product-pack .media-product-pack-img {
|
||
width: 100%;
|
||
padding-bottom: 5px;
|
||
border-bottom: 1px solid #ccc;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .media-product-pack .media-product-pack-title {
|
||
width: 100%;
|
||
padding: 0 5px;
|
||
display: inline-block;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .media-product-pack .media-product-pack-ref {
|
||
color: #aaa;
|
||
width: 100%;
|
||
padding: 0 5px;
|
||
display: inline-block;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .media-product-pack .media-product-pack-action {
|
||
position: absolute;
|
||
top: 7px;
|
||
border: solid 1px #ccc;
|
||
text-align: center;
|
||
right: 7px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .media-product-pack .media-product-pack-quantity {
|
||
background-color: white;
|
||
position: absolute;
|
||
padding: 0 4px;
|
||
top: 7px;
|
||
height: 25px;
|
||
min-width: 35px;
|
||
line-height: 23px;
|
||
border: solid 1px #ccc;
|
||
text-align: center;
|
||
left: 7px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container {
|
||
margin: 0;
|
||
padding: 0;
|
||
border: 0;
|
||
outline: 0;
|
||
vertical-align: top;
|
||
background: transparent;
|
||
text-decoration: none;
|
||
color: #333;
|
||
font-size: 12px;
|
||
float: none;
|
||
position: static;
|
||
width: auto;
|
||
height: auto;
|
||
white-space: nowrap;
|
||
cursor: inherit;
|
||
-webkit-tap-highlight-color: transparent;
|
||
line-height: normal;
|
||
font-weight: normal;
|
||
box-sizing: content-box;
|
||
text-align: left;
|
||
direction: ltr;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container * {
|
||
margin: 0;
|
||
padding: 0;
|
||
border: 0;
|
||
outline: 0;
|
||
vertical-align: top;
|
||
background: transparent;
|
||
text-decoration: none;
|
||
color: #333;
|
||
font-size: 12px;
|
||
float: none;
|
||
position: static;
|
||
width: auto;
|
||
height: auto;
|
||
white-space: nowrap;
|
||
cursor: inherit;
|
||
-webkit-tap-highlight-color: transparent;
|
||
line-height: normal;
|
||
font-weight: normal;
|
||
text-align: left;
|
||
box-sizing: content-box;
|
||
direction: ltr;
|
||
}
|
||
|
||
.custom_bootstrap .mce-widget {
|
||
margin: 0;
|
||
padding: 0;
|
||
border: 0;
|
||
outline: 0;
|
||
vertical-align: top;
|
||
background: transparent;
|
||
text-decoration: none;
|
||
color: #333;
|
||
font-size: 12px;
|
||
float: none;
|
||
position: static;
|
||
width: auto;
|
||
height: auto;
|
||
white-space: nowrap;
|
||
cursor: inherit;
|
||
-webkit-tap-highlight-color: transparent;
|
||
line-height: normal;
|
||
font-weight: normal;
|
||
text-align: left;
|
||
box-sizing: content-box;
|
||
direction: ltr;
|
||
}
|
||
|
||
.custom_bootstrap .mce-widget * {
|
||
margin: 0;
|
||
padding: 0;
|
||
border: 0;
|
||
outline: 0;
|
||
vertical-align: top;
|
||
background: transparent;
|
||
text-decoration: none;
|
||
color: #333;
|
||
font-size: 12px;
|
||
float: none;
|
||
position: static;
|
||
width: auto;
|
||
height: auto;
|
||
white-space: nowrap;
|
||
cursor: inherit;
|
||
-webkit-tap-highlight-color: transparent;
|
||
line-height: normal;
|
||
font-weight: normal;
|
||
text-align: left;
|
||
box-sizing: content-box;
|
||
direction: ltr;
|
||
}
|
||
|
||
.custom_bootstrap .mce-widget button {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container *[unselectable] {
|
||
-moz-user-select: none;
|
||
-webkit-user-select: none;
|
||
-o-user-select: none;
|
||
user-select: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fade {
|
||
opacity: 0;
|
||
-webkit-transition: opacity 0.15s linear;
|
||
transition: opacity 0.15s linear;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fade.mce-in {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tinymce {
|
||
visibility: visible !important;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fullscreen {
|
||
border: 0;
|
||
padding: 0;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
height: 100%;
|
||
z-index: 100;
|
||
}
|
||
|
||
.custom_bootstrap div.mce-fullscreen {
|
||
position: fixed;
|
||
top: 0;
|
||
width: 100%;
|
||
height: auto;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tinymce {
|
||
display: block;
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-wordcount {
|
||
position: absolute;
|
||
top: 0;
|
||
padding: 8px;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap div.mce-edit-area {
|
||
background: #FFF;
|
||
filter: none;
|
||
padding: 1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-statusbar {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-statusbar .mce-container-body {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fullscreen .mce-resizehandle {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-charmap {
|
||
border-collapse: collapse;
|
||
}
|
||
|
||
.custom_bootstrap .mce-charmap td {
|
||
cursor: default;
|
||
border: 1px solid #9e9e9e;
|
||
width: 20px;
|
||
height: 20px;
|
||
line-height: 20px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
padding: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-charmap td div {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .mce-charmap td:hover {
|
||
background: #d9d9d9;
|
||
}
|
||
|
||
.custom_bootstrap .mce-grid td div {
|
||
border: 1px solid #d6d6d6;
|
||
width: 12px;
|
||
height: 12px;
|
||
margin: 2px;
|
||
cursor: pointer;
|
||
border-spacing: 2px;
|
||
border-collapse: separate;
|
||
}
|
||
|
||
.custom_bootstrap .mce-grid a {
|
||
display: block;
|
||
border: 1px solid transparent;
|
||
}
|
||
|
||
.custom_bootstrap .mce-grid a:hover {
|
||
border-color: #a1a1a1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-grid-border {
|
||
margin: 0 4px 0 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-grid-border a {
|
||
border-color: #d6d6d6;
|
||
width: 13px;
|
||
height: 13px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-grid-border a:hover, .custom_bootstrap .mce-grid-border a.mce-active {
|
||
border-color: #a1a1a1;
|
||
background: #c8def4;
|
||
}
|
||
|
||
.custom_bootstrap .mce-text-center {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap div.mce-tinymce-inline {
|
||
width: 100%;
|
||
-webkit-box-shadow: none;
|
||
-moz-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-toolbar-grp {
|
||
padding-bottom: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-toolbar-grp .mce-flow-layout-item {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-wordcount {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container, .custom_bootstrap .mce-container-body {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .mce-autoscroll {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .mce-scrollbar {
|
||
position: absolute;
|
||
width: 7px;
|
||
height: 100%;
|
||
top: 2px;
|
||
opacity: 0.4;
|
||
filter: alpha(opacity=40);
|
||
zoom: 1;
|
||
right: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-scrollbar-h {
|
||
top: auto;
|
||
bottom: 2px;
|
||
width: 100%;
|
||
height: 7px;
|
||
right: auto;
|
||
left: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-scrollbar-thumb {
|
||
position: absolute;
|
||
background-color: #000;
|
||
border: 1px solid #888;
|
||
border-color: rgba(85, 85, 85, 0.6);
|
||
width: 5px;
|
||
height: 100%;
|
||
-webkit-border-radius: 7px;
|
||
border-radius: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-scrollbar-h .mce-scrollbar-thumb {
|
||
width: 100%;
|
||
height: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-scrollbar:hover, .custom_bootstrap .mce-scrollbar.mce-active {
|
||
background-color: #AAA;
|
||
opacity: 0.6;
|
||
filter: alpha(opacity=60);
|
||
zoom: 1;
|
||
-webkit-border-radius: 7px;
|
||
border-radius: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-scroll {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-panel {
|
||
border: 0 solid #ccc;
|
||
background-color: #FCFDFE;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel {
|
||
position: absolute;
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-fixed {
|
||
position: fixed;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel .mce-arrow {
|
||
position: absolute;
|
||
display: block;
|
||
width: 0;
|
||
height: 0;
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
border-width: 11px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel .mce-arrow:after {
|
||
position: absolute;
|
||
display: block;
|
||
width: 0;
|
||
height: 0;
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
border-width: 10px;
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover {
|
||
top: 0;
|
||
background: transparent;
|
||
background: #fff;
|
||
border: 1px solid rgba(0, 0, 0, 0.25);
|
||
-webkit-border-radius: 6px;
|
||
border-radius: 6px;
|
||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom {
|
||
margin-top: 10px;
|
||
*margin-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom > .mce-arrow {
|
||
border-top-width: 0;
|
||
border-bottom-color: #9e9e9e;
|
||
border-bottom-color: rgba(0, 0, 0, 0.25);
|
||
top: -11px;
|
||
left: 50%;
|
||
margin-left: -11px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom > .mce-arrow:after {
|
||
top: 1px;
|
||
border-top-width: 0;
|
||
border-bottom-color: #fff;
|
||
margin-left: -10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom.mce-start {
|
||
margin-left: -22px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom.mce-start > .mce-arrow {
|
||
left: 20px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom.mce-end {
|
||
margin-left: 22px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-floatpanel.mce-popover.mce-bottom.mce-end > .mce-arrow {
|
||
right: 10px;
|
||
left: auto;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fullscreen {
|
||
border: 0;
|
||
padding: 0;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
background: #fff;
|
||
height: 100%;
|
||
}
|
||
|
||
.custom_bootstrap div.mce-fullscreen {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #mce-modal-block {
|
||
opacity: 0;
|
||
filter: alpha(opacity=0);
|
||
zoom: 1;
|
||
position: fixed;
|
||
top: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: #000;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap #mce-modal-block.mce-in {
|
||
opacity: 0.3;
|
||
filter: alpha(opacity=30);
|
||
zoom: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window-move {
|
||
cursor: move;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window {
|
||
background: transparent;
|
||
background: #fff;
|
||
position: fixed;
|
||
top: 0;
|
||
opacity: 0;
|
||
-webkit-transition: opacity 150ms ease-in;
|
||
transition: opacity 150ms ease-in;
|
||
left: 0;
|
||
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
||
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
||
-webkit-border-radius: 6px;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window.mce-in {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window-head {
|
||
padding: 9px 15px;
|
||
border-bottom: 1px solid #c5c5c5;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window-head .mce-close {
|
||
position: absolute;
|
||
top: 9px;
|
||
font-size: 18px;
|
||
font-weight: bold;
|
||
line-height: 20px;
|
||
color: #858585;
|
||
cursor: pointer;
|
||
height: 20px;
|
||
overflow: hidden;
|
||
right: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-close:hover {
|
||
color: #adadad;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window-head .mce-title {
|
||
line-height: 20px;
|
||
font-size: 14px;
|
||
font-weight: normal;
|
||
text-rendering: optimizelegibility;
|
||
padding-right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window .mce-container-body {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .mce-foot {
|
||
display: block;
|
||
background-color: #fff;
|
||
border-top: 1px solid #c5c5c5;
|
||
-webkit-border-radius: 0 0 6px 6px;
|
||
border-radius: 0 0 6px 6px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window-head .mce-dragh {
|
||
position: absolute;
|
||
top: 0;
|
||
cursor: move;
|
||
width: 90%;
|
||
height: 100%;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window iframe {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window.mce-fullscreen {
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-window.mce-fullscreen .mce-foot {
|
||
-webkit-border-radius: 0;
|
||
border-radius: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-window-head .mce-close {
|
||
position: absolute;
|
||
right: auto;
|
||
left: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-window-head .mce-dragh {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-window-head .mce-title {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .mce-abs-layout {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap body .mce-abs-layout-item {
|
||
position: absolute;
|
||
}
|
||
|
||
.custom_bootstrap .mce-abs-end {
|
||
position: absolute;
|
||
width: 1px;
|
||
height: 1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container-body.mce-abs-layout {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip {
|
||
position: absolute;
|
||
padding: 5px;
|
||
zoom: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-inner {
|
||
font-size: 12px;
|
||
background-color: #000;
|
||
color: #fff;
|
||
max-width: 200px;
|
||
text-align: center;
|
||
white-space: normal;
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
padding: 5px 8px 4px 8px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-arrow {
|
||
position: absolute;
|
||
width: 0;
|
||
height: 0;
|
||
line-height: 0;
|
||
border: 5px dashed #000;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-arrow-n {
|
||
border-bottom-color: #000;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-arrow-s {
|
||
border-top-color: #000;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-arrow-e {
|
||
border-right-color: #000;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-arrow-w {
|
||
border-left-color: #000;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-nw, .custom_bootstrap .mce-tooltip-sw {
|
||
margin-left: -14px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-n .mce-tooltip-arrow {
|
||
top: 0px;
|
||
border-bottom-style: solid;
|
||
border-top: none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-nw .mce-tooltip-arrow {
|
||
top: 0;
|
||
border-bottom-style: solid;
|
||
border-top: none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-ne .mce-tooltip-arrow {
|
||
top: 0;
|
||
border-bottom-style: solid;
|
||
border-top: none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-s .mce-tooltip-arrow {
|
||
bottom: 0;
|
||
border-top-style: solid;
|
||
border-bottom: none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-sw .mce-tooltip-arrow {
|
||
bottom: 0;
|
||
border-top-style: solid;
|
||
border-bottom: none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-se .mce-tooltip-arrow {
|
||
bottom: 0;
|
||
border-top-style: solid;
|
||
border-bottom: none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-e .mce-tooltip-arrow {
|
||
top: 50%;
|
||
margin-top: -5px;
|
||
border-left-style: solid;
|
||
border-right: none;
|
||
border-top-color: transparent;
|
||
border-bottom-color: transparent;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tooltip-w .mce-tooltip-arrow {
|
||
top: 50%;
|
||
margin-top: -5px;
|
||
border-top-color: transparent;
|
||
border-bottom-color: transparent;
|
||
left: 0;
|
||
border-left-style: solid;
|
||
border-right: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn {
|
||
position: relative;
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
background-color: white;
|
||
-webkit-box-shadow: #eeeeee 0 0 0 inset;
|
||
box-shadow: #eeeeee 0 0 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn:hover, .custom_bootstrap .mce-btn:focus {
|
||
color: #eee;
|
||
background-color: #eee;
|
||
-webkit-box-shadow: #dddddd 0 0 0 inset;
|
||
box-shadow: #dddddd 0 0 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn.mce-disabled button, .custom_bootstrap .mce-btn.mce-disabled:hover button {
|
||
cursor: default;
|
||
box-shadow: none;
|
||
opacity: 0.4;
|
||
filter: alpha(opacity=40);
|
||
zoom: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn.mce-active {
|
||
background-color: #d6d6d6;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn.mce-active:hover {
|
||
background-color: #d6d6d6;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn:not(.mce-disabled):active {
|
||
background-color: #d6d6d6;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn button {
|
||
padding: 2px 6px;
|
||
font-size: 12px;
|
||
cursor: pointer;
|
||
color: #333;
|
||
text-align: center;
|
||
overflow: visible;
|
||
-webkit-appearance: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn button::-moz-focus-inner {
|
||
border: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary {
|
||
min-width: 50px;
|
||
color: #fff;
|
||
border: 1px solid #b1b1b1;
|
||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
|
||
background-color: #006dcc;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary:hover, .custom_bootstrap .mce-primary:focus {
|
||
background-color: #005fb3;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary.mce-disabled button, .custom_bootstrap .mce-primary.mce-disabled:hover button {
|
||
cursor: default;
|
||
opacity: 0.4;
|
||
filter: alpha(opacity=40);
|
||
zoom: 1;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary.mce-active {
|
||
background-color: #005299;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary.mce-active:hover {
|
||
background-color: #005299;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary:not(.mce-disabled):active {
|
||
background-color: #005299;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary button {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-primary button i {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-large button {
|
||
padding: 9px 14px;
|
||
font-size: 12px;
|
||
line-height: normal;
|
||
-webkit-border-radius: 5px;
|
||
border-radius: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-large i {
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-small button {
|
||
padding: 1px 5px;
|
||
font-size: 12px;
|
||
*padding-bottom: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-small i {
|
||
line-height: 20px;
|
||
vertical-align: top;
|
||
*line-height: 18px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn .mce-caret, .custom_bootstrap .mce-btn-small .mce-caret {
|
||
margin-top: 8px;
|
||
margin-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-caret {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
width: 0;
|
||
height: 0;
|
||
vertical-align: top;
|
||
border-top: 4px solid #333;
|
||
border-right: 4px solid transparent;
|
||
border-left: 4px solid transparent;
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-disabled .mce-caret {
|
||
border-top-color: #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .mce-caret.mce-up {
|
||
border-bottom: 4px solid #333;
|
||
border-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-btn button {
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-group .mce-btn {
|
||
border: solid 1px #ccc;
|
||
border-radius: 0;
|
||
border-right: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-group .mce-first {
|
||
-webkit-border-top-left-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
-webkit-border-top-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
-webkit-border-bottom-right-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
-webkit-border-bottom-left-radius: 3px;
|
||
border-bottom-left-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-group .mce-last {
|
||
border-right: solid 1px #ccc;
|
||
-webkit-border-radius: 0 3px 3px 0;
|
||
border-radius: 0 3px 3px 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-group .mce-first.mce-last {
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-btn-group .mce-btn.mce-flow-layout-item {
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-checkbox {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap i.mce-i-checkbox {
|
||
border: 1px solid #c5c5c5;
|
||
border-radius: 3px;
|
||
background-color: #f0f0f0;
|
||
text-indent: -10em;
|
||
*font-size: 0;
|
||
*line-height: 0;
|
||
*text-indent: 0;
|
||
overflow: hidden;
|
||
width: 14px;
|
||
height: 14px;
|
||
text-align: center;
|
||
display: inline-block;
|
||
margin: 0 3px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-checked i.mce-i-checkbox {
|
||
color: #333;
|
||
font-size: 12px;
|
||
line-height: 16px;
|
||
text-indent: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-checkbox:focus i.mce-i-checkbox, .custom_bootstrap .mce-checkbox.mce-focus i.mce-i-checkbox {
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.65);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.65);
|
||
}
|
||
|
||
.custom_bootstrap .mce-checkbox.mce-disabled .mce-label, .custom_bootstrap .mce-checkbox.mce-disabled i.mce-i-checkbox {
|
||
color: #acacac;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-checkbox {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl i.mce-i-checkbox {
|
||
margin: 0 0 0 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton .mce-ico {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton-grid {
|
||
margin: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton button {
|
||
padding-right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton .mce-preview {
|
||
display: block;
|
||
position: absolute;
|
||
top: 50%;
|
||
margin-top: 7px;
|
||
background: gray;
|
||
width: 13px;
|
||
height: 2px;
|
||
overflow: hidden;
|
||
margin-left: -14px;
|
||
left: 50%;
|
||
padding-right: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton.mce-btn-small .mce-preview {
|
||
width: 16px;
|
||
padding-right: 0;
|
||
margin-left: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton .mce-open {
|
||
border-left: 1px solid transparent;
|
||
border-right: 1px solid transparent;
|
||
padding-left: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton:hover .mce-open {
|
||
border-left-color: #bdbdbd;
|
||
border-right-color: #bdbdbd;
|
||
}
|
||
|
||
.custom_bootstrap .mce-colorbutton.mce-btn-small .mce-open {
|
||
padding: 0 3px 0 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-colorbutton {
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-colorbutton .mce-preview {
|
||
margin-left: 0;
|
||
padding-right: 0;
|
||
padding-left: 4px;
|
||
margin-right: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-colorbutton.mce-btn-small .mce-preview {
|
||
margin-left: 0;
|
||
padding-right: 0;
|
||
margin-right: -17px;
|
||
padding-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-colorbutton button {
|
||
padding-right: 10px;
|
||
padding-left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-colorbutton .mce-open {
|
||
padding-left: 4px;
|
||
padding-right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
*height: 32px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox input {
|
||
border: 1px solid #c5c5c5;
|
||
border-right-color: #c5c5c5;
|
||
height: 28px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox.mce-disabled input {
|
||
color: #adadad;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox.mce-has-open input {
|
||
-webkit-border-radius: 4px 0 0 4px;
|
||
border-radius: 4px 0 0 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox .mce-btn {
|
||
border-left: 0;
|
||
-webkit-border-radius: 0 4px 4px 0;
|
||
border-radius: 0 4px 4px 0;
|
||
background-color: #C5C5C5;
|
||
-webkit-box-shadow: #aaaaaa 0 -2px 0 inset;
|
||
box-shadow: #aaaaaa 0 -2px 0 inset;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox button {
|
||
height: 26px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-combobox.mce-disabled .mce-btn button {
|
||
cursor: default;
|
||
box-shadow: none;
|
||
opacity: 0.4;
|
||
filter: alpha(opacity=40);
|
||
zoom: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
padding: 8px;
|
||
white-space: normal;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path .mce-txt {
|
||
display: inline-block;
|
||
padding-right: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path .mce-path-body {
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path-item {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
cursor: pointer;
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path-item:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path-item:focus {
|
||
background: #666;
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-path .mce-divider {
|
||
display: inline;
|
||
}
|
||
|
||
.custom_bootstrap .mce-disabled .mce-path-item {
|
||
color: #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-path {
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fieldset {
|
||
border: 0 solid #9E9E9E;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fieldset > .mce-container-body {
|
||
margin-top: -15px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fieldset-title {
|
||
margin-left: 5px;
|
||
padding: 0 5px 0 5px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fit-layout {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
}
|
||
|
||
.custom_bootstrap .mce-fit-layout-item {
|
||
position: absolute;
|
||
}
|
||
|
||
.custom_bootstrap .mce-flow-layout-item {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
margin: 2px 0 2px 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-flow-layout-item.mce-last {
|
||
margin-right: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-flow-layout {
|
||
white-space: normal;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tinymce-inline .mce-flow-layout {
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-flow-layout {
|
||
text-align: right;
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-flow-layout-item {
|
||
margin: 2px 2px 2px 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-flow-layout-item.mce-last {
|
||
margin-left: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-iframe {
|
||
border: 0 solid #9e9e9e;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .mce-label {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
border: 0;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .mce-label.mce-autoscroll {
|
||
overflow: auto;
|
||
}
|
||
|
||
.custom_bootstrap .mce-label.mce-disabled {
|
||
color: #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .mce-label.mce-multiline {
|
||
white-space: pre-wrap;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-label {
|
||
text-align: right;
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubar {
|
||
border: 1px solid #EEEEEE;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubar .mce-menubtn {
|
||
border-color: transparent;
|
||
background: transparent;
|
||
border-radius: 0;
|
||
box-shadow: none;
|
||
filter: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubar .mce-menubtn button span {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubar .mce-caret {
|
||
border-top-color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubar .mce-menubtn:hover, .custom_bootstrap .mce-menubar .mce-menubtn.mce-active, .custom_bootstrap .mce-menubar .mce-menubtn:focus {
|
||
border-color: transparent;
|
||
background: #e6e6e6;
|
||
filter: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubtn.mce-disabled span {
|
||
color: #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubtn span {
|
||
color: #333;
|
||
margin-right: 2px;
|
||
line-height: 20px;
|
||
*line-height: 16px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubtn.mce-btn-small span {
|
||
font-size: 12px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubtn.mce-fixed-width span {
|
||
display: inline-block;
|
||
overflow-x: hidden;
|
||
text-overflow: ellipsis;
|
||
width: 90px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubtn.mce-fixed-width.mce-btn-small span {
|
||
width: 70px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menubtn .mce-caret {
|
||
*margin-top: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-menubtn button {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .mce-listbox button {
|
||
text-align: left;
|
||
padding-right: 20px;
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .mce-listbox .mce-caret {
|
||
position: absolute;
|
||
margin-top: -2px;
|
||
right: 8px;
|
||
top: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-listbox .mce-caret {
|
||
right: auto;
|
||
left: 8px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-listbox button {
|
||
padding-right: 10px;
|
||
padding-left: 20px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item {
|
||
display: block;
|
||
padding: 6px 15px 6px 12px;
|
||
clear: both;
|
||
font-weight: normal;
|
||
line-height: 20px;
|
||
color: #333;
|
||
white-space: nowrap;
|
||
cursor: pointer;
|
||
line-height: normal;
|
||
border-left: 4px solid transparent;
|
||
margin-bottom: 1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item .mce-ico, .custom_bootstrap .mce-menu-item .mce-text {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item.mce-disabled .mce-text, .custom_bootstrap .mce-menu-item.mce-disabled .mce-ico {
|
||
color: #adadad;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item:hover .mce-text, .custom_bootstrap .mce-menu-item.mce-selected .mce-text, .custom_bootstrap .mce-menu-item:hover .mce-ico, .custom_bootstrap .mce-menu-item.mce-selected .mce-ico, .custom_bootstrap .mce-menu-item:focus .mce-ico {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item.mce-disabled:hover {
|
||
background: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-shortcut {
|
||
display: inline-block;
|
||
color: #adadad;
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
padding: 0 15px 0 20px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item:hover .mce-menu-shortcut, .custom_bootstrap .mce-menu-item.mce-selected .mce-menu-shortcut, .custom_bootstrap .mce-menu-item:focus .mce-menu-shortcut {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item .mce-caret {
|
||
margin-top: 4px;
|
||
*margin-top: 3px;
|
||
margin-right: 6px;
|
||
border-top: 4px solid transparent;
|
||
border-bottom: 4px solid transparent;
|
||
border-left: 4px solid #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item.mce-selected .mce-caret, .custom_bootstrap .mce-menu-item:focus .mce-caret, .custom_bootstrap .mce-menu-item:hover .mce-caret {
|
||
border-left-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-align .mce-menu-shortcut {
|
||
*margin-top: -2px;
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-align .mce-caret {
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item.mce-active i {
|
||
visibility: visible;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item-normal.mce-active {
|
||
background-color: #c8def4;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item-preview.mce-active {
|
||
border-left: 5px solid #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item-normal.mce-active .mce-text {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item-normal.mce-active:hover .mce-text, .custom_bootstrap .mce-menu-item-normal.mce-active:hover .mce-ico {
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-item:hover, .custom_bootstrap .mce-menu-item.mce-selected, .custom_bootstrap .mce-menu-item:focus {
|
||
text-decoration: none;
|
||
color: #fff;
|
||
background-color: #0081c2;
|
||
}
|
||
|
||
.custom_bootstrap div.mce-menu .mce-menu-item-sep, .custom_bootstrap .mce-menu-item-sep:hover {
|
||
border: 0;
|
||
padding: 0;
|
||
height: 1px;
|
||
margin: 9px 1px;
|
||
overflow: hidden;
|
||
background: #cbcbcb;
|
||
border-bottom: 1px solid #fff;
|
||
cursor: default;
|
||
filter: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu.mce-rtl {
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-menu-item {
|
||
text-align: right;
|
||
direction: rtl;
|
||
padding: 6px 12px 6px 15px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-align.mce-rtl .mce-menu-shortcut, .custom_bootstrap .mce-menu-align.mce-rtl .mce-caret {
|
||
right: auto;
|
||
left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-menu-item .mce-caret {
|
||
margin-left: 6px;
|
||
margin-right: 0;
|
||
border-right: 4px solid #333;
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-menu-item.mce-selected .mce-caret, .custom_bootstrap .mce-rtl .mce-menu-item:focus .mce-caret, .custom_bootstrap .mce-rtl .mce-menu-item:hover .mce-caret {
|
||
border-left-color: transparent;
|
||
border-right-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
background: transparent;
|
||
z-index: 1000;
|
||
padding: 5px 0 5px 0;
|
||
margin: 2px 0 0;
|
||
min-width: 160px;
|
||
background: #fff;
|
||
border: 1px solid #989898;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
z-index: 1002;
|
||
border-radius: 6px;
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
max-height: 400px;
|
||
overflow: auto;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu i {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-has-icons i {
|
||
display: inline-block;
|
||
*display: inline;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-sub-tr-tl {
|
||
margin: -6px 0 0 -1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-sub-br-bl {
|
||
margin: 6px 0 0 -1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-sub-tl-tr {
|
||
margin: -6px 0 0 1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-menu-sub-bl-br {
|
||
margin: 6px 0 0 1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container-body .mce-resizehandle {
|
||
position: absolute;
|
||
right: 0;
|
||
bottom: 0;
|
||
width: 16px;
|
||
height: 16px;
|
||
visibility: visible;
|
||
cursor: s-resize;
|
||
margin: 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-container-body .mce-resizehandle-both {
|
||
cursor: se-resize;
|
||
}
|
||
|
||
.custom_bootstrap i.mce-i-resize {
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-spacer {
|
||
visibility: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .mce-splitbtn .mce-open {
|
||
border-left: 1px solid transparent;
|
||
border-right: 1px solid transparent;
|
||
}
|
||
|
||
.custom_bootstrap .mce-splitbtn button {
|
||
padding-right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-splitbtn .mce-open {
|
||
padding-left: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-splitbtn .mce-open.mce-active {
|
||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.custom_bootstrap .mce-splitbtn.mce-btn-small .mce-open {
|
||
padding: 0 3px 0 3px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-splitbtn {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-splitbtn button {
|
||
padding-right: 10px;
|
||
padding-left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-splitbtn .mce-open {
|
||
padding-left: 4px;
|
||
padding-right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-stack-layout-item {
|
||
display: block;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tabs {
|
||
display: block;
|
||
border-bottom: 1px solid #c5c5c5;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tab {
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
border: 1px solid #c5c5c5;
|
||
border-width: 0 1px 0 0;
|
||
background: #e3e3e3;
|
||
padding: 8px;
|
||
height: 13px;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tab:hover {
|
||
background: #fdfdfd;
|
||
}
|
||
|
||
.custom_bootstrap .mce-tab.mce-active {
|
||
background: #fdfdfd;
|
||
border-bottom-color: transparent;
|
||
margin-bottom: -1px;
|
||
height: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-tabs {
|
||
text-align: right;
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-tab {
|
||
border-width: 0 0 0 1px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-textbox {
|
||
background: #fff;
|
||
border: 1px solid #c5c5c5;
|
||
border-radius: 3px;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
display: inline-block;
|
||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
height: 28px;
|
||
resize: none;
|
||
padding: 0 4px 0 4px;
|
||
white-space: pre-wrap;
|
||
*white-space: pre;
|
||
color: #333;
|
||
}
|
||
|
||
.custom_bootstrap .mce-textbox:focus, .custom_bootstrap .mce-textbox.mce-focus {
|
||
border-color: rgba(82, 168, 236, 0.8);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.65);
|
||
}
|
||
|
||
.custom_bootstrap .mce-placeholder .mce-textbox {
|
||
color: #aaa;
|
||
}
|
||
|
||
.custom_bootstrap .mce-textbox.mce-multiline {
|
||
padding: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-textbox.mce-disabled {
|
||
color: #adadad;
|
||
}
|
||
|
||
.custom_bootstrap .mce-rtl .mce-textbox {
|
||
text-align: right;
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .mce-throbber {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
opacity: 0.6;
|
||
filter: alpha(opacity=60);
|
||
zoom: 1;
|
||
background: white url("img/loader.gif") no-repeat center center;
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-none {
|
||
width: 16px;
|
||
height: 16px;
|
||
margin: 2px 0;
|
||
}
|
||
|
||
.custom_bootstrap .mce-ico {
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-save:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-newdocument:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-fullpage:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-alignleft:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-aligncenter:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-alignright:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-alignjustify:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-cut:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-paste:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-searchreplace:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-bullist:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-numlist:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-indent:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-outdent:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-blockquote:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-undo:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-redo:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-link:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-unlink:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-anchor:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-image:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-media:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-help:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-code:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-inserttime:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-preview:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-forecolor:before, .custom_bootstrap .mce-i-backcolor:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-table:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-hr:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-removeformat:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-subscript:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-superscript:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-charmap:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-emoticons:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-print:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-fullscreen:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-spellchecker:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-nonbreaking:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-template:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-pagebreak:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-restoredraft:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-untitled:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-bold:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-italic:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-underline:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-strikethrough:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-visualchars:before, .custom_bootstrap .mce-i-visualblocks:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-ltr:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-rtl:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-copy:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-resize:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-browse:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-pastetext:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-checkbox:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-selected {
|
||
visibility: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .mce-i-selected:before {
|
||
content: "";
|
||
}
|
||
|
||
.custom_bootstrap i.mce-i-backcolor {
|
||
background: #bbb;
|
||
}
|
||
|
||
.custom_bootstrap #growls {
|
||
z-index: 50000;
|
||
position: fixed;
|
||
}
|
||
|
||
.custom_bootstrap #growls.default {
|
||
top: 100px;
|
||
right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #growls.tl {
|
||
top: 10px;
|
||
left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #growls.tr {
|
||
top: 10px;
|
||
right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #growls.bl {
|
||
bottom: 10px;
|
||
left: 10px;
|
||
}
|
||
|
||
.custom_bootstrap #growls.br {
|
||
bottom: 10px;
|
||
right: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .growl {
|
||
opacity: 1;
|
||
position: relative;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
-webkit-transition: all 0.4s ease-in-out;
|
||
-o-transition: all 0.4s ease-in-out;
|
||
transition: all 0.4s ease-in-out;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-incoming {
|
||
opacity: 0;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-outgoing {
|
||
opacity: 0;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-small {
|
||
width: 200px;
|
||
padding: 5px;
|
||
margin: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-medium {
|
||
width: 250px;
|
||
padding: 10px;
|
||
margin: 10px;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-large {
|
||
width: 300px;
|
||
padding: 15px;
|
||
margin: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-default {
|
||
color: #FFF;
|
||
background: gray;
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-error {
|
||
color: white;
|
||
background: rgba(224, 143, 149, 0.8);
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-notice {
|
||
color: white;
|
||
background: rgba(114, 194, 121, 0.8);
|
||
}
|
||
|
||
.custom_bootstrap .growl.growl-warning {
|
||
color: white;
|
||
background: rgba(251, 187, 34, 0.8);
|
||
}
|
||
|
||
.custom_bootstrap .growl .growl-close {
|
||
cursor: pointer;
|
||
font-size: 14px;
|
||
line-height: 18px;
|
||
font-weight: normal;
|
||
font-family: helvetica, verdana, sans-serif;
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap .growl .growl-title {
|
||
font-size: 18px;
|
||
line-height: 24px;
|
||
}
|
||
|
||
.custom_bootstrap .growl .growl-message {
|
||
font-size: 14px;
|
||
line-height: 18px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-select {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-select-deselect {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container {
|
||
display: inline-block;
|
||
font-size: 12px;
|
||
position: relative;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-drop {
|
||
background: #F5F8F9;
|
||
border: 1px solid #999999;
|
||
border-top-color: #d9d9d9;
|
||
margin-top: -1px;
|
||
position: absolute;
|
||
top: 100%;
|
||
z-index: 1060;
|
||
left: -9000px;
|
||
border-bottom-right-radius: 3px;
|
||
border-bottom-left-radius: 3px;
|
||
-webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
|
||
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container.chosen-with-drop .chosen-drop {
|
||
left: 0;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results {
|
||
color: #555555;
|
||
max-height: 240px;
|
||
position: relative;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
-webkit-overflow-scrolling: touch;
|
||
padding: 0 0 0 4px;
|
||
margin: 0 4px 4px 0;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li {
|
||
display: none;
|
||
line-height: 1.42857;
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 5px 6px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li em {
|
||
background: #feffde;
|
||
font-style: normal;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li.group-result {
|
||
display: list-item;
|
||
cursor: default;
|
||
color: #999;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li.group-option {
|
||
padding-left: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li.active-result {
|
||
cursor: pointer;
|
||
display: list-item;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li.highlighted {
|
||
background-color: #00aff0;
|
||
color: white;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li.highlighted em {
|
||
background: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results li.disabled-result {
|
||
display: list-item;
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results .no-results {
|
||
background: #eeeeee;
|
||
display: list-item;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results-scroll {
|
||
background: white;
|
||
margin: 0 4px;
|
||
position: absolute;
|
||
text-align: center;
|
||
width: 321px;
|
||
z-index: 1;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results-scroll span {
|
||
display: inline-block;
|
||
height: 1.42857;
|
||
text-indent: -5000px;
|
||
width: 9px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results-scroll-down {
|
||
bottom: 0;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results-scroll-down span {
|
||
background: url("../img/chosen-sprite.png") no-repeat -4px -3px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container .chosen-results-scroll-up span {
|
||
background: url("../img/chosen-sprite.png") no-repeat -22px -3px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single {
|
||
background-color: #F5F8F9;
|
||
border: 1px solid #C7D6DB;
|
||
color: #555555;
|
||
display: block;
|
||
height: 31px;
|
||
overflow: hidden;
|
||
line-height: 31px;
|
||
position: relative;
|
||
text-decoration: none;
|
||
white-space: nowrap;
|
||
padding: 0 0 0 8px;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
-webkit-border-radius: 3px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single:hover {
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single:span {
|
||
display: block;
|
||
margin-right: 26px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single:abbr {
|
||
background: url("../img/chosen-sprite.png") right top no-repeat;
|
||
display: block;
|
||
font-size: 1px;
|
||
height: 10px;
|
||
position: absolute;
|
||
top: 10.5px;
|
||
width: 12px;
|
||
right: 26px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single:abbr:hover {
|
||
background-position: right -11px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover {
|
||
background-position: right 2px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single div {
|
||
display: block;
|
||
height: 100%;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 18px;
|
||
right: 0;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-single div b {
|
||
font-size: 14px;
|
||
text-align: center;
|
||
line-height: 28px;
|
||
display: block;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-default {
|
||
color: #999999;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-search {
|
||
margin: 0;
|
||
padding: 3px 4px;
|
||
position: relative;
|
||
white-space: nowrap;
|
||
z-index: 1000;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-search input {
|
||
border: 1px solid #C7D6DB;
|
||
margin: 1px 0;
|
||
width: 100%;
|
||
padding: 4px 20px 4px 4px;
|
||
border-top-right-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
border-bottom-left-radius: 3px;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-search:before {
|
||
color: #00aff0;
|
||
position: absolute;
|
||
font-size: 14px;
|
||
text-align: center;
|
||
display: block;
|
||
line-height: 22px;
|
||
height: 22px;
|
||
width: 22px;
|
||
top: 7px;
|
||
right: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single .chosen-drop {
|
||
margin-top: -1px;
|
||
-webkit-background-clip: padding-box;
|
||
-moz-background-clip: padding;
|
||
background-clip: padding-box;
|
||
border-bottom-right-radius: 3px;
|
||
border-bottom-left-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-single-nosearch .chosen-search input {
|
||
position: absolute;
|
||
left: -9000px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices {
|
||
background-color: #F5F8F9;
|
||
border: 1px solid #C7D6DB;
|
||
cursor: text;
|
||
height: auto !important;
|
||
height: 1%;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
position: relative;
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices li {
|
||
list-style: none;
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-field {
|
||
margin: 0;
|
||
padding: 0;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-field input {
|
||
background: transparent !important;
|
||
border: 0 !important;
|
||
color: #555555;
|
||
height: 29px;
|
||
margin: 0;
|
||
padding: 4px;
|
||
outline: 0;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-field .default {
|
||
color: #999;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-choice {
|
||
-webkit-background-clip: padding-box;
|
||
-moz-background-clip: padding;
|
||
background-clip: padding-box;
|
||
background-color: #eeeeee;
|
||
border: 1px solid #C7D6DB;
|
||
color: #333333;
|
||
cursor: default;
|
||
line-height: 13px;
|
||
position: relative;
|
||
margin: 6px 0 3px 5px;
|
||
padding: 3px 20px 3px 5px;
|
||
border-top-right-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
border-bottom-left-radius: 3px;
|
||
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 100%);
|
||
background-image: -o-linear-gradient(top, white 0%, #eeeeee 100%);
|
||
background-image: linear-gradient(to bottom, white 0%, #eeeeee 100%);
|
||
background-repeat: repeat-x;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
|
||
background: url("../img/chosen-sprite.png") right top no-repeat;
|
||
display: block;
|
||
font-size: 1px;
|
||
height: 10px;
|
||
position: absolute;
|
||
top: 5px;
|
||
width: 12px;
|
||
right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-choice .search-choice-close:hover {
|
||
background-position: right -11px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-choice-focus {
|
||
background: #d4d4d4;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-choices .search-choice-focus .search-choice-close {
|
||
background-position: right -11px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-results {
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-multi .chosen-drop .result-selected {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-active .chosen-single {
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-active.chosen-with-drop .chosen-single {
|
||
background-color: #eeeeee;
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-active.chosen-with-drop .chosen-single div {
|
||
background: transparent;
|
||
border-left: none;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-active.chosen-with-drop .chosen-single div b {
|
||
background-position: -18px 7px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-active .chosen-choices {
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-container-active .chosen-choices .search-field input {
|
||
color: #111 !important;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-disabled {
|
||
cursor: default;
|
||
opacity: 0.5 !important;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-disabled .chosen-single {
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-disabled .chosen-choices .search-choice .search-choice-close {
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl {
|
||
text-align: right;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-single {
|
||
padding: 0 8px 0 0;
|
||
overflow: visible;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-single span {
|
||
margin-left: 26px;
|
||
margin-right: 0;
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-single div {
|
||
left: 7px;
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-single abbr {
|
||
left: 26px;
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-choices .search-field input {
|
||
direction: rtl;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-choices li {
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-choices .search-choice {
|
||
margin: 6px 5px 3px 0;
|
||
padding: 3px 5px 3px 19px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-choices .search-choice .search-choice-close {
|
||
background-position: right top;
|
||
left: 4px;
|
||
right: auto;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl.chosen-container-single .chosen-results {
|
||
margin: 0 0 4px 4px;
|
||
padding: 0 4px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-results .group-option {
|
||
padding-left: 0;
|
||
padding-right: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
|
||
border-right: none;
|
||
}
|
||
|
||
.custom_bootstrap .chosen-rtl .chosen-search input {
|
||
background: url("../img/chosen-sprite.png") no-repeat -28px -20px, #F5F8F9;
|
||
direction: rtl;
|
||
padding: 4px 5px 4px 20px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button .ladda-spinner {
|
||
position: absolute;
|
||
z-index: 2;
|
||
display: inline-block;
|
||
width: 32px;
|
||
height: 32px;
|
||
top: 50%;
|
||
margin-top: -16px;
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button .ladda-label {
|
||
position: relative;
|
||
z-index: 3;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button .ladda-progress {
|
||
position: absolute;
|
||
width: 0;
|
||
height: 100%;
|
||
top: 0;
|
||
background: rgba(0, 0, 0, 0.2);
|
||
visibility: hidden;
|
||
opacity: 0;
|
||
left: 0;
|
||
-webkit-transition: 0.1s linear all !important;
|
||
-moz-transition: 0.1s linear all !important;
|
||
-ms-transition: 0.1s linear all !important;
|
||
-o-transition: 0.1s linear all !important;
|
||
transition: 0.1s linear all !important;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button .ladda-progress[data-loading] .ladda-progress {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button, .custom_bootstrap .ladda-button .ladda-spinner, .custom_bootstrap .ladda-button .ladda-label {
|
||
-webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) background-color !important;
|
||
-moz-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) background-color !important;
|
||
-ms-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) background-color !important;
|
||
-o-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) background-color !important;
|
||
transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) background-color !important;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in],
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in] .ladda-spinner,
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in] .ladda-label,
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out],
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out] .ladda-spinner,
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out] .ladda-label {
|
||
-webkit-transition: 0.3s ease all !important;
|
||
-moz-transition: 0.3s ease all !important;
|
||
-ms-transition: 0.3s ease all !important;
|
||
-o-transition: 0.3s ease all !important;
|
||
transition: 0.3s ease all !important;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-right] .ladda-spinner {
|
||
right: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-right][data-size="s"] .ladda-spinner, .custom_bootstrap .ladda-button[data-style=expand-right][data-size="xs"] .ladda-spinner {
|
||
right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-right][data-loading] {
|
||
padding-right: 56px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-right][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-right][data-loading][data-size="s"], .custom_bootstrap .ladda-button[data-style=expand-right][data-loading][data-size="xs"] {
|
||
padding-right: 40px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-left] .ladda-spinner {
|
||
left: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-left][data-size="s"] .ladda-spinner, .custom_bootstrap .ladda-button[data-style=expand-left][data-size="xs"] .ladda-spinner {
|
||
left: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-left][data-loading] {
|
||
padding-left: 56px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-left][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-left][data-loading][data-size="s"], .custom_bootstrap .ladda-button[data-style=expand-left][data-loading][data-size="xs"] {
|
||
padding-left: 40px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-up] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-up] .ladda-spinner {
|
||
top: -32px;
|
||
margin-left: -16px;
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-up][data-loading] {
|
||
padding-top: 54px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-up][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
top: 14px;
|
||
margin-top: 0;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-up][data-loading][data-size="s"], .custom_bootstrap .ladda-button[data-style=expand-up][data-loading][data-size="xs"] {
|
||
padding-top: 32px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=expand-up][data-loading][data-size="s"] .ladda-spinner, .custom_bootstrap .ladda-button[data-style=expand-up][data-loading][data-size="xs"] .ladda-spinner {
|
||
top: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-left] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-left] .ladda-label {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-left] .ladda-spinner {
|
||
left: 100%;
|
||
margin-left: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-left][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
left: -100%;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-left][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-right] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-right] .ladda-label {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-right] .ladda-spinner {
|
||
right: 100%;
|
||
margin-left: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-right][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
left: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-right][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-up] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-up] .ladda-label {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-up] .ladda-spinner {
|
||
margin-top: 1em;
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-up][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
top: -1em;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-up][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
margin-top: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-down] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-down] .ladda-label {
|
||
position: relative;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-down] .ladda-spinner {
|
||
margin-top: -2em;
|
||
margin-left: -16px;
|
||
left: 50%;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-down][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
top: 1em;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=slide-down][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
margin-top: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
-webkit-transform: scale(2.5);
|
||
-moz-transform: scale(2.5);
|
||
-ms-transform: scale(2.5);
|
||
-o-transform: scale(2.5);
|
||
transform: scale(2.5);
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out] .ladda-label {
|
||
position: relative;
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
-webkit-transform: scale(0.5);
|
||
-moz-transform: scale(0.5);
|
||
-ms-transform: scale(0.5);
|
||
-o-transform: scale(0.5);
|
||
transform: scale(0.5);
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-out][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
-webkit-transform: none;
|
||
-moz-transform: none;
|
||
-ms-transform: none;
|
||
-o-transform: none;
|
||
transform: none;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in] {
|
||
overflow: hidden;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in] .ladda-spinner {
|
||
margin-left: -16px;
|
||
left: 50%;
|
||
-webkit-transform: scale(0.2);
|
||
-moz-transform: scale(0.2);
|
||
-ms-transform: scale(0.2);
|
||
-o-transform: scale(0.2);
|
||
transform: scale(0.2);
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in] .ladda-label {
|
||
position: relative;
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
-webkit-transform: scale(2.2);
|
||
-moz-transform: scale(2.2);
|
||
-ms-transform: scale(2.2);
|
||
-o-transform: scale(2.2);
|
||
transform: scale(2.2);
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=zoom-in][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
-webkit-transform: none;
|
||
-moz-transform: none;
|
||
-ms-transform: none;
|
||
-o-transform: none;
|
||
transform: none;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract] {
|
||
overflow: hidden;
|
||
width: 100px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract][data-loading] {
|
||
border-radius: 50%;
|
||
width: 52px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract-overlay] {
|
||
overflow: hidden;
|
||
width: 100px;
|
||
box-shadow: 0px 0px 0px 3000px transparent;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract-overlay] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract-overlay][data-loading] {
|
||
border-radius: 50%;
|
||
width: 52px;
|
||
box-shadow: 0px 0px 0px 3000px rgba(0, 0, 0, 0.8);
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract-overlay][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-style=contract-overlay][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[disabled], .custom_bootstrap .ladda-button[data-loading] {
|
||
border-color: rgba(0, 0, 0, 0.07);
|
||
cursor: default;
|
||
background-color: #999;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[disabled]:hover, .custom_bootstrap .ladda-button[data-loading]:hover {
|
||
cursor: default;
|
||
background-color: #999;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-size=xs] {
|
||
padding: 4px 8px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-size=xs] .ladda-label {
|
||
font-size: 0.7em;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-size=s] {
|
||
padding: 6px 10px;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-size=s] .ladda-label {
|
||
font-size: 0.9em;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-size=l] .ladda-label {
|
||
font-size: 1.2em;
|
||
}
|
||
|
||
.custom_bootstrap .ladda-button[data-size=xl] .ladda-label {
|
||
font-size: 1.5em;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker {
|
||
top: 0;
|
||
left: 0;
|
||
padding: 4px;
|
||
margin-top: 1px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker:before {
|
||
content: "";
|
||
display: inline-block !important;
|
||
border-left: 7px solid transparent;
|
||
border-right: 7px solid transparent;
|
||
border-bottom: 7px solid #ccc;
|
||
border-bottom-color: rgba(0, 0, 0, 0.2);
|
||
position: absolute;
|
||
top: -7px;
|
||
left: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker:after {
|
||
content: "";
|
||
display: inline-block !important;
|
||
border-left: 6px solid transparent;
|
||
border-right: 6px solid transparent;
|
||
border-bottom: 6px solid white;
|
||
position: absolute;
|
||
top: -6px;
|
||
left: 7px;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker .ui-datepicker-header {
|
||
background: transparent !important;
|
||
color: gray;
|
||
font-weight: normal;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker .ui-state-default {
|
||
background: transparent !important;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker .ui-state-highlight {
|
||
border: solid 1px #dac308 !important;
|
||
background: #FEFBE2 !important;
|
||
}
|
||
|
||
.custom_bootstrap .ui-datepicker .ui-state-active {
|
||
color: white !important;
|
||
background: #00aff0 !important;
|
||
border: solid 1px #008abd !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container {
|
||
margin: 0;
|
||
position: relative;
|
||
display: inline-block;
|
||
/* inline-block for ie7 */
|
||
zoom: 1;
|
||
*display: inline;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container,
|
||
.custom_bootstrap .select2-drop,
|
||
.custom_bootstrap .select2-search,
|
||
.custom_bootstrap .select2-search input {
|
||
/*
|
||
Force border-box so that % widths fit the parent
|
||
container without overlap because of margin/padding.
|
||
More Info : http://www.quirksmode.org/css/box.html
|
||
*/
|
||
-webkit-box-sizing: border-box;
|
||
/* webkit */
|
||
-moz-box-sizing: border-box;
|
||
/* firefox */
|
||
box-sizing: border-box;
|
||
/* css3 */
|
||
}
|
||
|
||
.custom_bootstrap .select2-container .select2-choice {
|
||
display: block;
|
||
height: 26px;
|
||
padding: 0 0 0 8px;
|
||
overflow: hidden;
|
||
position: relative;
|
||
border: 1px solid #aaa;
|
||
white-space: nowrap;
|
||
line-height: 26px;
|
||
color: #444;
|
||
text-decoration: none;
|
||
border-radius: 4px;
|
||
background-clip: padding-box;
|
||
-webkit-touch-callout: none;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
background-color: #fff;
|
||
background-image: linear-gradient(to top, #eee 0%, #fff 50%);
|
||
}
|
||
|
||
.custom_bootstrap .select2-container.select2-drop-above .select2-choice {
|
||
border-bottom-color: #aaa;
|
||
border-radius: 0 0 4px 4px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container.select2-allowclear .select2-choice .select2-chosen {
|
||
margin-right: 42px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container .select2-choice > .select2-chosen {
|
||
margin-right: 26px;
|
||
display: block;
|
||
overflow: hidden;
|
||
white-space: nowrap;
|
||
text-overflow: ellipsis;
|
||
float: none;
|
||
width: auto;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container .select2-choice abbr {
|
||
display: none;
|
||
width: 12px;
|
||
height: 12px;
|
||
position: absolute;
|
||
right: 24px;
|
||
top: 8px;
|
||
font-size: 1px;
|
||
text-decoration: none;
|
||
border: 0;
|
||
background: url("../img/select2.png") right top no-repeat;
|
||
cursor: pointer;
|
||
outline: 0;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container.select2-allowclear .select2-choice abbr {
|
||
display: inline-block;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container .select2-choice abbr:hover {
|
||
background-position: right -11px;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop-mask {
|
||
border: 0;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: fixed;
|
||
left: 0;
|
||
top: 0;
|
||
min-height: 100%;
|
||
min-width: 100%;
|
||
height: auto;
|
||
width: auto;
|
||
opacity: 0;
|
||
z-index: 9998;
|
||
/* styles required for IE to work */
|
||
background-color: #fff;
|
||
filter: alpha(opacity=0);
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop {
|
||
width: 100%;
|
||
margin-top: -1px;
|
||
position: absolute;
|
||
z-index: 9999;
|
||
top: 100%;
|
||
background: #fff;
|
||
color: #000;
|
||
border: 1px solid #ccc;
|
||
border-top: 0;
|
||
border-radius: 0 0 4px 4px;
|
||
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop.select2-drop-above {
|
||
margin-top: 1px;
|
||
border-top: 1px solid #aaa;
|
||
border-bottom: 0;
|
||
border-radius: 4px 4px 0 0;
|
||
-webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
|
||
box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop-active {
|
||
border-top: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop-auto-width {
|
||
border-top: 1px solid #aaa;
|
||
width: auto;
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop-auto-width .select2-search {
|
||
padding-top: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container .select2-choice .select2-arrow {
|
||
display: inline-block;
|
||
width: 18px;
|
||
height: 100%;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
border-left: 1px solid #ccc;
|
||
border-radius: 0 4px 4px 0;
|
||
background-clip: padding-box;
|
||
background-color: #EEEEEE;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container .select2-choice .select2-arrow b {
|
||
display: block;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: url("../img/select2.png") no-repeat 0 1px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-search {
|
||
display: inline-block;
|
||
width: 100%;
|
||
min-height: 26px;
|
||
margin: 0;
|
||
padding-top: 4px;
|
||
position: relative;
|
||
z-index: 10000;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .select2-search input {
|
||
width: 100%;
|
||
height: auto !important;
|
||
min-height: 26px;
|
||
padding: 4px 20px 4px 5px;
|
||
margin: 0;
|
||
outline: 0;
|
||
font-family: sans-serif;
|
||
font-size: 1em;
|
||
border: 1px solid #aaa;
|
||
border-radius: 0;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
background: #fff url("../img/select2.png") no-repeat 100% -22px;
|
||
background: url("../img/select2.png") no-repeat 100% -22px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-drop.select2-drop-above .select2-search input {
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-search input.select2-active {
|
||
background: #fff url("../img/select2-spinner.gif") no-repeat 100%;
|
||
background: url("../img/select2-spinner.gif") no-repeat 100%;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-active .select2-choice,
|
||
.custom_bootstrap .select2-container-active .select2-choices {
|
||
outline: none;
|
||
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.custom_bootstrap .select2-dropdown-open .select2-choice {
|
||
border-bottom-color: transparent;
|
||
-webkit-box-shadow: 0 1px 0 #fff inset;
|
||
box-shadow: 0 1px 0 #fff inset;
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
background-color: #eee;
|
||
}
|
||
|
||
.custom_bootstrap .select2-dropdown-open.select2-drop-above .select2-choice,
|
||
.custom_bootstrap .select2-dropdown-open.select2-drop-above .select2-choices {
|
||
border-top-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .select2-dropdown-open .select2-choice .select2-arrow {
|
||
background: transparent;
|
||
border-left: none;
|
||
filter: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-dropdown-open .select2-choice .select2-arrow b {
|
||
background-position: -18px 1px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-hidden-accessible {
|
||
border: 0;
|
||
clip: rect(0 0 0 0);
|
||
height: 1px;
|
||
margin: -1px;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
position: absolute;
|
||
width: 1px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results {
|
||
max-height: 200px;
|
||
padding: 0 0 0 4px !important;
|
||
margin: 4px 4px 4px 0 !important;
|
||
position: relative;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
-webkit-tap-highlight-color: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub {
|
||
margin: 0;
|
||
padding-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 20px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 40px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 60px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 80px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 100px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 110px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 120px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results li {
|
||
list-style: none;
|
||
display: list-item;
|
||
background-image: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results li.select2-result-with-children > .select2-result-label {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-result-label {
|
||
padding: 3px 7px 4px;
|
||
margin: 0;
|
||
cursor: pointer;
|
||
min-height: 1em;
|
||
-webkit-touch-callout: none;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-highlighted {
|
||
background: #3875d7;
|
||
color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results li em {
|
||
background: #feffde;
|
||
font-style: normal;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-highlighted em {
|
||
background: transparent;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-highlighted ul {
|
||
background: #fff;
|
||
color: #000;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-no-results,
|
||
.custom_bootstrap .select2-results .select2-searching,
|
||
.custom_bootstrap .select2-results .select2-selection-limit {
|
||
background: #f4f4f4;
|
||
display: list-item;
|
||
padding: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-disabled.select2-highlighted {
|
||
color: #666;
|
||
background: #f4f4f4;
|
||
display: list-item;
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-disabled {
|
||
background: #f4f4f4;
|
||
display: list-item;
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .select2-results .select2-selected {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-more-results.select2-active {
|
||
background: #f4f4f4 url("../img/select2-spinner.gif") no-repeat 100%;
|
||
}
|
||
|
||
.custom_bootstrap .select2-more-results {
|
||
background: #f4f4f4;
|
||
display: list-item;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container.select2-container-disabled .select2-choice {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border: 1px solid #ddd;
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container.select2-container-disabled .select2-choice .select2-arrow {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border-left: 0;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container.select2-container-disabled .select2-choice abbr {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices {
|
||
height: auto !important;
|
||
height: 1%;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: relative;
|
||
border: 1px solid #aaa;
|
||
cursor: text;
|
||
overflow: hidden;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.custom_bootstrap .select2-locked {
|
||
padding: 3px 5px 3px 5px !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices {
|
||
min-height: 26px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi.select2-container-active .select2-choices {
|
||
outline: none;
|
||
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices li {
|
||
float: left;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap html[dir="rtl"] .select2-container-multi .select2-choices li {
|
||
float: right;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-field {
|
||
margin: 0;
|
||
padding: 0;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-field input {
|
||
padding: 5px;
|
||
margin: 1px 0;
|
||
font-family: sans-serif;
|
||
font-size: 100%;
|
||
color: #666;
|
||
outline: 0;
|
||
border: 0;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
background: transparent !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-field input.select2-active {
|
||
background: #fff url("../img/select2-spinner.gif") no-repeat 100% !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-default {
|
||
color: #999 !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-choice {
|
||
padding: 3px 5px 3px 18px;
|
||
margin: 3px 0 3px 5px;
|
||
position: relative;
|
||
line-height: 13px;
|
||
color: #333;
|
||
cursor: default;
|
||
border: 1px solid #aaaaaa;
|
||
border-radius: 3px;
|
||
background-clip: padding-box;
|
||
-webkit-touch-callout: none;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
background-color: #e4e4e4;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
|
||
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
|
||
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
|
||
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
|
||
background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
|
||
}
|
||
|
||
.custom_bootstrap html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
|
||
margin-left: 0;
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-choice-focus {
|
||
background: #d4d4d4;
|
||
}
|
||
|
||
.custom_bootstrap .select2-search-choice-close {
|
||
display: block;
|
||
width: 12px;
|
||
height: 13px;
|
||
position: absolute;
|
||
right: 3px;
|
||
top: 4px;
|
||
font-size: 1px;
|
||
outline: none;
|
||
background: url("../img/select2.png") right top no-repeat;
|
||
}
|
||
|
||
.custom_bootstrap html[dir="rtl"] .select2-search-choice-close {
|
||
right: auto;
|
||
left: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-search-choice-close {
|
||
left: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
|
||
background-position: right -11px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
|
||
background-position: right -11px;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi.select2-container-disabled .select2-choices {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border: 1px solid #ddd;
|
||
cursor: default;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
|
||
padding: 3px 5px 3px 5px;
|
||
border: 1px solid #ddd;
|
||
background-image: none;
|
||
background-color: #f4f4f4;
|
||
}
|
||
|
||
.custom_bootstrap .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
|
||
display: none;
|
||
background: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-result-selectable .select2-match,
|
||
.custom_bootstrap .select2-result-unselectable .select2-match {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.custom_bootstrap .select2-offscreen, .custom_bootstrap .select2-offscreen:focus {
|
||
clip: rect(0 0 0 0) !important;
|
||
width: 1px !important;
|
||
height: 1px !important;
|
||
border: 0 !important;
|
||
margin: 0 !important;
|
||
padding: 0 !important;
|
||
overflow: hidden !important;
|
||
position: absolute !important;
|
||
outline: 0 !important;
|
||
left: 0px !important;
|
||
top: 0px !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-display-none {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap .select2-measure-scrollbar {
|
||
position: absolute;
|
||
top: -10000px;
|
||
left: -10000px;
|
||
width: 100px;
|
||
height: 100px;
|
||
overflow: scroll;
|
||
}
|
||
|
||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
|
||
.custom_bootstrap .select2-search input,
|
||
.custom_bootstrap .select2-search-choice-close,
|
||
.custom_bootstrap .select2-container .select2-choice abbr,
|
||
.custom_bootstrap .select2-container .select2-choice .select2-arrow b {
|
||
background-image: url("../img/select2x2.png") !important;
|
||
background-repeat: no-repeat !important;
|
||
background-size: 60px 40px !important;
|
||
}
|
||
|
||
.custom_bootstrap .select2-search input {
|
||
background-position: 100% -21px !important;
|
||
}
|
||
}
|
||
|
||
.custom_bootstrap .form-control .select2-choice, .custom_bootstrap input[type="text"] .select2-choice, .custom_bootstrap input[type="search"] .select2-choice, .custom_bootstrap input[type="password"] .select2-choice, .custom_bootstrap textarea .select2-choice, .custom_bootstrap select .select2-choice {
|
||
border: 0;
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.custom_bootstrap .form-control .select2-choice .select2-arrow, .custom_bootstrap input[type="text"] .select2-choice .select2-arrow, .custom_bootstrap input[type="search"] .select2-choice .select2-arrow, .custom_bootstrap input[type="password"] .select2-choice .select2-arrow, .custom_bootstrap textarea .select2-choice .select2-arrow, .custom_bootstrap select .select2-choice .select2-arrow {
|
||
border-radius: 0 2px 2px 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-control.select2-container, .custom_bootstrap input.select2-container[type="text"], .custom_bootstrap input.select2-container[type="search"], .custom_bootstrap input.select2-container[type="password"], .custom_bootstrap textarea.select2-container, .custom_bootstrap select.select2-container {
|
||
height: auto !important;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-control.select2-container.select2-dropdown-open, .custom_bootstrap input.select2-container.select2-dropdown-open[type="text"], .custom_bootstrap input.select2-container.select2-dropdown-open[type="search"], .custom_bootstrap input.select2-container.select2-dropdown-open[type="password"], .custom_bootstrap textarea.select2-container.select2-dropdown-open, .custom_bootstrap select.select2-container.select2-dropdown-open {
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-control .select2-container.select2-dropdown-open .select2-choices, .custom_bootstrap input[type="text"] .select2-container.select2-dropdown-open .select2-choices, .custom_bootstrap input[type="search"] .select2-container.select2-dropdown-open .select2-choices, .custom_bootstrap input[type="password"] .select2-container.select2-dropdown-open .select2-choices, .custom_bootstrap textarea .select2-container.select2-dropdown-open .select2-choices, .custom_bootstrap select .select2-container.select2-dropdown-open .select2-choices {
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
|
||
.custom_bootstrap .form-control.select2-container .select2-choices, .custom_bootstrap input.select2-container[type="text"] .select2-choices, .custom_bootstrap input.select2-container[type="search"] .select2-choices, .custom_bootstrap input.select2-container[type="password"] .select2-choices, .custom_bootstrap textarea.select2-container .select2-choices, .custom_bootstrap select.select2-container .select2-choices {
|
||
border: 0 !important;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.warning .select2-container .select2-choice,
|
||
.custom_bootstrap .control-group.warning .select2-container .select2-choices,
|
||
.custom_bootstrap .control-group.warning .select2-container-active .select2-choice,
|
||
.custom_bootstrap .control-group.warning .select2-container-active .select2-choices,
|
||
.custom_bootstrap .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice,
|
||
.custom_bootstrap .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices,
|
||
.custom_bootstrap .control-group.warning .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #C09853 !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.warning .select2-container .select2-choice div {
|
||
border-left: 1px solid #C09853 !important;
|
||
background: #FCF8E3 !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.error .select2-container .select2-choice,
|
||
.custom_bootstrap .control-group.error .select2-container .select2-choices,
|
||
.custom_bootstrap .control-group.error .select2-container-active .select2-choice,
|
||
.custom_bootstrap .control-group.error .select2-container-active .select2-choices,
|
||
.custom_bootstrap .control-group.error .select2-dropdown-open.select2-drop-above .select2-choice,
|
||
.custom_bootstrap .control-group.error .select2-dropdown-open.select2-drop-above .select2-choices,
|
||
.custom_bootstrap .control-group.error .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #B94A48 !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.error .select2-container .select2-choice div {
|
||
border-left: 1px solid #B94A48 !important;
|
||
background: #F2DEDE !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.info .select2-container .select2-choice,
|
||
.custom_bootstrap .control-group.info .select2-container .select2-choices,
|
||
.custom_bootstrap .control-group.info .select2-container-active .select2-choice,
|
||
.custom_bootstrap .control-group.info .select2-container-active .select2-choices,
|
||
.custom_bootstrap .control-group.info .select2-dropdown-open.select2-drop-above .select2-choice,
|
||
.custom_bootstrap .control-group.info .select2-dropdown-open.select2-drop-above .select2-choices,
|
||
.custom_bootstrap .control-group.info .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #3A87AD !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.info .select2-container .select2-choice div {
|
||
border-left: 1px solid #3A87AD !important;
|
||
background: #D9EDF7 !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.success .select2-container .select2-choice,
|
||
.custom_bootstrap .control-group.success .select2-container .select2-choices,
|
||
.custom_bootstrap .control-group.success .select2-container-active .select2-choice,
|
||
.custom_bootstrap .control-group.success .select2-container-active .select2-choices,
|
||
.custom_bootstrap .control-group.success .select2-dropdown-open.select2-drop-above .select2-choice,
|
||
.custom_bootstrap .control-group.success .select2-dropdown-open.select2-drop-above .select2-choices,
|
||
.custom_bootstrap .control-group.success .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #468847 !important;
|
||
}
|
||
|
||
.custom_bootstrap .control-group.success .select2-container .select2-choice div {
|
||
border-left: 1px solid #468847 !important;
|
||
background: #DFF0D8 !important;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap {
|
||
background-color: white;
|
||
min-width: 1200px;
|
||
padding: 100px 30px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap form p {
|
||
margin: 0.5em 0 0;
|
||
padding: 0 0 0.5em;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap fieldset {
|
||
background-color: #EBEDF4;
|
||
border: 1px solid #CCCED7;
|
||
color: #585A69;
|
||
margin: 0 0 10px 0;
|
||
padding: 1em;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap fieldset img {
|
||
padding: 0 4px 0 0;
|
||
vertical-align: bottom;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap legend {
|
||
background: #EBEDF4;
|
||
border: 1px solid #CCCED7;
|
||
font-weight: 700;
|
||
margin: 0;
|
||
padding: 0.2em 0.5em;
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap legend a {
|
||
color: #585984;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap label {
|
||
color: #585a69;
|
||
text-shadow: 0 1px 0 #fff;
|
||
float: left;
|
||
width: 250px;
|
||
padding: 0.2em 0.5em 0 0;
|
||
text-align: right;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap label.t {
|
||
float: none;
|
||
clear: none;
|
||
padding: 0 5px 0;
|
||
margin: 0px;
|
||
font-weight: normal;
|
||
font-size: 12px;
|
||
text-shadow: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap a {
|
||
color: #415260;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .pull-right, .custom_bootstrap .nobootstrap .pull-left {
|
||
float: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .clear {
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .margin-form {
|
||
padding: 0 0 1em 260px;
|
||
color: #7F7F7F;
|
||
font-size: 0.85em;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .button {
|
||
cursor: pointer;
|
||
background: -moz-linear-gradient(center top, #F9F9F9, #E3E3E3) repeat scroll 0 0 transparent;
|
||
background: -webkit-gradient(linear, center top, center bottom, from(#F9F9F9), to(#E3E3E3)) repeat scroll 0 0 transparent;
|
||
border-color: #CCCCCC #BBBBBB #A0A0A0;
|
||
border-left: 1px solid #BBBBBB;
|
||
border-radius: 3px 3px 3px 3px;
|
||
border-right: 1px solid #BBBBBB;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
color: #000000;
|
||
margin: 5px 0;
|
||
outline: medium none;
|
||
padding: 3px 8px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
text-shadow: 0 1px 0 #fff;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .button:hover {
|
||
border-color: #AAA #999 #888;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap input {
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap select {
|
||
border: 1px solid #ccc;
|
||
font-size: 12px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap input, .custom_bootstrap .nobootstrap textarea, .custom_bootstrap .nobootstrap option {
|
||
color: #000;
|
||
font-size: 12px;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap input[type="text"], .custom_bootstrap .nobootstrap input[type="password"], .custom_bootstrap .nobootstrap input[type="file"], .custom_bootstrap .nobootstrap textarea {
|
||
border: 1px solid #ccc;
|
||
background-color: #fff;
|
||
padding: 2px 4px;
|
||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table_grid {
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
padding: 0;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table th a {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table th a:hover {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr th {
|
||
background-color: #F1F1F1;
|
||
color: #333;
|
||
font-size: 13px;
|
||
padding: 4px 6px;
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr th.right {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr td {
|
||
border-bottom: 1px solid #ccc;
|
||
color: #333;
|
||
font-size: 12px;
|
||
padding: 4px 4px 4px 6px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr.row_hover.filter:hover td {
|
||
background: #F1F9FF;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr td.row_hover:hover table tr td {
|
||
background: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr.action_details td {
|
||
background: #FAFAFA;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr.alt_row.action_details td {
|
||
background: #E8E8E8;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr td.empty {
|
||
background: #FFF !important;
|
||
border-bottom: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr td.first {
|
||
border-left: 1px solid #DEDEDE;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr td.last {
|
||
border-right: 1px solid #DEDEDE;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr.small td {
|
||
height: 15px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr.last td {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .table tr .filter {
|
||
background-color: #f1f9ff;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .form-group {
|
||
clear: both;
|
||
margin-bottom: 1em;
|
||
float: left;
|
||
width: 100%;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .form-group > div {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) {
|
||
background-color: #EBEDF4;
|
||
border: 1px solid #CCCED7;
|
||
color: #585A69;
|
||
margin: 0 0 10px 0;
|
||
padding: 1em;
|
||
float: left;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) img {
|
||
padding: 0 4px 0 0;
|
||
vertical-align: bottom;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) h3 {
|
||
position: relative;
|
||
top: -25px;
|
||
display: inline-block;
|
||
background: #EBEDF4;
|
||
border: 1px solid #CCCED7;
|
||
font-weight: 700;
|
||
margin: 0;
|
||
padding: 0.2em 0.5em;
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) h3 a {
|
||
color: #585984;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) h3 i {
|
||
font-family: "FontAwesome";
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .help-block {
|
||
float: left;
|
||
clear: both;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .switch {
|
||
float: left;
|
||
clear: both;
|
||
line-height: 1.3em;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .switch label {
|
||
padding: 0 10px 0 5px;
|
||
float: left;
|
||
width: auto;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .switch input[type=checkbox], .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .switch input[type=radio] {
|
||
float: left;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .radio label {
|
||
clear: both;
|
||
width: auto;
|
||
margin-right: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) button {
|
||
cursor: pointer;
|
||
background: -moz-linear-gradient(center top, #F9F9F9, #E3E3E3) repeat scroll 0 0 transparent;
|
||
background: -webkit-gradient(linear, center top, center bottom, from(#F9F9F9), to(#E3E3E3)) repeat scroll 0 0 transparent;
|
||
border-color: #CCCCCC #BBBBBB #A0A0A0;
|
||
border-left: 1px solid #BBBBBB;
|
||
border-radius: 3px 3px 3px 3px;
|
||
border-right: 1px solid #BBBBBB;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
color: #000000;
|
||
margin: 5px 0;
|
||
outline: medium none;
|
||
padding: 3px 8px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
text-shadow: 0 1px 0 #fff;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) button:hover {
|
||
border-color: #AAA #999 #888;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree-panel-heading-controls {
|
||
font-size: 13px;
|
||
background-color: #DDE0E9;
|
||
margin: -8px -8px 20px;
|
||
padding: 5px;
|
||
border-bottom: solid 1px #DFDFDF;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree-panel-heading-controls a {
|
||
display: inline-block;
|
||
padding: 0 8px;
|
||
border-right: solid 1px #888;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree {
|
||
padding: 0 0 0 20px;
|
||
list-style: none;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree input {
|
||
vertical-align: baseline;
|
||
margin-right: 4px;
|
||
line-height: normal;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-item-name, .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-folder-name {
|
||
padding: 2px 5px;
|
||
-webkit-border-radius: 4px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-item-name label, .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-folder-name label {
|
||
font-size: 13px;
|
||
float: none;
|
||
text-shadow: none;
|
||
font-weight: 400;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-item-name:hover, .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-folder-name:hover {
|
||
background-color: #eee;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-selected {
|
||
background-color: #CCCED7;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-selected:hover {
|
||
background-color: #a1a5b5;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-selected i.tree-dot {
|
||
background-color: #eee;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-folder, .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-item {
|
||
margin: 3px 0;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree i.tree-dot {
|
||
display: inline-block;
|
||
position: relative;
|
||
width: 6px;
|
||
height: 6px;
|
||
margin: 0 4px;
|
||
background-color: #ccc;
|
||
-webkit-border-radius: 6px;
|
||
border-radius: 6px;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-item-disable, .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-folder-name-disable {
|
||
color: #ccc;
|
||
}
|
||
|
||
.custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-item-disable:hover, .custom_bootstrap .nobootstrap .panel:not(.custom_bootstrap) .tree .tree-folder-name-disable:hover {
|
||
color: #ccc;
|
||
background-color: none;
|
||
}
|
||
|
||
@media print {
|
||
.custom_bootstrap * {
|
||
color: #000 !important;
|
||
border-color: #000 !important;
|
||
background: transparent !important;
|
||
font-family: Georgia, "Times New Roman", Times, serif !important;
|
||
text-shadow: none !important;
|
||
-webkit-box-shadow: none !important;
|
||
box-shadow: none !important;
|
||
}
|
||
|
||
.custom_bootstrap [class^="icon-"], .custom_bootstrap [class^="process-icon-"] {
|
||
font-family: "FontAwesome" !important;
|
||
}
|
||
|
||
.custom_bootstrap #header, .custom_bootstrap #footer, .custom_bootstrap #nav-sidebar, .custom_bootstrap #nav-topbar, .custom_bootstrap .hidden-print {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap .visible-print {
|
||
display: block !important;
|
||
}
|
||
|
||
.custom_bootstrap hr {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #main {
|
||
width: 8.5in !important;
|
||
float: none !important;
|
||
margin: 0 auto !important;
|
||
padding: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content {
|
||
margin: 0 !important;
|
||
padding: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .page-head {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .panel {
|
||
page-break-inside: avoid !important;
|
||
clear: both !important;
|
||
margin: 0 0 40px !important;
|
||
padding: 0 !important;
|
||
border: none !important;
|
||
-webkit-box-shadow: none !important;
|
||
box-shadow: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .panel .panel-heading {
|
||
margin: 0 0 20px !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .panel .panel, .custom_bootstrap #main #content .panel .well {
|
||
margin: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .tab-pane {
|
||
margin-bottom: 20px !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .row, .custom_bootstrap #main #content .multishop-well {
|
||
margin-bottom: 20px !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .panel {
|
||
clear: both !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .btn {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .panel-heading-action {
|
||
display: none;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .nav-tabs li a {
|
||
display: none;
|
||
border-bottom-color: white !important;
|
||
background-color: white !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .tab-content > .tab-pane {
|
||
display: block !important;
|
||
opacity: 1 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content h4 {
|
||
margin: 0 0 10px 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content #shipping .form-horizontal {
|
||
padding-bottom: 10px !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content #addressShipping {
|
||
width: 49% !important;
|
||
float: left !important;
|
||
margin-bottom: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content #addressInvoice {
|
||
width: 49% !important;
|
||
float: right !important;
|
||
margin-bottom: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content #status tr:first-child td {
|
||
font-weight: bold !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .table {
|
||
border: solid 1px black !important;
|
||
margin-bottom: 10px !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .table th {
|
||
font-style: italic;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .label-inactive {
|
||
font-size: 11pt !important;
|
||
text-decoration: line-through !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .label-inactive i {
|
||
display: none !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .kpi-container.panel {
|
||
margin: 30px 0 20px 0 !important;
|
||
border: solid 1px black !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .kpi-container.panel .box-stats {
|
||
padding: 10px 0 !important;
|
||
height: auto !important;
|
||
width: 25% !important;
|
||
font-size: 8pt !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .kpi-container.panel .box-stats i {
|
||
font-size: 20pt !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .alert {
|
||
border: 1px solid black !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .alert:before {
|
||
color: black !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .table-responsive {
|
||
border: none !important;
|
||
margin: 0 !important;
|
||
}
|
||
|
||
.custom_bootstrap #main #content .panel-total td {
|
||
font-size: 13pt !important;
|
||
}
|
||
}
|
||
|
||
#content .alert {
|
||
border-top: 1px solid #fcc94f;
|
||
border-bottom: 1px solid #fcc94f;
|
||
}
|
||
|
||
#content .alert-info.alert {
|
||
border-top: 1px solid #4ac7e0;
|
||
border-bottom: 1px solid #4ac7e0;
|
||
padding-top: 15px;
|
||
padding-bottom: 15px;
|
||
background: #fff;
|
||
}
|
||
|
||
img.thumbnail {
|
||
max-width: 100% !important;
|
||
margin: 8px auto;
|
||
display: block;
|
||
}
|
||
|
||
#content .alert {
|
||
padding-left: 50px !important;
|
||
}
|
||
|
||
.custom_bootstrap .manager_link {
|
||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24437));
|
||
background: -moz-linear-gradient(top, #c62d1f 5%, #f24437 100%);
|
||
background: -webkit-linear-gradient(top, #c62d1f 5%, #f24437 100%);
|
||
background: -o-linear-gradient(top, #c62d1f 5%, #f24437 100%);
|
||
background: -ms-linear-gradient(top, #c62d1f 5%, #f24437 100%);
|
||
background: linear-gradient(to bottom, #c62d1f 5%, #f24437 100%);
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24437', GradientType=0);
|
||
background-color: #c62d1f;
|
||
}
|
||
|
||
#seosaproductlabels_form label {
|
||
width: auto;
|
||
}
|
||
|
||
#seosaproductlabels_form .table tr td {
|
||
border: 1px solid #ccc;
|
||
}
|
||
|
||
label {
|
||
text-shadow: none;
|
||
}
|
||
|
||
.button {
|
||
text-shadow: none !important;
|
||
}
|
||
|
||
.mode_search h3.panel-heading.panel-heading-top {
|
||
margin-top: 0 !important;
|
||
}
|
||
|
||
#createproducts fieldset {
|
||
background: none;
|
||
}
|
||
|
||
#createproducts form {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
}
|
||
|
||
#createproducts fieldset label {
|
||
text-align: left;
|
||
padding: 0 5px;
|
||
}
|
||
|
||
#createproducts fieldset label:first-of-type {
|
||
top: -10px;
|
||
position: relative;
|
||
}
|
||
|
||
#createproducts fieldset .margin-form {
|
||
display: inline-block;
|
||
padding: 0 5px;
|
||
}
|
||
|
||
#createproducts fieldset .margin-form .translatable {
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
|
||
#createproducts fieldset .margin-form .translatable .language_flags {
|
||
position: absolute;
|
||
right: -100px;
|
||
}
|
||
|
||
#createproducts fieldset .margin-form .lang_1,
|
||
#createproducts fieldset .margin-form select {
|
||
|
||
}
|
||
|
||
#createproducts .displayed_flag {
|
||
margin-top: 15px;
|
||
}
|
||
|
||
#createproducts .margin-form sup {
|
||
margin-top: 15px;
|
||
display: inline-block;
|
||
top: -20px;
|
||
}
|
||
|
||
#features .col-sm-6 .col-sm-6 {
|
||
width: 100%;
|
||
}
|
||
|
||
button,
|
||
html input[type="button"],
|
||
input[type="reset"],
|
||
input[type="submit"] {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.custom_bootstrap label {
|
||
text-align: left;
|
||
}
|
||
|
||
.custom_bootstrap .ps-switch label {
|
||
text-align: center;
|
||
}
|
||
|
||
.custom_responsive label {
|
||
/*font-size: 13px;*/
|
||
/*font-weight: normal;*/
|
||
/*color: #666;*/
|
||
/*line-height: 20px;*/
|
||
width: auto;
|
||
/*padding-right: 0;*/
|
||
/*float: none;*/
|
||
/*padding-top: 0;*/
|
||
/*margin-top: 15px;*/
|
||
}
|
||
|
||
.custom_responsive .ps-switch label {
|
||
width: 50%;
|
||
}
|
||
|
||
.tree_root .tree_toogle {
|
||
margin-top: 8px;
|
||
}
|
||
|
||
.displayed_flag {
|
||
margin-top: 15px;
|
||
padding: 9px;
|
||
}
|
||
|
||
.custom_bootstrap .prestashop-switch.switch-mode {
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.tab_container .tabs_content #features .row textarea {
|
||
margin-bottom: 15px;
|
||
}
|
||
|
||
#image {
|
||
padding: 0 15px;
|
||
border: none;
|
||
}
|
||
|
||
.custom_bootstrap [data-feature-btn] .btn {
|
||
padding: 6px 8px;
|
||
}
|
||
|
||
.custom_bootstrap .radio label, .custom_bootstrap .checkbox label {
|
||
padding-left: 20px;
|
||
}
|
||
|
||
@media (max-width: 767px) {
|
||
|
||
#createproducts fieldset label {
|
||
width: 100%;
|
||
}
|
||
|
||
#createproducts fieldset .margin-form {
|
||
width: 100%;
|
||
}
|
||
|
||
#createproducts fieldset .margin-form .lang_1,
|
||
#createproducts fieldset .margin-form select {
|
||
width: 100%;
|
||
}
|
||
|
||
.translatable .translatable-field {
|
||
width: 100%;
|
||
}
|
||
}
|
||
|
||
._row_copy .search_input .selected_product {
|
||
position: absolute;
|
||
right: 100%;
|
||
width: 200px;
|
||
top: 0;
|
||
} |