/* Sticky bar */
.per-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  font-family: inherit;
}
.per-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.per-sticky-info { font-size: 14px; }
.per-sticky-date { margin-left: 8px; opacity: 0.8; }

.per-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  background: #3b82f6;
  color: #fff;
  cursor: pointer;
}
.per-btn:hover { opacity: 0.95; }

/* Modal */
.per-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}
.per-modal.show { display: flex; }
.per-modal-dialog {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.per-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
#per-form p { margin: 10px 0; }
#per-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.per-msg { margin-top: 8px; }
.float-box {
            position: fixed;
            left: 50%;
            bottom: 5px;
            width: 100%;max-width: 630px;
            border-radius: 5px;
            background: #66369D;
            padding: 0;
            z-index: 1000;
            overflow: hidden;
            transform: translateX(-50%);
        }
        .float-box-wrapper {
            transition: all 0.6s ease-in-out;
        }
            
        /* .float-box.open .float-box-wrapper {
            transform: translateY(0%);
        } */
        .float-box-header {
            padding: 14px 20px 15px;
            cursor: pointer;
            user-select: none;
        }
        .float-box-header h2{
            color: #FFF;
            text-align: center;
            font-family: Prata;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            display: flex;align-items: center;justify-content: center;gap: 20px;
        }
        .float-box-header h2 svg{margin: -6px 0 -3px;transition: all 0.3s ease-in-out;}
        .float-box.open .float-box-header h2 svg{transform: rotate(180deg);}
        .float-box-content {
            display: none;
            padding: 20px 8px 8px 8px;
        }
        /* .float-box.open .float-box-content {
            display: block;
        } */
        .event-info {padding: 0 22px 35px 16px;}
        .event-info table td{color: #FFF;font-family: Lato;font-size: 17px;font-style: normal;font-weight: 400;line-height: 153%;min-width: 134px;padding: 0 13px;vertical-align: top;}
        .event-info table td.discribe {position: relative;padding-left: 30px;}
        .event-info table td.discribe:before {content: ":";margin-right: 16px;position: absolute;top: -2px;left: 12px;}
        .event-register-form {padding: 12px 20px 12px 20px;border-radius: 5px;background: rgba(255, 255, 255, 0.10);}
        .float-box h2 {
            margin: 0;
        }
        .float-box form {
            display: flex;
            flex-direction: column;
        }
        .float-box input,
        .float-box textarea {
            margin-bottom: 0px;
            padding:4px 8px;
            border-radius: 5px;
            border: 1px solid #D9D9D9;
            background: #FFF;
            font-size: 1em;width: 100%;
        }
        .float-box input:focus,
        .float-box textarea:focus {outline: 0;}
        .float-box button:hover {
            background: #000000;
        }
        .row {display: flex;flex-wrap: wrap;margin-left: -15px;margin-right: -15px;}
        .col-12 {flex: 0 0 100%;max-width: 100%;padding-left: 15px;padding-right: 15px;}
        .event-register-form .form-group {display: block;padding-bottom: 16px;margin: 0;}
        .event-register-form label {display: block;padding-bottom: 3px;margin: 0;color: #fff;font-size: 15px;font-style: normal;font-weight: 400;line-height: normal;}
        .event-register-form h4 {color: #FFF;text-align: center;font-family: Prata;font-size: 20px;font-style: normal;font-weight: 400;line-height: normal;margin: 0 0 22px;}
        .float-box .event-submit-btn {border-radius: 5px;background: #BF9553;min-width: 190px;color: #FFF;font-family: Lato;font-size: 15px;font-style: normal;font-weight: 500;line-height: normal;padding: 12px 20px;border: none;cursor: pointer;margin-top: 10px;}
        @media (min-width: 576px) {
            .col-md-6 {flex: 0 0 auto;max-width: 50%;width: 50%;}
        }
