/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  /*vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* MAIN */

:root {
  /*--primary: #447d54;*/
  --primary: #15803D;
  --primary2: #4463d3;
  --primary3: #15803de3;
  --bg-blue: #f2f5fe;
  --bg-green: #2ecc7130;
  --bg: #f5f8ff;
  --white: #fff;
  --gray: #f4f6f7;
  --text: #4c5574;
  --red: #fe5555;
  --green: #45a786;
  --yellow: #e3b320;
}

html,
body {
  width: 100%;
  height: auto;
  min-height: 100vh;
}

body {
  font-family: 'Nunito', sans-serif;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  /* display: flex; */
}

h1 {
  font-size: 32px;
  font-weight: 800;
}

h2 {
  font-size: 28px;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  font-weight: 800;
}

h4 {
  font-size: 16px;
  font-weight: 800;
}

.bold {
  font-weight: bold;
}

.link {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.grid {
  display: grid;
}

.grid-item {
  padding: 38px 0;
}

.grid-item p {
  margin-top: 14px;
  font-size: 12px;
}

.flex {
  display: flex;
}

.grow {
  flex-grow: 1;
}

.wrap {
  flex-wrap: wrap;
}

.gap {
  gap: 1em;
}

.p-half-em {
  padding: 0.5em;
}

.min-h-100vh {
  min-height: 100vh;
}

.text-center {
  text-align: center;
}

.w-100p {
  width: 100%;
}

.w-50p {
  width: 50%;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

.card {
  min-width: 180px;
  padding: 16px;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0px 4px 15px 5px #0000000d;
}

.card-list {
  margin-bottom: 1em;
}

.card-link {
  text-decoration: none;
  color: var(--text);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
}

.card-title span {
  font-size: 0.8em;
}

.card-subtitle {
  font-size: 12px;
  color: #bdbdbd;
  margin: 8px 0;
}

.button {
  position: relative;
  min-height: 32px;
  /*min-width: 80px;*/
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  outline: none;
  border: none;
  font-weight: 600;
  padding: 4px 14px;
  margin-left: 12px;
  cursor: pointer;
}

.button:disabled {
  background-color: gray;
  cursor: default;
}

.button-primary {
  background-color: var(--primary);
  color: var(--white);
}

.button-danger {
  background-color: var(--red);
  color: var(--white);
}

.button-warning {
  background-color: var(--yellow);
  color: var(--white);
}

.button-success {
  background-color: var(--green);
  color: var(--white);
}

.button-block {
  width: 100%;
  margin: 0;
  justify-content: center;
}

.button:hover {
  opacity: 0.7;
}

.button-outline {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.button-outline:disabled {
  border: 1px solid #DEDEDE;
  background-color: var(--white);
  color: #DEDEDE;
}

.button-outline-primary {
  border: 2px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.button-outline-blue {
  border: 2px solid #007bffa6;
  background-color: var(--white);
  color: #007bffa6;
}

.button-outline-secondary {
  border: 2px solid #6c757d;
  background-color: var(--white);
  color: #212529;
}

.button-outline-warning {
  border: 1px solid #D9BB51;
  background-color: var(--white);
  color: #D9BB51;
}

.button-outline-warning:disabled {
  border: 1px solid #DEDEDE;
  background-color: var(--white);
  color: #DEDEDE;
}

.button-outline-danger {
  border: 1px solid #D05656;
  background-color: var(--white);
  color: #D05656;
}

.button-outline-danger:disabled {
  border: 1px solid #DEDEDE;
  background-color: var(--white);
  color: #DEDEDE;
}

.button-icon {
  height: 16px;
  width: 16px;
  margin-right: 4px;
}

.upload-file--icon {
  width: 48px;
  height: 48px;
}

.label {
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 24px;
  width: fit-content;
}

.label-primary {
  background-color: #c9d2f4;
  color: var(--primary2);
}

.label-success {
  background-color: #ebf9f5;
  color: #45a786;
}

.label-danger {
  background-color: #fdf4f7;
  color: #cb4d6d;
}

.label-warning {
  background-color: #f5ecd1;
  color: #d6a204;
}

.label-gray {
  background-color: #edeff1;
  color: #6d7278;
}

.label-dark {
  background-color: #f3f5f9;
  color: #0b325d;
}

.modal {
  z-index: 101;
  display: none;
}

.modal--absolute {
  max-width: 360px;
  position: absolute;
}

.modal--overlay {
  width: 800px;
  position: fixed;
  top: 1%;
  left: 0%;
}

@media only screen and (min-width: 601px) {
  .modal--overlay {
    width: 800px;
    position: fixed;
    top: 12%;
    left: 30%;
  }
}

.modal--section {
  align-items: center;
  margin-bottom: 16px;
}

.modal--section:last-child {
  margin-bottom: 0;
}

.modal--input label {
  display: block;
  margin: 16px 0 8px;
}

.modal--input input,
.modal--input textarea,
.modal--input select {
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: 4px;
  outline: none;
  border: 1px solid #b9b9b9;
  background: white;
  height: 35px;
}

.modal--input input:read-only,
.modal--input textarea:read-only{
  background-color: #e2e0e0;
}

.modal--input input[type="checkbox"]{
  padding: 2px 2px;
  height: 20px;
}

.modal--action {
  justify-content: end;
  gap: 16px;
  margin-bottom: 8px;
}

.modal--bottom--action {
  margin-top: 24px;
}

.modal--top-action--icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.modal--title {
  font-size: 0.9em;
  margin-bottom: 4px;
}

.modal--text,
.modal--url {
  font-size: 0.6em;
}

.modal--icon {
  min-width: 16px;
  margin-right: 16px;
}

.modal-input-wrapper {
  display: flex;
  gap: 24px;
}

/* NOTIFICATION */

.notification-item {
  cursor: pointer;
  border-bottom: 2px solid var(--gray);
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.notification-item:hover,
.notification-item--active {
  background-color: #f0f3ff;
}

.notification-item img {
  width: 40px;
  height: 40px;
  border-radius: 24px;
  border: 2px solid var(--primary);
}

.title-icon {
  background-color: var(--primary);
  border-radius: 4px;
}

.logout {
  margin: 0;
  border: none;
}

.edit-icon {
  background: url(icons/edit.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.delete-icon {
  background: url(icons/delete.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.check-icon {
  background: url(icons/bi_check.svg);
}

.check-alt-icon {
  background: url(icons/check-alt.svg);
}

.logout-icon {
  background: url(icons/logout.svg);
}

.profile-icon {
  background: url(icons/person.svg);
}

.setting-icon {
  background: url(icons/setting.svg);
}

.setting-icon {
  background: url(icons/setting.svg);
}

.upload-file-icon {
  background: url(icons/upload.svg);
}

.dbl-check-icon {
  background: url(icons/dbl_check.svg);
}

.pencil-icon {
  background: url(icons/pencil.svg);
}

.star-icon {
  background: url(icons/carbon_star.svg);
}

.star-filled-icon {
  background: url(icons/carbon_star-filled.svg);
}

.zero-star-icon {
  background: url(icons/0_star.svg);
}

.one-star-icon {
  background: url(icons/1_star.svg);
}

.two-stars-icon {
  background: url(icons/2_stars.svg);
}

.three-stars-icon {
  background: url(icons/3_stars.svg);
}

.trash-icon {
  background: url(icons/trash.svg);
}

.close-icon {
  background: url(icons/close.svg);
}

.close-alt-icon {
  background: url(icons/close-alt.svg);
}

.close-white-icon {
  background: url(icons/close-white.svg);
}

.body-icon {
  background: url(icons/body.svg);
}

.marker-icon {
  background: url(icons/marker.svg);
}

.link-icon {
  background: url(icons/link.svg);
}

.notification-icon {
  background: url(icons/notification-solid.svg);
}

.notification-empty-icon {
  background: url(icons/notification-solid-empty.svg);
}

.dashboard-icon {
  background: url(icons/dashboard.svg);
}

.plus-icon {
  background: url(icons/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.search-icon {
  background: url(icons/search.svg);
}

.arrow-back-icon {
  background: url(icons/arrow-back.png);
}

.users-icon {
  background: url(icons/users.svg);
}

.users-icon--active {
  background: url(icons/users-active.svg);
}

.building-icon {
  background: url(icons/building.svg);
}

.building-icon--active {
  background: url(icons/building-active.svg);
}

.businessman-icon {
  background: url(icons/businessman.svg);
}

.pendataan-icon {
  background: url(icons/pendataan.svg);
}

.pembayaran-icon {
  background: url(icons/pembayaran.svg);
}

.penagihan-icon {
  background: url(icons/pembayaran.svg);
}

.master_data-icon {
  background: url(icons/masterdata.svg);
}

.administrasi-icon {
  background: url(icons/administrasi.svg);
}

.businessman-icon--active {
  background: url(icons/businessman-active.svg);
}

.filter-icon--active {
  background: url(icons/filter-green.svg) no-repeat;
}

.editMenu-icon-enable {
  background: url(icons/edit-enabled.svg) no-repeat;
  background-size: 16px 16px;
}

.editMenu-icon-disable {
  background: url(icons/edit-diasbled.svg) no-repeat;
  background-size: 16px 16px;
}

.deleteMenu-icon-enable {
  background: url(icons/delete-enabled.svg) no-repeat;
  background-size: 16px 16px;
}

.deleteMenu-icon-disable {
  background: url(icons/delete-disabled.svg) no-repeat;
  background-size: 16px 16px;
}

.printMenu-icon-enable {
  background: url(icons/print-enabled.svg) no-repeat;
  background-size: 16px 16px;
}

.printMenu-icon-disable {
  background: url(icons/print-disabled.svg) no-repeat;
  background-size: 16px 16px;
}

.dashboard-icon--active {
  background: url(icons/dashboard-active.svg);
}

.mail-arrow-up-icon {
  background: url(icons/mail-arrow-up.svg);
}

.mail-arrow-up-icon--active {
  background: url(icons/mail-arrow-up-active.svg);
}

.mail-arrow-down-icon {
  background: url(icons/mail-arrow-down.svg);
}

.mail-arrow-down-icon--active {
  background: url(icons/mail-arrow-down-active.svg);
}

.arrow-switch-icon {
  background: url(icons/arrow-switch.svg);
}

.arrow-switch-icon--active {
  background: url(icons/arrow-switch-active.svg);
}

.calendar-agenda-icon {
  background: url(icons/calendar-agenda.svg);
}

.calendar-agenda-icon--active {
  background: url(icons/calendar-agenda-active.svg);
}

.report-icon {
  background: url(icons/report.svg);
}

.report-icon--active {
  background: url(icons/report-active.svg);
}

.pendataan-icon--active {
  background: url(icons/pendataan-active.svg);
}

.pembayaran-icon--active {
  background: url(icons/pembayaran-active.svg);
}

.penagihan-icon--active {
  background: url(icons/pembayaran-active.svg);
}

.master_data-icon--active {
  background: url(icons/masterdata.svg);
}

.administrasi-icon--active {
  background: url(icons/administrasi.svg);
}

.dashboard-surat-masuk-icon {
  background: url(icons/dashboard-surat-masuk.svg);
}

.dashboard-surat-keluar-icon {
  background: url(icons/dashboard-surat-keluar.svg);
}

.dashboard-disposisi-icon {
  background: url(icons/dashboard-disposisi.svg);
}

.dashboard-report-icon {
  background: url(icons/dashboard-report.svg);
}

.dashboard-agenda-icon {
  background: url(icons/dashboard-agenda.svg);
}

.acc-icon {
  background: url(icons/zmdi_badge-check.svg);
}

.acc-icon--active {
  background: url(icons/zmdi_badge-check-yellow.svg);
}

.top-navbar {
  height: 80px;
  background-color: var(--primary);
  padding-left: 24px;
  padding-right: 48px;
  color: white;
}

.sidebar {
  background-color: #f4f4f7;
  min-width: 204px;
  padding: 32px 8px;
  height: auto;
  box-sizing: border-box;
  position: relative;
  font-size: 14px;
}

.sidebar--title {
  color: var(--white);
  padding: 0 18px;
}

.sidebar--title p {
  font-size: 12px;
}

.sidebar--menu {
  color: #3a4556;
  font-weight: 600;
  width:100%;
}

.sidebar--menu-divider {
  margin: 16px 0;
  padding: 16px 0;
  border-bottom: 1px solid #3a455675;
  border-top: 1px solid #3a455675;
}

.sidebar--menu-item:hover {
  background: #2ecc7130;
}

.sidebar--menu-item--active {
  background: #2ecc7130;
  border-left: 4px solid #2ecc71;
}

.sidebar--menu-item,
.sidebar--menu-item--active {
  margin-bottom: 8px;
  border-radius: 4px;
}

.sidebar--menu-item a,
.sidebar--menu-item--active a {
  display: flex;
  text-decoration: none;
  align-items: center;
  padding: 8px;
}

.sidebar--menu-item a {
  color: #3a4556;
}

.sidebar--menu-item--text {
  margin-left: 12px;
}

.sidebar--menu-item--active a {
  color: #3a4556;
  font-weight: 800;
}

.icon24 {
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.icon40 {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar--menu-item--badge {
  margin-left: auto;
  background-color: rgba(4, 4, 4, 0.1);
  padding: 6px;
  border-radius: 16px;
  font-size: 10px;
}

.sidebar--menu-item--active .sidebar--menu-item--badge {
  background-color: rgba(4, 4, 4, 0);
  font-size: 12px;
  /* padding: 0; */
}

.main-container {
  padding: 10px 5px;
  width: 100%;
  background-color: var(--white);
}

@media only screen and (min-width: 601px) {
.main-container {
  padding: 20px 40px;
  width: 100%;
  background-color: var(--white);
}
}

.title-page {
  color: var(--text);
}

.subtitle-page {
  margin-bottom: 24px;
}

.h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.main-container--header--right {
  display: flex;
  align-items: center;
}

.main-container--header--right--profile {
  margin-left: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.main-container--header--right--profile img {
  width: 32px;
  height: 32px;
  border-radius: 24px;
  margin-right: 8px;
  border: 2px solid var(--white);
}

.main-container--header--right--profile p {
  font-weight: 700;
  font-size: 16px;
}

.main-container--content {
  /* padding: 40px 0; */
  color: var(--text);
}

.filter-wrapper {
  padding: 8px;
  background-color: var(--gray);
  border-radius: 8px;
}

.filter-content {
  display: flex;
}

.filter-wrapper input {
  height: 32px;
  outline: none;
  border: none;
  font-size: 14px;
  width: 100%;
  border-radius: 6px;
}

.filter-wrapper--icon-wrapper {
  height: 34px;
  display: flex;
  padding: 0 8px;
  align-items: center;
  border-radius: 6px 0 0 6px;
}

.filter-wrapper--icon,
.modal--icon,
.status--icon,
.icon16 {
  width: 16px;
  height: 16px;
}

.acc--icon {
  width: 12px;
  height: 14px;
  display: inline-block;
}

.filter-input {
  width: 100%;
  display: flex;
  background-color: var(--white);
  border-radius: 6px;
  border: 2px solid #e9e9e9;
}

.table {
  width: 100%;
  margin: 24px 0;
}

.table th {
  font-size: 14px;
}

.table td {
  font-size: 12.5px;
  max-width: 0;
  overflow: hidden;
  /*text-overflow: ellipsis;
  white-space: nowrap;*/
}

.table tr {
  cursor: pointer;
}

.table tr:hover {
  background-color: var(--bg-green);
}

.col-divider {
  border-bottom: none !important;
  color: #959596;
  font-weight: 700;
  padding-left: 80px !important;
  padding-bottom: 4px !important;
}

.table--action {
  max-width: 100% !important;
}

.checkbox-star {
  display: none;
}

.checkbox-star + label {
  width: 16px;
  height: 16px;
  background: url(icons/carbon_star.svg);
  display: inline-block;
  padding: 0 0 0 0px;
}

.checkbox-star:checked + label {
  width: 16px;
  height: 16px;
  background: url(icons/carbon_star-filled.svg);
  display: inline-block;
  padding: 0 0 0 0px;
}

.tgl-surat {
  width: 72px;
}

.asal-surat {
  width: 224px;
}

.no-surat {
  width: 92px;
}

.surat-masuk-perihal {
  width: 420px;
}

.surat-keluar-perihal {
  width: 280px;
}

.surat-keluar-status {
  width: 40px;
}

.surat-keluar-acc {
  width: 80px;
}

.nota {
  width: 320px;
}

.table td,
.table th {
  border-bottom: 2px solid var(--gray);
  /*text-align: left;*/
  /*padding: 14px 8px;*/
  padding-bottom: 5px;
  padding-right: 10px;
}

.main-container--content--table-bottom {
  background-color: var(--gray);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tabs {
  margin-bottom: 22px;
}

.tab {
  margin-right: 8px;
  text-decoration: none;
  color: #3a4556;
}

.tab--active {
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 2px solid #3a4556;
}

.pagination {
  background-color: var(--white);
  display: inline-block;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.pagination div {
  color: black;
  float: left;
  padding: 0px 0px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.pagination a.active {
  background-color: #dde5ff;
  color: white;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.pagination a.disable {
  color: grey;
  background: #ececec;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.pagination a:hover:not(.active):not(.disable) {
  background-color: #dde5ff;
  color: var(--primary);
}

.pagination a:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination a:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.main-container--surat-masuk-details {
  margin-top: 32px;
  padding: 28px;
}

.main-container--surat-masuk-details--left {
  min-width: 460px;
}

.details-table th,
.details-table td {
  border: none;
  text-align: left;
  padding: 8px;
}

.pdf-viewer {
  margin-top: 24px;
}

.pdfobject-container {
  height: 100vh;
}

.file-upload-wrapper {
  height: 140px;
  border: 1px dashed #b9b9b9;
  border-radius: 4px;
}

.file-upload-wrapper input {
  display: none;
}

.file-placeholder {
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.lampiran-image {
  max-width: 160px;
}

/* Login */
.login-body {
  height: 100vh;
}

.login-left {
  /*background: linear-gradient(
    355.89deg,
    #488259 5.06%,
    #569369 54.65%,
    #69af7d 98.52%
  );*/
  background: var(--primary);
  /* background-image: url(images/fg-login.png);
  background-repeat: no-repeat;
  background-position: center; */
  width: 100%;
  padding-top: 140px;
}

.login-reasons {
  grid-template-columns: 1fr 1fr;
  width: 550px;
  margin: 12px auto;
  background-color: white;
  border-radius: 6px;
  text-align: center;
}

.login-left h2 {
  color: var(--white);
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  text-align: center;
}

.login-right {
  align-self: center;
  width: 100%;
}

.login-right--inner {
  padding: 100px;
  box-sizing: border-box;
}

.login-right h1 {
  margin-bottom: 40px;
}

.remember {
  margin: 16px 0;
}

.remember label {
  margin: 0 8px;
}

/* Multiple Select */
.select-wrapper {
  margin: auto;
  max-width: 600px;
  width: calc(100% - 40px);
}

.select-pure__select {
  align-items: center;
  /* background: #f9f9f8; */
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: left;
  min-height: 44px;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
  width: 100%;
}

.select-pure__options {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  display: none;
  left: 0;
  max-height: 221px;
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 5;
}

.select-pure__select--opened .select-pure__options {
  display: block;
}

.select-pure__option {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-sizing: border-box;
  height: 44px;
  line-height: 25px;
  padding: 10px;
}

.select-pure__option--selected {
  color: #e4e4e4;
  cursor: initial;
  pointer-events: none;
}

.select-pure__option--hidden {
  display: none;
}

.select-pure__selected-label {
  background: var(--primary);
  border-radius: 4px;
  color: #fff;
  cursor: initial;
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 8px;
}

.select-pure__selected-label:last-of-type {
  margin-right: 0;
}

.select-pure__selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}

.select-pure__selected-label i:hover {
  color: #e4e4e4;
}

.select-pure__autocomplete {
  /* background: #f9f9f8; */
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 100%;
}

/* Loading */

.loader,
.loader:after {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.loader {
  display: none;
  margin: 0 auto;
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 4px solid rgba(255, 255, 255, 0.2);
  border-right: 4px solid rgba(255, 255, 255, 0.2);
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.calendar__weekday {
  font-size: 0.8em !important;
}
