.platoGalleryAdminContainer{
    max-width: 1100px;
}

.mt5{
    margin-top: 15px;
}

.bsWrap{
    margin: 50px 0;
}
.platoGalleryWrap{
    font-family: inherit !important;
}
.platoGalleryWrap h1, .platoGalleryWrap h2, .platoGalleryWrap h3, .platoGalleryWrap h4, .platoGalleryWrap h5, .platoGalleryWrap h6, .platoGalleryWrap p {
    margin: 0 0 5px !important;
}
.platoGalleryWrap th{
    font-weight: bold;
}
.platoGalleryWrap th img{
    max-width: 20px;
}
.bsContent {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.3rem;
    box-shadow: var(--box-shadow);
    background: var(--light-color);
}
.bsContent:not(:last-child) {
    margin-bottom: 1.5rem;
}
.bsFlex {
    display: flex;
}
.bsBtn {
    display: inline-flex;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    border-radius: 0.3rem;
    font-size: var(--font-size-xxs);
    transition: var(--transition);
    text-decoration: none;
}
.bsBtn:hover {
    transition: var(--transition);
}
.bsPrimaryBtn {
    border: 1px solid var(--primary-color);
    color: var(--light-color) !important;
    background-color: var(--primary-color);
    box-shadow: none !important;
}
.bsPrimaryBtn:hover {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
    color: var(--light-color);
}
.bsSecondaryBtn {
    border: 1px solid var(--secondary-color);
    color: var(--light-color) !important;
    background-color: var(--secondary-color);
    box-shadow: none !important;
}
.bsSecondaryBtn:hover {
    background-color: var(--secondary-hover-color);
    border-color: var(--secondary-hover-color);
    color: var(--light-color);
}
.bsDangerBtn {
    border: 1px solid var(--primary-color);
    color: var(--light-color);
    background-color: var(--primary-color);
}
.bsDangerBtn:hover {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
    color: var(--light-color);
}
.bsFormInputNotice {
    margin-top: 0.3rem;
    line-height: 1.2em;
}
.bsFormInputNotice p {
    font-weight: bold;
    font-size: var(--font-size-xs);
}
.pgToolTip {
    position: relative;
    display: inline-block;
    font-size: 13px;
    cursor: pointer;
    color: var(--light-color);
}
.pgToolTip img {
    max-width: 16px;
    vertical-align: middle;
}
.pgToolTip::before,
.pgToolTip::after {
    opacity: 0;
    pointer-events: none;
    bottom: 100%;
    left: 50%;
    position: absolute;
    z-index: 10;
    transform: translate(-50%, 10px);
    transform-origin: top;
    transition: all 0.18s ease-out 0.18s;
}
.pgToolTip:after {
    background-color: rgba(40, 40, 40, 0.8);
    box-shadow: 0 0 3px rgba(40, 40, 40, 0.9);
    content: attr(data-tooltip);
    padding: 10px;
    white-space: nowrap;
    margin-bottom: 6px;
}
.pgToolTip:before {
    width: 0;
    height: 0;
    content: "";
}
.pgToolTip:hover:before,
.pgToolTip:hover:after {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
[data-tooltip-pos="up"]:before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(40, 40, 40, 0.8);
}
[data-tooltip-pos="down"]:before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(40, 40, 40, 0.8);
  margin-top: 0;
}
[data-tooltip-pos="right"]:before {
  border-top: 6px solid transparent;
  border-right: 6px solid rgba(40, 40, 40, 0.8);
  border-bottom: 6px solid transparent;
  margin-left: 0;
}
[data-tooltip-pos="left"]:before {
  border-top: 6px solid transparent;
  border-left: 6px solid rgba(40, 40, 40, 0.8);
  border-bottom: 6px solid transparent;
  margin-right: 0;
}
[data-tooltip-pos="down"]:before,
[data-tooltip-pos="down"]:after {
  bottom: auto;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -10px);
}
[data-tooltip-pos="down"]:after {
  margin-top: 6px;
}
[data-tooltip-pos="down"]:hover:before,
[data-tooltip-pos="down"]:hover:after {
  transform: translate(-50%, 0);
}
[data-tooltip-pos="left"]:before,
[data-tooltip-pos="left"]:after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate(10px, -50%);
}
[data-tooltip-pos="left"]:after {
  margin-right: 6px;
}
[data-tooltip-pos="left"]:hover:before,
[data-tooltip-pos="left"]:hover:after {
  transform: translate(0, -50%);
}
[data-tooltip-pos="right"]:before,
[data-tooltip-pos="right"]:after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate(-10px, -50%);
}
[data-tooltip-pos="right"]:after {
  margin-left: 6px;
}
[data-tooltip-pos="right"]:hover:before,
[data-tooltip-pos="right"]:hover:after {
  transform: translate(0, -50%);
}
[data-tooltip-length]:after {
  white-space: normal;
}
[data-tooltip-length="small"]:after {
  width: 80px;
}
[data-tooltip-length="medium"]:after {
  width: 150px;
}
[data-tooltip-length="large"]:after {
  width: 260px;
}
[data-tooltip-length="fit"]:after {
  width: 100%;
}

/*========== Font Sizes ==========*/
.bsFontsizeXXL {
    font-size: var(--font-size-xxl);
}
.bsFontsizeXL {
    font-size: var(--font-size-xl);
}
.bsFontsizeH1 {
    font-size: var(--font-size-h1);
}
.bsFontsizeH2 {
    font-size: var(--font-size-h2);
}
.bsFontsizeH3 {
    font-size: var(--font-size-h3);
}
.bsFontsizeH4 {
    font-size: var(--font-size-h4);
}
.bsFontsizeH5 {
    font-size: var(--font-size-h5);
}
.bsFontsizeNormal {
    font-size: var(--font-size-normal);
}
.bsFontsizeXXS {
    font-size: var(--font-size-xxs);
}
.bsFontsizeXS {
    font-size: var(--font-size-xs);
}

/*========== Colors ==========*/

.bsTextPrimary{
    color: var(--secondary-color) !important;
}
.bsBgSecondary{
    background: var(--secondary-color) !important;
}
.bsBgLite{
    background: var(--light-color) !important;
}
.bsTextSuccess {
    color: var(--success-color);
}
.bsBgSuccess {
    background: var(--success-color);
}
.bsTextError {
    color: var(--error-color);
}
.bsBgError {
    background: var(--error-color);
}
.bsTextInfo {
    color: var(--info-color);
}
.bsBgInfo {
    background: var(--info-color);
}

/*========== Main Layout ==========*/
.bsMainHeading {
    font-weight: bold;
    margin-bottom: 10px !important;
    font-size: var(--font-size-h2) !important;
}

/*========== Forms ==========*/
.bsFormHeadingRow:not(:first-child) {
    margin-top: 1rem;
}
.bsFormRowBorder {
    border-bottom: 1px solid var(--gray-color);
}
.bsFormRowGroupCol3 {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem 0;
}
.bsFormRowGroupCol3 .bsFormRow {
    flex: 1;
}
:not(.bsFormRowGroupCol3) .bsFormRow {
    padding: 1rem 0;
}
.bsFormRowGroupCol3 + .bsFormInputNotice {
    margin-top: -1.7rem;
}
.bsFormRow .bsFormCol2 {
    display: flex;
    gap: 1rem;
}
.bsFormRow .bsFormLabelBx {
    flex-basis: 15rem;
    text-transform: capitalize;
}
.bsFormRow .bsFormLabelBx label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: var(--font-size-xxs);
    color: var(--secondary-color);
}
.bsFormRow p {
    margin: 0;
}
.bsFormRow .bsFormInputBx {
    flex: 1;
    width: 100%;
}
.bsFormRow .bsFormInputBx .bsFormInputField {
    display: block;
    width: 100%;
    height: 45px;
    padding: 0.5rem;
    max-width: 100%;
    border-radius: 0.3rem;
    font-size: var(--font-size-xs);
    border: 1px solid var(--gray-color);
    color: var(--secondary-color);
}
.bsFormFieldWrp {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
}
.bsFormWrp input[type=text]::placeholder{
    color: var(--secondary-color);
}
.bsFormRow table tr input {
    display: block;
    width: 100%;
    height: 45px;
    padding: 0.5rem;
    max-width: 100%;
    border-radius: 0.3rem;
    font-size: var(--font-size-xs);
    border: 1px solid var(--gray-color);
    color: var(--secondary-color);
}
.bsFormRow table tr td {
    font-size: var(--font-size-xs);
    padding: 0.5rem;
}
.bsFormRow table tr td:first-child {
    font-weight: bold;
    text-align: right;
}
code.pgCopyShortcode {
    display: block;
    margin-bottom: 10px;
}

/*========== Countdown Timer ==========*/
.bsCounterNotificationWrp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 0.3rem;
    background: var(--secondary-color);
    color: var(--light-color);
}
.bsCounterNotificationWrp .bsBtn {
    text-transform: uppercase;
    font-size: var(--font-size-h4);
    background: var(--light-color);
    color: var(--secondary-color);
}
.bsCountDownTimer {
    display: flex;
    gap: 1rem;
}
.bsCountDownTimer .bsCountDownBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bsCountDownTimer .bsCountDownBox .bsCountDownNumber{
    font-size: 40px;
    padding: 5px 0;
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    68% {
        transform: scale(1);
    }
    72% {
        transform: scale(1.1);
    }
    76% {
        transform: scale(1);
    }
    80% {
        transform: scale(1.1);
    }
    84% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.bsHeartBeatAnim {
    animation: heartbeat 4s ease-in-out infinite;
}

/*========== Dashboard ==========*/
.bsDbLogo {
    display: flex !important;
    align-items: center;
    margin: 0.5rem 0;
    gap: 0.4rem;
    box-shadow: none;
    color: var(--secondary-color);
}
.bsDbLogo img {
    width: 40px;
}
.bsDbLogo:hover {
    color: var(--secondary-hover-color);
}
.bsDbSocialMedia {
    display: flex;
}
.bsDbSocialMedia a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--secondary-color);
}
.bsDbSocialMedia a:hover {
    background: var(--gray-color);
}

.bsDbHeaderWrp{

}
.bsDbHeaderWrp a{
    color: var(--primary-color);
}
.bsDbHeader {
    border-radius: 0.3rem;
}
.bsDbHeaderMain {
    padding: 0 1rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid var(--light-gray-color);
}
.bsDbHeaderContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*
.bsLogoBar .bsDbHeaderContainer a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/
.bsLogoBar .bsDbHeaderContainer a img{
    max-width: 80px;
}
.bsDbHeaderSticky {
    padding: 0.5rem 1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 10;
    position: sticky;
    top: 32px;
}
.bsDbCard {
    position: relative;
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 0.3rem;
    box-shadow: var(--box-shadow);
    background: var(--light-color);
}
.bsDbCard a{
    color: var(--primary-color);
}
.bsDbCard .bsDbCardHeading {
    display: flex;
    align-items: center;
}
.bsDbCard .bsDbCardText {
    font-size: var(--font-size-normal);
    margin-bottom: 1rem;
}
.bsDbCard .bsDbCardClose {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    cursor: pointer;
    color: var(--gray-color);
}
.bsDbCard .bsDbCardHeading i {
    margin-right: 0.4rem;
}
.bsDbCard .bsDbCardHeading > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bsDbCard .bsDbCardHeading > span:not(:last-child) {
    margin-right: 0.5rem;
}
.bsDbCard .bsDbCardHeading .bsDbRegHeadingText {
    cursor: pointer;
}


.bsFormRow .bsFormCol2 {
    gap: 0.5rem;
}
.bsFormRow .bsFormInputBx .bsFormInputField {
    height: auto;
}
.bsDbRegHowTo {
    padding: 1rem;
    border-radius: 0.3rem;
    border: 1px solid var(--light-gray-color);
}
.bsDbRegHowTo li{
    margin-bottom: 5px !important;
}
.bsDbRegHowTo .bsDbRegHowToList {
    margin-left: 1.2rem;
    font-size: var(--font-size-xxs);
}

.bsDbFooterWrp {
    margin-top: 2rem;
}
.bsDbFooterWrp .bsDbFooterTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-color);
}
.bsDbFooterWrp .bsDbLogo {
    margin: 0;
}
.bsDbFooterWrp .bsDbLogo img {
    width: 30px;
}
.bsDbFooterWrp .bsDbFooterMenu,
.bsDbFooterWrp .bsDbFooterMenu ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bsDbFooterWrp .bsDbFooterMenu ul li a {
    font-size: var(--font-size-xxs);
    color: var(--secondary-color);
}
.bsDbFooterWrp .bsDbFooterMenu ul li a:hover {
    color: var(--secondary-color);
}
.bsDbFooterBottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.bsDbFooterBottom .bsDbThankYouMsg {
    max-width: 80%;
}


div.bsSwitcher{
    display: inline-block;
}
div.bsSwitcher + div.bsSwitcher {
    margin-top: 10px;
}
div.bsSwitcher label {
    padding: 0;
    margin: 0;
}
div.bsSwitcher label * {
    vertical-align: middle;
}
div.bsSwitcher label input {
    display: none;
}
div.bsSwitcher label input + span {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
div.bsSwitcher label input + span small {
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    left: 0;
}
div.bsSwitcher label input:checked + span {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
div.bsSwitcher label input:checked + span small {
    left: 50%;
}


.plato-gallery-help-banner {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    text-align: left;
}

.plato-gallery-help-banner h2 {
    margin: 0;
    font-size: 18px;
}

.plato-gallery-help-banner .button {
    margin-right: 10px;
    margin-top: 10px;
}


.plato-gallery-help .plato-gallery-help-wrap {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    width: 100%;
}
.plato-gallery-help h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #333;
}
.plato-gallery-help p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px !important;
}
.plato-gallery-card {
    width: calc(100% / 3 - 10px);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.plato-gallery-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.plato-gallery-card p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.plato-gallery-card .button {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
}


#platoGalleryBannerWrap {
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 3px;
}

#platoGalleryBannerWrap .row{
    display: flex;
    gap: 20px;
    align-items: center;
}
#platoGalleryBannerWrap .row .col-md-6{

}
#platoGalleryBannerWrap img, #platoGalleryBannerWrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-width: 500px;
}


#platoGalleryBannerWrap .banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#platoGalleryBannerWrap .banner-media {
    position: relative;
    margin-right: 20px;
}

#platoGalleryBannerWrap .banner-media img, #platoGalleryBannerWrap .banner-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-width: 500px;
}

#platoGalleryBannerWrap .banner-text {
    flex: 1;
}

#platoGalleryBannerWrap .banner-text h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
}

#platoGalleryBannerWrap .banner-text p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

#platoGalleryBannerWrap .notice-dismiss {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
}

.platoGalleryModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999991;
}
.platoGalleryModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999992;
}
.platoGalleryModalClose {
    position: absolute;
    top: -22px;
    right: -14px;
    font-size: 23px;
    font-weight: bold;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
}
.platoGalleryModalContent {
    max-width: 700px;
    margin: 0 auto;
}

.bsHelpSection a{
    color: var(--primary-color);
}

/*========== Responsive Media Queries ==========*/

@media screen and (max-width: 1024px){
    body.admin-bar .dialog-type-lightbox {
        position: fixed !important;
    }
}

@media screen and (max-width: 991px){
    html.js.flexbox {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    html.js.flexbox {
        margin-top: 0 !important;
    }
    .plato-gallery-help .plato-gallery-help-wrap{
        flex-direction: column;
    }
    .plato-gallery-card{
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    html {
        margin-top: 0 !important;
    }
    .bsMainWrapper {
        flex-direction: column;
        gap: 10px;
    }
    .bsSidebar {
        width: 100%;
    }
    .bsFormRow .bsFormCol2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .bsDbCard .bsDbCardHeading {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 500px){
    html.js.flexbox {
        margin-top: 0 !important;
    }
    .bsDbFooterWrp .bsDbFooterMenu ul {
        display: none;
    }
    .bsDbFooterBottom .bsDbThankYouMsg {
        max-width: 100%;
    }
}