HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall_forms/buyercall/buyercall/assets/styles/custom/_custom.scss
/*
 *  Document   : _custom.scss
 *  Author     : Herman Vermaak
 *  Description: This is the project's custom stylesheet overriding or adding to the styles
 *               from the Material-Design vendor theme styles.
 */

/*
=================================================================
MAIN LAYOUT
=================================================================
*/

/*
=================================================================
LOADER
=================================================================
*/
/* Center the loader */
#loaderContainer {
    opacity:    1;
    background: #fff;
    width:      100%;
    height:     100%;
    z-index:    10;
    top:        0;
    left:       0;
    position:   fixed;
}
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #03a9f4;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loaderText {
    position: absolute;
    z-index: 15;
    top: 50%;
    left: 50%;
    //margin: 50px 0 0 -140px;
    margin: 50px 0 0 -73px;
}

#loaderText:after {
    //content: "data loading...it might take a few seconds"
    content: "data busy loading..."
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

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

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 }
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
  from{ bottom:-100px; opacity:0 }
  to{ bottom:0; opacity:1 }
}

/*
=================================================================
LOGIN STYLES
=================================================================
*/
.card-login .card-content {
    padding-left: 20px;
}
.footer ul li a {
    font-weight: 300;
}
.card-login .card-title {
    font-weight: 300;
}
.card-login .checkbox label {
    margin-left: 0px;
    display: inline;
}
.login-checkbox {
    margin-top: 0px;
}
.sign-up-intro {
    margin-bottom: 35px;
}
.logo-margin-bottom {
    margin-bottom: 50px;
}

.extra-margin-desktop {
    margin-top: 100px;
}
.remember-margin {
    margin-top: 0px;
}
.tos-signup-text {
    padding-left: 0px;
    margin-top: 23px;
}
/*
=================================================================
TWO FACTOR AUTHENTICATION
=================================================================
*/
.two-fac-user-tel {
    font-size: 20px;
}
.verify-code-field {
    text-align: left;
    }
/*
=================================================================
TOS
=================================================================
*/
.tos-modal-look {
    border: 1px solid #AAAAAA;
    border-radius: 6px;
    overflow-y:scroll;
    height: 40vh;
}

#tos-modal {
    background-color: #FFF;
    border-radius: 60px 60px 0px 0px;
}

.tos-help {
    text-align:center;
    color: #999999;
}

/*
=================================================================
ADD BOOTSTRAP STYLES AND CHANGES
=================================================================
*/
.light-blue {
    background-color: #29b6f6;
}
.label-light-blue {
    background-color: #29b6f6;
    }
.text-light-blue {
    color: #29b6f6;
}
.label-small {
    font-size: 8px;
    padding: 3px 8px 4px 8px;
}
.checkbox .checkbox-material::before {
    display: inline-block;
}
.custom-radio-field {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.verification-button-margin {
    margin-top: 20px;
}
/*
=================================================================
CUSTOM NAVIGATION
=================================================================
*/

.sidebar {
    position: fixed;
    }

.nav-custom {
    padding-right: 0px;
    padding-bottom: 50px;
}

.navbar-custom-position {
    position: relative;
}
.avatar-circle-sm {
    margin-left: 3px;
}

/*
=================================================================
CUSTOM DATATABLES STYLES
=================================================================
*/

.dataTables_length {
    display: inline-block;
}

.dataTables_filter {
    display: inline-block;
}

.datatables-action-buttons {
    min-width: 230px;
}

.datatables-padding {
    padding-left: 0px;
}

.btn-table-action {
    border-radius: 3px !important;
    margin-right: 5px !important;
}

.dataTables-records-length-select {
    width: 50px !important;
    padding-left: 5px;
}

thead th a {
    color: #3C4858;
}

.table > thead > tr > th {
    font-size: 12px;
}
.table > tbody > tr > td {
    font-size: 12px;
}

/*
==============================================================
MATERIAL DESIGN ICONS
==============================================================
*/
/* Rules for sizing the icon. */
.material-icons.md-14 {
    font-size: 14px;
    }
.material-icons.md-18 {
    font-size: 18px;
    }
.material-icons.md-24 {
    font-size: 24px;
    }
.material-icons.md-36 {
    font-size: 36px;
    }
.material-icons.md-48 {
    font-size: 48px;
    }

/*
==============================================================
TOOLTIP
==============================================================
*/
.tool-tip-text {
    color: #03a9f4 !important;
}
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  text-transform: none !important;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
/*
==============================================================
SWEET ALERT STYLING
==============================================================
*/
.swal2-modal h2 {
    font-weight: 300;
    .swal2-content {
        font-weight: 300;
    }
}

.swal2-styled {
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 300 !important;
}

/*
=============================================================
FORMS
=============================================================
*/
.print-field {
font-weight: 300 !important;
color: #AAAAAA;
}
.edit-field-bottom-margin {
    margin-bottom: 10px;
}
.text-muted-form {
    color: #AAA;
}
.private-field-padding {
    padding: 0px;
    }
.modal-content .modal-body {
    padding-top: 15px !important;
}
.auto-email-info {
    background: #EEEEEE;
    padding: 15px;
    color: #555;
}
.form-group span.text-msg-area {
    float: right;
    font-size: 11px;
    line-height: 1.07143;
    color: #AAAAAA;
    font-weight: 400;
    margin: 16px 0 0 0;
}
.modal-info {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 20px;
    margin-bottom: 0px;
}
.modal-no-number {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.btnCsvDownload {
    border-radius: 3px !important;
}

.conditional-text {
    padding-top: 25px;
    text-align: center;
}

.form-notification {
    background: #eee;
}
/*
=============================================================
FORM LEADS
=============================================================
*/

#tosToggleButton {
    float: left;
    padding-right: 20px;
    padding-top: 10px;
}

.tooltip-exclamation-icon {
    color: #ccc;
}

.tooltip-exclamation-icon-pos {
    position: absolute;
    padding-left: 5px;
    margin-top: 12px;
}

.btn.btn-dark-blue:hover {
    background-color: #036df4;
    color: #FFFFFF;
}

.btn-dark-blue {
    background-color: #036df4;
    color: #FFFFFF;
}

.btn-second-row {
    margin-top:5px !important;
}

.restricted-card {
    height: 200px;
}

.restricted-text {
    text-align: center;
    font-size: 20px;
    top: 50px;
    position: relative;
}

/*
=============================================================
NOTIFICATION AND ALERT STYLES
=============================================================
*/
.notification-bar {
    display: inline-block;
    margin: 15px auto;
    position: fixed;
    transition: all 0.5s ease-in-out;
    z-index: 1031;
    top: 20px;
    right: 20px;
}
.notification-close-button {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
    z-index: 1033;
}

/*
=============================================================
PRICING STYLES
=============================================================
*/
.coupon-field-padding {
    padding-left: 20%;
    padding-right: 20%;
}
.title-margin-bottom {
    margin-bottom: 15px !important;
}
/*
=============================================================
MATERIAL DESIGN FORM FIELDS
=============================================================
*/
.form-group.label-floating:not(.is-empty) label.control-label {
    left: initial;
}

/*
=============================================================
WIZARD CUSTOM STYLES
=============================================================
*/
.card .nav-pills {
    margin-top: 0px;
}

.nav-features {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.nav-features > li {
    position: relative;
    display: block;
}

.nav-features > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-weight: 300;
    color: #3C4858;
    text-align: left;
}

.routing-top-margin {
    margin-top: 10px !important;
}

.wizard-card{
    min-height: 350px;
    box-shadow: none;
}

.features-btn {
    border-radius: 4px !important;
}
.tab-content-margin {
    margin-top: 0px !important;
}
.call-feature-heading {
    background-color: #fff;
    margin-bottom: 15px;
    margin-top: 0px;
    padding: 0px;
}
.call-feature-heading-call-back {
    background-color: #fff;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
}
#headingOne {
 margin-bottom: 25px;
}
.feature-toggle {
    padding-top: 10px;
    padding-left: 0px;
}
.remove-agent-button {
    color: #AAAAAA;
}
.call-feature-icon {
    display: inline !important;
    padding-right: 15px !important;
}
.call-feature-sidebar {
    border-right: 1px solid #eeeeee;
}
.call-feature-sidebar .nav-features i {
    color: #a9afbb;
}
.call-feature-sidebar .nav-features li.active i {
    color: #fff;
}

.call-settings-agent-table > thead > tr > th {
    border: 0px;
    padding-left: 0px;
}
.grey-disabled {
    color: #aaaaaa;
}
.language-feature-field {
    margin-top: 0px;
}
.toggle-field-step {
    color: #AAAAAA !important;
}
.notify-button-padding {
    padding-left: 0px;
}
#upload-music {
    border: 1px dashed #AAAAAA !important;
    color: #AAAAAA;
    font-weight: 400;
}
.mms_attach {
    margin-top: 15px;
}
.mms_attach .card-avatar {
    border-radius: 0;
    margin: 15px 0px 15px 0px;
}
.pn-summary-feature-icon {
    color: #a9afbb;
}
.summary-feature-info-margin {
    margin-top: 15px !important;
}
.radio + .radio {
    margin-top: 10px;
}
.pn-results-label {
    color: #555 !important;
}

.priority-inactive {
    pointer-events:none;
}

.rule-text {
    margin-top: 10px;
    font-weight: 400;
    color: #3C4858 !important;
}
.rule-input-field {
    margin-top: 0px;
}
.rule-action-padding {
    padding-right: 0px;
    padding-left: 0px;
}
.rule-keyword-padding {
    padding-left: 0px;
}
#sms-rule-one-call-section {
    padding: 15px;
    background: #f9f9f9;
    margin-left: 0px;
    margin-right: 15px;
    width: 95%;

}
.if-text-padding {
    padding-right: 0px;
    padding-left: 0px;
}
.rule-email-field {
    padding-top: 2px;
}
/*
============================================================
CARD STYLES
============================================================
*/
.card-header-padding {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.two-fac-p {
    padding: 0px 50px;
    }

/*
=============================================================
LEADS PAGE SECTION
=============================================================
*/
.filter-padding-left {
    padding-left: 0px;
}
.filter-padding-right {
    padding-right: 0px;
}
.filter-padding-top {
    padding-top: 10px;
}
.filter-short-date-field {
    max-width: 90px;
}
.filter-from-field {
    max-width: 100px;
}
.filter-to-field {
    max-width: 35px;
}
.filter-date-field {
    max-width: 100px;
}
.filter-phonenumber-field {
    max-width: 110px;
}
.filter-friendlyname-field {
    max-width: 130px;
}
.filter-dropdown-text {
    color:#555 !important;
}
.filter-label {
    font-size: 12px !important;
    padding-top: 15px;
}
.dropdown-menu li a:hover {
    color:#FFF !important;
}
.btn-lead-call {
    border-radius: 3px !important;
    margin-right: 5px !important;
}
.btn-lead-sms {
    border-radius: 3px !important;
    margin-right: 5px !important;

}
.btn-lead-pdf {
    border-radius: 3px !important;

}
H3 graph {
    font-size: 13px !important;
}

$breakpoint-laptop-max: 1400px;
$breakpoint-laptop-min: 1000px;

@media (max-width: $breakpoint-laptop-max) and (min-width: $breakpoint-laptop-min) {
    .btn-short  {
        padding: 12px;
    }
}

.source-padding {
    margin: 1px;
}

.toggle-attachment {
    padding-left: 15px;
}

.toLeadDetailsSelect {
    color:#AAA;
}

/*
=============================================================
SWITCH BACK PARTNER & SYSADMIN NOTIFICATION BAR
=============================================================
*/
.switch-back-bar {
    position: fixed;
    display: inline-block;
    margin: 15px auto;
    transition: all 0.5s ease-in-out;
    z-index: 1031;
    top: 25px;
    left: 0px;
    right: 0px;
}
.switch-back-button {
    position: absolute;
    right: 10px;
    top: 30%;
    margin-top: -9px;
    z-index: 1033;
}
/*
=============================================================
CREDIT REPORTS
=============================================================
*/
.credit_score {
    font-size: 22px !important;
    font-weight: 500;
}
.credit_report_th {
    font-weight: 300;
    font-size: 1.3em !important;
}
.credit_approved_yes {
    color: #4caf50;
}
.credit_approved_no {
    color: #f44336;
}
.credit-field-title {
    font-weight: 400;
}

/*
=============================================================
CALLS
=============================================================
*/

.calls-action-menu.dropdown-menu {
    min-width: 125px !important;
}

.calls-action-menu.dropdown-menu li > a {
    padding: 7px 10px;
}

/*
=============================================================
MESSAGES
=============================================================
*/

.sms-action-menu.dropdown-menu {
    min-width: 125px !important;
}

.sms-action-menu.dropdown-menu li > a {
    padding: 7px 10px;
}

/*
=============================================================
CONTACTS
=============================================================
*/
legend {
margin-bottom: 0px;
}

.btn-add-lead, .btn-csv-imp {
    margin-left: 5px !important;
}
.view-lead-link {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}
.tooltip-icon {
    color: #ccc;
    }
.last-note-col {
    background: #f9f9f9;
    padding: 10px;
    margin-bottom: 15px;
    }
.last-note-heading {
    margin-top: 15px;
    margin-bottom: 5px;
}
.quick-note {
    background: #f9f9f9;
    margin-bottom: 15px;
}
.msg-heading-img-popup {
    font-weight: 400;
    padding-top: 15px;
}
.table-responsive {
    margin: 0px 10px 0px 10px;
}
.unpulled-credit-data {
    font-size: 14px !important;
    text-align: center;
    padding-top: 20px !important;
}
.table-dropdown-padding {
    padding-bottom: 195px;
}
.table-search-margin-right {
    margin-right: 5px;
}
.credit-history-buttons {
    text-align: right;
}

.contact-action-menu.dropdown-menu li > a {
    padding: 7px 10px;
}

.label-adf {
    background-color: #036df4;
}
.label-credit {
    background-color: #455a64;
}
.import-loader {
    text-align: center !important;
    border: 8px solid #f3f3f3 !important;
    border-top: 8px solid #03a9f4 !important;
    width: 60px !important;
    height: 60px !important;
	margin: 0 auto !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}

#btnDownloadCsv, #btnDownloadExampleCsv {
    text-decoration:underline;
    cursor:pointer;
}

.credit-step {
    font-size:15px;
    font-weight: bold;
    padding-top:22px;
    text-align: center;
    vertical-align: middle;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    color: #03a9f4;
    margin: 0 auto 20px;
    border: 4px solid #03a9f4;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

#my700credit .modal-content {
    width:750px;
}

/*
============================================================
PHONE NUMBER
=============================================================
*/
.table > tbody > tr > td {
    border-top: 0px;
 }
.alert-section-margin {
    margin-top: 25px;
}

.single-agent-name {
    margin-top: 10px;
    font-size: 1.3em;
}
.single-agent-phone {
    margin-top: 20px;
    font-size: 1.3em;
    margin-bottom: 30px;
}
.tab-side-menu-link {
    margin-top: 15px;
    font-size: 1.3em;
}
.single-agent-phone-label {
    padding-bottom: 15px;
    display: block;
    font-weight: 300;
    color: #3C4858;
}
.feature-tab-margin {
    margin-top: 15px;
}
.feature-info-label {
    padding-bottom: 5px;
    padding-top: 20px;
    font-weight: 400 !important;
    color: #3C4858 !important;
}

.togglebutton label {
    color: #3C4858 !important;
    font-weight: 300;
}
.download-message {
    color: #3C4858 !important;
}
#dlMsg {
    display: none;
}
.info-label-grey {
    font-weight: 300;
    display: block;
    padding-top: 5px;
}
.agent-profile-link {
    font-size: 12px !important;
}
#whisper-message-container {
    margin-top: 0px;
}
.padding-left-custom-notify {
    padding-left: 0px !important;
}
#whisper-message-container label {
    color: #3C4858 !important;
    font-weight: 300;
}
#voicemail-message-container {
    margin-top: 0px;
}

#voicemail-message-container label {
    color: #3C4858 !important;
    font-weight: 300;
}
#hold-music-container {
    margin-top: 0px;
}
.upload-music {
    margin-bottom: 20px;
}
.language-feature-field label {
    color: #3C4858 !important;
    font-weight: 300;
    margin-top: 20px;
}
#tab3Notifications label {
    color: #3C4858 !important;
    font-weight: 300;
}
#call-back-text-container label {
    color: #3C4858 !important;
    font-weight: 300;
}
.togglebutton {
    margin-top: 0px;
    padding-top: 0px;
}
#hidden-information-section {
    margin-top: 0px;
}
#hidden-information-section label {
    color: #3C4858 !important;
    font-weight: 300;
}
.call-back-setting-label {
    color: #3C4858 !important;
    font-weight: 300 !important;
}

/*
=============================================================
USER DASHBOARD STYLES
=============================================================
*/
.card-pricing .icon i {
    border: 4px solid #03a9f4;
    line-height: 120px;
    }
.dashboard-stat-panel {
    margin-bottom: 0px !important;
    box-shadow: none !important;
    padding-bottom: 0px !important;
}
.dashboard-stat-number {
    margin: 0px;
}
.timeline-heading {
    margin: 0px;
}
.timeline-stats {
    margin-top: 0px !important;
}
.timeline > li > .timeline-panel:before {
    display: none;
}
.time-line-inverted-margin {
    margin: 0px !important;
}
.no-data-section {
    margin-bottom: 100px;
    margin-top: 50px;
    color: #a9afbb;
}

.table-sales {
    margin-top: 25px;
}
.top-pn-section {
    margin-top: 15px;
}
.timeline > li > .timeline-badge.light-blue {
    background-color: #29b6f6;
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 188, 212, 0.4);
}
/*
=============================================================
CHARTIST GRAPH STYLES
=============================================================
*/
.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
    stroke: #29b6f6;
}
.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
    stroke: #4caf50;
}
.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
    stroke: #f44336;
}

.ct-chart .ct-series.ct-series-a .ct-line[ct|meta="reports"] {
  stroke: #FFFFFF;
}


H3 graph {
    font-size: 14px;
    font-weight: 300;
    color: #999999;
}

.ct-messages .ct-series-a .ct-point {
    stroke: #ff9800;
}

.ct-messages .ct-series-a .ct-line {
    stroke: #ff9800;
}

.ct-messages .ct-series-b .ct-point {
    stroke: #4caf50;
}

.ct-messages .ct-series-b .ct-line {
    stroke: #4caf50;
}

.ct-messages .ct-series-c .ct-point {
    stroke: #29b6f6;
}

.ct-messages .ct-series-c .ct-line {
    stroke: #29b6f6;
}


.ct-contacts .ct-series-b .ct-point {
    stroke: #03a9f4;
}

.ct-contacts .ct-series-b .ct-line {
    stroke: #03a9f4;
}

.ct-contacts .ct-series-a .ct-point {
    stroke: #00bcd4;
}

.ct-contacts .ct-series-a .ct-line {
    stroke: #00bcd4;
}

.ct-contacts .ct-series-c .ct-point {
    stroke: #f0ad4e;
}

.ct-contacts .ct-series-c .ct-line {
    stroke: #f0ad4e;
}

.ct-contacts .ct-series-d .ct-point {
    stroke: #5cb85c;
}

.ct-contacts .ct-series-d .ct-line {
    stroke: #5cb85c;
}

.auto-pay-check {
    margin-top: 5px;
}

/*
===============================================================
BILLING INFORMATION STYLES
===============================================================
*/
.cc-images {
    width: 40px !important;
}
.cc-select {
    width: 50px !important;
    display: inline-block;
}

/*
===============================================================
PARTNERSHIP PAGES STYLES
===============================================================
*/
.current-img {
    width: 200px !important;
}
.card form img {
 width: 25%;
 }

.admin-usage-number {
    font-size: 1.8em;
    font-weight: 300;
    color: #333;
}

.content-top-margin {
    margin-top: 0px;
}

/*
==============================================================
ONBOARDING STYLES
==============================================================
*/

.main-panel-alt {
    position: relative;
    float: none;
    overflow: auto;
    width: auto;
    min-height: 100%;
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
}

.main-panel-alt > .footer {
    border-top: 1px solid #e7e7e7;
}

.main-panel-alt > .content {
    margin-top: 0px;
    padding: 15px 15px;
    min-height: calc(100vh - 123px);
}
.tos-section {
    padding: 15px;
    margin-top: -50px;
}
#btnSubmitAgreed {
    white-space: normal !important;
}
#btnNotAgreed {
    white-space: normal !important;
}
.tos-decline-btn {
    text-align: left;
}
.avatar-onboarding-name {
    padding-top: 0px;
}
.onboarding-card {
    min-height: 450px;
}
.onboarding-card-title {
    margin: 30px 0px 20px 0px;
    padding: 0px 50px 0px 50px;
}
.tos-card-title {
    margin: 0px 0px 5px 0px;
    padding: 0px 50px 0px 50px;
}
.onboarding-card-text {
    margin: 20px 0px 0px 0px;
    padding: 0px 50px 0px 50px;
}
.main-panel-alt > .onboarding-content {
    padding-left: 40px;
    padding-right: 40px;
}
.onboarding-user-avatar {
    text-align: right;
}
.onboarding-user-info {
    text-align: left;
}
.onboarding-logo {
    margin-top: 15px;
    padding-left: 20px;
}
.onboarding-wizard-button {
    margin-top: 45px;
    margin-bottom: 25px;
}
.onboarding-image {
    width: 85% !important;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
/* OUTBOUND WIDGET
==============================================================
OUTBOUND WIDGET
==============================================================
*/
.widget-type {
    width: 100%;
}
.checkbox-no-pad {
    padding-top: 0px !important;
    padding-left: 0px;
}
.widget-setup-row-pad {
    padding-bottom: 15px;
}
.centered-container {
    max-height: 420px;
}

.widget-preview-area-padding {
    padding-left: 50px;
    padding-right: 50px;
}

.widget-preview {
    background-color: #eee;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 530px;
    margin-right: 10px;
}
.checkbox-label-font {
    font-size: 11px;
}

.input-group-padding {
    padding-left: 0px !important;
    padding-right: 15px !important;
}
.input-checkbox-field {
    margin-top: 5px;
}
.input-checkbox-margin {
    margin-top: 0px !important;
}
.trigger-setting-padding {
    padding: 5px 0px 0px 15px;
}
.trigger-setting-no-padding {
    padding: 0px 0px 0px 0px;
}
.table > thead > tr > th {
    border-bottom-width: 0px;
}

.table > tfoot > tr > td {
    padding-top: 0px;
}

.form-group .install-preview {
    background: #333;
    color: #fff;
    font-size: 13px;
    padding: 15px;
    }

.form-group .install-preview-email {
    background: #333;
    color: #fff;
    font-size: 13px;
    }

td.remove-button:before {
    content: none;
}
#buyercall-widget .form-control {
    border: none !important;
}
/*
===============================================================
REST API PAGE STYLES
===============================================================
*/
pre {
    background-color: #333;
}

/*
==================================================
HN FIELDS
==================================================
*/
.hn-fld {
    position: absolute;
    left:-9115px;
}

/*
===============================================
MOBILE WEB PAGE
===============================================
*/
.main-title-mobile {
    font-weight: 700 !important;
    margin-top: 12%;
    margin-bottom: 3%;
}
.mobile-screen {
    margin-top: 0% !important;
    width: 55%;
}
.download-pre-text {
    color: #FFF;
}
.mobile-page-sub-title {
    font-weight: 400;
    line-height: 1.2em;
}
.app-store-img {
    opacity: 0.8;
}
.main-mobile-web-page {
    background: #e9edf0;
}
#mobile-features {
    min-height: 600px;
    background-color: #e9edf0;
    border-radius: 60px 60px 0px 0px;
    padding-bottom: 45px;
    padding-top: 45px;
}
.section-title-mobile {
    margin-top: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 2.4em;
}
.section-title-mobile-white {
    margin-top: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 2.4em;
    color: #FFF;
}
.category-solution-mobile {
    text-transform: none;
    font-size: 1.4em;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0px;
    line-height: 1.5em;
}
.category-solution-mobile-white {
    text-transform: none;
    font-size: 1.4em;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0px;
    color: #FFF;
    line-height: 1.5em;
}
.mobile-feature-title {
    font-size: 2em;
    font-weight: 700;
    margin-top: 100px;
}
.section-sub-image-mobile {
    padding-left: 25px;
    margin-top: 10px;
    margin-bottom: 60px;
    text-align: center;
}
.mobile-feature-row {
    margin-top: 25px;
}
.section-content-mobile {
    font-size: 16px;
}
.section-content-mobile {
    font-size: 16px;
}
#contact-us-mobile {
    padding-bottom: 45px;
    padding-top: 25px;
    margin-left: 0px;
    margin-right: 0px;
    background: #294181;
    display: -webkit-box;
    height: 700px;
    border-radius: 0px 0px 6px 6px;
}
.mobile-pricing {
    margin-top: 50px;
}
.mobile-pricing-bottom {
    margin-bottom: 50px;
}
/*
==========================================================
MOBILE APP PAGE STYLES
==========================================================
*/
.vm-number-title {
    color: #000;
    font-size:  14px;
    font-weight: 700;
    margin-bottom: 0px;
}
.vm-icon {
    color: #000;
    font-size:  16px;
    text-align: right;
}
.vm-icon-action {
    color: #000 !important;
    font-size:  14px;
    text-align: center;
}
.vm-action-text {
    text-align: center;
}
.vm-transcribe-text {
    margin-bottom: 0px;
    padding: 10px 10px 0px 10px;
    text-align: justify;
    color: #000;
}
.vm-action-link {
    color: #000 !important;
}
.vm-card {
    background-color: #f0f0f0;
    text-align: center;
}
.vm-hr {
    margin-top: 0px;
}
.vm-intro-row {
    background-color: #f0f0f0;
    margin: 10px 0px 10px 0px;
}
.vm-intro-card {
    padding: 10px 10px 20px 10px;
    color: #000;
}
.vm-app-number {
    font-weight: 700;
    font-size: 20px;
    color: #000;
}
.no-vm-available {
    color: #BBB;
}
/*
=============================================================
MEDIA QUERIES TO RESIZE STYLE ON SMALLER DEVICES
=============================================================
*/

$breakpoint-laptop: 1024px;
$breakpoint-sm-laptop: 991px;
$breakpoint-tablet: 768px;
$breakpoint-mobile: 480px;
$breakpoint-sm-mobile: 380px;

@media (max-width: $breakpoint-laptop) {
    .table > thead > tr > th {
        font-size: 12px;
    }
    .btn-table-action {
        margin-top: 5px !important;
    }
}

@media (max-width: $breakpoint-sm-laptop) {
    .sidebar::before, .off-canvas-sidebar::before {
        background-color: #ffffff;
    }
    .main-logo-size {
        padding-left: 0px !important;
        padding-bottom: 0px !important;
    }
    .main-title-mobile {
        margin-top: 30%;
        font-size: 3.0em;
    }
    .mobile-page-sub-title {
        font-size: 1.8em;
    }
    .app-store-img {
        width: 60%;
    }
    .section-title-mobile {
        margin-top: 40px;
        text-align: center;
        font-weight: 700;
        font-size: 2.0em;
    }
    .mobile-feature-title {
        margin-top: 35px;
    }
    #contact-us-mobile {
        height: 1250px;
    }
}

@media (max-width: $breakpoint-mobile) {
    .switch-back-bar {
        padding-left: 10px !important;
        top: 30px;
   }
    .switch-back-button {
        top: 65%;
        padding: 4px 15px;
        font-size: 10px;
  }
    .top-mobile-card {
        margin-top: 15px;
  }
    .tos-decline-btn {
        text-align: center;
        margin-top: 0px;
    }
}
/*
=============================================================
AGENT TIME PICKER STYLES
=============================================================
*/
.checkbox-top-margin {
    margin-top: 0px;
}

.edit-checkbox-margin {
    margin-top: 0px;
    }

.bootstrap-timepicker {
	position: relative;
}
.bootstrap-timepicker input {
	border-top-left-radius: 4px !important;
	border-bottom-left-radius: 4px !important;
}
.bootstrap-timepicker .input-group-addon {
	cursor: pointer;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
	left: auto;
	right: 0;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
	left: auto;
	right: 12px;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
	left: auto;
	right: 13px;
}
.bootstrap-timepicker-widget.dropdown-menu {
	padding: 2px 3px 2px 2px;
}
.bootstrap-timepicker-widget.dropdown-menu.open {
	display: inline-block !important;
}
.bootstrap-timepicker-widget.dropdown-menu:before {
	border-bottom: 7px solid rgba(0, 0, 0, 0.2);
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	content: "";
	display: inline-block;
	left: 9px;
	position: absolute;
	top: -7px;
}
.bootstrap-timepicker-widget.dropdown-menu:after {
	border-bottom: 6px solid #FFFFFF;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	content: "";
	display: inline-block;
	left: 10px;
	position: absolute;
	top: -6px;
}
.bootstrap-timepicker-widget a.btn, .bootstrap-timepicker-widget input {
	border-radius: 4px;
}
.bootstrap-timepicker-widget table {
	width: 100%;
	margin: 0;
}
.bootstrap-timepicker-widget table td {
	text-align: center;
	height: 30px;
	margin: 0;
	padding: 2px;
}
.bootstrap-timepicker-widget table td:not(.separator) {
	min-width: 30px;
}
.bootstrap-timepicker-widget table td span {
	width: 100%;
}
.bootstrap-timepicker-widget table td a {
	width: 100%;
	display: inline-block;
	margin: 0;
	padding: 8px 0;
	outline: 0;
	color: #000;
	border-radius: 3px;
}
.bootstrap-timepicker-widget table td a:hover {
	text-decoration: none;
	background-color: #2eb398;
	color: #ffffff;
}
.bootstrap-timepicker-widget table td a i {
	margin-top: 2px;
	font-size: 18px;
}
.bootstrap-timepicker-widget table td input {
	width: 25px;
	margin: 0;
	text-align: center;
}
.bootstrap-timepicker-widget .modal-content {
	padding: 4px;
}
@media (max-width: 1367px) and (min-width:767px) {
    .dashboard-stat-panel {
        padding-right: 0px !important;
        padding-left: 8px !important;
        padding-top: 20px !important;
    }
    .feedback-section {
        padding-left: 0px !important;
    }

}
@media (min-width: 767px) {
	.bootstrap-timepicker-widget.modal {
		width: 200px;
		margin-left: -100px;
	}
	.auto-pay-check .checkbox {
	    margin-bottom: 0px;
	}

}

@media (max-width: 767px) {
	.bootstrap-timepicker {
		width: 100%;
	}
	.dashboard-stat-panel {
        padding-right: 0px !important;
    }
	.btn-lead-call {
        margin-top: 5px !important;
        border-radius: 3px !important;
    }
    .leads-actions-column {
        width: 200px !important;
    }
    .btn-lead-sms {
        margin-top: 5px !important;
        border-radius: 3px !important;
    }
	.bootstrap-timepicker .dropdown-menu {
		width: 100%;
	}
	.onboarding-user-avatar {
    text-align: center;
    }
    .onboarding-user-info {
        text-align: center;
    }
    .extra-margin-desktop {
        margin-top: 0px;
    }
    .nav-features > li {
 	display: inline-block;
    }
    .nav-feature-text-mobile {
        display: none;
    }
    .call-feature-icon {
        padding-right: 0px !important;
    }
    .features-btn {
	    min-width: 10px !important;
	    padding-left: 8px !important;
	    padding-right: 8px !important;
    }
    .nav-features {
        text-align: center !important;
    }
    .call-feature-sidebar {
        padding-left: 0px;
        padding-right: 0px;
    }
    .single-agent-phone-label {
        font-size: 12px;
    }
    .tab-side-menu-link {
        padding-left: 30px;
        padding-right: 30px;
    }
    .single-agent-phone {
        margin-bottom: 10px;
    }
    .private-field-padding-btn {
	    padding: 0px;
    }
}

.table-condensed .day, .table-condensed .picker-switch, .table-condensed .prev, .table-condensed .next,
.table-condensed .year, .table-condensed .month, .table-condensed .decade {
    color: #000;
}