@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,700");
nav li {
  flex-grow: 0;
  flex-shrink: 0;
  font-family: "Robotos", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400 !important;
  font-style: normal;
  color: inherit;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: "Roboto", sans-serif !important;
  text-size-adjust: none !important;
  -webkit-text-size-adjust: none !important;
  -moz-text-size-adjust: none !important;
  -ms-text-size-adjust: none !important;
}

.btn {
  border-radius: 3px !important;
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-bottom-width: 2px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-bottom-width: 2px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
.btn:active {
  opacity: 0.6;
}

body {
  background-color: transparent !important;
  font-family: "Roboto", sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  text-size-adjust: none !important;
  -webkit-text-size-adjust: none !important;
  -moz-text-size-adjust: none !important;
  -ms-text-size-adjust: none !important;
  min-height: 100%;
  position: relative;
  padding-bottom: 150px;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
}
html.login-page {
  overflow-y: auto !important;
}

/* LOGIN */
.login #main-container {
  margin-top: 0px;
  padding-top: 30px;
}

.login-page #main-container .jumbotron {
  margin-top: 5vh;
  padding-top: 0px;
}

@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}
* {
  box-sizing: border-box;
}

.login-page .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;

  min-height: 330px !important;
  padding: 10px;
  margin-bottom: 10px;
}

.login {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 320px;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
.login *:not(input) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.login *:focus {
  outline: 0;
}
.login.loading button {
  max-height: 100%;
  padding-top: 50px;
  cursor: wait;
}
.login.loading button .spinner {
  opacity: 1;
  top: 40%;
}
.login.ok button {
  background-color: #8bc34a;
}
.login.ok button .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}

.login span.state {
  font-size: 18px;
}

.login a {
  font-size: 0.8em;
  color: #2196f3;
  text-decoration: none;
}
.login .title {
  color: #444;
  font-size: 1.2em;
  font-weight: 400;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.login button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: #0daada;
  color: #fff;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 4px;
}
.login button .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.login:not(.loading) button:hover {
  box-shadow: 0px 1px 3px #2196f3;
}
.login:not(.loading) button:focus {
  border-bottom-width: 4px;
}

/* Material Inputs */

/* form starting stylings ------------------------------- */
.group {
  position: relative;
  margin-bottom: 45px;
}
.login-page input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #0daada;
}
.login-page input:focus {
  outline: none;
}

/* LABEL ======================================= */
.login-page label {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 13px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */
.login-page input:focus ~ label,
input:valid ~ label {
  top: -4px;
  font-size: 12px;

  color: #0daada;
}

/* BOTTOM BARS ================================= */
.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar:before,
.bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #0daada;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.bar:before {
  left: 50%;
}
.bar:after {
  right: 50%;
}

/* active state */
.login-page input:focus ~ .bar:before,
input:focus ~ .bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
.login-page input:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #5264ae;
  }
  to {
    width: 0;
    background: transparent;
  }
}

.footer-container {
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
}

.navbar-bottom {
  margin-bottom: 0;
}

.footer img:not(.footer-logo) {
  max-height: 80px;
  margin-right: 5px;
}
.footer a {
  color: black !important;
}
@media only screen and (max-width: 600px) {
  .login {
    max-width: 100%;
  }

  .footer img:not(.footer-logo) {
    margin-top: 10px;
    max-height: 60px;
  }
}

/* REQUEST WITHDRAWAL */

/* LOGIN */
.request-withdrawal #main-container {
  margin-top: 0px;
  padding-top: 30px;
}

@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}
* {
  box-sizing: border-box;
}

.request-withdrawal {
  margin-bottom: 15px;
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 40px 20px;
  background: #ffffff;
  position: relative;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: max-height 1s ease-out;
}
.request-withdrawal *:not(input) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.request-withdrawal *:focus {
  outline: 0;
}
.request-withdrawal.loading button {
  max-height: 100%;
  padding-top: 50px;
}
.request-withdrawal.loading button .spinner {
  opacity: 1;
  top: 40%;
}
.request-withdrawal.ok button {
  background-color: #8bc34a;
}
.request-withdrawal.ok button .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}

.request-withdrawal span.state {
  font-size: 25px;
}

.request-withdrawal a {
  font-size: 0.8em;
  color: #2196f3;
  text-decoration: none;
}
.request-withdrawal .title {
  color: #444;
  font-weight: 300;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.request-withdrawal button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: #84cb27;
  color: #fff;
  display: block;
  margin: 20px 0px 20px 0px;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 4px;
}
.request-withdrawal button .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.request-withdrawal:not(.loading) button:hover {
  box-shadow: 0px 1px 3px #84cb27;
}
.request-withdrawal:not(.loading) button:focus {
  border-bottom-width: 4px;
}
.request-withdrawal button.disabled {
  background: #999;
  cursor: not-allowed;
  opacity: 0.65;
}

.request-withdrawal.mini {
  max-height: 130px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .navbar-top-links {
    max-height: 80px;
    overflow: hidden;
  }
  /*NAV BAR*/
  .navbar {
    margin-top: -3px !important;
    border-left: 0;
    border-right: 0;
    border-radius: 0 !important;
  }

  .navbar-default.is-subbar {
    background: #018cb9 !important;
    border-top: 0;
    box-shadow: 0px 1px 2px rgba(16, 74, 120, 0.54);
    border: 0px solid rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid rgba(199, 199, 202, 0.7);
    border-radius: 0;
  }

  /* Create a medium height at 40px */
  .navbar-md {
    min-height: 80px;
  }
  .navbar-md .navbar-brand,
  .navbar-md .navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .navbar-md .navbar-brand {
    height: 80px;
  }
  /*.navbar-md .navbar-toggle {margin: 12px 24px 12px 0px; padding: 12px 14px 12px 20px;}
  .navbar-md .navbar-toggle .icon-bar {width: 38px;}*/

  /* Create a small height at 30px */
  .navbar-sm {
    min-height: 50px;
  }
  .navbar-sm .navbar-brand,
  .navbar-sm .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-sm .navbar-brand {
    height: 50px;
  }
  .navbar-sm .navbar-toggle {
    margin: 3px 9px 3px 0px;
    padding: 4px 4px 4px 4px;
  }
  .navbar-sm .navbar-toggle .icon-bar {
    width: 16px;
  }

  .navbar-brand img {
    margin-top: -5px !important;
  }

  .navbar-md .navbar-nav ul,
  .navbar-md .navbar-nav li {
    height: 80px !important;
  }

  .navbar-md .navbar-nav li a {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-nav li,
  .navbar-nav li a {
    background: transparent !important;
  }

  .navbar-md .navbar-nav li a {
    font-weight: 600;
    padding: 7px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }

  .navbar-nav li.is-submenu.active {
    background: rgba(255, 255, 255, 0.4) !important;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
  }

  .navbar-top-links li.active {
    z-index: 1000 !important;
  }

  .navbar-nav li.is-submenu a,
  .navbar-nav li.active a {
    color: white !important;
  }

  .navbar-md .navbar-nav li.active {
    background: #018cb9 !important;
    color: #ffffff !important;
  }

  .navbar.has-undernavbar {
    margin-bottom: 0px !important;
  }

  .is-subbar ul {
    margin-bottom: -4px !important;
  }
}

@media screen and (max-width: 767px) {
  .nav > li > a {
    display: block;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: 300;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar li.is-submenu a {
    padding-top: 10px;
    padding-bottom: 10px !important;
  }

  .nav > li.is-submenu.active > a {
    background-color: #2196f3 !important;
    color: white !important;
  }

  .nav > li.is-submenu > a {
    font-size: 16px;
    padding-left: 15px;
    text-indent: 10px;
  }
  .nav > li.is-submenu:first-of-type {
    border-top: 1px solid rgb(185, 185, 185) !important;
  }

  .nav > li.is-submenu:last-of-type {
    border-bottom: 1px solid rgb(185, 185, 185) !important;
  }

  .nav > li.is-submenu {
    background: #f4f4f4;
  }
}

.jumbotron p {
  font-weight: 300;
}

#verification-field {
  display: none;
}

#login-field {
  display: block;
}

.footer p {
  font-size: 12px;
  font-weight: 400;
}

.jumbotron {
  min-height: 70vh;
  background: transparent;
}

.container .jumbotron {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

#message {
  font-size: 15px;
  padding: 5px;
}

@media only screen and (max-width: 768px) {
  #main-container {
    padding: 0 !important;
  }
}

@media (min-width: 480px) and (max-width: 991px) {
  .container {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

/* Start-page */
body {
  font-family: "Roboto", "Open Sans", "lucida grande", "Segoe UI", arial, verdana, "lucida sans unicode", tahoma,
    sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3d464d;
}

html {
  background-color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.list-group-item {
  border: 0;
  padding-left: 0;
  border-top: 1px solid;
  border-color: rgba(37, 40, 43, 0.1);
  padding: 20px 10px !important;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}

.list-group-item-column {
  min-height: 55px;
}

.invoice-row .center-vertical{
  position: static !important;
  transform: none !important;
  top: auto !important;
}

li.list-group-item:hover {
  background: rgba(221, 221, 221, 0.25);
}

li.list-group-child-item {
  background: rgba(221, 221, 221, 0.25);
}

li.list-group-child-item:hover {
  background: rgba(221, 221, 221, 0.5);
}

.list-group-item.new {
  background: rgba(255, 255, 0, 0.3);
}

.list-group-item.new:hover {
  background: rgba(255, 255, 0, 0.15);
}

.history-page .list-group-panel .panel-body,
.invoice-page .list-group-panel .panel-body,
.credit-page .list-group-panel .panel-body,
.loan-page .list-group-panel .panel-body {
  padding: 0 !important;
}

.list-group-item.loan {
  min-height: 180px;
}

.list-group .list-group-item:first-child {
  border: 0;
}
.list-group .list-group-item a {
  color: #545454;
  cursor: pointer;
  text-decoration: none;
}

.list-group .list-group-item a:first-child {
  font-weight: bold;
  font-size: 16px;
}
.list-group-item-icon {
  color: #e8e8e8;
}

.list-group .list-group-item.is-paid-out a span {
  color: #84cb27;
}

.list-group.list-group-header {
  padding: 0;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.list-group.list-group-body .glyphicon {
  font-size: 25px;
  vertical-align: middle;
}
.list-group-panel {
  border: 1px solid #ccdbeb;
  border-radius: 2px 2px 5px 5px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.list-item-status {
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  bottom: 1px;
  color: #323537;
  line-height: 1.2;
  padding: 3px 5px;
  font-size: 14px;
  left: 0;
  text-align: center;
}
.list-item-paid {
  background-color: #81cd1c;
  color: #fefefe;
}

.list-item-ok {
  background-color: #f0ad4e;
  color: #fefefe;
}

.list-item-fail,
.list-item-late {
  background-color: #d9534f;
  color: #fefefe;
}

.list-group .list-group-item a span.glyphicon-ok-sign {
  color: #81cd1c !important;
}

.list-group .list-group-item a span.glyphicon-ok-sign.orange {
  color: #f0ad4e !important;
}

.list-group .list-group-item a span.glyphicon-remove-sign {
  color: #d9534f !important;
}

span.list-item-sum {
  font-size: 18px !important;
  font-weight: 300 !important;
}

span.list-item-date {
  font-size: 13px !important;
}

a.list-item-readmore {
  font-weight: normal !important;
  border-bottom: 2px solid rgb(201, 201, 201) !important;
}
a.list-item-readmore i {
  color: rgb(165, 163, 174) !important;
}

p.file-row a {
  font-size: 14px !important;
  color: rgb(139, 137, 134) !important;
  margin-left: 5px;
  text-align: left;
}

.withdrawal-page p.file-row a {
  font-size: 14px !important;
}

.connrcted-files {
  padding-left: 0 !important;
}

.count-info .label {
  line-height: 12px;
  padding: 2px 5px;
  position: absolute;
  right: 4px;
  top: 8px;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
  width: 310px;
  min-width: 0;
}
.navbar-top-links .dropdown-messages {
  margin-left: 5px;
}
.navbar-top-links .dropdown-tasks {
  margin-left: -59px;
}
.navbar-top-links .dropdown-alerts {
  margin-left: -123px;
}
.navbar-top-links .dropdown-user {
  right: 0;
  left: auto;
}
.dropdown-messages,
.dropdown-alerts {
  padding: 10px 10px 10px 10px;
}
.dropdown-messages li a,
.dropdown-alerts li a {
  font-size: 12px;
}
.dropdown-messages li em,
.dropdown-alerts li em {
  font-size: 10px;
}
.nav.navbar-top-links .dropdown-alerts a {
  font-size: 12px;
}

.dropdown-menu {
  border: medium none;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
  display: none;
  float: left;
  font-size: 12px;
  left: 0;
  list-style: none outside none;
  padding: 0;
  position: absolute;
  text-shadow: none;
  top: 100%;
  z-index: 1000;
}
.dropdown-menu > li > a {
  border-radius: 3px;
  color: inherit;
  line-height: 25px;
  margin: 4px;
  text-align: left;
  font-weight: normal;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1ab394;
  outline: 0;
}
.dropdown-menu > li > a.font-bold {
  font-weight: 600;
}
.navbar-top-links .dropdown-menu li {
  display: block;
}
.navbar-top-links .dropdown-menu li:last-child {
  margin-right: 0;
}
.navbar-top-links .dropdown-menu li a {
  padding: 3px 20px;
  min-height: 0;
}
.navbar-top-links .dropdown-menu li a div {
  white-space: normal;
}

@media (min-width: 768px) {
  #page-wrapper {
    position: inherit;
    margin: 0 0 0 220px;
    min-height: 1200px;
  }
  .navbar-static-side {
    z-index: 2001;
    position: absolute;
    width: 220px;
  }
  .navbar-top-links .dropdown-messages,
  .navbar-top-links .dropdown-tasks,
  .navbar-top-links .dropdown-alerts {
    margin-left: auto;
  }

  .list-group-child-type-2,
  .list-group-child-type-3,
  .list-group-child-type-4,
  .list-group-child-type-5 {
    padding-left: 30px;
  }
}

.panel-heading h2 {
  font-weight: 300 !important;
}

.navbar-default .navbar-toggle {
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .navbar-default {
    background-color: #fff;
  }
}

.ibox {
  clear: both;
  margin-bottom: 25px;
  margin-top: 0;
  padding: 0;
}
.ibox.collapsed .ibox-content {
  display: none;
}
.ibox.collapsed .fa.fa-chevron-up:before {
  content: "\f078";
}
.ibox.collapsed .fa.fa-chevron-down:before {
  content: "\f077";
}
.ibox:after,
.ibox:before {
  display: table;
}
.ibox-title {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: #ffffff;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 2px 0 0;
  color: inherit;
  margin-bottom: 0;
  padding: 15px 15px 7px;
  min-height: 48px;
}
.ibox-content {
  background-color: #ffffff;
  color: inherit;
  padding: 15px 20px 20px 20px;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 0;
}
.ibox-footer {
  color: inherit;
  border-top: 1px solid #e7eaec;
  font-size: 90%;
  background: #ffffff;
  padding: 10px 15px;
}

.ibox-content {
  clear: both;
}
.ibox-heading {
  background-color: #f3f6fb;
  border-bottom: none;
}
.ibox-heading h3 {
  font-weight: 200;
  font-size: 24px;
}
.ibox-title h5 {
  display: inline-block;
  font-size: 14px;
  margin: 0 0 7px;
  padding: 0;
  text-overflow: ellipsis;
  float: left;
}
.ibox-title .label {
  float: left;
  margin-left: 4px;
}

/* BACKGROUNDS */
.gray-bg,
.bg-muted {
  background-color: #f3f3f4;
}
.white-bg {
  background-color: #ffffff;
}
.sunset-bg {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffa84c+0,ff7b0d+100;Orange+3D */
  background: #ffa84c; /* Old browsers */
  background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #ffa84c 0%,
    #ff7b0d 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa84c', endColorstr='#ff7b0d',GradientType=0 ); /* IE6-9 */
  color: #ffffff;
}

.sunset-bg a {
  color: white;
}
.navy-bg {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0db4e4+1,0197c8+100 */
  background: #0db4e4; /* Old browsers */
  background: -moz-linear-gradient(top, #0db4e4 1%, #0197c8 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #0db4e4 1%, #0197c8 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #0db4e4 1%,
    #0197c8 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0db4e4', endColorstr='#0197c8',GradientType=0 ); /* IE6-9 */
  color: #ffffff;
}

.navy-bg a {
  color: white;
}

.white-linear-bg {
  background-image: linear-gradient(#FFFFFF, #FEFEFE);
  color: "black";
}

.green-bg,
.bg-success {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#84cb27+1,6dad24+100 */
  background: #84cb27; /* Old browsers */
  background: -moz-linear-gradient(top, #84cb27 1%, #6dad24 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #84cb27 1%, #6dad24 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #84cb27 1%,
    #6dad24 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84cb27', endColorstr='#6dad24',GradientType=0 ); /* IE6-9 */
  color: #ffffff;
}

.text-success {
  color: #84cb27;
}

.text-danger {
  color: #ed5565;
}

.text-primary {
  color: #0db4e4;
}

.blue-bg,
.bg-primary {
  background-color: #1c84c6;
  color: #ffffff;
}
.lazur-bg,
.bg-info {
  background-color: #23c6c8;
  color: #ffffff;
}
.yellow-bg,
.bg-warning {
  background-color: #f8ac59;
  color: #ffffff;
}
.red-bg,
.bg-danger {
  background-color: #ed5565;
  color: #ffffff;
}
.black-bg {
  background-color: #262626;
}

/* WIDGETS */
.widget {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  padding: 15px 20px;
  margin-bottom: 10px;
}
.widget.style1 h2 {
  font-size: 30px;
}
.widget h2,
.widget h3 {
  margin-top: 5px;
  margin-bottom: 0;
}
.widget-text-box {
  padding: 20px;
  border: 1px solid #e7eaec;
  background: #ffffff;
}
.widget-head-color-box {
  border-radius: 5px 5px 0 0;
  margin-top: 10px;
}

/* Toastr custom style */
#toast-container > .toast {
  background-image: none !important;
}
#toast-container > .toast:before {
  position: fixed;
  font-family: FontAwesome;
  font-size: 24px;
  line-height: 24px;
  float: left;
  color: #fff;
  padding-right: 0.5em;
  margin: auto 0.5em auto -1.5em;
}
#toast-container > .toast-warning:before {
  content: "\f0e7";
}
#toast-container > .toast-error:before {
  content: "\f071";
}
#toast-container > .toast-info:before {
  content: "\f005";
}
#toast-container > .toast-success:before {
  content: "\f00C";
}
#toast-container > div {
  -moz-box-shadow: 0 0 3px #999;
  -webkit-box-shadow: 0 0 3px #999;
  box-shadow: 0 0 3px #999;
  opacity: 0.9;
  -ms-filter: alpha(opacity=90);
  filter: alpha(opacity=90);
}
#toast-container > :hover {
  -moz-box-shadow: 0 0 4px #999;
  -webkit-box-shadow: 0 0 4px #999;
  box-shadow: 0 0 4px #999;
  opacity: 1;
  -ms-filter: alpha(opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
.toast {
  background-color: #1ab394;
}
.toast-success {
  background-color: #81cd1c;
}
.toast-error {
  background-color: #ed5565;
}
.toast-info {
  background-color: #23c6c8;
}
.toast-warning {
  background-color: #f8ac59;
}
.toast-top-full-width {
  margin-top: 20px;
}
.toast-bottom-full-width {
  margin-bottom: 20px;
}

/* Validation */

.form-control,
.form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus,
.has-warning .form-control:focus,
.navbar-collapse,
.navbar-form,
.navbar-form-custom .form-control:focus,
.navbar-form-custom .form-control:hover,
.open .btn.dropdown-toggle,
.panel,
.popover,
.progress,
.progress-bar {
  box-shadow: none;
}

.form-control,
.single-line {
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
  font-size: 14px;
}
.form-control:focus,
.single-line:focus {
  border-color: #1ab394;
}
.has-success .form-control {
  border-color: #1ab394;
}
.has-warning .form-control {
  border-color: #f8ac59;
}
.has-error .form-control {
  border-color: #ed5565;
}
.has-success .control-label {
  color: #1ab394;
}
.has-warning .control-label {
  color: #f8ac59;
}
.has-error .control-label {
  color: #ed5565;
}
.input-group-addon {
  background-color: #fff;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 6px 12px;
  text-align: center;
}

label.error {
  color: #cc5965;
  display: inline-block;
  margin-left: 5px;
}
.form-control.error {
  border: 1px dotted #cc5965;
}
/* nav login*/
.login-page nav.navbar-top {
  display: none !important;
}

/* Timeline */

ul.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 10px;
  background: white;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}

.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.timeline > li > .timeline-date {
  color: #3e3e3e;
  width: 300px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -150px;
  background-color: rgba(255, 255, 255, 0.81);
  z-index: 100;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge.blue,
.timeline-badge.primary {
  background-color: #2e6da4 !important;
}

.timeline-badge.green,
.timeline-badge.success {
  background-color: #81cd1c !important;
}

.timeline-badge.orange,
.timeline-badge.warning {
  background-color: #f0ad4e !important;
}

.timeline-badge.red,
.timeline-badge.danger {
  background-color: #d9534f !important;
}

.timeline-badge.info {
  background-color: #5bc0de !important;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

@media (max-width: 767px) {
  /*ul.timeline:before {
        left: 40px;
    }*/

  ul.timeline:before {
    left: calc(100% - 40px);
    left: -moz-calc(100% - 40px);
    left: -webkit-calc(100% - 40px);
  }

  ul.timeline > li > .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
  }

  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}

.timeline-heading p {
  margin: 0;
}

.timeline-heading h4.timeline-title {
  font-size: 15px;
}

ul.timeline {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
ul.timeline > li {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/* NAVBAR TOGGLE */

.navbar-toggle {
  border: none;
  background: transparent !important;
}

.navbar-toggle:hover {
  background: transparent !important;
}

.pen .navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* ANIMATED X */
.navbar-toggle.x .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar-toggle.x .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggle.x .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

/* ANIMATED X COLLAPSED */
.navbar-toggle.x.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
/* END ANIMATED X */

/* PROGRESS BAR */
.progress-bar {
  background-color: #81cd1c;
}
.progress-small,
.progress-small .progress-bar {
  height: 10px;
}
.progress-small,
.progress-mini {
  margin-top: 5px;
}
.progress-mini.progress-fixed {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 100%;
}
.progress-mini,
.progress-mini .progress-bar {
  height: 5px;
  margin-bottom: 0;
}
.progress-bar-navy-light {
  background-color: #3dc7ab !important;
}
.progress-bar-none {
  background-color: #cdcacc !important;
}
.progress-bar-success {
  background-color: #81cd1c !important;
}
.progress-bar-info {
  background-color: #23c6c8 !important;
}
.progress-bar-warning {
  background-color: #f0ad4e !important;
}
.progress-bar-danger {
  background-color: #d9534f !important;
}

/* SLIDER */
.noUi-connect {
  background: #fafafa;
  /*background: none repeat scroll 0 0 #0db4e4;*/
  box-shadow: none;

  box-shadow: none;
  border-radius: 3px !important;
}

.noUi-target {
  background: #0db4e4; /* Old browsers */
  background: -moz-linear-gradient(top, #0db4e4 1%, #0197c8 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #0db4e4 1%, #0197c8 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #0db4e4 1%,
    #0197c8 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0db4e4', endColorstr='#0197c8',GradientType=0 ); /* IE6-9 */
  box-shadow: none !important;
}

body {
  background-repeat: no-repeat;
  background-size: cover;
}

.widget h2 {
  font-size: 27px;
}

.widget p.available-credit .requested-credit {
  font-size: 30px;
  font-weight: bold;
}
p.available-credit {
  margin: 0;
}

.sweet-alert {
  font-family: "Roboto", sans-serif !important;
  padding: 10px !important;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border-bottom: 3px solid #a2a2a2 !important;
  box-shadow: 0px 1px 3px #a2a2a2;
}

.sweet-alert h2 {
  color: #575757;
  margin-top: 4px !important;
  font-size: 24px !important;
  text-align: center !important;
  font-weight: 200 !important;
}

.sweet-alert button {
  font-weight: 400;
  font-size: 15px !important;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

@media only screen and (max-width: 400px) {
  .container {
    padding-right: 7px;
    padding-left: 7px;
  }
}

.login-page img.logo {
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 70px;
}

.center-vertical {
  position: relative;
  transform: translateY(50%);
  display: table-cell;
  vertical-align: middle;
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-bold {
  font-weight: bold;
}

.dept-summary tfoot {
  border-top: 2px solid rgb(210, 210, 210);
}

.dept-summary td {
  border-top: 1px solid #f4f4f4 !important;
}

.dept-summary tr:first-child td {
  border-top: 0px solid transparent !important;
}

.modal-content {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.99);
}

.modal-open {
  padding-right: 0px !important;
  overflow: auto;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  cursor: pointer;
}

a.non-link,
a.non-link:active,
a.non-link:hover {
  /*color: #9a9a9a !important;*/

  opacity: 0.5;
  cursor: default !important;
}

.request-withdrawal .request-withdrawal-disabled-overlay{
  position: absolute;
  top: 2px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  /* height: 100%; */
  z-index: 1000;
  border-radius: 2px;
}

.request-withdrawal .request-withdrawal-disabled-overlay .textContent {
  position: absolute;
  width: 100%;
  top: 30px;
}

.smz_loader_overlay {
  background-color: transparent !important;
}

.footer-logo {
  max-height: 40px;
}

/* centered columns styles */
.row-centered {
  text-align: center;
}
.col-centered {
  display: inline-block;
  float: none;
  /* reset the text-align */
  text-align: left;
  /* inline-block space fix */
  margin-right: -4px;
}

.col-fixed {
  /* custom width */
  width: 320px;
}
.col-min {
  /* custom min width */
  min-width: 320px;
}
.col-max {
  /* custom max width */
  max-width: 320px;
}

.footer-col {
  min-height: 80px;
}

.request-withdrawal.ok #account-credit-limit-slider {
  display: none;
}

.start-video-container {
  max-width: 260px;
  margin: 50px auto 10px;

  transition: max-width 1s;
  -moz-transition: max-width 1s;
  -webkit-transition: max-width 1s;
}

.start-video-container.video-playing {
  max-width: 720px;
}

.video-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 105%;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);

  transition: background-size 0.5s;
  -moz-transition: background-size 0.5s;
  -webkit-transition: background-size 0.5s;
  -o-transition: background-size 0.5s;
}

.video-container.video-thumb {
  cursor: pointer;
}

.video-container iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-container .play-button {
  height: 50px;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  display: block;
  top: 50%;
  width: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  padding: 0;

  transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
}

.video-container:hover {
  background-size: 110%;
}

.video-container:hover .play-button {
  background: rgba(0, 0, 0, 0.7);
}

.video-container:active .play-button {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.4);
}

.video-container .play-button i {
  font-size: 2.5rem;
  margin: 1.15rem 0 0 0.3rem;
  color: #fff;
}

@keyframes breathe-in-out {
  10% {
    transform: scale(1.25);
  }
  20% {
    transform: scale(1);
  }
}

#payment-menu-exclamation,
#document-menu-exclamation {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  color: #fff;
  background-color: #d9534f;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  text-align: center;
  vertical-align: text-bottom;
  animation-name: breathe-in-out;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform: scale(1);
  position: relative;
  top: -5px;
}

#payment-menu-exclamation .fa,
#document-menu-exclamation .fa {
  font-size: 10px;
  position: absolute;
  top: 1px;
  left: 4.5px;
}

@media (max-width: 767px) {
  #payment-menu-exclamation .fa,
  #document-menu-exclamation .fa {
    left: -5.5px;
  }
}

.invoice-pdf-link {
  font-size: 36px;
  line-height: 1.4;
  color: #2196f3 !important;
  margin-bottom: 0.5rem;
}

.invoice-pdf-link i {
  font-size: 0.75em;
  position: relative;
  top: -0.1em;
  margin-right: 0.3em;
}

#payment-form-reset {
  height: 34px;
  width: 34px;
  padding: 8px 0;
  margin-top: 5px;
}

#payment-number-input-container {
  height: 50.4px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

#payment-number-input,
#payment-number-low-input,
#payment-phone-number-input {
  -moz-appearance: textfield;
  height: 50.4px;
  width: 100%;
  margin: 0 auto;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
  color: transparent;
  background-color: rgba(221, 221, 221, 0.15);
}

#payment-phone-number-input {
  color: inherit;
}

#payment-number-input-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: #999;
  pointer-events: none;
}

#payment-number-input::-webkit-outer-spin-button,
#payment-number-input::-webkit-inner-spin-button,
#payment-number-low-input::-webkit-outer-spin-button,
#payment-number-low-input::-webkit-inner-spin-button,
#payment-phone-number-input::-webkit-outer-spin-button,
#payment-phone-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#payment-number-input:hover,
#payment-number-low-input:hover,
#payment-phone-number-input:hover {
  background-color: rgba(221, 221, 221, 0.25);
}

#payment-number-input:focus,
#payment-number-low-input:focus,
#payment-phone-number-input:focus {
  color: inherit;
  background-color: rgba(221, 221, 221, 0.35);
}

#payment-amount.with-number-input {
  height: 50.4px;
  width: 100%;
  position: absolute;
  top: 24.6px;
  pointer-events: none;
}
#payment-amount-low.with-number-input {
  height: 50.4px;
  width: 100%;
  position: absolute;
  top: 24.6px;
  pointer-events: none;
}

#credit-payment a,
#credit-payment-faq a {
  color: #2196f3;
}

#credit-payment a img {
  margin-top: -0.2em;
  margin-right: 0.5em;
}

#credit-payment-form .radio {
  margin-top: 0;
  margin-bottom: 2rem;
}

#credit-payment-form .payment-option {
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 4rem;
}

#credit-payment-form .payment-option:hover {
  background: rgba(221, 221, 221, 0.15);
}

#credit-payment-form .payment-option.selected {
  background: rgba(221, 221, 221, 0.35);
}

#credit-payment-form .payment-option-container {
  max-width: 350px;
  margin: 0 auto;
}

#credit-payment-form .bank-header,
#credit-payment-form .direct-header,
#credit-payment-form .autogiro-header {
  display: inline-block;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 0.1rem;
  position: relative;
}

#credit-payment-form .bank-header {
  top: 0.58rem;
}

#credit-payment-form .direct-header {
  top: 0.58rem;
}

#credit-payment-form .autogiro-header {
  top: 0.52rem;
}

#credit-payment-form .radio-button {
  top: 1.5rem;
  margin-left: -2.5rem;
}

#credit-payment-form .trustly-account-info {
  margin: 1.5rem 0;
}

#credit-payment-form .help-block {
  margin: 1rem 0 0;
}

#credit-payment-form .help-block .glyphicon-info-sign {
  color: #d9534f;
}

#credit-payment-form .trustly-logo {
  width: 100px;
}

#credit-payment-form .swish-logo {
  width: 100px;
}

#credit-payment-form .submit-button {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 2rem 2rem;
  margin: 0 auto;
  background: #81cd1c;
  color: #fff;
  outline: 0;
}

#credit-payment-form .submit-button:hover {
  background: #71bd0c;
}

#open-swish-m-commerce {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 2rem 2rem;
  margin: 0 auto;
  background: #81cd1c;
  color: #fff;
  outline: 0;
}

#open-swish-m-commerce:hover {
  background: #71bd0c;
}

.footer-payment-logos {
  display: inline-block;
  position: relative;
  max-width: 100px;
  vertical-align: middle;
}

.trustly-footer {
  width: 80px;
  margin-top: 7px;
  margin-bottom: 7px;
}

.swish-footer {
  width: 80px;
  margin-top: 7px;
  margin-bottom: 7px;
}

@media only screen and (max-width: 600px) {
  .footer-payment-logos {
    max-width: 60px;
  }

  .trustly-footer {
    width: 60px;
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .swish-footer {
    width: 60px;
    margin-top: 2px;
    margin-bottom: 2px;
  }
}

#payment {
  max-width: 600px;
}

#payment-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  padding: 0;
}

#payment-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes scaleAnimation {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawCircle {
  0% {
    stroke-dashoffset: 300px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  0% {
    stroke-dashoffset: 35px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

#successAnimationCircle {
  stroke-dasharray: 300px 300px;
  stroke: #81cd1c;
}

#failureAnimationCircle {
  stroke-dasharray: 300px 300px;
  stroke: #d9534f;
}

#successAnimationCheck {
  stroke-dasharray: 35px 35px;
  stroke: #81cd1c;
}

#failureAnimationCheck {
  stroke-dasharray: 35px 35px;
  stroke: #d9534f;
}

.failureAnimationCheckLine {
  stroke: #d9534f;
}

#successAnimation.animated,
#failureAnimation.animated {
  animation: 1s ease-out 0s 1 both scaleAnimation;
}

#successAnimation.animated #successAnimationCircle,
#successAnimation.animated #failureAnimationCircle {
  animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle;
}

#successAnimation.animated #successAnimationCheck {
  animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck;
}

#failureAnimation.animated .failureAnimationCheckLine {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 1s cubic-bezier(1, 0.2, 0.1, 1) forwards;
}

.invalid-feedback {
  color: #fd7e14;
}

#insuranceDialog .modal-dialog {
  position: fixed;
  top: 30%;
  left: 30%;
}

@media screen and (max-width: 767px) {
  .bootbox .modal-dialog {
    top: 20%;
  }
}
