/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --red:#9B0000;
  --blue:#0F0078;
  --light-blue:#5163c0;
  --deep-blue:#05014a;
  --orange:#ff9644;
  --gray-cd:#cdcdcd;
  --gray-af:#afafaf;
  --gray-e8:#e8e8e8;
  --gray-f8:#f8f8f8;
  --gray-d2:#d2d2d2;
  --gray-d4:#d4d4d4;
  --gray-d5:#d5d5d5;
  --gray-dd:#dddddd;
  --gray-f0:#f0f0f0;
  --gray-f1:#f1f1f1;
  --gray-f3:#f3f3f3;
  --gray-f7:#f7f7f7;
  --gray-7c:#7c7c7c;
  --gray-f8:#f8f8f8;
  --point-color:#2e55e7;
  --point01:#010A65;
  --schedule:#00B09C;
  --border-color:#d1d1d1;
  --history-color:#DBD2D2;
  --footer-bg:#191E29;
}

/************************************************************************************/
/*************************************** Form ***************************************/
/************************************************************************************/
*:disabled + label {
  opacity: 0.5;
  cursor: default;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}

input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
  height: 60px;
  padding: 10px 20px;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
    height: 52px;
  }
}
@media (max-width: 768px) {
  input[type=text],
input[type=date],
input[type=time],
input[type=number],
input[type=password],
select {
    height: 42px;
    padding: 10px 14px;
  }
}

input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
}

select {
  background: url("/images/gsndnurse/common/select.svg") no-repeat right 1em center/10px 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox] + label::before {
  border-radius: 0;
}
input[type=checkbox]:checked + label::before {
  outline: 1px solid #da3a15;
  background: #da3a15 url("/images/layouts/survey/checked.png") no-repeat center;
}

input[type=radio] + label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 2.5em;
  height: 60px;
}
input[type=radio] + label::before, input[type=radio] + label::after {
  content: "";
  border-radius: 50%;
  display: block;
}
input[type=radio] + label::before {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background: #ffffff;
  border: 1px solid #cccccc;
}
input[type=radio]:checked + label::before {
  border-color: #da3a15;
}
input[type=radio]:checked + label::after {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #da3a15;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  input[type=radio] + .input-label {
    height: 52px;
    margin-right: 1.5em;
  }
  input[type=radio] + .input-label::before {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
  input[type=radio]:checked + .input-label::after {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 7px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 768px) {
  input[type=radio] + .input-label {
    height: 42px;
    margin-right: 1em;
  }
  input[type=radio] + .input-label::before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
  input[type=radio]:checked + .input-label::after {
    width: 8px;
    height: 8px;
    top: 50%;
    left: 6px;
    margin-top: -4px;
  }
}

input,
select,
textarea {
  border: 1px solid #d1d1d1;
}
input.error ~ label.error,
select.error ~ label.error,
textarea.error ~ label.error {
  position: relative;
}

label.error {
  font-size: 1.4rem !important;
  color: #fff;
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-danger);
  padding: 0.25rem 0.5rem;
  display: block;
}
