body {
  font-family: "Open Sans", sans-serif;
  color: #444444; font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #858796;
  text-align: left;
  background-color: #fff;
}

 @media (min-width: 768px) {
  .btn-return-to-admin {
    position: fixed !important;
    top: 425px;
    right: 0;
    padding: 5px 15px !important;
    background-color: rgb(215, 215, 215) !important;
    color: #777 !important;
    font-size: 0.9rem !important;
    border-radius: 0 0 3px 3px !important;
    text-decoration: none;
    transform: rotate(90deg);
    transform-origin: top right;
    z-index: 500;
  }
  .btn-return-to-admin:hover {
    background-color: rgb(205, 205, 205) !important;
    color: #444 !important;
    text-decoration: none;
  }
}
.btn-return-to-admin .floating {
  position: fixed !important;
  top: 425px;
  right: 0;
  padding: 5px 15px !important;
  background-color: rgb(215, 215, 215) !important;
  color: #777 !important;
  font-size: 0.9rem !important;
  border-radius: 0 0 3px 3px !important;
  text-decoration: none;
  transform: rotate(90deg);
  transform-origin: top right;
  z-index: 500;
}
.btn-return-to-admin .floating:hover {
  background-color: rgb(205, 205, 205) !important;
  color: #444 !important;
  text-decoration: none;
}

.edit-existing-local {
	position:relative;
    background-color:#ccc;
	padding:0 0 0 5px;
	top:-5px;
	margin-right:5px;
	border-radius:3px;
	margin:1px;
	cursor: pointer; /* Altera o cursor para uma mão quando passar o mouse sobre o local */
}

.edit-existing-local:hover {
    color: blue; /* Altera a cor do texto para azul quando passar o mouse sobre o local */
}

.cad-existing-local {
	position:relative;
    background-color:#ccc;
	padding:0 0 0 10px;
	margin-right:5px;
	border-radius:3px;
	margin:1px;
	cursor: pointer; /* Altera o cursor para uma mão quando passar o mouse sobre o local */	
}

.cad-existing-local:hover {
    color: blue; /* Altera a cor do texto para azul quando passar o mouse sobre o local */
}
#cad_local_results ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

 #cad_local_results li {
        padding: 3px 0 0px 5px;
        cursor: pointer;
    }

 #cad_local_results li:hover {
        background-color: #e9ecef;
    }

   /* Estilo do card  detalhe processo*/
    /* Título e Ícones alinhados na mesma linha */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Estilo do título */
    .card-title {
        display: flex;
        align-items: center;
        font-size: 20px;
        margin: 0;
    }

    .card-title i {
        margin-right: 8px;
    }

    /* Container dos ícones */
    .icon-container {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }
	/* Estilo para o contêiner do checkbox */
	.checkbox-group {
		height: 120px; /* Altura máxima do contêiner */
		overflow-y: auto; /* Adiciona uma barra de rolagem vertical quando necessário */
		border: 1px solid #ccc;
		border-radius: 5px;
		padding: 10px;
	}
    /* Estilo do box de opções */
    .options-box {
        display: none;
        position: absolute;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        top: 35px;
        right: 0;
        width: 180px;
		padding: 5px;
        z-index: 1000;
    }

    .options-box ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .options-box li {
        padding: 3px 0 0px 5px;
        cursor: pointer;
    }

    .options-box li:hover {
        background-color: #e9ecef;
    }

    .add-button {
        font-size: 25px;
        cursor: pointer;
        font-weight: bold;
    }

    /* Estilo da lista de históricos */
    .history-list {
        margin-top: 15px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }

    .history-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .history-item span {
        font-weight: bold;
    }

    .history-item i {
        color: #6c757d;
        cursor: pointer;
    }

.card-component {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin: 0px;
  background-color: #fff;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.header-content {
  display: flex;
  align-items: center;
   margin-top:-10px;
}
.header-title {
  top:8px;
  margin-left: 10px;
  font-size: 1.2em;
}
.card-actions {
  display: flex;
}
.actions {
  display: flex;
  margin-top:-12px;
  color:blue;
  gap: 10px;
}
.action-button {
  cursor: pointer;
}
.card-content .row, .stakeholders .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.col-label {
  flex: 1;
  font-weight: bold;
}
.col-value {
  flex: 3;
}
.divider {
  border-top: 1px solid #ddd;
  margin: 16px 0;
}
.stakeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stakeholder-link {
  color: #1a73e8;
  cursor:pointer;
  text-decoration: none;
  text-transform: uppercase;
}
.stakeholder-tag {
  display: inline;
  padding: 3px 3px;
  border-radius: 4px;
  background-color: #DCDCDC;
  color: #6c757d;
  font-family: Arial, sans-serif;
  margin-left:5px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.stakeholder-action {
  display:none;	
  cursor: pointer;
  margin-left: 10px;
}
	
 /* Estilo do badge */
.badge_old {
  display: inline-block;
  padding: 3px 3px;
  border-radius: 4px;
  background-color: #DCDCDC;
  color: #333;
  font-family: Arial, sans-serif;
  margin-left:5px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Exemplo de estilo alternativo */
.alternative-badge {
  display: inline-block;
  padding: 3px 3px;
  border-radius: 4px;
  background-color: #DCDCDC;
  color: #333;
  font-family: Arial, sans-serif;
  margin-left:5px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
        /* Estilo para forçar a exibição da linha */
        .hr-line {
		    border-top: 1px solid rgba(0, 0, 0, 0.6);
            width:96%; /* Removendo a margem inferior para evitar estouro */
        }

        /* Ajustando o padding do card */
        .card-body {
            padding: 1.25rem; /* Adicione o mesmo padding ao redor do texto */
        }
 .processo_detalhe sup{
	 position:relative;
	 top:0px;
	 margin-left:0px; 
	 font-size: 16px; 
	 color: #666;
	 cursor:pointer; 
	 font-weight: bold;
	 text-align:word-break;
	 }
 
 .processo_detalhe .header-details {
    text-align: left;
}

.processo_detalhe .header-details .name {
    margin-top: 0;
    margin-bottom: 0
}
.processo_detalhe .header-details .name {
    margin-top: 0;
    margin-bottom: 0
}


.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    opacity: 0
}
.custom-file-input:focus~.custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}
.custom-file-input:disabled~.custom-file-label,
.custom-file-input[disabled]~.custom-file-label {
    background-color: #e9ecef
}
.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse"
}
.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse)
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Procurar...";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.carregando{
	color:blue;
	display:none;
}
.bi-1x {
  margin: .10rem;
  font-size: 1.2rem;  
 font-weight: bold;
}
.bi-2x {
  margin: .25rem;
  font-size: 2.5rem;
  font-weight: bold;
}
.cursorpointer{cursor:pointer}
.description{
    position: absolute;
    height: auto;
    bottom: 0;
    width: 100%;
	top:3px;
}
 .float-right{float:right!important}
.click{cursor:pointer;}

.bg-gradient-login{
  background-color: #106eea;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #4089e9), to(#054292));
  background-image: linear-gradient(180deg, #4089e9 10%, #054292 100%);
  background-size: cover;
}
.thumb-lg {
width: 100px;
}
.card {
border: none;
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  color: #fff;
  background-color:#106eea;
  border-color:#2b79f0;
}

.btn-primary:hover {
  color: #fff;
  background-color:#2b79f0;
  border-color:#106eea;
}

.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color:#106eea;
  border-color: #2b79f0;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color:#106eea;
  border-color: #244ec9;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5);
}
.m-b-30 {
margin-bottom: 30px;
}
.social-links li a {
-webkit-border-radius: 50%;
background: #fcfdfd;
border-radius: 50%;
color: #9f9f9f;
display: inline-block;
height: 30px;
line-height: 30px;
text-align: center;
width: 30px;
}
.textblack{color:#000}.textblue{color:#248}.textgreen{color:#779500}.textgrey{color:#888}.textgold{color:#fb5}.textorange{color:#f60}.textred{color:#c00}
.accordion {
	margin-top: 0px; /* Add space above accordion */
}
.accordion .card {
	border-radius: 0;
	border-width: 3px 0 1px 0;
	#box-shadow: 0 8px 5px rgba(0, 0, 0, 0.4);
}
.accordion .card:first-child {
	border-top: none;
}
.accordion .card .card-header {
	background: #fff;
	padding-top: 0px;
	padding-bottom: 0px;
	border-radius: 0;
	margin-bottom: -2px;
	font-family: "Roboto", sans-serif;
	#border-left: 5px solid #D11149;
	border-bottom: 3px solid #D11149;
}
.accordion .card-header:hover {
	background: #ddd;
}
.accordion .card-header .icon{
	position:absolute;
	float: left;
	top: 8px;
	color:fff;
	margin-left:-15px;
	font-size: 1.34rem;

}
.accordion .card-header .btn {
	font-size: 1.04rem;
	font-weight: 500;
	width: 100%;
	text-align: left;
	position: relative;
	top: -2px;
}
.accordion .card-header h2 span {
	float: left;
	margin-top: 10px;
}
.accordion .card-header i {
	position:absolute;
	float: right;
	margin-right:-25px;
	font-size: 1.9rem;
	font-weight: bold;
	position: relative;
	top: 5px;
}
.accordion .card-header button:hover {
	color: #23384e;
}
.accordion .card-body {
	background: #eaeaea;
	color: #595959;
}
.accordion .highlight {
	background: #fff !important;
}
#accordionList .btn-service{
	position:absolute;
	right:20px;
	top:15px;
	padding:3px 5px 6px 5px;
    border-top: none;
	border-radius:5px;
    font-size: 15px;
    color: #fff;
    line-height:15px;
	z-index:0;
}
 #accordionList .active{   
 background:#8FC74A;
 }
  #accordionList .pending{   
 background:#EF505D;
 }
 
.ribbon-inner {
	text-align:center;
	position:relative;
	font-size:24px;
	font-weight: 700;
	text-transform: uppercase;
}  
.ribbon-inner .ribbon-paid {
	color:green;
}
.ribbon-inner .ribbon-unpaid {
	color:#ED3E48;
}
.ribbon-inner .ribbon-cancelled {
	color:#87939F;
}
 .form-inline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 } 

.contentbox{background-color:#f7f7f7;border:1px dashed #ccc;padding:0 0 10px 10px}
/******************* Accordion Demo - 4 *****************/
#listacord .panel{
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 10px;
    overflow: hidden;
    position: relative;
}
#listacord .panel-heading{
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}
#listacord .panel-heading:before,
#listacord .panel-heading:after{
    content: "";
    width: 50%;
    height: 20%;
    box-shadow: 0 15px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 15px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: -1;
}
#listacord .panel-heading:after{
    left: auto;
    right: 10px;
    transform: rotate(3deg);
}
h4.panel-title{margin:10px 0px !important;}
#listacord .panel-title a{
    display: block;
    padding: 15px 70px 15px 70px;
    margin: 0;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d11149;
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}
#listacord .panel-title a:before,
#listacord .panel-title a.collapsed:before{
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 55px;
    height: 100%;
    text-align: center;
    line-height: 50px;
    border-left: 2px solid #D11149;
    position: absolute;
    top: 0;
    right: 0;
}
#listacord .panel-title a.collapsed:before{ content: "\f107"; }
#listacord .panel-title a .icon{
    display: inline-block;
    width: 55px;
    height: 100%;
    border-right: 2px solid #d11149;
    font-size: 30px;
    color: rgba(0,0,0,0.7);
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
#listacord .panel-body{
    padding: 10px 15px;
    margin: 0 0 20px;
    border-bottom: 3px solid #d11149;
    border-top: none;
    background: #fff;
    font-size: 15px;
    color: #333;
    line-height: 27px;
}
#listacord .btn-service{
	position:absolute;
	right:70px;
	top:15px;
	padding:3px 5px 6px 5px;
    border-top: none;
	border-radius:5px;
    font-size: 15px;
    color: #fff;
    line-height:15px;
	z-index:9999;
}
 #listacord .active{   
 background:#8FC74A;
 }
  #listacord .pending{   
 background:#EF505D;
 }
.text-info{color: #BB38EB !important;cursor: pointer;}
.text-purple{color:#106eea;}
	
.lv-box {border-left: 5px solid #106eea !important; border-radius: 10px; }
 .page-header .page-header-content{padding-top:3rem;padding-bottom:3rem}
 .page-header .page-header-content 
 .page-header-title{line-height:normal;font-size:2.25rem;font-weight:500;display:flex;align-items:center;margin-bottom:0}
 .page-header .page-header-content .page-header-title .page-header-icon{margin-right:.5rem;display:inline-flex}
 .page-header-compact .page-header-content{padding:0}
 .page-header-compact .page-header-content .page-header-title{font-size:1.8rem}
 .page-header.page-header-dark{color:hsla(0,0%,100%,.5)}.page-header.page-header-dark .page-header-title{color:#fff}
 .page-header.page-header-dark .page-header-title .page-header-icon{color:hsla(0,0%,100%,.5)}
 .page-header.page-header-light{color:rgba(33,40,50,.5)}
 .page-header.page-header-light .page-header-title{color:#212832}
 .page-header.page-header-light .page-header-title .page-header-icon{color:rgba(33,40,50,.5)}
 																	
 .nav .nav-link .nav-link-icon,.sidenav-menu .nav-link .nav-link-icon{margin-right:.5rem}
 .nav-borders .nav-link{color:#69707a;border-bottom:.125rem solid transparent;padding:.5rem 0;margin-left:1rem;margin-right:1rem}
 .nav-borders .nav-link.active{color:#dd3d31;border-bottom-color:#dd3d31}
 .nav-borders .nav-link.disabled{color:#c5ccd6}
 .nav-borders.flex-column .nav-link{padding:0 1rem;margin:.5rem 0;border-bottom:none;border-right:.125rem solid transparent}
 .nav-borders.flex-column .nav-link.active{border-right-color:#dd3d31}
 .navbar .dropdown-menu{top:calc(100% + .5rem + .5rem)!important;font-size:.9rem}.navbar .dropdown-menu .dropdown-header{color:#a7aeb8}
 .navbar .form-control,.topnav{font-size:.9rem}.topnav{padding-left:0;height:3.625rem;z-index:1039}
  
table.no-margin {
    margin: 0!important
}
table.form {
    background-color: #fff;
    margin: 0 0 5px 0;
    padding: 3px;
    border: 1px solid #e2e7e9;
    border-collapse: separate;
    border-spacing: 2px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px
}
table.form td {
    padding: 3px 5px
}
table.form td.fieldlabel {
    background-color: #fff;
    text-align: right
}
table.form td.fieldtable {
    background-color: #efefef;
    text-align: left
}
table.form td.fieldtable .inset-whitebg-container {
    margin: 20px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 4px
}
div.tablebg {
    margin: 1em 0
}
table.datatable {
    margin: 0 0 10px 0;
    padding: 0;
    border-collapse: separate;
    border-spacing: 1px
}
table.datatable th {
    padding: 2px;
    background-color: #999;
    font-weight: 700;
	font-size:13px;
    text-align: center;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
}
table.datatable th.domain-pricing-head {
    width: 90px;
    min-width: 80px
}
table.datatable td {
    padding: 3px;
    background-color: #fff;
	font-size:15px;
    border-bottom: 1px solid #ebebeb
}
table.datatable tr.rowhighlight td {
    background-color: #e0e8f3
}
table.datatable tr.domain-pricing-row td {
    height: 43px
}
table.datatable tr td.field-highlight {
    background-color: #efefef
}
table.datatable tr:hover td {
    background-color: #eff2f9
}
table.datatable th,
table.datatable th a,
table.datatable th a:visited {
    color: #fff;
    text-decoration: none
}
table.datatable th a:hover {
    color: #fff;
    text-decoration: underline
}
table.datatable tr:hover td {
    background-color: #f3f3f3
}
table.datatable tr.grey-out td,
table.datatable tr.grey-out td a {
    color: #999
}
table.padded-fields td {
    padding: 2px
}
.table-themed {
    border: 1px solid #ddd
}
.table-themed th {
    background-color: #fff;
    font-size: .96em
}
.table-themed tr.odd td {
    background-color: #f8f8f8
}
.table-themed tr:hover td {
    background-color: #ecf3f8
}

@media (max-width:767px) {
    table.form tr,
    table.form tr td.fieldtable,
    table.form tr td.fieldtable input[type=text],
    table.form tr td.fieldtable select,
    table.form tr td.fieldlabel {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: left
    }
    table.form tr td.fieldlabel {
        padding-bottom: 0;
        font-weight: 700;
        background-color: #efefef
    }
    table.form tr td.fieldtable {
        border-bottom: 2px solid #fff;
        padding-bottom: 5px;
        word-wrap: break-word
    }
    .datepick+img {
        position: relative;
        left: -8px;
        top: -26px;
        float: right
    }
    .date-picker+img {
        position: relative;
        left: -8px;
        top: -26px;
        float: right
    }
}

.cor-red{color:#D9534F;}
.text-new{color:#000;padding:0 0 0 65px; font-weight: 600;font-size:20px;}
.btn-status{    
display: inline-block;
  font-weight: 700;
  color: #fff;
  text-align: center;
  width:6.85rem;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.015rem 0.55rem 0.325rem 0.55rem;
  font-size: 0.85rem;
  line-height: 0.9;
  border-radius: 0.20rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.box-error{width:50%;margin:0 auto 0 auto;padding:30px;border:dashed 1px;border-radius:5px;font-size:20px;text-align:center;color: #78261f;
  background-color: #fadbd8;
  }
.status-custom{background-color:white;color:black;border:1px solid black;padding:1px;}
.status-pending{background-color:#D9534F;}.status-pending.transfer{background-color:#A68500;}
.status-inactive{background-color:#D9534F;}.status-pending.transfer{background-color:#A68500;}
.status-active,.status-open{background-color:#3fad46;}
.status-suspended{background-color:#F0AD4E;}
.status-lead{background-color:#F0AD4E;}
.status-ticket-priority-low{background-color:#186CFF;}
.status-ticket-priority-medium{background-color:#FFE119;}
.status-ticket-priority-high{background-color:#FB0000;}
.status-customer-reply{background-color:#ff6600;}
.status-fraud,.status-answered{background-color:#000000;}
.status-expired{background-color:#004258;}
.status-cancelled{background-color:#9FA29A;}
.status-terminated{background-color:#666;}
.status-onhold{background-color:#224488;}
.status-inprogress{background-color:#cc0000;}
.status-closed{background-color:#888;}
.status-paid{background-color:#498302;}
.status-unpaid{background-color:#ED3E48;}
.status-cancelled{background-color:#87939F;}
.status-collections{background-color:#9A141E;color:#FFFFFF;}
.status-refunded{background-color:#319FC3;}
.status-customer-reply{background-color:#ff6600;}
.status-delivered{background-color:#224488;}
.status-accepted{background-color:#498302;}
.status-lost,.status-dead{background-color:#FFFFFF;border:1px solid #000000;color:#000000;}

.btn-remove-from-cart {
    color: #444;
}
.btn-remove-from-cart:hover {
    color: #cc0000;
    text-decoration: none;
}
.cor-red{color:red;}
.cor-navi{color:#F5C118;}
.cor-green{color:#5B914A;}
.bg-azbaby{background:#00CCFF;}
.plan-price {
  font-weight: 600;
  font-size: 3em;
}
 .plan-type {
  position:absolute;
  opacity: 0.8;
  font-size: 0.9em;
  margin-top:52px;
  margin-left:-40px;

}			
.plan-brl {
  position:absolute;
  opacity: 0.8;
  font-size: 1.1em;
  font-weight: 600;
  margin-top:15px;
  margin-left:-20px;
  text-transform: uppercase;
}
 .plan-price_old{
  opacity: 0.8;
  font-size: 1.1em;
  font-weight: 600;
  margin-top:5px;
  margin-bottom:-20px;
  text-transform: uppercase;
}

    /* Estilos personalizados para checkbox */
        .custom-checkbox .form-check-input {
			top:-3px;
            width: 1.1em;
            height: 1.1em;
            cursor: pointer;
			border-color:#1e81b0;
        }
        .custom-checkbox .form-check-input:checked {
            background-color:#1e81b0;
            border-color: #1e81b0;
        }
        .custom-checkbox .form-check-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        .custom-checkbox .form-check-label {
            margin-left: 0.5em;
        }
/* iCheck plugin Square skin, blue
----------------------------------- */
.icheckbox_square-navi,
.iradio_square-navi {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(navi.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-navi {
    background-position: 0 0;
}
    .icheckbox_square-navi.hover {
        background-position: -24px 0;
    }
    .icheckbox_square-navi.checked {
        background-position: -48px 0;
    }
    .icheckbox_square-navi.disabled {
        background-position: -72px 0;
        cursor: default;
    }
    .icheckbox_square-navi.checked.disabled {
        background-position: -96px 0;
    }

.iradio_square-navi {
    background-position: -120px 0;
}
    .iradio_square-navi.hover {
        background-position: -144px 0;
    }
    .iradio_square-navi.checked {
        background-position: -168px 0;
    }
    .iradio_square-navi.disabled {
        background-position: -192px 0;
        cursor: default;
    }
    .iradio_square-navi.checked.disabled {
        background-position: -216px 0;
    }
tbody.sortable {width: 100%; margin: 20px 0; list-style: none; position: relative !important;}
tbody.sortable tr {cursor: move;}
tbody.sortable tr.ui-sortable-helper {border-color: #3498db;}
tbody.sortable tr.placeholder {height: 50px; background: #eee; border: 2px dashed #bbb; opacity: 0.6;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.btn-remove-from-cart {
    color: #444;
}
.btn-remove-from-cart:hover {
    color: #cc0000;
    text-decoration: none;
}
.checkbox label:after, 
.radio label:after {
    content: '';
    display: table;
    clear: both;
}
.fa-arrows-alt{cursor: pointer;}
.penedit{color:blue;cursor: pointer;}
.penexcluir{color:red;cursor: pointer;}
.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 2px solid #f00;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;	
	color:#f00;
    top: 50%;
    left: 20%;

}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}
.checkbox span{
	  position: relative;
      margin-top:2px;

	}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  float:left;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider  .list-group-item{padding:0;}
input.default:checked + .slider {
  background-color: #444;
}
input.primary:checked + .slider {
  background-color: #2196F3;
}
input.success:checked + .slider {
  background-color: #8bc34a;
}
input.info:checked + .slider {
  background-color: #3de0f5;
}
input.warning:checked + .slider {
  background-color: #FFC107;
}
input.danger:checked + .slider {
  background-color: #f44336;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.panel-switch {
    cursor: pointer
}
.panel-check:hover,
.panel-switch:hover {
    border-color: rgba(224, 232, 255, .56)
}
.panel-check>.check,
.panel-switch>.check {
    display: flex;
    flex-direction: column;
    height: 100%
}
.panel-switch {
    user-select: none;
    border: 1px solid rgba(224, 232, 255, .078)
}
.panel-switch .panel-body {
    display: flex;
    align-items: center;
    padding: 14px 16px
}
.panel-switch .panel-body .switch {
    margin: 0 0 0 0
}
.panel-switch .panel-body .switch-label {
    display: block;
    text-align: left;
    padding-right: 16px
}
.switch {
    position: relative;
    height: 24px;
    width: 40px;
    cursor: pointer
}
.switch+.form-text {
    margin-left: spacing(2x)
}
.switch__checkbox {
    position: absolute;
    opacity: 0
}
.switch__checkbox+.switch__container .switch__handle {
    right: 18px
}
.switch__checkbox:checked+.switch__container {
    background: #1062fe
}
.switch__checkbox:checked+.switch__container .switch__handle {
    right: 2px
}
.switch__handle {
    top: 2px;
    right: 2px;
    z-index: 2;
    display: block;
    height: 20px;
    width: 20px;
    background-color: #fff
}
.switch__container,
.switch__handle {
    position: absolute;
    border-radius: 12px;
    transition: .34s ease
}
.switch__container {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(004, 032, 255, .48)
}
.switch-label{color:#000;padding:0 20px 0 10px; font-weight: 600;font-size:20px;}
.switch--text {
    width: 50px
}
.switch--text .switch__checkbox+.switch__container .switch__handle {
    right: 28px
}
.switch--text .switch__checkbox+.switch__container:after {
    position: absolute;
    top: 1px;
    bottom: 0;
    display: flex;
    right: 6px;
    z-index: 1;
    align-items: center;
    content: "off";
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase
}
.switch--text .switch__checkbox:checked+.switch__container {
    background: #1062fe
}
.switch--text .switch__checkbox:checked+.switch__container:after {
    position: absolute;
    top: 1px;
    bottom: 0;
    display: flex;
    left: 8px;
    z-index: 1;
    align-items: center;
    content: "on";
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase
}
.switch--text .switch__checkbox:checked+.switch__container .switch__handle {
    right: 2px
}
.switch--sm {
    height: 18px;
    width: 32px
}
.switch--sm .switch__handle {
    width: 14px;
    height: 14px
}
.switch--sm .switch__checkbox+.switch__container .switch__handle {
    right: 16px
}
.switch--sm .switch__checkbox:checked+.switch__container .switch__handle {
    right: 2px
}
.switch--lg {
    height: 28px;
    width: 60px;
    border-radius: 100%
}
.switch--lg .switch__handle {
    width: 24px;
    height: 24px
}
.switch--lg .switch__container {
    border-radius: 50px
}
.switch--lg.switch--text .switch__checkbox+.switch__container .switch__handle {
    right: 34px
}
.switch--lg.switch--text .switch__checkbox:checked+.switch__container .switch__handle {
    right: 2px
}
.switch--lg.switch--text .switch__checkbox+.switch__container:after {
    right: 8px
}
.switch--primary .switch__handle {
    background: #1062fe
}
.switch--primary .switch__checkbox:checked+.switch__container .switch__handle {
    background: #fff
}
.switch--primary .switch__container {
    background: rgba(224, 232, 255, .16)
}
.form-text+.switch {
    margin-left: auto
}