/**=====================
     01. Loader CSS Start
==========================**/
.loader-wrapper {
  height: 100%;
  width: 100%;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  background-color: #fff;
  z-index: 11;
  top: 0;
}

.loader-wrapper .loader {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  right: 0;
  margin: 0 auto;
}

.loader-wrapper .loader h4 {
  margin-top: 50px;
  margin-bottom: 0;
}

.loader-wrapper .loader h4 span {
  font-size: 34px;
  color: #FFC107;
}

.loader .line {
  -webkit-animation: expand 1s ease-in-out infinite;
  animation: expand 1s ease-in-out infinite;
  border-radius: 10px;
  display: inline-block;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0 3px;
  width: 1px;
  height: 25px;
}

.loader .line:nth-child(1) {
  background: #00c292;
}

.loader .line:nth-child(2) {
  -webkit-animation-delay: 180ms;
  animation-delay: 180ms;
  background: #009999;
}

.loader .line:nth-child(3) {
  -webkit-animation-delay: 360ms;
  animation-delay: 360ms;
  background: #FF5370;
}

.loader .line:nth-child(4) {
  -webkit-animation-delay: 540ms;
  animation-delay: 540ms;
  background: #4099ff;
}

@-webkit-keyframes expand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes expand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

.loader-box {
  height: 150px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rotate {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  border: 3px dotted #009999;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: block;
  margin: 1em;
  float: left;
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.solid {
  border-style: solid;
  border-color: #00c292 #008f6c;
}

.dotted {
  border-style: dotted;
}

.dashed {
  border-style: dashed;
}

.double {
  border-style: double;
}

.groove {
  border-style: groove;
}

.ridge {
  border-style: ridge;
}

.inset {
  border-style: inset;
}

.outset {
  border-style: outset;
}

.colored {
  border-color: #FF5370 #009999 #00c292 #4099ff;
}

/**=====================
     01. Loader CSS Ends
==========================**/
/**=====================
     02. Quickview Start
==========================**/
.quickview-wrapper {
  position: fixed;
  top: 0px;
  right: -396px;
  width: 396px;
  background: #fff;
  bottom: 0;
  z-index: 10;
  -webkit-box-shadow: 0 0 9px rgba(191, 191, 191, 0.36);
  box-shadow: 0 0 9px rgba(191, 191, 191, 0.36);
  border-left: 1px solid rgba(222, 227, 231, 0.56);
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99), -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  height: 100%;
}

.quickview-wrapper.open {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.quickview-wrapper .friend-list-search {
  position: relative;
  background-color: #eeeeee;
  padding: 20px;
}

.quickview-wrapper .friend-list-search input {
  color: #717171;
  width: 100%;
  background-color: #fff;
  border: 1px solid #eeeeee;
  padding: 10px 15px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.quickview-wrapper .friend-list-search .fa {
  position: absolute;
  right: 35px;
  top: 35px;
  font-size: 14px;
  color: #cccccc;
}

.quickview-wrapper .recent-activity {
  padding: 20px 40px;
  margin-left: 25px;
  position: relative;
}

.quickview-wrapper .recent-activity .user-first-letter:after {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 10px;
  float: left;
  border: 1px dashed #eeeeee;
}

.quickview-wrapper .recent-activity .user-first-letter span {
  position: absolute;
  left: -23px;
  width: 45px;
  text-align: center;
  color: #fff;
  height: 45px;
  border-radius: 50%;
  z-index: 1;
  font-size: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 10px;
}

.quickview-wrapper .recent-activity .activity-content h6 {
  color: #444444;
}

.quickview-wrapper .recent-activity .activity-content p {
  font-size: 14px;
  color: #aaaaaa;
  margin: 0;
}

.quickview-wrapper .modal-header .modal-title {
  font-size: 15px;
  color: #444444;
  letter-spacing: 1px;
  font-weight: 500;
}

.quickview-wrapper .modal-header i {
  font-size: 16px;
  color: #717171;
}

.quickview-wrapper .quickview-box .quickview-box-toggle {
  position: absolute;
  width: 54px;
  height: 50px;
  top: 50%;
  left: -50px;
  text-align: center;
  line-height: 54px;
  cursor: pointer;
  padding: 0 !important;
}

.quickview-wrapper .quickview-box:before {
  position: absolute;
  content: '';
  width: 48px;
  height: 50px;
  background-color: #fff;
  top: 50%;
  left: -47px;
  -webkit-box-shadow: 0 0 9px rgba(191, 191, 191, 0.36);
  box-shadow: 0 0 9px rgba(191, 191, 191, 0.36);
  border-left: 1px solid rgba(222, 227, 231, 0.56);
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.quickview-wrapper .quickview-box:after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 5px;
  height: 50px;
  left: 0;
  top: 50%;
}

.quickview-wrapper .quickview-recent-activity .quickview-box-toggle {
  position: absolute;
  width: 54px;
  height: 50px;
  top: 52%;
  left: -50px;
  text-align: center;
  line-height: 54px;
  cursor: pointer;
  padding: 0 !important;
}

.quickview-wrapper .quickview-recent-activity:before {
  position: absolute;
  content: '';
  width: 48px;
  height: 50px;
  background-color: #fff;
  top: 52%;
  left: -47px;
  -webkit-box-shadow: 0 0 9px rgba(191, 191, 191, 0.36);
  box-shadow: 0 0 9px rgba(191, 191, 191, 0.36);
  border-left: 1px solid rgba(222, 227, 231, 0.56);
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.quickview-wrapper .quickview-recent-activity:after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 5px;
  height: 50px;
  left: 0;
  top: 52%;
}

.quickview-wrapper .chat-box .friend-list {
  margin-top: 20px;
}

/**=====================
     02. Quickview Ends
==========================**/
/**
/**=====================
     03. Sidebar-Uers Ends
==========================**/
.sidebar-user {
    padding: 24px 16px;
    background: linear-gradient(180deg, #0ea5a4, #0f766e);
    color: #fff;
    border-radius: 0 0 20px 20px;
}

.avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-greeting {
    font-weight: 500;
    margin-bottom: 4px;
    opacity: .9;
}

.user-name {
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.user-nip {
    font-size: 13px;
    opacity: .85;
}

.user-divider {
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,.3);
    margin: 16px auto;
}

.user-moto {
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    opacity: .9;
}
.sidebar.collapsed .sidebar-user {
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: all .25s ease;
}
/**=====================
     03. Sidebar-Uers Ends
==========================**/
/**
/**=====================
     04. Sidebar-new-feature Ends
==========================**/
/* CARD */
.update-card {
    background: #0fa9a4 !important; /* HIJAU TOSCA */
    border-radius: 18px;
    padding: 16px;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

/* TITLE */
.update-title {
    color: #eafffe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

/* LIST */
.update-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEM */
.update-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 13px;
    color: #ffffff;
    background: rgba(255,255,255,.18);
}

/* ICON */
.update-list li i {
    font-size: 16px;
    color: #eafffe;
    margin-top: 2px;
}

/* LAST ITEM */
.update-list li:last-child {
    margin-bottom: 0;
}
/**=====================
     04. Sidebar-new-feature Ends
==========================**/
.crm-activity>li+li {
  border-top: 1px solid #ddd;
  margin-top: 15px;
  padding-top: 15px;
}

.crm-activity>li+li h6 {
  font-size: 14px;
}

.crm-activity>li h6 {
  font-size: 14px;
}

.crm-activity span {
  font-size: 40px;
}

.crm-activity ul.dates h6 {
  color: #333333;
}

.crm-activity ul.dates li {
  color: #777777;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
}

.crm-activity ul.dates li+li {
  border-left: 1px solid #ddd;
  padding-left: 10px;
  margin-left: 5px;
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1366px) {
.crm-activity {
    height: 298px; }
  }

/**=====================
    05. Switch  CSS Start
==========================**/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  display: none;
}

.switch input:checked+.switch-state {
  background-color: #009999;
}

.switch input:checked+.switch-state:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.switch input:focus+.switch-state {
  -webkit-box-shadow: 0 0 1px #009999;
  box-shadow: 0 0 1px #009999;
}

.switch-state {
  border-radius: 20px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eeeeee;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-state:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px;
}

.icon-state .switch-state:after {
    content: "\eb99"; /* ri-close-line */
    font-family: "remixicon";
    left: 10px;
    position: absolute;
    top: 6px;
    color: #2a3142;
    -webkit-transition: .4s;
    transition: .4s;
    opacity: 0.3;
}

.icon-state input:checked+.switch-state:after {
  content: "\eb7b";
  left: 35px;
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-lg .switch {
  width: 75px;
  height: 40px;
}

.switch-lg .switch .switch-state:before {
  height: 30px;
  width: 30px;
  left: 7px;
  bottom: 5px;
  top: 4px;
}

.switch-sm .switch {
  width: 25px;
  height: 16px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.switch-sm .switch .switch-state:before {
  height: 8px;
  width: 8px;
  left: 4px;
  bottom: 4px;
}

.switch-sm input:checked+.switch-state:before {
  left: -13px;
}

.switch-lg.icon-state .switch .switch-state:after {
  left: 12px;
  font-size: 18px;
}

.switch-lg.icon-state .switch input:checked+.switch-state:after {
  left: 47px;
}

.switch-lg.icon-state .switch input:checked+.switch-state:before {
  -webkit-transform: translateX(32px);
  transform: translateX(32px);
}

.switch-sm.icon-state .switch .switch-state:after {
  top: 4px;
  left: 4px;
  font-size: 8px;
}

.switch-sm.icon-state .switch input:checked+.switch-state:after {
  left: 13px;
  top: 4px;
}

.switch-outline .switch-state {
  background-color: #fff;
  border: 1px solid #009999;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-outline .switch-state:before {
  background-color: #eeeeee;
  bottom: 3px;
  color: #fff;
}

.switch-outline .switch input {
  display: none;
}

.switch-outline .switch input:checked+.switch-state {
  background-color: transparent;
  border: 1px solid #009999;
}

.switch-outline .switch input:checked+.switch-state:before {
  background-color: #009999;
  bottom: 3px;
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.switch-outline .switch input:checked+.switch-state:after {
  color: #fff;
}

.switch-outline .switch-state.bg-primary {
  border: 1px solid #009999;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-primary {
  background-color: transparent !important;
  border: 1px solid #009999;
}

.switch-outline .switch input:checked+.switch-state.bg-primary:before {
  background-color: #009999;
}

.switch-outline .switch-state.bg-dark {
  border: 1px solid #2a3142;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-dark {
  background-color: transparent !important;
  border: 1px solid #2a3142;
}

.switch-outline .switch input:checked+.switch-state.bg-dark:before {
  background-color: #2a3142;
}

.switch-outline .switch-state.bg-warning {
  border: 1px solid #FBB937;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-warning {
  background-color: transparent !important;
  border: 1px solid #FBB937;
}

.switch-outline .switch input:checked+.switch-state.bg-warning:before {
  background-color: #FBB937;
}

.switch-outline .switch-state.bg-success {
  border: 1px solid #00c292;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-success {
  background-color: transparent !important;
  border: 1px solid #00c292;
}

.switch-outline .switch input:checked+.switch-state.bg-success:before {
  background-color: #00c292;
}

.switch-outline .switch-state.bg-info {
  border: 1px solid #4099ff;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-info {
  background-color: transparent !important;
  border: 1px solid #4099ff;
}

.switch-outline .switch input:checked+.switch-state.bg-info:before {
  background-color: #4099ff;
}

.switch-outline .switch-state.bg-danger {
  border: 1px solid #FF5370;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-danger {
  background-color: transparent !important;
  border: 1px solid #FF5370;
}

.switch-outline .switch input:checked+.switch-state.bg-danger:before {
  background-color: #FF5370;
}

.switch-outline .switch-state.bg-primary {
  border: 1px solid #009999;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-primary {
  background-color: transparent !important;
  border: 1px solid #009999;
}

.switch-outline .switch input:checked+.switch-state.bg-primary:before {
  background-color: #009999;
}

.switch-outline .switch-state.bg-secondary {
  border: 1px solid #26c6da;
  background-color: transparent !important;
}

.switch-outline .switch input:checked+.switch-state.bg-secondary {
  background-color: transparent !important;
  border: 1px solid #26c6da;
}

.switch-outline .switch input:checked+.switch-state.bg-secondary:before {
  background-color: #26c6da;
}

.switch-showcase {
  margin-bottom: -8px;
}

.switch-showcase .media {
  line-height: 1;
}
/**=====================
     05. Switch  CSS Ends
==========================**/

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem; }
  .badge:empty {
    display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: #007bff; }
  .badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #0062cc; }

.badge-secondary {
  color: #fff;
  background-color: #26c6da !important; }
  .badge-secondary[href]:hover, .badge-secondary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #3c749e !important; }

.badge-success {
  color: #fff;
  background-color: #00c292 !important; }
  .badge-success[href]:hover, .badge-success[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1e7e34; }

.badge-info {
  color: #fff;
  background-color: #17a2b8; }
  .badge-info[href]:hover, .badge-info[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b; }

.badge-warning {
  color: #212529;
  background-color: #ffc107; }
  .badge-warning[href]:hover, .badge-warning[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #d39e00; }

.badge-danger {
  color: #fff;
  background-color: #dc3545; }
  .badge-danger[href]:hover, .badge-danger[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #bd2130; }

.badge-light {
  color: #212529;
  background-color: #f8f9fa; }
  .badge-light[href]:hover, .badge-light[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #dae0e5; }

.badge-dark {
  color: #fff;
  background-color: #343a40; }
  .badge-dark[href]:hover, .badge-dark[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124; }
    .card {
  -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.12);
}

.card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #eeeeee;
  padding: 30px;
}

.card .card-header h5 {
  font-size: 18px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.card .card-header>span {
  font-size: 12px;
  margin-top: 5px;
  display: block;
  letter-spacing: 1px;
  color: #777777;
}

.card .card-body {
  padding: 30px;
}

.card .card-body p:last-child {
  margin-bottom: 0;
}

.card .sub-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  margin-bottom: 8px;
  font-size: 18px;
}

.card .card-footer {
  background-color: #fff;
  border-top: 1px solid #eeeeee;
  padding: 30px;
}

.opacity-0 {
  opacity: 0;
}

.shadow-0 {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.map-block {
  height: 350px;
  width: 100%;
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none; }
  .custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); }
    .custom-select:focus::-ms-value {
      color: #495057;
      background-color: #fff; }
  .custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none; }
  .custom-select:disabled {
    color: #26c6da !important;
    background-color: #e9ecef; }
  .custom-select::-ms-expand {
    opacity: 0; }

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%; }

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%; }

  /**=====================
    26. Form CSS Start
==========================**/
.height-35 {
  height: 35px !important;
}

.theme-form .form-control :focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(171, 140, 228, 0.05);
  box-shadow: 0 0 0 0.2rem rgba(171, 140, 228, 0.05);
}

.theme-form.sm-form .form-group {
  margin-bottom: 14px;
}

.theme-form.form {
  margin-bottom: -20px;
}

.theme-form .form-group {
  margin-bottom: 20px;
}

.theme-form .form-group textarea {
  border-color: #ddd;
}

.theme-form .form-group textarea::-webkit-input-placeholder {
  color: #aaaaaa;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 100;
}

.theme-form .form-group input[type=text],
.theme-form .form-group input[type=email],
.theme-form .form-group input[type=search],
.theme-form .form-group input[type=password],
.theme-form .form-group input[type=number],
.theme-form .form-group input[type=tel],
.theme-form .form-group input[type=date],
.theme-form .form-group input[type=datetime-local],
.theme-form .form-group input[type=time],
.theme-form .form-group input[type=datetime-local],
.theme-form .form-group input[type=month],
.theme-form .form-group input[type=week],
.theme-form .form-group input[type=url],
.theme-form .form-group input[type=file],
.theme-form .form-group select {
  border-color: #ddd;
  background-color: #fff;
  font-size: 14px;
  color: #717171;
  font-family: Open Sans;
}

.theme-form .form-group input[type=text]::-webkit-input-placeholder,
.theme-form .form-group input[type=email]::-webkit-input-placeholder,
.theme-form .form-group input[type=search]::-webkit-input-placeholder,
.theme-form .form-group input[type=password]::-webkit-input-placeholder,
.theme-form .form-group input[type=number]::-webkit-input-placeholder,
.theme-form .form-group input[type=tel]::-webkit-input-placeholder,
.theme-form .form-group input[type=date]::-webkit-input-placeholder,
.theme-form .form-group input[type=datetime-local]::-webkit-input-placeholder,
.theme-form .form-group input[type=time]::-webkit-input-placeholder,
.theme-form .form-group input[type=datetime-local]::-webkit-input-placeholder,
.theme-form .form-group input[type=month]::-webkit-input-placeholder,
.theme-form .form-group input[type=week]::-webkit-input-placeholder,
.theme-form .form-group input[type=url]::-webkit-input-placeholder,
.theme-form .form-group input[type=file]::-webkit-input-placeholder,
.theme-form .form-group select::-webkit-input-placeholder {
  color: #717171;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 100;
}

.theme-form .form-group select.form-control:not([size]):not([multiple]) {
  border-color: #ddd;
  font-size: 14px;
}

.theme-form .checkbox label {
  padding-left: 10px;
}

.theme-form .form-divider {
  position: relative;
  clear: both;
  height: 0;
  margin: 30px 0;
  border-top: 1px solid #ddd;
}

.theme-form .form-divider:before {
  position: absolute;
  top: -11px;
  left: 40%;
  margin-left: -10px;
  padding: 0 5px;
  content: "Or Signup With";
  color: #444444;
  background: #fff;
}

.theme-form .btn-fb {
  background-color: #50598e;
  color: #fff;
  width: 100%;
}

.theme-form .btn-twitter {
  background-color: #6fa2d8;
  color: #fff;
  width: 100%;
}

.theme-form .btn-google {
  background-color: #c64e40;
  color: #fff;
  width: 100%;
}

.form-inline .form-group {
  margin-right: 15px;
}

.form-inline .form-group .col-form-label {
  margin-right: 5px;
}

.search-form input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px 10px;
  background-image: url("../images/dashboard/search.png");
  background-repeat: no-repeat;
  background-position: 95%;
}

.form-label-align-right label {
  text-align: right;
  padding-top: 17px;
  font-weight: 500;
}

.custom-file-label {
  line-height: 1.8;
}

.custom-file-label::after {
  line-height: 1.8;
}

/**=====================
    26. Form CSS Ends
==========================**/
/*Form Wizard Four Start*/
.wizard-4 .buttonDisabled {
  color: #fff;
  opacity : 0.5;
  background-color: #eeeeee;
  border: 1px solid #eeeeee;
  cursor: text;
}

.wizard-4 .action-bar .btn {
  float: right;
  margin: 0 5px;
}

.wizard-4 .step-container {
  height: 450px !important;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0 solid #cccccc;
  overflow: hidden;
  clear: right;
  width: 70%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wizard-4 .step-container div.content {
  display: block;
  position: absolute;
  float: left;
  height: 350px;
  text-align: left;
  overflow: auto;
  z-index: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
}

.wizard-4 .loader {
  display: none;
}

.wizard-4 .msg-box {
  position: absolute;
  display: none;
  padding: 5px 10px;
  background-color: #009999;
  left: 32%;
  bottom: 30px;
  border-radius: 2px;
}

.wizard-4 .msg-box .content {
  padding: 0;
  float: left;
  padding-top: 3px;
  color: #fff;
}

.wizard-4 .msg-box .close {
  text-shadow: none;
  color: #fff;
  margin-left: 10px;
  opacity: 1;
}

.wizard-4 ul.anchor {
  position: relative;
  display: block;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0 solid #cccccc;
  background: transparent;
  width: 30%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 30px;
}

.wizard-4 ul.anchor li {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  padding-bottom: 19px;
  float: left;
  clear: both;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 0;
}

.wizard-4 ul.anchor li a {
  display: block;
  position: relative;
  float: left;
  margin: 0;
  padding: 10px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  outline-style: none;
  z-index: 1;
  font-size: 18px;
}

.wizard-4 ul.anchor li a small {
  display: block;
  font-size: 14px;
}

.wizard-4 ul.anchor li a .stepNumber {
  position: relative;
  float: left;
  width: 30px;
  text-align: center;
  padding: 5px;
  padding-top: 0;
}

.wizard-4 ul.anchor li a.selected {
  color: #fff;
  background: #009999;
  cursor: text;
  border-radius: 5px;
}

.wizard-4 ul.anchor li a.done {
  position: relative;
  color: #fff;
  background: #009999;
  opacity : 0.8;
  z-index: 99;
  border-radius: 5px;
}

.wizard-4 ul.anchor li a.disabled {
  color: #717171;
  background: #eeeeee;
  cursor: text;
  border-radius: 5px;
}

.wizard-4 ul.anchor li a.error {
  color: #717171;
  background: #fe8a7d;
  border: 1px solid #FF5370;
}

.wizard-4 ul.anchor li a.error:hover {
  color: #000;
}

/* /*Form Wizard Four Ends */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media screen and (prefers-reduced-motion: reduce) {
    .btn {
      transition: none; } }
  .btn:hover, .btn:focus {
    text-decoration: none; }
  .btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .btn.disabled, .btn:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none; }

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }
  .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc; }
  .btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.btn-secondary {
  color: #fff;
  background-color: #26c6da !important;
  border-color: #26c6da !important; }
  .btn-secondary:hover {
    color: #fff;
    background-color: #3c749e !important;
    border-color: #3c749e !important; }
  .btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem #26c6da; }
  .btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #26c6da !important;
    border-color: #26c6da !important; }
  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #3c749e !important;
    border-color: #3c749e !important; }
    .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.btn-success {
  color: #fff;
  background-color: #00c292 !important;
  border-color: #00c292 !important; }
  .btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34; }
  .btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem #00c292; }
  .btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #00c292 !important;
    border-color: #00c292 !important; }
  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430; }
    .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8; }
  .btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b; }
  .btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f; }
    .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107; }
  .btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00; }
  .btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  .btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107; }
  .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500; }
    .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130; }
  .btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d; }
    .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa; }
  .btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5; }
  .btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df; }
    .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40; }
  .btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124; }
  .btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d; }
    .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent; }
  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
    .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.btn-outline-secondary {
  color: #26c6da !important;
  background-color: transparent;
  background-image: none;
  border-color: #26c6da !important; }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #26c6da !important;
    border-color: #26c6da !important; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #26c6da !important;
    background-color: transparent; }
  .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #26c6da !important;
    border-color: #26c6da !important; }
    .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.btn-outline-success {
  color: #00c292 !important;
  background-color: transparent;
  background-image: none;
  border-color: #00c292 !important; }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #00c292 !important;
    border-color: #00c292 !important; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #00c292 !important;
    background-color: transparent; }
  .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #00c292 !important;
    border-color: #00c292 !important; }
    .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent; }
  .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
    .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107; }
  .btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent; }
  .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107; }
    .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent; }
  .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
    .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa; }
  .btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent; }
  .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
  .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent; }
  .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
    .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent; }
  .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none; }
  .btn-link:disabled, .btn-link.disabled {
    color: #26c6da !important;
    pointer-events: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.btn-block {
  display: block;
  width: 100%; }
  .btn-block + .btn-block {
    margin-top: 0.5rem; }

    .media {
  display: flex;
  align-items: flex-start; }

.media-body {
  flex: 1; }

.comments {
  height: 500px;
  overflow-y: scroll;
}


.form-group {
  margin-bottom: 1rem; }

.form-text {
  display: block;
  margin-top: 0.25rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }
  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem; }

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem; }
  .form-check-input:disabled ~ .form-check-label {
    color: #6c757d; }

.form-check-label {
  margin-bottom: 0; }

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem; }
  .form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0; }

/*====== Margin-left css starts ======*/
.m-l-0 {
  margin-left: 0px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

/*====== Margin-left css ends ======*/
/*====== Margin-right css starts ======*/
.m-r-0 {
  margin-right: 0px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-r-35 {
  margin-right: 35px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-r-45 {
  margin-right: 45px;
}

.m-r-50 {
  margin-right: 50px;
}


#pensiun,
#prapen {
    list-style-position: outside;
    padding-left: 1.5rem;
}

#pensiun li,
#prapen li {
    display: list-item !important;
}

#pensiun > li {
    list-style-type: decimal !important;
}

#pensiun > li > ol > li,
#prapen > li > ol > li {
    list-style-type: lower-alpha !important;
}
