.grid {
  display: grid;
  grid-gap: 15px;
  width: 100%;
}
.no-grid-gap {
  grid-gap: initial !important;
}
.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-2-mobile-off {
  grid-template-columns: repeat(2, 1fr) !important;
}
.border {
  border: 1px solid #ccc;
}
.pad-lr-10 {
  padding: 0 10px;
}
.pad-10 {
    padding: 10px;
}
.pad-lr-5 {
  padding: 0 5px;
}
.vertical-middle {
  -webkit-align-items: center;
  align-items: center;
  display: inherit;
}
.no-radius {
  border-radius: 0 !important;
}
/*For all boxes that have a red title and a white content*/
.box-general {
  margin-bottom: 20px;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.box-general .title-header {
  background-color: #cb3725;
  color: #fff;
  padding: 6px;
  border-radius: 3px 3px 0 0;
  text-transform: uppercase;
  font-size: 15px;
  position: relative;
}
.box-general .box-button .btn {
  width: 100%;
}
.box-general .box-button .btn-save-info {
  display: none;
}
.box-general .box-content {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
  height: 100%;
}
.box-general .box-content .line {
  position: relative;
}
.box-general .box-content .contact-numbers {
  display: grid;
}
.box-general .box-content .contact-numbers .cx-1 {
  width: 100%;
  padding-left: 0;
  border-right: 0;
}
.box-general .box-content .contact-numbers .cx-2 {
  width: 140px;
  float: right;
  line-height: 34px;
  padding-left: 5px;
  border-left: 1px solid #ccc;
}
.box-general .box-content .contact-numbers .cx-2 select {
  padding: 0;
  background-color: transparent;
  border: 0;
}
.box-general .box-content .contact-numbers .cx-4 {
  float: right;
  width: 50px;
  line-height: 0;
  border-left: 1px solid #ccc;
}
.box-general .box-content .contact-numbers .cx-4 button {
  width: 100%;
  height: 34px;
  border: 0;
  background-color: transparent;
  position: relative;
}
.box-general .box-content .contact-numbers .edit-phone:before {
  content: '';
  position: absolute;
  background: url(/assets/img/icons/icon-edit.png) no-repeat 0 0;
  width: 18px;
  height: 17px;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -8.5px;
}
.box-general .box-content .contact-numbers .edit-phone:hover:before {
  background-position: 0 -17px;
}
.box-general .box-content .contact-numbers .trash-phone:before {
  content: '';
  position: absolute;
  background: url(/assets/img/icons/icon-trash.png) no-repeat 0 0;
  width: 18px;
  height: 19px;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -8.5px;
}
.box-general .box-content .contact-numbers .trash-phone:hover:before {
  background-position: 0 -19px;
}
.box-general .box-content .contact-numbers .save-phone {
  display: block !important;
}
.box-general .box-content .contact-numbers .save-phone:before {
  content: '';
  position: absolute;
  background: url(/assets/img/icons/icon-save.png) no-repeat 0 0;
  width: 18px;
  height: 17px;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -8.5px;
}
.box-general .box-content .contact-numbers .save-phone:hover:before {
  background-position: 0 -17px;
}
.box-general .box-content .contact-numbers .line:last-child {
  border-bottom: 0;
}
.box-general .box-content .line-form {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 120px 1fr;
  height: 40px;
  position: relative;
}
.box-general .box-content .line-form .select2 {
  box-shadow: 0px 0px 2px #00e2ff;
}
.box-general .box-content .line-form .select2.select2-container--disabled {
  box-shadow: none;
}
.box-general .box-content .line-form .select2-container--default .select2-selection--single {
  border: 0;
  border-radius: 0;
  padding: 6px 12px;
  height: 39px;
}
.box-general .box-content .line-form .select2-selection .select2-selection--single {
  border: 0;
  border-radius: 0;
  padding: 6px 12px;
  height: 39px;
}
.box-general .box-content .line-form .select2-selection__rendered {
  margin-top: 0;
}
.box-general .box-content .line-form.telefone {
  display: inline-block;
  overflow: hidden;
}
.box-general .box-content .area-title {
  background-color: #f1f1f1;
  border-right: 1px solid #ccc;
  height: 100%;
  color: #000;
  font-weight: 500;
  padding-left: 10px;
  -webkit-align-items: center;
  align-items: center;
  display: inherit;
}
.box-general .box-content .line-adress {
  border-bottom: 1px solid #ccc;
  display: flex;
  height: 40px;
  position: relative;
}
.box-general .box-content .line-adress .half-left {
  width: 80%;
  display: grid;
  grid-template-columns: 120px 1fr;
}
.box-general .box-content .line-adress .half-right {
  width: 20%;
  display: grid;
  grid-template-columns: 38px 1fr;
}
.box-general .box-content .line-adress .half-right .area-title {
  border-left: 1px solid #ccc;
}
.box-general .box-content .line-check .check-person label {
  cursor: pointer;
  margin: 0;
  width: 100%;
  height: 100%;
  float: left;
}
.box-general .box-content .line-check .check-person label input {
  display: none;
}
.box-general .box-content .line-check .check-person label span {
  width: 100%;
  float: left;
  height: 100%;
  padding: 5px 0;
  text-align: center;
  border: 2px solid #cb3725;
  font-weight: 500;
  color: #cb3725;
}
.box-general .box-content .line-check input:checked ~ span {
  background-color: #00a65a;
  color: #fff !important;
  border: 2px solid #00a65a !important;
}
.box-general .box-content.geral-telefone {
  border: 0;
}
.box-general .box-content.geral-telefone .telefone {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
