 /* style-switcher CSS */
#style-switcher {
  transition: all 0.4s;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  left: -189px;
  position: fixed;
  top: 17%;
  width: 189px;
  z-index: 9999;
  padding: 10px 5px;
}

#style-switcher div {
  padding: 5px 10px;
}

#style-switcher .bottom a.settings,
#style-switcher .bottom button.settings {
  background: #ffffff;
  height: 41px;
  position: absolute;
  right: -41px;
  top: 0px;
  width: 40px;
  padding: 3px;
  border-radius: 0 30px 30px 0;
  border: none;
  cursor: pointer;
  outline: none;
}

#style-switcher .bottom a.settings:hover,
#style-switcher .bottom button.settings:hover {
  background-color: #f5f5f5;
}


 /* Notification Pop CSS */

.NotificationPopQuotation {
  display: flex;
  align-items: center; /* Tengah secara menegak */
  justify-content: center; /* Tengah secara mendatar */
  position: fixed;
  top: 60px;
  left: 30px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #ccc;
  border-left: 5px solid #A00002;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 8px 8px;
  max-width: 280px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  animation: fadeSlideIn 0.5s ease;
  backdrop-filter: blur(3px);
}

.NotificationPopQuotation img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 8px;
  object-fit: contain;
}

.notification-content {
  display: flex;
  flex-direction: column;
}

.notification-title {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 1px;
  color: #A00002;
}

.notification-text {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}

.close-btn {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 14px;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #444;
}





@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-20px); }
}

@media (max-width: 480px) {
  .NotificationPopQuotation {
    max-width: 75%;
    left: 5%;
    top: 50px;
    flex-direction: row;
    padding: 6px;
  }

  .NotificationPopQuotation img {
    width: 40px;
    height: 40px;
  }

  .notification-title {
    font-size: 12px;
  }

  .notification-text {
    font-size: 10.5px;
  }
}



@media (min-width: 768px) {
  .attach-icons-hero {
      position: absolute;
      right: 0;
      top: -45px;
      left: 0;
      z-index: 1;
  }
}
@media (max-width: 767px) {
  .bg-half-260 {
    padding: 150px 0;
    height: auto;
  }
}

.avatar.avatar-md {
  height: 85px;
  width: 85px;
}


.bg-login {
	background: url( "../images/bg-login.png") no-repeat 100% fixed !important;
	background-color: #dc3545 !important;
	background-size: cover !important;
	background-position: top !important;
}




.back-to-home {
  position: fixed;
  z-index: 1;
  top: 4%;
  right: 2%;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 36px;
  width: 36px;
  line-height: 33px;
  border-radius: 6px;
  text-align: center;
  background: #2f55d4;
  color: #fff !important;
}
.back-to-home .icons {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.back-to-home:hover {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.back-to-home:hover .icons {
  -webkit-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
}





.account-logo-area {
  position: relative;
  margin-bottom: 20px;
}
.account-logo-area .account-logo img {
  height: 30px;
}

.account-header {
  margin-bottom: 30px;
}
.account-header .title {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
}
.account-header .title::before {
  content: "";
  height: 2px;
  position: absolute;
  top: 10px;
  width: 20%;
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.2) 0%, rgba(96, 105, 117, 0.3) 100%);
  left: 0;
}
.account-header .title::after {
  content: "";
  height: 2px;
  position: absolute;
  top: 10px;
  width: 20%;
  background: -webkit-linear-gradient(right, rgba(96, 105, 117, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  right: 0;
}
@media only screen and (max-width: 991px) {
  .account-header .title {
    font-size: 18px;
  }
}

.account-form-area {
  position: relative;
  padding: 30px;
  border-radius: 3px;
  background: white;
  border: 1px solid #e1e7ec;
}
@media only screen and (max-width: 767px) {
  .account-form-area {
    padding: 20px;
  }
}
.account-form-area::before {
  background: white;
  border: 1px solid #e1e7ec;
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f9f9f9',GradientType=0 );
  content: "";
  display: block;
  height: 100%;
  left: -1px;
  position: absolute;
  width: 100%;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
  top: 0;
  z-index: -2;
}
@media only screen and (max-width: 991px) {
  .account-form-area::before {
    display: none;
  }
}
.account-form-area::after {
  background: white;
  border: 1px solid #e1e7ec;
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f9f9f9',GradientType=0 );
  content: "";
  display: block;
  height: 100%;
  left: -1px;
  position: absolute;
  width: 100%;
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  -o-transform: rotate(2deg);
  transform: rotate(2deg);
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .account-form-area::after {
    display: none;
  }
}


.pulse {
  overflow: visible;
  position: relative;
}
.pulse::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s;
  -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
          animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  z-index: -1;
}

@-webkit-keyframes pulse-animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

main h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}
