/*============================================================= 
BREAK POINTS
============================================================= */
/*============================================================= 
MIXINS
============================================================= */
/*============================================================= 
COLORS
============================================================= */
#slide-out-tray {
  position: fixed;
  z-index: 999999999999 !important;
  top: 50%;
  right: -50vw;
  width: 50vw;
  background: #FBF5F3;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%);
  transition: right 0.5s ease-in-out;
  z-index: 1000;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 576px) {
  #slide-out-tray {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 785px) {
  #slide-out-tray {
    display: none;
  }
}
#slide-out-tray.open {
  right: 0;
}
#slide-out-tray.minimized {
  right: -50vw;
}

#slide-out-tray-toggle {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 40px;
  height: auto;
  padding: 10px 5px;
  background: #279AF1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  border-radius: 10px 0 0 10px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
#slide-out-tray-toggle .toggle-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 8px;
}
#slide-out-tray-toggle .toggle-icon svg {
  width: 20px;
  height: 20px;
}

.close-tray {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1001;
  color: #999;
  transition: color 0.3s ease;
}
.close-tray:hover {
  color: #666;
}
.close-tray svg {
  width: 32px;
  height: 32px;
}

.slide-out-tray-content {
  padding: 20px;
  overflow-y: auto;
  max-height: 80vh;
}
.slide-out-tray-content .card {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  background: #FBF5F3;
}
.slide-out-tray-content .card .card-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.slide-out-tray-content .card .btn-primary {
  background: #E28413 !important;
}/*# sourceMappingURL=contact_tray.css.map */