@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto");
/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.hinge {
  animation-duration: 2s; }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.animated.flash {
  animation-name: flash; }

@keyframes shake {
  0%, 100% {
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    transform: translateX(10px); } }

.animated.shake {
  animation-name: shake; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

.animated.bounce {
  animation-name: bounce; }

@keyframes tada {
  0% {
    transform: scale(1); }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg); }
  100% {
    transform: scale(1) rotate(0); } }

.animated.tada {
  animation-name: tada; }

@keyframes swing {
  20% {
    transform: rotate(15deg); }
  40% {
    transform: rotate(-10deg); }
  60% {
    transform: rotate(5deg); }
  80% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

.animated.swing {
  transform-origin: top center;
  animation-name: swing; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  0% {
    transform: translateX(0%); }
  15% {
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    transform: translateX(20%) rotate(3deg); }
  45% {
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    transform: translateX(10%) rotate(2deg); }
  75% {
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    transform: translateX(0%); } }

.animated.wobble {
  animation-name: wobble; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.animated.pulse {
  animation-name: pulse; }

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in; }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip; }

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    transform: perspective(400px) rotateX(10deg); }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

.animated.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

.animated.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important; }

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    transform: perspective(400px) rotateY(10deg); }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

.animated.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }

.animated.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.animated.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.animated.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.animated.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.animated.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.animated.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.animated.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.animated.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.animated.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.animated.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.animated.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-20px); } }

.animated.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(20px); } }

.animated.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-20px); } }

.animated.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(20px); } }

.animated.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.animated.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

.animated.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.animated.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.animated.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@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 slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  100% {
    transform: translateY(0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  100% {
    transform: translateX(0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  100% {
    transform: translateX(0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideOutLeft {
  0% {
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  0% {
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  0% {
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.slideOutUp {
  animation-name: slideOutUp; }

.animated.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    transform: translateY(-30px); }
  80% {
    transform: translateY(10px); }
  100% {
    transform: translateY(0); } }

.animated.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    transform: translateY(30px); }
  80% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0); } }

.animated.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    transform: translateX(30px); }
  80% {
    transform: translateX(-10px); }
  100% {
    transform: translateX(0); } }

.animated.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    transform: translateX(-30px); }
  80% {
    transform: translateX(10px); }
  100% {
    transform: translateX(0); } }

.animated.bounceInRight {
  animation-name: bounceInRight; }

@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); } }

.animated.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutUp {
  0% {
    transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(20px); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.animated.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes bounceOutDown {
  0% {
    transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

.animated.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0); }
  20% {
    opacity: 1;
    transform: translateX(20px); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.animated.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  0% {
    transform: translateX(0); }
  20% {
    opacity: 1;
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.animated.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1; } }

.animated.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }

.animated.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }

.animated.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; } }

.animated.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; } }

.animated.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0; } }

.animated.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0; } }

.animated.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; } }

.animated.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0; } }

.animated.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0; } }

.animated.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  100% {
    transform: translateY(700px);
    opacity: 0; } }

.animated.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); } }

.animated.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg); } }

.animated.rollOut {
  animation-name: rollOut; }

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

.animated.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

.animated.lightSpeedIn {
  animation-duration: 0.5s; }

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

.animated.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

.animated.lightSpeedOut {
  animation-duration: 0.25s; }

body {
  font: 100% "Roboto", sans-serif;
  color: #333333;
  background-color: #ffffff;
  font-size: 14px;
  font-family: "Roboto", sans-serif; }

h1 {
  font-size: 22px;
  display: inline-block;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  font-weight: 600; }

h2 {
  font-size: 20px; }

a:foucs {
  outline: 0 none; }

:focus {
  outline: none; }

a:selection,
a:-moz-selection,
a::-webkit-selection {
  background: transparent; }

.btn::selection {
  background: transparent; }

.btn::selection, a::selection {
  background: transparent; }

a::selection, .btn::selection {
  background: transparent; }

a::-moz-selection, .btn::-moz-selection {
  background: transparent; }

a::-o-selection, .btn::-o-selection {
  background: transparent; }

a:selection {
  background: transparent; }

.btn::selection {
  background: transparent; }

.btn.active.focus,
.btn.active:focus,
.btn.focus, .btn:active.focus,
.btn:active:focus,
.btn:focus,
.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover,
a, a:focus {
  outline: none; }

input[type="number"] {
  -moz-appearance: textfield; }

input[type="number"]:hover,
input[type="number"]:focus {
  appearance: number-input; }

input[type="number"] {
  position: relative;
  margin: 0 0 1rem;
  border: 1px solid #BBB;
  border-color: #BBB #ECECEC #ECECEC #BBB;
  padding: .2rem; }

.hiddenn {
  opacity: 0; }

.visible {
  opacity: 1; }

.no-project {
  width: 300px;
  margin: 0 auto; }

.ace_mmtag {
  color: #00cc00 !important; }

.sweet-alert.h2 {
  font-size: 17px !important; }

/* Spin Buttons modified */
input[type="number"].mod::-webkit-outer-spin-button,
input[type="number"].mod::-webkit-inner-spin-button {
  -webkit-appearance: none;
  background: #FFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKUlEQVQYlWNgwAT/sYhhKPiPT+F/LJgEsHv37v+EMGkmkuImoh2NoQAANlcun/q4OoYAAAAASUVORK5CYII=) no-repeat center center;
  width: 1em;
  border-left: 1px solid #BBB;
  opacity: .5;
  /* shows Spin Buttons per default (Chrome >= 39) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0; }

input[type="number"].mod::-webkit-inner-spin-button:hover,
input[type="number"].mod::-webkit-inner-spin-button:active {
  opacity: .8; }

/* Override browser form filling */
.login-form input:-webkit-autofill {
  background: #373e4a !important;
  color: #ffffff !important;
  background-image: none; }

.btn {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: all; }

.pd-top20 {
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px; }

/*Buttons*/
.btn {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding-top: 7px;
  padding-right: 12px;
  padding-bottom: 7px;
  padding-left: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px;
  text-transform: uppercase; }
  .btn:hover {
    transition: all 0.3s ease-out; }
  @media (min-width: 768px) and (max-width: 1023px) {
    .btn {
      padding-top: 7px;
      padding-right: 10px;
      padding-bottom: 7px;
      padding-left: 10px; } }

.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:hover {
    background-color: #46b8da;
    border: 1px solid #46b8da; }
  .btn-info:active {
    background-color: #46b8da;
    border: 1px solid #46b8da; }
  .btn-info:focus {
    background-color: #46b8da;
    border: 1px solid #46b8da; }
  .btn-info:active:focus {
    background-color: #46b8da;
    border: 1px solid #46b8da; }
  .btn-info:disabled {
    background-color: #46b8da;
    border: 1px solid #46b8da; }

.btn-default {
  background-color: #e1e5ec;
  border-color: #e1e5ec;
  color: #666666; }
  .btn-default:hover {
    background-color: #d1d7e2;
    border: 1px solid #e1e5ec; }
  .btn-default:active {
    background-color: #d1d7e2;
    border: 1px solid #e1e5ec; }
  .btn-default:focus {
    background-color: #e1e5ec;
    border: 1px solid #e1e5ec; }
  .btn-default:active:focus {
    background-color: #d1d7e2;
    border: 1px solid #49B527; }
  .btn-default:disabled {
    background-color: #d1d7e2;
    border: 1px solid #49B527; }

.btn-danger {
  background-color: #f56954;
  border-color: #f56954;
  color: #ffffff; }
  .btn-danger:hover {
    background-color: #f4614a;
    border: 1px solid #f56954; }
  .btn-danger:active {
    background-color: #f4614a;
    border: 1px solid #f56954; }
  .btn-danger:focus {
    background-color: #f4614a;
    border: 1px solid #f56954; }
  .btn-danger:active:focus {
    background-color: #f4614a;
    border: 1px solid #f56954; }
  .btn-danger:disabled {
    background-color: #f4614a;
    border: 1px solid #f56954; }

.btn-success {
  background-color: #36c6d3;
  border-color: #2bb8c4;
  color: #ffffff; }
  .btn-success:hover {
    background-color: #2bb8c4;
    border: 1px solid #2bb8c4; }
  .btn-success:active {
    background-color: #2bb8c4;
    border: 1px solid #2bb8c4; }
  .btn-success:focus {
    background-color: #2bb8c4;
    border: 1px solid #2bb8c4; }
  .btn-success:disabled, .btn-success:disabled .btn-success:hover {
    background-color: #2bb8c4 !important;
    border: 1px solid #36c6d3; }
  .btn-success:active:focus {
    background-color: #26a4b0;
    border: 1px solid #2bb8c4; }

.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover {
  background-color: #26a4b0;
  border: 1px solid #2bb8c4; }

.btn-black {
  background-color: #303641; }

.btn-primary {
  background-color: #90CC7D;
  border: #49B527 solid 1px; }
  .btn-primary:hover {
    background-color: #58a340;
    border: 1px solid #71be58; }
  .btn-primary:active {
    background-color: #58a340;
    border: 1px solid #71be58; }
  .btn-primary:focus {
    background-color: #58a340;
    border: 1px solid #49B527; }
  .btn-primary:active:focus {
    background-color: #90CC7D;
    border: 1px solid #49B527; }
  .btn-primary:disabled {
    background-color: #90CC7D;
    border: 1px solid #49B527; }

.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover {
  background-color: #90CC7D !important;
  border: 1px solid #49B527 !important; }

.btn-secondary {
  background-color: #71be58;
  border: 1px solid #71be58;
  font-weight: normal;
  color: #ffffff; }
  .btn-secondary:hover {
    color: #ffffff;
    background-color: #58a340;
    border: 1px solid #71be58; }

/* Change autocomplete styles in WebKit */
input:-webkit-autofil,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #373e4a;
  -webkit-text-fill-color: #333333;
  box-shadow: 0 0 0px 1000px #ffffff inset;
  transition: background-color #ffffff ease-in-out 0s; }

.pagination-warp {
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px; }
  .pagination-warp ul.pagination {
    display: inline-block;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
    .pagination-warp ul.pagination li {
      display: inline; }
      .pagination-warp ul.pagination li a {
        float: left;
        padding-top: 6px;
        padding-right: 12px;
        padding-bottom: 6px;
        padding-left: 12px;
        margin-top: 0px;
        margin-right: 5px;
        margin-bottom: 0px;
        margin-left: 0px;
        border-radius: 4px;
        line-height: 20px;
        font-weight: 600;
        text-decoration: none;
        background-color: #373e4a;
        color: #ffffff;
        border: none;
        border-left-width: 0;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease-out; }
        .pagination-warp ul.pagination li a:hover {
          background-color: #005A31;
          color: #ffffff;
          transition: all 0.3s ease-out; }
    .pagination-warp ul.pagination:first-child a {
      border-left: none; }
    .pagination-warp ul.pagination li.active a, .pagination-warp ul.pagination li.active span {
      background-color: #005A31;
      color: #ffffff;
      transition: all 0.3s ease-out; }
    .pagination-warp ul.pagination li.disabled a {
      background-color: #bce0b0;
      color: #373e4a;
      transition: all 0.3s ease-out;
      border: 1px solid #807325; }
      .pagination-warp ul.pagination li.disabled a:focus {
        background-color: #bce0b0;
        color: #373e4a;
        border: 1px solid #807325; }
      .pagination-warp ul.pagination li.disabled a:hover {
        background-color: #005A31;
        color: #ffffff;
        border: 1px solid #807325; }
    .pagination-warp ul.pagination li.pagination-next a, .pagination-warp ul.pagination li.pagination-last a, .pagination-warp ul.pagination li.pagination-prev a, .pagination-warp ul.pagination li.pagination-first a {
      background-color: #bce0b0;
      color: #373e4a;
      transition: all 0.3s ease-out;
      border: 1px solid #807325; }
      .pagination-warp ul.pagination li.pagination-next a:focus, .pagination-warp ul.pagination li.pagination-last a:focus, .pagination-warp ul.pagination li.pagination-prev a:focus, .pagination-warp ul.pagination li.pagination-first a:focus {
        background-color: #bce0b0;
        color: #373e4a;
        border: 1px solid #807325; }
      .pagination-warp ul.pagination li.pagination-next a:hover, .pagination-warp ul.pagination li.pagination-last a:hover, .pagination-warp ul.pagination li.pagination-prev a:hover, .pagination-warp ul.pagination li.pagination-first a:hover {
        background-color: #005A31;
        color: #ffffff;
        border: 1px solid #807325; }

input.form-control {
  font-family: "Open Sans", sans-serif;
  font-size: 16px; }

.stepOne {
  max-width: 500px;
  margin: 40px auto;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px; }
  .stepOne h3 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #ffffff;
    text-align: center; }
  .stepOne label {
    font-weight: 500;
    font: 100% "Roboto", sans-serif;
    color: #fff;
    font-size: 14px; }

.stepTwo {
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px; }
  .stepTwo h3 {
    margin-top: 15px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    color: #ffffff; }
  .stepTwo h4 {
    margin-top: 15px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    color: #ffffff; }
  .stepTwo .stepTwo-content {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px; }

.stepOne, .stepTwo {
  background: #2b303a; }

.color-picker-wrapper .input-group .color-picker-input-swatch {
  font-family: 'Open Sans', sans-serif; }

.modal-dialog {
  margin: 10% auto;
  min-width: 450px; }
  .modal-dialog .modal-header {
    background: #303642 !important;
    color: #FFFFFF !important;
    border-radius: 3px 3px 0px 0px;
    border-radius: 0px !important; }
    .modal-dialog .modal-header .close {
      background: none;
      font-size: 30px;
      padding-top: 0px;
      padding-right: 2px;
      padding-bottom: 0px;
      padding-left: 2px;
      line-height: 22px;
      color: #ffffff;
      opacity: 1; }
      .modal-dialog .modal-header .close:hover {
        color: #ffffff; }
  .modal-dialog .modal-text {
    width: 250px;
    margin: 0 auto; }
    .modal-dialog .modal-text input[type=text] {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 15px;
      margin-left: 0px; }
  .modal-dialog .modal-body textarea {
    height: 150px;
    width: 100%;
    border-radius: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    resize: none; }
  .modal-dialog .modal-content {
    border-radius: 0px; }
  .modal-dialog .bootstrap-dialog-footer .btn {
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 5px; }
  .modal-dialog .bootstrap-dialog.type-primary .modal-header {
    background-color: #303642;
    border-radius: 0px; }
  .modal-dialog .fs-textarea {
    background-color: #000000;
    color: #ffffff;
    font-size: 16px; }

.modal-sm .modal-header {
  background: #303642;
  color: #FFFFFF;
  border-radius: 3px 3px 0px 0px; }

.bootstrap-dialog-footer .bootstrap-dialog-footer-buttons button:first-child {
  background-color: #90CC7D;
  border: #49B527 solid 1px;
  color: #ffffff; }

.bootstrap-dialog-footer .bootstrap-dialog-footer-buttons button:last-child {
  background-color: #f56954;
  border-color: #f56954;
  color: #ffffff; }

.file {
  position: relative;
  text-align: center;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border: none;
  width: 300px;
  margin: 0 auto; }
  .file label {
    background: #36c6d3;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s ease; }
  .file input {
    position: absolute;
    display: inline-block;
    left: 45px;
    top: 19px;
    height: 45px;
    opacity: 0.01;
    cursor: pointer; }

.file input:hover + label,
.file input:focus + label {
  background: #36c6d3;
  color: #ffffff; }

.gif-image {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: center; }
  .gif-image ul {
    list-style: none;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px; }
    .gif-image ul li {
      float: left;
      padding-top: 10px;
      padding-right: 0px;
      padding-bottom: 10px;
      padding-left: 0px;
      display: inline-block;
      width: 140px;
      height: 150px; }

.add-section input[type=number]::-webkit-inner-spin-button,
.add-section input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0; }

.preview-heading {
  color: #676767; }

.bannersize-detail {
  background-color: #F1F1F1;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-top: 5px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px; }
  .bannersize-detail ul {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px; }
    .bannersize-detail ul li {
      font-size: 16px;
      color: #373e4a;
      font-weight: 700; }
      .bannersize-detail ul li span {
        margin-top: 0px;
        margin-right: 5px;
        margin-bottom: 0px;
        margin-left: 5px; }

.create-template-banner {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none; }

.remove-project {
  float: right; }

.showOptions {
  display: block;
  opacity: 1; }

.ace-twilight {
  background-color: #2d2d2d !important;
  font-size: 14px !important; }

.ace_editor {
  height: 100%;
  margin-top: 0 !important;
  min-height: 80vh;
  width: 100%; }

.page-container .main-content {
  display: block;
  padding: 0 !important; }

.setting-modal {
  overflow: visible;
  min-width: 450px;
  /*min-height:300px;
		left:50% !important;
		top:20% !important; 
		right:auto !important; 
		bottom:auto !important; 
		margin-left:-220px;*/
  visibility: visible !important; }
  .setting-modal label {
    width: 100%; }

.setting-dis {
  display: block !important; }

.toast-top-right {
  top: 95px !important; }

/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
.row.banner-sec.list-template {
  display: block; }

.banner-sec [class*="col-sm-"] {
  /*min-height:300px;*/
  position: relative;
  padding-top: 15px; }

.banner-sec img {
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px; }

/*
.previewbtn,.openTemplatebtn {
    @include padding-all(0px, 5px, 0px, 10px);
}*/
.listtemp {
  width: 100%;
  color: black;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px; }

.stepOne .stepOne-form {
  margin: 0 auto;
  width: auto;
  min-height: 200px; }
  .stepOne .stepOne-form input {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px; }

.stepOne .settings-form {
  margin: 0 auto;
  width: auto;
  min-height: 100px;
  text-align: center; }
  .stepOne .settings-form input {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px; }

.create-proj .modal-content img {
  margin: 0 auto;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px; }

/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
@import url(grapesjs/dist/css/grapes.min.css);
/*Dashboard page*/
#contentbuilder {
  border: rgba(0, 0, 0, 0.25) 1px dashed; }

.tag-section {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  margin-top: 0 !important;
  max-height: 76vh;
  padding-top: 10px;
  padding-right: 2px;
  padding-bottom: 10px;
  padding-left: 2px; }
  .tag-section .item-text-wrap {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    box-shadow: 0px 6px 5px -1px rgba(0, 0, 0, 0.34); }
  .tag-section .listvariable {
    border: 1px solid #cccccc;
    position: relative;
    z-index: 2;
    display: block;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    font-size: 14px;
    text-align: center; }
  .tag-section .var-not-inserted {
    background-color: #f2f2f2;
    /*border-left: 10px solid red*/
    border-top: 0px;
    color: #333333;
    border: 1px solid #cccccc; }
  .tag-section .var-inserted {
    background-color: rgba(0, 255, 0, 0.16);
    color: #333333;
    border-top: 4px solid #49B527; }
  .tag-section .tag-details {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px; }
    .tag-section .tag-details label {
      display: block;
      text-align: left; }
    .tag-section .tag-details span {
      position: absolute;
      top: 5px;
      right: 5px; }
  .tag-section .variation-form label {
    display: block;
    text-align: left; }
  .tag-section .variation-form input.form-control {
    float: left;
    width: 76% !important;
    margin-right: 2%; }
    @media (max-width: 1170px) {
      .tag-section .variation-form input.form-control {
        width: 100% !important;
        margin-right: 0%; } }
  .tag-section .variation-form button {
    float: left;
    width: 22%; }
    @media (max-width: 1170px) {
      .tag-section .variation-form button {
        width: 100% !important;
        margin-top: 5px; } }
  .tag-section .variation-form p {
    font-size: 13px; }
  .tag-section .additemDivier {
    padding-top: 8px;
    padding-right: 0px;
    padding-bottom: 8px;
    padding-left: 0px;
    min-height: 30px;
    color: #333333;
    font-weight: 500; }
  .tag-section .title-main {
    color: #333333;
    font-size: 16px;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    font-weight: bold;
    clear: both; }
  .tag-section .add-variation {
    min-height: 50px;
    overflow: visible;
    clear: both; }
    .tag-section .add-variation .itemvar {
      text-align: left;
      width: 100%;
      background-color: #ffffff;
      color: #333333;
      position: relative;
      z-index: 2;
      display: block;
      margin-bottom: -1px;
      padding-top: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      border: 1px solid #cccccc;
      font-size: 16px;
      box-sizing: border-box;
      position: relative; }
      .tag-section .add-variation .itemvar:before {
        content: "\f054";
        font-family: FontAwesome;
        display: block;
        width: 20px;
        height: 20px;
        float: right;
        margin: 0 6px 0 0; }
  .tag-section .btn-primary {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px; }
  .tag-section .addspace {
    margin-bottom: 3px; }

.variation-sec .btn-secondary {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  width: 100%; }

.red-block p {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px; }

iframe {
  width: 100%;
  height: calc(100vh - 110px);
  box-shadow: 0 0 5px 5px rgba(100, 100, 100, 0.2) inset;
  border: 0; }

#gjs {
  border: 1px solid #ccc; }
  #gjs iframe {
    overflow: hidden; }

#editor, .gjs-cv-canvas-bg {
  padding-top: 0;
  width: 100% !important;
  height: calc(100vh - 105px); }

.variation-view-button {
  background-color: transparent;
  border-color: transparent;
  color: #000; }
  .variation-view-button:hover, .variation-view-button.selected {
    background-color: #90CC7D;
    border-color: #49B527;
    color: #fff; }

.tag-section {
  padding: 0 10px 0 10px; }
  .tag-section > div {
    opacity: 0.5;
    transition: all 0.15s ease-in;
    transform: scale(1); }
    .tag-section > div:hover:not(.menu-item-selected) {
      opacity: 0.8;
      background-color: #bbb;
      transform: scale(1.1); }
    .tag-section > div.menu-item-selected {
      opacity: 1;
      background-color: #bce0b0; }

.gjs-toolbar {
  background-color: #71be58; }

.gjs-toolbar-items .fa {
  font-size: 1.2rem;
  margin-bottom: 1px;
  transition: all 0.15s ease-in; }
  .gjs-toolbar-items .fa:hover {
    text-shadow: 0 2px 5px #032541;
    transform: translateY(-2px); }
  .gjs-toolbar-items .fa:not(:nth-child(1)) {
    border-left: 1px solid #fff; }
  .gjs-toolbar-items .fa::after {
    font-family: Roboto, sans-serif;
    margin-left: 4px;
    white-space: nowrap; }

.gjs-toolbar {
  background: transparent; }

.gjs-toolbar-items {
  display: -ms-flexbox;
  display: flex; }
  .gjs-toolbar-items .gjs-toolbar-item {
    background-color: #71be58; }
  .gjs-toolbar-items .fa-plus::after {
    content: "Create Variation"; }
  .gjs-toolbar-items .fa-refresh::after {
    content: "Preview Variation"; }
  .gjs-toolbar-items .fa-trash {
    background: #f33;
    height: 25px !important; }
    .gjs-toolbar-items .fa-trash::after {
      content: "Delete"; }

.loading-spinner {
  width: 30px;
  height: 30px;
  border: 2px solid indigo;
  border-radius: 90%;
  display: inline-block;
  animation: loadingspinner .7s linear infinite; }

@keyframes loadingspinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

#dashboard-content {
  opacity: 1 !important;
  transition: opacity 0.5s ease-in; }
  #dashboard-content.loading {
    opacity: 0 !important; }

/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
.loaderstyle {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding-top: 25%;
  border: 0;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px; }

.info {
  display: inline-block;
  cursor: default;
  color: #b3cea9;
  font-size: 15px;
  font-weight: 500;
  padding: 8px;
  padding-right: 36px; }

.bradcrumb-top {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-radius: 0;
  background-color: #14171f;
  background-image: -webkit-gradient(left top, left bottom, color-stop(0%, #14171f), color-stop(100%, #2b303a));
  background-image: linear-gradient(to bottom, #14171f 0%, #2b303a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr='#14171f', end-colourStr='#2b303a',GradientType=0 );
  display: inline-block;
  width: 100%;
  position: relative; }
  .bradcrumb-top h1 {
    float: left !important;
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 15px;
    color: #ffffff;
    font-size: 22px; }
    @media (max-width: 991px) {
      .bradcrumb-top h1 {
        margin-left: 15px;
        width: 100%; } }
    @media (max-width: 1170px) {
      .bradcrumb-top h1 {
        display: none; } }
  .bradcrumb-top .project-title {
    float: left;
    padding-top: 0px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff; }
    @media (min-width: 1024px) {
      .bradcrumb-top .project-title {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        margin-top: 0px;
        margin-right: 5px;
        margin-bottom: 5px;
        margin-left: 5px; } }
    @media (min-width: 768px) and (max-width: 1023px) {
      .bradcrumb-top .project-title {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        margin-top: 10px;
        margin-right: 5px;
        margin-bottom: 10px;
        margin-left: 10px; } }
  @media (min-width: 768px) and (max-width: 1023px) {
    .bradcrumb-top .header-menu .pull-right {
      margin-left: 15px;
      float: right !important; } }
  @media (max-width: 991px) {
    .bradcrumb-top .header-menu .pull-right {
      margin-left: 15px;
      float: right !important; } }
  .bradcrumb-top ul.list-inline {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px; }
    .bradcrumb-top ul.list-inline > li {
      float: left;
      padding: 0;
      line-height: normal;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px; }
      @media (max-width: 1230px) {
        .bradcrumb-top ul.list-inline > li {
          margin-top: 0px;
          margin-right: 0px;
          margin-bottom: 0px;
          margin-left: 0px; } }
      @media (max-width: 1060px) {
        .bradcrumb-top ul.list-inline > li {
          padding-top: 0px;
          padding-right: 0px;
          padding-bottom: 0px;
          padding-left: 0px; } }
      @media (max-width: 991px) {
        .bradcrumb-top ul.list-inline > li {
          margin-top: 0px;
          margin-right: 0px;
          margin-bottom: 0px;
          margin-left: 0px;
          padding-top: 0px;
          padding-right: 0px;
          padding-bottom: 0px;
          padding-left: 0px; } }
      .bradcrumb-top ul.list-inline > li li a {
        border-radius: 0;
        margin: 0; }
      .bradcrumb-top ul.list-inline > li li a.btn-primary {
        text-transform: uppercase;
        border: 1px solid #4eb5d4;
        font-size: 14px;
        font-weight: 600;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: all 0.3s ease-out; }
        .bradcrumb-top ul.list-inline > li li a.btn-primary:hover {
          transition: all 0.3s ease; }
        @media (max-width: 991px) {
          .bradcrumb-top ul.list-inline > li li a.btn-primary {
            font-size: 13px; } }
      .bradcrumb-top ul.list-inline > li.current a.btn-primary {
        font-size: 14px; }
        @media (max-width: 991px) {
          .bradcrumb-top ul.list-inline > li.current a.btn-primary {
            font-size: 13px; } }
      .bradcrumb-top ul.list-inline > li:last-child {
        margin-right: 15px; }
  .bradcrumb-top .btn-primary {
    text-transform: uppercase;
    background: none;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s ease-out;
    border-radius: 0; }
    .bradcrumb-top .btn-primary:hover {
      background-color: #58a340;
      transition: all 0.3s ease; }
    @media (min-width: 768px) and (max-width: 1023px) {
      .bradcrumb-top .btn-primary {
        font-size: 13px; } }

.license-page {
  background-color: #14171f;
  background-image: -webkit-gradient(left top, left bottom, color-stop(0, #14171f), color-stop(100%, #2b303a));
  background-image: linear-gradient(180deg, #14171f 0, #2b303a);
  min-height: 100%;
  width: 100%;
  height: auto; }

.input-group-addon, .license-page .license-header {
  color: #fff;
  background-color: #58bd91;
  background-image: -webkit-gradient(left top, left bottom, color-stop(0, #58bd91), color-stop(100%, #77cad5));
  background-image: linear-gradient(180deg, #58bd91 0, #77cad5); }

.license-page .license-header {
  padding: 50px 0;
  text-align: center;
  color: red; }

.license-page .license-form {
  zoom: 1;
  top: 0;
  opacity: 1;
  transition: all .55s ease-in-out;
  position: relative;
  padding: 60px 0 0;
  background: #303641; }

.license-page .license-content {
  position: relative;
  width: 320px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  transition: all .55s ease-in-out; }

.license-page .license-form .form-group .input-group {
  background: #373e4a;
  border: 1px solid #373e4a;
  padding: 7px;
  transition: all .3s ease-in-out;
  border-radius: 3px;
  background-clip: padding-box; }

.license-page .license-form .form-group .input-group .input-group-addon {
  background: transparent;
  border: none; }

.license-page .license-form .form-group .input-group .form-control:last-child {
  border-radius: 3px; }

.license-page .license-form .form-group .input-group .form-control {
  border: 0 !important;
  background: #f9febc;
  color: #1f232b; }

.license-page .license-form .form-group .btn-license {
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  background-color: #90cc7d;
  border: 1px solid #454a54;
  border-radius: 3px;
  padding: 15px 20px; }

.license-page .license-form .form-group .btn-license i {
  float: right; }

/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
/*Login page*/
.btn-primary[disabled]:hover {
  background: #54bfdf;
  border-color: #54bfdf; }

.login-page {
  background-color: #303641;
  min-height: 100%;
  position: absolute;
  width: 100%;
  height: auto; }
  .login-page .hiddenn {
    opacity: 0; }
  .login-page .visible {
    opacity: 1; }
  .login-page h5 {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    margin: 0px; }
  .login-page .logo-block {
    width: 100%;
    text-align: center; }

.login-page .login-header {
  padding-top: 50px;
  padding-right: 0px;
  padding-bottom: 50px;
  padding-left: 0px;
  background-color: #58bd91;
  background-image: -webkit-gradient(left top, left bottom, color-stop(0%, #58bd91), color-stop(100%, #77cad5));
  background-image: linear-gradient(to bottom, #58bd91 0%, #77cad5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr='#58bd91', end-colourStr='#77cad5',GradientType=0 ); }
  .login-page .login-header .login-content {
    width: 100%; }

.login-header.login-caret {
  position: relative; }
  .login-header.login-caret:after {
    border-color: #77cad5 transparent transparent;
    border-style: solid;
    border-width: 13px 12.5px 0;
    bottom: -13px;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -12.5px;
    position: absolute;
    transition: all 550ms ease-in-out;
    width: 0; }

.login-page .login-header, .input-group-addon {
  color: #ffffff; }

.login-page .md-headline {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px; }

.login-page .login-content {
  position: relative;
  width: 320px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
  transition: all 550ms ease-in-out; }

.login-page .login-form {
  zoom: 1;
  top: 0px;
  opacity: 1;
  transition: all 550ms ease-in-out;
  position: relative;
  padding-top: 60px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px; }
  .login-page .login-form .form-group .input-group {
    background: #373e4a;
    border: 1px solid #373e4a;
    padding-top: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    padding-left: 7px;
    transition: all 300ms ease-in-out;
    border-radius: 3px;
    background-clip: padding-box; }
    .login-page .login-form .form-group .input-group .input-group-addon {
      background: transparent;
      position: relative;
      border: none; }
      .login-page .login-form .form-group .input-group .input-group-addon:after {
        background: #454a54 none repeat scroll 0 0;
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        transform: scaleY(0.56);
        width: 1px; }
    .login-page .login-form .form-group .input-group .form-control {
      border: 0 !important;
      background: transparent !important;
      box-shadow: none;
      color: #ffffff; }
      .login-page .login-form .form-group .input-group .form-control:focus {
        box-shadow: none !important; }
      .login-page .login-form .form-group .input-group .form-control:last-child {
        border-radius: 3px; }
  .login-page .login-form .form-group .btn-login {
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #90cc7d;
    border: 1px solid #454a54;
    border-radius: 3px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px; }
    .login-page .login-form .form-group .btn-login:hover {
      background-color: #303641;
      color: #ffffff;
      transition: all 0.3s ease-out; }
    .login-page .login-form .form-group .btn-login i {
      float: right; }
  .login-page .login-form .login-bottom-links {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px; }
    .login-page .login-form .login-bottom-links a {
      font-size: 14px;
      display: inline-block;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 10px;
      margin-left: 0px; }
      .login-page .login-form .login-bottom-links a:hover {
        transition: all 0.3s ease-out; }


/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
.page-container {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 100%;
  display: table;
  height: 100%;
  table-layout: fixed; }
  .page-container.no-sidebar {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px; }
  .page-container .sidebar-menu {
    width: 100%;
    /*
		background: #58bd91;
		background: -moz-linear-gradient(top,  #58bd91 0%, #77cad5 100%);
		background: -webkit-linear-gradient(top,  #58bd91 0%,#77cad5 100%);
		background: linear-gradient(to bottom,  #58bd91 0%,#77cad5 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58bd91', endColorstr='#77cad5',GradientType=0 );*/
    box-shadow: 1px 0px 11px 0px rgba(156, 156, 156, 0.6); }
    .page-container .sidebar-menu #main-menu li {
      border-bottom: 1px solid #000000; }
      .page-container .sidebar-menu #main-menu li:first-child {
        border-top: 1px solid #000000; }
      .page-container .sidebar-menu #main-menu li a {
        font-size: 18px;
        cursor: pointer;
        font-weight: 500;
        color: #000000;
        padding-top: 21px;
        padding-right: 22px;
        padding-bottom: 22px;
        padding-left: 22px; }
        .page-container .sidebar-menu #main-menu li a:hover {
          background-color: #2b303a;
          color: #ffffff; }
        .page-container .sidebar-menu #main-menu li a:focus {
          background-color: #2b303a;
          color: #ffffff; }
    .page-container .sidebar-menu #main-menu li.active a {
      background-color: #2b303a;
      color: #ffffff; }
    .page-container .sidebar-menu .logo-env {
      width: 100%;
      padding-top: 26px;
      padding-right: 28px;
      padding-bottom: 26px;
      padding-left: 28px;
      box-sizing: border-box; }
      .page-container .sidebar-menu .logo-env .logo {
        display: block;
        vertical-align: middle;
        white-space: nowrap;
        float: left;
        margin-top: 0px;
        margin-right: 15px;
        margin-bottom: 0px;
        margin-left: 0px; }
      .page-container .sidebar-menu .logo-env:after {
        content: " ";
        display: table;
        clear: both; }

/*** New top navigation ***/
/*** Removed default grey border of toggle button ***/
.navbar-default .navbar-toggle {
  border: 0;
  background-color: inherit !important; }

.page-container .top-navigation .navbar-brand {
  padding: 5px 15px; }
  .page-container .top-navigation .navbar-brand .site-version {
    display: block;
    text-align: center;
    margin-top: -10px; }

.page-container .top-navigation #header-menu li.active a, .page-container .top-navigation #header-menu li a:focus, .page-container .top-navigation #header-menu li a:hover {
  background-color: #2b303a;
  color: #fff; }

.page-container .top-navigation #header-menu li a {
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  color: #000000;
  padding: 21px 22px 22px; }

.page-container .top-navigation .upgrade-btn {
  background: #d6ffd6;
  padding: 10px 15px 10px !important;
  box-shadow: 0px 3px 3px 2px #b5d5aa;
  margin: 10px; }

.page-container .header-nav {
  background-color: #bce0b0;
  border-color: #bce0b0;
  border-radius: 0;
  margin-bottom: 0; }

/* sidebar collapse open*/
.page-container .sidebar-menu .logo-env > div.logo {
  display: block; }

.page-container .sidebar-menu .logo-env > div.sidebar-collapse {
  position: relative;
  float: right; }
  .page-container .sidebar-menu .logo-env > div.sidebar-collapse a {
    border: 1px solid #333333;
    color: #333333;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-radius: 0px;
    display: inline-block;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    font-weight: 300;
    background-clip: padding-box; }
    .page-container .sidebar-menu .logo-env > div.sidebar-collapse a:hover {
      background-color: rgba(69, 74, 84, 0.4); }

.page-container .sidebar-menu .logo-env > div.sidebar-mobile-menu {
  position: relative;
  float: right; }
  .page-container .sidebar-menu .logo-env > div.sidebar-mobile-menu a {
    border: 1px solid #333333;
    color: #333333;
    display: inline-block;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    font-weight: 300;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-radius: 0px;
    background-clip: padding-box; }
    .page-container .sidebar-menu .logo-env > div.sidebar-mobile-menu a:hover {
      background-color: rgba(69, 74, 84, 0.4); }

/*sidebar-collapsed Close*/
body .page-container.sidebar-collapsed .sidebar-menu {
  z-index: 100;
  width: 100%; }
  body .page-container.sidebar-collapsed .sidebar-menu .logo-env > {
    display: block;
    padding-top: 25px;
    padding-right: 10px;
    padding-bottom: 25px;
    padding-left: 10px; }
    body .page-container.sidebar-collapsed .sidebar-menu .logo-env > div.logo {
      display: none;
      width: 0; }
  body .page-container.sidebar-collapsed .sidebar-menu #main-menu {
    list-style: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px; }
    body .page-container.sidebar-collapsed .sidebar-menu #main-menu li.active a {
      background-color: #2b303a;
      color: #ffffff; }
    body .page-container.sidebar-collapsed .sidebar-menu #main-menu li {
      border-bottom: none;
      position: relative;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      font-size: 12px;
      transition: 200ms opacity ease-in-out; }
      body .page-container.sidebar-collapsed .sidebar-menu #main-menu li:first-child {
        border-top: 1px solid #000000; }
      body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a {
        position: relative;
        font-size: 18px;
        cursor: pointer;
        font-weight: 500;
        display: block;
        z-index: 2;
        border-bottom: 1px solid #000000;
        padding-top: 22px;
        padding-right: 22px;
        padding-bottom: 22px;
        padding-left: 22px; }
        body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a span {
          transition: 350ms opacity ease-in-out; }
          body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a span:not(.badge) {
            background-color: #2b303a;
            display: block;
            position: absolute;
            top: 0;
            left: 0px;
            margin-top: -1px;
            border-top: 1px solid #000000;
            border-bottom: 1px solid #000000;
            border-right: 1px solid #000000;
            width: 0px;
            min-width: 65px !important;
            visibility: visible;
            padding-top: 12px;
            padding-right: 10px;
            padding-bottom: 12px;
            padding-left: 10px;
            border-radius: 0 3px 3px 0;
            background-clip: padding-box;
            opacity: 0;
            zoom: 1; }
        body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a span.badge {
          position: absolute;
          right: -240px;
          top: 10px;
          display: none; }
        body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a i {
          top: 1px;
          display: inline-block;
          font-size: 20px;
          position: relative;
          margin-right: 5px; }
        body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a:hover {
          background-color: #2b303a;
          color: #ffffff; }
        body .page-container.sidebar-collapsed .sidebar-menu #main-menu li a:focus {
          background-color: #2b303a;
          color: #ffffff; }
      body .page-container.sidebar-collapsed .sidebar-menu #main-menu li:hover a span {
        visibility: visible;
        zoom: 1;
        opacity: 1;
        width: 250px;
        left: 65px;
        padding-top: 23px;
        padding-right: 10px;
        padding-bottom: 23px;
        padding-left: 10px; }

.page-container .main-content {
  display: block;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px; }

.page-container.sidebar-collapsed {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px; }
  .page-container.sidebar-collapsed .logo-env {
    padding-top: 27px;
    padding-right: 16px;
    padding-bottom: 26px;
    padding-left: 10px; }

/*sidebar-collapsed Close END*/
.menu-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-radius: 2px;
  position: relative;
  z-index: 99;
  border-radius: 2px; }
  .menu-icon:hover {
    background: rgba(0, 0, 0, 0.4); }
  .menu-icon .line {
    display: inline-block;
    border-radius: 2px;
    width: 20px;
    height: 2px;
    background: #373e4a;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: background 0.6s 0s ease; }
    .menu-icon .line:after, .menu-icon .line:before {
      border-radius: 2px;
      transition: top 0.2s 0.4s ease, -webkit-transform 0.3s ease;
      content: '';
      position: absolute;
      top: -6px;
      left: 0;
      background: #373e4a;
      display: inline-block;
      width: 20px;
      height: 2px; }
    .menu-icon .line:before {
      top: 6px; }

.menu-open .main {
  left: 200px; }

.menu-open .menu-icon .line {
  background: transparent; }
  .menu-open .menu-icon .line:before, .menu-open .menu-icon .line:after {
    top: 0;
    transition: top 0.2s ease, -webkit-transform 0.2s 0.4s ease;
    transform: rotate3d(0, 0, 1, 45deg);
    transform-origin: 50% 50%; }
  .menu-open .menu-icon .line:after {
    transform: rotate3d(0, 0, 1, -45deg);
    -webkit-transform: rotate3d(0, 0, 1, -45deg); }
  @media (max-width: 991px) {
    .menu-open .menu-icon .line {
      background: transparent; }
      .menu-open .menu-icon .line:before, .menu-open .menu-icon .line:after {
        top: 0;
        transition: top 0.2s ease, -webkit-transform 0.2s 0.4s ease;
        transform: rotate3d(0, 0, 1, 45deg);
        transform-origin: 50% 50%; }
      .menu-open .menu-icon .line:after {
        transform: rotate3d(0, 0, 1, -45deg);
        -webkit-transform: rotate3d(0, 0, 1, -45deg); } }

.mySidenavOpen {
  visibility: visible;
  opacity: 1;
  width: 281px !important; }

.mySidenavClose {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear; }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  background-color: #bce0b0;
  overflow-x: hidden;
  padding-top: 60px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  transition: all 0.5s ease-out; }
  .sidenav .button-anchor {
    text-decoration: none;
    font-size: 32px;
    color: #818181;
    display: block;
    transition: 0.3s;
    position: absolute;
    top: 0px;
    right: 10px; }
  .sidenav #chat {
    position: absolute !important;
    top: 48px !important;
    z-index: 100 !important;
    display: block; }
    .sidenav #chat .btn {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 5px;
      margin-left: 0px; }

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 0px;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  border-radius: 0px;
  transition: background 0.3s; }

.c-hamburger--htra.is-active {
  background: rgba(0, 0, 0, 0.5); }

.c-hamburger--htra {
  background: rgba(0, 0, 0, 0.4); }

.c-hamburger--htra.is-active span::before {
  top: 0;
  transform: translateX(-6px) translateY(1px) rotate(-44deg); }

.c-hamburger--htla.is-active span::after,
.c-hamburger--htla.is-active span::before,
.c-hamburger--htra.is-active span::after,
.c-hamburger--htra.is-active span::before {
  width: 56%; }

.c-hamburger--htra span::before {
  transform-origin: left top 0;
  transition: transform 0.3s ease 0s, width 0.3s ease 0s, top 0.3s ease 0s; }

.c-hamburger span::before {
  top: -7px; }

.c-hamburger span:after, .c-hamburger span:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%; }

.c-hamburger--htra.is-active span::after {
  bottom: 0;
  transform: translateX(-6px) translateY(-1px) rotate(45deg); }

.c-hamburger--htla.is-active span:after, .c-hamburger--htla.is-active span:before {
  width: 56%; }

.c-hamburger--htra.is-active span:after, .c-hamburger--htra.is-active span:before {
  width: 56%; }

.c-hamburger--htra span::after {
  transform-origin: left bottom 0;
  transition: transform 0.3s ease 0s, width 0.3s ease 0s, bottom 0.3s ease 0s; }

.c-hamburger span::after {
  bottom: -7px; }

.c-hamburger span:after, .c-hamburger span:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%; }

.c-hamburger--htra.is-active span {
  transform: rotate(180deg) !important; }

.c-hamburger--htra.is-active span {
  transition: transform 0.3s ease 0s; }

.c-hamburger span {
  background: #fff none repeat scroll 0 0;
  display: block;
  height: 3px;
  left: 10px;
  position: absolute;
  right: 10px;
  top: 19px; }

.c-hamburger:focus {
  outline: none; }

/*@mixin button-bg($color,$background-color,$padding,$margin,$letter-spacing,$font-weight,$font-size,$case){
	color:$color;
	background-color:$background-color;
	padding: $padding;
    margin: $margin;
    letter-spacing: $letter-spacing;
    font-weight: $font-weight;
    font-size: $font-size;
    text-transform: $case;
    @include transition-all(all 0.3s ease-out);
}*/
/*Template page*/
.recent-project h1.project-list {
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px; }

.recent-project h4 {
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 0x; }

.recent-project .project-list {
  outline: none;
  cursor: pointer; }

.recent-project .project-list .box {
  position: relative;
  z-index: 1000;
  padding: 15px;
  background: #2b303a;
  margin-bottom: 20px; }
  .recent-project .project-list .box .hiddenn {
    opacity: 0; }
  .recent-project .project-list .box .visible {
    opacity: 1; }
  .recent-project .project-list .box .template-box {
    position: relative; }
    .recent-project .project-list .box .template-box h5 {
      text-align: left;
      color: #ffffff;
      text-transform: capitalize;
      font-size: 16px;
      line-height: 1.6;
      color: #ffffff;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      padding-right: 105px; }
      .recent-project .project-list .box .template-box h5 i {
        margin-top: 0px;
        margin-right: 5px;
        margin-bottom: 0px;
        margin-left: 0px; }
    .recent-project .project-list .box .template-box span.rename {
      padding-top: 5px;
      padding-right: 5px;
      padding-bottom: 5px;
      padding-left: 5px;
      color: #ffffff;
      background: rgba(0, 0, 0, 0.4); }
    .recent-project .project-list .box .template-box span.delete {
      padding-top: 5px;
      padding-right: 5px;
      padding-bottom: 5px;
      padding-left: 5px;
      color: #ffffff;
      background: rgba(0, 0, 0, 0.4); }
    .recent-project .project-list .box .template-box span.clone {
      padding-top: 5px;
      padding-right: 5px;
      padding-bottom: 5px;
      padding-left: 5px;
      color: #ffffff;
      background: rgba(0, 0, 0, 0.4); }
    .recent-project .project-list .box .template-box div.actions {
      position: absolute;
      right: 0;
      top: -3px;
      width: auto;
      height: 100%;
      text-align: right; }
  .recent-project .project-list .box:hover {
    background: #272b34; }
  .recent-project .project-list .box .more-icon {
    position: absolute;
    right: 10px;
    top: 10px; }
    .recent-project .project-list .box .more-icon .btn {
      background: rgba(0, 0, 0, 0.4); }
      .recent-project .project-list .box .more-icon .btn i {
        color: #ffffff; }

.recent-project .project-list-message {
  text-align: center; }





/*# sourceMappingURL=app.css.map */
