/*--------------------------------------------------------------
# Operations
--------------------------------------------------------------*/
.operations .box {
  padding: 20px;
  /* background: #fff; */
  text-align: center;
  /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12); */
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.operations .box button {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.operations .box button:hover {
  background: #3b8af2;
}
.operations .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.operations .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.operations .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.operations .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.operations .operation-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.operations .operation-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.operations .operation-form .error-message br + br {
  margin-top: 25px;
}
.operations .operation-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.operations .operation-form .loading {
  display: none;
  /* background: #fff; */
  text-align: center;
  padding: 15px;
}
.operations .operation-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.operations .operation-form .form-group {
  margin-bottom: 20px;
}
.operations .operation-form input,
.operations .operation-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.operations .operation-form input:focus,
.operations .operation-form textarea:focus {
  border-color: #106eea;
}
.operations .operation-form input {
  padding: 10px 15px;
}
/* .operations .operation-form textarea {
    padding: 12px 15px;
  } */
.operations .operation-form textarea {
  padding: 10px 15px;
}
.operations
  .operation-form
  button:not(.tox-tbtn):not(.tox-mbtn):not(.tox-mbtn--select):not(.tox-statusbar__wordcount) {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.operations
  .operation-form
  button:not(.tox-tbtn):not(.tox-mbtn):not(.tox-mbtn--select):not(.tox-statusbar__wordcount):hover {
  background: #3b8af2;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Info Services
--------------------------------------------------------------*/
.info-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.info-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
/* .info-services .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
} */
.info-services .icon {
  margin-bottom: 15px;
}
.info-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}
.info-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.info-services .title a {
  color: #111;
}
.info-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
/* .info-services .icon-box:hover .title a, .info-services .icon-box:hover .description {
  color: #fff;
}
.info-services .icon-box:hover .icon i {
  color: #fff;
} */
.info-services button {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.info-services .button:hover {
  background: #3b8af2;
}

.table-responsive table,
.table-responsive tbody {
  /* display: block; */
  width: max-content;
}
/* .table-responsive tbody {
  overflow: scroll;
} */
.table-responsive table thead,
.table-responsive tbody tr {
  text-align: center;
  vertical-align: middle;
  table-layout: fixed;
}

input[type="checkbox"].switch {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  transition: border-color 0.3s, background-color 0.3s;
}

input[type="checkbox"].switch::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0, 0, 2px, #999;
  transition: 0.4s;
  top: 2px;
  position: absolute;
  left: 2px;
}

input[type="checkbox"].switch:checked {
  background: rgb(19, 206, 102);
}

input[type="checkbox"].switch:checked::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 2px;
}

.text-overflow-2 {
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.logo {
  line-height: 1;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.card .card-body .card-title {
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}
