:root {
  --ezoria-bg: #0a0a0a !important;
  --ezoria-bg-2: #1a1a1a !important;
  --ezoria-gold: #cbb279 !important;
  --ezoria-gold-light: #d1ba83 !important;
  --ezoria-gold-dark: #b8a066 !important;
  --ezoria-text: #ffffff !important;
  --ezoria-text-muted: #cccccc !important;
  --ezoria-border: rgba(203, 178, 121, 0.2) !important;
  --ezoria-border-light: rgba(203, 178, 121, 0.1) !important;
  --ezoria-success: #4ade80 !important;
  --ezoria-error: #f87171 !important;
  --ezoria-warning: #fbbf24 !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="reset"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  border: 1px solid #ddd;
  color: #000;
}
button {
  box-shadow: none;
}

.ok-pay.enter {
  background-color: #12171d !important;
  color: var(--ezoria-gold-light) !important;
  border: 1px solid var(--ezoria-border) !important;
  padding: 8px 15px !important;
  border-radius: 10px !important;
  margin-left: 10px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  margin-top: 20px !important;
  width: 100%;
  margin-right: 0px !important;
}

.ok-pay.enter:hover {
  background-color: var(--ezoria-gold-dark) !important;
  color: var(--ezoria-text) !important;
  box-shadow: 0 6px 14px rgba(203, 178, 121, 0.35) !important;
  transform: translateY(-2px) !important;
}

.upload-container {
  background-color: var(--ezoria-bg-2) !important;
  border: 2px dashed var(--ezoria-gold) !important;
  border-radius: 20px !important;
  padding: 40px 20px !important;
  text-align: center !important;
  font-family: "Arial", sans-serif !important;
  color: var(--ezoria-text-muted) !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.upload-container:hover {
  border-color: var(--ezoria-gold-light) !important;
  background-color: var(--ezoria-bg) !important;
  color: var(--ezoria-text) !important;
  box-shadow: 0 4px 15px rgba(203, 178, 121, 0.4) !important;
}

.upload-container div {
  color: var(--ezoria-text-muted) !important;
  font-size: 1rem !important;
  pointer-events: none !important;
}

.upload-container input[type="file"] {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  cursor: pointer !important;
}

.your-mag {
  background-color: var(--ezoria-bg-2) !important;
  border: 2px solid var(--ezoria-border-light) !important;
  border-radius: 15px !important;
  padding: 15px 20px !important;
  font-family: "Arial", sans-serif !important;
  color: var(--ezoria-text) !important;
  font-size: 1rem !important;
  margin-bottom: 20px !important;
}

.your-mag a {
  color: var(--ezoria-gold) !important;
  font-weight: bold !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.your-mag a:hover {
  color: var(--ezoria-gold-light) !important;
  text-shadow: 0 0 8px rgba(203, 178, 121, 0.7) !important;
}

.events-block {
  background-color: var(--ezoria-bg-2) !important;
  border: 2px solid var(--ezoria-border-light) !important;
  border-radius: 20px !important;
  padding: 25px !important;
  margin-bottom: 30px !important;
  max-width: 510px !important;
  margin-right: 5px !important;
  width: 100% !important;
  color: var(--ezoria-text) !important;
  font-family: "Arial", sans-serif !important;
}

.events-block-title {
  font-size: 1.5rem !important;
  color: var(--ezoria-gold) !important;
  font-weight: bold !important;
}

.event-future li {
  display: flex !important;
  align-items: flex-start !important;
  padding: 15px !important;
  border: 1px solid var(--ezoria-border-light) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  background-color: var(--ezoria-bg) !important;
  margin-bottom: 10px !important;
}

.events-list li:hover {
  background-color: var(--ezoria-bg-2) !important;
  box-shadow: 0 6px 15px rgba(203, 178, 121, 0.3) !important;
}

.events-cirle {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background-color: var(--ezoria-gold) !important;
  margin-right: 15px !important;
}

.events-date {
  width: 110px !important;
  color: var(--ezoria-text-muted) !important;
  font-weight: bold !important;
}

.events-name {
  flex: 1 !important;
  color: var(--ezoria-text) !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

.events-name b {
  color: var(--ezoria-gold) !important;
  margin-right: 5px !important;
}

.events-name span a {
  color: var(--ezoria-gold-light) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.events-name span a:hover {
  color: var(--ezoria-gold) !important;
}

.events-name a.go-pay {
  background-color: #12171d !important;
  color: var(--ezoria-gold-light) !important;
  border: 1px solid var(--ezoria-border) !important;
  padding: 8px 15px !important;
  border-radius: 10px !important;
  margin-left: 10px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  margin-top: 20px !important;
  width: 100%;
}

.events-name a.go-pay:hover {
  background-color: var(--ezoria-gold-dark) !important;
  color: var(--ezoria-text) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(203, 178, 121, 0.4) !important;
}

.time-debug {
  display: none !important;
}

.modal.select-pay span,
.pay-module-summ,
.events-name span {
  color: var(--ezoria-gold) !important;
  font-weight: bold !important;
  font-size: 1rem !important;
}

.modal.select-pay span {
  text-shadow: 0 0 5px rgba(203, 178, 121, 0.7) !important;
}

.events-name span {
  font-size: 0.95rem !important;
  color: var(--ezoria-gold-light) !important;
}

.pay-module-summ {
  font-size: 1.5rem !important;
  color: var(--ezoria-gold) !important;
  text-shadow: 0 0 8px rgba(203, 178, 121, 0.5) !important;
}

.modal.select-pay {
  background-color: var(--ezoria-bg-2) !important;
  color: var(--ezoria-text) !important;
  border: 2px solid var(--ezoria-border) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  max-width: 700px !important;
  width: 100% !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  font-family: "Arial", sans-serif !important;
}

.modal.select-pay h3 {
  font-size: 1.8rem !important;
  color: var(--ezoria-gold) !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.modal.select-pay label {
  display: block !important;
  background-color: var(--ezoria-bg) !important;
  border: 1px solid var(--ezoria-border-light) !important;
  border-radius: 15px !important;
  padding: 15px !important;
  margin-bottom: 15px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.modal.select-pay label:hover {
  border-color: var(--ezoria-gold) !important;
  background-color: var(--ezoria-bg-2) !important;
}

.modal.select-pay label input[type="radio"] {
  margin-right: 10px !important;
  accent-color: var(--ezoria-gold) !important;
}

.modal.select-pay label b {
  color: var(--ezoria-gold-light) !important;
}

.modal.select-pay label span {
  color: var(--ezoria-text-muted) !important;
}

.modal.select-pay select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: var(--ezoria-bg-2) !important;
  color: var(--ezoria-text) !important;
  border: 1px solid var(--ezoria-border-light) !important;
  border-radius: 10px !important;
  padding: 8px 12px !important;
  width: 100% !important;
  margin-top: 5px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  outline: none !important;
}

.modal.select-pay select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23CBB279" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 16px !important;
}

.modal.select-pay input[type="text"],
.modal.select-pay input[type="email"],
.modal.select-pay input[type="tel"] {
  background-color: var(--ezoria-bg) !important;
  border: 1px solid var(--ezoria-border-light) !important;
  border-radius: 10px !important;
  padding: 10px !important;
  width: 100% !important;
  margin-top: 5px !important;
  margin-bottom: 15px !important;
  color: var(--ezoria-text) !important;
  font-size: 1rem !important;
}

.modal.select-pay h6 {
  color: var(--ezoria-gold) !important;
  margin-top: 15px !important;
  margin-bottom: 10px !important;
}

.modal.select-pay .reg-button {
  display: block !important;
  text-align: center !important;
  background-color: var(--ezoria-gold) !important;
  color: var(--ezoria-bg) !important;
  text-decoration: none !important;
  padding: 12px 25px !important;
  border-radius: 12px !important;
  font-weight: bold !important;
  margin-top: 20px !important;
  transition: all 0.3s ease !important;
}

.modal.select-pay .reg-button:hover {
  background-color: var(--ezoria-gold-dark) !important;
  color: var(--ezoria-text) !important;
}

.modal.select-pay .modal-close {
  position: absolute !important;
  top: 15px !important;
  right: 20px !important;
  color: var(--ezoria-text-muted) !important;
  font-size: 1.5rem !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
}

.modal.select-pay .modal-close:hover {
  color: var(--ezoria-gold) !important;
}

.billing-meka {
  max-height: 700px !important;
  height: 100% !important;
  margin-top: 15px !important;
  border-top: 1px solid var(--ezoria-border-light) !important;
  padding-top: 15px !important;
}

.notification {
  background-color: var(--ezoria-bg-2) !important;
  border: 2px solid var(--ezoria-border) !important;
  border-radius: 20px !important;
  padding: 25px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.notification:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6) !important;
}

.notification-h1 {
  font-size: 2rem !important;
  color: var(--ezoria-gold) !important;
  margin-bottom: 12px !important;
  font-weight: bold !important;
}

.notification-h2 {
  font-size: 1.2rem !important;
  color: var(--ezoria-text-muted) !important;
  line-height: 1.5 !important;
}

.notification-h2 b {
  color: var(--ezoria-gold-light) !important;
}

.notification a {
  color: var(--ezoria-gold-light) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.notification a:hover {
  color: var(--ezoria-gold) !important;
}

/* Pay module */
.pay-module {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 20px !important;
  background-color: var(--ezoria-bg) !important;
  border: 1px solid var(--ezoria-border-light) !important;
  border-radius: 15px !important;
  padding: 15px 20px !important;
  width: 100% !important;
}

.pay-module-summ {
  font-size: 1.6rem !important;
  color: var(--ezoria-gold) !important;
  font-weight: bold !important;
}

.pay-module-button a {
  background-color: #12171d !important;
  border: 1px solid var(--ezoria-border) !important;
  padding: 12px 25px !important;
  border-radius: 12px !important;
  font-weight: bold !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

.pay-module-button a:hover {
  background-color: var(--ezoria-gold-dark) !important;
  color: var(--ezoria-text) !important;
  box-shadow: 0 6px 15px rgba(203, 178, 121, 0.5) !important;
  transform: translateY(-2px) !important;
}

.event-pages,
.past-event-pages,
.message-pages {
  display: table;
  width: 100%;
  margin: 15px 0;
}
.event-pages a,
.past-event-pages a,
.message-pages a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #ddd;
  float: left;
  border-radius: 50%;
}
.message-pages .dots {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #ddd;
  float: left;
  letter-spacing: 2px;
}
.event-pages a.current,
.past-event-pages a.current,
.message-pages a.current {
  background: #f1f1f1;
  color: #333;
}
.device-error-img {
  display: table;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.device-error-img li {
  float: left;
  margin: 0 5px;
  background-color: #a60303;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}
.device-error-img li.device-error-video {
  background-image: url(../img/no-video.png);
}
.device-error-img li.device-error-micro {
  background-image: url(../img/no-micro.png);
}
p.device-error-info {
  font-size: 11px;
  line-height: 17px;
  color: #a3a3a3;
}
.device-error-close {
  display: block;
  width: 100%;
  background: #e9e9e9;
  line-height: 40px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  margin: 10px 0;
}
.device-error-close:hover {
  background: #ddd;
}
.device-error {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000000a6;
  z-index: 3;
}
.device-error .device-error-wrap {
  position: fixed;
  width: 280px;
  background: #ffffff;
  border-radius: 20px;
  top: 20px;
  left: 20px;
  padding: 30px 30px 20px 30px;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
  color: #222;
}
.modal.select-pay {
  text-align: left;
}
.modal.select-pay .reg-button {
  padding: 14px;
}
.modal.select-pay b {
  font-weight: 600;
}
.modal.select-pay input[type="radio"] {
  height: 15px;
  left: 90% !important;
  margin: 3px 10px 30px 0;
  float: left;
}
.modal.select-pay .reg-button {
  margin-top: 30px;
}
.modal.select-pay label {
  position: relative;
  line-height: 20px;
  display: block;
  width: 100%;
  margin: 0;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  padding: 15px 80px 15px 15px;
  cursor: pointer;
}
.modal.select-pay label span {
  position: absolute;
  top: -1px;
  right: -1px;
  color: #222 !important;
  font-weight: 600;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 0 0 0 7px;
}
.modal.select-pay label:last-child {
  border-bottom: 1px solid #eaeaea;
}
.select-pay h3 {
  margin: 15px 0 30px 0;
  font-size: 21px;
}
#initial-data-3 select {
  margin: 20px 0 10px 0;
}
.profile-image {
  margin: 30px auto;
  display: table;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
}
.events-list .ok-pay.copy-link {
  opacity: 1;
}
.events-list .ok-pay.copy-link:hover {
  background: #2eb345;
  color: #fff;
}
.profile-container h3 {
  text-align: center;
  margin: 20px 0;
}
.profile-container p {
  margin: 0;
  padding: 5px 0;
}
.profile-container {
  margin: 0 auto;
  width: 620px;
}
.profile-info {
  text-align: center;
}
.call-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.call-frame #localVideo {
  height: 100%;
  display: table;
}
.call-frame #remoteVideo {
  height: 100%;
  display: table;
  margin: 0 auto;
}
.call-frame-companion {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.call-frame-me {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  min-width: 15rem;
  height: 25rem;
  z-index: 1;
  background: #333;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0px 30px #00000036;
}
.call-navigation {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0 0 0 / 70%) 0%, rgba(0, 0, 0, 0) 100%);
}
.call-navigation .timer {
  display: table;
  margin: 20px auto 0 auto;
  border: 1px solid #353535;
  color: #353535;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  width: 130px;
  text-align: center;
}
.call-navigation .timer.active {
  border: 1px solid #bf0000;
  color: #bf0000;
}
.call-frame .call-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.call-frame-companion .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #101010;
}
.call-frame-me .wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.call-navigation .call-nav-li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: table;
  margin: 0 auto;
}
.call-navigation .call-nav-li .bt-video {
  background-image: url(../img/no-video.png);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.call-navigation .call-nav-li .bt-micro {
  background-image: url(../img/no-micro.png);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.call-navigation .call-nav-li .bt-cancel {
  background-image: url(../img/cancel.png);
  background-color: #6f0505;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.call-navigation .call-nav-li a.active {
  background-color: #bf0000;
}
.call-navigation .call-nav-li li {
  float: left;
}
.call-navigation .call-nav-li li a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1a1a1a;
  margin: 10px;
}
.call-navigation .call-nav-li li a.bt-cancel:hover {
  background-color: red;
}
.order-action {
  position: relative;
}
.order-action-toggle {
  background: url(../img/burger.svg) no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.order-action-submenu {
  display: none;
  text-align: left;
  position: absolute;
  top: 22px;
  right: 1px;
  z-index: 999;
  background: #001729;
  padding: 20px;
  margin: 0;
  list-style: none;
  border-radius: 10px;
}
.order-action:hover .order-action-submenu {
  display: block;
}
.order-action-submenu li {
  padding: 3px 0;
}
.order-action-submenu a {
  color: #fff;
  border-bottom: 0 !important;
}
.order-action-submenu a:hover {
  color: #dfcc9d;
}
.t-clients {
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

.t-clients thead td,
.t-clients .td-price {
  font-weight: 600;
}
.t-clients span.t-pay-ok {
  color: #2eb345;
  font-weight: 600;
}
.t-clients span.t-canc {
  color: red;
}
.td-clientname,
.td-eventdate {
  line-height: 14px;
}
table.dataTable tbody td {
  font-size: 12px;
}
.manager-form {
  display: table;
  width: 100%;
}
.manager-form .calendar {
  float: none;
  display: table;
  border-radius: 10px;
  margin: 10px 0 20px 0;
  width: 100%;
}
.manager-form .calendar .calendar-header h2 {
  font-size: 13px;
  text-align: center;
}
.manager-form .calendar .day {
  padding: 3px;
  font-size: 14px;
}
.manager-form .manager-col:first-child {
  float: left;
  width: 20%;
}
.manager-form .manager-col:last-child {
  float: left;
  width: 80%;
  padding: 20px 0 0 30px;
}
.manager-form h3 {
  margin: 15px 0 5px 0;
  font-size: 16px;
}
.manager-form input,
.manager-form select {
  margin: 0 0 8px 0;
  width: 100%;
}
.manager-form button {
  margin-top: 20px;
}
.manager-form .calendar-header button {
  margin-top: 0;
}
.manager-auth {
  margin: 20px 0;
  font-size: 14px;
}
.manager-auth a {
  color: red;
}
.comment-form-url {
  display: none;
}
.dashboard-section {
  margin: 40px 0;
  font-family: "Montserrat", Sans-serif;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.navigation {
  width: 275px;
  background: #fff;
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 10px #00000005;
  float: left;
}
.dashboard-section .nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dashboard-section .nav-list li #link-exit {
  color: #c12b2b;
}
.dashboard-section .nav-list li {
  position: relative;
}
.dashboard-section .nav-list li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #000;
  border-bottom: 1px solid #ededed;
}
.dashboard-section .nav-list li:last-child a {
  border-bottom: 0;
}
.dashboard-section .nav-list li a:hover {
  color: #dfcc9d;
}
.dashboard-content {
  float: left;
  margin-left: 40px;
  width: 100%;
  max-width: 915px;
}
.dashboard-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--ezoria-gold) !important;
  margin-bottom: 15px;
}
.notification {
  padding: 30px;
  color: #fff;
  width: 100%;
  border-radius: 20px;
  margin: 20px 0;
  position: relative;
  font-size: 18px;
}
.notification .notification-h1,
.notification .notification-h2 {
  line-height: 26px;
}
.notification-h2 a {
  color: #fff;
}
.notification .notification-h1 {
  font-weight: 600;
  font-size: 20px;
}
.notification .notification-h2 {
  margin-bottom: 15px;
}
.calendar {
  max-width: 380px;
  width: 100%;
  border: 0;
  border-radius: 20px;
  background-color: var(--ezoria-bg-2);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  float: left;
  border: 2px solid var(--ezoria-border-light) !important;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ezoria-text);
}

.calendar-header h2 {
  margin: 0;
  font-size: 18px;
  color: var(--ezoria-gold);
}

.calendar-header button {
  color: var(--ezoria-gold);
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.calendar-header button:hover {
  background-color: var(--ezoria-bg);
  color: var(--ezoria-gold-light);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-name {
  text-align: center;
  color: var(--ezoria-text-muted) !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
}
.day-name:nth-child(6),
.day-name:nth-child(7) {
  background: var(--ezoria-bg-2);
}
.day.day-sel {
  background: var(--ezoria-gold-light) !important;
  color: #000 !important;
}
.day.day-prev,
.day.day-off {
  color: var(--ezoria-text-muted);
  background: transparent;
  box-shadow: none;
  border-radius: 5px;
}
.day.day-weekend {
  font-weight: 600;
  color: var(--ezoria-gold);
}
.day-prev.day-event {
  color: var(--ezoria-gold-light);
  text-decoration: underline;
  font-weight: normal;
}
.day {
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--ezoria-text);
}

.day:hover {
  background-color: var(--ezoria-gold);
  color: #000;
  box-shadow: none;
}

.day.empty {
  background-color: transparent;
  cursor: default;
}

.day.empty:hover {
  background-color: transparent;
}

.events-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.events-list .go-pay {
  background: #2eb345;
  color: #fff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  width: 110px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.events-list .go-pay:hover {
  background: #18c937;
}
.events-list .ok-pay {
  background: transparent;
  color: #2eb345;
  display: inline-block;
  margin: -6px 10px;
  padding: 2px 10px;
  border-radius: 8px;
  border: 1px solid #2eb345;
  /* width: 110px; */
  text-align: center;
  font-size: 15px;
  opacity: 0.5;
}
.events-list .enter.ok-pay:hover {
  background: #ffcc24;
  border: 1px solid #ffcc24;
}
.events-list .enter.ok-pay {
  background: #fbc000;
  border: 1px solid #fbc000;
  color: #000;
  font-weight: 500;
  opacity: 1;
  padding: 3px 16px;
}
.events-list li {
  margin: 9px 0;
  display: table;
  width: 95%;
  border-radius: 10px;
  padding: 15px;
}
.events-block {
  float: left;
  width: 60%;
}
.events-block-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 15px 0;
}
.event-past {
  opacity: 0.5;
}
span.inbox-count {
  position: absolute;
  top: 7px;
  left: 100px;
  background: #032a48;
  color: #dfcc9d;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 10px;
  font-weight: 500;
}
.event-comment {
  padding: 2px 10px;
  margin: 2px 30px 0 20px;
  background: #e1e1e1;
  display: table;
  font-size: 11px;
  border-radius: 5px;
}
.events-date {
  font-size: 14px;
  color: #afafaf;
  margin-bottom: -3px;
}
.events-cirle {
  float: left;
  width: 10px;
  height: 10px;
  background: #bc7c37;
  margin: 5px 10px 25px 0px;
  border-radius: 50%;
}
.page-dashboard {
  display: table;
  width: 100%;
}
.page-dashboard-content {
  color: #000;
}
.page-dashboard-content h2 {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin-top: 15px;
  margin-bottom: 15px;
}
.page-dashboard-content table thead td {
  font-weight: 600;
}
.page-dashboard-content table {
  margin-top: 30px;
  color: #000;
}
.login-form-container {
  margin: 50px auto;
  max-width: 450px;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 20px #0000000f;
  font-family: "Montserrat", Sans-serif;
  color: #000;
}
.login-form-container h2 {
  margin-bottom: 20px;
}
.login-form-container label {
  margin-top: 10px;
  display: inline-block;
}
.login-form-container button {
  display: block;
  width: 100%;
  background: #cbb279;
  color: black;
  font-size: 17px;
  font-weight: 600;
  margin: 30px 0 20px 0;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.login-form-container button:hover {
  color: #000;
  background: #dfdfdf;
}
.login-form-container label[for="remember"] {
  display: block;
  margin: 15px 0;
}
.links-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px !important;
  width: 100%;
}

@media (max-width: 768px) {
  .links-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}

.links-bottom-col {
  width: 50%;
  float: left;
  font-size: 14px;
}
.links-bottom-col a {
  color: #afafaf;
  text-align: center;
  display: block;
}
.events-name span {
  color: #333;
  padding: 3px 0;
  color: #dfcc9d;
  margin-left: 10px;
  border-bottom: 1px solid #dfcc9d;
}
.contact-tab {
  display: none;
  margin-top: 20px;
}

.contact-tab.active {
  display: block;
}
.upload-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 2px dashed #ddd;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
}

.upload-container.dragover {
  background-color: #e3f2fd;
  border-color: #0056b3;
}

.upload-container input[type="file"] {
  display: none;
}

.preview-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

.preview {
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview .remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
p.not {
  font-size: 13px;
  color: #8d8d8d;
}
.dashboard-content button[type="submit"] {
  background: #519759;
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s linear;
  border: 0;
  margin: 20px 0 0 0;
}
.dashboard-content button[type="submit"]:hover {
  background: #4fb95b;
}
.your-mag {
  border-radius: 10px;
  display: table;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 10px 10px #0000001f;
  margin: 0 0 30px 0;
  color: #000;
}
.your-mag a {
  color: #000;
  font-weight: 600;
}
.page-dashboard-content label {
  font-weight: 600;
}
.page-dashboard-content p {
  margin-bottom: 18px;
}

.day-prev-month {
  color: #ddd;
}
.day-curr {
  background: linear-gradient(135deg, #cbb279, #d1ba83) !important;
  font-weight: 600;
}
.day-event {
  color: #2eb345;
  width: 46px;
  height: 46px;
  line-height: 47px;
  padding: 0;
  font-weight: 600;
  position: relative;
}
.day-prev.day-event:before,
.day-prev-month.day-event:before {
  display: none;
}
.day-prev-month.day-event {
  background: #fff;
  box-shadow: none;
  font-weight: normal;
  color: #dedfde;
}
.site-content .ast-container {
  display: flex;
  flex-wrap: wrap;
  font-family: "Montserrat", Sans-serif;
}
.expert-banner {
  height: 540px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: right top;
  display: block;
  margin-top: 20px;
  position: relative;
  font-family: "Montserrat", Sans-serif;
}
.expert-banner-content {
  background: #fff;
  top: 60px;
  left: 60px;
  padding: 40px;
  width: 440px;
  height: 410px;
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 10px 10px #0000002e;
}
.button-reg {
  display: block;
  width: 100%;
  background: #fbc000;
  text-align: center;
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  color: #000;
  margin-top: 20px;
}
.button-reg:hover {
  background: #000;
  color: #fff;
}
.section-content {
  margin: 60px 0 0 0;
}
.expert-banner .expert-name {
  font-size: 34px;
  font-weight: 600;
  color: #000;
  margin: 6px 0;
}
.expert-banner .what-online {
  color: #fff;
  font-weight: 400;
  background: #519759;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 14px;
}
.expert-banner .what-online:before {
  content: "";
  float: left;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin: 7px 7px 0 0;
}
.expert-banner .expert-profession {
  color: #959595;
  margin-top: -5px;
}
.expert-schedule-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-top: 15px;
}
.expert-schedule-list span {
  background: #f2f2f2;
  color: #000;
  font-size: 13px;
  padding: 4px 12px;
  font-weight: 600;
  border-radius: 10px;
  display: table;
  margin-top: 7px;
}
.expert-schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: table;
  width: 100%;
}
.expert-schedule-list li {
  float: left;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 5px 15px 10px 0;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #000;
}
.modal h2 {
  font-size: 24px;
  color: #000;
}
.modal .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
  background: #fb0000;
  width: 29px;
  height: 29px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 400;
}
.modal-close:hover {
  background: #000;
  color: #fff;
}
.reg-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}
.reg-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
  text-align: left;
}
.reg-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}
.reg-button {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: #fbc000;
  color: #000;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
}
.reg-button:hover,
.reg-button:active,
.reg-button:focus {
  background-color: #000;
  color: #fff;
}
.modal input {
  height: 45px;
}
.reg-hidden-block {
  display: none;
}
.hidden {
  display: none; /* Класс для скрытия элементов */
}
.reg-hidden-block .calendar {
  width: 100%;
  margin-bottom: 20px;
  box-shadow: none;
}
.reg-hidden-block .calendar h2 {
  font-size: 15px;
}
.reg-hidden-block .day {
  padding: 5px;
}
.comments-area {
  margin-top: 20px;
}
.comments-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.comment-list {
  list-style: none;
  padding: 0;
}
.comment-list li {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.comment-form-author,
.comment-form-email,
.comment-form-comment {
  margin-bottom: 15px;
}
.comment-form-author label,
.comment-form-email label,
.comment-form-comment label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.ast-separate-container .comments-title,
.ast-narrow-container .comments-title {
  padding: 0;
}
.comment-list {
  padding: 0;
  margin: 0;
}
.ast-separate-container .comment-respond {
  padding: 0;
}
.comment-author,
.comment-metadata {
  float: left;
  width: 50%;
}
.comment-metadata {
  text-align: right;
}
.comment-author {
  font-weight: bold;
}
.comment-metadata a {
  color: #c3c3c3;
}
.comment-author img {
  margin-right: 10px;
  border-radius: 50%;
  width: 35px;
}
.comment-content {
  display: table;
  width: 100%;
  padding-top: 10px;
}
.comment-list li {
  background: #fff;
  box-shadow: 0 10px 20px #00000014;
  border-radius: 20px;
  padding: 40px;
  border: 0;
  margin: 15px 0 25px 0;
}
.comment-content p {
  margin: 0;
}
.comment-stars {
  font-size: 25px;
  margin: -30px 0 15px 0;
  color: #fbc000;
  letter-spacing: 3px;
}
.section-content h3 {
  margin: 0 0 20px 0;
}
.section-content ul li {
  margin: 5px 0;
}
blockquote {
  background: #fbc0000f;
  margin: 1.5em;
  font-weight: 600;
  font-style: normal;
  border-color: rgb(251 192 0);
}
blockquote p {
  margin: 5px 0;
  color: #000;
}
.comments-area {
  margin-top: 80px;
}
.comments-title {
  margin-bottom: 20px;
}
.site-content {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}
.archive-title {
  font-family: "Montserrat", sans-serif;
  margin: 30px 0;
  color: #000;
}
.expert-image {
  width: 250px;
  height: 250px;
  float: left;
  margin: 0 40px 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 10px #0000001f;
}
.expert-image a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right top;
}
.expert-description {
  float: left;
  padding: 12px 0;
  max-width: 890px;
}
.expert-name a {
  font-size: 21px;
  color: #000;
  font-weight: 600;
}
.expert-rating {
  display: table;
}
.expert-rating-col {
  float: left;
  width: 80px;
}
.expert-profession-col {
  float: left;
  width: 370px;
}
.expert-rating-col .stars {
  background: #fbc000;
  color: #fff;
  padding: 1px 10px;
  border-radius: 10px;
  font-weight: 700;
  margin: 5px 0;
  display: table;
}
.expert-profession-col .profession {
  font-size: 14px;
  padding: 7px 0;
  display: table;
  color: #7b7b7b;
}
.what-online {
  color: #519759;
  font-weight: 600;
}
.expert-description .what-online {
  margin-top: 5px;
}
.what-online:before {
  content: "";
  float: left;
  width: 10px;
  height: 10px;
  background: #519759;
  border-radius: 50%;
  margin: 8px 7px 0 0;
}
.expert-item {
  display: table;
  margin-bottom: 40px;
}
.expert-item .expert-excerpt {
  margin: 7px 0 0 0;
  font-size: 15px;
}
.expert-readmore a {
  display: inline-block;
  background: #032a48;
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  margin-top: -10px;
  font-weight: 500;
}
.expert-readmore a:hover {
  background: #dfdfdf;
  color: #000;
}
.ast-container,
.ast-container-fluid {
  padding: 0;
}
.messages-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.messages-list .user-message {
  margin: 9px 0;
  display: table;
  width: 95%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  position: relative;
}
.messages-list .message-date,
.messages-list .message-time {
  float: left;
  width: 86px;
  font-size: 13px;
  color: #a9a9a9;
}
.messages-list .message-date {
  border-right: 1px solid #ededed;
  margin: 0 15px 0 0;
}
.messages-list .message-text {
  display: table;
  width: 100%;
  margin: 30px 0 10px 0;
}
.messages-list span a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: #dfcc9d69;
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 15px;
  display: inline-block;
}
.messages-list .message-attachments {
  border-top: 1px solid #ededed;
  padding: 16px 0 0 0;
  display: table;
  width: 100%;
}
.message-attachment-photo,
.message-attachment-video {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 8px #0000001c;
  float: left;
  margin: 0 10px 0 0;
  font-size: 0;
}
.message-attachment-photo img {
  height: 100%;
  width: auto;
  display: none;
}
.message-attachment-photo {
  background: url(../img/image.png) center no-repeat;
  background-size: 25px;
}
.message-attachment-video {
  background: url(../img/play-button.png) center no-repeat;
  background-size: 25px;
}
.message-circle-new {
  background: rgb(34, 193, 195);
  background: linear-gradient(
    0deg,
    rgba(34, 193, 195, 1) 0%,
    rgba(45, 253, 58, 1) 100%
  );
  width: 20px;
  height: 20px;
  position: absolute;
  top: -5px;
  left: -5px;
  border-radius: 50%;
  box-shadow: 0 6px 6px #2eb34547;
}
.loader-wrap {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 250px;
  margin: -23px 0 0 -125px;
}
.loader {
  text-transform: uppercase;
  font-size: 9px;
  line-height: 19px;
  letter-spacing: 2px;
  display: table;
  margin: 0 auto;
  opacity: 0;
  color: #fff;
  animation: fadeIn 2s ease-in-out forwards;
}
.dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: blink 1.5s infinite;
}
.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.3s;
}
.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {
  0%,
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .day {
    padding: 3px;
    font-size: 13px;
  }
  .page-dashboard-content h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .day-event {
    width: auto;
    height: 23px;
    line-height: 23px;
  }
  .expert-item {
    width: 50%;
    float: left;
  }
}
@media (max-width: 1280px) {
  .call-navigation .timer {
    margin: 10px auto 0 auto;
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 5px;
    width: 120px;
    text-align: center;
  }
  .call-frame-me {
    min-width: 7rem;
    height: 10rem;
    bottom: 2rem;
    right: 2rem;
  }
  .site-content {
    padding: 0 20px;
  }
}
@media (max-width: 1280px) {
  .dashboard-section {
    padding: 0 20px;
  }
}
@media (max-width: 800px) {
  .expert-item .what-online {
    position: absolute;
    top: 25px;
    right: 20px;
    display: table;
    width: auto;
    background: #519759;
    color: #fff;
    padding: 3px 12px;
    border-radius: 10px;
    margin: 0;
    font-weight: 500;
  }
  .what-online:before {
    background: #fff;
  }
  .expert-rating-col {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .expert-item {
    width: 100%;
    float: none;
    position: relative;
  }
  .site-content {
    padding: 0;
  }
  .login-form-container {
    width: 95%;
  }
  .links-bottom-col {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .links-bottom-col a.register-btn {
    border: 1px solid #dfcc9d;
    line-height: 37px;
    border-radius: 10px;
    color: #dfcc9d;
  }
  .lostpass-btn {
    margin: 10px 0 0 0;
  }
  .call-frame-me {
    min-width: 5rem;
    height: 8rem;
    top: 1rem;
    right: 1rem;
    bottom: auto;
  }

  .events-block {
    width: 100%;
  }
  .dashboard-content {
    margin: 0;
  }
  .events-list li {
    width: 100%;
  }
  .dashboard-title {
    font-size: 25px;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .dashboard-section {
    margin: 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
  }
  .events-block-title {
    margin: 15px 0 0 0;
    font-size: 19px;
  }
  .events-list .ok-pay,
  .events-list .go-pay {
    display: table;
    margin: 10px 0px 0 0;
  }
  .navigation {
    width: 100%;
  }
  .expert-banner-content {
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
    height: auto;
    background: #f1f1f1;
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }
  .expert-banner .what-online:before {
    width: 6px;
    height: 6px;
    background: #fff;
  }
  .expert-schedule-list li {
    margin: 5px 5px 10px 0;
    font-size: 13px;
  }
  .expert-schedule-list span {
    font-size: 12px;
  }
  .expert-banner {
    background-color: #fff;
    background-repeat: no-repeat;
    padding-top: 350px;
    height: auto;
    overflow: auto;
    background-size: 900px;
    border-radius: 20px;
    margin: 0;
  }
  .ast-separate-container #content .ast-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .expert-schedule-list span {
    background: #e1e1e1;
  }
  .ast-page-builder-template .site .site-content #primary {
    padding: 0 10px;
  }
  .expert-image {
    width: 100%;
    height: 400px;
  }
  .expert-name a {
    font-size: 27px;
  }
  .expert-readmore a {
    font-size: 17px;
    width: 100%;
    text-align: center;
  }
  .expert-item .expert-name,
  .expert-item .expert-rating,
  .expert-item .expert-rating-col,
  .expert-item .expert-profession-col {
    width: 100%;
    float: left;
    margin: 0 0 -10px 0;
    display: inline-block;
  }
  .device-error .device-error-wrap {
    top: 50%;
    left: 50%;
    margin: -170px 0px 0 -170px;
  }
  .expert-item .expert-rating {
    margin: 0;
  }
  .expert-item .expert-profession-col {
    display: block;
    padding: 0;
    margin: 10px 0;
  }
}
