@media (min-width: 992px){
    .typo-line{
        padding-left: 140px;
        margin-bottom: 40px;
        position: relative;
    }

    .typo-line .category{
        transform: translateY(-50%);
        top: 50%;
        left: 0px;
        position: absolute;
    }
}

.all-icons [class*="pe-"]{
    font-size: 40px;
}
.all-icons input{
    border: 0;
}
.all-icons .font-icon-detail{
    text-align: center;
    padding: 45px 0px 30px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin: 15px 0;
}
.all-icons .font-icon-detail input{
    margin: 25px auto 0;
    width: 100%;
    text-align: center;
    display: block;
    color: #aaa;
    font-size: 13px;
}

#map{
    position:relative;
    width:100%;
    height: calc(100% - 60px);
}

.places-buttons .btn{
    margin-bottom: 30px
}
.sidebar .nav > li.active-pro{
    position: absolute;
    width: 100%;
    bottom: 10px;
}
.sidebar .nav > li.active-pro a{
    background: rgba(255, 255, 255, 0.14);
    opacity: 1;
    color: #FFFFFF;
}

.table-upgrade td:nth-child(2),
.table-upgrade td:nth-child(3){
    text-align: center;
}

@media all and (max-width: 991px)  {
    .sidebar .nav > li.active-pro{
        position: initial;
    }
}

/*************************  Extras  *************************/ 
.loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99999;
}

.spinner {
    margin: 20% auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .spinner > div {
        background-color: #fff;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.nav li:hover{cursor:pointer;}

.sidebar:after{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#44b9b3+0,8876c8+86 */
	background: #44b9b3 !important; /* Old browsers */
	background: -moz-linear-gradient(top, #44b9b3 0%, #8876c8 86%) !important; /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #44b9b3 0%,#8876c8 86%) !important; /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #44b9b3 0%,#8876c8 86%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#44b9b3', endColorstr='#8876c8',GradientType=0 ) !important; /* IE6-9 */
}

.m-r-10{margin-right:10px !important;}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
	max-width: 400px;
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1060; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
	font-size:1.2em;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
   However, delay the fade out process for 2.5 seconds */
   -webkit-animation: fadein 0.5s, fadeout 0.5s 4s;
   animation: fadein 0.5s, fadeout 0.5s 4s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.alertSuccess{background:#00a65a !important; border-radius:0 !important; border:1px solid #048248 !important; color:#fff !important}
.alertWarning{background:#ecaf02 !important; border-radius:0 !important; border:1px solid #d29e0a !important; color:#fff !important}
.alertError{background:#dd4b39 !important; border-radius:0 !important; border:1px solid #b91d1a !important; color:#fff !important}
.alertInfo{background:#3c8dbc !important; border-radius:0 !important; border:1px solid #337ab7 !important; color:#fff !important}
.alertDefault{background:#666 !important; border-radius:0 !important; border:1px solid #444 !important; color:#fff !important}

.icon-alert{margin-right:10px;}

.displayNone{display:none;}

.m-15{margin:15px;}
.m-2{margin:2px;}
.m-t-20{margin-top:20px;}

.w-50{width:50%;}
.w-100{width:100%;}
.w-150px{width: 150px!important;}
.min-w-110px{min-width: 110px !important;}
.min-w-130px{min-width: 130px !important;}
.iconTable{margin-right:20px; font-size:1.3em;}
.iconTable:hover{cursor:pointer}

.dataTables_length, .dataTables_filter, .dataTables_paginate{padding:0 15px !important;}
.dataTables_paginate{padding:10px 15px 15px 15px !important;}

.modal-title{
    max-width: 380px !important;
    float: left !important;
}

#resultadoFiltroRelatorioConsulta_wrapper .dt-buttons,
#resultadoFiltroRelatorioAgenda_wrapper .dt-buttons{
  display: inline-block;
  width: 100%;
}

#resultadoFiltroRelatorioConsulta_wrapper .dataTables_filter,
#resultadoFiltroRelatorioConsulta_wrapper .dataTables_length,
#resultadoFiltroRelatorioAgenda_wrapper .dataTables_filter,
#resultadoFiltroRelatorioAgenda_wrapper .dataTables_length{
  display: inline-block;
  width: 50%;
  margin-top: 5px;
}

.btn-pdf-relatorio:before {
  font-family: FontAwesome;
  content: "\f1c1";
  margin-right: 5px;
}
.btn-excel-relatorio:before {
  font-family: FontAwesome;
  content: "\f1c3";
  margin-right: 5px;
}

.dt-buttons{
    padding: 0 15px;
}

.select2.select2-container{
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 4px;
    color: #565656;
    padding: 8px 12px;
    height: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.select2-container--default .select2-selection--single{
    border:none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nowrap-ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#tableclientes_wrapper .row {
    overflow: auto;
}

.btn {
    cursor: pointer;
}

.select2-selection.select2-selection--multiple{
    margin-top: -5px;
    border: none !important;
}

.select2-container--disabled span span span {
    background-color: #ffffff !important;
    cursor: not-allowed !important;
}

.ui-sortable {
    width: 270px !important;
    list-style-type: none;
}

.ui-sortable li:not(.ui-sortable-placeholder) {
    margin: 0 3px 3px 3px;
    padding: 0.4em;
    border: 1px solid #ddd;
    background-color: #fff;
}

ul li.ui-sortable-handle, ul li.ui-sortable-handle ul li {
    list-style-type: none;
}

.ui-state-highlight { height: 1.5em; line-height: 1.2em; background-color: #479f9e }

.flex-between {
    display: flex;
    justify-content: space-between;
}

body.dragging, body.dragging * {
cursor: move !important;
}

.dragged {
position: absolute;
opacity: 0.5;
z-index: 2000;
}

ol.example li.placeholder {
position: relative;
/** More li styles **/
}
ol.example li.placeholder:before {
position: absolute;
/** Define arrowhead **/
}

ol.lista-menu li.placeholder {
    position: relative;
    border: 1px solid #333333;
    border-radius: 5px;
    width: 221px;
}
ol.lista-menu li.placeholder:before {
position: absolute;
}
ol.lista-menu li {    
    width: fit-content !important;
}

.sortable-ul {
    list-style: none;
}

.sortable-li {
    list-style: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 221px;
    text-align: center;
    box-shadow: 5px 5px 8px #8888;
    margin-bottom: 10px;
}

.sortable-li.active, .sortable-ul.active {
    border: 1px solid #333333;
}

.m-l-10 {
    margin-left: 10px !important;
}

.m-h-20 {
    max-height: 20px !important;
}

.cursor-pointer{
    cursor: pointer;
}