/*Common css*/
html {
  height: 100%;
  box-sizing: border-box;
}

body {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  margin: 0;
  padding-bottom: 323px;
  min-height: 100%;
  color: #666;
  background-color: rgb(237, 242, 235);
}

.grey-bg {
  background: #F1F1F1;
}

.green-bg {
  background-color: #78c154;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-weight: 700;
}

.text-amount {
  font-weight: 700;
}

.sub-topics {
  margin-bottom: 5px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.dark-text {
  color: #000 !important;
}

.primary-text {
  color: #6cc250;
}

.sub-text {
  font-size: 11px;
  color: #999;
}

a {
  color: #78c154;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
a:hover, a:active, a:focus {
  text-decoration: none;
  color: #63a244;
  cursor: pointer;
}

a.link:hover {
  text-decoration: underline;
}

button {
  border: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.btn {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-size: 13px;
  padding: 14px 25px;
}

.btn-small {
  padding: 6px 8px;
}

.btn:focus,
button,
input {
  outline: none !important;
}

input.error {
  border-color: #ffafa6 !important;
  border-width: 2px !important;
  -webkit-box-shadow: inset 0 0 10px 0 #ffdbd7;
  box-shadow: inset 0 0 10px 0 #ffdbd7;
  margin-bottom: 8px !important;
}

.common-btn,
.common-btn:hover,
.common-btn:focus {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.circle-btn {
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.primary-btn {
  background-color: #78c154;
}

.primary-btn:hover {
  background-color: #63a244;
}

.secondary-btn {
  background-color: #ff9800;
}

.secondary-btn:hover {
  background-color: #ff8704;
}

.error-btn {
  background-color: #ec644b
}

.error-btn:hover {
  background-color: #ec4846
}

.inactive-btn {
  background-color: #bbb;
}

.inactive-btn:hover {
  background-color: #aaa;
}

.squire-btn {
  padding: 10px 15px;
  color: #fff;
  background-color: #c8d2d7;
}

.squire-btn:hover {
  background-color: #bfcbd2;
}

.transparent-btn {
  background-color: transparent;
  color: #63a244;
  font-weight: 700;
}

.transparent-btn:hover {
  background-color: transparent;
  color: #63a244;
  text-decoration: underline;
}

.paragraph-btn {
  margin-top: -7px;
}

.upload-btn {
  padding: 20px;
  text-align: center;
  color: #999;
  border: 1px dashed #ddd;
  background-color: #fff;
}

.upload-btn:hover {
  background-color: #f5f5f5;
}

.add-more-btn {
  font-size: 30px;
  padding: 10px;
  text-align: center;
  color: #bbb;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin: 0 auto;
  line-height: 53px;
}

/*.btn-group button {*/
  /*border-color: rgba(0, 0, 0, 0.1);*/
/*}*/

.btn-group>.btn:first-child {
  width: 80%;
}

.btn-group>.dropdown-toggle {
  width: 20%;
}

.badge {
  font-size: 12px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 2px 8px;
}

.icon {
  vertical-align: middle;
}

.result {
  font-size: 12px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 1px 4px 1px 4px;
  color: #fff;
}

.badge.info {
  background-color: #f18426;
}

.result.success {
  background-color: #27ae60;
}

.result.failed {
  background-color: #e74c3c;
}

.result .material-icons {
  font-size: 8px;
}

.inline-action-btn {
  margin-top: -10px;
}

.title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  text-align: center;
  margin: -12px 0 23px;
  padding: 0;
  text-transform: none;
  line-height: 40px;
}

.section-header {
  padding: 5px 15px 0 15px;
}

.half-width {
  width: 50%;
}

.full-width {
  width: 100%;
}

.common-list {
  margin: 0;
  padding: 0;
}

.common-list li {
  list-style: none;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-right-20 {
  margin-right: 20px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-left-20 {
  margin-left: 20px;
}

.border-right {
  border-right: 1px solid #eee;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
select {
  width: 100%;
  line-height: 30px;
  padding: 4px 13px;
  border: 1px solid #e5e5e5;
  color: #666;
  margin-bottom: 20px;
  clear: both;
  display: block;
  min-height: 50px;
  border-radius: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='tel']:focus,
select:focus {
  border-color: #83db51;
  outline: none;
}

input[type=checkbox]:checked:before {
  color: #83db51;
  content: '\f00c';
  margin: 0;
  float: left;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 14px;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type=radio]:checked:before {
  color: #83db51;
  content: '\f111';
  margin: 0;
  float: left;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  left: 4px;
  top: 3px;
  position: relative;
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 13px;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type=radio] {
  border: 1px solid #acacac;
  background: #fff;
  color: #555;
  clear: none;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 4px 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: middle;
  width: 21px;
  min-width: 21px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  -webkit-transition: .05s border-color ease-in-out;
  transition: .05s border-color ease-in-out;
}

input[type='text'],
select,
.form-control,
.input-group-addon {
  -webkit-border-radius: 0;
  border-radius: 0;
}

input[type='submit'] {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
}

.inner-addon {
  position: relative;
}

.right-addon .glyphicon {
  right: 0;
}

.inner-addon .glyphicon {
  position: absolute;
  padding: 15px 10px;
  pointer-events: none;
}

.inner-addon.error .glyphicon {
  color: #ff7b81;
}

.form-control:focus {
  border: 1px solid rgba(255, 152, 0, 0.37) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(255, 152, 0, 0.16), 0 0 8px rgba(255, 152, 0, 0.44);
}

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.small-column {
  width: 90px;
}

.medium-column {
  width: 150px;
}

.filter-start-date {
  position: relative;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}

.filter-start-date input {
  height: 50px;
  padding: 20px 25px 0 10px;
  margin-bottom: 0;
  border: none;
}

.filter-start-date label {
  position: absolute;
  padding: 7px 0 0 11px;
  font-size: 11px !important;
  color: #6cc250;
}

.filter-start-date span {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #6cc250;
  pointer-events: none;
  cursor: pointer;
}

.filter-start-date .fa {
  font-size: 20px;
}

/*Nav Bar Reset css*/
.navbar {
  margin-bottom: 0;
}

.navbar-default {
  background-color: transparent;
  border-color: transparent;
  padding-top: 25px;
  padding-bottom: 15px;
}

.navbar-brand {
  padding: 10px 15px;
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
  color: #fff;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
  color: #fff;
  background-color: transparent;
}

.navbar-default .navbar-nav>li>a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #78c154;
  margin-top: 10px;
  -webkit-transition: .3s;
  transition: width .3s;
}

.navbar-default .navbar-nav>li>a:hover::after {
  width: 100%;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
  background-color: transparent;
  color: #fff;
}

.navbar-default .navbar-nav>li.active>a::after {
  content: '';
  display: block;
  width: auto;
  height: 2px;
  background: #78c154;
  -webkit-transition: .3s;
  transition: width .3s;
}

.dropdown-menu {
  border-radius: 0;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  padding: 0;
  right: 0;
}

.dropdown-menu>li>a {
  padding: 10px;
  color: #999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-toggle .icon {
  vertical-align: middle;
}

/*Error Page css*/
.error-page {
  padding: 40px 20px;
  color: #999;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

.error-page h3 {
  color: #777;
  font-weight: 300;
}

/*Page Title Area, Page Content Area Based Styles*/
.breadcrumbs-wrapper {
  position: relative;
}

.breadcrumbs-wrapper .breadcrumbs {
  padding: 13px 0;
  margin: 0;
  /*border-bottom: 1px solid #eee;*/
}

.breadcrumbs-wrapper .breadcrumbs li {
  color: #666;
  line-height: 25px;
  display: inline-block;
  list-style: none;
}

.breadcrumbs-wrapper .breadcrumbs li a {
  color: #666;
  line-height: 25px;
  display: inline-block;
  margin-right: 5px;
}

.breadcrumbs-wrapper .breadcrumbs li a:hover {
  color: #83db51;
}

.breadcrumbs-wrapper .breadcrumbs a:after {
  content: '\f105';
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  margin:0 0 0 10px;
  text-decoration:none;
}

.breadcrumbs-wrapper .breadcrumbs-wrapper__action-btn {
  position: absolute;
  right: 15px;
  top: 8px;
}

.switch-layout-container {
  margin-bottom: 15px;
  min-height: 54px;
}

.switch-layout-container .switch-layout {
  float: left;
}

.switch-layout-container .switch-layout a {
  font-size: 18px;
  display: inline-block;
  line-height: 34px;
  margin-right: 5px;
  color: #ccc;
}

.switch-layout-container .switch-layout a.switch-active, .switch-layout-container .switch-layout a:hover {
  color: #83db51;
}

.switch-layout-container .dropdown {
  padding: 16px 10px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  position: relative;
}

.switch-layout-container .dropdown-toggle {
  padding: 10px 15px;
}

.switch-layout-container .dropdown-toggle .caret {
  float: right;
  margin-top: 9px;
}

.switch-layout-container .dropdown-toggle .device-name {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 25px 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.switch-layout-container .dropdown-toggle .device-id {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  padding: 28px 25px 0 10px;
  font-size: 11px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.switch-layout-container .dropdown-toggle .icon {
  font-size: 20px;
  line-height: 20px;
}

.switch-layout-container .dropdown-menu {
  margin-top: 0;
  right: 0;
  left: 0;
}

.switch-layout-container .dropdown-menu img {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  float: left;
  margin-right: 10px;
}

.switch-layout-container .dropdown-menu .main-data {
  font-weight: 700;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.switch-layout-container .dropdown-menu .sub-data {
  font-size: 11px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.thim-product-switch-wrap .woocommerce-result-count {
  display: inline-block;
  line-height: 34px;
  font-size: 13px;
  color: #999;
  margin-left: 5px;
  margin-bottom: 0;
}

.woocommerce-ordering {
  margin: 0;
}

.thim-product-switch-wrap form.woocommerce-ordering select {
  font-size: 13px;
  color: #999;
  line-height: 20px;
  padding: 6px 0 6px 10px;
  border-radius: 0;
  width: 100%;
  height: 52px;
  min-height: 34px;
  border: 1px solid #e5e5e5;
  outline: 0;
  vertical-align: top;
  margin: 0;
}

.switch-layout-type li {
  display: inline-block;
  text-align: center;
  margin-left: 10px;
  margin-top: 5px;
}

.switch-layout-type li a {
  color: #666;
}

.switch-layout-type li a:focus,
.switch-layout-type li a:hover {
  color: #6cc250;
}

.switch-layout-type li.active a {
  color: #6cc250;
}

.switch-layout-type li .icon {
  font-size: 28px;
  line-height: 20px;
}

.switch-layout-type li p {
  margin-bottom: 0;
}

.device-state {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 5px 10px;
  color: #fff;
  font-weight: 300;
}

.device-state.active {
  background-color: #78c154;
}

.device-state.inactive {
  background-color: #ec644b;
}

.device-state.suspended {
  background-color: #ff9800;
}

.device-warranty {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 5px;
  color: #fff;
  margin-right: 10px;
}

.device-warranty.active {
  background-color: #27ae60;
}

.device-warranty.expired {
  background-color: #e74c3c;
}

/*Calendar reset css*/
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover {
  background-color: #3498db;
  background-image: none;
}

.datepicker-dropdown.dropdown-menu {
  left: auto;
  right: auto;
}

.datepicker-dropdown.dropdown-menu table {
  display: table;
}

.datepicker-dropdown.dropdown-menu thead {
  display: table-header-group;;
}

.datepicker-dropdown.dropdown-menu tbody {
  display: table-row-group;
}

.datepicker-dropdown.dropdown-menu tr {
  display: table-row;
}

.datepicker-dropdown.dropdown-menu th {
  display: table-cell;
}

.datepicker-dropdown.dropdown-menu td {
  display: table-cell;
}


/*Pagination Reset*/
.pagination {
  float: right;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
  background-color: #83db51;
  border-color: #6dbd49;
}

.pagination>li>a,
.pagination>li>span {
  color: #aaa;
  border: 1px solid #e5e5e5;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
  background-color: #83db51;
  border-color: #6dbd49;
  color: #fff;
}

/*Line Chart Reset css*/
.bi-wrp.bi-default-theme.bi-cRange-critical .bi-barInner {
  background-color: #EC644B;
}

/*Table css*/
.table-striped>tbody:nth-of-type(odd) tr {
  background-color: #f5f7fa;
  border-left: 3px solid transparent;
}

.table-striped>tbody:nth-of-type(even) tr {
  background-color: transparent;
  border-left: 3px solid transparent;
}

.table-hover>tbody>tr:hover {
  background-color: #eeeeee;
  border-left: 3px solid #6cc250;
  cursor: pointer;
}

.table-hover>tbody>tr.non-clickable:hover {
  cursor: default;
}

.table>tbody+tbody {
  border-top: 0;
}

.table.table-without-border tr,
.table.table-without-border tr th,
.table.table-without-border tr td {
  border: 0;
  vertical-align: middle;
  font-weight: 300;
}

.payment-history-table {
  background-color: #fff;
  padding: 0 15px;
}

.payment-history-table tr {
  height: 65px;
}

.payment-history-table tr.active {
  border-right: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-left: 3px solid #6cc250 !important;
}

.payment-history-table__payment-method {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 5px;
  color: #fff;
  font-weight: 300;
  background-color: #78c154;
  font-size: 12px;
}

.payment-history-table.empty {
  padding: 100px 20px;
  text-align: center;
}

.payment-history-table.empty .icon {
  font-size: 40px;
}

.payment-history-table.empty .loading-back {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  padding-top: 150px;
}

.payment-history-table.empty .loader {
  position: absolute;
  top: 0;
  text-indent: 0;
  color: transparent;
}

.table-sub-topic {
  cursor: default !important;
  border-left: 3px solid transparent !important;
  background-color: #fff !important;
}

.table-details-area--close {
  float: right;
  font-size: 40px;
  cursor: pointer;
  margin-top: -13px;
}

.table-details-area {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  max-height: 0;
  position: absolute;
  overflow: hidden;
  opacity: 0;
}

.table-details-area.open {
  border-left: 3px solid #6cc250 !important;
  border-right: 1px solid #e5e5e5 !important;
  border-bottom: 1px solid #e5e5e5 !important;
  cursor: default !important;
  background: #fff !important;
  position: relative;
  opacity: 1;
}

.table-details-area__content {
  padding-top: 15px;
  margin-left: 78px;
  margin-right: 78px;
}

.table-details-area tr {
  height: auto;
  background-color: #fff !important;
}

.table-details-area th,td {
  padding: 4px 8px !important;
}

.table__date-column {
  text-align: center;
}

.table__date-column .month {
  display: block;
  text-transform: uppercase;
  color: #999;
}

.table__date-column .date {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.table__expand-column .main-data {
  font-size: 15px;
  display: block;
  font-weight: 700;
}

.table__expand-column .sub-data {
  font-size: 11px;
  display: block;
  color: #999;
}

.table .value-row {
  font-size: 13px;
  text-align: right;
}

.table .value-row {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.table .value-row__currency {
  color: #999;
  font-size: 13px;
}

.table .value-row__currency-amount {
  float: right;
  margin-top: 3px;
}

/*Modal css*/
.modal__with-tabs .modal-header {
  padding: 15px 15px 40px 15px;
}

.modal__with-tabs .modal__primary-tabs {
  margin-top: -54px;
  margin-bottom: 5px;
}

.modal__with-tabs .modal__primary-tabs .nav-tabs {
  border-bottom: 0;
}

.modal-content {
  border-radius: 0;
}

.modal-header {
  border-bottom: 0;
}

.modal button.close {
  position: absolute;
  right: 10px;
  top: 7px;
  z-index: 1046;
}

.modal-image-header-details {
  padding-right: 0;
}

.modal-image-header {
  padding: 20px 0;
  color: #fff;
}

.modal-image-header h4 {
  color: #fff;
}

.modal-body {
  padding-top: 0;
}

.modal-body .body-section-details {
  padding: 10px;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

.modal-body .body-section-details h5 {
  margin-top: 0;
}

.body-section-details {
  padding: 5px 15px;
}

.modal-body .form-control {
  margin-bottom: 5px;
  padding-left: 5px;
  font-size: 13px;
}

.modal-body .input-group .form-control {
  margin-bottom: 0;
}

.modal-body .file {
  visibility: hidden;
  position: absolute;
}

.modal-body__upload-image .input-group-btn {
  font-size: 13px;
}

.modal-body #map {
  border: 1px solid #eee;
  margin-top: 10px;
}

.modal-body__details {
  background-color: #fff;
  padding: 15px 15px 20px 15px;
}

.modal-footer {
  border-top: 0;
  text-align: left;
}

.device-details-modal .image-slider img {
  width: 100%;
  margin: 15px;
  border: 1px solid #eee;
}

/*Modal Nav Tabs css*/
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
  color: #3498db;
  text-transform: uppercase;
}

.nav-tabs>li>a {
  color: #555;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
}

.nav-tabs>li>a .icon {
  font-size: 18px;
  margin-top: -4px;
  float: left;
}

.nav-tabs>li>a:hover {
  color: #555;
  background-color: transparent;
}

/*Page layout css*/
.top-site-main.login{
  background-image: url('../images/login-back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title-wrapper {
  text-align: left;
  z-index: 1;
  color: #fff;
}

.page-title-wrapper .banner-wrapper {
  overflow: hidden;
}

.page-title-wrapper h1, .page-title-wrapper h2 {
  line-height: 30px;
  text-transform: uppercase;
  font-size: 30px;
  padding-left: 25px;
  position: relative;
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
}

.page-title-wrapper h1:before, .page-title-wrapper h2:before {
  content: '';
  width: 3px;
  line-height: 54px;
  bottom: 0;
  height: auto;
  left: 0;
  top: 0;
  margin-right: 22px;
  background: #83db51;
  position: absolute;
}

body.site-content__without-footer {
  padding-bottom: 0;
}

.site-content {
  padding-top: 20px;
  padding-bottom: 40px;
  min-height: 450px;
}

.site-content h3.active {
  color: #78c154;
}

.site-content label {
  font-weight: 700;
  font-size: 13px;
}

.site-content .required {
  color: red;
  font-weight: 700;
  border: 0;
}

.site-content .payment-method {
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
}

.site-content .payment-method li {
  list-style: none;
  padding: 5px 15px;
  border-bottom: 1px solid #f1f1f1;
}

.site-content .payment-method li:last-child {
  border-bottom: 0;
}

.site-content .payment-method label {
  margin-bottom: 0;
}

.site-content .payment-method img {
  margin-left: 15px;
  margin-right: 15px;
}

.site-content .thim-list-content {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.site-content .thim-list-content li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.site-content .thim-list-content li:before {
  content: '';
  background-color: #83db51;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 9px;
}

.site-content input[disabled] {
  color: #333;
  font-weight: 700;
  border: 1px solid #e6e6e6;
  background: #f9f9f9;
}

.site-content__body {
  background-color: #fff;
  padding: 20px;
}

.page-card {
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.page-card__header {
  padding: 15px 15px 0 15px;
}

.page-card__header .title {
  font-size: 16px;
  text-align: left;
  margin: 0;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

.page-card__body {
  padding: 15px;
  font-size: 12px;
}

.page-card__body .icon {
  font-size: 25px;
  vertical-align: middle;
}

.page-card__body-section {
  color: #999;
  margin-bottom: 25px;
}

.page-card__body-section h5 {
  margin-top: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.page-card__body-section-description {
  padding-left: 35px;
}

.page-card__body-section-description p {
  margin-bottom: 0;
}

.page-card__body-section-description .icon {
  font-size: 12px;
}

.page-card__body-section-status {
  line-height: 20px;
  float: left;
}

.page-card__body-section-status .icon {
  font-size: 30px !important;
}

.page-card__body-section-status.success {
  color: #27ae60;
}

.page-card__body-section-status.pending {
  color: #f39c12;
}

.page-card__body-section-status.failed {
  color: #bdc3c7;
}

.page-card__body table .icon {
  color: #78c154;
  margin-right: 10px;
  width: 30px;
}

.page-card__body table p {
  margin-bottom: 0;
}

.page-card__body-sub-topic {
  display: block;
}

.page-card__advertisement img {
  width: 100%;
}

.page-card__my-account-input {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid transparent;
}

.page-card__my-account-input:focus {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-color: #83db51 !important;
}

/*Login Page css*/
body.login {
  padding-bottom: 0;
  background-color: #000;
}

.login-page {
  margin-top: 70px;
  margin-bottom: 50px;
}

.login-back {
  background-image: url("../images/blc-login-blur-back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  width: 105%;
  height: 105%;
  top: -10px;
  left: -10px;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  opacity: 0.7;
}

.login-page__header {
  text-align: center;
  padding: 15px 10px;
  background-color: #404040;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
}

.login-page__product-features-row {
  margin-right: -40px;
  z-index: 40;
}

.login-page__product-features {
  padding: 0 30px;
  color: #bbbbbb;
  background-color: #404040;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.65);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.65);
  display: table-cell;
  vertical-align: middle;
  height: 500px;
}

.login-page__product-features-header {
  margin-bottom: 40px;
  text-align: center;
}

.login-page__product-features-header h4 {
  color: #ccc;
  font-weight: 300;
  font-size: 16px;
}

.login-page__product-features-section {
  margin-top: 30px;
}

.login-page__product-features-section i {
  margin-right: 5px;
}

.login-page__product-features-section img {
  margin-right: 20px;
  float: left;
}

.login-page__product-features-section p {
  margin-bottom: 3px;
}

.login-page__body-row {
  z-index: 20;
  padding-top: 20px;
}

.login-page__body {
  padding: 0 35px 0 40px;
  background-color: #fff;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
  display: table-cell;
  vertical-align: middle;
  height: 460px;
  width: 350px;
}

.login-page__body-sign-options {
  text-align: center;
}

.login-page__body-sign-options h3 {
  margin-top: 0;
  font-weight: 300;
}

.login-page__body .title {
  color: #404040;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  margin: 0 0 20px;
  font-size: 18px;
}

.login-page .lost-pass-link {
  float: right;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 25px;
  text-align: right;
}

.login-page .lost-pass-link:hover {
  text-decoration: underline;
}

.login-page .login-remember {
  font-weight: 400;
  margin-top: 7px;
  margin-bottom: 14px;
  line-height: 25px;
  text-align: left;
}

.login-page .login-remember label {
  color: #333;
  font-weight: 400;
  margin: 0;
}

.login-page .login-remember input[type=checkbox] {
  border: 1px solid #acacac;
  background: #fff;
  color: #555;
  clear: none;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  margin: -4px 4px 0 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  width: 16px;
  min-width: 16px;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  -webkit-transition: .05s border-color ease-in-out;
  transition: .05s border-color ease-in-out;
}

.login-page form#loginform input[type=submit],
.login-page form#registerform input[type=submit],
.login-page form#lostpasswordform input[type=submit],
.login-page form#resetpassform input[type=submit] {
  background: #78c154;
  color: #fff;
  border: 0;
  width: 100%;
  line-height: 30px;
  padding: 5px 25px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0;
}

.login-page form#loginform input[type=submit]:hover,
.login-page form#registerform input[type=submit]:hover,
.login-page form#lostpasswordform input[type=submit]:hover,
.login-page form#resetpassform input[type=submit]:hover {
  background: #63a244;
}

.login-page .link-bottom {
  color: #333;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  text-transform: none;
  margin: 0;
  margin-top: 10px;
}

.login-page .link-bottom a {
  color: #6cc250;
}

.login-page__notification-box.notify-failure {
  background-color: rgba(231, 76, 60, 0.28) !important;
  border-bottom: 1px solid rgba(231, 76, 60, 0.16) !important;
}

.login-page__notification-box.notify-success {
  background-color: rgba(131, 219, 81, 0.22) !important;
  border-bottom: 1px solid rgba(131, 219, 81, 0.18) !important;
}

.login-page__notification-box .notification-box__text {
  padding: 15px;
}

.login-page__footer {
  text-align: center;
  color: #fff !important;
  padding-top: 20px !important;
  padding-bottom: 20px;
  background-color: transparent !important;
}

.login-page.forgot-password .login-page__body {
  padding: 30px 35px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  height: auto;
  width: auto;
  display: block;
}

.footer {
  color: #999;
  background-color: #404040;
  font-size: 13px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 50px;
  overflow-x: hidden;
}

.footer-content {
  padding-bottom: 30px;
}

.footer .widget-title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 40px;
  margin: -13px 0 17px;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  line-height: 30px;
  list-style: none;
}

.footer a {
  color: #999;
}

.footer a:hover {
  color: #83db51;
}

.footer-copyrights {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(153,153,153,.15);
}

.footer-copyrights p {
  margin: 0;
  line-height: 30px;
}

.footer .menu-privacy {
  text-align: right;
}

.footer .menu-privacy li {
  display: inline-block;
  list-style: none;
  line-height: 30px;
  margin-right: 15px;
}

.footer .thim-footer-location .info {
  color: rgba(255,255,255,.9);
  margin-top: 20px;
}

.footer .thim-footer-location .info a {
  color: rgba(255,255,255,.9);
}

.footer .thim-footer-location .info .fa {
  color: #999;
  margin-right: 20px;
}

.footer .thim-footer-location .info a:hover {
  color: #83db51;
}

.error-message, .success-message {
  font-size: 12px;
  width: 100%;
  margin-bottom: 10px;
}

.error-message .input-group-addon {
  background-color: #c0392b !important;
}

.error-message .input-group-addon, .success-message .input-group-addon {
  color: #fff;
  border: 0 !important;
  border-radius: 0;
  padding: 6px 8px;
  position: relative;
}

.error-message .input-group-addon:before {
  content: "";
  border-style: solid;
  border-width: 3px 5px 7px 5px;
  border-color: rgba(242, 33, 33, 0) rgba(221, 67, 151, 0) rgb(192, 57, 43) rgba(0, 0, 0, 0);
  position: absolute;
  left: 10px;
  top: -10px;
}

.error-message__text {
  color: #d84b51;
}

.success-message__text {
  padding: 5px;
  background-color: #27ae60;
}

.effect2 {
  position: relative;
}

.effect2:before, .effect2:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.effect2:after {
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/*Notification css*/
.notification-box {
  position: fixed;
  top: 0;
  z-index: 1050;
  /*height: 53px;*/
  width: 100%;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09);
  -vendor-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.notification-box.notify-failure {
  background-color: rgba(231, 76, 60, 0.87);
  border-bottom: 1px solid #c0392b;
}

.notification-box.notify-success {
  background-color: rgba(130, 218, 81, 0.87);
  border-bottom: 1px solid #83db51;
}

.notification-box.notify-info {
  background-color: rgba(52, 152, 219, 0.87);
  border-bottom: 1px solid #2980b9;
}

.notification-box__text {
  padding: 17px 21px;
  float: left;
  color: #fff;
}

.notification-box__icon-area {
  padding: 8px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.03);
}

.notification-box__icon {
  font-size: 24px;
}

.notification-box__icon {
  color: #fff;
}

.notification-box__close .icon {
  font-size: 25px;
  margin-top: 7px;
  margin-right: 20px;
  float: right;
  color: rgba(255, 255, 255, 0.7);
}

.notification-box__close .icon:hover {
  color: rgba(255, 255, 255, 1);
}

/*Page Cards*/
.top-site-main.devices{
  background-image: url('../images/blc-my-devices-back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-grid .product__content {
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.product-grid .product__content:hover {
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.product__content--status {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 4px 5px 3px 5px;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  bottom: -1px;
  left: 43%;
  width: 40px;
  height: 20px;
  -webkit-border-top-left-radius: 110px;
  border-top-left-radius: 110px;
  -webkit-border-top-right-radius: 110px;
  border-top-right-radius: 110px;
  border-bottom: 0;
}

.product__content--status.success {
  color: #78c154;
}

.product__content--status.failed {
  color: #ec644b;
}

.product__content-top-menu,
.product__content-top-menu .dropdown {
  position: absolute;
  top: 0;
  right: 0;
}

.product__content-top-menu .btn {
  font-size: 30px;
  padding: 0 15px;
  color: #999;
  background-color: transparent;
  border: 0;
}

.product__content-top-menu .btn:active,
.product__content-top-menu .btn:focus,
.product__content-top-menu .open>.dropdown-toggle.btn-default,
.product__content-top-menu .open>.dropdown-toggle.btn-default:focus,
.product__content-top-menu .open>.dropdown-toggle.btn-default:hover{
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.product__content-top-menu .dropdown-menu {
  left: auto;
  margin: 0;
  right: 8px;
}

.product__content-notification-symbol {
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: #78c154;
  margin: 0 auto;
  position: absolute;
  right: 35px;
  top: 10px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 2px 7px;
}

.product__content-notification {
  background-color: #fff;
  border: 1px solid rgba(120, 193, 84, 0.5);
  padding: 20px;
  top: 48px;
  position: absolute;
  left: 5px;
  right: 5px;
  -webkit-box-shadow: 0 1px 5px rgba(120, 193, 84, 0.38);
  box-shadow: 0 1px 5px rgba(120, 193, 84, 0.38);

  -webkit-animation-name: notificationAnimation;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: notificationAnimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes notificationAnimation {
  0%   {transform: translateY(0); box-shadow: 0 1px 5px rgba(120, 193, 84, 0.38);}
  50%  {transform: translateY(-4px); box-shadow: 0 3px 7px rgba(120, 193, 84, 0.45);}
  100% {transform: translateY(0); box-shadow: 0 1px 5px rgba(120, 193, 84, 0.38);}
}

.product__content-notification:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(120, 193, 84, 0.6);
  position: absolute;
  top: -7px;
  right: 34px;
}

.product__content-notification:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
  top: -6px;
  right: 35px;
}

.product__content-notification--close {
  position: absolute;
  font-size: 25px;
  line-height: 0;
  top: 5px;
  right: 10px;
  cursor: pointer;
}

.product__content-details {
  padding: 25px 15px 15px 15px;
  background-color: #fff;
}

.product__content-details .form-control {
  min-height: auto;
  box-shadow: none;
  text-align: center;
  font-weight: 700;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid transparent;
  height: 25px;
  padding: 0;
}

.product__content-details .form-control:focus {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-color: #83db51 !important;
}

.product__content-details .input-group {
  width: 100%;
}

.product__content-details .input-group-addon {
  border: 0;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  color: #bbbbbb;
}

.product__content.add-more-card {
  box-shadow: none;
}

.add-more-card .product__content-details {
  border: 1px dashed #bbb;
  background-color: #edf2eb;
  padding: 80px 15px 15px 15px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.add-more-card:hover .product__content-details{
  background-color: #fff;
}

.add-more-card .product__content-details img {
  margin: 20px 0 20px 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.add-more-card:hover .product__content-details img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.add-more-card .product__content-details .btn {
  margin-top: 76px;
  background-color: #bbb;
}

.add-more-card:hover .product__content-details .btn {
  background-color: #78c154;
}

.product__content-device-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
}

.product__content-device-name:after {
  content: '\f040';
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  margin:0 0 0 10px;
  text-decoration:none;
  color: #bbbbbb;
  cursor: pointer;
}

.product__content-device-name-save {
  -vendor-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.product__content-price-plan {
  padding: 8px 0;
}

.product__content-price-plan--currency {
  vertical-align: top;
  font-size: 13px;
  line-height: 28px;
}

.product__content-price-plan--amount {
  font-size: 25px;
}

.product-grid .product-thumb {
  position: relative;
  -webkit-perspective: 500;
  -webkit-transform-style: preserve-3d;
  width: 100%;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  padding: 15px;
  height: 170px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.product-grid .product-thumb img {
  width: 100%;
}

.product-grid .product-thumb.inactive img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}

.product-thumb:hover:before, .product-thumb:hover .quick-view {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: alpha(opacity=100);
  filter: alpha(opacity=100);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.product-thumb .link-images-product {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.quick-view {
  position: absolute;
  z-index: 999;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  cursor: pointer;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: alpha(opacity=0);
  filter: alpha(opacity=0);
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.quick-view a {
  color: #fff;
  display: inline-block;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  font-size: 30px;
}

.product-grid .product__status {
  padding-bottom: 12px;
  padding-right: 125px;
  position: relative;
}

.product-grid .product__status label {
  margin-right: 10px;
}

.product__status--status {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 13px;
}

.product__status--status .device-state {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}

.product__status--id {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-grid .pay-now-button {
  color: #fff !important;
  padding: 7px 10px;
}

.payment-steps__area {
  padding-bottom: 25px;
  text-align: center;
}

.payment-steps {
  background-color: #bbb;
  color: #fff;
  padding: 5px 17px 3px 17px;
  font-size: 30px;
  font-weight: 700;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  width: 51px;
  margin: 0 auto;
}

.payment-steps.active {
  background-color: #78c154;
}

.payment-steps__success-header {
  text-align: center;
  padding: 20px;
  background: #78c154;
  color: #fff;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
}

.payment-steps__success-header h4 {
  color: #fff !important;
  margin-bottom: 3px;
  margin-top: 15px;
  font-weight: 300;
}

.payment-steps__success-body,
.payment-steps__failure-body {
  padding: 20px 40px;
  background-color: #fff;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.payment-steps__success-body label{
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 11px;
}

.payment-steps__success-body .table {
  margin-bottom: 0;
}

.payment-steps__success-body .table>tbody>tr>th,
.payment-steps__success-body .table>tbody>tr>td {
  padding: 6px 0 !important;
}

.payment-steps__failure {
  margin-top: -58px;
}

.payment-steps__failure-header h4 {
  color: #e74c3c !important;
  margin-bottom: 3px;
  margin-top: 15px;
}

.payment-steps__failure-header {
  text-align: center;
  padding: 20px;
  background: #fff3f2;
  color: #e74c3c;
}

.payment-steps__details .header-value-type {
  color: #aaa;
}

.payment-steps__details .btn-group>.btn:first-child {
  width: 90%;
}

.payment-steps__details .btn-group>.dropdown-toggle {
  width: 10%;
}

.payment-steps__details-content-image .profile-image {
  width: 85px;
  height: 85px;
  text-align: center;
  margin: -100px auto 15px;
  background-color: #fff;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.payment-steps__details-content-image .profile-image img {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.payment-steps__details-content-image .profile-image:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.payment-steps__details-content-image .profile-image:hover img {
  border: 2px solid #fff;
}

.payment-steps__details-content {
  margin-top: -58px;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.payment-steps__details-content label {
  text-transform: uppercase;
  font-size: 11px;
}

.payment-steps__details-content-header {
  padding: 50px 20px 20px 20px;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fbfbfb;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
}

.payment-steps__details-content-body {
  padding: 30px 60px;
  background-color: #fff;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.payment-steps__details-content-body table {
  margin-bottom: 0;
}

.payment-steps__details-content-body .number-of-payment-days .btn-default,
.payment-steps__details-content-body .number-of-payment-days.open>.dropdown-toggle.btn-default:focus,
.payment-steps__details-content-body .number-of-payment-days.open>.dropdown-toggle.btn-default:hover {
  border-color: transparent;
}

.payment-steps__details-content-body .number-of-payment-section {
  position: relative;
}

.payment-steps__details-content-body .number-of-payment-section input {
  width: 50%;
  margin: 0 auto;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  min-height: 30px;
}

.payment-steps__details-content-body .number-of-payment-days {
  color: #78c154;
  cursor: pointer;
  padding: 5px 0;
}

.payment-steps__details-content-body .number-of-payment-days .icon {
  margin-left: 8px;
  vertical-align: middle;
}

.number-of-payment-days__custom-input {
  position: relative;
}

.number-of-payment-days__custom-input--close {
  font-size: 20px;
  color: #bbb;
  cursor: pointer;
  position: absolute;
  right: 126px;
  top: 26px;
}

.payment-steps__details-content-body .number-of-payment-days__options {
  border: 1px solid #78c154;
  padding: 30px 20px 20px 20px;
  background-color: #fff;
  z-index: 500;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms;
}

.payment-steps__details-content-body .number-of-payment-days__options.open {
  opacity: 1;
  visibility: visible;
}

.payment-steps__details-content-body .number-of-payment-days__options:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgb(119, 192, 83);
  position: absolute;
  top: -7px;
  left: 48%;
}

.payment-steps__details-content-body .number-of-payment-days__options:after {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgb(255, 255, 255);
  position: absolute;
  top: -6px;
  left: 48%;
}

.payment-steps__details-content-body .number-of-payment-days__options-close {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 20px;
  color: #bbb;
  cursor: pointer;
}

.payment-steps__details-content-body .number-of-payment-days__options-section {
  border-right: 1px solid #eee;
}

.payment-steps__details-content-body .number-of-payment-days__options--option {
  padding: 7px 10px;
  display: block;
  border: 1px solid #78c154;
  margin: 5px 0;
  color: #333;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.payment-steps__details-content-body .number-of-payment-days__options--option:hover,
.payment-steps__details-content-body .number-of-payment-days__options--option.active {
  background-color: #78c154;
  color: #fff;
}

.payment-steps__currency-amount-content .input-group-addon {
  font-size: 18px;
  border: 0;
  background-color: transparent;
}

.payment-steps__currency-amount-content input,
.payment-steps__currency-amount-content input[disabled] {
  font-size: 30px !important;
  font-weight: 300;
  border: 0;
  background-color: transparent;
  padding-left: 0;
  padding-right: 25px;
  text-align: center;
}

.payment-steps__currency-amount-content .payment-steps__currency-amount-content--currency {
  font-size: 18px;
  vertical-align: top;
}

.payment-steps__currency-amount-content .payment-steps__currency-amount-content--amount {
  font-size: 30px;
  border: 0;
}

.payment-steps__details-content-body .currency-amount-input {
  font-size: 35px;
  font-weight: 300;
  border: 0;
  color: #333;
}

.payment-steps__details-content-body .currency-amount-input input {
  display: inline-block;
  box-shadow: none;
  font-size: 25px;
}

.payment-steps__details-content.payment-steps__confirm .payment-steps__currency-amount-content .input-group-addon {
  font-size: 18px;
  font-weight: 700;
}

.payment-steps__details-content.payment-steps__confirm .currency-amount-input input {
  font-size: 15px;
}

.payment-steps__relative-input {
  position: relative;
}

.payment-steps__relative-input--card {
  position: absolute;
  top: 25px;
  right: 10px;
}

.payment-status {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 5px;
  color: #fff;
  font-weight: 300;
}

.payment-status.success {
  background-color: #78c154;
}

.payment-status.failure {
  background-color: #e74c3c;
}

.payment-status.pending {
  background-color: #f39c12;
}

.payment-steps__details-footer {
  padding: 5px 60px;
  background-color: #fff;
  position: relative;
  border-top: 1px dashed #e0e0e0;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.payment-steps__details-footer:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 12px;
  background-color: #e0e0e0;
  position: absolute;
  left: 0;
  top: -7px;

  -webkit-border-top-right-radius: 110px;
  border-top-right-radius: 110px;
  -webkit-border-bottom-right-radius: 110px;
  border-bottom-right-radius: 110px;
  border: 1px solid #e8e8e8;
  border-left: 0;
  -webkit-box-shadow: inset -5px 0 6px #ececec;
  box-shadow: inset -5px 0 6px #ececec;
}

.payment-steps__details-footer:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 12px;
  background-color: #edf2eb;
  position: absolute;
  right: 0;
  top: -7px;

  -webkit-border-top-left-radius: 110px;
  border-top-left-radius: 110px;
  -webkit-border-bottom-left-radius: 110px;
  border-bottom-left-radius: 110px;
  border: 1px solid #e8e8e8;
  border-left: 0;
  -webkit-box-shadow: inset 5px 0 6px #ececec;
  box-shadow: inset 5px 0 6px #ececec;
}

.payment-steps__details-footer .table {
  margin-bottom: 0;
}

.payment-steps__details-footer label {
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 0;
  margin-top: 12px;
}

.payment-steps__details-footer .amount {
  font-size: 18px;
  font-weight: 700;
}

.payment-steps__details-footer .primary-text {
  font-size: 16px;
}

/*Payment Receipt css*/
.print-document {
  padding: 40px 60px;
  background-color: #f7f7f7;
}

.print-document__header {
  padding: 10px 0 0 0;
  border-bottom: 3px solid #83db51;
}

.print-document__header--logo {
  padding-bottom: 15px;
}

.print-document__body {
  padding: 20px 0 0 0;
  border-bottom: 1px solid #83db51;
}

.print-document__body-content {
  padding: 20px 0;
  border-bottom: 1px solid #83db51;
}

.print-document__body-content h3,
.print-document__footer h3 {
  margin-top: 0;
}

.print-document__body-content-product-image img {
  width: 100px;
  height: 100px;
}

.print-document__footer {
  padding: 20px 0;
  border-bottom: 3px solid #83db51;
}

.print-document__footer label {
  margin-top: 6px;
}

/*Page Loader css*/
.loading-back {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1500;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 250px;
  text-align: center;
}

.loading-back h5 {
  position: fixed;
  top: 350px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  color: #63a244;
}

.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #78c154 10%, rgba(255, 255, 255, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 0.5s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);

  position: fixed;
  top: 250px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #78c154;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: #edf2eb;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*Responsive Table css*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

  .table-responsive .table-po tr {
    height: auto;
  }

  /* Force table to not be like tables anymore */
  .table-responsive table, thead, tbody, th, td, tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .table-responsive thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .table-responsive td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 45% !important;
  }

  .table-responsive td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 9px;
    left: 6px;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    padding-top: 3px;
  }

  /* Label the data - for Manage payment history */
  .payment-history-table td:nth-of-type(1):before { content: "Date"; }
  .payment-history-table td:nth-of-type(2):before { content: "Transaction ID"; }
  .payment-history-table td:nth-of-type(3):before { content: "Device"; }
  .payment-history-table td:nth-of-type(4):before { content: "Payment Method"; }
  .payment-history-table td:nth-of-type(5):before { content: "Amount"; }

  .payment-history-table {
    padding: 0;
  }

  .payment-history-table tr {
    height: auto;
  }

  .table__date-column,
  .table .value-row {
    text-align: left;
  }

  .table .value-row__currency-amount {
    float: none;
  }

  .payment-steps__confirm .table-responsive,
  .non-repeat-table.table-responsive {
    border: 0;
  }

  .payment-steps__confirm .table-responsive td,
  .non-repeat-table.table-responsive td{
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 769px) {
  body {
    padding-bottom: 0;
  }

  .login-page__product-features-row {
    margin-left: 20px;
  }

  .navbar-nav .open .dropdown-menu {
    padding: 0;
  }

  .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu>li>a {
    padding: 10px 15px 10px 17px;
  }

  .navbar-default .navbar-nav>li>a {
    padding: 10px;
  }

  .navbar-right {
    float: left !important;
  }

  .switch-layout-container .dropdown-menu {
    left: 0;
    width: auto;
  }

  .table-details-area__content {
    margin: 0;
  }

  .payment-steps__success,
  .payment-steps__failure {
    margin-top: 0;
  }

  .payment-steps__details-content-image .profile-image {
    margin: -62px auto 15px
  }

  .footer {
    position: relative;
  }
}

@media screen and (max-width: 480px) {
  .navbar-default {
    padding-top: 15px;
  }

  .navbar-default .navbar-toggle {
    border-color: transparent;
  }

  .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #323232;
  }

  .navbar-default .navbar-collapse {
    box-shadow: none;
  }

  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
  .navbar-default.navbar-nav .open .dropdown-menu>li>a {
    color: #fff;
  }

  .navbar-default .navbar-nav>li>a {
    padding: 10px 15px;
  }

  .navbar-nav .open .dropdown-menu,
  .navbar-nav .dropdown-menu {
    background-color: #333;
    border-color: transparent;
    box-shadow: none;
  }

  .navbar-right {
    float: none !important;
  }

  .dropdown:hover .dropdown-menu {
    position: inherit;
    float: none;
  }

  .login-page {
    margin-top: 50px;
  }


  .login-page__product-features-row {
    margin-right: 0;
    margin-left: 0;
  }

  .login-page__product-features {
    border-bottom-left-radius: 0;
    -webkit-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
    height: 450px;
  }

  .login-page__body {
    margin: 0;
    padding: 40px 30px;
    border-top-right-radius: 0;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
  }

  .login-page__body-row {
    padding-top: 0;
    margin-left: 0;
  }

  .top-site-main.devices {
    background-image: none;
    background-color: #404040;
  }

  .device-details-modal .image-slider img {
    margin: 0;
  }

  .payment-steps__details-content-body {
    padding: 15px;
  }

  .payment-steps__details-content-body .number-of-payment-section input {
    width: 100%;
  }

  .payment-steps__details-footer {
    padding: 5px 15px;
  }

  .number-of-payment-days__custom-input--close {
    right: 0;
    top: 60px;
  }

  .payment-steps__details-content .number-of-payment-days__options {
    top: 100px;
  }

  .payment-steps__details-content .number-of-payment-days__options-section {
    border-right: 0;
  }

  .payment-steps__details-content-image .profile-image {
    margin: 0 auto 15px
  }

  .modal-image-header {
    padding: 20px;
  }

  .modal-image-header-details {
    padding-right: 15px;
  }

  .table-details-area--close {
    height: 20px;
  }

  .table-details-area__content {
    padding-top: 35px;
  }

  .table-details-area__content .table-responsive {
    border: 0;
  }

  .table-details-area__content td:nth-child(n):before {
    content: "";
  }

  .table-details-area__content td {
    padding-left: 0 !important;
  }

  .table-details-area.open {
    min-height: 450px;
  }

  .footer .widget-title {
    margin: 0;
  }

  .footer .menu-privacy {
    text-align: left;
  }
}