a {
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.c-input {
  background-color: white;
  border: 1px solid #CCC;
  height: 4rem;
  min-width: 30rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: #ccc;
  color: 1.5;
  line-height: none;
  text-align: none;
}
.c-input::-webkit-input-placeholder {
  /* Edge */
  color: #CCC;
  font-size: 1.6rem;
  text-transform: none;
}
.c-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #CCC;
  font-size: 1.6rem;
  text-transform: none;
}
.c-input::placeholder {
  color: #CCC;
  font-size: 1.6rem;
  text-transform: none;
}

:root {
  --primary-color: #4169b1;
  --secondary-color: #f9ae42;
  --third-color: #eb1e69;
}

.c-button {
  background-color: var(--primary-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  border: none;
  min-width: 35rem;
  min-height: 5rem;
  font-size: 1.6rem;
  font-weight: white;
  color: 1.5;
  line-height: center;
  text-align: none;
}

:root {
  --azure: #00a0e1;
  --deep-sea-blue: #005591;
  --ice-blue: #f1f5f7;
  --greyish-brown: #4a4a4a;
}

* {
  box-sizing: border-box;
}

.form-linde {
  max-width: 540px;
  background-color: var(--ice-blue);
  padding: 50px 95px;
}
.form-linde h1 {
  margin-left: -16px;
  margin-bottom: 52px;
  margin-top: 0;
  line-height: 1.2;
}
.form-linde__content .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 23px;
  position: relative;
}
.form-linde__content .input-container i {
  position: absolute;
  right: -40px;
  bottom: 5px;
  font-size: 26px;
  line-height: 1;
  color: #004776;
}
.form-linde__content .input-container label {
  margin-bottom: 16px;
  display: inline-block;
  margin-left: 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-sea-blue);
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}
.form-linde .c-input--linde {
  background-color: white;
  border: solid 1px #b9cdd7;
  height: 70px;
  min-width: 350px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-sea-blue);
  line-height: 1.5;
  text-align: none;
  text-transform: uppercase;
}
.form-linde .c-input--linde::-webkit-input-placeholder {
  /* Edge */
  color: #7faac8;
  font-size: 16px;
  text-transform: uppercase;
}
.form-linde .c-input--linde:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #7faac8;
  font-size: 16px;
  text-transform: uppercase;
}
.form-linde .c-input--linde::placeholder {
  color: #7faac8;
  font-size: 16px;
  text-transform: uppercase;
}
.form-linde .c-button-container {
  display: flex;
  justify-content: center;
}
.form-linde .c-button--linde {
  margin-left: auto;
  margin-right: auto;
  background-color: var(--azure);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  border-radius: none;
  border: none;
  min-width: 218px;
  min-height: 52px;
  font-size: 1.6rem;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.form-linde.reload button, .form-linde.reload input[type="submit"], .form-linde.customer button, .form-linde.customer input[type="submit"] {
  margin-top: 24px;
}
.form-linde.customer h1 {
  display: inline-block;
}

.title-linde-container {
  display: flex;
  justify-content: center;
}

.title-linde {
  position: relative;
  font-size: 40px;
  font-weight: 300;
  color: var(--deep-sea-blue);
  line-height: 1.5;
  text-align: none;
  text-transform: none;
}
.title-linde:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 66px;
  background-color: var(--azure);
  left: 0;
  bottom: -0.8rem;
}

.custom-radio-container {
  display: flex;
  align-items: center;
  margin-bottom: 41px;
}

.custom-radio {
  display: flex;
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  margin-right: 1.25rem;
  border: 0;
  box-shadow: inset 2px 2px 6px 0 rgba(185, 205, 215, 0.5);
}
.custom-radio div {
  margin-left: 30px;
}
.custom-radio__label {
  font-size: 14px;
  font-weight: 300;
  color: var(--greyish-brown);
  line-height: 1.5;
  text-align: initial;
  text-transform: none;
}

.custom-radio input[type="checkbox"] {
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.custom-radio input[type="checkbox"]:checked + span {
  display: block;
  background-color: var(--deep-sea-blue);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 0;
  box-shadow: inset 2px 2px 6px 0 rgba(185, 205, 215, 0.5);
}

.new-user {
  margin-bottom: 33px;
  font-size: 14px;
  font-weight: 300;
  color: var(--greyish-brown);
  line-height: 1.5;
  text-align: initial;
  text-transform: none;
}
.new-user a {
  font-size: 14px;
  font-weight: 600;
  color: var(--greyish-brown);
  line-height: 1.5;
  text-align: initial;
  text-transform: none;
}

.forgot-password {
  display: block;
  margin-top: 19px;
  font-size: 14px;
  font-weight: 300;
  color: var(--greyish-brown);
  line-height: 1.5;
  text-align: right;
  text-transform: none;
  margin-right: 66px;
}
#notifications .alert{
  font-size: 20px;
}

.search-client {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 45px;
}

.search-client input {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 9%);
    background-color: #ffffff;
    height: 48px;
    width: 80%;
    border: none;
    padding-left: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.search-client i {
    position: absolute;
    left: 13%;
    top: 3px;
    font-size: 33px;
    color: #808080;
}

/*//////////////////////////
/////EVALUACION V.2/////////
//////////////////////////*/

.order-details__container a {
    cursor: pointer !important;
}

.modal.fade .modal-dialog {
    transform: translateY(50px) !important;
}

.evaluate .form-modal-linde .evaluate {
    padding: 25px 65px 25px 65px !important;
}

.evaluate .form-modal-linde .evaluate .title-linde {
    margin-bottom: 25px !important;
}

.evaluate .form-modal-linde .evaluate .rate-order select {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 9%) !important;
    background-color: #ffffff !important;
    height: 48px !important;
    width: 75px !important;
    border: none !important;
}

.evaluate .form-modal-linde .evaluate .input-container {
    margin-bottom: 18px !important;
}

.evaluate .form-modal-linde .evaluate .rate-order {
    display: flex !important;
    justify-content: center !important;
    flex-direction: row !important;
}

/* AGREGAR CLIENTE  25/MAY/23*/
.add-customer .input-container a, .add-customer .input-container a label{
    cursor: pointer;
}