/*=== mixins === */
/*lists */
*:focus::-moz-placeholder {
  color: transparent !important;
}

*[autofocus]::-moz-placeholder:focus {
  color: graytext !important;
}

*:focus:-moz-placeholder {
  color: transparent !important;
}

*[autofocus]:-moz-placeholder:focus {
  color: graytext !important;
}

*:focus::-webkit-input-placeholder {
  color: transparent !important;
}

*[autofocus]::-webkit-input-placeholder {
  color: graytext !important;
}

/*modules */
/*reset */
/*for firefox outline */
button::-moz-focus-inne,
input::-moz-focus-inne,
a::-moz-focus-inne {
  border: 0;
  outline: none;
}

button:focus,
input:focus,
a:focus {
  outline: none;
}

/*for fileds and buttons styles */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=time],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

select:invalid {
  color: #9b9b9b;
}

@font-face {
    font-family: 'ubunturegular';
    src: url('../fonts/ubuntu-r-webfont.woff2') format('woff2'),
         url('../fonts/ubuntu-r-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinssemibold';
    src: url('../fonts/poppins-semibold-webfont.woff2') format('woff2'),
         url('../fonts/poppins-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'ubuntumedium';
    src: url('../fonts/ubuntu-medium_allfont.net-webfont.woff2') format('woff2'),
         url('../fonts/ubuntu-medium_allfont.net-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'ubuntubold';
    src: url('../fonts/ubuntu-bold-webfont.woff2') format('woff2'),
         url('../fonts/ubuntu-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/*for textarea scroll and bottom margin */
textarea {
  vertical-align: top;
  overflow-y: auto;
}

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #a6a6a6;
  background: #fff;
}

.link {
  color: #a6a6a6;
  text-decoration: underline;
}
.link:hover, .link:focus {
  color: #a6a6a6;
  text-decoration: none;
}

.link-gray {
  color: #bbb;
  text-decoration: none;
}
.link-gray:hover, .link-gray:focus {
  color: #bbb;
  text-decoration: underline;
}

.link-lg {
  line-height: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.heading-standart {
  margin: 0 0 15px;
  line-height: 35px;
  font-size: 20px;
}

.responsive-img {
  width: 100%;
}

.full {
  width: 100%;
}

@media screen and (min-width: 480px) {
  .text-xs-right {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .text-sm-right {
    text-align: right;
  }
}

@media screen and (min-width: 992px) {
  .text-md-right {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .text-center-sm {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .text-center-xxs {
    text-align: center;
  }
}

.img-responsive {
  width: 100%;
}

.black {
  color: #2b2b2b;
}

.medium-font {
  font-weight: 500;
}

.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.main {
  flex: 1;
}

.container30 {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .container30 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 480px) {
  .container-xs-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.row0 {
  margin-right: 0;
  margin-left: 0;
}
.row0 > div {
  padding-left: 0;
  padding-right: 0;
}

.row4 {
  margin-right: -4px;
  margin-left: -4px;
}
.row4 > div {
  padding-left: 2px;
  padding-right: 2px;
}

.row10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row10 > div {
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 479px) {
  .col-xxs-12 {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
@media screen and (max-width: 479px) {
  .col-xxs-6 {
    width: 50%;
    float: left;
  }
}

.pad-top20 {
  padding-top: 20px;
}

.pad-top15 {
  padding-top: 15px;
}

.pad-top10 {
  padding-top: 10px;
}

.pad-bot {
  padding-bottom: 10px;
}

.btn {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 21px;
  border: 0;
  padding: 7px 18px;
  border-radius: 0;
  box-shadow: none;
}
.btn.btn-info, .btn.btn-info:hover, .btn.btn-info:focus {
  border: 2px solid #fff;
  padding: 5px 15px;
  background: none;
}
.btn.btn-success, .btn.btn-success:hover, .btn.btn-success:focus {
  background: #019FE3;
}
.btn.btn-success.disabled {
  background: #c2c2c2;
}
.btn.btn-lg {
  padding: 15px 18px;
  line-height: 20px;
}
.btn.btn-sm {
  padding: 5px 15px;
}
.btn.btn-xs {
  padding: 8px 10px 5px;
}
@media screen and (max-width: 767px) {
  .btn-block-sm {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .btn-xxs-block {
    display: block;
    width: 100%;
  }
}
.btn em {
  font-style: normal;
}
.btn em:last-child {
  margin-left: 10px;
}
.btn em:first-child {
  margin-right: 10px;
}

.control-label {
  line-height: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
  margin-bottom: 0;
}

.hr-bottom {
  border-bottom: 1px solid #d7d7d7;
}

.form-control {
  font-family: "Poppins", sans-serif;
  background: #fff;
  height: 35px;
  line-height: 21px;
  color: #a6a6a6;
  font-size: 14px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #e1e1e1;
  padding: 6px 15px;
}
.form-control:focus {
  background: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: none;
}
.form-control.form-lg {
  height: 45px;
  padding: 11px 15px;
}
.form-control.error {
  border: 1px solid #ebccd1;
  padding: 4px 17px;
  background: #f2dede;
  color: #a94442;
}
.form-control.error:focus {
  border: 1px solid #ebccd1;
  background: #f2dede;
  color: #a94442;
}

.form-control-error {
  border: 1px solid #ebccd1;
  padding: 4px 17px;
  background: #f2dede;
  color: #a94442;
}

.error .form-control-error,
.error .form-control {
  border: 1px solid #ebccd1;
  padding: 4px 17px;
  background: #f2dede;
  color: #a94442;
}
.error .form-control-error:focus,
.error .form-control:focus {
  border: 1px solid #ebccd1;
  background: #f2dede;
  color: #a94442;
}

select.form-control, select.form-control:focus {
  background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAfCAIAAACH7hGnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM4RDRGREQ0MkYxNDExRTY5RjI0RTdCMUZFMzQ4N0E1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM4RDRGREQ1MkYxNDExRTY5RjI0RTdCMUZFMzQ4N0E1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzhENEZERDIyRjE0MTFFNjlGMjRFN0IxRkUzNDg3QTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzhENEZERDMyRjE0MTFFNjlGMjRFN0IxRkUzNDg3QTUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5/RvW/AAAAjElEQVR42uzUwQZEIRQG4NuYtIgkIhLp/d+lJyjpHUpRmcPsrjuL6y6nf5HTcT6HFiHv/fEgr+NZtt9++3OklM45hND3aq1VSt3wlFLGmDEGaq015xw6l5Pvy27OGWMshCCEgKy1ppRu7F9rxRhba4B771DPOe+9H4AQQikFzjHGrzG0/6/t/9h/BBgA+6QvYe0Ppg4AAAAASUVORK5CYII=");
  background-position: 100% 0;
  background-size: auto 33px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 30px;
  overflow: hidden;
}

label.error {
  border: 1px solid #ef96a4;
  background: #fdbbbb;
  color: #a94442;
  padding: 5px 18px;
  font-weight: 400;
  font-size: 14px;
  z-index: 2;
}
label.error::after {
  left: 20px;
  bottom: -5px;
  position: absolute;
  margin: auto;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 7px solid #fdbbbb;
}
label.error::before {
  left: 20px;
  bottom: -7px;
  position: absolute;
  margin: auto;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 7px solid #ef96a4;
}

.relative-group {
  position: relative;
}

.form-group {
  position: relative;
}
.form-group.form-lg {
  margin-bottom: 30px;
}
.form-group label.error {
  position: absolute;
  left: 0;
  bottom: 102%;
  width: 100%;
}

.input-group-addon {
  border-radius: 0;
  border-color: #e1e1e1;
}
.input-group-addon.check {
  padding-top: 0;
}

.img-bordered {
  border: 1px solid #e1e1e1;
}

table.table-custom {
  margin-bottom: 2px;
}
table.table-custom.valign-top > thead > tr > th,
table.table-custom.valign-top > thead > tr > td,
table.table-custom.valign-top > tbody > tr > th,
table.table-custom.valign-top > tbody > tr > td {
  vertical-align: top;
}
table.table-custom.small-font > thead > tr > td,
table.table-custom.small-font > thead > tr > th,
table.table-custom.small-font > tbody > tr > td,
table.table-custom.small-font > tbody > tr > th {
  font-size: 12px;
}
table.table-custom.small-font > thead > tr > td .btn,
table.table-custom.small-font > thead > tr > th .btn,
table.table-custom.small-font > tbody > tr > td .btn,
table.table-custom.small-font > tbody > tr > th .btn {
  font-size: 12px;
}
table.table-custom .medium {
  font-weight: 500;
  color: #2a2a2a;
}
table.table-custom .pad-bot10:last-child {
  padding-bottom: 0;
}
table.table-custom > thead > tr > td,
table.table-custom > thead > tr > th,
table.table-custom > tbody > tr > td,
table.table-custom > tbody > tr > th {
  border-top: 0;
  line-height: 21px;
  padding: 8px 13px;
  font-size: 14px;
}
table.table-custom > thead > tr > td:first-child,
table.table-custom > thead > tr > th:first-child,
table.table-custom > tbody > tr > td:first-child,
table.table-custom > tbody > tr > th:first-child {
  border-radius: 4px 0 0 4px;
}
table.table-custom > thead > tr > td:last-child,
table.table-custom > thead > tr > th:last-child,
table.table-custom > tbody > tr > td:last-child,
table.table-custom > tbody > tr > th:last-child {
  border-radius: 0 4px 4px 0;
}
table.table-custom > thead > tr:nth-child(even) > td,
table.table-custom > thead > tr:nth-child(even) > th,
table.table-custom > tbody > tr:nth-child(even) > td,
table.table-custom > tbody > tr:nth-child(even) > th {
  background: #fff;
}
table.table-custom > thead > tr > td,
table.table-custom > tbody > tr > td {
  vertical-align: middle;
}
table.table-custom > thead > tr > th,
table.table-custom > tbody > tr > th {
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 500;
}

.th-checkbox {
  width: 47px;
}

.th-price {
  width: 100px;
}

.th-one {
  width: 40%;
}

.th-two {
  width: 20%;
}

.th-flex {
  width: 1%;
}

.table-responsive {
  margin-bottom: 0;
}

.td-nowrap {
  white-space: nowrap;
}

.td-align-bottom {
  vertical-align: bottom !important;
}

.cell-danger {
  background: #f2dede !important;
}

.cell-more-btns .btn {
  margin-bottom: 20px;
}
.cell-more-btns .btn:last-child {
  margin-bottom: 0;
}

.alert {
  border-radius: 0;
  padding: 11px 15px;
}

input.radio-custom {
  opacity: 0;
  visibility: hidden;
  width: 21px;
  height: 21px;
}

div.radio-custom {
  width: 21px;
  height: 21px;
  border-radius: 21px;
  border: 1px solid #e1e1e1;
  background: #fff;
  box-shadow: none;
  position: absolute !important;
  left: 0;
  top: 0;
}
div.radio-custom.checked, div.radio-custom.focused {
  border: 1px solid #e1e1e1;
}
div.radio-custom.checked .jq-radio__div {
  width: 9px;
  height: 9px;
  border-radius: 9px;
  border: 0;
  box-shadow: none;
  background: #019FE3;
  margin: 5px 0 0 5px;
}

label.checkbox-label,
label.radio-label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-weight: 400;
}
label.checkbox-label.empty,
label.radio-label.empty {
  padding-left: 21px;
}

input.checkbox-custom {
  opacity: 0;
  visibility: hidden;
  width: 21px;
  height: 21px;
}

div.checkbox-custom {
  width: 21px;
  height: 21px;
  border: 1px solid #e1e1e1;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
  position: absolute !important;
  left: 0;
  top: 0;
}
div.checkbox-custom.checked, div.checkbox-custom.focused {
  border: 1px solid #e1e1e1;
}
div.checkbox-custom.checked .jq-checkbox__div {
  background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAJCAYAAAAGuM1UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkNBNzNDN0EyMzc4MDExRTZBQkQ1OEVEQkJGQkU4MTJDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkNBNzNDN0EzMzc4MDExRTZBQkQ1OEVEQkJGQkU4MTJDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0E3M0M3QTAzNzgwMTFFNkFCRDU4RURCQkZCRTgxMkMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0E3M0M3QTEzNzgwMTFFNkFCRDU4RURCQkZCRTgxMkMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7aba5jAAAAcUlEQVR42mKM3mLMQAQoB2IXIA5jIVJxB5S9mwlJwpiAYhB4D9OwG4jPAHEaHsV7gNiVBcl9IDATSgtiUwxigDTMAuJQJCfNRHMWXDEIgJz0HipwFosfUBTDNDDg0ARih6GbgBysME1nkNjv0TUABBgASTUaKFsLVYMAAAAASUVORK5CYII=");
  width: 12px;
  height: 9px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  margin: 6px 0 0 3px;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list > li {
  margin-bottom: 5px;
}
.check-list > li:last-child {
  margin-bottom: 0;
}

.ui-widget-content {
  margin-top: -2px;
  border-color: #e1e1e1;
  padding: 4px 0;
}
.ui-widget-content .ui-menu-item {
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
}
.ui-widget-content .ui-menu-item a {
  line-height: 21px;
  padding: 6px 15px;
  font-family: "Poppins", sans-serif;
  background: #fff;
  font-size: 14px;
  display: block;
  overflow: hidden;
}
.ui-widget-content .ui-menu-item a span {
  display: block;
}
.ui-widget-content .ui-menu-item .number,
.ui-widget-content .ui-menu-item .type,
.ui-widget-content .ui-menu-item .name {
  float: left;
  width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-widget-content .ui-menu-item .category {
  float: right;
  width: 50%;
  text-align: right;
  color: #a6a6a6;
}
.ui-widget-content .ui-menu-item:nth-child(even) {
  background: #f3f3f3;
}
.ui-widget-content .ui-menu-item.ui-state-focus a {
  background: #019FE3;
  color: #fff;
  text-decoration: none;
}
.ui-widget-content .ui-menu-item.ui-state-focus a .category {
  color: #fff;
}

.ideal-logo {
  padding: 30px 0;
}

.list-group-item {
  border-radius: 0 !important;
  margin-bottom: 0;
  border-bottom: 0;
}
.list-group-item:last-child {
  border-bottom: 1px solid #ddd;
}
.list-group-item.gray {
  background: #f3f3f3;
}

.list-group.badge-left .badge {
  float: none;
  padding: 8px 7px 3px;
  margin-right: 10px;
}

.modal-title {
  color: #2a2a2a;
}

.modal-content {
  border-radius: 0;
}

.header-top .logo {
  padding: 17px 0 27px;
}
.header-top .contacts {
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .header-top .contacts {
    padding-top: 83px;
  }
}
@media screen and (max-width: 767px) {
  .header-top .contacts {
    padding-bottom: 20px;
  }
}
.header-top .contacts strong {
  font-weight: 500;
}

.header-middle {
  background: #019FE3;
  padding: 18px 0 3px;
}
.header-middle.pad10 {
  padding: 10px 0;
}
.header-middle p {
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  margin: 15px 0;
}
.header-middle h3 {
  font-size: 20px;
  line-height: 25px;
  margin: 0;
  color: #fff;
  padding: 5px 0;
  font-weight: 400;
}
@media screen and (min-width: 480px) {
  .header-middle .btn {
    width: 150px;
  }
  .header-middle .btn.simple {
    width: auto;
  }
}

.navbar-clear {
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
}
@media screen and (min-width: 768px) {
  .navbar-clear .navbar-nav > li {
    margin-right: 2px;
  }
}
@media screen and (max-width: 767px) {
  .navbar-clear .navbar-nav > li {
    margin-bottom: 2px;
  }
}
.navbar-clear .navbar-nav > li > a {
  -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  text-transform: uppercase;
}
.navbar-clear .navbar-nav .navbar-toggle {
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .navbar-clear .navbar-left {
    margin-left: -15px;
  }
}
.navbar-clear.green .navbar-nav > li > a {
  color: #fff;
  padding-top: 17px;
  padding-bottom: 14px;
}
.navbar-clear.green .navbar-nav > li > a:hover, .navbar-clear.green .navbar-nav > li > a:focus {
  color: #019FE3;
  background: #fff;
}
.navbar-clear.green .navbar-nav > li.active > a {
  color: #019FE3;
  background: #fff;
}
.navbar-clear.green .navbar-toggle {
  border-color: #fff;
  border-radius: 0;
}
.navbar-clear.green .navbar-toggle .icon-bar {
  background: #fff;
}
.navbar-clear.gray .navbar-nav > li > a {
  color: #a6a6a6;
}
.navbar-clear.gray .navbar-nav > li > a:hover, .navbar-clear.gray .navbar-nav > li > a:focus {
  background: #fff;
}
.navbar-clear.gray .navbar-nav > li.active > a {
  background: #fff;
}
.navbar-clear.gray .navbar-toggle {
  border-color: #a2a2a2;
  border-radius: 0;
}
.navbar-clear.gray .navbar-toggle .icon-bar {
  background: #a2a2a2;
}

.header-bottom {
  background: #fafafa;
  border-bottom: 1px solid #e1e1e1;
}

.header .list-group {
  margin-top: 13px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .header .list-group {
    margin-bottom: 13px;
  }
}
.header .list-group a:not(.btn) {
  color: #2a2a2a;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .header-top .input-group {
    padding-top: 37px;
  }
}

.main {
  padding-top: 45px;
}

.block-title {
  color: #136697;
  padding: 5px 0 32px;
}
@media screen and (max-width: 767px) {
  .block-title {
    padding-bottom: 22px;
  }
}
.block-title h2 {
  font-size: 34px;
  line-height: 40px;
  margin: 0;
  font-weight: 300;
}

.panel-custom {
  background: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .panel-custom {
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 767px) {
  .panel-custom {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .panel-custom .panel-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .panel-custom .panel-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.panel-custom .panel-content {
  padding-top: 38px;
}
.panel-custom .panel-content p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 32px;
}
.panel-custom .panel-content-other {
  min-height: 290px;
}
.panel-custom .panel-content-other p {
  line-height: 23px;
  margin-bottom: 20px;
}
.panel-custom .panel-heading {
  background: #019FE3;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  border-radius: 0;
  margin: -1px -1px 0 -1px;
}
@media screen and (min-width: 768px) {
  .panel-custom .panel-heading {
    padding-left: 31px;
    padding-right: 31px;
  }
}
@media screen and (max-width: 767px) {
  .panel-custom .panel-heading {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.panel-custom .panel-heading .glyphicon-menu-down {
  cursor: pointer;
  right: 25px;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
  height: 26px;
  width: 24px;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .panel-custom .panel-heading .glyphicon-menu-down {
    right: 11px;
  }
}
.panel-custom .panel-heading .title {
  padding: 7px 0;
}
.panel-custom .panel-heading h3 {
  font-size: 17px;
  line-height: 21px;
  margin: 0;
  font-weight: 400;
}

.user-steps {
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .user-steps {
    padding-bottom: 0;
  }
}

.us-box {
  border: 1px solid #e1e1e1;
  padding: 15px 20px;
  position: relative;
  margin-bottom: 30px;
  display: block;
}
.us-box:hover, .us-box:focus {
  text-decoration: none;
}
@media screen and (min-width: 480px) and (max-width: 1199px) {
  .us-box {
    min-height: 107px;
  }
}
.us-box .glyphicon {
  right: 17px;
  top: 14px;
  position: absolute;
  margin: auto;
  color: #019FE3;
  font-size: 18px;
}
.us-box::before {
  left: -31px;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
  display: block;
  width: 30px;
  height: 2px;
  background: #e1e1e1;
  content: "";
}
@media screen and (max-width: 479px) {
  .us-box::before {
    left: 0;
    right: 0;
    width: 2px;
    height: 30px;
    top: -31px;
    bottom: auto;
  }
}
.us-box.active {
  border: 2px solid #019FE3;
  padding: 14px 19px;
}
.us-box.active::before {
  left: -32px;
  background: #019FE3;
}

.user-steps__col:first-child .us-box::before {
  display: none;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .user-steps__col:nth-child(3) .us-box::before {
    display: none;
  }
}

.us-label {
  color: #a6a6a6;
  font-size: 15px;
  line-height: 20px;
  padding: 4px 0 11px;
}

.us-title {
  font-size: 20px;
  line-height: 20px;
  color: #136697;
}

#chartdiv {
  width: 100%;
  height: 300px;
  font-size: 11px;
}

.amcharts-chart-div > a {
  display: none !important;
}

.footer {
  background: #f0f0f0;
  padding: 21px 0;
}

.copyright {
  color: #a6a6a6;
  font-size: 12px;
  line-height: 20px;
}

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

.header-top {
    background: #604580;
}
.header-top .logo {
    padding: 0;
}
.footer .copyright {
  color: #2b2b2b;
  line-height: 1;
  font-family: 'ubuntumedium';
}
.padding-0 {
  padding: 0;
}

.top-content-login {
  position: relative;
  text-align: left;
  min-height: 318px;
  background: #009fe3 url(../img/groenhorst-login-3.png) no-repeat 100%;
}
.top-content-login .login-top-text {
  color: #fff;
  padding: 30px;
}
.top-content-login .login-top-text h3 {
  font-size: 18px;
  margin: 0;
  line-height: 25px;    
  font-family: 'poppinssemibold';
}
.top-content-login .login-top-text p {
  font-size: 13.5px;
  line-height: 25px;
  font-family: 'ubunturegular';
}
.panel.panel-custom .block-title {
    padding: 30px 30px 0px;
}
.panel.panel-custom h2 {
  font-family: 'ubuntumedium';
    font-size: 23px;
    color: #009fe3;
    line-height: 1;
    margin: 0 0 22px 0;
}
.inloggen-content .panel-custom .panel-body {
  padding-top: 0px;

}
.inloggen-content .panel-custom .panel-body .form-group {
  margin: 0 0 26px;
}
.inloggen-content .panel-custom .panel-body .form-group input.form-control.form-lg {
  font-size: 15px;
    font-family: 'ubuntumedium';
    color: #727272;
    font-weight: 500;
}
.inloggen-content .panel-custom .panel-body .form-group label {
  font: 14px 'ubuntumedium';
  font-weight: 400;
  margin-bottom: 6px;
  padding: 0;
}
.inloggen-content .panel-custom .panel-body .form-group .btn-success {
    background: #e16a02;
    padding: 15px 64px;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    font-family: 'ubuntubold';
    font-size: 14px;
    text-transform: uppercase;
}
.inloggen-content .panel-custom .panel-body a.link-gray {
  text-decoration: none;
    color: #2b2b2b;
    font-family: 'ubuntumedium';
    font-size: 15px;
    font-weight: 500;
}
.inloggen-content p {
    color: #717171;
    padding-top: 16px;
    border-top: 1px solid #e1e1e1;
    margin: 0 0 15px;
    font-family: 'ubuntumedium';
}
.inloggen-content address {
    font: 14px/1.55 'ubunturegular', Helvetica, sans-serif;
    color: #2f2f2f;
    margin: 0;
}
.inloggen-content .blocks {
  display: flex;
  margin-bottom: 15px;
}
.inloggen-content .box-left {
  padding-left: 0;
}
.inloggen-content .box-right {
  padding-right: 0;
}
.top-line {
  margin-top: 17px;
}
.inloggen-content .blocks .col-md-4.form-group.form-lg {
    padding: 0;
}
.inloggen-content .blocks .col-md-4.form-group.form-lg:not(:last-child) {
    margin-right: 27px;
}