/*========== FontFamily ==========*/
@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Regular.ttf) format('truetype');
}

:root {
    --primary-color: #ff3ea5;
    --primary-rgb-color: rgb(255, 62, 165);
    --primary-hover-color: #921557;
    --secondary-color: #282828;
    --secondary-rgb-color: rgb(40, 40, 40);
    --secondary-transparent-color: rgba(40, 40, 40, 0.7);
    --secondary-hover-color: #393838;
    --light-color: #ffffff;
    --gray-color: #c2c2c2;
    --light-gray-color: #f0f0f0;
    --disabled-color: #727272;
    --success-color: #65bc7b;
    --error-color: #dc3232;
    --info-color: #198fd9;
    --box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);

    --primary-font: 'Poppins', serif;
    --transition: 0.3s;

    --font-size-xxl: 2.75rem;
    --font-size-xl: 1.75rem;
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --font-size-h4: 1rem;
    --font-size-h5: .938rem;
    --font-size-normal: .875rem;
    --font-size-xxs: .813rem;
    --font-size-xs: .75rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --font-size-xxl: 4.5rem;
    --font-size-xl: 3rem;
    --font-size-h1: 2.25rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1rem;
    --font-size-normal: 1rem;
    --font-size-xxs: .875rem;
    --font-size-xs: .813rem;
  }
}

/*========== Global Styles ==========*/
* {
    box-sizing: border-box;
}

html, body{
    min-height: initial;
}

.platoGalleryWrap {
    position: relative;
    font-family: var(--primary-font);
    font-size: var(--font-size-normal);
    color: var(--secondary-color);
    transition: var(--transition);
}
#adminmenu #menu-posts-bs-gallery-page div.wp-menu-image::before {
    content: url('../media/admin/plato-pink-icon.svg');
    display: inline-block;
    width: 20px;
    height: 20px;
}
.platoGalleryWrap h1, .platoGalleryWrap h2, .platoGalleryWrap h3, .platoGalleryWrap h4, .platoGalleryWrap h5, .platoGalleryWrap h6, .platoGalleryWrap p {
    margin: 0;
    padding: 0;
    line-height: inherit;
    color: inherit;
}
.platoGalleryWrap img {
    max-width: 100%;
    height: auto;
}
.platoGalleryWrap ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.platoGalleryWrap li {
    margin-bottom: 0;
}
.platoGalleryWrap video {
    max-width: 100%;
}
.platoGalleryWrap iframe {
    border: none;
}
.platoGalleryWrap a {
    display: inline-block;
    text-decoration: none;
}
.platoGalleryWrap table {
    width: 100%;
    table-layout: initial;
    border-collapse: collapse;
}

.hide{
    display: none !important;
}

.pointer, .clickable{
    cursor: pointer;
}

.textCenter{
    text-align: center;
}

.primaryTextColor{
    color: var(--primary-color);
}

.platoGalleryGlobalOverlay{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1199;
    background: rgba(0, 0, 0, 0.7);
}
.platoGalleryGlobalOverlay.bsLoadingOverlay{
    z-index: 3;
}
.bsRelative{
    position: relative;
}
.bsAbsolute{
    position: absolute;
}
.bsPositionStatic{
    position: static !important;
    transform: initial !important;
}
.bsPositionFixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bsPositionFixedCenter{
    position: Fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.bsPositionAbsolute{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bsPositionFixedFullPage{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 100%;
    max-width: 100% !important;
    width: 100% !important;
}
.bsPositionCenter{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.bsPositionTopCenter{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.bsPositionTopLeft{
    position: absolute;
    top: 0;
    left: 0;
}
.bsPositionTopRight{
    position: absolute;
    top: 0;
    left: 0;
}
.bsPositionBottomCenter{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.bsColsWrap{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.bsColsWrap.bsGap5{
    gap: 5rem;
}
.bsColsWrap .bsCol {
    flex: 1;
}
.bsColsWrap .bsCol.centerVertically {
    align-self: center;
}

.bsThumbnail{
    max-width: 75px;
}
.bsLargeThumbnail{
    max-width: 300px;
}
.bsMediumThumbnail{
    max-width: 200px;
}
.bsSmallThumbnail{
    max-width: 120px;
}

/*
*   Feedback/Alert Message
 */
.bsFeedbackMessageWrap {
    position: fixed;
    bottom: 30px;
    left: 10px;
    width: 300px;
    z-index: 4001;
}
.bsFeedbackMessageWrap .bsFeedbackMessage {
    display: block;
    margin-top: 10px;
    position: relative;
    left: -300px;
    opacity: 0;
    overflow: hidden;
    /*word-break: break-all;*/
    background: #1F1F1F;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 4px;
    color: var(--light-color);
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);

    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackFail {
    background: var(--primary-color);
}

.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackSuccess {
    background: var(--secondary-color);
}
.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackHide {
    -webkit-transform: translate(300px, 0);
    -moz-transform: translate(300px, 0);
    -ms-transform: translate(300px, 0);
    -o-transform: translate(300px, 0);
    transform: translate(300px, 0);
    opacity: 0;
}

.bsFeedbackHide {
    -webkit-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    /* easeInBack */
}
.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackShow {
    left: 0;
    opacity: 1;
}

/*
*   Loading Spinner
 */
.platoGallerySpinnerOverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10022;
}
.platoGallerySpinner {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10023;
}
.platoGallerySpinner img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10023;
    width: 88%;
}
.platoGallerySpinner::after {
    content: " ";
    display: block;
    width: 110px;
    height: 110px;
    margin: 5% auto;
    border-radius: 50%;
    border-width: 6px;
    border-style: solid;
    border-color: var(--light-color) transparent var(--light-color) transparent;
    animation: platoGallerySpinnerFrame 1.2s linear infinite;
}
.platoGallerySpinnerText{
    color: var(--light-color);
    z-index: 99999;
    margin-top: 80px;
}
@-webkit-keyframes platoGallerySpinnerFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes platoGallerySpinnerFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1024px){
    .tabletHide{
        display: none !important;
    }
}